Class: Google::Apis::ComputeAlpha::CallCredentials
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::CallCredentials
- 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 call credentials to access the SDS server. gRPC call credentials to access the SDS server.
Instance Attribute Summary collapse
-
#call_credential_type ⇒ String
The type of call credentials to use for GRPC requests to the SDS server.
-
#from_plugin ⇒ Google::Apis::ComputeAlpha::MetadataCredentialsFromPlugin
[Deprecated] Custom authenticator credentials.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CallCredentials
constructor
A new instance of CallCredentials.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CallCredentials
Returns a new instance of CallCredentials.
5471 5472 5473 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5471 def initialize(**args) update!(**args) end |
Instance Attribute Details
#call_credential_type ⇒ String
The type of call credentials to use for GRPC requests to the SDS server. This
field can be set to one of the following: - GCE_VM: The local GCE VM service
account credentials are used to access the SDS server. - FROM_PLUGIN: Custom
authenticator credentials are used to access the SDS server.
Corresponds to the JSON property callCredentialType
5463 5464 5465 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5463 def call_credential_type @call_credential_type end |
#from_plugin ⇒ Google::Apis::ComputeAlpha::MetadataCredentialsFromPlugin
[Deprecated] Custom authenticator credentials. Custom authenticator
credentials.
Corresponds to the JSON property fromPlugin
5469 5470 5471 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5469 def from_plugin @from_plugin end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5476 5477 5478 5479 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 5476 def update!(**args) @call_credential_type = args[:call_credential_type] if args.key?(:call_credential_type) @from_plugin = args[:from_plugin] if args.key?(:from_plugin) end |