1// Copyright 2020 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// Code generated by protoc-gen-go. DO NOT EDIT.
16// versions:
17// 	protoc-gen-go v1.25.0
18// 	protoc        v3.13.0
19// source: google/devtools/artifactregistry/v1beta2/package.proto
20
21package artifactregistry
22
23import (
24	reflect "reflect"
25	sync "sync"
26
27	proto "github.com/golang/protobuf/proto"
28	_ "google.golang.org/genproto/googleapis/api/annotations"
29	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
30	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
31	timestamppb "google.golang.org/protobuf/types/known/timestamppb"
32)
33
34const (
35	// Verify that this generated code is sufficiently up-to-date.
36	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
37	// Verify that runtime/protoimpl is sufficiently up-to-date.
38	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
39)
40
41// This is a compile-time assertion that a sufficiently up-to-date version
42// of the legacy proto package is being used.
43const _ = proto.ProtoPackageIsVersion4
44
45// Packages are named collections of versions.
46type Package struct {
47	state         protoimpl.MessageState
48	sizeCache     protoimpl.SizeCache
49	unknownFields protoimpl.UnknownFields
50
51	// The name of the package, for example:
52	// "projects/p1/locations/us-central1/repositories/repo1/packages/pkg1".
53	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
54	// The display name of the package.
55	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
56	// The time when the package was created.
57	CreateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
58	// The time when the package was last updated. This includes publishing a new
59	// version of the package.
60	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
61}
62
63func (x *Package) Reset() {
64	*x = Package{}
65	if protoimpl.UnsafeEnabled {
66		mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[0]
67		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
68		ms.StoreMessageInfo(mi)
69	}
70}
71
72func (x *Package) String() string {
73	return protoimpl.X.MessageStringOf(x)
74}
75
76func (*Package) ProtoMessage() {}
77
78func (x *Package) ProtoReflect() protoreflect.Message {
79	mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[0]
80	if protoimpl.UnsafeEnabled && x != nil {
81		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
82		if ms.LoadMessageInfo() == nil {
83			ms.StoreMessageInfo(mi)
84		}
85		return ms
86	}
87	return mi.MessageOf(x)
88}
89
90// Deprecated: Use Package.ProtoReflect.Descriptor instead.
91func (*Package) Descriptor() ([]byte, []int) {
92	return file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescGZIP(), []int{0}
93}
94
95func (x *Package) GetName() string {
96	if x != nil {
97		return x.Name
98	}
99	return ""
100}
101
102func (x *Package) GetDisplayName() string {
103	if x != nil {
104		return x.DisplayName
105	}
106	return ""
107}
108
109func (x *Package) GetCreateTime() *timestamppb.Timestamp {
110	if x != nil {
111		return x.CreateTime
112	}
113	return nil
114}
115
116func (x *Package) GetUpdateTime() *timestamppb.Timestamp {
117	if x != nil {
118		return x.UpdateTime
119	}
120	return nil
121}
122
123// The request to list packages.
124type ListPackagesRequest struct {
125	state         protoimpl.MessageState
126	sizeCache     protoimpl.SizeCache
127	unknownFields protoimpl.UnknownFields
128
129	// The name of the parent resource whose packages will be listed.
130	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
131	// The maximum number of packages to return.
132	// Maximum page size is 10,000.
133	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
134	// The next_page_token value returned from a previous list request, if any.
135	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
136}
137
138func (x *ListPackagesRequest) Reset() {
139	*x = ListPackagesRequest{}
140	if protoimpl.UnsafeEnabled {
141		mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[1]
142		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
143		ms.StoreMessageInfo(mi)
144	}
145}
146
147func (x *ListPackagesRequest) String() string {
148	return protoimpl.X.MessageStringOf(x)
149}
150
151func (*ListPackagesRequest) ProtoMessage() {}
152
153func (x *ListPackagesRequest) ProtoReflect() protoreflect.Message {
154	mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[1]
155	if protoimpl.UnsafeEnabled && x != nil {
156		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
157		if ms.LoadMessageInfo() == nil {
158			ms.StoreMessageInfo(mi)
159		}
160		return ms
161	}
162	return mi.MessageOf(x)
163}
164
165// Deprecated: Use ListPackagesRequest.ProtoReflect.Descriptor instead.
166func (*ListPackagesRequest) Descriptor() ([]byte, []int) {
167	return file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescGZIP(), []int{1}
168}
169
170func (x *ListPackagesRequest) GetParent() string {
171	if x != nil {
172		return x.Parent
173	}
174	return ""
175}
176
177func (x *ListPackagesRequest) GetPageSize() int32 {
178	if x != nil {
179		return x.PageSize
180	}
181	return 0
182}
183
184func (x *ListPackagesRequest) GetPageToken() string {
185	if x != nil {
186		return x.PageToken
187	}
188	return ""
189}
190
191// The response from listing packages.
192type ListPackagesResponse struct {
193	state         protoimpl.MessageState
194	sizeCache     protoimpl.SizeCache
195	unknownFields protoimpl.UnknownFields
196
197	// The packages returned.
198	Packages []*Package `protobuf:"bytes,1,rep,name=packages,proto3" json:"packages,omitempty"`
199	// The token to retrieve the next page of packages, or empty if there are no
200	// more packages to return.
201	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
202}
203
204func (x *ListPackagesResponse) Reset() {
205	*x = ListPackagesResponse{}
206	if protoimpl.UnsafeEnabled {
207		mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[2]
208		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
209		ms.StoreMessageInfo(mi)
210	}
211}
212
213func (x *ListPackagesResponse) String() string {
214	return protoimpl.X.MessageStringOf(x)
215}
216
217func (*ListPackagesResponse) ProtoMessage() {}
218
219func (x *ListPackagesResponse) ProtoReflect() protoreflect.Message {
220	mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[2]
221	if protoimpl.UnsafeEnabled && x != nil {
222		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
223		if ms.LoadMessageInfo() == nil {
224			ms.StoreMessageInfo(mi)
225		}
226		return ms
227	}
228	return mi.MessageOf(x)
229}
230
231// Deprecated: Use ListPackagesResponse.ProtoReflect.Descriptor instead.
232func (*ListPackagesResponse) Descriptor() ([]byte, []int) {
233	return file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescGZIP(), []int{2}
234}
235
236func (x *ListPackagesResponse) GetPackages() []*Package {
237	if x != nil {
238		return x.Packages
239	}
240	return nil
241}
242
243func (x *ListPackagesResponse) GetNextPageToken() string {
244	if x != nil {
245		return x.NextPageToken
246	}
247	return ""
248}
249
250// The request to retrieve a package.
251type GetPackageRequest struct {
252	state         protoimpl.MessageState
253	sizeCache     protoimpl.SizeCache
254	unknownFields protoimpl.UnknownFields
255
256	// The name of the package to retrieve.
257	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
258}
259
260func (x *GetPackageRequest) Reset() {
261	*x = GetPackageRequest{}
262	if protoimpl.UnsafeEnabled {
263		mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[3]
264		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
265		ms.StoreMessageInfo(mi)
266	}
267}
268
269func (x *GetPackageRequest) String() string {
270	return protoimpl.X.MessageStringOf(x)
271}
272
273func (*GetPackageRequest) ProtoMessage() {}
274
275func (x *GetPackageRequest) ProtoReflect() protoreflect.Message {
276	mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[3]
277	if protoimpl.UnsafeEnabled && x != nil {
278		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
279		if ms.LoadMessageInfo() == nil {
280			ms.StoreMessageInfo(mi)
281		}
282		return ms
283	}
284	return mi.MessageOf(x)
285}
286
287// Deprecated: Use GetPackageRequest.ProtoReflect.Descriptor instead.
288func (*GetPackageRequest) Descriptor() ([]byte, []int) {
289	return file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescGZIP(), []int{3}
290}
291
292func (x *GetPackageRequest) GetName() string {
293	if x != nil {
294		return x.Name
295	}
296	return ""
297}
298
299// The request to delete a package.
300type DeletePackageRequest struct {
301	state         protoimpl.MessageState
302	sizeCache     protoimpl.SizeCache
303	unknownFields protoimpl.UnknownFields
304
305	// The name of the package to delete.
306	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
307}
308
309func (x *DeletePackageRequest) Reset() {
310	*x = DeletePackageRequest{}
311	if protoimpl.UnsafeEnabled {
312		mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[4]
313		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
314		ms.StoreMessageInfo(mi)
315	}
316}
317
318func (x *DeletePackageRequest) String() string {
319	return protoimpl.X.MessageStringOf(x)
320}
321
322func (*DeletePackageRequest) ProtoMessage() {}
323
324func (x *DeletePackageRequest) ProtoReflect() protoreflect.Message {
325	mi := &file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[4]
326	if protoimpl.UnsafeEnabled && x != nil {
327		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
328		if ms.LoadMessageInfo() == nil {
329			ms.StoreMessageInfo(mi)
330		}
331		return ms
332	}
333	return mi.MessageOf(x)
334}
335
336// Deprecated: Use DeletePackageRequest.ProtoReflect.Descriptor instead.
337func (*DeletePackageRequest) Descriptor() ([]byte, []int) {
338	return file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescGZIP(), []int{4}
339}
340
341func (x *DeletePackageRequest) GetName() string {
342	if x != nil {
343		return x.Name
344	}
345	return ""
346}
347
348var File_google_devtools_artifactregistry_v1beta2_package_proto protoreflect.FileDescriptor
349
350var file_google_devtools_artifactregistry_v1beta2_package_proto_rawDesc = []byte{
351	0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c,
352	0x73, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
353	0x72, 0x79, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x61,
354	0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
355	0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61,
356	0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74,
357	0x61, 0x32, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
358	0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72,
359	0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f,
360	0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
361	0x6f, 0x22, 0xba, 0x01, 0x0a, 0x07, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a,
362	0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
363	0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
364	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
365	0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74,
366	0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
367	0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
368	0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
369	0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
370	0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
371	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
372	0x6d, 0x70, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x69,
373	0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65,
374	0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18,
375	0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1b, 0x0a,
376	0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
377	0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61,
378	0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
379	0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x8d, 0x01, 0x0a, 0x14, 0x4c, 0x69,
380	0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
381	0x73, 0x65, 0x12, 0x4d, 0x0a, 0x08, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01,
382	0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65,
383	0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72,
384	0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2e,
385	0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x52, 0x08, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
386	0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74,
387	0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74,
388	0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x27, 0x0a, 0x11, 0x47, 0x65, 0x74,
389	0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
390	0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
391	0x6d, 0x65, 0x22, 0x2a, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x63, 0x6b,
392	0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
393	0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0xe8,
394	0x01, 0x0a, 0x2c, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65,
395	0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72,
396	0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x42,
397	0x0c, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
398	0x58, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
399	0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
400	0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2f,
401	0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79,
402	0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x3b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63,
403	0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0xaa, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67,
404	0x6c, 0x65, 0x2e, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63,
405	0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x56, 0x31, 0x42, 0x65, 0x74, 0x61,
406	0x32, 0xca, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64,
407	0x5c, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72,
408	0x79, 0x5c, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
409	0x33,
410}
411
412var (
413	file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescOnce sync.Once
414	file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescData = file_google_devtools_artifactregistry_v1beta2_package_proto_rawDesc
415)
416
417func file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescGZIP() []byte {
418	file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescOnce.Do(func() {
419		file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescData)
420	})
421	return file_google_devtools_artifactregistry_v1beta2_package_proto_rawDescData
422}
423
424var file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
425var file_google_devtools_artifactregistry_v1beta2_package_proto_goTypes = []interface{}{
426	(*Package)(nil),               // 0: google.devtools.artifactregistry.v1beta2.Package
427	(*ListPackagesRequest)(nil),   // 1: google.devtools.artifactregistry.v1beta2.ListPackagesRequest
428	(*ListPackagesResponse)(nil),  // 2: google.devtools.artifactregistry.v1beta2.ListPackagesResponse
429	(*GetPackageRequest)(nil),     // 3: google.devtools.artifactregistry.v1beta2.GetPackageRequest
430	(*DeletePackageRequest)(nil),  // 4: google.devtools.artifactregistry.v1beta2.DeletePackageRequest
431	(*timestamppb.Timestamp)(nil), // 5: google.protobuf.Timestamp
432}
433var file_google_devtools_artifactregistry_v1beta2_package_proto_depIdxs = []int32{
434	5, // 0: google.devtools.artifactregistry.v1beta2.Package.create_time:type_name -> google.protobuf.Timestamp
435	5, // 1: google.devtools.artifactregistry.v1beta2.Package.update_time:type_name -> google.protobuf.Timestamp
436	0, // 2: google.devtools.artifactregistry.v1beta2.ListPackagesResponse.packages:type_name -> google.devtools.artifactregistry.v1beta2.Package
437	3, // [3:3] is the sub-list for method output_type
438	3, // [3:3] is the sub-list for method input_type
439	3, // [3:3] is the sub-list for extension type_name
440	3, // [3:3] is the sub-list for extension extendee
441	0, // [0:3] is the sub-list for field type_name
442}
443
444func init() { file_google_devtools_artifactregistry_v1beta2_package_proto_init() }
445func file_google_devtools_artifactregistry_v1beta2_package_proto_init() {
446	if File_google_devtools_artifactregistry_v1beta2_package_proto != nil {
447		return
448	}
449	if !protoimpl.UnsafeEnabled {
450		file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
451			switch v := v.(*Package); i {
452			case 0:
453				return &v.state
454			case 1:
455				return &v.sizeCache
456			case 2:
457				return &v.unknownFields
458			default:
459				return nil
460			}
461		}
462		file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
463			switch v := v.(*ListPackagesRequest); i {
464			case 0:
465				return &v.state
466			case 1:
467				return &v.sizeCache
468			case 2:
469				return &v.unknownFields
470			default:
471				return nil
472			}
473		}
474		file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
475			switch v := v.(*ListPackagesResponse); i {
476			case 0:
477				return &v.state
478			case 1:
479				return &v.sizeCache
480			case 2:
481				return &v.unknownFields
482			default:
483				return nil
484			}
485		}
486		file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
487			switch v := v.(*GetPackageRequest); i {
488			case 0:
489				return &v.state
490			case 1:
491				return &v.sizeCache
492			case 2:
493				return &v.unknownFields
494			default:
495				return nil
496			}
497		}
498		file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
499			switch v := v.(*DeletePackageRequest); i {
500			case 0:
501				return &v.state
502			case 1:
503				return &v.sizeCache
504			case 2:
505				return &v.unknownFields
506			default:
507				return nil
508			}
509		}
510	}
511	type x struct{}
512	out := protoimpl.TypeBuilder{
513		File: protoimpl.DescBuilder{
514			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
515			RawDescriptor: file_google_devtools_artifactregistry_v1beta2_package_proto_rawDesc,
516			NumEnums:      0,
517			NumMessages:   5,
518			NumExtensions: 0,
519			NumServices:   0,
520		},
521		GoTypes:           file_google_devtools_artifactregistry_v1beta2_package_proto_goTypes,
522		DependencyIndexes: file_google_devtools_artifactregistry_v1beta2_package_proto_depIdxs,
523		MessageInfos:      file_google_devtools_artifactregistry_v1beta2_package_proto_msgTypes,
524	}.Build()
525	File_google_devtools_artifactregistry_v1beta2_package_proto = out.File
526	file_google_devtools_artifactregistry_v1beta2_package_proto_rawDesc = nil
527	file_google_devtools_artifactregistry_v1beta2_package_proto_goTypes = nil
528	file_google_devtools_artifactregistry_v1beta2_package_proto_depIdxs = nil
529}
530