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.
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 282 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 end end |
#repository_path ⇒ ::String
Returns A custom field to define a path to a specific repository from the base.
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 282 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 end end |