Class: Google::Cloud::NetworkConnectivity::V1beta::HubService::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::NetworkConnectivity::V1beta::HubService::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb
Overview
Configuration class for the HubService API.
This class represents the configuration for HubService, 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.
Defined Under Namespace
Classes: Rpcs
Instance Attribute Summary collapse
-
#channel_args ⇒ ::Hash
Extra parameters passed to the gRPC channel.
-
#credentials ⇒ ::Object
Credentials to send with calls.
-
#endpoint ⇒ ::String?
A custom service endpoint, as a hostname or hostname:port.
-
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
-
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging.
-
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging.
-
#logger ⇒ ::Logger, ...
A custom logger to use for request/response debug logging, or the value
:default(the default) to construct a default logger, ornilto explicitly disable logging. -
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
-
#quota_project ⇒ ::String
A separate project against which to charge quota.
-
#retry_policy ⇒ ::Hash
The retry policy.
-
#scope ⇒ ::Array<::String>
The OAuth scopes.
-
#timeout ⇒ ::Numeric
The call timeout in seconds.
-
#universe_domain ⇒ ::String?
The universe domain within which to make requests.
Instance Method Summary collapse
-
#channel_pool ⇒ ::Gapic::ServiceStub::ChannelPool::Configuration
Configuration for the channel pool.
-
#rpcs ⇒ Rpcs
Configurations for individual RPCs.
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.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#credentials ⇒ ::Object
Warning: Passing a String to a keyfile path or a Hash of credentials
is deprecated. Providing an unvalidated credential configuration to
Google APIs can compromise the security of your systems and data.
Warning: If you accept a credential configuration (JSON file or Hash) from an
Credentials to send with calls. You may provide any of the following types:
- (
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
external source for authentication to Google Cloud, you must validate it before providing it to a Google API client library. Providing an unvalidated credential configuration to Google APIs can compromise the security of your systems and data. For more information, refer to Validate credential configurations from external sources.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#endpoint ⇒ ::String?
A custom service endpoint, as a hostname or hostname:port. The default is nil, indicating to use the default endpoint in the current universe domain.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#logger ⇒ ::Logger, ...
A custom logger to use for request/response debug logging, or the value
:default (the default) to construct a default logger, or nil to
explicitly disable logging.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#quota_project ⇒ ::String
A separate project against which to charge quota.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_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.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
#universe_domain ⇒ ::String?
The universe domain within which to make requests. This determines the default endpoint URL. The default value of nil uses the environment universe (usually the default "googleapis.com" universe).
3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3302 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "networkconnectivity.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil config_attr :logger, :default, ::Logger, nil, :default # @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 HubService 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_hubs` # @return [::Gapic::Config::Method] # attr_reader :list_hubs ## # RPC-specific configuration for `get_hub` # @return [::Gapic::Config::Method] # attr_reader :get_hub ## # RPC-specific configuration for `create_hub` # @return [::Gapic::Config::Method] # attr_reader :create_hub ## # RPC-specific configuration for `update_hub` # @return [::Gapic::Config::Method] # attr_reader :update_hub ## # RPC-specific configuration for `delete_hub` # @return [::Gapic::Config::Method] # attr_reader :delete_hub ## # RPC-specific configuration for `list_hub_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_hub_spokes ## # RPC-specific configuration for `query_hub_status` # @return [::Gapic::Config::Method] # attr_reader :query_hub_status ## # RPC-specific configuration for `list_spokes` # @return [::Gapic::Config::Method] # attr_reader :list_spokes ## # RPC-specific configuration for `get_spoke` # @return [::Gapic::Config::Method] # attr_reader :get_spoke ## # RPC-specific configuration for `create_spoke` # @return [::Gapic::Config::Method] # attr_reader :create_spoke ## # RPC-specific configuration for `update_spoke` # @return [::Gapic::Config::Method] # attr_reader :update_spoke ## # RPC-specific configuration for `reject_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :reject_hub_spoke ## # RPC-specific configuration for `accept_hub_spoke` # @return [::Gapic::Config::Method] # attr_reader :accept_hub_spoke ## # RPC-specific configuration for `accept_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :accept_spoke_update ## # RPC-specific configuration for `reject_spoke_update` # @return [::Gapic::Config::Method] # attr_reader :reject_spoke_update ## # RPC-specific configuration for `delete_spoke` # @return [::Gapic::Config::Method] # attr_reader :delete_spoke ## # RPC-specific configuration for `get_route_table` # @return [::Gapic::Config::Method] # attr_reader :get_route_table ## # RPC-specific configuration for `get_route` # @return [::Gapic::Config::Method] # attr_reader :get_route ## # RPC-specific configuration for `list_routes` # @return [::Gapic::Config::Method] # attr_reader :list_routes ## # RPC-specific configuration for `list_route_tables` # @return [::Gapic::Config::Method] # attr_reader :list_route_tables ## # RPC-specific configuration for `get_group` # @return [::Gapic::Config::Method] # attr_reader :get_group ## # RPC-specific configuration for `list_groups` # @return [::Gapic::Config::Method] # attr_reader :list_groups ## # RPC-specific configuration for `update_group` # @return [::Gapic::Config::Method] # attr_reader :update_group ## # RPC-specific configuration for `create_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :create_gateway_advertised_route ## # RPC-specific configuration for `get_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :get_gateway_advertised_route ## # RPC-specific configuration for `list_gateway_advertised_routes` # @return [::Gapic::Config::Method] # attr_reader :list_gateway_advertised_routes ## # RPC-specific configuration for `update_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :update_gateway_advertised_route ## # RPC-specific configuration for `delete_gateway_advertised_route` # @return [::Gapic::Config::Method] # attr_reader :delete_gateway_advertised_route # @private def initialize parent_rpcs = nil list_hubs_config = parent_rpcs.list_hubs if parent_rpcs.respond_to? :list_hubs @list_hubs = ::Gapic::Config::Method.new list_hubs_config get_hub_config = parent_rpcs.get_hub if parent_rpcs.respond_to? :get_hub @get_hub = ::Gapic::Config::Method.new get_hub_config create_hub_config = parent_rpcs.create_hub if parent_rpcs.respond_to? :create_hub @create_hub = ::Gapic::Config::Method.new create_hub_config update_hub_config = parent_rpcs.update_hub if parent_rpcs.respond_to? :update_hub @update_hub = ::Gapic::Config::Method.new update_hub_config delete_hub_config = parent_rpcs.delete_hub if parent_rpcs.respond_to? :delete_hub @delete_hub = ::Gapic::Config::Method.new delete_hub_config list_hub_spokes_config = parent_rpcs.list_hub_spokes if parent_rpcs.respond_to? :list_hub_spokes @list_hub_spokes = ::Gapic::Config::Method.new list_hub_spokes_config query_hub_status_config = parent_rpcs.query_hub_status if parent_rpcs.respond_to? :query_hub_status @query_hub_status = ::Gapic::Config::Method.new query_hub_status_config list_spokes_config = parent_rpcs.list_spokes if parent_rpcs.respond_to? :list_spokes @list_spokes = ::Gapic::Config::Method.new list_spokes_config get_spoke_config = parent_rpcs.get_spoke if parent_rpcs.respond_to? :get_spoke @get_spoke = ::Gapic::Config::Method.new get_spoke_config create_spoke_config = parent_rpcs.create_spoke if parent_rpcs.respond_to? :create_spoke @create_spoke = ::Gapic::Config::Method.new create_spoke_config update_spoke_config = parent_rpcs.update_spoke if parent_rpcs.respond_to? :update_spoke @update_spoke = ::Gapic::Config::Method.new update_spoke_config reject_hub_spoke_config = parent_rpcs.reject_hub_spoke if parent_rpcs.respond_to? :reject_hub_spoke @reject_hub_spoke = ::Gapic::Config::Method.new reject_hub_spoke_config accept_hub_spoke_config = parent_rpcs.accept_hub_spoke if parent_rpcs.respond_to? :accept_hub_spoke @accept_hub_spoke = ::Gapic::Config::Method.new accept_hub_spoke_config accept_spoke_update_config = parent_rpcs.accept_spoke_update if parent_rpcs.respond_to? :accept_spoke_update @accept_spoke_update = ::Gapic::Config::Method.new accept_spoke_update_config reject_spoke_update_config = parent_rpcs.reject_spoke_update if parent_rpcs.respond_to? :reject_spoke_update @reject_spoke_update = ::Gapic::Config::Method.new reject_spoke_update_config delete_spoke_config = parent_rpcs.delete_spoke if parent_rpcs.respond_to? :delete_spoke @delete_spoke = ::Gapic::Config::Method.new delete_spoke_config get_route_table_config = parent_rpcs.get_route_table if parent_rpcs.respond_to? :get_route_table @get_route_table = ::Gapic::Config::Method.new get_route_table_config get_route_config = parent_rpcs.get_route if parent_rpcs.respond_to? :get_route @get_route = ::Gapic::Config::Method.new get_route_config list_routes_config = parent_rpcs.list_routes if parent_rpcs.respond_to? :list_routes @list_routes = ::Gapic::Config::Method.new list_routes_config list_route_tables_config = parent_rpcs.list_route_tables if parent_rpcs.respond_to? :list_route_tables @list_route_tables = ::Gapic::Config::Method.new list_route_tables_config get_group_config = parent_rpcs.get_group if parent_rpcs.respond_to? :get_group @get_group = ::Gapic::Config::Method.new get_group_config list_groups_config = parent_rpcs.list_groups if parent_rpcs.respond_to? :list_groups @list_groups = ::Gapic::Config::Method.new list_groups_config update_group_config = parent_rpcs.update_group if parent_rpcs.respond_to? :update_group @update_group = ::Gapic::Config::Method.new update_group_config create_gateway_advertised_route_config = parent_rpcs.create_gateway_advertised_route if parent_rpcs.respond_to? :create_gateway_advertised_route @create_gateway_advertised_route = ::Gapic::Config::Method.new create_gateway_advertised_route_config get_gateway_advertised_route_config = parent_rpcs.get_gateway_advertised_route if parent_rpcs.respond_to? :get_gateway_advertised_route @get_gateway_advertised_route = ::Gapic::Config::Method.new get_gateway_advertised_route_config list_gateway_advertised_routes_config = parent_rpcs.list_gateway_advertised_routes if parent_rpcs.respond_to? :list_gateway_advertised_routes @list_gateway_advertised_routes = ::Gapic::Config::Method.new list_gateway_advertised_routes_config update_gateway_advertised_route_config = parent_rpcs.update_gateway_advertised_route if parent_rpcs.respond_to? :update_gateway_advertised_route @update_gateway_advertised_route = ::Gapic::Config::Method.new update_gateway_advertised_route_config delete_gateway_advertised_route_config = parent_rpcs.delete_gateway_advertised_route if parent_rpcs.respond_to? :delete_gateway_advertised_route @delete_gateway_advertised_route = ::Gapic::Config::Method.new delete_gateway_advertised_route_config yield self if block_given? end end end |
Instance Method Details
#channel_pool ⇒ ::Gapic::ServiceStub::ChannelPool::Configuration
Configuration for the channel pool
3350 3351 3352 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3350 def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end |
#rpcs ⇒ Rpcs
Configurations for individual RPCs
3338 3339 3340 3341 3342 3343 3344 |
# File 'lib/google/cloud/network_connectivity/v1beta/hub_service/client.rb', line 3338 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 |