Class: Google::Apis::ArtifactregistryV1::RemoteRepositoryConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/artifactregistry_v1/classes.rb,
lib/google/apis/artifactregistry_v1/representations.rb,
lib/google/apis/artifactregistry_v1/representations.rb

Overview

Remote repository configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RemoteRepositoryConfig

Returns a new instance of RemoteRepositoryConfig.



2196
2197
2198
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2196

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#apt_repositoryGoogle::Apis::ArtifactregistryV1::AptRepository

Configuration for an Apt remote repository. Corresponds to the JSON property aptRepository



2152
2153
2154
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2152

def apt_repository
  @apt_repository
end

#descriptionString

The description of the remote source. Corresponds to the JSON property description

Returns:

  • (String)


2157
2158
2159
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2157

def description
  @description
end

#disable_upstream_validationBoolean Also known as: disable_upstream_validation?

Input only. A create/update remote repo option to avoid making a HEAD/GET request to validate a remote repo and any supplied upstream credentials. Corresponds to the JSON property disableUpstreamValidation

Returns:

  • (Boolean)


2163
2164
2165
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2163

def disable_upstream_validation
  @disable_upstream_validation
end

#docker_repositoryGoogle::Apis::ArtifactregistryV1::DockerRepository

Configuration for a Docker remote repository. Corresponds to the JSON property dockerRepository



2169
2170
2171
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2169

def docker_repository
  @docker_repository
end

#maven_repositoryGoogle::Apis::ArtifactregistryV1::MavenRepository

Configuration for a Maven remote repository. Corresponds to the JSON property mavenRepository



2174
2175
2176
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2174

def maven_repository
  @maven_repository
end

#npm_repositoryGoogle::Apis::ArtifactregistryV1::NpmRepository

Configuration for a Npm remote repository. Corresponds to the JSON property npmRepository



2179
2180
2181
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2179

def npm_repository
  @npm_repository
end

#python_repositoryGoogle::Apis::ArtifactregistryV1::PythonRepository

Configuration for a Python remote repository. Corresponds to the JSON property pythonRepository



2184
2185
2186
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2184

def python_repository
  @python_repository
end

#upstream_credentialsGoogle::Apis::ArtifactregistryV1::UpstreamCredentials

The credentials to access the remote repository. Corresponds to the JSON property upstreamCredentials



2189
2190
2191
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2189

def upstream_credentials
  @upstream_credentials
end

#yum_repositoryGoogle::Apis::ArtifactregistryV1::YumRepository

Configuration for a Yum remote repository. Corresponds to the JSON property yumRepository



2194
2195
2196
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2194

def yum_repository
  @yum_repository
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2201

def update!(**args)
  @apt_repository = args[:apt_repository] if args.key?(:apt_repository)
  @description = args[:description] if args.key?(:description)
  @disable_upstream_validation = args[:disable_upstream_validation] if args.key?(:disable_upstream_validation)
  @docker_repository = args[:docker_repository] if args.key?(:docker_repository)
  @maven_repository = args[:maven_repository] if args.key?(:maven_repository)
  @npm_repository = args[:npm_repository] if args.key?(:npm_repository)
  @python_repository = args[:python_repository] if args.key?(:python_repository)
  @upstream_credentials = args[:upstream_credentials] if args.key?(:upstream_credentials)
  @yum_repository = args[:yum_repository] if args.key?(:yum_repository)
end