aws-sdk-servicequotas 1.24.0 → 1.25.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 +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-servicequotas/client.rb +1 -1
- data/lib/aws-sdk-servicequotas/endpoint_provider.rb +38 -101
- data/lib/aws-sdk-servicequotas/types.rb +0 -153
- data/lib/aws-sdk-servicequotas.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b60444f7a9685f251259e534120473677df1afcc4e57711ed4fdb53268834398
|
4
|
+
data.tar.gz: 0736ce150e202c6d8aa141bd05eeff3b5e5941b87a42b51657090f91e6d46640
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f639f21cdd5442d04d2703f7e34cb9622d7f3d3e0924e785a9d5ac77e8c35ea64438d2f43cbbcfced30f793ebfc8ac076cb89f7ab1664311470154d09b3ec65c
|
7
|
+
data.tar.gz: 4e92974b29ae82871c04d91cd1b56cb8a71063e85ee1006a229afb5469744c4e576693f2dfbeebf5e87bb2606f78bd8ec8f220ba32ad322c473f1f16ddfa8ff1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.25.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.24.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -130,4 +137,4 @@ Unreleased Changes
|
|
130
137
|
1.0.0 (2019-06-24)
|
131
138
|
------------------
|
132
139
|
|
133
|
-
* Feature - Initial release of `aws-sdk-servicequotas`.
|
140
|
+
* Feature - Initial release of `aws-sdk-servicequotas`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
@@ -1214,7 +1214,7 @@ module Aws::ServiceQuotas
|
|
1214
1214
|
params: params,
|
1215
1215
|
config: config)
|
1216
1216
|
context[:gem_name] = 'aws-sdk-servicequotas'
|
1217
|
-
context[:gem_version] = '1.
|
1217
|
+
context[:gem_version] = '1.25.0'
|
1218
1218
|
Seahorse::Client::Request.new(handlers, context)
|
1219
1219
|
end
|
1220
1220
|
|
@@ -9,109 +9,46 @@
|
|
9
9
|
|
10
10
|
module Aws::ServiceQuotas
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicequotas-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicequotas.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicequotas-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
39
|
+
end
|
40
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
41
|
+
end
|
42
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
44
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicequotas.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
45
|
+
end
|
46
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
47
|
+
end
|
48
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicequotas.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
49
|
end
|
22
|
-
|
23
|
-
end
|
50
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
51
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
52
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL3NlcnZpY2VxdW90YXMtZmlwcy57UmVnaW9u
|
77
|
-
fS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9w
|
78
|
-
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
|
79
|
-
LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNr
|
80
|
-
IGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
|
81
|
-
cG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
|
82
|
-
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
|
83
|
-
c2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
|
84
|
-
ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
|
85
|
-
eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
|
86
|
-
bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
87
|
-
IjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
88
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbImF3
|
89
|
-
cy11cy1nb3YiLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFy
|
90
|
-
dGl0aW9uUmVzdWx0In0sIm5hbWUiXX1dfV0sImVuZHBvaW50Ijp7InVybCI6
|
91
|
-
Imh0dHBzOi8vc2VydmljZXF1b3Rhcy57UmVnaW9ufS57UGFydGl0aW9uUmVz
|
92
|
-
dWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
|
93
|
-
LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
94
|
-
dCI6eyJ1cmwiOiJodHRwczovL3NlcnZpY2VxdW90YXMtZmlwcy57UmVnaW9u
|
95
|
-
fS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
|
96
|
-
fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25k
|
97
|
-
aXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMg
|
98
|
-
cGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJv
|
99
|
-
ciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
100
|
-
cmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoi
|
101
|
-
dHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
|
102
|
-
cXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7
|
103
|
-
InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJd
|
104
|
-
fV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10s
|
105
|
-
ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc2VydmljZXF1b3Rhcy57UmVn
|
106
|
-
aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
|
107
|
-
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
108
|
-
fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0YWNrIGlzIGVu
|
109
|
-
YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRHVh
|
110
|
-
bFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOltdLCJl
|
111
|
-
bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3NlcnZpY2VxdW90YXMue1JlZ2lv
|
112
|
-
bn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
113
|
-
e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
114
|
-
|
115
|
-
JSON
|
116
53
|
end
|
117
54
|
end
|
@@ -47,15 +47,6 @@ module Aws::ServiceQuotas
|
|
47
47
|
#
|
48
48
|
class AssociateServiceQuotaTemplateResponse < Aws::EmptyStructure; end
|
49
49
|
|
50
|
-
# @note When making an API call, you may pass DeleteServiceQuotaIncreaseRequestFromTemplateRequest
|
51
|
-
# data as a hash:
|
52
|
-
#
|
53
|
-
# {
|
54
|
-
# service_code: "ServiceCode", # required
|
55
|
-
# quota_code: "QuotaCode", # required
|
56
|
-
# aws_region: "AwsRegion", # required
|
57
|
-
# }
|
58
|
-
#
|
59
50
|
# @!attribute [rw] service_code
|
60
51
|
# The service identifier.
|
61
52
|
# @return [String]
|
@@ -137,14 +128,6 @@ module Aws::ServiceQuotas
|
|
137
128
|
include Aws::Structure
|
138
129
|
end
|
139
130
|
|
140
|
-
# @note When making an API call, you may pass GetAWSDefaultServiceQuotaRequest
|
141
|
-
# data as a hash:
|
142
|
-
#
|
143
|
-
# {
|
144
|
-
# service_code: "ServiceCode", # required
|
145
|
-
# quota_code: "QuotaCode", # required
|
146
|
-
# }
|
147
|
-
#
|
148
131
|
# @!attribute [rw] service_code
|
149
132
|
# The service identifier.
|
150
133
|
# @return [String]
|
@@ -194,13 +177,6 @@ module Aws::ServiceQuotas
|
|
194
177
|
include Aws::Structure
|
195
178
|
end
|
196
179
|
|
197
|
-
# @note When making an API call, you may pass GetRequestedServiceQuotaChangeRequest
|
198
|
-
# data as a hash:
|
199
|
-
#
|
200
|
-
# {
|
201
|
-
# request_id: "RequestId", # required
|
202
|
-
# }
|
203
|
-
#
|
204
180
|
# @!attribute [rw] request_id
|
205
181
|
# The ID of the quota increase request.
|
206
182
|
# @return [String]
|
@@ -225,15 +201,6 @@ module Aws::ServiceQuotas
|
|
225
201
|
include Aws::Structure
|
226
202
|
end
|
227
203
|
|
228
|
-
# @note When making an API call, you may pass GetServiceQuotaIncreaseRequestFromTemplateRequest
|
229
|
-
# data as a hash:
|
230
|
-
#
|
231
|
-
# {
|
232
|
-
# service_code: "ServiceCode", # required
|
233
|
-
# quota_code: "QuotaCode", # required
|
234
|
-
# aws_region: "AwsRegion", # required
|
235
|
-
# }
|
236
|
-
#
|
237
204
|
# @!attribute [rw] service_code
|
238
205
|
# The service identifier.
|
239
206
|
# @return [String]
|
@@ -268,14 +235,6 @@ module Aws::ServiceQuotas
|
|
268
235
|
include Aws::Structure
|
269
236
|
end
|
270
237
|
|
271
|
-
# @note When making an API call, you may pass GetServiceQuotaRequest
|
272
|
-
# data as a hash:
|
273
|
-
#
|
274
|
-
# {
|
275
|
-
# service_code: "ServiceCode", # required
|
276
|
-
# quota_code: "QuotaCode", # required
|
277
|
-
# }
|
278
|
-
#
|
279
238
|
# @!attribute [rw] service_code
|
280
239
|
# The service identifier.
|
281
240
|
# @return [String]
|
@@ -344,15 +303,6 @@ module Aws::ServiceQuotas
|
|
344
303
|
include Aws::Structure
|
345
304
|
end
|
346
305
|
|
347
|
-
# @note When making an API call, you may pass ListAWSDefaultServiceQuotasRequest
|
348
|
-
# data as a hash:
|
349
|
-
#
|
350
|
-
# {
|
351
|
-
# service_code: "ServiceCode", # required
|
352
|
-
# next_token: "NextToken",
|
353
|
-
# max_results: 1,
|
354
|
-
# }
|
355
|
-
#
|
356
306
|
# @!attribute [rw] service_code
|
357
307
|
# The service identifier.
|
358
308
|
# @return [String]
|
@@ -395,17 +345,6 @@ module Aws::ServiceQuotas
|
|
395
345
|
include Aws::Structure
|
396
346
|
end
|
397
347
|
|
398
|
-
# @note When making an API call, you may pass ListRequestedServiceQuotaChangeHistoryByQuotaRequest
|
399
|
-
# data as a hash:
|
400
|
-
#
|
401
|
-
# {
|
402
|
-
# service_code: "ServiceCode", # required
|
403
|
-
# quota_code: "QuotaCode", # required
|
404
|
-
# status: "PENDING", # accepts PENDING, CASE_OPENED, APPROVED, DENIED, CASE_CLOSED
|
405
|
-
# next_token: "NextToken",
|
406
|
-
# max_results: 1,
|
407
|
-
# }
|
408
|
-
#
|
409
348
|
# @!attribute [rw] service_code
|
410
349
|
# The service identifier.
|
411
350
|
# @return [String]
|
@@ -458,16 +397,6 @@ module Aws::ServiceQuotas
|
|
458
397
|
include Aws::Structure
|
459
398
|
end
|
460
399
|
|
461
|
-
# @note When making an API call, you may pass ListRequestedServiceQuotaChangeHistoryRequest
|
462
|
-
# data as a hash:
|
463
|
-
#
|
464
|
-
# {
|
465
|
-
# service_code: "ServiceCode",
|
466
|
-
# status: "PENDING", # accepts PENDING, CASE_OPENED, APPROVED, DENIED, CASE_CLOSED
|
467
|
-
# next_token: "NextToken",
|
468
|
-
# max_results: 1,
|
469
|
-
# }
|
470
|
-
#
|
471
400
|
# @!attribute [rw] service_code
|
472
401
|
# The service identifier.
|
473
402
|
# @return [String]
|
@@ -515,16 +444,6 @@ module Aws::ServiceQuotas
|
|
515
444
|
include Aws::Structure
|
516
445
|
end
|
517
446
|
|
518
|
-
# @note When making an API call, you may pass ListServiceQuotaIncreaseRequestsInTemplateRequest
|
519
|
-
# data as a hash:
|
520
|
-
#
|
521
|
-
# {
|
522
|
-
# service_code: "ServiceCode",
|
523
|
-
# aws_region: "AwsRegion",
|
524
|
-
# next_token: "NextToken",
|
525
|
-
# max_results: 1,
|
526
|
-
# }
|
527
|
-
#
|
528
447
|
# @!attribute [rw] service_code
|
529
448
|
# The service identifier.
|
530
449
|
# @return [String]
|
@@ -572,15 +491,6 @@ module Aws::ServiceQuotas
|
|
572
491
|
include Aws::Structure
|
573
492
|
end
|
574
493
|
|
575
|
-
# @note When making an API call, you may pass ListServiceQuotasRequest
|
576
|
-
# data as a hash:
|
577
|
-
#
|
578
|
-
# {
|
579
|
-
# service_code: "ServiceCode", # required
|
580
|
-
# next_token: "NextToken",
|
581
|
-
# max_results: 1,
|
582
|
-
# }
|
583
|
-
#
|
584
494
|
# @!attribute [rw] service_code
|
585
495
|
# The service identifier.
|
586
496
|
# @return [String]
|
@@ -623,14 +533,6 @@ module Aws::ServiceQuotas
|
|
623
533
|
include Aws::Structure
|
624
534
|
end
|
625
535
|
|
626
|
-
# @note When making an API call, you may pass ListServicesRequest
|
627
|
-
# data as a hash:
|
628
|
-
#
|
629
|
-
# {
|
630
|
-
# next_token: "NextToken",
|
631
|
-
# max_results: 1,
|
632
|
-
# }
|
633
|
-
#
|
634
536
|
# @!attribute [rw] next_token
|
635
537
|
# The token for the next page of results.
|
636
538
|
# @return [String]
|
@@ -668,13 +570,6 @@ module Aws::ServiceQuotas
|
|
668
570
|
include Aws::Structure
|
669
571
|
end
|
670
572
|
|
671
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
672
|
-
# data as a hash:
|
673
|
-
#
|
674
|
-
# {
|
675
|
-
# resource_arn: "AmazonResourceName", # required
|
676
|
-
# }
|
677
|
-
#
|
678
573
|
# @!attribute [rw] resource_arn
|
679
574
|
# The Amazon Resource Name (ARN) for the applied quota for which you
|
680
575
|
# want to list tags. You can get this information by using the Service
|
@@ -779,16 +674,6 @@ module Aws::ServiceQuotas
|
|
779
674
|
include Aws::Structure
|
780
675
|
end
|
781
676
|
|
782
|
-
# @note When making an API call, you may pass PutServiceQuotaIncreaseRequestIntoTemplateRequest
|
783
|
-
# data as a hash:
|
784
|
-
#
|
785
|
-
# {
|
786
|
-
# quota_code: "QuotaCode", # required
|
787
|
-
# service_code: "ServiceCode", # required
|
788
|
-
# aws_region: "AwsRegion", # required
|
789
|
-
# desired_value: 1.0, # required
|
790
|
-
# }
|
791
|
-
#
|
792
677
|
# @!attribute [rw] quota_code
|
793
678
|
# The quota identifier.
|
794
679
|
# @return [String]
|
@@ -862,15 +747,6 @@ module Aws::ServiceQuotas
|
|
862
747
|
include Aws::Structure
|
863
748
|
end
|
864
749
|
|
865
|
-
# @note When making an API call, you may pass RequestServiceQuotaIncreaseRequest
|
866
|
-
# data as a hash:
|
867
|
-
#
|
868
|
-
# {
|
869
|
-
# service_code: "ServiceCode", # required
|
870
|
-
# quota_code: "QuotaCode", # required
|
871
|
-
# desired_value: 1.0, # required
|
872
|
-
# }
|
873
|
-
#
|
874
750
|
# @!attribute [rw] service_code
|
875
751
|
# The service identifier.
|
876
752
|
# @return [String]
|
@@ -1163,14 +1039,6 @@ module Aws::ServiceQuotas
|
|
1163
1039
|
|
1164
1040
|
# A complex data type that contains a tag key and tag value.
|
1165
1041
|
#
|
1166
|
-
# @note When making an API call, you may pass Tag
|
1167
|
-
# data as a hash:
|
1168
|
-
#
|
1169
|
-
# {
|
1170
|
-
# key: "TagKey", # required
|
1171
|
-
# value: "TagValue", # required
|
1172
|
-
# }
|
1173
|
-
#
|
1174
1042
|
# @!attribute [rw] key
|
1175
1043
|
# A string that contains a tag key. The string length should be
|
1176
1044
|
# between 1 and 128 characters. Valid characters include a-z, A-Z,
|
@@ -1205,19 +1073,6 @@ module Aws::ServiceQuotas
|
|
1205
1073
|
include Aws::Structure
|
1206
1074
|
end
|
1207
1075
|
|
1208
|
-
# @note When making an API call, you may pass TagResourceRequest
|
1209
|
-
# data as a hash:
|
1210
|
-
#
|
1211
|
-
# {
|
1212
|
-
# resource_arn: "AmazonResourceName", # required
|
1213
|
-
# tags: [ # required
|
1214
|
-
# {
|
1215
|
-
# key: "TagKey", # required
|
1216
|
-
# value: "TagValue", # required
|
1217
|
-
# },
|
1218
|
-
# ],
|
1219
|
-
# }
|
1220
|
-
#
|
1221
1076
|
# @!attribute [rw] resource_arn
|
1222
1077
|
# The Amazon Resource Name (ARN) for the applied quota. You can get
|
1223
1078
|
# this information by using the Service Quotas console, or by listing
|
@@ -1293,14 +1148,6 @@ module Aws::ServiceQuotas
|
|
1293
1148
|
include Aws::Structure
|
1294
1149
|
end
|
1295
1150
|
|
1296
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
1297
|
-
# data as a hash:
|
1298
|
-
#
|
1299
|
-
# {
|
1300
|
-
# resource_arn: "AmazonResourceName", # required
|
1301
|
-
# tag_keys: ["TagKey"], # required
|
1302
|
-
# }
|
1303
|
-
#
|
1304
1151
|
# @!attribute [rw] resource_arn
|
1305
1152
|
# The Amazon Resource Name (ARN) for the applied quota that you want
|
1306
1153
|
# to untag. You can get this information by using the Service Quotas
|
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.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|