aws-sdk-ssm 1.71.0 → 1.72.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/lib/aws-sdk-ssm.rb +7 -4
- data/lib/aws-sdk-ssm/client.rb +61 -10
- data/lib/aws-sdk-ssm/client_api.rb +28 -0
- data/lib/aws-sdk-ssm/errors.rb +264 -88
- data/lib/aws-sdk-ssm/resource.rb +7 -0
- data/lib/aws-sdk-ssm/types.rb +87 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d89807a2494ec855221901270792223e173fe522
|
4
|
+
data.tar.gz: 73aa8457722d47dd3c5879b8988ddd3ecb549e1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 145e5da491eca5e0046b5e05b737e0c7439508933ea3a366cdc423c3bdd689a6ec0b951460c66a30956dd545a35ff926224f474315c8444c3ccc535646e396c2
|
7
|
+
data.tar.gz: d0f0e88ccb84a069b847f5d56c475ca3d63e15cc88ae6bcaa476029e8cad981bd30ed8e529013cf6ababaec701aad12ed017e42e1062a8135e17ad705221c070
|
data/lib/aws-sdk-ssm.rb
CHANGED
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-ssm/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# ssm = Aws::SSM::Client.new
|
28
|
+
# resp = ssm.add_tags_to_resource(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Amazon Simple Systems Manager (SSM)
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Amazon Simple Systems Manager (SSM) are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::SSM::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Amazon Simple Systems Manager (SSM) API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-ssm/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::SSM
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.72.0'
|
46
49
|
|
47
50
|
end
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:ssm)
|
31
31
|
|
32
32
|
module Aws::SSM
|
33
|
+
# An API client for SSM. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
|
+
#
|
35
|
+
# client = Aws::SSM::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
|
+
#
|
41
|
+
# For details on configuring region and credentials see
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
43
|
+
#
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
45
|
class Client < Seahorse::Client::Base
|
34
46
|
|
35
47
|
include Aws::ClientStubs
|
@@ -108,6 +120,12 @@ module Aws::SSM
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
110
122
|
#
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
127
|
+
# not retry instead of sleeping.
|
128
|
+
#
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
131
|
# this client.
|
@@ -132,6 +150,10 @@ module Aws::SSM
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
133
151
|
# the required types.
|
134
152
|
#
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
156
|
+
#
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
137
159
|
# to default service endpoint when available.
|
@@ -166,15 +188,29 @@ module Aws::SSM
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
167
189
|
# is not set, logging will be disabled.
|
168
190
|
#
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
193
|
+
# a single request, including the initial attempt. For example,
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
196
|
+
#
|
169
197
|
# @option options [String] :profile ("default")
|
170
198
|
# Used when loading credentials from the shared credentials file
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
200
|
#
|
201
|
+
# @option options [Proc] :retry_backoff
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
204
|
+
#
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
207
|
+
# is only used in the `legacy` retry mode.
|
175
208
|
#
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
213
|
+
# in the `legacy` retry mode.
|
178
214
|
#
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
216
|
#
|
@@ -182,11 +218,26 @@ module Aws::SSM
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
187
224
|
#
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
227
|
+
# used by the default backoff function. This option is only used in the
|
228
|
+
# `legacy` retry mode.
|
229
|
+
#
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
231
|
+
# 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.
|
190
241
|
#
|
191
242
|
# @option options [String] :secret_access_key
|
192
243
|
#
|
@@ -219,16 +270,16 @@ module Aws::SSM
|
|
219
270
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
271
|
#
|
221
272
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
273
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
274
|
# `Timeout::Error`.
|
224
275
|
#
|
225
276
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
277
|
# number of seconds to wait for response data. This value can
|
227
278
|
# safely be set
|
228
|
-
# per-request on the session
|
279
|
+
# per-request on the session yielded by {#session_for}.
|
229
280
|
#
|
230
281
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
282
|
+
# seconds a connection is allowed to sit idle before it is
|
232
283
|
# considered stale. Stale connections are closed and removed
|
233
284
|
# from the pool before making a request.
|
234
285
|
#
|
@@ -237,7 +288,7 @@ module Aws::SSM
|
|
237
288
|
# request body. This option has no effect unless the request has
|
238
289
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
290
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
291
|
+
# request on the session yielded by {#session_for}.
|
241
292
|
#
|
242
293
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
294
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -9259,7 +9310,7 @@ module Aws::SSM
|
|
9259
9310
|
params: params,
|
9260
9311
|
config: config)
|
9261
9312
|
context[:gem_name] = 'aws-sdk-ssm'
|
9262
|
-
context[:gem_version] = '1.
|
9313
|
+
context[:gem_version] = '1.72.0'
|
9263
9314
|
Seahorse::Client::Request.new(handlers, context)
|
9264
9315
|
end
|
9265
9316
|
|
@@ -1068,6 +1068,8 @@ module Aws::SSM
|
|
1068
1068
|
AlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1069
1069
|
AlreadyExistsException.struct_class = Types::AlreadyExistsException
|
1070
1070
|
|
1071
|
+
AssociatedInstances.struct_class = Types::AssociatedInstances
|
1072
|
+
|
1071
1073
|
Association.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
1072
1074
|
Association.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
1073
1075
|
Association.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
|
@@ -1080,6 +1082,8 @@ module Aws::SSM
|
|
1080
1082
|
Association.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
|
1081
1083
|
Association.struct_class = Types::Association
|
1082
1084
|
|
1085
|
+
AssociationAlreadyExists.struct_class = Types::AssociationAlreadyExists
|
1086
|
+
|
1083
1087
|
AssociationDescription.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
1084
1088
|
AssociationDescription.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
1085
1089
|
AssociationDescription.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
@@ -1156,6 +1160,8 @@ module Aws::SSM
|
|
1156
1160
|
|
1157
1161
|
AssociationIdList.member = Shapes::ShapeRef.new(shape: AssociationId)
|
1158
1162
|
|
1163
|
+
AssociationLimitExceeded.struct_class = Types::AssociationLimitExceeded
|
1164
|
+
|
1159
1165
|
AssociationList.member = Shapes::ShapeRef.new(shape: Association)
|
1160
1166
|
|
1161
1167
|
AssociationOverview.add_member(:status, Shapes::ShapeRef.new(shape: StatusName, location_name: "Status"))
|
@@ -2081,6 +2087,8 @@ module Aws::SSM
|
|
2081
2087
|
DuplicateDocumentVersionName.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2082
2088
|
DuplicateDocumentVersionName.struct_class = Types::DuplicateDocumentVersionName
|
2083
2089
|
|
2090
|
+
DuplicateInstanceId.struct_class = Types::DuplicateInstanceId
|
2091
|
+
|
2084
2092
|
EffectivePatch.add_member(:patch, Shapes::ShapeRef.new(shape: Patch, location_name: "Patch"))
|
2085
2093
|
EffectivePatch.add_member(:patch_status, Shapes::ShapeRef.new(shape: PatchStatus, location_name: "PatchStatus"))
|
2086
2094
|
EffectivePatch.struct_class = Types::EffectivePatch
|
@@ -2535,6 +2543,8 @@ module Aws::SSM
|
|
2535
2543
|
InvalidAutomationStatusUpdateException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2536
2544
|
InvalidAutomationStatusUpdateException.struct_class = Types::InvalidAutomationStatusUpdateException
|
2537
2545
|
|
2546
|
+
InvalidCommandId.struct_class = Types::InvalidCommandId
|
2547
|
+
|
2538
2548
|
InvalidDeleteInventoryParametersException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2539
2549
|
InvalidDeleteInventoryParametersException.struct_class = Types::InvalidDeleteInventoryParametersException
|
2540
2550
|
|
@@ -2562,6 +2572,8 @@ module Aws::SSM
|
|
2562
2572
|
InvalidFilter.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2563
2573
|
InvalidFilter.struct_class = Types::InvalidFilter
|
2564
2574
|
|
2575
|
+
InvalidFilterKey.struct_class = Types::InvalidFilterKey
|
2576
|
+
|
2565
2577
|
InvalidFilterOption.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
2566
2578
|
InvalidFilterOption.struct_class = Types::InvalidFilterOption
|
2567
2579
|
|
@@ -2599,18 +2611,28 @@ module Aws::SSM
|
|
2599
2611
|
InvalidOptionException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2600
2612
|
InvalidOptionException.struct_class = Types::InvalidOptionException
|
2601
2613
|
|
2614
|
+
InvalidOutputFolder.struct_class = Types::InvalidOutputFolder
|
2615
|
+
|
2616
|
+
InvalidOutputLocation.struct_class = Types::InvalidOutputLocation
|
2617
|
+
|
2602
2618
|
InvalidParameters.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2603
2619
|
InvalidParameters.struct_class = Types::InvalidParameters
|
2604
2620
|
|
2605
2621
|
InvalidPermissionType.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2606
2622
|
InvalidPermissionType.struct_class = Types::InvalidPermissionType
|
2607
2623
|
|
2624
|
+
InvalidPluginName.struct_class = Types::InvalidPluginName
|
2625
|
+
|
2608
2626
|
InvalidPolicyAttributeException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
2609
2627
|
InvalidPolicyAttributeException.struct_class = Types::InvalidPolicyAttributeException
|
2610
2628
|
|
2611
2629
|
InvalidPolicyTypeException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
2612
2630
|
InvalidPolicyTypeException.struct_class = Types::InvalidPolicyTypeException
|
2613
2631
|
|
2632
|
+
InvalidResourceId.struct_class = Types::InvalidResourceId
|
2633
|
+
|
2634
|
+
InvalidResourceType.struct_class = Types::InvalidResourceType
|
2635
|
+
|
2614
2636
|
InvalidResultAttributeException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2615
2637
|
InvalidResultAttributeException.struct_class = Types::InvalidResultAttributeException
|
2616
2638
|
|
@@ -2722,6 +2744,8 @@ module Aws::SSM
|
|
2722
2744
|
InventoryResultItemMap.key = Shapes::ShapeRef.new(shape: InventoryResultItemKey)
|
2723
2745
|
InventoryResultItemMap.value = Shapes::ShapeRef.new(shape: InventoryResultItem)
|
2724
2746
|
|
2747
|
+
InvocationDoesNotExist.struct_class = Types::InvocationDoesNotExist
|
2748
|
+
|
2725
2749
|
ItemContentMismatchException.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, location_name: "TypeName"))
|
2726
2750
|
ItemContentMismatchException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2727
2751
|
ItemContentMismatchException.struct_class = Types::ItemContentMismatchException
|
@@ -3678,6 +3702,8 @@ module Aws::SSM
|
|
3678
3702
|
StartSessionResponse.add_member(:stream_url, Shapes::ShapeRef.new(shape: StreamUrl, location_name: "StreamUrl"))
|
3679
3703
|
StartSessionResponse.struct_class = Types::StartSessionResponse
|
3680
3704
|
|
3705
|
+
StatusUnchanged.struct_class = Types::StatusUnchanged
|
3706
|
+
|
3681
3707
|
StepExecution.add_member(:step_name, Shapes::ShapeRef.new(shape: String, location_name: "StepName"))
|
3682
3708
|
StepExecution.add_member(:action, Shapes::ShapeRef.new(shape: AutomationActionName, location_name: "Action"))
|
3683
3709
|
StepExecution.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: Long, location_name: "TimeoutSeconds", metadata: {"box"=>true}))
|
@@ -3767,6 +3793,8 @@ module Aws::SSM
|
|
3767
3793
|
TerminateSessionResponse.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
|
3768
3794
|
TerminateSessionResponse.struct_class = Types::TerminateSessionResponse
|
3769
3795
|
|
3796
|
+
TooManyTagsError.struct_class = Types::TooManyTagsError
|
3797
|
+
|
3770
3798
|
TooManyUpdates.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
3771
3799
|
TooManyUpdates.struct_class = Types::TooManyUpdates
|
3772
3800
|
|
data/lib/aws-sdk-ssm/errors.rb
CHANGED
@@ -6,6 +6,141 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::SSM
|
9
|
+
|
10
|
+
# When SSM returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::SSM::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all SSM errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::SSM::Errors::ServiceError
|
18
|
+
# # rescues all SSM API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {AlreadyExistsException}
|
29
|
+
# * {AssociatedInstances}
|
30
|
+
# * {AssociationAlreadyExists}
|
31
|
+
# * {AssociationDoesNotExist}
|
32
|
+
# * {AssociationExecutionDoesNotExist}
|
33
|
+
# * {AssociationLimitExceeded}
|
34
|
+
# * {AssociationVersionLimitExceeded}
|
35
|
+
# * {AutomationDefinitionNotFoundException}
|
36
|
+
# * {AutomationDefinitionVersionNotFoundException}
|
37
|
+
# * {AutomationExecutionLimitExceededException}
|
38
|
+
# * {AutomationExecutionNotFoundException}
|
39
|
+
# * {AutomationStepNotFoundException}
|
40
|
+
# * {ComplianceTypeCountLimitExceededException}
|
41
|
+
# * {CustomSchemaCountLimitExceededException}
|
42
|
+
# * {DocumentAlreadyExists}
|
43
|
+
# * {DocumentLimitExceeded}
|
44
|
+
# * {DocumentPermissionLimit}
|
45
|
+
# * {DocumentVersionLimitExceeded}
|
46
|
+
# * {DoesNotExistException}
|
47
|
+
# * {DuplicateDocumentContent}
|
48
|
+
# * {DuplicateDocumentVersionName}
|
49
|
+
# * {DuplicateInstanceId}
|
50
|
+
# * {FeatureNotAvailableException}
|
51
|
+
# * {HierarchyLevelLimitExceededException}
|
52
|
+
# * {HierarchyTypeMismatchException}
|
53
|
+
# * {IdempotentParameterMismatch}
|
54
|
+
# * {IncompatiblePolicyException}
|
55
|
+
# * {InternalServerError}
|
56
|
+
# * {InvalidActivation}
|
57
|
+
# * {InvalidActivationId}
|
58
|
+
# * {InvalidAggregatorException}
|
59
|
+
# * {InvalidAllowedPatternException}
|
60
|
+
# * {InvalidAssociation}
|
61
|
+
# * {InvalidAssociationVersion}
|
62
|
+
# * {InvalidAutomationExecutionParametersException}
|
63
|
+
# * {InvalidAutomationSignalException}
|
64
|
+
# * {InvalidAutomationStatusUpdateException}
|
65
|
+
# * {InvalidCommandId}
|
66
|
+
# * {InvalidDeleteInventoryParametersException}
|
67
|
+
# * {InvalidDeletionIdException}
|
68
|
+
# * {InvalidDocument}
|
69
|
+
# * {InvalidDocumentContent}
|
70
|
+
# * {InvalidDocumentOperation}
|
71
|
+
# * {InvalidDocumentSchemaVersion}
|
72
|
+
# * {InvalidDocumentType}
|
73
|
+
# * {InvalidDocumentVersion}
|
74
|
+
# * {InvalidFilter}
|
75
|
+
# * {InvalidFilterKey}
|
76
|
+
# * {InvalidFilterOption}
|
77
|
+
# * {InvalidFilterValue}
|
78
|
+
# * {InvalidInstanceId}
|
79
|
+
# * {InvalidInstanceInformationFilterValue}
|
80
|
+
# * {InvalidInventoryGroupException}
|
81
|
+
# * {InvalidInventoryItemContextException}
|
82
|
+
# * {InvalidInventoryRequestException}
|
83
|
+
# * {InvalidItemContentException}
|
84
|
+
# * {InvalidKeyId}
|
85
|
+
# * {InvalidNextToken}
|
86
|
+
# * {InvalidNotificationConfig}
|
87
|
+
# * {InvalidOptionException}
|
88
|
+
# * {InvalidOutputFolder}
|
89
|
+
# * {InvalidOutputLocation}
|
90
|
+
# * {InvalidParameters}
|
91
|
+
# * {InvalidPermissionType}
|
92
|
+
# * {InvalidPluginName}
|
93
|
+
# * {InvalidPolicyAttributeException}
|
94
|
+
# * {InvalidPolicyTypeException}
|
95
|
+
# * {InvalidResourceId}
|
96
|
+
# * {InvalidResourceType}
|
97
|
+
# * {InvalidResultAttributeException}
|
98
|
+
# * {InvalidRole}
|
99
|
+
# * {InvalidSchedule}
|
100
|
+
# * {InvalidTarget}
|
101
|
+
# * {InvalidTypeNameException}
|
102
|
+
# * {InvalidUpdate}
|
103
|
+
# * {InvocationDoesNotExist}
|
104
|
+
# * {ItemContentMismatchException}
|
105
|
+
# * {ItemSizeLimitExceededException}
|
106
|
+
# * {MaxDocumentSizeExceeded}
|
107
|
+
# * {OpsItemAlreadyExistsException}
|
108
|
+
# * {OpsItemInvalidParameterException}
|
109
|
+
# * {OpsItemLimitExceededException}
|
110
|
+
# * {OpsItemNotFoundException}
|
111
|
+
# * {ParameterAlreadyExists}
|
112
|
+
# * {ParameterLimitExceeded}
|
113
|
+
# * {ParameterMaxVersionLimitExceeded}
|
114
|
+
# * {ParameterNotFound}
|
115
|
+
# * {ParameterPatternMismatchException}
|
116
|
+
# * {ParameterVersionLabelLimitExceeded}
|
117
|
+
# * {ParameterVersionNotFound}
|
118
|
+
# * {PoliciesLimitExceededException}
|
119
|
+
# * {ResourceDataSyncAlreadyExistsException}
|
120
|
+
# * {ResourceDataSyncConflictException}
|
121
|
+
# * {ResourceDataSyncCountExceededException}
|
122
|
+
# * {ResourceDataSyncInvalidConfigurationException}
|
123
|
+
# * {ResourceDataSyncNotFoundException}
|
124
|
+
# * {ResourceInUseException}
|
125
|
+
# * {ResourceLimitExceededException}
|
126
|
+
# * {ServiceSettingNotFound}
|
127
|
+
# * {StatusUnchanged}
|
128
|
+
# * {SubTypeCountLimitExceededException}
|
129
|
+
# * {TargetInUseException}
|
130
|
+
# * {TargetNotConnected}
|
131
|
+
# * {TooManyTagsError}
|
132
|
+
# * {TooManyUpdates}
|
133
|
+
# * {TotalSizeLimitExceededException}
|
134
|
+
# * {UnsupportedCalendarException}
|
135
|
+
# * {UnsupportedFeatureRequiredException}
|
136
|
+
# * {UnsupportedInventoryItemContextException}
|
137
|
+
# * {UnsupportedInventorySchemaVersionException}
|
138
|
+
# * {UnsupportedOperatingSystem}
|
139
|
+
# * {UnsupportedParameterType}
|
140
|
+
# * {UnsupportedPlatformType}
|
141
|
+
#
|
142
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
143
|
+
# if they are not defined above.
|
9
144
|
module Errors
|
10
145
|
|
11
146
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +158,26 @@ module Aws::SSM
|
|
23
158
|
def message
|
24
159
|
@message || @data[:message]
|
25
160
|
end
|
161
|
+
end
|
162
|
+
|
163
|
+
class AssociatedInstances < ServiceError
|
164
|
+
|
165
|
+
# @param [Seahorse::Client::RequestContext] context
|
166
|
+
# @param [String] message
|
167
|
+
# @param [Aws::SSM::Types::AssociatedInstances] data
|
168
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
169
|
+
super(context, message, data)
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
class AssociationAlreadyExists < ServiceError
|
26
174
|
|
175
|
+
# @param [Seahorse::Client::RequestContext] context
|
176
|
+
# @param [String] message
|
177
|
+
# @param [Aws::SSM::Types::AssociationAlreadyExists] data
|
178
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
179
|
+
super(context, message, data)
|
180
|
+
end
|
27
181
|
end
|
28
182
|
|
29
183
|
class AssociationDoesNotExist < ServiceError
|
@@ -39,7 +193,6 @@ module Aws::SSM
|
|
39
193
|
def message
|
40
194
|
@message || @data[:message]
|
41
195
|
end
|
42
|
-
|
43
196
|
end
|
44
197
|
|
45
198
|
class AssociationExecutionDoesNotExist < ServiceError
|
@@ -55,7 +208,16 @@ module Aws::SSM
|
|
55
208
|
def message
|
56
209
|
@message || @data[:message]
|
57
210
|
end
|
211
|
+
end
|
58
212
|
|
213
|
+
class AssociationLimitExceeded < ServiceError
|
214
|
+
|
215
|
+
# @param [Seahorse::Client::RequestContext] context
|
216
|
+
# @param [String] message
|
217
|
+
# @param [Aws::SSM::Types::AssociationLimitExceeded] data
|
218
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
219
|
+
super(context, message, data)
|
220
|
+
end
|
59
221
|
end
|
60
222
|
|
61
223
|
class AssociationVersionLimitExceeded < ServiceError
|
@@ -71,7 +233,6 @@ module Aws::SSM
|
|
71
233
|
def message
|
72
234
|
@message || @data[:message]
|
73
235
|
end
|
74
|
-
|
75
236
|
end
|
76
237
|
|
77
238
|
class AutomationDefinitionNotFoundException < ServiceError
|
@@ -87,7 +248,6 @@ module Aws::SSM
|
|
87
248
|
def message
|
88
249
|
@message || @data[:message]
|
89
250
|
end
|
90
|
-
|
91
251
|
end
|
92
252
|
|
93
253
|
class AutomationDefinitionVersionNotFoundException < ServiceError
|
@@ -103,7 +263,6 @@ module Aws::SSM
|
|
103
263
|
def message
|
104
264
|
@message || @data[:message]
|
105
265
|
end
|
106
|
-
|
107
266
|
end
|
108
267
|
|
109
268
|
class AutomationExecutionLimitExceededException < ServiceError
|
@@ -119,7 +278,6 @@ module Aws::SSM
|
|
119
278
|
def message
|
120
279
|
@message || @data[:message]
|
121
280
|
end
|
122
|
-
|
123
281
|
end
|
124
282
|
|
125
283
|
class AutomationExecutionNotFoundException < ServiceError
|
@@ -135,7 +293,6 @@ module Aws::SSM
|
|
135
293
|
def message
|
136
294
|
@message || @data[:message]
|
137
295
|
end
|
138
|
-
|
139
296
|
end
|
140
297
|
|
141
298
|
class AutomationStepNotFoundException < ServiceError
|
@@ -151,7 +308,6 @@ module Aws::SSM
|
|
151
308
|
def message
|
152
309
|
@message || @data[:message]
|
153
310
|
end
|
154
|
-
|
155
311
|
end
|
156
312
|
|
157
313
|
class ComplianceTypeCountLimitExceededException < ServiceError
|
@@ -167,7 +323,6 @@ module Aws::SSM
|
|
167
323
|
def message
|
168
324
|
@message || @data[:message]
|
169
325
|
end
|
170
|
-
|
171
326
|
end
|
172
327
|
|
173
328
|
class CustomSchemaCountLimitExceededException < ServiceError
|
@@ -183,7 +338,6 @@ module Aws::SSM
|
|
183
338
|
def message
|
184
339
|
@message || @data[:message]
|
185
340
|
end
|
186
|
-
|
187
341
|
end
|
188
342
|
|
189
343
|
class DocumentAlreadyExists < ServiceError
|
@@ -199,7 +353,6 @@ module Aws::SSM
|
|
199
353
|
def message
|
200
354
|
@message || @data[:message]
|
201
355
|
end
|
202
|
-
|
203
356
|
end
|
204
357
|
|
205
358
|
class DocumentLimitExceeded < ServiceError
|
@@ -215,7 +368,6 @@ module Aws::SSM
|
|
215
368
|
def message
|
216
369
|
@message || @data[:message]
|
217
370
|
end
|
218
|
-
|
219
371
|
end
|
220
372
|
|
221
373
|
class DocumentPermissionLimit < ServiceError
|
@@ -231,7 +383,6 @@ module Aws::SSM
|
|
231
383
|
def message
|
232
384
|
@message || @data[:message]
|
233
385
|
end
|
234
|
-
|
235
386
|
end
|
236
387
|
|
237
388
|
class DocumentVersionLimitExceeded < ServiceError
|
@@ -247,7 +398,6 @@ module Aws::SSM
|
|
247
398
|
def message
|
248
399
|
@message || @data[:message]
|
249
400
|
end
|
250
|
-
|
251
401
|
end
|
252
402
|
|
253
403
|
class DoesNotExistException < ServiceError
|
@@ -263,7 +413,6 @@ module Aws::SSM
|
|
263
413
|
def message
|
264
414
|
@message || @data[:message]
|
265
415
|
end
|
266
|
-
|
267
416
|
end
|
268
417
|
|
269
418
|
class DuplicateDocumentContent < ServiceError
|
@@ -279,7 +428,6 @@ module Aws::SSM
|
|
279
428
|
def message
|
280
429
|
@message || @data[:message]
|
281
430
|
end
|
282
|
-
|
283
431
|
end
|
284
432
|
|
285
433
|
class DuplicateDocumentVersionName < ServiceError
|
@@ -295,7 +443,16 @@ module Aws::SSM
|
|
295
443
|
def message
|
296
444
|
@message || @data[:message]
|
297
445
|
end
|
446
|
+
end
|
298
447
|
|
448
|
+
class DuplicateInstanceId < ServiceError
|
449
|
+
|
450
|
+
# @param [Seahorse::Client::RequestContext] context
|
451
|
+
# @param [String] message
|
452
|
+
# @param [Aws::SSM::Types::DuplicateInstanceId] data
|
453
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
454
|
+
super(context, message, data)
|
455
|
+
end
|
299
456
|
end
|
300
457
|
|
301
458
|
class FeatureNotAvailableException < ServiceError
|
@@ -311,7 +468,6 @@ module Aws::SSM
|
|
311
468
|
def message
|
312
469
|
@message || @data[:message]
|
313
470
|
end
|
314
|
-
|
315
471
|
end
|
316
472
|
|
317
473
|
class HierarchyLevelLimitExceededException < ServiceError
|
@@ -327,7 +483,6 @@ module Aws::SSM
|
|
327
483
|
def message
|
328
484
|
@message || @data[:message]
|
329
485
|
end
|
330
|
-
|
331
486
|
end
|
332
487
|
|
333
488
|
class HierarchyTypeMismatchException < ServiceError
|
@@ -343,7 +498,6 @@ module Aws::SSM
|
|
343
498
|
def message
|
344
499
|
@message || @data[:message]
|
345
500
|
end
|
346
|
-
|
347
501
|
end
|
348
502
|
|
349
503
|
class IdempotentParameterMismatch < ServiceError
|
@@ -359,7 +513,6 @@ module Aws::SSM
|
|
359
513
|
def message
|
360
514
|
@message || @data[:message]
|
361
515
|
end
|
362
|
-
|
363
516
|
end
|
364
517
|
|
365
518
|
class IncompatiblePolicyException < ServiceError
|
@@ -375,7 +528,6 @@ module Aws::SSM
|
|
375
528
|
def message
|
376
529
|
@message || @data[:message]
|
377
530
|
end
|
378
|
-
|
379
531
|
end
|
380
532
|
|
381
533
|
class InternalServerError < ServiceError
|
@@ -391,7 +543,6 @@ module Aws::SSM
|
|
391
543
|
def message
|
392
544
|
@message || @data[:message]
|
393
545
|
end
|
394
|
-
|
395
546
|
end
|
396
547
|
|
397
548
|
class InvalidActivation < ServiceError
|
@@ -407,7 +558,6 @@ module Aws::SSM
|
|
407
558
|
def message
|
408
559
|
@message || @data[:message]
|
409
560
|
end
|
410
|
-
|
411
561
|
end
|
412
562
|
|
413
563
|
class InvalidActivationId < ServiceError
|
@@ -423,7 +573,6 @@ module Aws::SSM
|
|
423
573
|
def message
|
424
574
|
@message || @data[:message]
|
425
575
|
end
|
426
|
-
|
427
576
|
end
|
428
577
|
|
429
578
|
class InvalidAggregatorException < ServiceError
|
@@ -439,7 +588,6 @@ module Aws::SSM
|
|
439
588
|
def message
|
440
589
|
@message || @data[:message]
|
441
590
|
end
|
442
|
-
|
443
591
|
end
|
444
592
|
|
445
593
|
class InvalidAllowedPatternException < ServiceError
|
@@ -455,7 +603,6 @@ module Aws::SSM
|
|
455
603
|
def message
|
456
604
|
@message || @data[:message]
|
457
605
|
end
|
458
|
-
|
459
606
|
end
|
460
607
|
|
461
608
|
class InvalidAssociation < ServiceError
|
@@ -471,7 +618,6 @@ module Aws::SSM
|
|
471
618
|
def message
|
472
619
|
@message || @data[:message]
|
473
620
|
end
|
474
|
-
|
475
621
|
end
|
476
622
|
|
477
623
|
class InvalidAssociationVersion < ServiceError
|
@@ -487,7 +633,6 @@ module Aws::SSM
|
|
487
633
|
def message
|
488
634
|
@message || @data[:message]
|
489
635
|
end
|
490
|
-
|
491
636
|
end
|
492
637
|
|
493
638
|
class InvalidAutomationExecutionParametersException < ServiceError
|
@@ -503,7 +648,6 @@ module Aws::SSM
|
|
503
648
|
def message
|
504
649
|
@message || @data[:message]
|
505
650
|
end
|
506
|
-
|
507
651
|
end
|
508
652
|
|
509
653
|
class InvalidAutomationSignalException < ServiceError
|
@@ -519,7 +663,6 @@ module Aws::SSM
|
|
519
663
|
def message
|
520
664
|
@message || @data[:message]
|
521
665
|
end
|
522
|
-
|
523
666
|
end
|
524
667
|
|
525
668
|
class InvalidAutomationStatusUpdateException < ServiceError
|
@@ -535,7 +678,16 @@ module Aws::SSM
|
|
535
678
|
def message
|
536
679
|
@message || @data[:message]
|
537
680
|
end
|
681
|
+
end
|
538
682
|
|
683
|
+
class InvalidCommandId < ServiceError
|
684
|
+
|
685
|
+
# @param [Seahorse::Client::RequestContext] context
|
686
|
+
# @param [String] message
|
687
|
+
# @param [Aws::SSM::Types::InvalidCommandId] data
|
688
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
689
|
+
super(context, message, data)
|
690
|
+
end
|
539
691
|
end
|
540
692
|
|
541
693
|
class InvalidDeleteInventoryParametersException < ServiceError
|
@@ -551,7 +703,6 @@ module Aws::SSM
|
|
551
703
|
def message
|
552
704
|
@message || @data[:message]
|
553
705
|
end
|
554
|
-
|
555
706
|
end
|
556
707
|
|
557
708
|
class InvalidDeletionIdException < ServiceError
|
@@ -567,7 +718,6 @@ module Aws::SSM
|
|
567
718
|
def message
|
568
719
|
@message || @data[:message]
|
569
720
|
end
|
570
|
-
|
571
721
|
end
|
572
722
|
|
573
723
|
class InvalidDocument < ServiceError
|
@@ -583,7 +733,6 @@ module Aws::SSM
|
|
583
733
|
def message
|
584
734
|
@message || @data[:message]
|
585
735
|
end
|
586
|
-
|
587
736
|
end
|
588
737
|
|
589
738
|
class InvalidDocumentContent < ServiceError
|
@@ -599,7 +748,6 @@ module Aws::SSM
|
|
599
748
|
def message
|
600
749
|
@message || @data[:message]
|
601
750
|
end
|
602
|
-
|
603
751
|
end
|
604
752
|
|
605
753
|
class InvalidDocumentOperation < ServiceError
|
@@ -615,7 +763,6 @@ module Aws::SSM
|
|
615
763
|
def message
|
616
764
|
@message || @data[:message]
|
617
765
|
end
|
618
|
-
|
619
766
|
end
|
620
767
|
|
621
768
|
class InvalidDocumentSchemaVersion < ServiceError
|
@@ -631,7 +778,6 @@ module Aws::SSM
|
|
631
778
|
def message
|
632
779
|
@message || @data[:message]
|
633
780
|
end
|
634
|
-
|
635
781
|
end
|
636
782
|
|
637
783
|
class InvalidDocumentType < ServiceError
|
@@ -647,7 +793,6 @@ module Aws::SSM
|
|
647
793
|
def message
|
648
794
|
@message || @data[:message]
|
649
795
|
end
|
650
|
-
|
651
796
|
end
|
652
797
|
|
653
798
|
class InvalidDocumentVersion < ServiceError
|
@@ -663,7 +808,6 @@ module Aws::SSM
|
|
663
808
|
def message
|
664
809
|
@message || @data[:message]
|
665
810
|
end
|
666
|
-
|
667
811
|
end
|
668
812
|
|
669
813
|
class InvalidFilter < ServiceError
|
@@ -679,7 +823,16 @@ module Aws::SSM
|
|
679
823
|
def message
|
680
824
|
@message || @data[:message]
|
681
825
|
end
|
826
|
+
end
|
682
827
|
|
828
|
+
class InvalidFilterKey < ServiceError
|
829
|
+
|
830
|
+
# @param [Seahorse::Client::RequestContext] context
|
831
|
+
# @param [String] message
|
832
|
+
# @param [Aws::SSM::Types::InvalidFilterKey] data
|
833
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
834
|
+
super(context, message, data)
|
835
|
+
end
|
683
836
|
end
|
684
837
|
|
685
838
|
class InvalidFilterOption < ServiceError
|
@@ -695,7 +848,6 @@ module Aws::SSM
|
|
695
848
|
def message
|
696
849
|
@message || @data[:message]
|
697
850
|
end
|
698
|
-
|
699
851
|
end
|
700
852
|
|
701
853
|
class InvalidFilterValue < ServiceError
|
@@ -711,7 +863,6 @@ module Aws::SSM
|
|
711
863
|
def message
|
712
864
|
@message || @data[:message]
|
713
865
|
end
|
714
|
-
|
715
866
|
end
|
716
867
|
|
717
868
|
class InvalidInstanceId < ServiceError
|
@@ -727,7 +878,6 @@ module Aws::SSM
|
|
727
878
|
def message
|
728
879
|
@message || @data[:message]
|
729
880
|
end
|
730
|
-
|
731
881
|
end
|
732
882
|
|
733
883
|
class InvalidInstanceInformationFilterValue < ServiceError
|
@@ -743,7 +893,6 @@ module Aws::SSM
|
|
743
893
|
def message
|
744
894
|
@message || @data[:message]
|
745
895
|
end
|
746
|
-
|
747
896
|
end
|
748
897
|
|
749
898
|
class InvalidInventoryGroupException < ServiceError
|
@@ -759,7 +908,6 @@ module Aws::SSM
|
|
759
908
|
def message
|
760
909
|
@message || @data[:message]
|
761
910
|
end
|
762
|
-
|
763
911
|
end
|
764
912
|
|
765
913
|
class InvalidInventoryItemContextException < ServiceError
|
@@ -775,7 +923,6 @@ module Aws::SSM
|
|
775
923
|
def message
|
776
924
|
@message || @data[:message]
|
777
925
|
end
|
778
|
-
|
779
926
|
end
|
780
927
|
|
781
928
|
class InvalidInventoryRequestException < ServiceError
|
@@ -791,7 +938,6 @@ module Aws::SSM
|
|
791
938
|
def message
|
792
939
|
@message || @data[:message]
|
793
940
|
end
|
794
|
-
|
795
941
|
end
|
796
942
|
|
797
943
|
class InvalidItemContentException < ServiceError
|
@@ -812,7 +958,6 @@ module Aws::SSM
|
|
812
958
|
def message
|
813
959
|
@message || @data[:message]
|
814
960
|
end
|
815
|
-
|
816
961
|
end
|
817
962
|
|
818
963
|
class InvalidKeyId < ServiceError
|
@@ -828,7 +973,6 @@ module Aws::SSM
|
|
828
973
|
def message
|
829
974
|
@message || @data[:message]
|
830
975
|
end
|
831
|
-
|
832
976
|
end
|
833
977
|
|
834
978
|
class InvalidNextToken < ServiceError
|
@@ -844,7 +988,6 @@ module Aws::SSM
|
|
844
988
|
def message
|
845
989
|
@message || @data[:message]
|
846
990
|
end
|
847
|
-
|
848
991
|
end
|
849
992
|
|
850
993
|
class InvalidNotificationConfig < ServiceError
|
@@ -860,7 +1003,6 @@ module Aws::SSM
|
|
860
1003
|
def message
|
861
1004
|
@message || @data[:message]
|
862
1005
|
end
|
863
|
-
|
864
1006
|
end
|
865
1007
|
|
866
1008
|
class InvalidOptionException < ServiceError
|
@@ -876,7 +1018,26 @@ module Aws::SSM
|
|
876
1018
|
def message
|
877
1019
|
@message || @data[:message]
|
878
1020
|
end
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class InvalidOutputFolder < ServiceError
|
1024
|
+
|
1025
|
+
# @param [Seahorse::Client::RequestContext] context
|
1026
|
+
# @param [String] message
|
1027
|
+
# @param [Aws::SSM::Types::InvalidOutputFolder] data
|
1028
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1029
|
+
super(context, message, data)
|
1030
|
+
end
|
1031
|
+
end
|
879
1032
|
|
1033
|
+
class InvalidOutputLocation < ServiceError
|
1034
|
+
|
1035
|
+
# @param [Seahorse::Client::RequestContext] context
|
1036
|
+
# @param [String] message
|
1037
|
+
# @param [Aws::SSM::Types::InvalidOutputLocation] data
|
1038
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1039
|
+
super(context, message, data)
|
1040
|
+
end
|
880
1041
|
end
|
881
1042
|
|
882
1043
|
class InvalidParameters < ServiceError
|
@@ -892,7 +1053,6 @@ module Aws::SSM
|
|
892
1053
|
def message
|
893
1054
|
@message || @data[:message]
|
894
1055
|
end
|
895
|
-
|
896
1056
|
end
|
897
1057
|
|
898
1058
|
class InvalidPermissionType < ServiceError
|
@@ -908,7 +1068,16 @@ module Aws::SSM
|
|
908
1068
|
def message
|
909
1069
|
@message || @data[:message]
|
910
1070
|
end
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class InvalidPluginName < ServiceError
|
911
1074
|
|
1075
|
+
# @param [Seahorse::Client::RequestContext] context
|
1076
|
+
# @param [String] message
|
1077
|
+
# @param [Aws::SSM::Types::InvalidPluginName] data
|
1078
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1079
|
+
super(context, message, data)
|
1080
|
+
end
|
912
1081
|
end
|
913
1082
|
|
914
1083
|
class InvalidPolicyAttributeException < ServiceError
|
@@ -924,7 +1093,6 @@ module Aws::SSM
|
|
924
1093
|
def message
|
925
1094
|
@message || @data[:message]
|
926
1095
|
end
|
927
|
-
|
928
1096
|
end
|
929
1097
|
|
930
1098
|
class InvalidPolicyTypeException < ServiceError
|
@@ -940,7 +1108,26 @@ module Aws::SSM
|
|
940
1108
|
def message
|
941
1109
|
@message || @data[:message]
|
942
1110
|
end
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class InvalidResourceId < ServiceError
|
1114
|
+
|
1115
|
+
# @param [Seahorse::Client::RequestContext] context
|
1116
|
+
# @param [String] message
|
1117
|
+
# @param [Aws::SSM::Types::InvalidResourceId] data
|
1118
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1119
|
+
super(context, message, data)
|
1120
|
+
end
|
1121
|
+
end
|
943
1122
|
|
1123
|
+
class InvalidResourceType < ServiceError
|
1124
|
+
|
1125
|
+
# @param [Seahorse::Client::RequestContext] context
|
1126
|
+
# @param [String] message
|
1127
|
+
# @param [Aws::SSM::Types::InvalidResourceType] data
|
1128
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1129
|
+
super(context, message, data)
|
1130
|
+
end
|
944
1131
|
end
|
945
1132
|
|
946
1133
|
class InvalidResultAttributeException < ServiceError
|
@@ -956,7 +1143,6 @@ module Aws::SSM
|
|
956
1143
|
def message
|
957
1144
|
@message || @data[:message]
|
958
1145
|
end
|
959
|
-
|
960
1146
|
end
|
961
1147
|
|
962
1148
|
class InvalidRole < ServiceError
|
@@ -972,7 +1158,6 @@ module Aws::SSM
|
|
972
1158
|
def message
|
973
1159
|
@message || @data[:message]
|
974
1160
|
end
|
975
|
-
|
976
1161
|
end
|
977
1162
|
|
978
1163
|
class InvalidSchedule < ServiceError
|
@@ -988,7 +1173,6 @@ module Aws::SSM
|
|
988
1173
|
def message
|
989
1174
|
@message || @data[:message]
|
990
1175
|
end
|
991
|
-
|
992
1176
|
end
|
993
1177
|
|
994
1178
|
class InvalidTarget < ServiceError
|
@@ -1004,7 +1188,6 @@ module Aws::SSM
|
|
1004
1188
|
def message
|
1005
1189
|
@message || @data[:message]
|
1006
1190
|
end
|
1007
|
-
|
1008
1191
|
end
|
1009
1192
|
|
1010
1193
|
class InvalidTypeNameException < ServiceError
|
@@ -1020,7 +1203,6 @@ module Aws::SSM
|
|
1020
1203
|
def message
|
1021
1204
|
@message || @data[:message]
|
1022
1205
|
end
|
1023
|
-
|
1024
1206
|
end
|
1025
1207
|
|
1026
1208
|
class InvalidUpdate < ServiceError
|
@@ -1036,7 +1218,16 @@ module Aws::SSM
|
|
1036
1218
|
def message
|
1037
1219
|
@message || @data[:message]
|
1038
1220
|
end
|
1221
|
+
end
|
1039
1222
|
|
1223
|
+
class InvocationDoesNotExist < ServiceError
|
1224
|
+
|
1225
|
+
# @param [Seahorse::Client::RequestContext] context
|
1226
|
+
# @param [String] message
|
1227
|
+
# @param [Aws::SSM::Types::InvocationDoesNotExist] data
|
1228
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1229
|
+
super(context, message, data)
|
1230
|
+
end
|
1040
1231
|
end
|
1041
1232
|
|
1042
1233
|
class ItemContentMismatchException < ServiceError
|
@@ -1057,7 +1248,6 @@ module Aws::SSM
|
|
1057
1248
|
def message
|
1058
1249
|
@message || @data[:message]
|
1059
1250
|
end
|
1060
|
-
|
1061
1251
|
end
|
1062
1252
|
|
1063
1253
|
class ItemSizeLimitExceededException < ServiceError
|
@@ -1078,7 +1268,6 @@ module Aws::SSM
|
|
1078
1268
|
def message
|
1079
1269
|
@message || @data[:message]
|
1080
1270
|
end
|
1081
|
-
|
1082
1271
|
end
|
1083
1272
|
|
1084
1273
|
class MaxDocumentSizeExceeded < ServiceError
|
@@ -1094,7 +1283,6 @@ module Aws::SSM
|
|
1094
1283
|
def message
|
1095
1284
|
@message || @data[:message]
|
1096
1285
|
end
|
1097
|
-
|
1098
1286
|
end
|
1099
1287
|
|
1100
1288
|
class OpsItemAlreadyExistsException < ServiceError
|
@@ -1115,7 +1303,6 @@ module Aws::SSM
|
|
1115
1303
|
def ops_item_id
|
1116
1304
|
@data[:ops_item_id]
|
1117
1305
|
end
|
1118
|
-
|
1119
1306
|
end
|
1120
1307
|
|
1121
1308
|
class OpsItemInvalidParameterException < ServiceError
|
@@ -1136,7 +1323,6 @@ module Aws::SSM
|
|
1136
1323
|
def message
|
1137
1324
|
@message || @data[:message]
|
1138
1325
|
end
|
1139
|
-
|
1140
1326
|
end
|
1141
1327
|
|
1142
1328
|
class OpsItemLimitExceededException < ServiceError
|
@@ -1167,7 +1353,6 @@ module Aws::SSM
|
|
1167
1353
|
def message
|
1168
1354
|
@message || @data[:message]
|
1169
1355
|
end
|
1170
|
-
|
1171
1356
|
end
|
1172
1357
|
|
1173
1358
|
class OpsItemNotFoundException < ServiceError
|
@@ -1183,7 +1368,6 @@ module Aws::SSM
|
|
1183
1368
|
def message
|
1184
1369
|
@message || @data[:message]
|
1185
1370
|
end
|
1186
|
-
|
1187
1371
|
end
|
1188
1372
|
|
1189
1373
|
class ParameterAlreadyExists < ServiceError
|
@@ -1199,7 +1383,6 @@ module Aws::SSM
|
|
1199
1383
|
def message
|
1200
1384
|
@message || @data[:message]
|
1201
1385
|
end
|
1202
|
-
|
1203
1386
|
end
|
1204
1387
|
|
1205
1388
|
class ParameterLimitExceeded < ServiceError
|
@@ -1215,7 +1398,6 @@ module Aws::SSM
|
|
1215
1398
|
def message
|
1216
1399
|
@message || @data[:message]
|
1217
1400
|
end
|
1218
|
-
|
1219
1401
|
end
|
1220
1402
|
|
1221
1403
|
class ParameterMaxVersionLimitExceeded < ServiceError
|
@@ -1231,7 +1413,6 @@ module Aws::SSM
|
|
1231
1413
|
def message
|
1232
1414
|
@message || @data[:message]
|
1233
1415
|
end
|
1234
|
-
|
1235
1416
|
end
|
1236
1417
|
|
1237
1418
|
class ParameterNotFound < ServiceError
|
@@ -1247,7 +1428,6 @@ module Aws::SSM
|
|
1247
1428
|
def message
|
1248
1429
|
@message || @data[:message]
|
1249
1430
|
end
|
1250
|
-
|
1251
1431
|
end
|
1252
1432
|
|
1253
1433
|
class ParameterPatternMismatchException < ServiceError
|
@@ -1263,7 +1443,6 @@ module Aws::SSM
|
|
1263
1443
|
def message
|
1264
1444
|
@message || @data[:message]
|
1265
1445
|
end
|
1266
|
-
|
1267
1446
|
end
|
1268
1447
|
|
1269
1448
|
class ParameterVersionLabelLimitExceeded < ServiceError
|
@@ -1279,7 +1458,6 @@ module Aws::SSM
|
|
1279
1458
|
def message
|
1280
1459
|
@message || @data[:message]
|
1281
1460
|
end
|
1282
|
-
|
1283
1461
|
end
|
1284
1462
|
|
1285
1463
|
class ParameterVersionNotFound < ServiceError
|
@@ -1295,7 +1473,6 @@ module Aws::SSM
|
|
1295
1473
|
def message
|
1296
1474
|
@message || @data[:message]
|
1297
1475
|
end
|
1298
|
-
|
1299
1476
|
end
|
1300
1477
|
|
1301
1478
|
class PoliciesLimitExceededException < ServiceError
|
@@ -1311,7 +1488,6 @@ module Aws::SSM
|
|
1311
1488
|
def message
|
1312
1489
|
@message || @data[:message]
|
1313
1490
|
end
|
1314
|
-
|
1315
1491
|
end
|
1316
1492
|
|
1317
1493
|
class ResourceDataSyncAlreadyExistsException < ServiceError
|
@@ -1327,7 +1503,6 @@ module Aws::SSM
|
|
1327
1503
|
def sync_name
|
1328
1504
|
@data[:sync_name]
|
1329
1505
|
end
|
1330
|
-
|
1331
1506
|
end
|
1332
1507
|
|
1333
1508
|
class ResourceDataSyncConflictException < ServiceError
|
@@ -1343,7 +1518,6 @@ module Aws::SSM
|
|
1343
1518
|
def message
|
1344
1519
|
@message || @data[:message]
|
1345
1520
|
end
|
1346
|
-
|
1347
1521
|
end
|
1348
1522
|
|
1349
1523
|
class ResourceDataSyncCountExceededException < ServiceError
|
@@ -1359,7 +1533,6 @@ module Aws::SSM
|
|
1359
1533
|
def message
|
1360
1534
|
@message || @data[:message]
|
1361
1535
|
end
|
1362
|
-
|
1363
1536
|
end
|
1364
1537
|
|
1365
1538
|
class ResourceDataSyncInvalidConfigurationException < ServiceError
|
@@ -1375,7 +1548,6 @@ module Aws::SSM
|
|
1375
1548
|
def message
|
1376
1549
|
@message || @data[:message]
|
1377
1550
|
end
|
1378
|
-
|
1379
1551
|
end
|
1380
1552
|
|
1381
1553
|
class ResourceDataSyncNotFoundException < ServiceError
|
@@ -1401,7 +1573,6 @@ module Aws::SSM
|
|
1401
1573
|
def message
|
1402
1574
|
@message || @data[:message]
|
1403
1575
|
end
|
1404
|
-
|
1405
1576
|
end
|
1406
1577
|
|
1407
1578
|
class ResourceInUseException < ServiceError
|
@@ -1417,7 +1588,6 @@ module Aws::SSM
|
|
1417
1588
|
def message
|
1418
1589
|
@message || @data[:message]
|
1419
1590
|
end
|
1420
|
-
|
1421
1591
|
end
|
1422
1592
|
|
1423
1593
|
class ResourceLimitExceededException < ServiceError
|
@@ -1433,7 +1603,6 @@ module Aws::SSM
|
|
1433
1603
|
def message
|
1434
1604
|
@message || @data[:message]
|
1435
1605
|
end
|
1436
|
-
|
1437
1606
|
end
|
1438
1607
|
|
1439
1608
|
class ServiceSettingNotFound < ServiceError
|
@@ -1449,7 +1618,16 @@ module Aws::SSM
|
|
1449
1618
|
def message
|
1450
1619
|
@message || @data[:message]
|
1451
1620
|
end
|
1621
|
+
end
|
1622
|
+
|
1623
|
+
class StatusUnchanged < ServiceError
|
1452
1624
|
|
1625
|
+
# @param [Seahorse::Client::RequestContext] context
|
1626
|
+
# @param [String] message
|
1627
|
+
# @param [Aws::SSM::Types::StatusUnchanged] data
|
1628
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1629
|
+
super(context, message, data)
|
1630
|
+
end
|
1453
1631
|
end
|
1454
1632
|
|
1455
1633
|
class SubTypeCountLimitExceededException < ServiceError
|
@@ -1465,7 +1643,6 @@ module Aws::SSM
|
|
1465
1643
|
def message
|
1466
1644
|
@message || @data[:message]
|
1467
1645
|
end
|
1468
|
-
|
1469
1646
|
end
|
1470
1647
|
|
1471
1648
|
class TargetInUseException < ServiceError
|
@@ -1481,7 +1658,6 @@ module Aws::SSM
|
|
1481
1658
|
def message
|
1482
1659
|
@message || @data[:message]
|
1483
1660
|
end
|
1484
|
-
|
1485
1661
|
end
|
1486
1662
|
|
1487
1663
|
class TargetNotConnected < ServiceError
|
@@ -1497,7 +1673,16 @@ module Aws::SSM
|
|
1497
1673
|
def message
|
1498
1674
|
@message || @data[:message]
|
1499
1675
|
end
|
1676
|
+
end
|
1677
|
+
|
1678
|
+
class TooManyTagsError < ServiceError
|
1500
1679
|
|
1680
|
+
# @param [Seahorse::Client::RequestContext] context
|
1681
|
+
# @param [String] message
|
1682
|
+
# @param [Aws::SSM::Types::TooManyTagsError] data
|
1683
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1684
|
+
super(context, message, data)
|
1685
|
+
end
|
1501
1686
|
end
|
1502
1687
|
|
1503
1688
|
class TooManyUpdates < ServiceError
|
@@ -1513,7 +1698,6 @@ module Aws::SSM
|
|
1513
1698
|
def message
|
1514
1699
|
@message || @data[:message]
|
1515
1700
|
end
|
1516
|
-
|
1517
1701
|
end
|
1518
1702
|
|
1519
1703
|
class TotalSizeLimitExceededException < ServiceError
|
@@ -1529,7 +1713,6 @@ module Aws::SSM
|
|
1529
1713
|
def message
|
1530
1714
|
@message || @data[:message]
|
1531
1715
|
end
|
1532
|
-
|
1533
1716
|
end
|
1534
1717
|
|
1535
1718
|
class UnsupportedCalendarException < ServiceError
|
@@ -1545,7 +1728,6 @@ module Aws::SSM
|
|
1545
1728
|
def message
|
1546
1729
|
@message || @data[:message]
|
1547
1730
|
end
|
1548
|
-
|
1549
1731
|
end
|
1550
1732
|
|
1551
1733
|
class UnsupportedFeatureRequiredException < ServiceError
|
@@ -1561,7 +1743,6 @@ module Aws::SSM
|
|
1561
1743
|
def message
|
1562
1744
|
@message || @data[:message]
|
1563
1745
|
end
|
1564
|
-
|
1565
1746
|
end
|
1566
1747
|
|
1567
1748
|
class UnsupportedInventoryItemContextException < ServiceError
|
@@ -1582,7 +1763,6 @@ module Aws::SSM
|
|
1582
1763
|
def message
|
1583
1764
|
@message || @data[:message]
|
1584
1765
|
end
|
1585
|
-
|
1586
1766
|
end
|
1587
1767
|
|
1588
1768
|
class UnsupportedInventorySchemaVersionException < ServiceError
|
@@ -1598,7 +1778,6 @@ module Aws::SSM
|
|
1598
1778
|
def message
|
1599
1779
|
@message || @data[:message]
|
1600
1780
|
end
|
1601
|
-
|
1602
1781
|
end
|
1603
1782
|
|
1604
1783
|
class UnsupportedOperatingSystem < ServiceError
|
@@ -1614,7 +1793,6 @@ module Aws::SSM
|
|
1614
1793
|
def message
|
1615
1794
|
@message || @data[:message]
|
1616
1795
|
end
|
1617
|
-
|
1618
1796
|
end
|
1619
1797
|
|
1620
1798
|
class UnsupportedParameterType < ServiceError
|
@@ -1630,7 +1808,6 @@ module Aws::SSM
|
|
1630
1808
|
def message
|
1631
1809
|
@message || @data[:message]
|
1632
1810
|
end
|
1633
|
-
|
1634
1811
|
end
|
1635
1812
|
|
1636
1813
|
class UnsupportedPlatformType < ServiceError
|
@@ -1646,7 +1823,6 @@ module Aws::SSM
|
|
1646
1823
|
def message
|
1647
1824
|
@message || @data[:message]
|
1648
1825
|
end
|
1649
|
-
|
1650
1826
|
end
|
1651
1827
|
|
1652
1828
|
end
|