Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository

Inherits:
Object
  • Object
show all
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

Instance Attribute Summary collapse

Instance Attribute Details

#public_repository::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::DockerRepository::PublicRepository

Returns One of the publicly available Docker repositories supported by Artifact Registry.

Returns:



192
193
194
195
196
197
198
199
200
201
202
203
204
205
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 192

class DockerRepository
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # 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