aws-sdk-ssm 1.95.0 → 1.96.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: febaf0c6db9fce4e913a11067e3a00c1517749a48fe42f6ab73e355bae0a8359
4
- data.tar.gz: 1981a5a741289f6d029c0714490342792f4aa296b2cfcd95462b4f353492fb12
3
+ metadata.gz: c9a49c5f7c8fd230a389cbd929bdc633848dfd43303712d84b4894d6cc13a41d
4
+ data.tar.gz: 72e8a1b93ae63ef70a9359dd55cce7a8162fc761a9fdf1e329f0cbd33b507f62
5
5
  SHA512:
6
- metadata.gz: 03fda2577685c4019683efed6e119de3e46c3179b7694f5d29d7e1d64ba2b7a120c5cd143370e465e5540a703384de4db92cf01915e9fc444a9b0e76ef20f0f4
7
- data.tar.gz: 6ca9a7dc6edac5b9a0b886740dab647ca689f9eb9a839a8414ef781d65dfabee8564e5271aec071ee5b358064d230973b6e0e3f47430ba266fd535f347e1b59f
6
+ metadata.gz: 1b9b1e3e606a7b4adfbe7e40da965abe4a7d1be8c748549cd3e5bc7b90dbb7db537006a14854de55c615d9183a7ae7c80f301c12ab47a76e569fc99bfeaf1d07
7
+ data.tar.gz: 7d5af9d613045c2863aea54ac2a166f70cd67f7f2d77bb6981fe23b08c291e76d62f762567232cf2244d694756a83496256d17941f588b70f4e7123f698905f6
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ssm/customizations'
49
49
  # @!group service
50
50
  module Aws::SSM
51
51
 
52
- GEM_VERSION = '1.95.0'
52
+ GEM_VERSION = '1.96.0'
53
53
 
54
54
  end
@@ -6018,6 +6018,13 @@ module Aws::SSM
6018
6018
  # One or more filters. Use a filter to return a more specific list of
6019
6019
  # results.
6020
6020
  #
6021
+ # <note markdown="1"> Filtering associations using the `InstanceID` attribute only returns
6022
+ # legacy associations created using the `InstanceID` attribute.
6023
+ # Associations targeting the instance that are part of the Target
6024
+ # Attributes `ResourceGroup` or `Tags` are not returned.
6025
+ #
6026
+ # </note>
6027
+ #
6021
6028
  # @option params [Integer] :max_results
6022
6029
  # The maximum number of items to return for this call. The call also
6023
6030
  # returns a token that you can specify in a subsequent call to get the
@@ -9782,7 +9789,7 @@ module Aws::SSM
9782
9789
  params: params,
9783
9790
  config: config)
9784
9791
  context[:gem_name] = 'aws-sdk-ssm'
9785
- context[:gem_version] = '1.95.0'
9792
+ context[:gem_version] = '1.96.0'
9786
9793
  Seahorse::Client::Request.new(handlers, context)
9787
9794
  end
9788
9795
 
@@ -620,6 +620,10 @@ module Aws::SSM
620
620
  #
621
621
  # @!attribute [rw] key
622
622
  # The name of the filter.
623
+ #
624
+ # <note markdown="1"> `InstanceId` has been deprecated.
625
+ #
626
+ # </note>
623
627
  # @return [String]
624
628
  #
625
629
  # @!attribute [rw] value
@@ -1149,7 +1153,8 @@ module Aws::SSM
1149
1153
  # @!attribute [rw] key
1150
1154
  # One or more keys to limit the results. Valid filter keys include the
1151
1155
  # following: DocumentNamePrefix, ExecutionStatus, ExecutionId,
1152
- # ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter.
1156
+ # ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter,
1157
+ # TargetResourceGroup.
1153
1158
  # @return [String]
1154
1159
  #
1155
1160
  # @!attribute [rw] values
@@ -10606,6 +10611,13 @@ module Aws::SSM
10606
10611
  # @!attribute [rw] association_filter_list
10607
10612
  # One or more filters. Use a filter to return a more specific list of
10608
10613
  # results.
10614
+ #
10615
+ # <note markdown="1"> Filtering associations using the `InstanceID` attribute only returns
10616
+ # legacy associations created using the `InstanceID` attribute.
10617
+ # Associations targeting the instance that are part of the Target
10618
+ # Attributes `ResourceGroup` or `Tags` are not returned.
10619
+ #
10620
+ # </note>
10609
10621
  # @return [Array<Types::AssociationFilter>]
10610
10622
  #
10611
10623
  # @!attribute [rw] max_results
@@ -13095,7 +13107,31 @@ module Aws::SSM
13095
13107
  include Aws::Structure
13096
13108
  end
13097
13109
 
13098
- # The parameter exceeded the maximum number of allowed versions.
13110
+ # Parameter Store retains the 100 most recently created versions of a
13111
+ # parameter. After this number of versions has been created, Parameter
13112
+ # Store deletes the oldest version when a new one is created. However,
13113
+ # if the oldest version has a *label* attached to it, Parameter Store
13114
+ # will not delete the version and instead presents this error message:
13115
+ #
13116
+ # `An error occurred (ParameterMaxVersionLimitExceeded) when calling the
13117
+ # PutParameter operation: You attempted to create a new version of
13118
+ # parameter-name by calling the PutParameter API with the overwrite
13119
+ # flag. Version version-number, the oldest version, can't be deleted
13120
+ # because it has a label associated with it. Move the label to another
13121
+ # version of the parameter, and try again.`
13122
+ #
13123
+ # This safeguard is to prevent parameter versions with mission critical
13124
+ # labels assigned to them from being deleted. To continue creating new
13125
+ # parameters, first move the label from the oldest version of the
13126
+ # parameter to a newer one for use in your operations. For information
13127
+ # about moving parameter labels, see [Move a parameter label
13128
+ # (console)][1] or [Move a parameter label (CLI) ][2] in the *AWS
13129
+ # Systems Manager User Guide*.
13130
+ #
13131
+ #
13132
+ #
13133
+ # [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-console-move
13134
+ # [2]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-cli-move
13099
13135
  #
13100
13136
  # @!attribute [rw] message
13101
13137
  # @return [String]
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.95.0
4
+ version: 1.96.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-10-19 00:00:00.000000000 Z
11
+ date: 2020-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core