aws-sdk-servicequotas 1.34.0 → 1.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-servicequotas/client.rb +70 -46
- data/lib/aws-sdk-servicequotas/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-servicequotas.rb +1 -1
- data/sig/client.rbs +305 -0
- data/sig/errors.rbs +67 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +399 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f5689acb53c25bd765285f187376ac8f16f5736baac028836ecea2056445ea1
|
4
|
+
data.tar.gz: 0d93ca2a68c5b385f2e60418e44860f68ca76550e762da53fb63530b17217359
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 835a795f3e64c75e5c8d5996f61ded698934235926ee35575307a4635dc7e312be7c80cb07e3785ad826bb160faff00e2262f43b6d23c6b7664b41fadedd90cc
|
7
|
+
data.tar.gz: 97aaae93b0b24b80e0a4521055727e6b4c6c8d3049801e1b52c080abf9d0ea6e92cc3c970b42404bb254768f5166943b8b76a74306f1577d3fe8a7a650dd84fb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.36.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.35.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.34.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.36.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::ServiceQuotas
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::ServiceQuotas
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -347,50 +356,65 @@ module Aws::ServiceQuotas
|
|
347
356
|
# @option options [Aws::ServiceQuotas::EndpointProvider] :endpoint_provider
|
348
357
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ServiceQuotas::EndpointParameters`
|
349
358
|
#
|
350
|
-
# @option options [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
359
|
+
# @option options [Float] :http_continue_timeout (1)
|
360
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
361
|
+
# request body. This option has no effect unless the request has "Expect"
|
362
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
363
|
+
# behaviour. This value can safely be set per request on the session.
|
364
|
+
#
|
365
|
+
# @option options [Float] :http_idle_timeout (5)
|
366
|
+
# The number of seconds a connection is allowed to sit idle before it
|
367
|
+
# is considered stale. Stale connections are closed and removed from the
|
368
|
+
# pool before making a request.
|
369
|
+
#
|
370
|
+
# @option options [Float] :http_open_timeout (15)
|
371
|
+
# The default number of seconds to wait for response data.
|
372
|
+
# This value can safely be set per-request on the session.
|
373
|
+
#
|
374
|
+
# @option options [URI::HTTP,String] :http_proxy
|
375
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
376
|
+
#
|
377
|
+
# @option options [Float] :http_read_timeout (60)
|
378
|
+
# The default number of seconds to wait for response data.
|
379
|
+
# This value can safely be set per-request on the session.
|
380
|
+
#
|
381
|
+
# @option options [Boolean] :http_wire_trace (false)
|
382
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_received
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the response body is received. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes received, and the total number of
|
388
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
389
|
+
#
|
390
|
+
# @option options [Proc] :on_chunk_sent
|
391
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
392
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
393
|
+
# the number of bytes read from the body, and the total number of
|
394
|
+
# bytes in the body.
|
395
|
+
#
|
396
|
+
# @option options [Boolean] :raise_response_errors (true)
|
397
|
+
# When `true`, response errors are raised.
|
398
|
+
#
|
399
|
+
# @option options [String] :ssl_ca_bundle
|
400
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
401
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
402
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
403
|
+
#
|
404
|
+
# @option options [String] :ssl_ca_directory
|
405
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
406
|
+
# authority files for verifying peer certificates. If you do
|
407
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
408
|
+
# default will be used if available.
|
375
409
|
#
|
376
|
-
# @option options [
|
377
|
-
#
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
378
412
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# connection.
|
413
|
+
# @option options [Float] :ssl_timeout
|
414
|
+
# Sets the SSL timeout in seconds
|
382
415
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# verifying peer certificates. If you do not pass
|
386
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
387
|
-
# will be used if available.
|
388
|
-
#
|
389
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
390
|
-
# directory that contains the unbundled SSL certificate
|
391
|
-
# authority files for verifying peer certificates. If you do
|
392
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
393
|
-
# system default will be used if available.
|
416
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
417
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
394
418
|
#
|
395
419
|
def initialize(*args)
|
396
420
|
super
|
@@ -1416,7 +1440,7 @@ module Aws::ServiceQuotas
|
|
1416
1440
|
params: params,
|
1417
1441
|
config: config)
|
1418
1442
|
context[:gem_name] = 'aws-sdk-servicequotas'
|
1419
|
-
context[:gem_version] = '1.
|
1443
|
+
context[:gem_version] = '1.36.0'
|
1420
1444
|
Seahorse::Client::Request.new(handlers, context)
|
1421
1445
|
end
|
1422
1446
|
|
@@ -14,6 +14,7 @@ module Aws::ServiceQuotas
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::ServiceQuotas::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,305 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ServiceQuotas
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _AssociateServiceQuotaTemplateResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateServiceQuotaTemplateResponse]
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#associate_service_quota_template-instance_method
|
80
|
+
def associate_service_quota_template: (
|
81
|
+
) -> _AssociateServiceQuotaTemplateResponseSuccess
|
82
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateServiceQuotaTemplateResponseSuccess
|
83
|
+
|
84
|
+
interface _DeleteServiceQuotaIncreaseRequestFromTemplateResponseSuccess
|
85
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceQuotaIncreaseRequestFromTemplateResponse]
|
86
|
+
end
|
87
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#delete_service_quota_increase_request_from_template-instance_method
|
88
|
+
def delete_service_quota_increase_request_from_template: (
|
89
|
+
service_code: ::String,
|
90
|
+
quota_code: ::String,
|
91
|
+
aws_region: ::String
|
92
|
+
) -> _DeleteServiceQuotaIncreaseRequestFromTemplateResponseSuccess
|
93
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceQuotaIncreaseRequestFromTemplateResponseSuccess
|
94
|
+
|
95
|
+
interface _DisassociateServiceQuotaTemplateResponseSuccess
|
96
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateServiceQuotaTemplateResponse]
|
97
|
+
end
|
98
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#disassociate_service_quota_template-instance_method
|
99
|
+
def disassociate_service_quota_template: (
|
100
|
+
) -> _DisassociateServiceQuotaTemplateResponseSuccess
|
101
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateServiceQuotaTemplateResponseSuccess
|
102
|
+
|
103
|
+
interface _GetAWSDefaultServiceQuotaResponseSuccess
|
104
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAWSDefaultServiceQuotaResponse]
|
105
|
+
def quota: () -> Types::ServiceQuota
|
106
|
+
end
|
107
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#get_aws_default_service_quota-instance_method
|
108
|
+
def get_aws_default_service_quota: (
|
109
|
+
service_code: ::String,
|
110
|
+
quota_code: ::String
|
111
|
+
) -> _GetAWSDefaultServiceQuotaResponseSuccess
|
112
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAWSDefaultServiceQuotaResponseSuccess
|
113
|
+
|
114
|
+
interface _GetAssociationForServiceQuotaTemplateResponseSuccess
|
115
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAssociationForServiceQuotaTemplateResponse]
|
116
|
+
def service_quota_template_association_status: () -> ("ASSOCIATED" | "DISASSOCIATED")
|
117
|
+
end
|
118
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#get_association_for_service_quota_template-instance_method
|
119
|
+
def get_association_for_service_quota_template: (
|
120
|
+
) -> _GetAssociationForServiceQuotaTemplateResponseSuccess
|
121
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssociationForServiceQuotaTemplateResponseSuccess
|
122
|
+
|
123
|
+
interface _GetRequestedServiceQuotaChangeResponseSuccess
|
124
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRequestedServiceQuotaChangeResponse]
|
125
|
+
def requested_quota: () -> Types::RequestedServiceQuotaChange
|
126
|
+
end
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#get_requested_service_quota_change-instance_method
|
128
|
+
def get_requested_service_quota_change: (
|
129
|
+
request_id: ::String
|
130
|
+
) -> _GetRequestedServiceQuotaChangeResponseSuccess
|
131
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRequestedServiceQuotaChangeResponseSuccess
|
132
|
+
|
133
|
+
interface _GetServiceQuotaResponseSuccess
|
134
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceQuotaResponse]
|
135
|
+
def quota: () -> Types::ServiceQuota
|
136
|
+
end
|
137
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#get_service_quota-instance_method
|
138
|
+
def get_service_quota: (
|
139
|
+
service_code: ::String,
|
140
|
+
quota_code: ::String,
|
141
|
+
?context_id: ::String
|
142
|
+
) -> _GetServiceQuotaResponseSuccess
|
143
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceQuotaResponseSuccess
|
144
|
+
|
145
|
+
interface _GetServiceQuotaIncreaseRequestFromTemplateResponseSuccess
|
146
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceQuotaIncreaseRequestFromTemplateResponse]
|
147
|
+
def service_quota_increase_request_in_template: () -> Types::ServiceQuotaIncreaseRequestInTemplate
|
148
|
+
end
|
149
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#get_service_quota_increase_request_from_template-instance_method
|
150
|
+
def get_service_quota_increase_request_from_template: (
|
151
|
+
service_code: ::String,
|
152
|
+
quota_code: ::String,
|
153
|
+
aws_region: ::String
|
154
|
+
) -> _GetServiceQuotaIncreaseRequestFromTemplateResponseSuccess
|
155
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceQuotaIncreaseRequestFromTemplateResponseSuccess
|
156
|
+
|
157
|
+
interface _ListAWSDefaultServiceQuotasResponseSuccess
|
158
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAWSDefaultServiceQuotasResponse]
|
159
|
+
def next_token: () -> ::String
|
160
|
+
def quotas: () -> ::Array[Types::ServiceQuota]
|
161
|
+
end
|
162
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#list_aws_default_service_quotas-instance_method
|
163
|
+
def list_aws_default_service_quotas: (
|
164
|
+
service_code: ::String,
|
165
|
+
?next_token: ::String,
|
166
|
+
?max_results: ::Integer
|
167
|
+
) -> _ListAWSDefaultServiceQuotasResponseSuccess
|
168
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAWSDefaultServiceQuotasResponseSuccess
|
169
|
+
|
170
|
+
interface _ListRequestedServiceQuotaChangeHistoryResponseSuccess
|
171
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRequestedServiceQuotaChangeHistoryResponse]
|
172
|
+
def next_token: () -> ::String
|
173
|
+
def requested_quotas: () -> ::Array[Types::RequestedServiceQuotaChange]
|
174
|
+
end
|
175
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#list_requested_service_quota_change_history-instance_method
|
176
|
+
def list_requested_service_quota_change_history: (
|
177
|
+
?service_code: ::String,
|
178
|
+
?status: ("PENDING" | "CASE_OPENED" | "APPROVED" | "DENIED" | "CASE_CLOSED" | "NOT_APPROVED" | "INVALID_REQUEST"),
|
179
|
+
?next_token: ::String,
|
180
|
+
?max_results: ::Integer,
|
181
|
+
?quota_requested_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
182
|
+
) -> _ListRequestedServiceQuotaChangeHistoryResponseSuccess
|
183
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRequestedServiceQuotaChangeHistoryResponseSuccess
|
184
|
+
|
185
|
+
interface _ListRequestedServiceQuotaChangeHistoryByQuotaResponseSuccess
|
186
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRequestedServiceQuotaChangeHistoryByQuotaResponse]
|
187
|
+
def next_token: () -> ::String
|
188
|
+
def requested_quotas: () -> ::Array[Types::RequestedServiceQuotaChange]
|
189
|
+
end
|
190
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#list_requested_service_quota_change_history_by_quota-instance_method
|
191
|
+
def list_requested_service_quota_change_history_by_quota: (
|
192
|
+
service_code: ::String,
|
193
|
+
quota_code: ::String,
|
194
|
+
?status: ("PENDING" | "CASE_OPENED" | "APPROVED" | "DENIED" | "CASE_CLOSED" | "NOT_APPROVED" | "INVALID_REQUEST"),
|
195
|
+
?next_token: ::String,
|
196
|
+
?max_results: ::Integer,
|
197
|
+
?quota_requested_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
198
|
+
) -> _ListRequestedServiceQuotaChangeHistoryByQuotaResponseSuccess
|
199
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRequestedServiceQuotaChangeHistoryByQuotaResponseSuccess
|
200
|
+
|
201
|
+
interface _ListServiceQuotaIncreaseRequestsInTemplateResponseSuccess
|
202
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceQuotaIncreaseRequestsInTemplateResponse]
|
203
|
+
def service_quota_increase_request_in_template_list: () -> ::Array[Types::ServiceQuotaIncreaseRequestInTemplate]
|
204
|
+
def next_token: () -> ::String
|
205
|
+
end
|
206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#list_service_quota_increase_requests_in_template-instance_method
|
207
|
+
def list_service_quota_increase_requests_in_template: (
|
208
|
+
?service_code: ::String,
|
209
|
+
?aws_region: ::String,
|
210
|
+
?next_token: ::String,
|
211
|
+
?max_results: ::Integer
|
212
|
+
) -> _ListServiceQuotaIncreaseRequestsInTemplateResponseSuccess
|
213
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceQuotaIncreaseRequestsInTemplateResponseSuccess
|
214
|
+
|
215
|
+
interface _ListServiceQuotasResponseSuccess
|
216
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceQuotasResponse]
|
217
|
+
def next_token: () -> ::String
|
218
|
+
def quotas: () -> ::Array[Types::ServiceQuota]
|
219
|
+
end
|
220
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#list_service_quotas-instance_method
|
221
|
+
def list_service_quotas: (
|
222
|
+
service_code: ::String,
|
223
|
+
?next_token: ::String,
|
224
|
+
?max_results: ::Integer,
|
225
|
+
?quota_code: ::String,
|
226
|
+
?quota_applied_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
227
|
+
) -> _ListServiceQuotasResponseSuccess
|
228
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceQuotasResponseSuccess
|
229
|
+
|
230
|
+
interface _ListServicesResponseSuccess
|
231
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListServicesResponse]
|
232
|
+
def next_token: () -> ::String
|
233
|
+
def services: () -> ::Array[Types::ServiceInfo]
|
234
|
+
end
|
235
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#list_services-instance_method
|
236
|
+
def list_services: (
|
237
|
+
?next_token: ::String,
|
238
|
+
?max_results: ::Integer
|
239
|
+
) -> _ListServicesResponseSuccess
|
240
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesResponseSuccess
|
241
|
+
|
242
|
+
interface _ListTagsForResourceResponseSuccess
|
243
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
244
|
+
def tags: () -> ::Array[Types::Tag]
|
245
|
+
end
|
246
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#list_tags_for_resource-instance_method
|
247
|
+
def list_tags_for_resource: (
|
248
|
+
resource_arn: ::String
|
249
|
+
) -> _ListTagsForResourceResponseSuccess
|
250
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
251
|
+
|
252
|
+
interface _PutServiceQuotaIncreaseRequestIntoTemplateResponseSuccess
|
253
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutServiceQuotaIncreaseRequestIntoTemplateResponse]
|
254
|
+
def service_quota_increase_request_in_template: () -> Types::ServiceQuotaIncreaseRequestInTemplate
|
255
|
+
end
|
256
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#put_service_quota_increase_request_into_template-instance_method
|
257
|
+
def put_service_quota_increase_request_into_template: (
|
258
|
+
quota_code: ::String,
|
259
|
+
service_code: ::String,
|
260
|
+
aws_region: ::String,
|
261
|
+
desired_value: ::Float
|
262
|
+
) -> _PutServiceQuotaIncreaseRequestIntoTemplateResponseSuccess
|
263
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutServiceQuotaIncreaseRequestIntoTemplateResponseSuccess
|
264
|
+
|
265
|
+
interface _RequestServiceQuotaIncreaseResponseSuccess
|
266
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RequestServiceQuotaIncreaseResponse]
|
267
|
+
def requested_quota: () -> Types::RequestedServiceQuotaChange
|
268
|
+
end
|
269
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#request_service_quota_increase-instance_method
|
270
|
+
def request_service_quota_increase: (
|
271
|
+
service_code: ::String,
|
272
|
+
quota_code: ::String,
|
273
|
+
desired_value: ::Float,
|
274
|
+
?context_id: ::String
|
275
|
+
) -> _RequestServiceQuotaIncreaseResponseSuccess
|
276
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RequestServiceQuotaIncreaseResponseSuccess
|
277
|
+
|
278
|
+
interface _TagResourceResponseSuccess
|
279
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
280
|
+
end
|
281
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#tag_resource-instance_method
|
282
|
+
def tag_resource: (
|
283
|
+
resource_arn: ::String,
|
284
|
+
tags: Array[
|
285
|
+
{
|
286
|
+
key: ::String,
|
287
|
+
value: ::String
|
288
|
+
},
|
289
|
+
]
|
290
|
+
) -> _TagResourceResponseSuccess
|
291
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
292
|
+
|
293
|
+
interface _UntagResourceResponseSuccess
|
294
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
295
|
+
end
|
296
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Client.html#untag_resource-instance_method
|
297
|
+
def untag_resource: (
|
298
|
+
resource_arn: ::String,
|
299
|
+
tag_keys: Array[::String]
|
300
|
+
) -> _UntagResourceResponseSuccess
|
301
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
302
|
+
end
|
303
|
+
end
|
304
|
+
end
|
305
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ServiceQuotas
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AWSServiceAccessNotEnabledException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class DependencyAccessDeniedException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class IllegalArgumentException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class InvalidPaginationTokenException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class InvalidResourceStateException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class NoAvailableOrganizationException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class NoSuchResourceException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class OrganizationNotInAllFeaturesModeException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class QuotaExceededException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
class ResourceAlreadyExistsException < ::Aws::Errors::ServiceError
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
class ServiceException < ::Aws::Errors::ServiceError
|
48
|
+
def message: () -> ::String
|
49
|
+
end
|
50
|
+
class ServiceQuotaTemplateNotInUseException < ::Aws::Errors::ServiceError
|
51
|
+
def message: () -> ::String
|
52
|
+
end
|
53
|
+
class TagPolicyViolationException < ::Aws::Errors::ServiceError
|
54
|
+
def message: () -> ::String
|
55
|
+
end
|
56
|
+
class TemplatesNotAvailableInRegionException < ::Aws::Errors::ServiceError
|
57
|
+
def message: () -> ::String
|
58
|
+
end
|
59
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
60
|
+
def message: () -> ::String
|
61
|
+
end
|
62
|
+
class TooManyTagsException < ::Aws::Errors::ServiceError
|
63
|
+
def message: () -> ::String
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ServiceQuotas
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceQuotas/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> void
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
74
|
+
|
75
|
+
def client: () -> Client
|
76
|
+
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,399 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ServiceQuotas
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AWSServiceAccessNotEnabledException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AccessDeniedException
|
17
|
+
attr_accessor message: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AssociateServiceQuotaTemplateRequest < Aws::EmptyStructure
|
22
|
+
end
|
23
|
+
|
24
|
+
class AssociateServiceQuotaTemplateResponse < Aws::EmptyStructure
|
25
|
+
end
|
26
|
+
|
27
|
+
class DeleteServiceQuotaIncreaseRequestFromTemplateRequest
|
28
|
+
attr_accessor service_code: ::String
|
29
|
+
attr_accessor quota_code: ::String
|
30
|
+
attr_accessor aws_region: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class DeleteServiceQuotaIncreaseRequestFromTemplateResponse < Aws::EmptyStructure
|
35
|
+
end
|
36
|
+
|
37
|
+
class DependencyAccessDeniedException
|
38
|
+
attr_accessor message: ::String
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class DisassociateServiceQuotaTemplateRequest < Aws::EmptyStructure
|
43
|
+
end
|
44
|
+
|
45
|
+
class DisassociateServiceQuotaTemplateResponse < Aws::EmptyStructure
|
46
|
+
end
|
47
|
+
|
48
|
+
class ErrorReason
|
49
|
+
attr_accessor error_code: ("DEPENDENCY_ACCESS_DENIED_ERROR" | "DEPENDENCY_THROTTLING_ERROR" | "DEPENDENCY_SERVICE_ERROR" | "SERVICE_QUOTA_NOT_AVAILABLE_ERROR")
|
50
|
+
attr_accessor error_message: ::String
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class GetAWSDefaultServiceQuotaRequest
|
55
|
+
attr_accessor service_code: ::String
|
56
|
+
attr_accessor quota_code: ::String
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class GetAWSDefaultServiceQuotaResponse
|
61
|
+
attr_accessor quota: Types::ServiceQuota
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class GetAssociationForServiceQuotaTemplateRequest < Aws::EmptyStructure
|
66
|
+
end
|
67
|
+
|
68
|
+
class GetAssociationForServiceQuotaTemplateResponse
|
69
|
+
attr_accessor service_quota_template_association_status: ("ASSOCIATED" | "DISASSOCIATED")
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class GetRequestedServiceQuotaChangeRequest
|
74
|
+
attr_accessor request_id: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class GetRequestedServiceQuotaChangeResponse
|
79
|
+
attr_accessor requested_quota: Types::RequestedServiceQuotaChange
|
80
|
+
SENSITIVE: []
|
81
|
+
end
|
82
|
+
|
83
|
+
class GetServiceQuotaIncreaseRequestFromTemplateRequest
|
84
|
+
attr_accessor service_code: ::String
|
85
|
+
attr_accessor quota_code: ::String
|
86
|
+
attr_accessor aws_region: ::String
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class GetServiceQuotaIncreaseRequestFromTemplateResponse
|
91
|
+
attr_accessor service_quota_increase_request_in_template: Types::ServiceQuotaIncreaseRequestInTemplate
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class GetServiceQuotaRequest
|
96
|
+
attr_accessor service_code: ::String
|
97
|
+
attr_accessor quota_code: ::String
|
98
|
+
attr_accessor context_id: ::String
|
99
|
+
SENSITIVE: []
|
100
|
+
end
|
101
|
+
|
102
|
+
class GetServiceQuotaResponse
|
103
|
+
attr_accessor quota: Types::ServiceQuota
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class IllegalArgumentException
|
108
|
+
attr_accessor message: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class InvalidPaginationTokenException
|
113
|
+
attr_accessor message: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class InvalidResourceStateException
|
118
|
+
attr_accessor message: ::String
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class ListAWSDefaultServiceQuotasRequest
|
123
|
+
attr_accessor service_code: ::String
|
124
|
+
attr_accessor next_token: ::String
|
125
|
+
attr_accessor max_results: ::Integer
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class ListAWSDefaultServiceQuotasResponse
|
130
|
+
attr_accessor next_token: ::String
|
131
|
+
attr_accessor quotas: ::Array[Types::ServiceQuota]
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class ListRequestedServiceQuotaChangeHistoryByQuotaRequest
|
136
|
+
attr_accessor service_code: ::String
|
137
|
+
attr_accessor quota_code: ::String
|
138
|
+
attr_accessor status: ("PENDING" | "CASE_OPENED" | "APPROVED" | "DENIED" | "CASE_CLOSED" | "NOT_APPROVED" | "INVALID_REQUEST")
|
139
|
+
attr_accessor next_token: ::String
|
140
|
+
attr_accessor max_results: ::Integer
|
141
|
+
attr_accessor quota_requested_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class ListRequestedServiceQuotaChangeHistoryByQuotaResponse
|
146
|
+
attr_accessor next_token: ::String
|
147
|
+
attr_accessor requested_quotas: ::Array[Types::RequestedServiceQuotaChange]
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class ListRequestedServiceQuotaChangeHistoryRequest
|
152
|
+
attr_accessor service_code: ::String
|
153
|
+
attr_accessor status: ("PENDING" | "CASE_OPENED" | "APPROVED" | "DENIED" | "CASE_CLOSED" | "NOT_APPROVED" | "INVALID_REQUEST")
|
154
|
+
attr_accessor next_token: ::String
|
155
|
+
attr_accessor max_results: ::Integer
|
156
|
+
attr_accessor quota_requested_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class ListRequestedServiceQuotaChangeHistoryResponse
|
161
|
+
attr_accessor next_token: ::String
|
162
|
+
attr_accessor requested_quotas: ::Array[Types::RequestedServiceQuotaChange]
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class ListServiceQuotaIncreaseRequestsInTemplateRequest
|
167
|
+
attr_accessor service_code: ::String
|
168
|
+
attr_accessor aws_region: ::String
|
169
|
+
attr_accessor next_token: ::String
|
170
|
+
attr_accessor max_results: ::Integer
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class ListServiceQuotaIncreaseRequestsInTemplateResponse
|
175
|
+
attr_accessor service_quota_increase_request_in_template_list: ::Array[Types::ServiceQuotaIncreaseRequestInTemplate]
|
176
|
+
attr_accessor next_token: ::String
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class ListServiceQuotasRequest
|
181
|
+
attr_accessor service_code: ::String
|
182
|
+
attr_accessor next_token: ::String
|
183
|
+
attr_accessor max_results: ::Integer
|
184
|
+
attr_accessor quota_code: ::String
|
185
|
+
attr_accessor quota_applied_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class ListServiceQuotasResponse
|
190
|
+
attr_accessor next_token: ::String
|
191
|
+
attr_accessor quotas: ::Array[Types::ServiceQuota]
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class ListServicesRequest
|
196
|
+
attr_accessor next_token: ::String
|
197
|
+
attr_accessor max_results: ::Integer
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class ListServicesResponse
|
202
|
+
attr_accessor next_token: ::String
|
203
|
+
attr_accessor services: ::Array[Types::ServiceInfo]
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class ListTagsForResourceRequest
|
208
|
+
attr_accessor resource_arn: ::String
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class ListTagsForResourceResponse
|
213
|
+
attr_accessor tags: ::Array[Types::Tag]
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class MetricInfo
|
218
|
+
attr_accessor metric_namespace: ::String
|
219
|
+
attr_accessor metric_name: ::String
|
220
|
+
attr_accessor metric_dimensions: ::Hash[::String, ::String]
|
221
|
+
attr_accessor metric_statistic_recommendation: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class NoAvailableOrganizationException
|
226
|
+
attr_accessor message: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class NoSuchResourceException
|
231
|
+
attr_accessor message: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class OrganizationNotInAllFeaturesModeException
|
236
|
+
attr_accessor message: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class PutServiceQuotaIncreaseRequestIntoTemplateRequest
|
241
|
+
attr_accessor quota_code: ::String
|
242
|
+
attr_accessor service_code: ::String
|
243
|
+
attr_accessor aws_region: ::String
|
244
|
+
attr_accessor desired_value: ::Float
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class PutServiceQuotaIncreaseRequestIntoTemplateResponse
|
249
|
+
attr_accessor service_quota_increase_request_in_template: Types::ServiceQuotaIncreaseRequestInTemplate
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class QuotaContextInfo
|
254
|
+
attr_accessor context_scope: ("RESOURCE" | "ACCOUNT")
|
255
|
+
attr_accessor context_scope_type: ::String
|
256
|
+
attr_accessor context_id: ::String
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class QuotaExceededException
|
261
|
+
attr_accessor message: ::String
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class QuotaPeriod
|
266
|
+
attr_accessor period_value: ::Integer
|
267
|
+
attr_accessor period_unit: ("MICROSECOND" | "MILLISECOND" | "SECOND" | "MINUTE" | "HOUR" | "DAY" | "WEEK")
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class RequestServiceQuotaIncreaseRequest
|
272
|
+
attr_accessor service_code: ::String
|
273
|
+
attr_accessor quota_code: ::String
|
274
|
+
attr_accessor desired_value: ::Float
|
275
|
+
attr_accessor context_id: ::String
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class RequestServiceQuotaIncreaseResponse
|
280
|
+
attr_accessor requested_quota: Types::RequestedServiceQuotaChange
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class RequestedServiceQuotaChange
|
285
|
+
attr_accessor id: ::String
|
286
|
+
attr_accessor case_id: ::String
|
287
|
+
attr_accessor service_code: ::String
|
288
|
+
attr_accessor service_name: ::String
|
289
|
+
attr_accessor quota_code: ::String
|
290
|
+
attr_accessor quota_name: ::String
|
291
|
+
attr_accessor desired_value: ::Float
|
292
|
+
attr_accessor status: ("PENDING" | "CASE_OPENED" | "APPROVED" | "DENIED" | "CASE_CLOSED" | "NOT_APPROVED" | "INVALID_REQUEST")
|
293
|
+
attr_accessor created: ::Time
|
294
|
+
attr_accessor last_updated: ::Time
|
295
|
+
attr_accessor requester: ::String
|
296
|
+
attr_accessor quota_arn: ::String
|
297
|
+
attr_accessor global_quota: bool
|
298
|
+
attr_accessor unit: ::String
|
299
|
+
attr_accessor quota_requested_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
300
|
+
attr_accessor quota_context: Types::QuotaContextInfo
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class ResourceAlreadyExistsException
|
305
|
+
attr_accessor message: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class ServiceException
|
310
|
+
attr_accessor message: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class ServiceInfo
|
315
|
+
attr_accessor service_code: ::String
|
316
|
+
attr_accessor service_name: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class ServiceQuota
|
321
|
+
attr_accessor service_code: ::String
|
322
|
+
attr_accessor service_name: ::String
|
323
|
+
attr_accessor quota_arn: ::String
|
324
|
+
attr_accessor quota_code: ::String
|
325
|
+
attr_accessor quota_name: ::String
|
326
|
+
attr_accessor value: ::Float
|
327
|
+
attr_accessor unit: ::String
|
328
|
+
attr_accessor adjustable: bool
|
329
|
+
attr_accessor global_quota: bool
|
330
|
+
attr_accessor usage_metric: Types::MetricInfo
|
331
|
+
attr_accessor period: Types::QuotaPeriod
|
332
|
+
attr_accessor error_reason: Types::ErrorReason
|
333
|
+
attr_accessor quota_applied_at_level: ("ACCOUNT" | "RESOURCE" | "ALL")
|
334
|
+
attr_accessor quota_context: Types::QuotaContextInfo
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class ServiceQuotaIncreaseRequestInTemplate
|
339
|
+
attr_accessor service_code: ::String
|
340
|
+
attr_accessor service_name: ::String
|
341
|
+
attr_accessor quota_code: ::String
|
342
|
+
attr_accessor quota_name: ::String
|
343
|
+
attr_accessor desired_value: ::Float
|
344
|
+
attr_accessor aws_region: ::String
|
345
|
+
attr_accessor unit: ::String
|
346
|
+
attr_accessor global_quota: bool
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class ServiceQuotaTemplateNotInUseException
|
351
|
+
attr_accessor message: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class Tag
|
356
|
+
attr_accessor key: ::String
|
357
|
+
attr_accessor value: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class TagPolicyViolationException
|
362
|
+
attr_accessor message: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class TagResourceRequest
|
367
|
+
attr_accessor resource_arn: ::String
|
368
|
+
attr_accessor tags: ::Array[Types::Tag]
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class TagResourceResponse < Aws::EmptyStructure
|
373
|
+
end
|
374
|
+
|
375
|
+
class TemplatesNotAvailableInRegionException
|
376
|
+
attr_accessor message: ::String
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class TooManyRequestsException
|
381
|
+
attr_accessor message: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class TooManyTagsException
|
386
|
+
attr_accessor message: ::String
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class UntagResourceRequest
|
391
|
+
attr_accessor resource_arn: ::String
|
392
|
+
attr_accessor tag_keys: ::Array[::String]
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
397
|
+
end
|
398
|
+
end
|
399
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ServiceQuotas
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-servicequotas
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-servicequotas/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-servicequotas/resource.rb
|
68
68
|
- lib/aws-sdk-servicequotas/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-servicequotas
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-servicequotas/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Service Quotas
|
94
99
|
test_files: []
|