1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package contentwarehouse
22
23 import (
24 reflect "reflect"
25 sync "sync"
26
27 _ "google.golang.org/genproto/googleapis/api/annotations"
28 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
29 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
30 )
31
32 const (
33
34 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
35
36 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
37 )
38
39
40 type CreateRuleSetRequest struct {
41 state protoimpl.MessageState
42 sizeCache protoimpl.SizeCache
43 unknownFields protoimpl.UnknownFields
44
45
46
47 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
48
49 RuleSet *RuleSet `protobuf:"bytes,2,opt,name=rule_set,json=ruleSet,proto3" json:"rule_set,omitempty"`
50 }
51
52 func (x *CreateRuleSetRequest) Reset() {
53 *x = CreateRuleSetRequest{}
54 if protoimpl.UnsafeEnabled {
55 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[0]
56 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
57 ms.StoreMessageInfo(mi)
58 }
59 }
60
61 func (x *CreateRuleSetRequest) String() string {
62 return protoimpl.X.MessageStringOf(x)
63 }
64
65 func (*CreateRuleSetRequest) ProtoMessage() {}
66
67 func (x *CreateRuleSetRequest) ProtoReflect() protoreflect.Message {
68 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[0]
69 if protoimpl.UnsafeEnabled && x != nil {
70 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
71 if ms.LoadMessageInfo() == nil {
72 ms.StoreMessageInfo(mi)
73 }
74 return ms
75 }
76 return mi.MessageOf(x)
77 }
78
79
80 func (*CreateRuleSetRequest) Descriptor() ([]byte, []int) {
81 return file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescGZIP(), []int{0}
82 }
83
84 func (x *CreateRuleSetRequest) GetParent() string {
85 if x != nil {
86 return x.Parent
87 }
88 return ""
89 }
90
91 func (x *CreateRuleSetRequest) GetRuleSet() *RuleSet {
92 if x != nil {
93 return x.RuleSet
94 }
95 return nil
96 }
97
98
99 type GetRuleSetRequest struct {
100 state protoimpl.MessageState
101 sizeCache protoimpl.SizeCache
102 unknownFields protoimpl.UnknownFields
103
104
105
106
107 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
108 }
109
110 func (x *GetRuleSetRequest) Reset() {
111 *x = GetRuleSetRequest{}
112 if protoimpl.UnsafeEnabled {
113 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[1]
114 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
115 ms.StoreMessageInfo(mi)
116 }
117 }
118
119 func (x *GetRuleSetRequest) String() string {
120 return protoimpl.X.MessageStringOf(x)
121 }
122
123 func (*GetRuleSetRequest) ProtoMessage() {}
124
125 func (x *GetRuleSetRequest) ProtoReflect() protoreflect.Message {
126 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[1]
127 if protoimpl.UnsafeEnabled && x != nil {
128 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
129 if ms.LoadMessageInfo() == nil {
130 ms.StoreMessageInfo(mi)
131 }
132 return ms
133 }
134 return mi.MessageOf(x)
135 }
136
137
138 func (*GetRuleSetRequest) Descriptor() ([]byte, []int) {
139 return file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescGZIP(), []int{1}
140 }
141
142 func (x *GetRuleSetRequest) GetName() string {
143 if x != nil {
144 return x.Name
145 }
146 return ""
147 }
148
149
150 type UpdateRuleSetRequest struct {
151 state protoimpl.MessageState
152 sizeCache protoimpl.SizeCache
153 unknownFields protoimpl.UnknownFields
154
155
156
157
158 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
159
160 RuleSet *RuleSet `protobuf:"bytes,2,opt,name=rule_set,json=ruleSet,proto3" json:"rule_set,omitempty"`
161 }
162
163 func (x *UpdateRuleSetRequest) Reset() {
164 *x = UpdateRuleSetRequest{}
165 if protoimpl.UnsafeEnabled {
166 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[2]
167 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
168 ms.StoreMessageInfo(mi)
169 }
170 }
171
172 func (x *UpdateRuleSetRequest) String() string {
173 return protoimpl.X.MessageStringOf(x)
174 }
175
176 func (*UpdateRuleSetRequest) ProtoMessage() {}
177
178 func (x *UpdateRuleSetRequest) ProtoReflect() protoreflect.Message {
179 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[2]
180 if protoimpl.UnsafeEnabled && x != nil {
181 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
182 if ms.LoadMessageInfo() == nil {
183 ms.StoreMessageInfo(mi)
184 }
185 return ms
186 }
187 return mi.MessageOf(x)
188 }
189
190
191 func (*UpdateRuleSetRequest) Descriptor() ([]byte, []int) {
192 return file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescGZIP(), []int{2}
193 }
194
195 func (x *UpdateRuleSetRequest) GetName() string {
196 if x != nil {
197 return x.Name
198 }
199 return ""
200 }
201
202 func (x *UpdateRuleSetRequest) GetRuleSet() *RuleSet {
203 if x != nil {
204 return x.RuleSet
205 }
206 return nil
207 }
208
209
210 type DeleteRuleSetRequest struct {
211 state protoimpl.MessageState
212 sizeCache protoimpl.SizeCache
213 unknownFields protoimpl.UnknownFields
214
215
216
217
218 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
219 }
220
221 func (x *DeleteRuleSetRequest) Reset() {
222 *x = DeleteRuleSetRequest{}
223 if protoimpl.UnsafeEnabled {
224 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[3]
225 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
226 ms.StoreMessageInfo(mi)
227 }
228 }
229
230 func (x *DeleteRuleSetRequest) String() string {
231 return protoimpl.X.MessageStringOf(x)
232 }
233
234 func (*DeleteRuleSetRequest) ProtoMessage() {}
235
236 func (x *DeleteRuleSetRequest) ProtoReflect() protoreflect.Message {
237 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[3]
238 if protoimpl.UnsafeEnabled && x != nil {
239 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
240 if ms.LoadMessageInfo() == nil {
241 ms.StoreMessageInfo(mi)
242 }
243 return ms
244 }
245 return mi.MessageOf(x)
246 }
247
248
249 func (*DeleteRuleSetRequest) Descriptor() ([]byte, []int) {
250 return file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescGZIP(), []int{3}
251 }
252
253 func (x *DeleteRuleSetRequest) GetName() string {
254 if x != nil {
255 return x.Name
256 }
257 return ""
258 }
259
260
261 type ListRuleSetsRequest struct {
262 state protoimpl.MessageState
263 sizeCache protoimpl.SizeCache
264 unknownFields protoimpl.UnknownFields
265
266
267
268 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
269
270
271
272
273 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
274
275
276
277
278
279 PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
280 }
281
282 func (x *ListRuleSetsRequest) Reset() {
283 *x = ListRuleSetsRequest{}
284 if protoimpl.UnsafeEnabled {
285 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[4]
286 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
287 ms.StoreMessageInfo(mi)
288 }
289 }
290
291 func (x *ListRuleSetsRequest) String() string {
292 return protoimpl.X.MessageStringOf(x)
293 }
294
295 func (*ListRuleSetsRequest) ProtoMessage() {}
296
297 func (x *ListRuleSetsRequest) ProtoReflect() protoreflect.Message {
298 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[4]
299 if protoimpl.UnsafeEnabled && x != nil {
300 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
301 if ms.LoadMessageInfo() == nil {
302 ms.StoreMessageInfo(mi)
303 }
304 return ms
305 }
306 return mi.MessageOf(x)
307 }
308
309
310 func (*ListRuleSetsRequest) Descriptor() ([]byte, []int) {
311 return file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescGZIP(), []int{4}
312 }
313
314 func (x *ListRuleSetsRequest) GetParent() string {
315 if x != nil {
316 return x.Parent
317 }
318 return ""
319 }
320
321 func (x *ListRuleSetsRequest) GetPageSize() int32 {
322 if x != nil {
323 return x.PageSize
324 }
325 return 0
326 }
327
328 func (x *ListRuleSetsRequest) GetPageToken() string {
329 if x != nil {
330 return x.PageToken
331 }
332 return ""
333 }
334
335
336 type ListRuleSetsResponse struct {
337 state protoimpl.MessageState
338 sizeCache protoimpl.SizeCache
339 unknownFields protoimpl.UnknownFields
340
341
342 RuleSets []*RuleSet `protobuf:"bytes,1,rep,name=rule_sets,json=ruleSets,proto3" json:"rule_sets,omitempty"`
343
344
345 NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
346 }
347
348 func (x *ListRuleSetsResponse) Reset() {
349 *x = ListRuleSetsResponse{}
350 if protoimpl.UnsafeEnabled {
351 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[5]
352 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
353 ms.StoreMessageInfo(mi)
354 }
355 }
356
357 func (x *ListRuleSetsResponse) String() string {
358 return protoimpl.X.MessageStringOf(x)
359 }
360
361 func (*ListRuleSetsResponse) ProtoMessage() {}
362
363 func (x *ListRuleSetsResponse) ProtoReflect() protoreflect.Message {
364 mi := &file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[5]
365 if protoimpl.UnsafeEnabled && x != nil {
366 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
367 if ms.LoadMessageInfo() == nil {
368 ms.StoreMessageInfo(mi)
369 }
370 return ms
371 }
372 return mi.MessageOf(x)
373 }
374
375
376 func (*ListRuleSetsResponse) Descriptor() ([]byte, []int) {
377 return file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescGZIP(), []int{5}
378 }
379
380 func (x *ListRuleSetsResponse) GetRuleSets() []*RuleSet {
381 if x != nil {
382 return x.RuleSets
383 }
384 return nil
385 }
386
387 func (x *ListRuleSetsResponse) GetNextPageToken() string {
388 if x != nil {
389 return x.NextPageToken
390 }
391 return ""
392 }
393
394 var File_google_cloud_contentwarehouse_v1_ruleset_service_request_proto protoreflect.FileDescriptor
395
396 var file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDesc = []byte{
397 0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x63,
398 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2f,
399 0x76, 0x31, 0x2f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69,
400 0x63, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
401 0x12, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63,
402 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e,
403 0x76, 0x31, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66,
404 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72,
405 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f,
406 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x32,
407 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x63, 0x6f, 0x6e,
408 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2f, 0x76, 0x31,
409 0x2f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x2e, 0x70, 0x72, 0x6f,
410 0x74, 0x6f, 0x22, 0xab, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c,
411 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x06, 0x70,
412 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x30, 0xe0, 0x41, 0x02,
413 0xfa, 0x41, 0x2a, 0x0a, 0x28, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65,
414 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
415 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x70,
416 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x49, 0x0a, 0x08, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x65,
417 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
418 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61,
419 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x75, 0x6c, 0x65, 0x53,
420 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x07, 0x72, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74,
421 0x22, 0x58, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65,
422 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x43, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
423 0x01, 0x28, 0x09, 0x42, 0x2f, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x29, 0x0a, 0x27, 0x63, 0x6f, 0x6e,
424 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x67, 0x6f,
425 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x52, 0x75, 0x6c,
426 0x65, 0x53, 0x65, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x55,
427 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75,
428 0x65, 0x73, 0x74, 0x12, 0x43, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
429 0x09, 0x42, 0x2f, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x29, 0x0a, 0x27, 0x63, 0x6f, 0x6e, 0x74, 0x65,
430 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
431 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x52, 0x75, 0x6c, 0x65, 0x53,
432 0x65, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x49, 0x0a, 0x08, 0x72, 0x75, 0x6c, 0x65,
433 0x5f, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f,
434 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
435 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x75,
436 0x6c, 0x65, 0x53, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x07, 0x72, 0x75, 0x6c, 0x65,
437 0x53, 0x65, 0x74, 0x22, 0x5b, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x75, 0x6c,
438 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x43, 0x0a, 0x04, 0x6e,
439 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2f, 0xe0, 0x41, 0x02, 0xfa, 0x41,
440 0x29, 0x0a, 0x27, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f,
441 0x75, 0x73, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63,
442 0x6f, 0x6d, 0x2f, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
443 0x22, 0x9b, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74,
444 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65,
445 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x30, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x2a,
446 0x0a, 0x28, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75,
447 0x73, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f,
448 0x6d, 0x2f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65,
449 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18,
450 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
451 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20,
452 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x86,
453 0x01, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x73, 0x52,
454 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x09, 0x72, 0x75, 0x6c, 0x65, 0x5f,
455 0x73, 0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f,
456 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
457 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x75,
458 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x08, 0x72, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x73, 0x12,
459 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b,
460 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61,
461 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x42, 0x96, 0x01, 0x0a, 0x24, 0x63, 0x6f, 0x6d, 0x2e,
462 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e,
463 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2e, 0x76, 0x31,
464 0x42, 0x1a, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
465 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x50,
466 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
467 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
468 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x74,
469 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x2f, 0x76, 0x31, 0x3b,
470 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65,
471 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
472 }
473
474 var (
475 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescOnce sync.Once
476 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescData = file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDesc
477 )
478
479 func file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescGZIP() []byte {
480 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescOnce.Do(func() {
481 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescData)
482 })
483 return file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDescData
484 }
485
486 var file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
487 var file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_goTypes = []interface{}{
488 (*CreateRuleSetRequest)(nil),
489 (*GetRuleSetRequest)(nil),
490 (*UpdateRuleSetRequest)(nil),
491 (*DeleteRuleSetRequest)(nil),
492 (*ListRuleSetsRequest)(nil),
493 (*ListRuleSetsResponse)(nil),
494 (*RuleSet)(nil),
495 }
496 var file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_depIdxs = []int32{
497 6,
498 6,
499 6,
500 3,
501 3,
502 3,
503 3,
504 0,
505 }
506
507 func init() { file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_init() }
508 func file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_init() {
509 if File_google_cloud_contentwarehouse_v1_ruleset_service_request_proto != nil {
510 return
511 }
512 file_google_cloud_contentwarehouse_v1_rule_engine_proto_init()
513 if !protoimpl.UnsafeEnabled {
514 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
515 switch v := v.(*CreateRuleSetRequest); i {
516 case 0:
517 return &v.state
518 case 1:
519 return &v.sizeCache
520 case 2:
521 return &v.unknownFields
522 default:
523 return nil
524 }
525 }
526 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
527 switch v := v.(*GetRuleSetRequest); i {
528 case 0:
529 return &v.state
530 case 1:
531 return &v.sizeCache
532 case 2:
533 return &v.unknownFields
534 default:
535 return nil
536 }
537 }
538 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
539 switch v := v.(*UpdateRuleSetRequest); i {
540 case 0:
541 return &v.state
542 case 1:
543 return &v.sizeCache
544 case 2:
545 return &v.unknownFields
546 default:
547 return nil
548 }
549 }
550 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
551 switch v := v.(*DeleteRuleSetRequest); i {
552 case 0:
553 return &v.state
554 case 1:
555 return &v.sizeCache
556 case 2:
557 return &v.unknownFields
558 default:
559 return nil
560 }
561 }
562 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
563 switch v := v.(*ListRuleSetsRequest); i {
564 case 0:
565 return &v.state
566 case 1:
567 return &v.sizeCache
568 case 2:
569 return &v.unknownFields
570 default:
571 return nil
572 }
573 }
574 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
575 switch v := v.(*ListRuleSetsResponse); i {
576 case 0:
577 return &v.state
578 case 1:
579 return &v.sizeCache
580 case 2:
581 return &v.unknownFields
582 default:
583 return nil
584 }
585 }
586 }
587 type x struct{}
588 out := protoimpl.TypeBuilder{
589 File: protoimpl.DescBuilder{
590 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
591 RawDescriptor: file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDesc,
592 NumEnums: 0,
593 NumMessages: 6,
594 NumExtensions: 0,
595 NumServices: 0,
596 },
597 GoTypes: file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_goTypes,
598 DependencyIndexes: file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_depIdxs,
599 MessageInfos: file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_msgTypes,
600 }.Build()
601 File_google_cloud_contentwarehouse_v1_ruleset_service_request_proto = out.File
602 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_rawDesc = nil
603 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_goTypes = nil
604 file_google_cloud_contentwarehouse_v1_ruleset_service_request_proto_depIdxs = nil
605 }
606
View as plain text