1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package artifactregistrypb
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 fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
31 )
32
33 const (
34
35 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
36
37 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
38 )
39
40
41
42 type Tag struct {
43 state protoimpl.MessageState
44 sizeCache protoimpl.SizeCache
45 unknownFields protoimpl.UnknownFields
46
47
48
49
50
51
52 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
53
54
55
56
57 Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
58 }
59
60 func (x *Tag) Reset() {
61 *x = Tag{}
62 if protoimpl.UnsafeEnabled {
63 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[0]
64 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
65 ms.StoreMessageInfo(mi)
66 }
67 }
68
69 func (x *Tag) String() string {
70 return protoimpl.X.MessageStringOf(x)
71 }
72
73 func (*Tag) ProtoMessage() {}
74
75 func (x *Tag) ProtoReflect() protoreflect.Message {
76 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[0]
77 if protoimpl.UnsafeEnabled && x != nil {
78 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
79 if ms.LoadMessageInfo() == nil {
80 ms.StoreMessageInfo(mi)
81 }
82 return ms
83 }
84 return mi.MessageOf(x)
85 }
86
87
88 func (*Tag) Descriptor() ([]byte, []int) {
89 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP(), []int{0}
90 }
91
92 func (x *Tag) GetName() string {
93 if x != nil {
94 return x.Name
95 }
96 return ""
97 }
98
99 func (x *Tag) GetVersion() string {
100 if x != nil {
101 return x.Version
102 }
103 return ""
104 }
105
106
107 type ListTagsRequest struct {
108 state protoimpl.MessageState
109 sizeCache protoimpl.SizeCache
110 unknownFields protoimpl.UnknownFields
111
112
113 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
114
115
116
117
118
119
120
121
122
123 Filter string `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter,omitempty"`
124
125 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
126
127 PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
128 }
129
130 func (x *ListTagsRequest) Reset() {
131 *x = ListTagsRequest{}
132 if protoimpl.UnsafeEnabled {
133 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[1]
134 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
135 ms.StoreMessageInfo(mi)
136 }
137 }
138
139 func (x *ListTagsRequest) String() string {
140 return protoimpl.X.MessageStringOf(x)
141 }
142
143 func (*ListTagsRequest) ProtoMessage() {}
144
145 func (x *ListTagsRequest) ProtoReflect() protoreflect.Message {
146 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[1]
147 if protoimpl.UnsafeEnabled && x != nil {
148 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
149 if ms.LoadMessageInfo() == nil {
150 ms.StoreMessageInfo(mi)
151 }
152 return ms
153 }
154 return mi.MessageOf(x)
155 }
156
157
158 func (*ListTagsRequest) Descriptor() ([]byte, []int) {
159 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP(), []int{1}
160 }
161
162 func (x *ListTagsRequest) GetParent() string {
163 if x != nil {
164 return x.Parent
165 }
166 return ""
167 }
168
169 func (x *ListTagsRequest) GetFilter() string {
170 if x != nil {
171 return x.Filter
172 }
173 return ""
174 }
175
176 func (x *ListTagsRequest) GetPageSize() int32 {
177 if x != nil {
178 return x.PageSize
179 }
180 return 0
181 }
182
183 func (x *ListTagsRequest) GetPageToken() string {
184 if x != nil {
185 return x.PageToken
186 }
187 return ""
188 }
189
190
191 type ListTagsResponse struct {
192 state protoimpl.MessageState
193 sizeCache protoimpl.SizeCache
194 unknownFields protoimpl.UnknownFields
195
196
197 Tags []*Tag `protobuf:"bytes,1,rep,name=tags,proto3" json:"tags,omitempty"`
198
199
200 NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
201 }
202
203 func (x *ListTagsResponse) Reset() {
204 *x = ListTagsResponse{}
205 if protoimpl.UnsafeEnabled {
206 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[2]
207 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
208 ms.StoreMessageInfo(mi)
209 }
210 }
211
212 func (x *ListTagsResponse) String() string {
213 return protoimpl.X.MessageStringOf(x)
214 }
215
216 func (*ListTagsResponse) ProtoMessage() {}
217
218 func (x *ListTagsResponse) ProtoReflect() protoreflect.Message {
219 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[2]
220 if protoimpl.UnsafeEnabled && x != nil {
221 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
222 if ms.LoadMessageInfo() == nil {
223 ms.StoreMessageInfo(mi)
224 }
225 return ms
226 }
227 return mi.MessageOf(x)
228 }
229
230
231 func (*ListTagsResponse) Descriptor() ([]byte, []int) {
232 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP(), []int{2}
233 }
234
235 func (x *ListTagsResponse) GetTags() []*Tag {
236 if x != nil {
237 return x.Tags
238 }
239 return nil
240 }
241
242 func (x *ListTagsResponse) GetNextPageToken() string {
243 if x != nil {
244 return x.NextPageToken
245 }
246 return ""
247 }
248
249
250 type GetTagRequest struct {
251 state protoimpl.MessageState
252 sizeCache protoimpl.SizeCache
253 unknownFields protoimpl.UnknownFields
254
255
256 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
257 }
258
259 func (x *GetTagRequest) Reset() {
260 *x = GetTagRequest{}
261 if protoimpl.UnsafeEnabled {
262 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[3]
263 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
264 ms.StoreMessageInfo(mi)
265 }
266 }
267
268 func (x *GetTagRequest) String() string {
269 return protoimpl.X.MessageStringOf(x)
270 }
271
272 func (*GetTagRequest) ProtoMessage() {}
273
274 func (x *GetTagRequest) ProtoReflect() protoreflect.Message {
275 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[3]
276 if protoimpl.UnsafeEnabled && x != nil {
277 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
278 if ms.LoadMessageInfo() == nil {
279 ms.StoreMessageInfo(mi)
280 }
281 return ms
282 }
283 return mi.MessageOf(x)
284 }
285
286
287 func (*GetTagRequest) Descriptor() ([]byte, []int) {
288 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP(), []int{3}
289 }
290
291 func (x *GetTagRequest) GetName() string {
292 if x != nil {
293 return x.Name
294 }
295 return ""
296 }
297
298
299 type CreateTagRequest struct {
300 state protoimpl.MessageState
301 sizeCache protoimpl.SizeCache
302 unknownFields protoimpl.UnknownFields
303
304
305 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
306
307 TagId string `protobuf:"bytes,2,opt,name=tag_id,json=tagId,proto3" json:"tag_id,omitempty"`
308
309 Tag *Tag `protobuf:"bytes,3,opt,name=tag,proto3" json:"tag,omitempty"`
310 }
311
312 func (x *CreateTagRequest) Reset() {
313 *x = CreateTagRequest{}
314 if protoimpl.UnsafeEnabled {
315 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[4]
316 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
317 ms.StoreMessageInfo(mi)
318 }
319 }
320
321 func (x *CreateTagRequest) String() string {
322 return protoimpl.X.MessageStringOf(x)
323 }
324
325 func (*CreateTagRequest) ProtoMessage() {}
326
327 func (x *CreateTagRequest) ProtoReflect() protoreflect.Message {
328 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[4]
329 if protoimpl.UnsafeEnabled && x != nil {
330 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
331 if ms.LoadMessageInfo() == nil {
332 ms.StoreMessageInfo(mi)
333 }
334 return ms
335 }
336 return mi.MessageOf(x)
337 }
338
339
340 func (*CreateTagRequest) Descriptor() ([]byte, []int) {
341 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP(), []int{4}
342 }
343
344 func (x *CreateTagRequest) GetParent() string {
345 if x != nil {
346 return x.Parent
347 }
348 return ""
349 }
350
351 func (x *CreateTagRequest) GetTagId() string {
352 if x != nil {
353 return x.TagId
354 }
355 return ""
356 }
357
358 func (x *CreateTagRequest) GetTag() *Tag {
359 if x != nil {
360 return x.Tag
361 }
362 return nil
363 }
364
365
366 type UpdateTagRequest struct {
367 state protoimpl.MessageState
368 sizeCache protoimpl.SizeCache
369 unknownFields protoimpl.UnknownFields
370
371
372 Tag *Tag `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
373
374
375
376 UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
377 }
378
379 func (x *UpdateTagRequest) Reset() {
380 *x = UpdateTagRequest{}
381 if protoimpl.UnsafeEnabled {
382 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[5]
383 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
384 ms.StoreMessageInfo(mi)
385 }
386 }
387
388 func (x *UpdateTagRequest) String() string {
389 return protoimpl.X.MessageStringOf(x)
390 }
391
392 func (*UpdateTagRequest) ProtoMessage() {}
393
394 func (x *UpdateTagRequest) ProtoReflect() protoreflect.Message {
395 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[5]
396 if protoimpl.UnsafeEnabled && x != nil {
397 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
398 if ms.LoadMessageInfo() == nil {
399 ms.StoreMessageInfo(mi)
400 }
401 return ms
402 }
403 return mi.MessageOf(x)
404 }
405
406
407 func (*UpdateTagRequest) Descriptor() ([]byte, []int) {
408 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP(), []int{5}
409 }
410
411 func (x *UpdateTagRequest) GetTag() *Tag {
412 if x != nil {
413 return x.Tag
414 }
415 return nil
416 }
417
418 func (x *UpdateTagRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
419 if x != nil {
420 return x.UpdateMask
421 }
422 return nil
423 }
424
425
426 type DeleteTagRequest struct {
427 state protoimpl.MessageState
428 sizeCache protoimpl.SizeCache
429 unknownFields protoimpl.UnknownFields
430
431
432 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
433 }
434
435 func (x *DeleteTagRequest) Reset() {
436 *x = DeleteTagRequest{}
437 if protoimpl.UnsafeEnabled {
438 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[6]
439 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
440 ms.StoreMessageInfo(mi)
441 }
442 }
443
444 func (x *DeleteTagRequest) String() string {
445 return protoimpl.X.MessageStringOf(x)
446 }
447
448 func (*DeleteTagRequest) ProtoMessage() {}
449
450 func (x *DeleteTagRequest) ProtoReflect() protoreflect.Message {
451 mi := &file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[6]
452 if protoimpl.UnsafeEnabled && x != nil {
453 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
454 if ms.LoadMessageInfo() == nil {
455 ms.StoreMessageInfo(mi)
456 }
457 return ms
458 }
459 return mi.MessageOf(x)
460 }
461
462
463 func (*DeleteTagRequest) Descriptor() ([]byte, []int) {
464 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP(), []int{6}
465 }
466
467 func (x *DeleteTagRequest) GetName() string {
468 if x != nil {
469 return x.Name
470 }
471 return ""
472 }
473
474 var File_google_devtools_artifactregistry_v1beta2_tag_proto protoreflect.FileDescriptor
475
476 var file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDesc = []byte{
477 0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c,
478 0x73, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
479 0x72, 0x79, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2f, 0x74, 0x61, 0x67, 0x2e, 0x70,
480 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76,
481 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65,
482 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x1a, 0x19,
483 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
484 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
485 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64,
486 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc0, 0x01, 0x0a, 0x03,
487 0x54, 0x61, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
488 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
489 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
490 0x6e, 0x3a, 0x8a, 0x01, 0xea, 0x41, 0x86, 0x01, 0x0a, 0x23, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61,
491 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
492 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x54, 0x61, 0x67, 0x12, 0x5f, 0x70,
493 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
494 0x7d, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x63,
495 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72,
496 0x69, 0x65, 0x73, 0x2f, 0x7b, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x7d,
497 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x2f, 0x7b, 0x70, 0x61, 0x63, 0x6b, 0x61,
498 0x67, 0x65, 0x7d, 0x2f, 0x74, 0x61, 0x67, 0x73, 0x2f, 0x7b, 0x74, 0x61, 0x67, 0x7d, 0x22, 0x7d,
499 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x61, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
500 0x74, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
501 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x6c,
502 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65,
503 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02,
504 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d,
505 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01,
506 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x7d, 0x0a,
507 0x10, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x61, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
508 0x65, 0x12, 0x41, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
509 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c,
510 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
511 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2e, 0x54, 0x61, 0x67, 0x52, 0x04,
512 0x74, 0x61, 0x67, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67,
513 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e,
514 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x23, 0x0a, 0x0d,
515 0x47, 0x65, 0x74, 0x54, 0x61, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
516 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
517 0x65, 0x22, 0x82, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x61, 0x67, 0x52,
518 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
519 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x15,
520 0x0a, 0x06, 0x74, 0x61, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
521 0x74, 0x61, 0x67, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01,
522 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74,
523 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67,
524 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2e, 0x54, 0x61,
525 0x67, 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x90, 0x01, 0x0a, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74,
526 0x65, 0x54, 0x61, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x03, 0x74,
527 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
528 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66,
529 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65,
530 0x74, 0x61, 0x32, 0x2e, 0x54, 0x61, 0x67, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x3b, 0x0a, 0x0b,
531 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
532 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
533 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75,
534 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x22, 0x26, 0x0a, 0x10, 0x44, 0x65, 0x6c,
535 0x65, 0x74, 0x65, 0x54, 0x61, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
536 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
537 0x65, 0x42, 0x8c, 0x02, 0x0a, 0x2c, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
538 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61,
539 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74,
540 0x61, 0x32, 0x42, 0x08, 0x54, 0x61, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x55,
541 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d,
542 0x2f, 0x67, 0x6f, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69,
543 0x73, 0x74, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2f,
544 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79,
545 0x70, 0x62, 0x3b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73,
546 0x74, 0x72, 0x79, 0x70, 0x62, 0xaa, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x43,
547 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52, 0x65, 0x67,
548 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x56, 0x31, 0x42, 0x65, 0x74, 0x61, 0x32, 0xca, 0x02, 0x25,
549 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x5c, 0x41, 0x72, 0x74,
550 0x69, 0x66, 0x61, 0x63, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x5c, 0x56, 0x31,
551 0x62, 0x65, 0x74, 0x61, 0x32, 0xea, 0x02, 0x28, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
552 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x3a, 0x3a, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52,
553 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32,
554 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
555 }
556
557 var (
558 file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescOnce sync.Once
559 file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescData = file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDesc
560 )
561
562 func file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescGZIP() []byte {
563 file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescOnce.Do(func() {
564 file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescData)
565 })
566 return file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDescData
567 }
568
569 var file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
570 var file_google_devtools_artifactregistry_v1beta2_tag_proto_goTypes = []interface{}{
571 (*Tag)(nil),
572 (*ListTagsRequest)(nil),
573 (*ListTagsResponse)(nil),
574 (*GetTagRequest)(nil),
575 (*CreateTagRequest)(nil),
576 (*UpdateTagRequest)(nil),
577 (*DeleteTagRequest)(nil),
578 (*fieldmaskpb.FieldMask)(nil),
579 }
580 var file_google_devtools_artifactregistry_v1beta2_tag_proto_depIdxs = []int32{
581 0,
582 0,
583 0,
584 7,
585 4,
586 4,
587 4,
588 4,
589 0,
590 }
591
592 func init() { file_google_devtools_artifactregistry_v1beta2_tag_proto_init() }
593 func file_google_devtools_artifactregistry_v1beta2_tag_proto_init() {
594 if File_google_devtools_artifactregistry_v1beta2_tag_proto != nil {
595 return
596 }
597 if !protoimpl.UnsafeEnabled {
598 file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
599 switch v := v.(*Tag); i {
600 case 0:
601 return &v.state
602 case 1:
603 return &v.sizeCache
604 case 2:
605 return &v.unknownFields
606 default:
607 return nil
608 }
609 }
610 file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
611 switch v := v.(*ListTagsRequest); i {
612 case 0:
613 return &v.state
614 case 1:
615 return &v.sizeCache
616 case 2:
617 return &v.unknownFields
618 default:
619 return nil
620 }
621 }
622 file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
623 switch v := v.(*ListTagsResponse); i {
624 case 0:
625 return &v.state
626 case 1:
627 return &v.sizeCache
628 case 2:
629 return &v.unknownFields
630 default:
631 return nil
632 }
633 }
634 file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
635 switch v := v.(*GetTagRequest); i {
636 case 0:
637 return &v.state
638 case 1:
639 return &v.sizeCache
640 case 2:
641 return &v.unknownFields
642 default:
643 return nil
644 }
645 }
646 file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
647 switch v := v.(*CreateTagRequest); i {
648 case 0:
649 return &v.state
650 case 1:
651 return &v.sizeCache
652 case 2:
653 return &v.unknownFields
654 default:
655 return nil
656 }
657 }
658 file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
659 switch v := v.(*UpdateTagRequest); i {
660 case 0:
661 return &v.state
662 case 1:
663 return &v.sizeCache
664 case 2:
665 return &v.unknownFields
666 default:
667 return nil
668 }
669 }
670 file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
671 switch v := v.(*DeleteTagRequest); i {
672 case 0:
673 return &v.state
674 case 1:
675 return &v.sizeCache
676 case 2:
677 return &v.unknownFields
678 default:
679 return nil
680 }
681 }
682 }
683 type x struct{}
684 out := protoimpl.TypeBuilder{
685 File: protoimpl.DescBuilder{
686 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
687 RawDescriptor: file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDesc,
688 NumEnums: 0,
689 NumMessages: 7,
690 NumExtensions: 0,
691 NumServices: 0,
692 },
693 GoTypes: file_google_devtools_artifactregistry_v1beta2_tag_proto_goTypes,
694 DependencyIndexes: file_google_devtools_artifactregistry_v1beta2_tag_proto_depIdxs,
695 MessageInfos: file_google_devtools_artifactregistry_v1beta2_tag_proto_msgTypes,
696 }.Build()
697 File_google_devtools_artifactregistry_v1beta2_tag_proto = out.File
698 file_google_devtools_artifactregistry_v1beta2_tag_proto_rawDesc = nil
699 file_google_devtools_artifactregistry_v1beta2_tag_proto_goTypes = nil
700 file_google_devtools_artifactregistry_v1beta2_tag_proto_depIdxs = nil
701 }
702
View as plain text