aws-sdk-autoscalingplans 1.21.0 → 1.26.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 +5 -5
- data/lib/aws-sdk-autoscalingplans.rb +4 -2
- data/lib/aws-sdk-autoscalingplans/client.rb +50 -28
- data/lib/aws-sdk-autoscalingplans/client_api.rb +2 -0
- data/lib/aws-sdk-autoscalingplans/errors.rb +2 -0
- data/lib/aws-sdk-autoscalingplans/resource.rb +3 -7
- data/lib/aws-sdk-autoscalingplans/types.rb +31 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 680ae64f5b6260f01661ce2d00b44e385917b453cac2a19dd06d264def828528
|
4
|
+
data.tar.gz: 5b6c020b40fadb8e27d4cda13c880356d7357e17b4cf1116b0b6568faba27d59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55eba69a722ce1c4b37fe10fc7f981160e6e345096f7f0ff94baaccd7d084453d34e9698926a69174c19e32aae53dd691f775cb580c0ab2b7a747490fe0b6178
|
7
|
+
data.tar.gz: be47130eb4579af26e0da58477eb2377d8e649c99b1da3e73068990966d314ffc1dba2ffdf9a4b7ac84d030e36baf9ff6efa7fdba3d7037bcf55cf48b7d01e23
|
@@ -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-autoscalingplans/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::AutoScalingPlans
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.26.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(:autoscalingplans)
|
|
32
35
|
module Aws::AutoScalingPlans
|
33
36
|
# An API client for AutoScalingPlans. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::AutoScalingPlans::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::AutoScalingPlans
|
|
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::AutoScalingPlans
|
|
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::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
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::AutoScalingPlans
|
|
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
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
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
|
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::AutoScalingPlans
|
|
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
|
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::AutoScalingPlans
|
|
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.
|
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::AutoScalingPlans
|
|
229
248
|
#
|
230
249
|
# @option options [String] :retry_mode ("legacy")
|
231
250
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
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::AutoScalingPlans
|
|
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::AutoScalingPlans
|
|
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
|
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`.
|
@@ -844,7 +866,7 @@ module Aws::AutoScalingPlans
|
|
844
866
|
params: params,
|
845
867
|
config: config)
|
846
868
|
context[:gem_name] = 'aws-sdk-autoscalingplans'
|
847
|
-
context[:gem_version] = '1.
|
869
|
+
context[:gem_version] = '1.26.0'
|
848
870
|
Seahorse::Client::Request.new(handlers, context)
|
849
871
|
end
|
850
872
|
|
@@ -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::AutoScalingPlans
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::AutoScalingPlans::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::AutoScalingPlans::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::AutoScalingPlans::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:
|
@@ -36,6 +38,7 @@ module Aws::AutoScalingPlans
|
|
36
38
|
class ApplicationSource < Struct.new(
|
37
39
|
:cloud_formation_stack_arn,
|
38
40
|
:tag_filters)
|
41
|
+
SENSITIVE = []
|
39
42
|
include Aws::Structure
|
40
43
|
end
|
41
44
|
|
@@ -49,6 +52,7 @@ module Aws::AutoScalingPlans
|
|
49
52
|
#
|
50
53
|
class ConcurrentUpdateException < Struct.new(
|
51
54
|
:message)
|
55
|
+
SENSITIVE = []
|
52
56
|
include Aws::Structure
|
53
57
|
end
|
54
58
|
|
@@ -144,6 +148,7 @@ module Aws::AutoScalingPlans
|
|
144
148
|
:scaling_plan_name,
|
145
149
|
:application_source,
|
146
150
|
:scaling_instructions)
|
151
|
+
SENSITIVE = []
|
147
152
|
include Aws::Structure
|
148
153
|
end
|
149
154
|
|
@@ -157,6 +162,7 @@ module Aws::AutoScalingPlans
|
|
157
162
|
#
|
158
163
|
class CreateScalingPlanResponse < Struct.new(
|
159
164
|
:scaling_plan_version)
|
165
|
+
SENSITIVE = []
|
160
166
|
include Aws::Structure
|
161
167
|
end
|
162
168
|
|
@@ -237,6 +243,7 @@ module Aws::AutoScalingPlans
|
|
237
243
|
:dimensions,
|
238
244
|
:statistic,
|
239
245
|
:unit)
|
246
|
+
SENSITIVE = []
|
240
247
|
include Aws::Structure
|
241
248
|
end
|
242
249
|
|
@@ -312,6 +319,7 @@ module Aws::AutoScalingPlans
|
|
312
319
|
:dimensions,
|
313
320
|
:statistic,
|
314
321
|
:unit)
|
322
|
+
SENSITIVE = []
|
315
323
|
include Aws::Structure
|
316
324
|
end
|
317
325
|
|
@@ -331,6 +339,7 @@ module Aws::AutoScalingPlans
|
|
331
339
|
class Datapoint < Struct.new(
|
332
340
|
:timestamp,
|
333
341
|
:value)
|
342
|
+
SENSITIVE = []
|
334
343
|
include Aws::Structure
|
335
344
|
end
|
336
345
|
|
@@ -355,6 +364,7 @@ module Aws::AutoScalingPlans
|
|
355
364
|
class DeleteScalingPlanRequest < Struct.new(
|
356
365
|
:scaling_plan_name,
|
357
366
|
:scaling_plan_version)
|
367
|
+
SENSITIVE = []
|
358
368
|
include Aws::Structure
|
359
369
|
end
|
360
370
|
|
@@ -396,6 +406,7 @@ module Aws::AutoScalingPlans
|
|
396
406
|
:scaling_plan_version,
|
397
407
|
:max_results,
|
398
408
|
:next_token)
|
409
|
+
SENSITIVE = []
|
399
410
|
include Aws::Structure
|
400
411
|
end
|
401
412
|
|
@@ -413,6 +424,7 @@ module Aws::AutoScalingPlans
|
|
413
424
|
class DescribeScalingPlanResourcesResponse < Struct.new(
|
414
425
|
:scaling_plan_resources,
|
415
426
|
:next_token)
|
427
|
+
SENSITIVE = []
|
416
428
|
include Aws::Structure
|
417
429
|
end
|
418
430
|
|
@@ -469,6 +481,7 @@ module Aws::AutoScalingPlans
|
|
469
481
|
:application_sources,
|
470
482
|
:max_results,
|
471
483
|
:next_token)
|
484
|
+
SENSITIVE = []
|
472
485
|
include Aws::Structure
|
473
486
|
end
|
474
487
|
|
@@ -486,6 +499,7 @@ module Aws::AutoScalingPlans
|
|
486
499
|
class DescribeScalingPlansResponse < Struct.new(
|
487
500
|
:scaling_plans,
|
488
501
|
:next_token)
|
502
|
+
SENSITIVE = []
|
489
503
|
include Aws::Structure
|
490
504
|
end
|
491
505
|
|
@@ -592,6 +606,7 @@ module Aws::AutoScalingPlans
|
|
592
606
|
:forecast_data_type,
|
593
607
|
:start_time,
|
594
608
|
:end_time)
|
609
|
+
SENSITIVE = []
|
595
610
|
include Aws::Structure
|
596
611
|
end
|
597
612
|
|
@@ -603,6 +618,7 @@ module Aws::AutoScalingPlans
|
|
603
618
|
#
|
604
619
|
class GetScalingPlanResourceForecastDataResponse < Struct.new(
|
605
620
|
:datapoints)
|
621
|
+
SENSITIVE = []
|
606
622
|
include Aws::Structure
|
607
623
|
end
|
608
624
|
|
@@ -615,6 +631,7 @@ module Aws::AutoScalingPlans
|
|
615
631
|
#
|
616
632
|
class InternalServiceException < Struct.new(
|
617
633
|
:message)
|
634
|
+
SENSITIVE = []
|
618
635
|
include Aws::Structure
|
619
636
|
end
|
620
637
|
|
@@ -627,6 +644,7 @@ module Aws::AutoScalingPlans
|
|
627
644
|
#
|
628
645
|
class InvalidNextTokenException < Struct.new(
|
629
646
|
:message)
|
647
|
+
SENSITIVE = []
|
630
648
|
include Aws::Structure
|
631
649
|
end
|
632
650
|
|
@@ -640,6 +658,7 @@ module Aws::AutoScalingPlans
|
|
640
658
|
#
|
641
659
|
class LimitExceededException < Struct.new(
|
642
660
|
:message)
|
661
|
+
SENSITIVE = []
|
643
662
|
include Aws::Structure
|
644
663
|
end
|
645
664
|
|
@@ -666,6 +685,7 @@ module Aws::AutoScalingPlans
|
|
666
685
|
class MetricDimension < Struct.new(
|
667
686
|
:name,
|
668
687
|
:value)
|
688
|
+
SENSITIVE = []
|
669
689
|
include Aws::Structure
|
670
690
|
end
|
671
691
|
|
@@ -678,6 +698,7 @@ module Aws::AutoScalingPlans
|
|
678
698
|
#
|
679
699
|
class ObjectNotFoundException < Struct.new(
|
680
700
|
:message)
|
701
|
+
SENSITIVE = []
|
681
702
|
include Aws::Structure
|
682
703
|
end
|
683
704
|
|
@@ -718,6 +739,7 @@ module Aws::AutoScalingPlans
|
|
718
739
|
class PredefinedLoadMetricSpecification < Struct.new(
|
719
740
|
:predefined_load_metric_type,
|
720
741
|
:resource_label)
|
742
|
+
SENSITIVE = []
|
721
743
|
include Aws::Structure
|
722
744
|
end
|
723
745
|
|
@@ -760,6 +782,7 @@ module Aws::AutoScalingPlans
|
|
760
782
|
class PredefinedScalingMetricSpecification < Struct.new(
|
761
783
|
:predefined_scaling_metric_type,
|
762
784
|
:resource_label)
|
785
|
+
SENSITIVE = []
|
763
786
|
include Aws::Structure
|
764
787
|
end
|
765
788
|
|
@@ -1054,6 +1077,7 @@ module Aws::AutoScalingPlans
|
|
1054
1077
|
:predictive_scaling_mode,
|
1055
1078
|
:scaling_policy_update_behavior,
|
1056
1079
|
:disable_dynamic_scaling)
|
1080
|
+
SENSITIVE = []
|
1057
1081
|
include Aws::Structure
|
1058
1082
|
end
|
1059
1083
|
|
@@ -1120,6 +1144,7 @@ module Aws::AutoScalingPlans
|
|
1120
1144
|
:status_message,
|
1121
1145
|
:status_start_time,
|
1122
1146
|
:creation_time)
|
1147
|
+
SENSITIVE = []
|
1123
1148
|
include Aws::Structure
|
1124
1149
|
end
|
1125
1150
|
|
@@ -1227,6 +1252,7 @@ module Aws::AutoScalingPlans
|
|
1227
1252
|
:scaling_policies,
|
1228
1253
|
:scaling_status_code,
|
1229
1254
|
:scaling_status_message)
|
1255
|
+
SENSITIVE = []
|
1230
1256
|
include Aws::Structure
|
1231
1257
|
end
|
1232
1258
|
|
@@ -1251,6 +1277,7 @@ module Aws::AutoScalingPlans
|
|
1251
1277
|
:policy_name,
|
1252
1278
|
:policy_type,
|
1253
1279
|
:target_tracking_configuration)
|
1280
|
+
SENSITIVE = []
|
1254
1281
|
include Aws::Structure
|
1255
1282
|
end
|
1256
1283
|
|
@@ -1277,6 +1304,7 @@ module Aws::AutoScalingPlans
|
|
1277
1304
|
class TagFilter < Struct.new(
|
1278
1305
|
:key,
|
1279
1306
|
:values)
|
1307
|
+
SENSITIVE = []
|
1280
1308
|
include Aws::Structure
|
1281
1309
|
end
|
1282
1310
|
|
@@ -1376,6 +1404,7 @@ module Aws::AutoScalingPlans
|
|
1376
1404
|
:scale_out_cooldown,
|
1377
1405
|
:scale_in_cooldown,
|
1378
1406
|
:estimated_instance_warmup)
|
1407
|
+
SENSITIVE = []
|
1379
1408
|
include Aws::Structure
|
1380
1409
|
end
|
1381
1410
|
|
@@ -1475,6 +1504,7 @@ module Aws::AutoScalingPlans
|
|
1475
1504
|
:scaling_plan_version,
|
1476
1505
|
:application_source,
|
1477
1506
|
:scaling_instructions)
|
1507
|
+
SENSITIVE = []
|
1478
1508
|
include Aws::Structure
|
1479
1509
|
end
|
1480
1510
|
|
@@ -1492,6 +1522,7 @@ module Aws::AutoScalingPlans
|
|
1492
1522
|
#
|
1493
1523
|
class ValidationException < Struct.new(
|
1494
1524
|
:message)
|
1525
|
+
SENSITIVE = []
|
1495
1526
|
include Aws::Structure
|
1496
1527
|
end
|
1497
1528
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-autoscalingplans
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.26.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-
|
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.
|
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.
|
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.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS Auto Scaling Plans
|