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