Class: Google::Cloud::AIPlatform::V1::MetadataService::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::MetadataService::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/ai_platform/v1/metadata_service/client.rb
Overview
Configuration class for the MetadataService API.
This class represents the configuration for MetadataService, 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.
-
#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.
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#credentials ⇒ ::Object
Credentials to send with calls. You may provide any of the following types:
- (
String
) The path to a service account key file in JSON format - (
Hash
) A service account key as a Hash - (
Google::Auth::Credentials
) A googleauth credentials object (see the googleauth docs) - (
Signet::OAuth2::Client
) A signet oauth2 client object (see the signet docs) - (
GRPC::Core::Channel
) a gRPC channel with included credentials - (
GRPC::Core::ChannelCredentials
) a gRPC credentails object - (
nil
) indicating no credentials
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_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.
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#quota_project ⇒ ::String
A separate project against which to charge quota.
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_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.
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_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).
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3569 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "aiplatform.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the MetadataService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_store ## # RPC-specific configuration for `get_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_store ## # RPC-specific configuration for `list_metadata_stores` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_stores ## # RPC-specific configuration for `delete_metadata_store` # @return [::Gapic::Config::Method] # attr_reader :delete_metadata_store ## # RPC-specific configuration for `create_artifact` # @return [::Gapic::Config::Method] # attr_reader :create_artifact ## # RPC-specific configuration for `get_artifact` # @return [::Gapic::Config::Method] # attr_reader :get_artifact ## # RPC-specific configuration for `list_artifacts` # @return [::Gapic::Config::Method] # attr_reader :list_artifacts ## # RPC-specific configuration for `update_artifact` # @return [::Gapic::Config::Method] # attr_reader :update_artifact ## # RPC-specific configuration for `delete_artifact` # @return [::Gapic::Config::Method] # attr_reader :delete_artifact ## # RPC-specific configuration for `purge_artifacts` # @return [::Gapic::Config::Method] # attr_reader :purge_artifacts ## # RPC-specific configuration for `create_context` # @return [::Gapic::Config::Method] # attr_reader :create_context ## # RPC-specific configuration for `get_context` # @return [::Gapic::Config::Method] # attr_reader :get_context ## # RPC-specific configuration for `list_contexts` # @return [::Gapic::Config::Method] # attr_reader :list_contexts ## # RPC-specific configuration for `update_context` # @return [::Gapic::Config::Method] # attr_reader :update_context ## # RPC-specific configuration for `delete_context` # @return [::Gapic::Config::Method] # attr_reader :delete_context ## # RPC-specific configuration for `purge_contexts` # @return [::Gapic::Config::Method] # attr_reader :purge_contexts ## # RPC-specific configuration for `add_context_artifacts_and_executions` # @return [::Gapic::Config::Method] # attr_reader :add_context_artifacts_and_executions ## # RPC-specific configuration for `add_context_children` # @return [::Gapic::Config::Method] # attr_reader :add_context_children ## # RPC-specific configuration for `remove_context_children` # @return [::Gapic::Config::Method] # attr_reader :remove_context_children ## # RPC-specific configuration for `query_context_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_context_lineage_subgraph ## # RPC-specific configuration for `create_execution` # @return [::Gapic::Config::Method] # attr_reader :create_execution ## # RPC-specific configuration for `get_execution` # @return [::Gapic::Config::Method] # attr_reader :get_execution ## # RPC-specific configuration for `list_executions` # @return [::Gapic::Config::Method] # attr_reader :list_executions ## # RPC-specific configuration for `update_execution` # @return [::Gapic::Config::Method] # attr_reader :update_execution ## # RPC-specific configuration for `delete_execution` # @return [::Gapic::Config::Method] # attr_reader :delete_execution ## # RPC-specific configuration for `purge_executions` # @return [::Gapic::Config::Method] # attr_reader :purge_executions ## # RPC-specific configuration for `add_execution_events` # @return [::Gapic::Config::Method] # attr_reader :add_execution_events ## # RPC-specific configuration for `query_execution_inputs_and_outputs` # @return [::Gapic::Config::Method] # attr_reader :query_execution_inputs_and_outputs ## # RPC-specific configuration for `create_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :create_metadata_schema ## # RPC-specific configuration for `get_metadata_schema` # @return [::Gapic::Config::Method] # attr_reader :get_metadata_schema ## # RPC-specific configuration for `list_metadata_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_metadata_schemas ## # RPC-specific configuration for `query_artifact_lineage_subgraph` # @return [::Gapic::Config::Method] # attr_reader :query_artifact_lineage_subgraph # @private def initialize parent_rpcs = nil = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_store @create_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_store @get_metadata_store = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_stores @list_metadata_stores = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :delete_metadata_store @delete_metadata_store = ::Gapic::Config::Method.new create_artifact_config = parent_rpcs.create_artifact if parent_rpcs.respond_to? :create_artifact @create_artifact = ::Gapic::Config::Method.new create_artifact_config get_artifact_config = parent_rpcs.get_artifact if parent_rpcs.respond_to? :get_artifact @get_artifact = ::Gapic::Config::Method.new get_artifact_config list_artifacts_config = parent_rpcs.list_artifacts if parent_rpcs.respond_to? :list_artifacts @list_artifacts = ::Gapic::Config::Method.new list_artifacts_config update_artifact_config = parent_rpcs.update_artifact if parent_rpcs.respond_to? :update_artifact @update_artifact = ::Gapic::Config::Method.new update_artifact_config delete_artifact_config = parent_rpcs.delete_artifact if parent_rpcs.respond_to? :delete_artifact @delete_artifact = ::Gapic::Config::Method.new delete_artifact_config purge_artifacts_config = parent_rpcs.purge_artifacts if parent_rpcs.respond_to? :purge_artifacts @purge_artifacts = ::Gapic::Config::Method.new purge_artifacts_config create_context_config = parent_rpcs.create_context if parent_rpcs.respond_to? :create_context @create_context = ::Gapic::Config::Method.new create_context_config get_context_config = parent_rpcs.get_context if parent_rpcs.respond_to? :get_context @get_context = ::Gapic::Config::Method.new get_context_config list_contexts_config = parent_rpcs.list_contexts if parent_rpcs.respond_to? :list_contexts @list_contexts = ::Gapic::Config::Method.new list_contexts_config update_context_config = parent_rpcs.update_context if parent_rpcs.respond_to? :update_context @update_context = ::Gapic::Config::Method.new update_context_config delete_context_config = parent_rpcs.delete_context if parent_rpcs.respond_to? :delete_context @delete_context = ::Gapic::Config::Method.new delete_context_config purge_contexts_config = parent_rpcs.purge_contexts if parent_rpcs.respond_to? :purge_contexts @purge_contexts = ::Gapic::Config::Method.new purge_contexts_config add_context_artifacts_and_executions_config = parent_rpcs.add_context_artifacts_and_executions if parent_rpcs.respond_to? :add_context_artifacts_and_executions @add_context_artifacts_and_executions = ::Gapic::Config::Method.new add_context_artifacts_and_executions_config add_context_children_config = parent_rpcs.add_context_children if parent_rpcs.respond_to? :add_context_children @add_context_children = ::Gapic::Config::Method.new add_context_children_config remove_context_children_config = parent_rpcs.remove_context_children if parent_rpcs.respond_to? :remove_context_children @remove_context_children = ::Gapic::Config::Method.new remove_context_children_config query_context_lineage_subgraph_config = parent_rpcs.query_context_lineage_subgraph if parent_rpcs.respond_to? :query_context_lineage_subgraph @query_context_lineage_subgraph = ::Gapic::Config::Method.new query_context_lineage_subgraph_config create_execution_config = parent_rpcs.create_execution if parent_rpcs.respond_to? :create_execution @create_execution = ::Gapic::Config::Method.new create_execution_config get_execution_config = parent_rpcs.get_execution if parent_rpcs.respond_to? :get_execution @get_execution = ::Gapic::Config::Method.new get_execution_config list_executions_config = parent_rpcs.list_executions if parent_rpcs.respond_to? :list_executions @list_executions = ::Gapic::Config::Method.new list_executions_config update_execution_config = parent_rpcs.update_execution if parent_rpcs.respond_to? :update_execution @update_execution = ::Gapic::Config::Method.new update_execution_config delete_execution_config = parent_rpcs.delete_execution if parent_rpcs.respond_to? :delete_execution @delete_execution = ::Gapic::Config::Method.new delete_execution_config purge_executions_config = parent_rpcs.purge_executions if parent_rpcs.respond_to? :purge_executions @purge_executions = ::Gapic::Config::Method.new purge_executions_config add_execution_events_config = parent_rpcs.add_execution_events if parent_rpcs.respond_to? :add_execution_events @add_execution_events = ::Gapic::Config::Method.new add_execution_events_config query_execution_inputs_and_outputs_config = parent_rpcs.query_execution_inputs_and_outputs if parent_rpcs.respond_to? :query_execution_inputs_and_outputs @query_execution_inputs_and_outputs = ::Gapic::Config::Method.new query_execution_inputs_and_outputs_config = parent_rpcs. if parent_rpcs.respond_to? :create_metadata_schema @create_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :get_metadata_schema @get_metadata_schema = ::Gapic::Config::Method.new = parent_rpcs. if parent_rpcs.respond_to? :list_metadata_schemas @list_metadata_schemas = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config = parent_rpcs.query_artifact_lineage_subgraph if parent_rpcs.respond_to? :query_artifact_lineage_subgraph @query_artifact_lineage_subgraph = ::Gapic::Config::Method.new query_artifact_lineage_subgraph_config yield self if block_given? end end end |
Instance Method Details
#channel_pool ⇒ ::Gapic::ServiceStub::ChannelPool::Configuration
Configuration for the channel pool
3616 3617 3618 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3616 def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end |
#rpcs ⇒ Rpcs
Configurations for individual RPCs
3604 3605 3606 3607 3608 3609 3610 |
# File 'lib/google/cloud/ai_platform/v1/metadata_service/client.rb', line 3604 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 |