aws-sdk-autoscalingplans 1.20.0 → 1.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-autoscalingplans.rb +9 -4
- data/lib/aws-sdk-autoscalingplans/client.rb +72 -14
- data/lib/aws-sdk-autoscalingplans/client_api.rb +2 -0
- data/lib/aws-sdk-autoscalingplans/errors.rb +30 -6
- data/lib/aws-sdk-autoscalingplans/resource.rb +3 -0
- 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: 2d10ea365165677c9c13f5a6e82712caeb00e45dc5479010274baa1b12cb18e1
|
4
|
+
data.tar.gz: c9d3e53eea5f7b7ac09e974f2712696b25c3a97e7542e75ee1c042275d240860
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 786cdd47482fbf3f2417ec57aa4e8fb0ea132f7c3117ec2ab11fd63ee1728f4bac11cf3607b48ff0a9d0de412c3c8fb749b33553e8581be2285288c7e23c73f9
|
7
|
+
data.tar.gz: c70cf0247a6586c1ac2fef3256f794aa3270cfecb71883fdc22f8804b53bbaa2611815b24ec9c9ce8045748cbf3d948c0588de3e15c671b21e4c4454e16299f3
|
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-autoscalingplans/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# auto_scaling_plans = Aws::AutoScalingPlans::Client.new
|
30
|
+
# resp = auto_scaling_plans.create_scaling_plan(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Auto Scaling Plans
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Auto Scaling Plans are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::AutoScalingPlans::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Auto Scaling Plans API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-autoscalingplans/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::AutoScalingPlans
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.25.0'
|
46
51
|
|
47
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,12 +26,25 @@ 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
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:autoscalingplans)
|
31
34
|
|
32
35
|
module Aws::AutoScalingPlans
|
36
|
+
# An API client for AutoScalingPlans. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::AutoScalingPlans::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::AutoScalingPlans
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::AutoScalingPlans
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::AutoScalingPlans
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::AutoScalingPlans
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::AutoScalingPlans
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::AutoScalingPlans
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::AutoScalingPlans
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::AutoScalingPlans
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -219,16 +278,15 @@ module Aws::AutoScalingPlans
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::AutoScalingPlans
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -793,7 +851,7 @@ module Aws::AutoScalingPlans
|
|
793
851
|
params: params,
|
794
852
|
config: config)
|
795
853
|
context[:gem_name] = 'aws-sdk-autoscalingplans'
|
796
|
-
context[:gem_version] = '1.
|
854
|
+
context[:gem_version] = '1.25.0'
|
797
855
|
Seahorse::Client::Request.new(handlers, context)
|
798
856
|
end
|
799
857
|
|
@@ -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,6 +8,34 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::AutoScalingPlans
|
11
|
+
|
12
|
+
# When AutoScalingPlans returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::AutoScalingPlans::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all AutoScalingPlans errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::AutoScalingPlans::Errors::ServiceError
|
20
|
+
# # rescues all AutoScalingPlans API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {ConcurrentUpdateException}
|
31
|
+
# * {InternalServiceException}
|
32
|
+
# * {InvalidNextTokenException}
|
33
|
+
# * {LimitExceededException}
|
34
|
+
# * {ObjectNotFoundException}
|
35
|
+
# * {ValidationException}
|
36
|
+
#
|
37
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
38
|
+
# if they are not defined above.
|
9
39
|
module Errors
|
10
40
|
|
11
41
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +53,6 @@ module Aws::AutoScalingPlans
|
|
23
53
|
def message
|
24
54
|
@message || @data[:message]
|
25
55
|
end
|
26
|
-
|
27
56
|
end
|
28
57
|
|
29
58
|
class InternalServiceException < ServiceError
|
@@ -39,7 +68,6 @@ module Aws::AutoScalingPlans
|
|
39
68
|
def message
|
40
69
|
@message || @data[:message]
|
41
70
|
end
|
42
|
-
|
43
71
|
end
|
44
72
|
|
45
73
|
class InvalidNextTokenException < ServiceError
|
@@ -55,7 +83,6 @@ module Aws::AutoScalingPlans
|
|
55
83
|
def message
|
56
84
|
@message || @data[:message]
|
57
85
|
end
|
58
|
-
|
59
86
|
end
|
60
87
|
|
61
88
|
class LimitExceededException < ServiceError
|
@@ -71,7 +98,6 @@ module Aws::AutoScalingPlans
|
|
71
98
|
def message
|
72
99
|
@message || @data[:message]
|
73
100
|
end
|
74
|
-
|
75
101
|
end
|
76
102
|
|
77
103
|
class ObjectNotFoundException < ServiceError
|
@@ -87,7 +113,6 @@ module Aws::AutoScalingPlans
|
|
87
113
|
def message
|
88
114
|
@message || @data[:message]
|
89
115
|
end
|
90
|
-
|
91
116
|
end
|
92
117
|
|
93
118
|
class ValidationException < ServiceError
|
@@ -103,7 +128,6 @@ module Aws::AutoScalingPlans
|
|
103
128
|
def message
|
104
129
|
@message || @data[:message]
|
105
130
|
end
|
106
|
-
|
107
131
|
end
|
108
132
|
|
109
133
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::AutoScalingPlans
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
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.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: 2020-06-23 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
|