Class: Google::Cloud::ManagedKafka::SchemaRegistry::V1::ManagedSchemaRegistry::Rest::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::ManagedKafka::SchemaRegistry::V1::ManagedSchemaRegistry::Rest::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb
Overview
Configuration class for the ManagedSchemaRegistry REST API.
This class represents the configuration for ManagedSchemaRegistry REST, 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
-
#credentials ⇒ ::Object
Credentials to send with calls.
-
#endpoint ⇒ ::String?
A custom service endpoint, as a hostname or hostname:port.
-
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging.
-
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging.
-
#logger ⇒ ::Logger, ...
A custom logger to use for request/response debug logging, or the value
:default(the default) to construct a default logger, ornilto explicitly disable logging. -
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional 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
-
#rpcs ⇒ Rpcs
Configurations for individual RPCs.
Instance Attribute Details
#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) - (
nil) indicating no credentials
Warning: If you accept a credential configuration (JSON file or Hash) from an external source for authentication to Google Cloud, you must validate it before providing it to a Google API client library. Providing an unvalidated credential configuration to Google APIs can compromise the security of your systems and data. For more information, refer to Validate credential configurations from external sources.
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_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.
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
#logger ⇒ ::Logger, ...
A custom logger to use for request/response debug logging, or the value
:default (the default) to construct a default logger, or nil to
explicitly disable logging.
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional headers to be sent with the call.
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
#quota_project ⇒ ::String
A separate project against which to charge quota.
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_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.
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_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).
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2633 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "managedkafka.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil] allowed.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 :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 # Overrides for http bindings for the RPCs of this service # are only used when this service is used as mixin, and only # by the host service. # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}] config_attr :bindings_override, {}, ::Hash, nil config_attr :logger, :default, ::Logger, nil, :default # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the ManagedSchemaRegistry 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 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 `get_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :get_schema_registry ## # RPC-specific configuration for `list_schema_registries` # @return [::Gapic::Config::Method] # attr_reader :list_schema_registries ## # RPC-specific configuration for `create_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :create_schema_registry ## # RPC-specific configuration for `delete_schema_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_registry ## # 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 `get_schema` # @return [::Gapic::Config::Method] # attr_reader :get_schema ## # RPC-specific configuration for `get_raw_schema` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema ## # RPC-specific configuration for `list_schema_versions` # @return [::Gapic::Config::Method] # attr_reader :list_schema_versions ## # RPC-specific configuration for `list_schema_types` # @return [::Gapic::Config::Method] # attr_reader :list_schema_types ## # RPC-specific configuration for `list_subjects` # @return [::Gapic::Config::Method] # attr_reader :list_subjects ## # RPC-specific configuration for `list_subjects_by_schema_id` # @return [::Gapic::Config::Method] # attr_reader :list_subjects_by_schema_id ## # RPC-specific configuration for `delete_subject` # @return [::Gapic::Config::Method] # attr_reader :delete_subject ## # RPC-specific configuration for `lookup_version` # @return [::Gapic::Config::Method] # attr_reader :lookup_version ## # RPC-specific configuration for `get_version` # @return [::Gapic::Config::Method] # attr_reader :get_version ## # RPC-specific configuration for `get_raw_schema_version` # @return [::Gapic::Config::Method] # attr_reader :get_raw_schema_version ## # RPC-specific configuration for `list_versions` # @return [::Gapic::Config::Method] # attr_reader :list_versions ## # RPC-specific configuration for `create_version` # @return [::Gapic::Config::Method] # attr_reader :create_version ## # RPC-specific configuration for `delete_version` # @return [::Gapic::Config::Method] # attr_reader :delete_version ## # RPC-specific configuration for `list_referenced_schemas` # @return [::Gapic::Config::Method] # attr_reader :list_referenced_schemas ## # RPC-specific configuration for `check_compatibility` # @return [::Gapic::Config::Method] # attr_reader :check_compatibility ## # RPC-specific configuration for `get_schema_config` # @return [::Gapic::Config::Method] # attr_reader :get_schema_config ## # RPC-specific configuration for `update_schema_config` # @return [::Gapic::Config::Method] # attr_reader :update_schema_config ## # RPC-specific configuration for `delete_schema_config` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_config ## # RPC-specific configuration for `get_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :get_schema_mode ## # RPC-specific configuration for `update_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :update_schema_mode ## # RPC-specific configuration for `delete_schema_mode` # @return [::Gapic::Config::Method] # attr_reader :delete_schema_mode # @private def initialize parent_rpcs = nil get_schema_registry_config = parent_rpcs.get_schema_registry if parent_rpcs.respond_to? :get_schema_registry @get_schema_registry = ::Gapic::Config::Method.new get_schema_registry_config list_schema_registries_config = parent_rpcs.list_schema_registries if parent_rpcs.respond_to? :list_schema_registries @list_schema_registries = ::Gapic::Config::Method.new list_schema_registries_config create_schema_registry_config = parent_rpcs.create_schema_registry if parent_rpcs.respond_to? :create_schema_registry @create_schema_registry = ::Gapic::Config::Method.new create_schema_registry_config delete_schema_registry_config = parent_rpcs.delete_schema_registry if parent_rpcs.respond_to? :delete_schema_registry @delete_schema_registry = ::Gapic::Config::Method.new delete_schema_registry_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 get_schema_config = parent_rpcs.get_schema if parent_rpcs.respond_to? :get_schema @get_schema = ::Gapic::Config::Method.new get_schema_config get_raw_schema_config = parent_rpcs.get_raw_schema if parent_rpcs.respond_to? :get_raw_schema @get_raw_schema = ::Gapic::Config::Method.new get_raw_schema_config list_schema_versions_config = parent_rpcs.list_schema_versions if parent_rpcs.respond_to? :list_schema_versions @list_schema_versions = ::Gapic::Config::Method.new list_schema_versions_config list_schema_types_config = parent_rpcs.list_schema_types if parent_rpcs.respond_to? :list_schema_types @list_schema_types = ::Gapic::Config::Method.new list_schema_types_config list_subjects_config = parent_rpcs.list_subjects if parent_rpcs.respond_to? :list_subjects @list_subjects = ::Gapic::Config::Method.new list_subjects_config list_subjects_by_schema_id_config = parent_rpcs.list_subjects_by_schema_id if parent_rpcs.respond_to? :list_subjects_by_schema_id @list_subjects_by_schema_id = ::Gapic::Config::Method.new list_subjects_by_schema_id_config delete_subject_config = parent_rpcs.delete_subject if parent_rpcs.respond_to? :delete_subject @delete_subject = ::Gapic::Config::Method.new delete_subject_config lookup_version_config = parent_rpcs.lookup_version if parent_rpcs.respond_to? :lookup_version @lookup_version = ::Gapic::Config::Method.new lookup_version_config get_version_config = parent_rpcs.get_version if parent_rpcs.respond_to? :get_version @get_version = ::Gapic::Config::Method.new get_version_config get_raw_schema_version_config = parent_rpcs.get_raw_schema_version if parent_rpcs.respond_to? :get_raw_schema_version @get_raw_schema_version = ::Gapic::Config::Method.new get_raw_schema_version_config list_versions_config = parent_rpcs.list_versions if parent_rpcs.respond_to? :list_versions @list_versions = ::Gapic::Config::Method.new list_versions_config create_version_config = parent_rpcs.create_version if parent_rpcs.respond_to? :create_version @create_version = ::Gapic::Config::Method.new create_version_config delete_version_config = parent_rpcs.delete_version if parent_rpcs.respond_to? :delete_version @delete_version = ::Gapic::Config::Method.new delete_version_config list_referenced_schemas_config = parent_rpcs.list_referenced_schemas if parent_rpcs.respond_to? :list_referenced_schemas @list_referenced_schemas = ::Gapic::Config::Method.new list_referenced_schemas_config check_compatibility_config = parent_rpcs.check_compatibility if parent_rpcs.respond_to? :check_compatibility @check_compatibility = ::Gapic::Config::Method.new check_compatibility_config get_schema_config_config = parent_rpcs.get_schema_config if parent_rpcs.respond_to? :get_schema_config @get_schema_config = ::Gapic::Config::Method.new get_schema_config_config update_schema_config_config = parent_rpcs.update_schema_config if parent_rpcs.respond_to? :update_schema_config @update_schema_config = ::Gapic::Config::Method.new update_schema_config_config delete_schema_config_config = parent_rpcs.delete_schema_config if parent_rpcs.respond_to? :delete_schema_config @delete_schema_config = ::Gapic::Config::Method.new delete_schema_config_config get_schema_mode_config = parent_rpcs.get_schema_mode if parent_rpcs.respond_to? :get_schema_mode @get_schema_mode = ::Gapic::Config::Method.new get_schema_mode_config update_schema_mode_config = parent_rpcs.update_schema_mode if parent_rpcs.respond_to? :update_schema_mode @update_schema_mode = ::Gapic::Config::Method.new update_schema_mode_config delete_schema_mode_config = parent_rpcs.delete_schema_mode if parent_rpcs.respond_to? :delete_schema_mode @delete_schema_mode = ::Gapic::Config::Method.new delete_schema_mode_config yield self if block_given? end end end |
Instance Method Details
#rpcs ⇒ Rpcs
Configurations for individual RPCs
2673 2674 2675 2676 2677 2678 2679 |
# File 'lib/google/cloud/managed_kafka/schema_registry/v1/managed_schema_registry/rest/client.rb', line 2673 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 |