Class: Google::Cloud::GkeBackup::V1::BackupForGKE::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb

Overview

Configuration class for the BackupForGKE API.

This class represents the configuration for BackupForGKE, providing control over timeouts, retry behavior, logging, transport parameters, and other low-level controls. Certain parameters can also be applied individually to specific RPCs. See Rpcs for a list of RPCs that can be configured independently.

Configuration can be applied globally to all clients, or to a single client on construction.

Examples:


# Modify the global config, setting the timeout for
# create_backup_plan to 20 seconds,
# and all remaining timeouts to 10 seconds.
::Google::Cloud::GkeBackup::V1::BackupForGKE::Client.configure do |config|
  config.timeout = 10.0
  config.rpcs.create_backup_plan.timeout = 20.0
end

# Apply the above configuration only to a new client.
client = ::Google::Cloud::GkeBackup::V1::BackupForGKE::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.create_backup_plan.timeout = 20.0
end

Defined Under Namespace

Classes: Rpcs

Constant Summary collapse

DEFAULT_ENDPOINT =
"gkebackup.googleapis.com"

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#channel_args::Hash

Extra parameters passed to the gRPC channel. Note: this is ignored if a GRPC::Core::Channel object is provided as the credential.

Returns:

  • (::Hash)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#credentials::Object

Credentials to send with calls. You may provide any of the following types:

  • (String) The path to a service account key file in JSON format
  • (Hash) A service account key as a Hash
  • (Google::Auth::Credentials) A googleauth credentials object (see the googleauth docs)
  • (Signet::OAuth2::Client) A signet oauth2 client object (see the signet docs)
  • (GRPC::Core::Channel) a gRPC channel with included credentials
  • (GRPC::Core::ChannelCredentials) a gRPC credentails object
  • (nil) indicating no credentials

Returns:

  • (::Object)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#endpoint::String

The hostname or hostname:port of the service endpoint. Defaults to "gkebackup.googleapis.com".

Returns:

  • (::String)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#interceptors::Array<::GRPC::ClientInterceptor>

An array of interceptors that are run before calls are executed.

Returns:

  • (::Array<::GRPC::ClientInterceptor>)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#metadata::Hash{::Symbol=>::String}

Additional gRPC headers to be sent with the call.

Returns:

  • (::Hash{::Symbol=>::String})


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#retry_policy::Hash

The retry policy. The value is a hash with 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.

Returns:

  • (::Hash)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2760

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "gkebackup.googleapis.com"

  config_attr :endpoint,      DEFAULT_ENDPOINT, ::String
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the BackupForGKE 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.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup_plan
    ##
    # RPC-specific configuration for `list_backup_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backup_plans
    ##
    # RPC-specific configuration for `get_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup_plan
    ##
    # RPC-specific configuration for `update_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup_plan
    ##
    # RPC-specific configuration for `delete_backup_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup_plan
    ##
    # RPC-specific configuration for `create_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backup
    ##
    # RPC-specific configuration for `list_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backups
    ##
    # RPC-specific configuration for `get_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backup
    ##
    # RPC-specific configuration for `update_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backup
    ##
    # RPC-specific configuration for `delete_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backup
    ##
    # RPC-specific configuration for `list_volume_backups`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_backups
    ##
    # RPC-specific configuration for `get_volume_backup`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_backup
    ##
    # RPC-specific configuration for `create_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore_plan
    ##
    # RPC-specific configuration for `list_restore_plans`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restore_plans
    ##
    # RPC-specific configuration for `get_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore_plan
    ##
    # RPC-specific configuration for `update_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore_plan
    ##
    # RPC-specific configuration for `delete_restore_plan`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore_plan
    ##
    # RPC-specific configuration for `create_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_restore
    ##
    # RPC-specific configuration for `list_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_restores
    ##
    # RPC-specific configuration for `get_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_restore
    ##
    # RPC-specific configuration for `update_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_restore
    ##
    # RPC-specific configuration for `delete_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_restore
    ##
    # RPC-specific configuration for `list_volume_restores`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_restores
    ##
    # RPC-specific configuration for `get_volume_restore`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_restore

    # @private
    def initialize parent_rpcs = nil
      create_backup_plan_config = parent_rpcs.create_backup_plan if parent_rpcs.respond_to? :create_backup_plan
      @create_backup_plan = ::Gapic::Config::Method.new create_backup_plan_config
      list_backup_plans_config = parent_rpcs.list_backup_plans if parent_rpcs.respond_to? :list_backup_plans
      @list_backup_plans = ::Gapic::Config::Method.new list_backup_plans_config
      get_backup_plan_config = parent_rpcs.get_backup_plan if parent_rpcs.respond_to? :get_backup_plan
      @get_backup_plan = ::Gapic::Config::Method.new get_backup_plan_config
      update_backup_plan_config = parent_rpcs.update_backup_plan if parent_rpcs.respond_to? :update_backup_plan
      @update_backup_plan = ::Gapic::Config::Method.new update_backup_plan_config
      delete_backup_plan_config = parent_rpcs.delete_backup_plan if parent_rpcs.respond_to? :delete_backup_plan
      @delete_backup_plan = ::Gapic::Config::Method.new delete_backup_plan_config
      create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
      @create_backup = ::Gapic::Config::Method.new create_backup_config
      list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
      @list_backups = ::Gapic::Config::Method.new list_backups_config
      get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
      @get_backup = ::Gapic::Config::Method.new get_backup_config
      update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
      @update_backup = ::Gapic::Config::Method.new update_backup_config
      delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
      @delete_backup = ::Gapic::Config::Method.new delete_backup_config
      list_volume_backups_config = parent_rpcs.list_volume_backups if parent_rpcs.respond_to? :list_volume_backups
      @list_volume_backups = ::Gapic::Config::Method.new list_volume_backups_config
      get_volume_backup_config = parent_rpcs.get_volume_backup if parent_rpcs.respond_to? :get_volume_backup
      @get_volume_backup = ::Gapic::Config::Method.new get_volume_backup_config
      create_restore_plan_config = parent_rpcs.create_restore_plan if parent_rpcs.respond_to? :create_restore_plan
      @create_restore_plan = ::Gapic::Config::Method.new create_restore_plan_config
      list_restore_plans_config = parent_rpcs.list_restore_plans if parent_rpcs.respond_to? :list_restore_plans
      @list_restore_plans = ::Gapic::Config::Method.new list_restore_plans_config
      get_restore_plan_config = parent_rpcs.get_restore_plan if parent_rpcs.respond_to? :get_restore_plan
      @get_restore_plan = ::Gapic::Config::Method.new get_restore_plan_config
      update_restore_plan_config = parent_rpcs.update_restore_plan if parent_rpcs.respond_to? :update_restore_plan
      @update_restore_plan = ::Gapic::Config::Method.new update_restore_plan_config
      delete_restore_plan_config = parent_rpcs.delete_restore_plan if parent_rpcs.respond_to? :delete_restore_plan
      @delete_restore_plan = ::Gapic::Config::Method.new delete_restore_plan_config
      create_restore_config = parent_rpcs.create_restore if parent_rpcs.respond_to? :create_restore
      @create_restore = ::Gapic::Config::Method.new create_restore_config
      list_restores_config = parent_rpcs.list_restores if parent_rpcs.respond_to? :list_restores
      @list_restores = ::Gapic::Config::Method.new list_restores_config
      get_restore_config = parent_rpcs.get_restore if parent_rpcs.respond_to? :get_restore
      @get_restore = ::Gapic::Config::Method.new get_restore_config
      update_restore_config = parent_rpcs.update_restore if parent_rpcs.respond_to? :update_restore
      @update_restore = ::Gapic::Config::Method.new update_restore_config
      delete_restore_config = parent_rpcs.delete_restore if parent_rpcs.respond_to? :delete_restore
      @delete_restore = ::Gapic::Config::Method.new delete_restore_config
      list_volume_restores_config = parent_rpcs.list_volume_restores if parent_rpcs.respond_to? :list_volume_restores
      @list_volume_restores = ::Gapic::Config::Method.new list_volume_restores_config
      get_volume_restore_config = parent_rpcs.get_volume_restore if parent_rpcs.respond_to? :get_volume_restore
      @get_volume_restore = ::Gapic::Config::Method.new get_volume_restore_config

      yield self if block_given?
    end
  end
end

Instance Method Details

#channel_pool::Gapic::ServiceStub::ChannelPool::Configuration

Configuration for the channel pool

Returns:

  • (::Gapic::ServiceStub::ChannelPool::Configuration)


2804
2805
2806
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2804

def channel_pool
  @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
end

#rpcsRpcs

Configurations for individual RPCs

Returns:



2792
2793
2794
2795
2796
2797
2798
# File 'lib/google/cloud/gke_backup/v1/backup_for_gke/client.rb', line 2792

def rpcs
  @rpcs ||= begin
    parent_rpcs = nil
    parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
    Rpcs.new parent_rpcs
  end
end