aws-sdk-servicequotas 1.4.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 62c7e88b1fdd0f8272527d100b302f27d45d7ba0
4
- data.tar.gz: def3ef916834c127304170d663fbe28b17ffc956
2
+ SHA256:
3
+ metadata.gz: bd46da5abe31870c1340954e7b835e85dd4de0269d634714b2e6d69ccac3f690
4
+ data.tar.gz: aaa4268e8f7c6461d545c9878d7b8005813cecc4056fd8a69ca089b1ba39c8d6
5
5
  SHA512:
6
- metadata.gz: 4930e159267d6ebf87b67f1622cf906ade069c76c52891f12d824b0926ac38fa8e3f50693a1a70f0c7779efe4db6087ca99f3ad7f524fde9b78b866fe8ea0138
7
- data.tar.gz: bd4cb5af837a384148a2681fcfe2051a3be16e146b9e4a5ac960730528983528119ae180553e8fcdc622cb4becb8f304ff220306c4aa2b23a51ea0aa4046b4f0
6
+ metadata.gz: 0af52c5dc57b64c776e818892afb3a7dd26abdcc1a87e81495e2848efff473837b84c61501423dfd9916dcc50f9051dbf2c381fe368394998e99a078054c9d52
7
+ data.tar.gz: 05fd6077a3b5f8190cf65cbdae935394387c5b28b60fb7e52885f6950cd57cbdf0156a18a9cd61dd9e681141f6d511f76f3e4628e906e27e270f198bc28914f2
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-servicequotas/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::ServiceQuotas
47
49
 
48
- GEM_VERSION = '1.4.0'
50
+ GEM_VERSION = '1.9.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:servicequotas)
32
35
  module Aws::ServiceQuotas
33
36
  # An API client for ServiceQuotas. To construct a client, you need to configure a `:region` and `:credentials`.
34
37
  #
35
- # client = Aws::ServiceQuotas::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
38
+ # client = Aws::ServiceQuotas::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
40
43
  #
41
44
  # For details on configuring region and credentials see
42
45
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -69,6 +72,7 @@ module Aws::ServiceQuotas
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
78
 
@@ -81,13 +85,28 @@ module Aws::ServiceQuotas
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,15 +116,15 @@ module Aws::ServiceQuotas
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
107
126
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
127
+ # a default `:region` is searched for in the following locations:
109
128
  #
110
129
  # * `Aws.config[:region]`
111
130
  # * `ENV['AWS_REGION']`
@@ -161,7 +180,7 @@ module Aws::ServiceQuotas
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +195,7 @@ module Aws::ServiceQuotas
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -229,15 +248,19 @@ module Aws::ServiceQuotas
229
248
  #
230
249
  # @option options [String] :retry_mode ("legacy")
231
250
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
251
+ #
252
+ # * `legacy` - The pre-existing retry behavior. This is default value if
253
+ # no retry mode is provided.
254
+ #
255
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
256
+ # This includes support for retry quotas, which limit the number of
257
+ # unsuccessful retries a client can make.
258
+ #
259
+ # * `adaptive` - An experimental retry mode that includes all the
260
+ # functionality of `standard` mode along with automatic client side
261
+ # throttling. This is a provisional mode that may change behavior
262
+ # in the future.
263
+ #
241
264
  #
242
265
  # @option options [String] :secret_access_key
243
266
  #
@@ -275,8 +298,7 @@ module Aws::ServiceQuotas
275
298
  #
276
299
  # @option options [Integer] :http_read_timeout (60) The default
277
300
  # number of seconds to wait for response data. This value can
278
- # safely be set
279
- # per-request on the session yielded by {#session_for}.
301
+ # safely be set per-request on the session.
280
302
  #
281
303
  # @option options [Float] :http_idle_timeout (5) The number of
282
304
  # seconds a connection is allowed to sit idle before it is
@@ -288,7 +310,7 @@ module Aws::ServiceQuotas
288
310
  # request body. This option has no effect unless the request has
289
311
  # "Expect" header set to "100-continue". Defaults to `nil` which
290
312
  # disables this behaviour. This value can safely be set per
291
- # request on the session yielded by {#session_for}.
313
+ # request on the session.
292
314
  #
293
315
  # @option options [Boolean] :http_wire_trace (false) When `true`,
294
316
  # HTTP debug output will be sent to the `:logger`.
@@ -643,6 +665,8 @@ module Aws::ServiceQuotas
643
665
  # * {Types::ListAWSDefaultServiceQuotasResponse#next_token #next_token} => String
644
666
  # * {Types::ListAWSDefaultServiceQuotasResponse#quotas #quotas} => Array<Types::ServiceQuota>
645
667
  #
668
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
669
+ #
646
670
  # @example Request syntax with placeholder values
647
671
  #
648
672
  # resp = client.list_aws_default_service_quotas({
@@ -713,6 +737,8 @@ module Aws::ServiceQuotas
713
737
  # * {Types::ListRequestedServiceQuotaChangeHistoryResponse#next_token #next_token} => String
714
738
  # * {Types::ListRequestedServiceQuotaChangeHistoryResponse#requested_quotas #requested_quotas} => Array<Types::RequestedServiceQuotaChange>
715
739
  #
740
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
741
+ #
716
742
  # @example Request syntax with placeholder values
717
743
  #
718
744
  # resp = client.list_requested_service_quota_change_history({
@@ -787,6 +813,8 @@ module Aws::ServiceQuotas
787
813
  # * {Types::ListRequestedServiceQuotaChangeHistoryByQuotaResponse#next_token #next_token} => String
788
814
  # * {Types::ListRequestedServiceQuotaChangeHistoryByQuotaResponse#requested_quotas #requested_quotas} => Array<Types::RequestedServiceQuotaChange>
789
815
  #
816
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
817
+ #
790
818
  # @example Request syntax with placeholder values
791
819
  #
792
820
  # resp = client.list_requested_service_quota_change_history_by_quota({
@@ -856,6 +884,8 @@ module Aws::ServiceQuotas
856
884
  # * {Types::ListServiceQuotaIncreaseRequestsInTemplateResponse#service_quota_increase_request_in_template_list #service_quota_increase_request_in_template_list} => Array<Types::ServiceQuotaIncreaseRequestInTemplate>
857
885
  # * {Types::ListServiceQuotaIncreaseRequestsInTemplateResponse#next_token #next_token} => String
858
886
  #
887
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
888
+ #
859
889
  # @example Request syntax with placeholder values
860
890
  #
861
891
  # resp = client.list_service_quota_increase_requests_in_template({
@@ -926,6 +956,8 @@ module Aws::ServiceQuotas
926
956
  # * {Types::ListServiceQuotasResponse#next_token #next_token} => String
927
957
  # * {Types::ListServiceQuotasResponse#quotas #quotas} => Array<Types::ServiceQuota>
928
958
  #
959
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
960
+ #
929
961
  # @example Request syntax with placeholder values
930
962
  #
931
963
  # resp = client.list_service_quotas({
@@ -992,6 +1024,8 @@ module Aws::ServiceQuotas
992
1024
  # * {Types::ListServicesResponse#next_token #next_token} => String
993
1025
  # * {Types::ListServicesResponse#services #services} => Array<Types::ServiceInfo>
994
1026
  #
1027
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1028
+ #
995
1029
  # @example Request syntax with placeholder values
996
1030
  #
997
1031
  # resp = client.list_services({
@@ -1130,7 +1164,7 @@ module Aws::ServiceQuotas
1130
1164
  params: params,
1131
1165
  config: config)
1132
1166
  context[:gem_name] = 'aws-sdk-servicequotas'
1133
- context[:gem_version] = '1.4.0'
1167
+ context[:gem_version] = '1.9.0'
1134
1168
  Seahorse::Client::Request.new(handlers, context)
1135
1169
  end
1136
1170
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::ServiceQuotas
9
- # This class provides a resource oriented interface for ServiceQuotas.
10
- # To create a resource object:
11
- # resource = Aws::ServiceQuotas::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::ServiceQuotas::Client.new(region: 'us-west-2')
15
- # resource = Aws::ServiceQuotas::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -19,6 +21,7 @@ module Aws::ServiceQuotas
19
21
  #
20
22
  class AWSServiceAccessNotEnabledException < Struct.new(
21
23
  :message)
24
+ SENSITIVE = []
22
25
  include Aws::Structure
23
26
  end
24
27
 
@@ -31,6 +34,7 @@ module Aws::ServiceQuotas
31
34
  #
32
35
  class AccessDeniedException < Struct.new(
33
36
  :message)
37
+ SENSITIVE = []
34
38
  include Aws::Structure
35
39
  end
36
40
 
@@ -71,6 +75,7 @@ module Aws::ServiceQuotas
71
75
  :service_code,
72
76
  :quota_code,
73
77
  :aws_region)
78
+ SENSITIVE = []
74
79
  include Aws::Structure
75
80
  end
76
81
 
@@ -88,6 +93,7 @@ module Aws::ServiceQuotas
88
93
  #
89
94
  class DependencyAccessDeniedException < Struct.new(
90
95
  :message)
96
+ SENSITIVE = []
91
97
  include Aws::Structure
92
98
  end
93
99
 
@@ -130,6 +136,7 @@ module Aws::ServiceQuotas
130
136
  class ErrorReason < Struct.new(
131
137
  :error_code,
132
138
  :error_message)
139
+ SENSITIVE = []
133
140
  include Aws::Structure
134
141
  end
135
142
 
@@ -154,6 +161,7 @@ module Aws::ServiceQuotas
154
161
  class GetAWSDefaultServiceQuotaRequest < Struct.new(
155
162
  :service_code,
156
163
  :quota_code)
164
+ SENSITIVE = []
157
165
  include Aws::Structure
158
166
  end
159
167
 
@@ -166,6 +174,7 @@ module Aws::ServiceQuotas
166
174
  #
167
175
  class GetAWSDefaultServiceQuotaResponse < Struct.new(
168
176
  :quota)
177
+ SENSITIVE = []
169
178
  include Aws::Structure
170
179
  end
171
180
 
@@ -185,6 +194,7 @@ module Aws::ServiceQuotas
185
194
  #
186
195
  class GetAssociationForServiceQuotaTemplateResponse < Struct.new(
187
196
  :service_quota_template_association_status)
197
+ SENSITIVE = []
188
198
  include Aws::Structure
189
199
  end
190
200
 
@@ -203,6 +213,7 @@ module Aws::ServiceQuotas
203
213
  #
204
214
  class GetRequestedServiceQuotaChangeRequest < Struct.new(
205
215
  :request_id)
216
+ SENSITIVE = []
206
217
  include Aws::Structure
207
218
  end
208
219
 
@@ -215,6 +226,7 @@ module Aws::ServiceQuotas
215
226
  #
216
227
  class GetRequestedServiceQuotaChangeResponse < Struct.new(
217
228
  :requested_quota)
229
+ SENSITIVE = []
218
230
  include Aws::Structure
219
231
  end
220
232
 
@@ -245,6 +257,7 @@ module Aws::ServiceQuotas
245
257
  :service_code,
246
258
  :quota_code,
247
259
  :aws_region)
260
+ SENSITIVE = []
248
261
  include Aws::Structure
249
262
  end
250
263
 
@@ -256,6 +269,7 @@ module Aws::ServiceQuotas
256
269
  #
257
270
  class GetServiceQuotaIncreaseRequestFromTemplateResponse < Struct.new(
258
271
  :service_quota_increase_request_in_template)
272
+ SENSITIVE = []
259
273
  include Aws::Structure
260
274
  end
261
275
 
@@ -280,6 +294,7 @@ module Aws::ServiceQuotas
280
294
  class GetServiceQuotaRequest < Struct.new(
281
295
  :service_code,
282
296
  :quota_code)
297
+ SENSITIVE = []
283
298
  include Aws::Structure
284
299
  end
285
300
 
@@ -292,6 +307,7 @@ module Aws::ServiceQuotas
292
307
  #
293
308
  class GetServiceQuotaResponse < Struct.new(
294
309
  :quota)
310
+ SENSITIVE = []
295
311
  include Aws::Structure
296
312
  end
297
313
 
@@ -304,6 +320,7 @@ module Aws::ServiceQuotas
304
320
  #
305
321
  class IllegalArgumentException < Struct.new(
306
322
  :message)
323
+ SENSITIVE = []
307
324
  include Aws::Structure
308
325
  end
309
326
 
@@ -316,6 +333,7 @@ module Aws::ServiceQuotas
316
333
  #
317
334
  class InvalidPaginationTokenException < Struct.new(
318
335
  :message)
336
+ SENSITIVE = []
319
337
  include Aws::Structure
320
338
  end
321
339
 
@@ -328,6 +346,7 @@ module Aws::ServiceQuotas
328
346
  #
329
347
  class InvalidResourceStateException < Struct.new(
330
348
  :message)
349
+ SENSITIVE = []
331
350
  include Aws::Structure
332
351
  end
333
352
 
@@ -374,6 +393,7 @@ module Aws::ServiceQuotas
374
393
  :service_code,
375
394
  :next_token,
376
395
  :max_results)
396
+ SENSITIVE = []
377
397
  include Aws::Structure
378
398
  end
379
399
 
@@ -394,6 +414,7 @@ module Aws::ServiceQuotas
394
414
  class ListAWSDefaultServiceQuotasResponse < Struct.new(
395
415
  :next_token,
396
416
  :quotas)
417
+ SENSITIVE = []
397
418
  include Aws::Structure
398
419
  end
399
420
 
@@ -447,6 +468,7 @@ module Aws::ServiceQuotas
447
468
  :status,
448
469
  :next_token,
449
470
  :max_results)
471
+ SENSITIVE = []
450
472
  include Aws::Structure
451
473
  end
452
474
 
@@ -470,6 +492,7 @@ module Aws::ServiceQuotas
470
492
  class ListRequestedServiceQuotaChangeHistoryByQuotaResponse < Struct.new(
471
493
  :next_token,
472
494
  :requested_quotas)
495
+ SENSITIVE = []
473
496
  include Aws::Structure
474
497
  end
475
498
 
@@ -517,6 +540,7 @@ module Aws::ServiceQuotas
517
540
  :status,
518
541
  :next_token,
519
542
  :max_results)
543
+ SENSITIVE = []
520
544
  include Aws::Structure
521
545
  end
522
546
 
@@ -540,6 +564,7 @@ module Aws::ServiceQuotas
540
564
  class ListRequestedServiceQuotaChangeHistoryResponse < Struct.new(
541
565
  :next_token,
542
566
  :requested_quotas)
567
+ SENSITIVE = []
543
568
  include Aws::Structure
544
569
  end
545
570
 
@@ -588,6 +613,7 @@ module Aws::ServiceQuotas
588
613
  :aws_region,
589
614
  :next_token,
590
615
  :max_results)
616
+ SENSITIVE = []
591
617
  include Aws::Structure
592
618
  end
593
619
 
@@ -612,6 +638,7 @@ module Aws::ServiceQuotas
612
638
  class ListServiceQuotaIncreaseRequestsInTemplateResponse < Struct.new(
613
639
  :service_quota_increase_request_in_template_list,
614
640
  :next_token)
641
+ SENSITIVE = []
615
642
  include Aws::Structure
616
643
  end
617
644
 
@@ -654,6 +681,7 @@ module Aws::ServiceQuotas
654
681
  :service_code,
655
682
  :next_token,
656
683
  :max_results)
684
+ SENSITIVE = []
657
685
  include Aws::Structure
658
686
  end
659
687
 
@@ -678,6 +706,7 @@ module Aws::ServiceQuotas
678
706
  class ListServiceQuotasResponse < Struct.new(
679
707
  :next_token,
680
708
  :quotas)
709
+ SENSITIVE = []
681
710
  include Aws::Structure
682
711
  end
683
712
 
@@ -713,6 +742,7 @@ module Aws::ServiceQuotas
713
742
  class ListServicesRequest < Struct.new(
714
743
  :next_token,
715
744
  :max_results)
745
+ SENSITIVE = []
716
746
  include Aws::Structure
717
747
  end
718
748
 
@@ -736,6 +766,7 @@ module Aws::ServiceQuotas
736
766
  class ListServicesResponse < Struct.new(
737
767
  :next_token,
738
768
  :services)
769
+ SENSITIVE = []
739
770
  include Aws::Structure
740
771
  end
741
772
 
@@ -774,6 +805,7 @@ module Aws::ServiceQuotas
774
805
  :metric_name,
775
806
  :metric_dimensions,
776
807
  :metric_statistic_recommendation)
808
+ SENSITIVE = []
777
809
  include Aws::Structure
778
810
  end
779
811
 
@@ -786,6 +818,7 @@ module Aws::ServiceQuotas
786
818
  #
787
819
  class NoAvailableOrganizationException < Struct.new(
788
820
  :message)
821
+ SENSITIVE = []
789
822
  include Aws::Structure
790
823
  end
791
824
 
@@ -798,6 +831,7 @@ module Aws::ServiceQuotas
798
831
  #
799
832
  class NoSuchResourceException < Struct.new(
800
833
  :message)
834
+ SENSITIVE = []
801
835
  include Aws::Structure
802
836
  end
803
837
 
@@ -815,6 +849,7 @@ module Aws::ServiceQuotas
815
849
  #
816
850
  class OrganizationNotInAllFeaturesModeException < Struct.new(
817
851
  :message)
852
+ SENSITIVE = []
818
853
  include Aws::Structure
819
854
  end
820
855
 
@@ -851,6 +886,7 @@ module Aws::ServiceQuotas
851
886
  :service_code,
852
887
  :aws_region,
853
888
  :desired_value)
889
+ SENSITIVE = []
854
890
  include Aws::Structure
855
891
  end
856
892
 
@@ -863,6 +899,7 @@ module Aws::ServiceQuotas
863
899
  #
864
900
  class PutServiceQuotaIncreaseRequestIntoTemplateResponse < Struct.new(
865
901
  :service_quota_increase_request_in_template)
902
+ SENSITIVE = []
866
903
  include Aws::Structure
867
904
  end
868
905
 
@@ -877,6 +914,7 @@ module Aws::ServiceQuotas
877
914
  #
878
915
  class QuotaExceededException < Struct.new(
879
916
  :message)
917
+ SENSITIVE = []
880
918
  include Aws::Structure
881
919
  end
882
920
 
@@ -895,6 +933,7 @@ module Aws::ServiceQuotas
895
933
  class QuotaPeriod < Struct.new(
896
934
  :period_value,
897
935
  :period_unit)
936
+ SENSITIVE = []
898
937
  include Aws::Structure
899
938
  end
900
939
 
@@ -925,6 +964,7 @@ module Aws::ServiceQuotas
925
964
  :service_code,
926
965
  :quota_code,
927
966
  :desired_value)
967
+ SENSITIVE = []
928
968
  include Aws::Structure
929
969
  end
930
970
 
@@ -936,6 +976,7 @@ module Aws::ServiceQuotas
936
976
  #
937
977
  class RequestServiceQuotaIncreaseResponse < Struct.new(
938
978
  :requested_quota)
979
+ SENSITIVE = []
939
980
  include Aws::Structure
940
981
  end
941
982
 
@@ -1017,6 +1058,7 @@ module Aws::ServiceQuotas
1017
1058
  :quota_arn,
1018
1059
  :global_quota,
1019
1060
  :unit)
1061
+ SENSITIVE = []
1020
1062
  include Aws::Structure
1021
1063
  end
1022
1064
 
@@ -1029,6 +1071,7 @@ module Aws::ServiceQuotas
1029
1071
  #
1030
1072
  class ResourceAlreadyExistsException < Struct.new(
1031
1073
  :message)
1074
+ SENSITIVE = []
1032
1075
  include Aws::Structure
1033
1076
  end
1034
1077
 
@@ -1041,6 +1084,7 @@ module Aws::ServiceQuotas
1041
1084
  #
1042
1085
  class ServiceException < Struct.new(
1043
1086
  :message)
1087
+ SENSITIVE = []
1044
1088
  include Aws::Structure
1045
1089
  end
1046
1090
 
@@ -1061,6 +1105,7 @@ module Aws::ServiceQuotas
1061
1105
  class ServiceInfo < Struct.new(
1062
1106
  :service_code,
1063
1107
  :service_name)
1108
+ SENSITIVE = []
1064
1109
  include Aws::Structure
1065
1110
  end
1066
1111
 
@@ -1131,6 +1176,7 @@ module Aws::ServiceQuotas
1131
1176
  :usage_metric,
1132
1177
  :period,
1133
1178
  :error_reason)
1179
+ SENSITIVE = []
1134
1180
  include Aws::Structure
1135
1181
  end
1136
1182
 
@@ -1183,6 +1229,7 @@ module Aws::ServiceQuotas
1183
1229
  :aws_region,
1184
1230
  :unit,
1185
1231
  :global_quota)
1232
+ SENSITIVE = []
1186
1233
  include Aws::Structure
1187
1234
  end
1188
1235
 
@@ -1197,6 +1244,7 @@ module Aws::ServiceQuotas
1197
1244
  #
1198
1245
  class ServiceQuotaTemplateNotInUseException < Struct.new(
1199
1246
  :message)
1247
+ SENSITIVE = []
1200
1248
  include Aws::Structure
1201
1249
  end
1202
1250
 
@@ -1210,6 +1258,7 @@ module Aws::ServiceQuotas
1210
1258
  #
1211
1259
  class TemplatesNotAvailableInRegionException < Struct.new(
1212
1260
  :message)
1261
+ SENSITIVE = []
1213
1262
  include Aws::Structure
1214
1263
  end
1215
1264
 
@@ -1223,6 +1272,7 @@ module Aws::ServiceQuotas
1223
1272
  #
1224
1273
  class TooManyRequestsException < Struct.new(
1225
1274
  :message)
1275
+ SENSITIVE = []
1226
1276
  include Aws::Structure
1227
1277
  end
1228
1278
 
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.0
4
+ version: 1.9.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: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-08-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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - Service Quotas