Class: Google::Cloud::Spanner::Admin::Database::V1::DatabaseAdmin::Rest::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::Spanner::Admin::Database::V1::DatabaseAdmin::Rest::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb
Overview
Configuration class for the DatabaseAdmin REST API.
This class represents the configuration for DatabaseAdmin 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.
-
#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
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_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.
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_config yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_config yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_config yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional headers to be sent with the call.
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_config yield self if block_given? end end end |
#quota_project ⇒ ::String
A separate project against which to charge quota.
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_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.
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_config yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_config yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_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).
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2965 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "spanner.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.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 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 DatabaseAdmin 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 `list_databases` # @return [::Gapic::Config::Method] # attr_reader :list_databases ## # RPC-specific configuration for `create_database` # @return [::Gapic::Config::Method] # attr_reader :create_database ## # RPC-specific configuration for `get_database` # @return [::Gapic::Config::Method] # attr_reader :get_database ## # RPC-specific configuration for `update_database` # @return [::Gapic::Config::Method] # attr_reader :update_database ## # RPC-specific configuration for `update_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :update_database_ddl ## # RPC-specific configuration for `drop_database` # @return [::Gapic::Config::Method] # attr_reader :drop_database ## # RPC-specific configuration for `get_database_ddl` # @return [::Gapic::Config::Method] # attr_reader :get_database_ddl ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `create_backup` # @return [::Gapic::Config::Method] # attr_reader :create_backup ## # RPC-specific configuration for `copy_backup` # @return [::Gapic::Config::Method] # attr_reader :copy_backup ## # RPC-specific configuration for `get_backup` # @return [::Gapic::Config::Method] # attr_reader :get_backup ## # RPC-specific configuration for `update_backup` # @return [::Gapic::Config::Method] # attr_reader :update_backup ## # RPC-specific configuration for `delete_backup` # @return [::Gapic::Config::Method] # attr_reader :delete_backup ## # RPC-specific configuration for `list_backups` # @return [::Gapic::Config::Method] # attr_reader :list_backups ## # RPC-specific configuration for `restore_database` # @return [::Gapic::Config::Method] # attr_reader :restore_database ## # RPC-specific configuration for `list_database_operations` # @return [::Gapic::Config::Method] # attr_reader :list_database_operations ## # RPC-specific configuration for `list_backup_operations` # @return [::Gapic::Config::Method] # attr_reader :list_backup_operations ## # RPC-specific configuration for `list_database_roles` # @return [::Gapic::Config::Method] # attr_reader :list_database_roles ## # RPC-specific configuration for `create_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :create_backup_schedule ## # RPC-specific configuration for `get_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :get_backup_schedule ## # RPC-specific configuration for `update_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :update_backup_schedule ## # RPC-specific configuration for `delete_backup_schedule` # @return [::Gapic::Config::Method] # attr_reader :delete_backup_schedule ## # RPC-specific configuration for `list_backup_schedules` # @return [::Gapic::Config::Method] # attr_reader :list_backup_schedules # @private def initialize parent_rpcs = nil list_databases_config = parent_rpcs.list_databases if parent_rpcs.respond_to? :list_databases @list_databases = ::Gapic::Config::Method.new list_databases_config create_database_config = parent_rpcs.create_database if parent_rpcs.respond_to? :create_database @create_database = ::Gapic::Config::Method.new create_database_config get_database_config = parent_rpcs.get_database if parent_rpcs.respond_to? :get_database @get_database = ::Gapic::Config::Method.new get_database_config update_database_config = parent_rpcs.update_database if parent_rpcs.respond_to? :update_database @update_database = ::Gapic::Config::Method.new update_database_config update_database_ddl_config = parent_rpcs.update_database_ddl if parent_rpcs.respond_to? :update_database_ddl @update_database_ddl = ::Gapic::Config::Method.new update_database_ddl_config drop_database_config = parent_rpcs.drop_database if parent_rpcs.respond_to? :drop_database @drop_database = ::Gapic::Config::Method.new drop_database_config get_database_ddl_config = parent_rpcs.get_database_ddl if parent_rpcs.respond_to? :get_database_ddl @get_database_ddl = ::Gapic::Config::Method.new get_database_ddl_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup @create_backup = ::Gapic::Config::Method.new create_backup_config copy_backup_config = parent_rpcs.copy_backup if parent_rpcs.respond_to? :copy_backup @copy_backup = ::Gapic::Config::Method.new copy_backup_config get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup @get_backup = ::Gapic::Config::Method.new get_backup_config update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup @update_backup = ::Gapic::Config::Method.new update_backup_config delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup @delete_backup = ::Gapic::Config::Method.new delete_backup_config list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups @list_backups = ::Gapic::Config::Method.new list_backups_config restore_database_config = parent_rpcs.restore_database if parent_rpcs.respond_to? :restore_database @restore_database = ::Gapic::Config::Method.new restore_database_config list_database_operations_config = parent_rpcs.list_database_operations if parent_rpcs.respond_to? :list_database_operations @list_database_operations = ::Gapic::Config::Method.new list_database_operations_config list_backup_operations_config = parent_rpcs.list_backup_operations if parent_rpcs.respond_to? :list_backup_operations @list_backup_operations = ::Gapic::Config::Method.new list_backup_operations_config list_database_roles_config = parent_rpcs.list_database_roles if parent_rpcs.respond_to? :list_database_roles @list_database_roles = ::Gapic::Config::Method.new list_database_roles_config create_backup_schedule_config = parent_rpcs.create_backup_schedule if parent_rpcs.respond_to? :create_backup_schedule @create_backup_schedule = ::Gapic::Config::Method.new create_backup_schedule_config get_backup_schedule_config = parent_rpcs.get_backup_schedule if parent_rpcs.respond_to? :get_backup_schedule @get_backup_schedule = ::Gapic::Config::Method.new get_backup_schedule_config update_backup_schedule_config = parent_rpcs.update_backup_schedule if parent_rpcs.respond_to? :update_backup_schedule @update_backup_schedule = ::Gapic::Config::Method.new update_backup_schedule_config delete_backup_schedule_config = parent_rpcs.delete_backup_schedule if parent_rpcs.respond_to? :delete_backup_schedule @delete_backup_schedule = ::Gapic::Config::Method.new delete_backup_schedule_config list_backup_schedules_config = parent_rpcs.list_backup_schedules if parent_rpcs.respond_to? :list_backup_schedules @list_backup_schedules = ::Gapic::Config::Method.new list_backup_schedules_config yield self if block_given? end end end |
Instance Method Details
#rpcs ⇒ Rpcs
Configurations for individual RPCs
2997 2998 2999 3000 3001 3002 3003 |
# File 'lib/google/cloud/spanner/admin/database/v1/database_admin/rest/client.rb', line 2997 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 |