Class: Google::Apis::ComputeAlpha::GrpcServiceConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::GrpcServiceConfig
- 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 config to access the SDS server. gRPC config to access the SDS server.
Instance Attribute Summary collapse
-
#call_credentials ⇒ Google::Apis::ComputeAlpha::CallCredentials
[Deprecated] gRPC call credentials to access the SDS server.
-
#channel_credentials ⇒ Google::Apis::ComputeAlpha::ChannelCredentials
[Deprecated] gRPC channel credentials to access the SDS server.
-
#target_uri ⇒ String
The target URI of the SDS server.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GrpcServiceConfig
constructor
A new instance of GrpcServiceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GrpcServiceConfig
Returns a new instance of GrpcServiceConfig.
11478 11479 11480 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 11478 def initialize(**args) update!(**args) end |
Instance Attribute Details
#call_credentials ⇒ Google::Apis::ComputeAlpha::CallCredentials
[Deprecated] gRPC call credentials to access the SDS server. gRPC call
credentials to access the SDS server.
Corresponds to the JSON property callCredentials
11465 11466 11467 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 11465 def call_credentials @call_credentials end |
#channel_credentials ⇒ Google::Apis::ComputeAlpha::ChannelCredentials
[Deprecated] gRPC channel credentials to access the SDS server. gRPC channel
credentials to access the SDS server.
Corresponds to the JSON property channelCredentials
11471 11472 11473 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 11471 def channel_credentials @channel_credentials end |
#target_uri ⇒ String
The target URI of the SDS server.
Corresponds to the JSON property targetUri
11476 11477 11478 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 11476 def target_uri @target_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11483 11484 11485 11486 11487 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 11483 def update!(**args) @call_credentials = args[:call_credentials] if args.key?(:call_credentials) @channel_credentials = args[:channel_credentials] if args.key?(:channel_credentials) @target_uri = args[:target_uri] if args.key?(:target_uri) end |