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
more...

Overview

Remote repository configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RemoteRepositoryConfig

Returns a new instance of RemoteRepositoryConfig.

[View source]

2176
2177
2178
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2176

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


2132
2133
2134
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2132

def apt_repository
  @apt_repository
end

#descriptionString

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

Returns:

  • (String)

2137
2138
2139
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2137

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)

2143
2144
2145
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2143

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


2149
2150
2151
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2149

def docker_repository
  @docker_repository
end

#maven_repositoryGoogle::Apis::ArtifactregistryV1::MavenRepository

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


2154
2155
2156
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2154

def maven_repository
  @maven_repository
end

#npm_repositoryGoogle::Apis::ArtifactregistryV1::NpmRepository

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


2159
2160
2161
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2159

def npm_repository
  @npm_repository
end

#python_repositoryGoogle::Apis::ArtifactregistryV1::PythonRepository

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


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

def python_repository
  @python_repository
end

#upstream_credentialsGoogle::Apis::ArtifactregistryV1::UpstreamCredentials

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


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

def upstream_credentials
  @upstream_credentials
end

#yum_repositoryGoogle::Apis::ArtifactregistryV1::YumRepository

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


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

def yum_repository
  @yum_repository
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2181

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