class Google::Cloud::Compute::V1::LicenseCodes::Rest::Client::Configuration::Rpcs

Configuration RPC class for the LicenseCodes API.

Includes fields providing the configuration for each RPC in this service. Each configuration object is of type `Gapic::Config::Method` and includes the following configuration fields:

*  `timeout` (*type:* `Numeric`) - The call timeout in seconds

there is one other field (`retry_policy`) that can be set but is currently not supported for REST Gapic libraries.

Attributes

get[R]

RPC-specific configuration for `get` @return [::Gapic::Config::Method]

test_iam_permissions[R]

RPC-specific configuration for `test_iam_permissions` @return [::Gapic::Config::Method]

Public Class Methods

new(parent_rpcs = nil) { |self| ... } click to toggle source

@private

# File lib/google/cloud/compute/v1/license_codes/rest/client.rb, line 380
def initialize parent_rpcs = nil
  get_config = parent_rpcs.get if parent_rpcs.respond_to? :get
  @get = ::Gapic::Config::Method.new get_config
  test_iam_permissions_config = parent_rpcs.test_iam_permissions if parent_rpcs.respond_to? :test_iam_permissions
  @test_iam_permissions = ::Gapic::Config::Method.new test_iam_permissions_config

  yield self if block_given?
end