Class: Google::Cloud::BareMetalSolution::V2::BareMetalSolution::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb

Overview

Configuration class for the BareMetalSolution API.

This class represents the configuration for BareMetalSolution, 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::BareMetalSolution::V2::BareMetalSolution::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::BareMetalSolution::V2::BareMetalSolution::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.list_instances.timeout = 20.0
end

Defined Under Namespace

Classes: Rpcs

Constant Summary collapse

DEFAULT_ENDPOINT =
"baremetalsolution.googleapis.com"

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#channel_args::Hash

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

Returns:

  • (::Hash)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_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)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_config

      yield self if block_given?
    end
  end
end

#endpoint::String

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

Returns:

  • (::String)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_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>)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_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})


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_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)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4343

class Configuration
  extend ::Gapic::Config

  DEFAULT_ENDPOINT = "baremetalsolution.googleapis.com"

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the BareMetalSolution 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 `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `rename_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_instance
    ##
    # RPC-specific configuration for `reset_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :reset_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 `enable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :enable_interactive_serial_console
    ##
    # RPC-specific configuration for `disable_interactive_serial_console`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :disable_interactive_serial_console
    ##
    # RPC-specific configuration for `detach_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detach_lun
    ##
    # RPC-specific configuration for `list_ssh_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_ssh_keys
    ##
    # RPC-specific configuration for `create_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_ssh_key
    ##
    # RPC-specific configuration for `delete_ssh_key`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_ssh_key
    ##
    # RPC-specific configuration for `list_volumes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volumes
    ##
    # RPC-specific configuration for `get_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume
    ##
    # RPC-specific configuration for `update_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_volume
    ##
    # RPC-specific configuration for `rename_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_volume
    ##
    # RPC-specific configuration for `evict_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_volume
    ##
    # RPC-specific configuration for `resize_volume`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :resize_volume
    ##
    # RPC-specific configuration for `list_networks`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_networks
    ##
    # RPC-specific configuration for `list_network_usage`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_network_usage
    ##
    # RPC-specific configuration for `get_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_network
    ##
    # RPC-specific configuration for `update_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_network
    ##
    # RPC-specific configuration for `create_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_volume_snapshot
    ##
    # RPC-specific configuration for `restore_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :restore_volume_snapshot
    ##
    # RPC-specific configuration for `delete_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_volume_snapshot
    ##
    # RPC-specific configuration for `get_volume_snapshot`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_volume_snapshot
    ##
    # RPC-specific configuration for `list_volume_snapshots`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_volume_snapshots
    ##
    # RPC-specific configuration for `get_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_lun
    ##
    # RPC-specific configuration for `list_luns`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_luns
    ##
    # RPC-specific configuration for `evict_lun`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :evict_lun
    ##
    # RPC-specific configuration for `get_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_nfs_share
    ##
    # RPC-specific configuration for `list_nfs_shares`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_nfs_shares
    ##
    # RPC-specific configuration for `update_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_nfs_share
    ##
    # RPC-specific configuration for `create_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_nfs_share
    ##
    # RPC-specific configuration for `rename_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_nfs_share
    ##
    # RPC-specific configuration for `delete_nfs_share`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_nfs_share
    ##
    # RPC-specific configuration for `list_provisioning_quotas`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_provisioning_quotas
    ##
    # RPC-specific configuration for `submit_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :submit_provisioning_config
    ##
    # RPC-specific configuration for `get_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_provisioning_config
    ##
    # RPC-specific configuration for `create_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_provisioning_config
    ##
    # RPC-specific configuration for `update_provisioning_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_provisioning_config
    ##
    # RPC-specific configuration for `rename_network`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rename_network
    ##
    # RPC-specific configuration for `list_os_images`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_os_images

    # @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
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      rename_instance_config = parent_rpcs.rename_instance if parent_rpcs.respond_to? :rename_instance
      @rename_instance = ::Gapic::Config::Method.new rename_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
      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
      enable_interactive_serial_console_config = parent_rpcs.enable_interactive_serial_console if parent_rpcs.respond_to? :enable_interactive_serial_console
      @enable_interactive_serial_console = ::Gapic::Config::Method.new enable_interactive_serial_console_config
      disable_interactive_serial_console_config = parent_rpcs.disable_interactive_serial_console if parent_rpcs.respond_to? :disable_interactive_serial_console
      @disable_interactive_serial_console = ::Gapic::Config::Method.new disable_interactive_serial_console_config
      detach_lun_config = parent_rpcs.detach_lun if parent_rpcs.respond_to? :detach_lun
      @detach_lun = ::Gapic::Config::Method.new detach_lun_config
      list_ssh_keys_config = parent_rpcs.list_ssh_keys if parent_rpcs.respond_to? :list_ssh_keys
      @list_ssh_keys = ::Gapic::Config::Method.new list_ssh_keys_config
      create_ssh_key_config = parent_rpcs.create_ssh_key if parent_rpcs.respond_to? :create_ssh_key
      @create_ssh_key = ::Gapic::Config::Method.new create_ssh_key_config
      delete_ssh_key_config = parent_rpcs.delete_ssh_key if parent_rpcs.respond_to? :delete_ssh_key
      @delete_ssh_key = ::Gapic::Config::Method.new delete_ssh_key_config
      list_volumes_config = parent_rpcs.list_volumes if parent_rpcs.respond_to? :list_volumes
      @list_volumes = ::Gapic::Config::Method.new list_volumes_config
      get_volume_config = parent_rpcs.get_volume if parent_rpcs.respond_to? :get_volume
      @get_volume = ::Gapic::Config::Method.new get_volume_config
      update_volume_config = parent_rpcs.update_volume if parent_rpcs.respond_to? :update_volume
      @update_volume = ::Gapic::Config::Method.new update_volume_config
      rename_volume_config = parent_rpcs.rename_volume if parent_rpcs.respond_to? :rename_volume
      @rename_volume = ::Gapic::Config::Method.new rename_volume_config
      evict_volume_config = parent_rpcs.evict_volume if parent_rpcs.respond_to? :evict_volume
      @evict_volume = ::Gapic::Config::Method.new evict_volume_config
      resize_volume_config = parent_rpcs.resize_volume if parent_rpcs.respond_to? :resize_volume
      @resize_volume = ::Gapic::Config::Method.new resize_volume_config
      list_networks_config = parent_rpcs.list_networks if parent_rpcs.respond_to? :list_networks
      @list_networks = ::Gapic::Config::Method.new list_networks_config
      list_network_usage_config = parent_rpcs.list_network_usage if parent_rpcs.respond_to? :list_network_usage
      @list_network_usage = ::Gapic::Config::Method.new list_network_usage_config
      get_network_config = parent_rpcs.get_network if parent_rpcs.respond_to? :get_network
      @get_network = ::Gapic::Config::Method.new get_network_config
      update_network_config = parent_rpcs.update_network if parent_rpcs.respond_to? :update_network
      @update_network = ::Gapic::Config::Method.new update_network_config
      create_volume_snapshot_config = parent_rpcs.create_volume_snapshot if parent_rpcs.respond_to? :create_volume_snapshot
      @create_volume_snapshot = ::Gapic::Config::Method.new create_volume_snapshot_config
      restore_volume_snapshot_config = parent_rpcs.restore_volume_snapshot if parent_rpcs.respond_to? :restore_volume_snapshot
      @restore_volume_snapshot = ::Gapic::Config::Method.new restore_volume_snapshot_config
      delete_volume_snapshot_config = parent_rpcs.delete_volume_snapshot if parent_rpcs.respond_to? :delete_volume_snapshot
      @delete_volume_snapshot = ::Gapic::Config::Method.new delete_volume_snapshot_config
      get_volume_snapshot_config = parent_rpcs.get_volume_snapshot if parent_rpcs.respond_to? :get_volume_snapshot
      @get_volume_snapshot = ::Gapic::Config::Method.new get_volume_snapshot_config
      list_volume_snapshots_config = parent_rpcs.list_volume_snapshots if parent_rpcs.respond_to? :list_volume_snapshots
      @list_volume_snapshots = ::Gapic::Config::Method.new list_volume_snapshots_config
      get_lun_config = parent_rpcs.get_lun if parent_rpcs.respond_to? :get_lun
      @get_lun = ::Gapic::Config::Method.new get_lun_config
      list_luns_config = parent_rpcs.list_luns if parent_rpcs.respond_to? :list_luns
      @list_luns = ::Gapic::Config::Method.new list_luns_config
      evict_lun_config = parent_rpcs.evict_lun if parent_rpcs.respond_to? :evict_lun
      @evict_lun = ::Gapic::Config::Method.new evict_lun_config
      get_nfs_share_config = parent_rpcs.get_nfs_share if parent_rpcs.respond_to? :get_nfs_share
      @get_nfs_share = ::Gapic::Config::Method.new get_nfs_share_config
      list_nfs_shares_config = parent_rpcs.list_nfs_shares if parent_rpcs.respond_to? :list_nfs_shares
      @list_nfs_shares = ::Gapic::Config::Method.new list_nfs_shares_config
      update_nfs_share_config = parent_rpcs.update_nfs_share if parent_rpcs.respond_to? :update_nfs_share
      @update_nfs_share = ::Gapic::Config::Method.new update_nfs_share_config
      create_nfs_share_config = parent_rpcs.create_nfs_share if parent_rpcs.respond_to? :create_nfs_share
      @create_nfs_share = ::Gapic::Config::Method.new create_nfs_share_config
      rename_nfs_share_config = parent_rpcs.rename_nfs_share if parent_rpcs.respond_to? :rename_nfs_share
      @rename_nfs_share = ::Gapic::Config::Method.new rename_nfs_share_config
      delete_nfs_share_config = parent_rpcs.delete_nfs_share if parent_rpcs.respond_to? :delete_nfs_share
      @delete_nfs_share = ::Gapic::Config::Method.new delete_nfs_share_config
      list_provisioning_quotas_config = parent_rpcs.list_provisioning_quotas if parent_rpcs.respond_to? :list_provisioning_quotas
      @list_provisioning_quotas = ::Gapic::Config::Method.new list_provisioning_quotas_config
      submit_provisioning_config_config = parent_rpcs.submit_provisioning_config if parent_rpcs.respond_to? :submit_provisioning_config
      @submit_provisioning_config = ::Gapic::Config::Method.new submit_provisioning_config_config
      get_provisioning_config_config = parent_rpcs.get_provisioning_config if parent_rpcs.respond_to? :get_provisioning_config
      @get_provisioning_config = ::Gapic::Config::Method.new get_provisioning_config_config
      create_provisioning_config_config = parent_rpcs.create_provisioning_config if parent_rpcs.respond_to? :create_provisioning_config
      @create_provisioning_config = ::Gapic::Config::Method.new create_provisioning_config_config
      update_provisioning_config_config = parent_rpcs.update_provisioning_config if parent_rpcs.respond_to? :update_provisioning_config
      @update_provisioning_config = ::Gapic::Config::Method.new update_provisioning_config_config
      rename_network_config = parent_rpcs.rename_network if parent_rpcs.respond_to? :rename_network
      @rename_network = ::Gapic::Config::Method.new rename_network_config
      list_os_images_config = parent_rpcs.list_os_images if parent_rpcs.respond_to? :list_os_images
      @list_os_images = ::Gapic::Config::Method.new list_os_images_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)


4387
4388
4389
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4387

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

#rpcsRpcs

Configurations for individual RPCs

Returns:



4375
4376
4377
4378
4379
4380
4381
# File 'lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb', line 4375

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