aws-sdk-servicequotas 1.5.0 → 1.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83a12c00e55f12897a3dbc20000dba3eb9fb6fec567020ce584f25b65405652c
4
- data.tar.gz: 40b38bd48a7edca2c11dd154104b33ecf6e48c9a6fbcdae9929fc2eea5a8bf14
3
+ metadata.gz: 984a7c4bc1ea5b8bd5ff5848feaad4c69384612416e6650471c4145bda058162
4
+ data.tar.gz: 9ae03b9c2dd7cb3f9e6026607c78667e16fa2bc0539645de186e9b7ccdd9fd89
5
5
  SHA512:
6
- metadata.gz: 481dce02b75390e37f6a4a13ded495a60b0cc53e48a49d4ca865bb0af93ebc8d9ed7411de6f2a67200c800ac58429bcb73a4af9bd5df42ac57741cb4d439149f
7
- data.tar.gz: aa305147f04ab4b2a0f91f38fb63bd1a69ad05e85ea67a3bebb09a5ee49778160eacf4632913ab7f2b4d1e2b8245e4a66b1dc3d32167483eab938cfed173c308
6
+ metadata.gz: 03a14972e3b513a6ecb32d736f6ec4abb4b75c666d759b7c1a77e42ee5a86bd230d570f22adc3c8952bbb78fc991958a027993a024239b385824e94d49a88b6a
7
+ data.tar.gz: c07897a7b7f5b7e15b5cd89d00edef7ace3b1f081c1f16ba95c7196ea1b790fa75f632e95cc1c06118759ad2f22017cbb64e4a5f5bab71c0f50bdf01fe100193
@@ -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:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-servicequotas/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::ServiceQuotas
47
50
 
48
- GEM_VERSION = '1.5.0'
51
+ GEM_VERSION = '1.10.0'
49
52
 
50
53
  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
 
@@ -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,10 +116,10 @@ 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
@@ -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 a valid 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.
@@ -1145,7 +1164,7 @@ module Aws::ServiceQuotas
1145
1164
  params: params,
1146
1165
  config: config)
1147
1166
  context[:gem_name] = 'aws-sdk-servicequotas'
1148
- context[:gem_version] = '1.5.0'
1167
+ context[:gem_version] = '1.10.0'
1149
1168
  Seahorse::Client::Request.new(handlers, context)
1150
1169
  end
1151
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:
@@ -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.5.0
4
+ version: 1.10.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-05-07 00:00:00.000000000 Z
11
+ date: 2020-09-15 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