class Google::Cloud::Dialogflow::CX::V3::TestCases::Client::Configuration::Rpcs
Configuration
RPC class for the TestCases
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 `batch_delete_test_cases` @return [::Gapic::Config::Method]
RPC-specific configuration for `batch_run_test_cases` @return [::Gapic::Config::Method]
RPC-specific configuration for `calculate_coverage` @return [::Gapic::Config::Method]
RPC-specific configuration for `create_test_case` @return [::Gapic::Config::Method]
RPC-specific configuration for `export_test_cases` @return [::Gapic::Config::Method]
RPC-specific configuration for `get_test_case` @return [::Gapic::Config::Method]
RPC-specific configuration for `get_test_case_result` @return [::Gapic::Config::Method]
RPC-specific configuration for `import_test_cases` @return [::Gapic::Config::Method]
RPC-specific configuration for `list_test_case_results` @return [::Gapic::Config::Method]
RPC-specific configuration for `list_test_cases` @return [::Gapic::Config::Method]
RPC-specific configuration for `run_test_case` @return [::Gapic::Config::Method]
RPC-specific configuration for `update_test_case` @return [::Gapic::Config::Method]
Public Class Methods
@private
# File lib/google/cloud/dialogflow/cx/v3/test_cases/client.rb, line 1294 def initialize parent_rpcs = nil list_test_cases_config = parent_rpcs.list_test_cases if parent_rpcs.respond_to? :list_test_cases @list_test_cases = ::Gapic::Config::Method.new list_test_cases_config batch_delete_test_cases_config = parent_rpcs.batch_delete_test_cases if parent_rpcs.respond_to? :batch_delete_test_cases @batch_delete_test_cases = ::Gapic::Config::Method.new batch_delete_test_cases_config get_test_case_config = parent_rpcs.get_test_case if parent_rpcs.respond_to? :get_test_case @get_test_case = ::Gapic::Config::Method.new get_test_case_config create_test_case_config = parent_rpcs.create_test_case if parent_rpcs.respond_to? :create_test_case @create_test_case = ::Gapic::Config::Method.new create_test_case_config update_test_case_config = parent_rpcs.update_test_case if parent_rpcs.respond_to? :update_test_case @update_test_case = ::Gapic::Config::Method.new update_test_case_config run_test_case_config = parent_rpcs.run_test_case if parent_rpcs.respond_to? :run_test_case @run_test_case = ::Gapic::Config::Method.new run_test_case_config batch_run_test_cases_config = parent_rpcs.batch_run_test_cases if parent_rpcs.respond_to? :batch_run_test_cases @batch_run_test_cases = ::Gapic::Config::Method.new batch_run_test_cases_config calculate_coverage_config = parent_rpcs.calculate_coverage if parent_rpcs.respond_to? :calculate_coverage @calculate_coverage = ::Gapic::Config::Method.new calculate_coverage_config import_test_cases_config = parent_rpcs.import_test_cases if parent_rpcs.respond_to? :import_test_cases @import_test_cases = ::Gapic::Config::Method.new import_test_cases_config export_test_cases_config = parent_rpcs.export_test_cases if parent_rpcs.respond_to? :export_test_cases @export_test_cases = ::Gapic::Config::Method.new export_test_cases_config list_test_case_results_config = parent_rpcs.list_test_case_results if parent_rpcs.respond_to? :list_test_case_results @list_test_case_results = ::Gapic::Config::Method.new list_test_case_results_config get_test_case_result_config = parent_rpcs.get_test_case_result if parent_rpcs.respond_to? :get_test_case_result @get_test_case_result = ::Gapic::Config::Method.new get_test_case_result_config yield self if block_given? end