...

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

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

     1  // Copyright 2022 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/apt_artifact.proto
    20  
    21  package artifactregistrypb
    22  
    23  import (
    24  	reflect "reflect"
    25  	sync "sync"
    26  
    27  	_ "google.golang.org/genproto/googleapis/api/annotations"
    28  	status "google.golang.org/genproto/googleapis/rpc/status"
    29  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    30  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    31  )
    32  
    33  const (
    34  	// Verify that this generated code is sufficiently up-to-date.
    35  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    36  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    37  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    38  )
    39  
    40  // Package type is either binary or source.
    41  type AptArtifact_PackageType int32
    42  
    43  const (
    44  	// Package type is not specified.
    45  	AptArtifact_PACKAGE_TYPE_UNSPECIFIED AptArtifact_PackageType = 0
    46  	// Binary package.
    47  	AptArtifact_BINARY AptArtifact_PackageType = 1
    48  	// Source package.
    49  	AptArtifact_SOURCE AptArtifact_PackageType = 2
    50  )
    51  
    52  // Enum value maps for AptArtifact_PackageType.
    53  var (
    54  	AptArtifact_PackageType_name = map[int32]string{
    55  		0: "PACKAGE_TYPE_UNSPECIFIED",
    56  		1: "BINARY",
    57  		2: "SOURCE",
    58  	}
    59  	AptArtifact_PackageType_value = map[string]int32{
    60  		"PACKAGE_TYPE_UNSPECIFIED": 0,
    61  		"BINARY":                   1,
    62  		"SOURCE":                   2,
    63  	}
    64  )
    65  
    66  func (x AptArtifact_PackageType) Enum() *AptArtifact_PackageType {
    67  	p := new(AptArtifact_PackageType)
    68  	*p = x
    69  	return p
    70  }
    71  
    72  func (x AptArtifact_PackageType) String() string {
    73  	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
    74  }
    75  
    76  func (AptArtifact_PackageType) Descriptor() protoreflect.EnumDescriptor {
    77  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_enumTypes[0].Descriptor()
    78  }
    79  
    80  func (AptArtifact_PackageType) Type() protoreflect.EnumType {
    81  	return &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_enumTypes[0]
    82  }
    83  
    84  func (x AptArtifact_PackageType) Number() protoreflect.EnumNumber {
    85  	return protoreflect.EnumNumber(x)
    86  }
    87  
    88  // Deprecated: Use AptArtifact_PackageType.Descriptor instead.
    89  func (AptArtifact_PackageType) EnumDescriptor() ([]byte, []int) {
    90  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP(), []int{0, 0}
    91  }
    92  
    93  // A detailed representation of an Apt artifact. Information in the record
    94  // is derived from the archive's control file.
    95  // See https://www.debian.org/doc/debian-policy/ch-controlfields.html
    96  type AptArtifact struct {
    97  	state         protoimpl.MessageState
    98  	sizeCache     protoimpl.SizeCache
    99  	unknownFields protoimpl.UnknownFields
   100  
   101  	// Output only. The Artifact Registry resource name of the artifact.
   102  	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
   103  	// Output only. The Apt package name of the artifact.
   104  	PackageName string `protobuf:"bytes,2,opt,name=package_name,json=packageName,proto3" json:"package_name,omitempty"`
   105  	// Output only. An artifact is a binary or source package.
   106  	PackageType AptArtifact_PackageType `protobuf:"varint,3,opt,name=package_type,json=packageType,proto3,enum=google.devtools.artifactregistry.v1beta2.AptArtifact_PackageType" json:"package_type,omitempty"`
   107  	// Output only. Operating system architecture of the artifact.
   108  	Architecture string `protobuf:"bytes,4,opt,name=architecture,proto3" json:"architecture,omitempty"`
   109  	// Output only. Repository component of the artifact.
   110  	Component string `protobuf:"bytes,5,opt,name=component,proto3" json:"component,omitempty"`
   111  	// Output only. Contents of the artifact's control metadata file.
   112  	ControlFile []byte `protobuf:"bytes,6,opt,name=control_file,json=controlFile,proto3" json:"control_file,omitempty"`
   113  }
   114  
   115  func (x *AptArtifact) Reset() {
   116  	*x = AptArtifact{}
   117  	if protoimpl.UnsafeEnabled {
   118  		mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[0]
   119  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   120  		ms.StoreMessageInfo(mi)
   121  	}
   122  }
   123  
   124  func (x *AptArtifact) String() string {
   125  	return protoimpl.X.MessageStringOf(x)
   126  }
   127  
   128  func (*AptArtifact) ProtoMessage() {}
   129  
   130  func (x *AptArtifact) ProtoReflect() protoreflect.Message {
   131  	mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[0]
   132  	if protoimpl.UnsafeEnabled && x != nil {
   133  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   134  		if ms.LoadMessageInfo() == nil {
   135  			ms.StoreMessageInfo(mi)
   136  		}
   137  		return ms
   138  	}
   139  	return mi.MessageOf(x)
   140  }
   141  
   142  // Deprecated: Use AptArtifact.ProtoReflect.Descriptor instead.
   143  func (*AptArtifact) Descriptor() ([]byte, []int) {
   144  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP(), []int{0}
   145  }
   146  
   147  func (x *AptArtifact) GetName() string {
   148  	if x != nil {
   149  		return x.Name
   150  	}
   151  	return ""
   152  }
   153  
   154  func (x *AptArtifact) GetPackageName() string {
   155  	if x != nil {
   156  		return x.PackageName
   157  	}
   158  	return ""
   159  }
   160  
   161  func (x *AptArtifact) GetPackageType() AptArtifact_PackageType {
   162  	if x != nil {
   163  		return x.PackageType
   164  	}
   165  	return AptArtifact_PACKAGE_TYPE_UNSPECIFIED
   166  }
   167  
   168  func (x *AptArtifact) GetArchitecture() string {
   169  	if x != nil {
   170  		return x.Architecture
   171  	}
   172  	return ""
   173  }
   174  
   175  func (x *AptArtifact) GetComponent() string {
   176  	if x != nil {
   177  		return x.Component
   178  	}
   179  	return ""
   180  }
   181  
   182  func (x *AptArtifact) GetControlFile() []byte {
   183  	if x != nil {
   184  		return x.ControlFile
   185  	}
   186  	return nil
   187  }
   188  
   189  // Google Cloud Storage location where the artifacts currently reside.
   190  type ImportAptArtifactsGcsSource struct {
   191  	state         protoimpl.MessageState
   192  	sizeCache     protoimpl.SizeCache
   193  	unknownFields protoimpl.UnknownFields
   194  
   195  	// Cloud Storage paths URI (e.g., gs://my_bucket//my_object).
   196  	Uris []string `protobuf:"bytes,1,rep,name=uris,proto3" json:"uris,omitempty"`
   197  	// Supports URI wildcards for matching multiple objects from a single URI.
   198  	UseWildcards bool `protobuf:"varint,2,opt,name=use_wildcards,json=useWildcards,proto3" json:"use_wildcards,omitempty"`
   199  }
   200  
   201  func (x *ImportAptArtifactsGcsSource) Reset() {
   202  	*x = ImportAptArtifactsGcsSource{}
   203  	if protoimpl.UnsafeEnabled {
   204  		mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[1]
   205  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   206  		ms.StoreMessageInfo(mi)
   207  	}
   208  }
   209  
   210  func (x *ImportAptArtifactsGcsSource) String() string {
   211  	return protoimpl.X.MessageStringOf(x)
   212  }
   213  
   214  func (*ImportAptArtifactsGcsSource) ProtoMessage() {}
   215  
   216  func (x *ImportAptArtifactsGcsSource) ProtoReflect() protoreflect.Message {
   217  	mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[1]
   218  	if protoimpl.UnsafeEnabled && x != nil {
   219  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   220  		if ms.LoadMessageInfo() == nil {
   221  			ms.StoreMessageInfo(mi)
   222  		}
   223  		return ms
   224  	}
   225  	return mi.MessageOf(x)
   226  }
   227  
   228  // Deprecated: Use ImportAptArtifactsGcsSource.ProtoReflect.Descriptor instead.
   229  func (*ImportAptArtifactsGcsSource) Descriptor() ([]byte, []int) {
   230  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP(), []int{1}
   231  }
   232  
   233  func (x *ImportAptArtifactsGcsSource) GetUris() []string {
   234  	if x != nil {
   235  		return x.Uris
   236  	}
   237  	return nil
   238  }
   239  
   240  func (x *ImportAptArtifactsGcsSource) GetUseWildcards() bool {
   241  	if x != nil {
   242  		return x.UseWildcards
   243  	}
   244  	return false
   245  }
   246  
   247  // The request to import new apt artifacts.
   248  type ImportAptArtifactsRequest struct {
   249  	state         protoimpl.MessageState
   250  	sizeCache     protoimpl.SizeCache
   251  	unknownFields protoimpl.UnknownFields
   252  
   253  	// The source location of the package binaries.
   254  	//
   255  	// Types that are assignable to Source:
   256  	//
   257  	//	*ImportAptArtifactsRequest_GcsSource
   258  	Source isImportAptArtifactsRequest_Source `protobuf_oneof:"source"`
   259  	// The name of the parent resource where the artifacts will be imported.
   260  	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
   261  }
   262  
   263  func (x *ImportAptArtifactsRequest) Reset() {
   264  	*x = ImportAptArtifactsRequest{}
   265  	if protoimpl.UnsafeEnabled {
   266  		mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[2]
   267  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   268  		ms.StoreMessageInfo(mi)
   269  	}
   270  }
   271  
   272  func (x *ImportAptArtifactsRequest) String() string {
   273  	return protoimpl.X.MessageStringOf(x)
   274  }
   275  
   276  func (*ImportAptArtifactsRequest) ProtoMessage() {}
   277  
   278  func (x *ImportAptArtifactsRequest) ProtoReflect() protoreflect.Message {
   279  	mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[2]
   280  	if protoimpl.UnsafeEnabled && x != nil {
   281  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   282  		if ms.LoadMessageInfo() == nil {
   283  			ms.StoreMessageInfo(mi)
   284  		}
   285  		return ms
   286  	}
   287  	return mi.MessageOf(x)
   288  }
   289  
   290  // Deprecated: Use ImportAptArtifactsRequest.ProtoReflect.Descriptor instead.
   291  func (*ImportAptArtifactsRequest) Descriptor() ([]byte, []int) {
   292  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP(), []int{2}
   293  }
   294  
   295  func (m *ImportAptArtifactsRequest) GetSource() isImportAptArtifactsRequest_Source {
   296  	if m != nil {
   297  		return m.Source
   298  	}
   299  	return nil
   300  }
   301  
   302  func (x *ImportAptArtifactsRequest) GetGcsSource() *ImportAptArtifactsGcsSource {
   303  	if x, ok := x.GetSource().(*ImportAptArtifactsRequest_GcsSource); ok {
   304  		return x.GcsSource
   305  	}
   306  	return nil
   307  }
   308  
   309  func (x *ImportAptArtifactsRequest) GetParent() string {
   310  	if x != nil {
   311  		return x.Parent
   312  	}
   313  	return ""
   314  }
   315  
   316  type isImportAptArtifactsRequest_Source interface {
   317  	isImportAptArtifactsRequest_Source()
   318  }
   319  
   320  type ImportAptArtifactsRequest_GcsSource struct {
   321  	// Google Cloud Storage location where input content is located.
   322  	GcsSource *ImportAptArtifactsGcsSource `protobuf:"bytes,2,opt,name=gcs_source,json=gcsSource,proto3,oneof"`
   323  }
   324  
   325  func (*ImportAptArtifactsRequest_GcsSource) isImportAptArtifactsRequest_Source() {}
   326  
   327  // Error information explaining why a package was not imported.
   328  type ImportAptArtifactsErrorInfo struct {
   329  	state         protoimpl.MessageState
   330  	sizeCache     protoimpl.SizeCache
   331  	unknownFields protoimpl.UnknownFields
   332  
   333  	// The source that was not imported.
   334  	//
   335  	// Types that are assignable to Source:
   336  	//
   337  	//	*ImportAptArtifactsErrorInfo_GcsSource
   338  	Source isImportAptArtifactsErrorInfo_Source `protobuf_oneof:"source"`
   339  	// The detailed error status.
   340  	Error *status.Status `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
   341  }
   342  
   343  func (x *ImportAptArtifactsErrorInfo) Reset() {
   344  	*x = ImportAptArtifactsErrorInfo{}
   345  	if protoimpl.UnsafeEnabled {
   346  		mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[3]
   347  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   348  		ms.StoreMessageInfo(mi)
   349  	}
   350  }
   351  
   352  func (x *ImportAptArtifactsErrorInfo) String() string {
   353  	return protoimpl.X.MessageStringOf(x)
   354  }
   355  
   356  func (*ImportAptArtifactsErrorInfo) ProtoMessage() {}
   357  
   358  func (x *ImportAptArtifactsErrorInfo) ProtoReflect() protoreflect.Message {
   359  	mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[3]
   360  	if protoimpl.UnsafeEnabled && x != nil {
   361  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   362  		if ms.LoadMessageInfo() == nil {
   363  			ms.StoreMessageInfo(mi)
   364  		}
   365  		return ms
   366  	}
   367  	return mi.MessageOf(x)
   368  }
   369  
   370  // Deprecated: Use ImportAptArtifactsErrorInfo.ProtoReflect.Descriptor instead.
   371  func (*ImportAptArtifactsErrorInfo) Descriptor() ([]byte, []int) {
   372  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP(), []int{3}
   373  }
   374  
   375  func (m *ImportAptArtifactsErrorInfo) GetSource() isImportAptArtifactsErrorInfo_Source {
   376  	if m != nil {
   377  		return m.Source
   378  	}
   379  	return nil
   380  }
   381  
   382  func (x *ImportAptArtifactsErrorInfo) GetGcsSource() *ImportAptArtifactsGcsSource {
   383  	if x, ok := x.GetSource().(*ImportAptArtifactsErrorInfo_GcsSource); ok {
   384  		return x.GcsSource
   385  	}
   386  	return nil
   387  }
   388  
   389  func (x *ImportAptArtifactsErrorInfo) GetError() *status.Status {
   390  	if x != nil {
   391  		return x.Error
   392  	}
   393  	return nil
   394  }
   395  
   396  type isImportAptArtifactsErrorInfo_Source interface {
   397  	isImportAptArtifactsErrorInfo_Source()
   398  }
   399  
   400  type ImportAptArtifactsErrorInfo_GcsSource struct {
   401  	// Google Cloud Storage location requested.
   402  	GcsSource *ImportAptArtifactsGcsSource `protobuf:"bytes,1,opt,name=gcs_source,json=gcsSource,proto3,oneof"`
   403  }
   404  
   405  func (*ImportAptArtifactsErrorInfo_GcsSource) isImportAptArtifactsErrorInfo_Source() {}
   406  
   407  // The response message from importing APT artifacts.
   408  type ImportAptArtifactsResponse struct {
   409  	state         protoimpl.MessageState
   410  	sizeCache     protoimpl.SizeCache
   411  	unknownFields protoimpl.UnknownFields
   412  
   413  	// The Apt artifacts imported.
   414  	AptArtifacts []*AptArtifact `protobuf:"bytes,1,rep,name=apt_artifacts,json=aptArtifacts,proto3" json:"apt_artifacts,omitempty"`
   415  	// Detailed error info for artifacts that were not imported.
   416  	Errors []*ImportAptArtifactsErrorInfo `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
   417  }
   418  
   419  func (x *ImportAptArtifactsResponse) Reset() {
   420  	*x = ImportAptArtifactsResponse{}
   421  	if protoimpl.UnsafeEnabled {
   422  		mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[4]
   423  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   424  		ms.StoreMessageInfo(mi)
   425  	}
   426  }
   427  
   428  func (x *ImportAptArtifactsResponse) String() string {
   429  	return protoimpl.X.MessageStringOf(x)
   430  }
   431  
   432  func (*ImportAptArtifactsResponse) ProtoMessage() {}
   433  
   434  func (x *ImportAptArtifactsResponse) ProtoReflect() protoreflect.Message {
   435  	mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[4]
   436  	if protoimpl.UnsafeEnabled && x != nil {
   437  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   438  		if ms.LoadMessageInfo() == nil {
   439  			ms.StoreMessageInfo(mi)
   440  		}
   441  		return ms
   442  	}
   443  	return mi.MessageOf(x)
   444  }
   445  
   446  // Deprecated: Use ImportAptArtifactsResponse.ProtoReflect.Descriptor instead.
   447  func (*ImportAptArtifactsResponse) Descriptor() ([]byte, []int) {
   448  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP(), []int{4}
   449  }
   450  
   451  func (x *ImportAptArtifactsResponse) GetAptArtifacts() []*AptArtifact {
   452  	if x != nil {
   453  		return x.AptArtifacts
   454  	}
   455  	return nil
   456  }
   457  
   458  func (x *ImportAptArtifactsResponse) GetErrors() []*ImportAptArtifactsErrorInfo {
   459  	if x != nil {
   460  		return x.Errors
   461  	}
   462  	return nil
   463  }
   464  
   465  // The operation metadata for importing artifacts.
   466  type ImportAptArtifactsMetadata struct {
   467  	state         protoimpl.MessageState
   468  	sizeCache     protoimpl.SizeCache
   469  	unknownFields protoimpl.UnknownFields
   470  }
   471  
   472  func (x *ImportAptArtifactsMetadata) Reset() {
   473  	*x = ImportAptArtifactsMetadata{}
   474  	if protoimpl.UnsafeEnabled {
   475  		mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[5]
   476  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   477  		ms.StoreMessageInfo(mi)
   478  	}
   479  }
   480  
   481  func (x *ImportAptArtifactsMetadata) String() string {
   482  	return protoimpl.X.MessageStringOf(x)
   483  }
   484  
   485  func (*ImportAptArtifactsMetadata) ProtoMessage() {}
   486  
   487  func (x *ImportAptArtifactsMetadata) ProtoReflect() protoreflect.Message {
   488  	mi := &file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[5]
   489  	if protoimpl.UnsafeEnabled && x != nil {
   490  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   491  		if ms.LoadMessageInfo() == nil {
   492  			ms.StoreMessageInfo(mi)
   493  		}
   494  		return ms
   495  	}
   496  	return mi.MessageOf(x)
   497  }
   498  
   499  // Deprecated: Use ImportAptArtifactsMetadata.ProtoReflect.Descriptor instead.
   500  func (*ImportAptArtifactsMetadata) Descriptor() ([]byte, []int) {
   501  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP(), []int{5}
   502  }
   503  
   504  var File_google_devtools_artifactregistry_v1beta2_apt_artifact_proto protoreflect.FileDescriptor
   505  
   506  var file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDesc = []byte{
   507  	0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c,
   508  	0x73, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
   509  	0x72, 0x79, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2f, 0x61, 0x70, 0x74, 0x5f, 0x61,
   510  	0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x67,
   511  	0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61,
   512  	0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e,
   513  	0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
   514  	0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69,
   515  	0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
   516  	0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72,
   517  	0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f,
   518  	0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x85, 0x04, 0x0a,
   519  	0x0b, 0x41, 0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x12, 0x17, 0x0a, 0x04,
   520  	0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52,
   521  	0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
   522  	0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03,
   523  	0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x69, 0x0a,
   524  	0x0c, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
   525  	0x01, 0x28, 0x0e, 0x32, 0x41, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76,
   526  	0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65,
   527  	0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2e, 0x41,
   528  	0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x61,
   529  	0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x70, 0x61, 0x63,
   530  	0x6b, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0c, 0x61, 0x72, 0x63, 0x68,
   531  	0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03,
   532  	0xe0, 0x41, 0x03, 0x52, 0x0c, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72,
   533  	0x65, 0x12, 0x21, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x18, 0x05,
   534  	0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x70, 0x6f,
   535  	0x6e, 0x65, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5f,
   536  	0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52,
   537  	0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x43, 0x0a, 0x0b,
   538  	0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x18, 0x50,
   539  	0x41, 0x43, 0x4b, 0x41, 0x47, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50,
   540  	0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x49, 0x4e,
   541  	0x41, 0x52, 0x59, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x10,
   542  	0x02, 0x3a, 0x90, 0x01, 0xea, 0x41, 0x8c, 0x01, 0x0a, 0x2b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61,
   543  	0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
   544  	0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x41, 0x70, 0x74, 0x41, 0x72, 0x74,
   545  	0x69, 0x66, 0x61, 0x63, 0x74, 0x12, 0x5d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f,
   546  	0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x7d, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
   547  	0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x72,
   548  	0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x2f, 0x7b, 0x72, 0x65, 0x70,
   549  	0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x7d, 0x2f, 0x61, 0x70, 0x74, 0x41, 0x72, 0x74, 0x69,
   550  	0x66, 0x61, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x70, 0x74, 0x5f, 0x61, 0x72, 0x74, 0x69, 0x66,
   551  	0x61, 0x63, 0x74, 0x7d, 0x22, 0x56, 0x0a, 0x1b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x70,
   552  	0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x47, 0x63, 0x73, 0x53, 0x6f, 0x75,
   553  	0x72, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x72, 0x69, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
   554  	0x09, 0x52, 0x04, 0x75, 0x72, 0x69, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x5f, 0x77,
   555  	0x69, 0x6c, 0x64, 0x63, 0x61, 0x72, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c,
   556  	0x75, 0x73, 0x65, 0x57, 0x69, 0x6c, 0x64, 0x63, 0x61, 0x72, 0x64, 0x73, 0x22, 0xa5, 0x01, 0x0a,
   557  	0x19, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61,
   558  	0x63, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x66, 0x0a, 0x0a, 0x67, 0x63,
   559  	0x73, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x45,
   560  	0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73,
   561  	0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72,
   562  	0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
   563  	0x41, 0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x47, 0x63, 0x73, 0x53,
   564  	0x6f, 0x75, 0x72, 0x63, 0x65, 0x48, 0x00, 0x52, 0x09, 0x67, 0x63, 0x73, 0x53, 0x6f, 0x75, 0x72,
   565  	0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
   566  	0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x73, 0x6f,
   567  	0x75, 0x72, 0x63, 0x65, 0x22, 0xb9, 0x01, 0x0a, 0x1b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x41,
   568  	0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72,
   569  	0x49, 0x6e, 0x66, 0x6f, 0x12, 0x66, 0x0a, 0x0a, 0x67, 0x63, 0x73, 0x5f, 0x73, 0x6f, 0x75, 0x72,
   570  	0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
   571  	0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66,
   572  	0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65,
   573  	0x74, 0x61, 0x32, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x70, 0x74, 0x41, 0x72, 0x74,
   574  	0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x47, 0x63, 0x73, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x48,
   575  	0x00, 0x52, 0x09, 0x67, 0x63, 0x73, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x28, 0x0a, 0x05,
   576  	0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x6f,
   577  	0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
   578  	0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
   579  	0x22, 0xd7, 0x01, 0x0a, 0x1a, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x70, 0x74, 0x41, 0x72,
   580  	0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
   581  	0x5a, 0x0a, 0x0d, 0x61, 0x70, 0x74, 0x5f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73,
   582  	0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
   583  	0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63,
   584  	0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61,
   585  	0x32, 0x2e, 0x41, 0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52, 0x0c, 0x61,
   586  	0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x12, 0x5d, 0x0a, 0x06, 0x65,
   587  	0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x67, 0x6f,
   588  	0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x61, 0x72,
   589  	0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x2e, 0x76,
   590  	0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x70, 0x74,
   591  	0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x49, 0x6e,
   592  	0x66, 0x6f, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x1c, 0x0a, 0x1a, 0x49, 0x6d,
   593  	0x70, 0x6f, 0x72, 0x74, 0x41, 0x70, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73,
   594  	0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x94, 0x02, 0x0a, 0x2c, 0x63, 0x6f, 0x6d,
   595  	0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x64, 0x65, 0x76, 0x74, 0x6f, 0x6f, 0x6c, 0x73,
   596  	0x2e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72,
   597  	0x79, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x42, 0x10, 0x41, 0x70, 0x74, 0x41, 0x72,
   598  	0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x55, 0x63,
   599  	0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
   600  	0x67, 0x6f, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73,
   601  	0x74, 0x72, 0x79, 0x2f, 0x61, 0x70, 0x69, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x2f, 0x61,
   602  	0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x70,
   603  	0x62, 0x3b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
   604  	0x72, 0x79, 0x70, 0x62, 0xaa, 0x02, 0x25, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x43, 0x6c,
   605  	0x6f, 0x75, 0x64, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52, 0x65, 0x67, 0x69,
   606  	0x73, 0x74, 0x72, 0x79, 0x2e, 0x56, 0x31, 0x42, 0x65, 0x74, 0x61, 0x32, 0xca, 0x02, 0x25, 0x47,
   607  	0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x5c, 0x41, 0x72, 0x74, 0x69,
   608  	0x66, 0x61, 0x63, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x5c, 0x56, 0x31, 0x62,
   609  	0x65, 0x74, 0x61, 0x32, 0xea, 0x02, 0x28, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x43,
   610  	0x6c, 0x6f, 0x75, 0x64, 0x3a, 0x3a, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x52, 0x65,
   611  	0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0x32, 0x62,
   612  	0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   613  }
   614  
   615  var (
   616  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescOnce sync.Once
   617  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescData = file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDesc
   618  )
   619  
   620  func file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescGZIP() []byte {
   621  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescOnce.Do(func() {
   622  		file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescData)
   623  	})
   624  	return file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDescData
   625  }
   626  
   627  var file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
   628  var file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
   629  var file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_goTypes = []interface{}{
   630  	(AptArtifact_PackageType)(0),        // 0: google.devtools.artifactregistry.v1beta2.AptArtifact.PackageType
   631  	(*AptArtifact)(nil),                 // 1: google.devtools.artifactregistry.v1beta2.AptArtifact
   632  	(*ImportAptArtifactsGcsSource)(nil), // 2: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsGcsSource
   633  	(*ImportAptArtifactsRequest)(nil),   // 3: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsRequest
   634  	(*ImportAptArtifactsErrorInfo)(nil), // 4: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsErrorInfo
   635  	(*ImportAptArtifactsResponse)(nil),  // 5: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsResponse
   636  	(*ImportAptArtifactsMetadata)(nil),  // 6: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsMetadata
   637  	(*status.Status)(nil),               // 7: google.rpc.Status
   638  }
   639  var file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_depIdxs = []int32{
   640  	0, // 0: google.devtools.artifactregistry.v1beta2.AptArtifact.package_type:type_name -> google.devtools.artifactregistry.v1beta2.AptArtifact.PackageType
   641  	2, // 1: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsRequest.gcs_source:type_name -> google.devtools.artifactregistry.v1beta2.ImportAptArtifactsGcsSource
   642  	2, // 2: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsErrorInfo.gcs_source:type_name -> google.devtools.artifactregistry.v1beta2.ImportAptArtifactsGcsSource
   643  	7, // 3: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsErrorInfo.error:type_name -> google.rpc.Status
   644  	1, // 4: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsResponse.apt_artifacts:type_name -> google.devtools.artifactregistry.v1beta2.AptArtifact
   645  	4, // 5: google.devtools.artifactregistry.v1beta2.ImportAptArtifactsResponse.errors:type_name -> google.devtools.artifactregistry.v1beta2.ImportAptArtifactsErrorInfo
   646  	6, // [6:6] is the sub-list for method output_type
   647  	6, // [6:6] is the sub-list for method input_type
   648  	6, // [6:6] is the sub-list for extension type_name
   649  	6, // [6:6] is the sub-list for extension extendee
   650  	0, // [0:6] is the sub-list for field type_name
   651  }
   652  
   653  func init() { file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_init() }
   654  func file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_init() {
   655  	if File_google_devtools_artifactregistry_v1beta2_apt_artifact_proto != nil {
   656  		return
   657  	}
   658  	if !protoimpl.UnsafeEnabled {
   659  		file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   660  			switch v := v.(*AptArtifact); i {
   661  			case 0:
   662  				return &v.state
   663  			case 1:
   664  				return &v.sizeCache
   665  			case 2:
   666  				return &v.unknownFields
   667  			default:
   668  				return nil
   669  			}
   670  		}
   671  		file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   672  			switch v := v.(*ImportAptArtifactsGcsSource); i {
   673  			case 0:
   674  				return &v.state
   675  			case 1:
   676  				return &v.sizeCache
   677  			case 2:
   678  				return &v.unknownFields
   679  			default:
   680  				return nil
   681  			}
   682  		}
   683  		file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   684  			switch v := v.(*ImportAptArtifactsRequest); i {
   685  			case 0:
   686  				return &v.state
   687  			case 1:
   688  				return &v.sizeCache
   689  			case 2:
   690  				return &v.unknownFields
   691  			default:
   692  				return nil
   693  			}
   694  		}
   695  		file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
   696  			switch v := v.(*ImportAptArtifactsErrorInfo); i {
   697  			case 0:
   698  				return &v.state
   699  			case 1:
   700  				return &v.sizeCache
   701  			case 2:
   702  				return &v.unknownFields
   703  			default:
   704  				return nil
   705  			}
   706  		}
   707  		file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
   708  			switch v := v.(*ImportAptArtifactsResponse); i {
   709  			case 0:
   710  				return &v.state
   711  			case 1:
   712  				return &v.sizeCache
   713  			case 2:
   714  				return &v.unknownFields
   715  			default:
   716  				return nil
   717  			}
   718  		}
   719  		file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
   720  			switch v := v.(*ImportAptArtifactsMetadata); i {
   721  			case 0:
   722  				return &v.state
   723  			case 1:
   724  				return &v.sizeCache
   725  			case 2:
   726  				return &v.unknownFields
   727  			default:
   728  				return nil
   729  			}
   730  		}
   731  	}
   732  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[2].OneofWrappers = []interface{}{
   733  		(*ImportAptArtifactsRequest_GcsSource)(nil),
   734  	}
   735  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes[3].OneofWrappers = []interface{}{
   736  		(*ImportAptArtifactsErrorInfo_GcsSource)(nil),
   737  	}
   738  	type x struct{}
   739  	out := protoimpl.TypeBuilder{
   740  		File: protoimpl.DescBuilder{
   741  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   742  			RawDescriptor: file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDesc,
   743  			NumEnums:      1,
   744  			NumMessages:   6,
   745  			NumExtensions: 0,
   746  			NumServices:   0,
   747  		},
   748  		GoTypes:           file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_goTypes,
   749  		DependencyIndexes: file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_depIdxs,
   750  		EnumInfos:         file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_enumTypes,
   751  		MessageInfos:      file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_msgTypes,
   752  	}.Build()
   753  	File_google_devtools_artifactregistry_v1beta2_apt_artifact_proto = out.File
   754  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_rawDesc = nil
   755  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_goTypes = nil
   756  	file_google_devtools_artifactregistry_v1beta2_apt_artifact_proto_depIdxs = nil
   757  }
   758  

View as plain text