Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository

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

Instance Attribute Details

#repository_base::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::AptRepository::PublicRepository::RepositoryBase

Returns A common public repository base for Apt.



345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 345

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.

Returns:

  • (::String)

    A custom field to define a path to a specific repository from the base.



345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 345

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