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
data/lib/aws-sdk-ssm/resource.rb
CHANGED
@@ -6,6 +6,13 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::SSM
|
9
|
+
# This class provides a resource oriented interface for SSM.
|
10
|
+
# To create a resource object:
|
11
|
+
# resource = Aws::SSM::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::SSM::Client.new(region: 'us-west-2')
|
15
|
+
# resource = Aws::SSM::Resource.new(client: client)
|
9
16
|
class Resource
|
10
17
|
|
11
18
|
# @param options ({})
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -173,6 +173,13 @@ module Aws::SSM
|
|
173
173
|
include Aws::Structure
|
174
174
|
end
|
175
175
|
|
176
|
+
# You must disassociate a document from all instances before you can
|
177
|
+
# delete it.
|
178
|
+
#
|
179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociatedInstances AWS API Documentation
|
180
|
+
#
|
181
|
+
class AssociatedInstances < Aws::EmptyStructure; end
|
182
|
+
|
176
183
|
# Describes an association of a Systems Manager document and an
|
177
184
|
# instance.
|
178
185
|
#
|
@@ -235,6 +242,12 @@ module Aws::SSM
|
|
235
242
|
include Aws::Structure
|
236
243
|
end
|
237
244
|
|
245
|
+
# The specified association already exists.
|
246
|
+
#
|
247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationAlreadyExists AWS API Documentation
|
248
|
+
#
|
249
|
+
class AssociationAlreadyExists < Aws::EmptyStructure; end
|
250
|
+
|
238
251
|
# Describes the parameters for a document.
|
239
252
|
#
|
240
253
|
# @!attribute [rw] name
|
@@ -582,6 +595,12 @@ module Aws::SSM
|
|
582
595
|
include Aws::Structure
|
583
596
|
end
|
584
597
|
|
598
|
+
# You can have at most 2,000 active associations.
|
599
|
+
#
|
600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationLimitExceeded AWS API Documentation
|
601
|
+
#
|
602
|
+
class AssociationLimitExceeded < Aws::EmptyStructure; end
|
603
|
+
|
585
604
|
# Information about the association.
|
586
605
|
#
|
587
606
|
# @!attribute [rw] status
|
@@ -6397,6 +6416,12 @@ module Aws::SSM
|
|
6397
6416
|
include Aws::Structure
|
6398
6417
|
end
|
6399
6418
|
|
6419
|
+
# You cannot specify an instance ID in more than one association.
|
6420
|
+
#
|
6421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DuplicateInstanceId AWS API Documentation
|
6422
|
+
#
|
6423
|
+
class DuplicateInstanceId < Aws::EmptyStructure; end
|
6424
|
+
|
6400
6425
|
# The EffectivePatch structure defines metadata about a patch along with
|
6401
6426
|
# the approval state of the patch in a particular patch baseline. The
|
6402
6427
|
# approval state includes information about whether the patch is
|
@@ -8959,6 +8984,10 @@ module Aws::SSM
|
|
8959
8984
|
include Aws::Structure
|
8960
8985
|
end
|
8961
8986
|
|
8987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidCommandId AWS API Documentation
|
8988
|
+
#
|
8989
|
+
class InvalidCommandId < Aws::EmptyStructure; end
|
8990
|
+
|
8962
8991
|
# One or more of the parameters specified for the delete operation is
|
8963
8992
|
# not valid. Verify all parameters and try again.
|
8964
8993
|
#
|
@@ -9078,6 +9107,12 @@ module Aws::SSM
|
|
9078
9107
|
include Aws::Structure
|
9079
9108
|
end
|
9080
9109
|
|
9110
|
+
# The specified key is not valid.
|
9111
|
+
#
|
9112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidFilterKey AWS API Documentation
|
9113
|
+
#
|
9114
|
+
class InvalidFilterKey < Aws::EmptyStructure; end
|
9115
|
+
|
9081
9116
|
# The specified filter option is not valid. Valid options are Equals and
|
9082
9117
|
# BeginsWith. For Path filter, valid options are Recursive and OneLevel.
|
9083
9118
|
#
|
@@ -9244,6 +9279,18 @@ module Aws::SSM
|
|
9244
9279
|
include Aws::Structure
|
9245
9280
|
end
|
9246
9281
|
|
9282
|
+
# The S3 bucket does not exist.
|
9283
|
+
#
|
9284
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidOutputFolder AWS API Documentation
|
9285
|
+
#
|
9286
|
+
class InvalidOutputFolder < Aws::EmptyStructure; end
|
9287
|
+
|
9288
|
+
# The output location is not valid or does not exist.
|
9289
|
+
#
|
9290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidOutputLocation AWS API Documentation
|
9291
|
+
#
|
9292
|
+
class InvalidOutputLocation < Aws::EmptyStructure; end
|
9293
|
+
|
9247
9294
|
# You must specify values for all required parameters in the Systems
|
9248
9295
|
# Manager document. You can only supply values to parameters defined in
|
9249
9296
|
# the Systems Manager document.
|
@@ -9271,6 +9318,12 @@ module Aws::SSM
|
|
9271
9318
|
include Aws::Structure
|
9272
9319
|
end
|
9273
9320
|
|
9321
|
+
# The plugin name is not valid.
|
9322
|
+
#
|
9323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidPluginName AWS API Documentation
|
9324
|
+
#
|
9325
|
+
class InvalidPluginName < Aws::EmptyStructure; end
|
9326
|
+
|
9274
9327
|
# A policy attribute or its value is invalid.
|
9275
9328
|
#
|
9276
9329
|
# @!attribute [rw] message
|
@@ -9297,6 +9350,20 @@ module Aws::SSM
|
|
9297
9350
|
include Aws::Structure
|
9298
9351
|
end
|
9299
9352
|
|
9353
|
+
# The resource ID is not valid. Verify that you entered the correct ID
|
9354
|
+
# and try again.
|
9355
|
+
#
|
9356
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidResourceId AWS API Documentation
|
9357
|
+
#
|
9358
|
+
class InvalidResourceId < Aws::EmptyStructure; end
|
9359
|
+
|
9360
|
+
# The resource type is not valid. For example, if you are attempting to
|
9361
|
+
# tag an instance, the instance must be a registered, managed instance.
|
9362
|
+
#
|
9363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidResourceType AWS API Documentation
|
9364
|
+
#
|
9365
|
+
class InvalidResourceType < Aws::EmptyStructure; end
|
9366
|
+
|
9300
9367
|
# The specified inventory item result attribute is not valid.
|
9301
9368
|
#
|
9302
9369
|
# @!attribute [rw] message
|
@@ -9795,6 +9862,13 @@ module Aws::SSM
|
|
9795
9862
|
include Aws::Structure
|
9796
9863
|
end
|
9797
9864
|
|
9865
|
+
# The command ID and instance ID you specified did not match any
|
9866
|
+
# invocations. Verify the command ID and the instance ID and try again.
|
9867
|
+
#
|
9868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvocationDoesNotExist AWS API Documentation
|
9869
|
+
#
|
9870
|
+
class InvocationDoesNotExist < Aws::EmptyStructure; end
|
9871
|
+
|
9798
9872
|
# The inventory item has invalid content.
|
9799
9873
|
#
|
9800
9874
|
# @!attribute [rw] type_name
|
@@ -15368,6 +15442,12 @@ module Aws::SSM
|
|
15368
15442
|
include Aws::Structure
|
15369
15443
|
end
|
15370
15444
|
|
15445
|
+
# The updated status is the same as the current status.
|
15446
|
+
#
|
15447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StatusUnchanged AWS API Documentation
|
15448
|
+
#
|
15449
|
+
class StatusUnchanged < Aws::EmptyStructure; end
|
15450
|
+
|
15371
15451
|
# Detailed information about an the execution state of an Automation
|
15372
15452
|
# step.
|
15373
15453
|
#
|
@@ -15792,6 +15872,13 @@ module Aws::SSM
|
|
15792
15872
|
include Aws::Structure
|
15793
15873
|
end
|
15794
15874
|
|
15875
|
+
# The `Targets` parameter includes too many tags. Remove one or more
|
15876
|
+
# tags and try the command again.
|
15877
|
+
#
|
15878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TooManyTagsError AWS API Documentation
|
15879
|
+
#
|
15880
|
+
class TooManyTagsError < Aws::EmptyStructure; end
|
15881
|
+
|
15795
15882
|
# There are concurrent updates for a resource that supports one update
|
15796
15883
|
# at a time.
|
15797
15884
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.72.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-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|