Class: Google::Apis::ComputeAlpha::ChannelCredentials

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ChannelCredentials

Returns a new instance of ChannelCredentials.



7484
7485
7486
# File 'lib/google/apis/compute_alpha/classes.rb', line 7484

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#certificatesGoogle::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



7475
7476
7477
# File 'lib/google/apis/compute_alpha/classes.rb', line 7475

def certificates
  @certificates
end

#channel_credential_typeString

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

Returns:

  • (String)


7482
7483
7484
# File 'lib/google/apis/compute_alpha/classes.rb', line 7482

def channel_credential_type
  @channel_credential_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7489
7490
7491
7492
# File 'lib/google/apis/compute_alpha/classes.rb', line 7489

def update!(**args)
  @certificates = args[:certificates] if args.key?(:certificates)
  @channel_credential_type = args[:channel_credential_type] if args.key?(:channel_credential_type)
end