Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/repository.rb
Overview
Configuration for a Yum remote repository.
Defined Under Namespace
Classes: PublicRepository
Instance Attribute Summary collapse
-
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository
One of the publicly available Yum repositories supported by Artifact Registry.
Instance Attribute Details
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository
Returns One of the publicly available Yum repositories supported by Artifact Registry.
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 305 class YumRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Publicly available Yum repositories constructed from a common repository # base and a custom repository path. # @!attribute [rw] repository_base # @return [::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::YumRepository::PublicRepository::RepositoryBase] # A common public repository base for Yum. # @!attribute [rw] repository_path # @return [::String] # A custom field to define a path to a specific repository from the base. class PublicRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Predefined list of publicly available repository bases for Yum. module RepositoryBase # Unspecified repository base. REPOSITORY_BASE_UNSPECIFIED = 0 # CentOS. CENTOS = 1 # CentOS Debug. CENTOS_DEBUG = 2 # CentOS Vault. CENTOS_VAULT = 3 # CentOS Stream. CENTOS_STREAM = 4 # Rocky. ROCKY = 5 # Fedora Extra Packages for Enterprise Linux (EPEL). EPEL = 6 end end end |