...

Source file src/cloud.google.com/go/artifactregistry/apiv1beta2/artifactregistrypb/package.pb.go

Documentation: cloud.google.com/go/artifactregistry/apiv1beta2/artifactregistrypb

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

View as plain text