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 timestamppb "google.golang.org/protobuf/types/known/timestamppb"
31 )
32
33 const (
34
35 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
36
37 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
38 )
39
40
41 type Package struct {
42 state protoimpl.MessageState
43 sizeCache protoimpl.SizeCache
44 unknownFields protoimpl.UnknownFields
45
46
47
48
49 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
50
51 DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
52
53 CreateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
54
55
56 UpdateTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
57 }
58
59 func (x *Package) Reset() {
60 *x = Package{}
61 if protoimpl.UnsafeEnabled {
62 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[0]
63 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
64 ms.StoreMessageInfo(mi)
65 }
66 }
67
68 func (x *Package) String() string {
69 return protoimpl.X.MessageStringOf(x)
70 }
71
72 func (*Package) ProtoMessage() {}
73
74 func (x *Package) ProtoReflect() protoreflect.Message {
75 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[0]
76 if protoimpl.UnsafeEnabled && x != nil {
77 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
78 if ms.LoadMessageInfo() == nil {
79 ms.StoreMessageInfo(mi)
80 }
81 return ms
82 }
83 return mi.MessageOf(x)
84 }
85
86
87 func (*Package) Descriptor() ([]byte, []int) {
88 return file_google_devtools_artifactregistry_v1_package_proto_rawDescGZIP(), []int{0}
89 }
90
91 func (x *Package) GetName() string {
92 if x != nil {
93 return x.Name
94 }
95 return ""
96 }
97
98 func (x *Package) GetDisplayName() string {
99 if x != nil {
100 return x.DisplayName
101 }
102 return ""
103 }
104
105 func (x *Package) GetCreateTime() *timestamppb.Timestamp {
106 if x != nil {
107 return x.CreateTime
108 }
109 return nil
110 }
111
112 func (x *Package) GetUpdateTime() *timestamppb.Timestamp {
113 if x != nil {
114 return x.UpdateTime
115 }
116 return nil
117 }
118
119
120 type ListPackagesRequest struct {
121 state protoimpl.MessageState
122 sizeCache protoimpl.SizeCache
123 unknownFields protoimpl.UnknownFields
124
125
126 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
127
128 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
129
130 PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
131 }
132
133 func (x *ListPackagesRequest) Reset() {
134 *x = ListPackagesRequest{}
135 if protoimpl.UnsafeEnabled {
136 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[1]
137 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
138 ms.StoreMessageInfo(mi)
139 }
140 }
141
142 func (x *ListPackagesRequest) String() string {
143 return protoimpl.X.MessageStringOf(x)
144 }
145
146 func (*ListPackagesRequest) ProtoMessage() {}
147
148 func (x *ListPackagesRequest) ProtoReflect() protoreflect.Message {
149 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[1]
150 if protoimpl.UnsafeEnabled && x != nil {
151 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
152 if ms.LoadMessageInfo() == nil {
153 ms.StoreMessageInfo(mi)
154 }
155 return ms
156 }
157 return mi.MessageOf(x)
158 }
159
160
161 func (*ListPackagesRequest) Descriptor() ([]byte, []int) {
162 return file_google_devtools_artifactregistry_v1_package_proto_rawDescGZIP(), []int{1}
163 }
164
165 func (x *ListPackagesRequest) GetParent() string {
166 if x != nil {
167 return x.Parent
168 }
169 return ""
170 }
171
172 func (x *ListPackagesRequest) GetPageSize() int32 {
173 if x != nil {
174 return x.PageSize
175 }
176 return 0
177 }
178
179 func (x *ListPackagesRequest) GetPageToken() string {
180 if x != nil {
181 return x.PageToken
182 }
183 return ""
184 }
185
186
187 type ListPackagesResponse struct {
188 state protoimpl.MessageState
189 sizeCache protoimpl.SizeCache
190 unknownFields protoimpl.UnknownFields
191
192
193 Packages []*Package `protobuf:"bytes,1,rep,name=packages,proto3" json:"packages,omitempty"`
194
195
196 NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
197 }
198
199 func (x *ListPackagesResponse) Reset() {
200 *x = ListPackagesResponse{}
201 if protoimpl.UnsafeEnabled {
202 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[2]
203 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
204 ms.StoreMessageInfo(mi)
205 }
206 }
207
208 func (x *ListPackagesResponse) String() string {
209 return protoimpl.X.MessageStringOf(x)
210 }
211
212 func (*ListPackagesResponse) ProtoMessage() {}
213
214 func (x *ListPackagesResponse) ProtoReflect() protoreflect.Message {
215 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[2]
216 if protoimpl.UnsafeEnabled && x != nil {
217 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
218 if ms.LoadMessageInfo() == nil {
219 ms.StoreMessageInfo(mi)
220 }
221 return ms
222 }
223 return mi.MessageOf(x)
224 }
225
226
227 func (*ListPackagesResponse) Descriptor() ([]byte, []int) {
228 return file_google_devtools_artifactregistry_v1_package_proto_rawDescGZIP(), []int{2}
229 }
230
231 func (x *ListPackagesResponse) GetPackages() []*Package {
232 if x != nil {
233 return x.Packages
234 }
235 return nil
236 }
237
238 func (x *ListPackagesResponse) GetNextPageToken() string {
239 if x != nil {
240 return x.NextPageToken
241 }
242 return ""
243 }
244
245
246 type GetPackageRequest struct {
247 state protoimpl.MessageState
248 sizeCache protoimpl.SizeCache
249 unknownFields protoimpl.UnknownFields
250
251
252 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
253 }
254
255 func (x *GetPackageRequest) Reset() {
256 *x = GetPackageRequest{}
257 if protoimpl.UnsafeEnabled {
258 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[3]
259 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
260 ms.StoreMessageInfo(mi)
261 }
262 }
263
264 func (x *GetPackageRequest) String() string {
265 return protoimpl.X.MessageStringOf(x)
266 }
267
268 func (*GetPackageRequest) ProtoMessage() {}
269
270 func (x *GetPackageRequest) ProtoReflect() protoreflect.Message {
271 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[3]
272 if protoimpl.UnsafeEnabled && x != nil {
273 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
274 if ms.LoadMessageInfo() == nil {
275 ms.StoreMessageInfo(mi)
276 }
277 return ms
278 }
279 return mi.MessageOf(x)
280 }
281
282
283 func (*GetPackageRequest) Descriptor() ([]byte, []int) {
284 return file_google_devtools_artifactregistry_v1_package_proto_rawDescGZIP(), []int{3}
285 }
286
287 func (x *GetPackageRequest) GetName() string {
288 if x != nil {
289 return x.Name
290 }
291 return ""
292 }
293
294
295 type DeletePackageRequest struct {
296 state protoimpl.MessageState
297 sizeCache protoimpl.SizeCache
298 unknownFields protoimpl.UnknownFields
299
300
301 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
302 }
303
304 func (x *DeletePackageRequest) Reset() {
305 *x = DeletePackageRequest{}
306 if protoimpl.UnsafeEnabled {
307 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[4]
308 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
309 ms.StoreMessageInfo(mi)
310 }
311 }
312
313 func (x *DeletePackageRequest) String() string {
314 return protoimpl.X.MessageStringOf(x)
315 }
316
317 func (*DeletePackageRequest) ProtoMessage() {}
318
319 func (x *DeletePackageRequest) ProtoReflect() protoreflect.Message {
320 mi := &file_google_devtools_artifactregistry_v1_package_proto_msgTypes[4]
321 if protoimpl.UnsafeEnabled && x != nil {
322 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
323 if ms.LoadMessageInfo() == nil {
324 ms.StoreMessageInfo(mi)
325 }
326 return ms
327 }
328 return mi.MessageOf(x)
329 }
330
331
332 func (*DeletePackageRequest) Descriptor() ([]byte, []int) {
333 return file_google_devtools_artifactregistry_v1_package_proto_rawDescGZIP(), []int{4}
334 }
335
336 func (x *DeletePackageRequest) GetName() string {
337 if x != nil {
338 return x.Name
339 }
340 return ""
341 }
342
343 var File_google_devtools_artifactregistry_v1_package_proto protoreflect.FileDescriptor
344
345 var file_google_devtools_artifactregistry_v1_package_proto_rawDesc = []byte{
346 0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c,
347 0x73, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
348 0x72, 0x79, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72,
349 0x6f, 0x74, 0x6f, 0x12, 0x23, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74,
350 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67,
351 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
352 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76,
353 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
354 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70,
355 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
356 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e,
357 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xbf, 0x02, 0x0a, 0x07, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67,
358 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
359 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
360 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73,
361 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61,
362 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
363 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
364 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
365 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
366 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
367 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
368 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
369 0x6d, 0x65, 0x3a, 0x82, 0x01, 0xea, 0x41, 0x7f, 0x0a, 0x27, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61,
370 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
371 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67,
372 0x65, 0x12, 0x54, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
373 0x6a, 0x65, 0x63, 0x74, 0x7d, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f,
374 0x7b, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x73,
375 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x2f, 0x7b, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
376 0x6f, 0x72, 0x79, 0x7d, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x2f, 0x7b, 0x70,
377 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x7d, 0x22, 0x9a, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74,
378 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
379 0x47, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
380 0x2f, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x29, 0x12, 0x27, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63,
381 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
382 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
383 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65,
384 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67,
385 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f,
386 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54,
387 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x88, 0x01, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x63,
388 0x6b, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x48, 0x0a,
389 0x08, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
390 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c,
391 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
392 0x72, 0x79, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x52, 0x08, 0x70,
393 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f,
394 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
395 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22,
396 0x58, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
397 0x75, 0x65, 0x73, 0x74, 0x12, 0x43, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
398 0x28, 0x09, 0x42, 0x2f, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x29, 0x0a, 0x27, 0x61, 0x72, 0x74, 0x69,
399 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x67, 0x6f, 0x6f,
400 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x61, 0x63, 0x6b,
401 0x61, 0x67, 0x65, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x5b, 0x0a, 0x14, 0x44, 0x65, 0x6c,
402 0x65, 0x74, 0x65, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
403 0x74, 0x12, 0x43, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
404 0x2f, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x29, 0x0a, 0x27, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63,
405 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
406 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
407 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0xf7, 0x01, 0x0a, 0x27, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
408 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61,
409 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e,
410 0x76, 0x31, 0x42, 0x0c, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
411 0x50, 0x01, 0x5a, 0x50, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
412 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74,
413 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x76, 0x31, 0x2f, 0x61,
414 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x70,
415 0x62, 0x3b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
416 0x72, 0x79, 0x70, 0x62, 0xaa, 0x02, 0x20, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x43, 0x6c,
417 0x6f, 0x75, 0x64, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52, 0x65, 0x67, 0x69,
418 0x73, 0x74, 0x72, 0x79, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x20, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
419 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x5c, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52,
420 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x5c, 0x56, 0x31, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
421 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x3a, 0x3a, 0x41, 0x72, 0x74, 0x69,
422 0x66, 0x61, 0x63, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x3a, 0x3a, 0x56, 0x31,
423 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
424 }
425
426 var (
427 file_google_devtools_artifactregistry_v1_package_proto_rawDescOnce sync.Once
428 file_google_devtools_artifactregistry_v1_package_proto_rawDescData = file_google_devtools_artifactregistry_v1_package_proto_rawDesc
429 )
430
431 func file_google_devtools_artifactregistry_v1_package_proto_rawDescGZIP() []byte {
432 file_google_devtools_artifactregistry_v1_package_proto_rawDescOnce.Do(func() {
433 file_google_devtools_artifactregistry_v1_package_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_devtools_artifactregistry_v1_package_proto_rawDescData)
434 })
435 return file_google_devtools_artifactregistry_v1_package_proto_rawDescData
436 }
437
438 var file_google_devtools_artifactregistry_v1_package_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
439 var file_google_devtools_artifactregistry_v1_package_proto_goTypes = []interface{}{
440 (*Package)(nil),
441 (*ListPackagesRequest)(nil),
442 (*ListPackagesResponse)(nil),
443 (*GetPackageRequest)(nil),
444 (*DeletePackageRequest)(nil),
445 (*timestamppb.Timestamp)(nil),
446 }
447 var file_google_devtools_artifactregistry_v1_package_proto_depIdxs = []int32{
448 5,
449 5,
450 0,
451 3,
452 3,
453 3,
454 3,
455 0,
456 }
457
458 func init() { file_google_devtools_artifactregistry_v1_package_proto_init() }
459 func file_google_devtools_artifactregistry_v1_package_proto_init() {
460 if File_google_devtools_artifactregistry_v1_package_proto != nil {
461 return
462 }
463 if !protoimpl.UnsafeEnabled {
464 file_google_devtools_artifactregistry_v1_package_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
465 switch v := v.(*Package); i {
466 case 0:
467 return &v.state
468 case 1:
469 return &v.sizeCache
470 case 2:
471 return &v.unknownFields
472 default:
473 return nil
474 }
475 }
476 file_google_devtools_artifactregistry_v1_package_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
477 switch v := v.(*ListPackagesRequest); i {
478 case 0:
479 return &v.state
480 case 1:
481 return &v.sizeCache
482 case 2:
483 return &v.unknownFields
484 default:
485 return nil
486 }
487 }
488 file_google_devtools_artifactregistry_v1_package_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
489 switch v := v.(*ListPackagesResponse); i {
490 case 0:
491 return &v.state
492 case 1:
493 return &v.sizeCache
494 case 2:
495 return &v.unknownFields
496 default:
497 return nil
498 }
499 }
500 file_google_devtools_artifactregistry_v1_package_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
501 switch v := v.(*GetPackageRequest); i {
502 case 0:
503 return &v.state
504 case 1:
505 return &v.sizeCache
506 case 2:
507 return &v.unknownFields
508 default:
509 return nil
510 }
511 }
512 file_google_devtools_artifactregistry_v1_package_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
513 switch v := v.(*DeletePackageRequest); i {
514 case 0:
515 return &v.state
516 case 1:
517 return &v.sizeCache
518 case 2:
519 return &v.unknownFields
520 default:
521 return nil
522 }
523 }
524 }
525 type x struct{}
526 out := protoimpl.TypeBuilder{
527 File: protoimpl.DescBuilder{
528 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
529 RawDescriptor: file_google_devtools_artifactregistry_v1_package_proto_rawDesc,
530 NumEnums: 0,
531 NumMessages: 5,
532 NumExtensions: 0,
533 NumServices: 0,
534 },
535 GoTypes: file_google_devtools_artifactregistry_v1_package_proto_goTypes,
536 DependencyIndexes: file_google_devtools_artifactregistry_v1_package_proto_depIdxs,
537 MessageInfos: file_google_devtools_artifactregistry_v1_package_proto_msgTypes,
538 }.Build()
539 File_google_devtools_artifactregistry_v1_package_proto = out.File
540 file_google_devtools_artifactregistry_v1_package_proto_rawDesc = nil
541 file_google_devtools_artifactregistry_v1_package_proto_goTypes = nil
542 file_google_devtools_artifactregistry_v1_package_proto_depIdxs = nil
543 }
544
View as plain text