Class: Google::Apis::ComputeAlpha::ChannelCredentials
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ChannelCredentials
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
[Deprecated] gRPC channel credentials to access the SDS server. gRPC channel credentials to access the SDS server.
Instance Attribute Summary collapse
-
#certificates ⇒ Google::Apis::ComputeAlpha::TlsCertificatePaths
[Deprecated] The paths to the mounted TLS Certificates and private key.
-
#channel_credential_type ⇒ String
The channel credentials to access the SDS server.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChannelCredentials
constructor
A new instance of ChannelCredentials.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChannelCredentials
Returns a new instance of ChannelCredentials.
5500 5501 5502 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5500 def initialize(**args) update!(**args) end |
Instance Attribute Details
#certificates ⇒ Google::Apis::ComputeAlpha::TlsCertificatePaths
[Deprecated] The paths to the mounted TLS Certificates and private key. The
paths to the mounted TLS Certificates and private key.
Corresponds to the JSON property certificates
5491 5492 5493 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5491 def certificates @certificates end |
#channel_credential_type ⇒ String
The channel credentials to access the SDS server. This field can be set to one
of the following: CERTIFICATES: Use TLS certificates to access the SDS server.
GCE_VM: Use local GCE VM credentials to access the SDS server.
Corresponds to the JSON property channelCredentialType
5498 5499 5500 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5498 def channel_credential_type @channel_credential_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5505 5506 5507 5508 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5505 def update!(**args) @certificates = args[:certificates] if args.key?(:certificates) @channel_credential_type = args[:channel_credential_type] if args.key?(:channel_credential_type) end |