class Google::Cloud::Monitoring::V3::UptimeCheckService::Client::Configuration::Rpcs
Configuration
RPC class for the UptimeCheckService
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 * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields include the following keys: * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. * `:retry_codes` (*type:* `Array<String>`) - The error codes that should trigger a retry.
Attributes
RPC-specific configuration for `create_uptime_check_config` @return [::Gapic::Config::Method]
RPC-specific configuration for `delete_uptime_check_config` @return [::Gapic::Config::Method]
RPC-specific configuration for `get_uptime_check_config` @return [::Gapic::Config::Method]
RPC-specific configuration for `list_uptime_check_configs` @return [::Gapic::Config::Method]
RPC-specific configuration for `list_uptime_check_ips` @return [::Gapic::Config::Method]
RPC-specific configuration for `update_uptime_check_config` @return [::Gapic::Config::Method]
Public Class Methods
@private
# File lib/google/cloud/monitoring/v3/uptime_check_service/client.rb, line 800 def initialize parent_rpcs = nil list_uptime_check_configs_config = parent_rpcs.list_uptime_check_configs if parent_rpcs.respond_to? :list_uptime_check_configs @list_uptime_check_configs = ::Gapic::Config::Method.new list_uptime_check_configs_config get_uptime_check_config_config = parent_rpcs.get_uptime_check_config if parent_rpcs.respond_to? :get_uptime_check_config @get_uptime_check_config = ::Gapic::Config::Method.new get_uptime_check_config_config create_uptime_check_config_config = parent_rpcs.create_uptime_check_config if parent_rpcs.respond_to? :create_uptime_check_config @create_uptime_check_config = ::Gapic::Config::Method.new create_uptime_check_config_config update_uptime_check_config_config = parent_rpcs.update_uptime_check_config if parent_rpcs.respond_to? :update_uptime_check_config @update_uptime_check_config = ::Gapic::Config::Method.new update_uptime_check_config_config delete_uptime_check_config_config = parent_rpcs.delete_uptime_check_config if parent_rpcs.respond_to? :delete_uptime_check_config @delete_uptime_check_config = ::Gapic::Config::Method.new delete_uptime_check_config_config list_uptime_check_ips_config = parent_rpcs.list_uptime_check_ips if parent_rpcs.respond_to? :list_uptime_check_ips @list_uptime_check_ips = ::Gapic::Config::Method.new list_uptime_check_ips_config yield self if block_given? end