Class: Google::Apis::ComputeAlpha::GrpcServiceConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::GrpcServiceConfig
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
gRPC config to access the SDS server.
Instance Attribute Summary collapse
-
#call_credentials ⇒ Google::Apis::ComputeAlpha::CallCredentials
gRPC call credentials to access the SDS server.
-
#channel_credentials ⇒ Google::Apis::ComputeAlpha::ChannelCredentials
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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GrpcServiceConfig
Returns a new instance of GrpcServiceConfig
7676 7677 7678 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 7676 def initialize(**args) update!(**args) end |
Instance Attribute Details
#call_credentials ⇒ Google::Apis::ComputeAlpha::CallCredentials
gRPC call credentials to access the SDS server.
Corresponds to the JSON property callCredentials
7664 7665 7666 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 7664 def call_credentials @call_credentials end |
#channel_credentials ⇒ Google::Apis::ComputeAlpha::ChannelCredentials
gRPC channel credentials to access the SDS server.
Corresponds to the JSON property channelCredentials
7669 7670 7671 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 7669 def channel_credentials @channel_credentials end |
#target_uri ⇒ String
The target URI of the SDS server.
Corresponds to the JSON property targetUri
7674 7675 7676 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 7674 def target_uri @target_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7681 7682 7683 7684 7685 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 7681 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 |