Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/repository.rb
Overview
Configuration for a Docker remote repository.
Defined Under Namespace
Modules: PublicRepository Classes: CustomRepository
Instance Attribute Summary collapse
-
#custom_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::CustomRepository
Customer-specified remote repository.
-
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository
One of the publicly available Docker repositories supported by Artifact Registry.
Instance Attribute Details
#custom_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::CustomRepository
Returns Customer-specified remote repository.
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 203 class DockerRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Customer-specified publicly available remote repository. # @!attribute [rw] uri # @return [::String] # An http/https uri reference to the custom remote repository, for ex: # "https://registry-1.docker.io". class CustomRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Predefined list of publicly available Docker repositories like Docker # Hub. module PublicRepository # Unspecified repository. PUBLIC_REPOSITORY_UNSPECIFIED = 0 # Docker Hub. DOCKER_HUB = 1 end end |
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository
Returns One of the publicly available Docker repositories supported by Artifact Registry.
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 203 class DockerRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Customer-specified publicly available remote repository. # @!attribute [rw] uri # @return [::String] # An http/https uri reference to the custom remote repository, for ex: # "https://registry-1.docker.io". class CustomRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Predefined list of publicly available Docker repositories like Docker # Hub. module PublicRepository # Unspecified repository. PUBLIC_REPOSITORY_UNSPECIFIED = 0 # Docker Hub. DOCKER_HUB = 1 end end |