class Google::Cloud::Dialogflow::CX::V3::SessionEntityTypes::Client::Configuration::Rpcs

Configuration RPC class for the SessionEntityTypes 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

create_session_entity_type[R]

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

delete_session_entity_type[R]

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

get_session_entity_type[R]

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

list_session_entity_types[R]

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

update_session_entity_type[R]

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

Public Class Methods

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

@private

# File lib/google/cloud/dialogflow/cx/v3/session_entity_types/client.rb, line 693
def initialize parent_rpcs = nil
  list_session_entity_types_config = parent_rpcs.list_session_entity_types if parent_rpcs.respond_to? :list_session_entity_types
  @list_session_entity_types = ::Gapic::Config::Method.new list_session_entity_types_config
  get_session_entity_type_config = parent_rpcs.get_session_entity_type if parent_rpcs.respond_to? :get_session_entity_type
  @get_session_entity_type = ::Gapic::Config::Method.new get_session_entity_type_config
  create_session_entity_type_config = parent_rpcs.create_session_entity_type if parent_rpcs.respond_to? :create_session_entity_type
  @create_session_entity_type = ::Gapic::Config::Method.new create_session_entity_type_config
  update_session_entity_type_config = parent_rpcs.update_session_entity_type if parent_rpcs.respond_to? :update_session_entity_type
  @update_session_entity_type = ::Gapic::Config::Method.new update_session_entity_type_config
  delete_session_entity_type_config = parent_rpcs.delete_session_entity_type if parent_rpcs.respond_to? :delete_session_entity_type
  @delete_session_entity_type = ::Gapic::Config::Method.new delete_session_entity_type_config

  yield self if block_given?
end