Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/repository.rb
Overview
Publicly available Apt repositories constructed from a common repository base and a custom repository path.
Defined Under Namespace
Modules: RepositoryBase
Instance Attribute Summary collapse
-
#repository_base ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase
A common public repository base for Apt.
-
#repository_path ⇒ ::String
A custom field to define a path to a specific repository from the base.
Instance Attribute Details
#repository_base ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase
Returns A common public repository base for Apt.
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 383 class PublicRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Predefined list of publicly available repository bases for Apt. module RepositoryBase # Unspecified repository base. REPOSITORY_BASE_UNSPECIFIED = 0 # Debian. DEBIAN = 1 # Ubuntu LTS/Pro. UBUNTU = 2 # Archived Debian. DEBIAN_SNAPSHOT = 3 end end |
#repository_path ⇒ ::String
Returns A custom field to define a path to a specific repository from the base.
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 383 class PublicRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Predefined list of publicly available repository bases for Apt. module RepositoryBase # Unspecified repository base. REPOSITORY_BASE_UNSPECIFIED = 0 # Debian. DEBIAN = 1 # Ubuntu LTS/Pro. UBUNTU = 2 # Archived Debian. DEBIAN_SNAPSHOT = 3 end end |