class Google::Cloud::Compute::V1::BackendBuckets::Rest::Client::Configuration::Rpcs
Configuration
RPC class for the BackendBuckets
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
RPC-specific configuration for `add_signed_url_key` @return [::Gapic::Config::Method]
RPC-specific configuration for `delete` @return [::Gapic::Config::Method]
RPC-specific configuration for `delete_signed_url_key` @return [::Gapic::Config::Method]
RPC-specific configuration for `get` @return [::Gapic::Config::Method]
RPC-specific configuration for `insert` @return [::Gapic::Config::Method]
RPC-specific configuration for `list` @return [::Gapic::Config::Method]
RPC-specific configuration for `patch` @return [::Gapic::Config::Method]
RPC-specific configuration for `update` @return [::Gapic::Config::Method]
Public Class Methods
@private
# File lib/google/cloud/compute/v1/backend_buckets/rest/client.rb, line 864 def initialize parent_rpcs = nil add_signed_url_key_config = parent_rpcs.add_signed_url_key if parent_rpcs.respond_to? :add_signed_url_key @add_signed_url_key = ::Gapic::Config::Method.new add_signed_url_key_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config delete_signed_url_key_config = parent_rpcs.delete_signed_url_key if parent_rpcs.respond_to? :delete_signed_url_key @delete_signed_url_key = ::Gapic::Config::Method.new delete_signed_url_key_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config update_config = parent_rpcs.update if parent_rpcs.respond_to? :update @update = ::Gapic::Config::Method.new update_config yield self if block_given? end