Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/repository.rb
Overview
Configuration for a Npm remote repository.
Defined Under Namespace
Modules: PublicRepository
Instance Attribute Summary collapse
-
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository
One of the publicly available Npm repositories supported by Artifact Registry.
Instance Attribute Details
#public_repository ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::NpmRepository::PublicRepository
Returns One of the publicly available Npm repositories supported by Artifact Registry.
232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 232 class NpmRepository include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Predefined list of publicly available NPM repositories like npmjs. module PublicRepository # Unspecified repository. PUBLIC_REPOSITORY_UNSPECIFIED = 0 # npmjs. NPMJS = 1 end end |