Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/repository.rb
Overview
Configuration for a Python remote repository.
Defined Under Namespace
Modules: PublicRepository
Instance Attribute Summary collapse
-
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository
One of the publicly available Python repositories supported by Artifact Registry.
Instance Attribute Details
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::PythonRepository::PublicRepository
Returns One of the publicly available Python repositories supported by Artifact Registry.
251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 251 class PythonRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Predefined list of publicly available Python repositories like PyPI.org. module PublicRepository # Unspecified repository. PUBLIC_REPOSITORY_UNSPECIFIED = 0 # PyPI. PYPI = 1 end end |