Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::MavenRepository

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 Maven remote repository.

Defined Under Namespace

Modules: PublicRepository

Instance Attribute Summary collapse

Instance Attribute Details

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

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

Returns:



212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 212

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

  # Predefined list of publicly available Maven repositories like Maven
  # Central.
  module PublicRepository
    # Unspecified repository.
    PUBLIC_REPOSITORY_UNSPECIFIED = 0

    # Maven Central.
    MAVEN_CENTRAL = 1
  end
end