Class: Google::Cloud::Notebooks::V1::NotebookService::Client::Configuration

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

Overview

Configuration class for the NotebookService API.

This class represents the configuration for NotebookService, 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
# list_instances to 20 seconds,
# and all remaining timeouts to 10 seconds.
::Google::Cloud::Notebooks::V1::NotebookService::Client.configure do |config|
  config.timeout = 10.0
  config.rpcs.list_instances.timeout = 20.0
end

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

Defined Under Namespace

Classes: Rpcs

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)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_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)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_config

      yield self if block_given?
    end
  end
end

#endpoint::String?

A custom service endpoint, as a hostname or hostname:port. The default is nil, indicating to use the default endpoint in the current universe domain.

Returns:

  • (::String, nil)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_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>)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_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})


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_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)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_config

      yield self if block_given?
    end
  end
end

#universe_domain::String?

The universe domain within which to make requests. This determines the default endpoint URL. The default value of nil uses the environment universe (usually the default "googleapis.com" universe).

Returns:

  • (::String, nil)


3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3626

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "notebooks.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  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
  config_attr :universe_domain, 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 NotebookService 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `register_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :register_instance
    ##
    # RPC-specific configuration for `set_instance_accelerator`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_accelerator
    ##
    # RPC-specific configuration for `set_instance_machine_type`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_machine_type
    ##
    # RPC-specific configuration for `update_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_config
    ##
    # RPC-specific configuration for `update_shielded_instance_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_shielded_instance_config
    ##
    # RPC-specific configuration for `set_instance_labels`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_instance_labels
    ##
    # RPC-specific configuration for `update_instance_metadata_items`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance_metadata_items
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `start_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :start_instance
    ##
    # RPC-specific configuration for `stop_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :stop_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_instance
    ##
    # RPC-specific configuration for `report_instance_info`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :report_instance_info
    ##
    # RPC-specific configuration for `is_instance_upgradeable`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :is_instance_upgradeable
    ##
    # RPC-specific configuration for `get_instance_health`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance_health
    ##
    # RPC-specific configuration for `upgrade_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance
    ##
    # RPC-specific configuration for `rollback_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_instance
    ##
    # RPC-specific configuration for `diagnose_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :diagnose_instance
    ##
    # RPC-specific configuration for `upgrade_instance_internal`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upgrade_instance_internal
    ##
    # RPC-specific configuration for `list_environments`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_environments
    ##
    # RPC-specific configuration for `get_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_environment
    ##
    # RPC-specific configuration for `create_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_environment
    ##
    # RPC-specific configuration for `delete_environment`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_environment
    ##
    # RPC-specific configuration for `list_schedules`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_schedules
    ##
    # RPC-specific configuration for `get_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_schedule
    ##
    # RPC-specific configuration for `delete_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_schedule
    ##
    # RPC-specific configuration for `create_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_schedule
    ##
    # RPC-specific configuration for `trigger_schedule`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :trigger_schedule
    ##
    # RPC-specific configuration for `list_executions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_executions
    ##
    # RPC-specific configuration for `get_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_execution
    ##
    # RPC-specific configuration for `delete_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_execution
    ##
    # RPC-specific configuration for `create_execution`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_execution

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      register_instance_config = parent_rpcs.register_instance if parent_rpcs.respond_to? :register_instance
      @register_instance = ::Gapic::Config::Method.new register_instance_config
      set_instance_accelerator_config = parent_rpcs.set_instance_accelerator if parent_rpcs.respond_to? :set_instance_accelerator
      @set_instance_accelerator = ::Gapic::Config::Method.new set_instance_accelerator_config
      set_instance_machine_type_config = parent_rpcs.set_instance_machine_type if parent_rpcs.respond_to? :set_instance_machine_type
      @set_instance_machine_type = ::Gapic::Config::Method.new set_instance_machine_type_config
      update_instance_config_config = parent_rpcs.update_instance_config if parent_rpcs.respond_to? :update_instance_config
      @update_instance_config = ::Gapic::Config::Method.new update_instance_config_config
      update_shielded_instance_config_config = parent_rpcs.update_shielded_instance_config if parent_rpcs.respond_to? :update_shielded_instance_config
      @update_shielded_instance_config = ::Gapic::Config::Method.new update_shielded_instance_config_config
      set_instance_labels_config = parent_rpcs.set_instance_labels if parent_rpcs.respond_to? :set_instance_labels
      @set_instance_labels = ::Gapic::Config::Method.new set_instance_labels_config
       = parent_rpcs. if parent_rpcs.respond_to? :update_instance_metadata_items
      @update_instance_metadata_items = ::Gapic::Config::Method.new 
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      start_instance_config = parent_rpcs.start_instance if parent_rpcs.respond_to? :start_instance
      @start_instance = ::Gapic::Config::Method.new start_instance_config
      stop_instance_config = parent_rpcs.stop_instance if parent_rpcs.respond_to? :stop_instance
      @stop_instance = ::Gapic::Config::Method.new stop_instance_config
      reset_instance_config = parent_rpcs.reset_instance if parent_rpcs.respond_to? :reset_instance
      @reset_instance = ::Gapic::Config::Method.new reset_instance_config
      report_instance_info_config = parent_rpcs.report_instance_info if parent_rpcs.respond_to? :report_instance_info
      @report_instance_info = ::Gapic::Config::Method.new report_instance_info_config
      is_instance_upgradeable_config = parent_rpcs.is_instance_upgradeable if parent_rpcs.respond_to? :is_instance_upgradeable
      @is_instance_upgradeable = ::Gapic::Config::Method.new is_instance_upgradeable_config
      get_instance_health_config = parent_rpcs.get_instance_health if parent_rpcs.respond_to? :get_instance_health
      @get_instance_health = ::Gapic::Config::Method.new get_instance_health_config
      upgrade_instance_config = parent_rpcs.upgrade_instance if parent_rpcs.respond_to? :upgrade_instance
      @upgrade_instance = ::Gapic::Config::Method.new upgrade_instance_config
      rollback_instance_config = parent_rpcs.rollback_instance if parent_rpcs.respond_to? :rollback_instance
      @rollback_instance = ::Gapic::Config::Method.new rollback_instance_config
      diagnose_instance_config = parent_rpcs.diagnose_instance if parent_rpcs.respond_to? :diagnose_instance
      @diagnose_instance = ::Gapic::Config::Method.new diagnose_instance_config
      upgrade_instance_internal_config = parent_rpcs.upgrade_instance_internal if parent_rpcs.respond_to? :upgrade_instance_internal
      @upgrade_instance_internal = ::Gapic::Config::Method.new upgrade_instance_internal_config
      list_environments_config = parent_rpcs.list_environments if parent_rpcs.respond_to? :list_environments
      @list_environments = ::Gapic::Config::Method.new list_environments_config
      get_environment_config = parent_rpcs.get_environment if parent_rpcs.respond_to? :get_environment
      @get_environment = ::Gapic::Config::Method.new get_environment_config
      create_environment_config = parent_rpcs.create_environment if parent_rpcs.respond_to? :create_environment
      @create_environment = ::Gapic::Config::Method.new create_environment_config
      delete_environment_config = parent_rpcs.delete_environment if parent_rpcs.respond_to? :delete_environment
      @delete_environment = ::Gapic::Config::Method.new delete_environment_config
      list_schedules_config = parent_rpcs.list_schedules if parent_rpcs.respond_to? :list_schedules
      @list_schedules = ::Gapic::Config::Method.new list_schedules_config
      get_schedule_config = parent_rpcs.get_schedule if parent_rpcs.respond_to? :get_schedule
      @get_schedule = ::Gapic::Config::Method.new get_schedule_config
      delete_schedule_config = parent_rpcs.delete_schedule if parent_rpcs.respond_to? :delete_schedule
      @delete_schedule = ::Gapic::Config::Method.new delete_schedule_config
      create_schedule_config = parent_rpcs.create_schedule if parent_rpcs.respond_to? :create_schedule
      @create_schedule = ::Gapic::Config::Method.new create_schedule_config
      trigger_schedule_config = parent_rpcs.trigger_schedule if parent_rpcs.respond_to? :trigger_schedule
      @trigger_schedule = ::Gapic::Config::Method.new trigger_schedule_config
      list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions
      @list_executions = ::Gapic::Config::Method.new list_executions_config
      get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution
      @get_execution = ::Gapic::Config::Method.new get_execution_config
      delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution
      @delete_execution = ::Gapic::Config::Method.new delete_execution_config
      create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution
      @create_execution = ::Gapic::Config::Method.new create_execution_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)


3673
3674
3675
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3673

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

#rpcsRpcs

Configurations for individual RPCs

Returns:



3661
3662
3663
3664
3665
3666
3667
# File 'lib/google/cloud/notebooks/v1/notebook_service/client.rb', line 3661

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