Class: Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/repository.rb
Overview
The credentials to access the remote repository.
Defined Under Namespace
Classes: UsernamePasswordCredentials
Instance Attribute Summary collapse
-
#username_password_credentials ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials
Use username and password to access the remote repository.
Instance Attribute Details
#username_password_credentials ⇒ ::Google::Cloud::ArtifactRegistry::V1::RemoteRepositoryConfig::UpstreamCredentials::UsernamePasswordCredentials
Returns Use username and password to access the remote repository.
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'proto_docs/google/devtools/artifactregistry/v1/repository.rb', line 176 class UpstreamCredentials include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Username and password credentials. # @!attribute [rw] username # @return [::String] # The username to access the remote repository. # @!attribute [rw] password_secret_version # @return [::String] # The Secret Manager key version that holds the password to access the # remote repository. Must be in the format of # `projects/{project}/secrets/{secret}/versions/{version}`. class UsernamePasswordCredentials include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |