aws-sdk-ssm 1.55.0 → 1.56.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 +1 -1
- data/lib/aws-sdk-ssm/client.rb +16 -4
- data/lib/aws-sdk-ssm/client_api.rb +2 -0
- data/lib/aws-sdk-ssm/types.rb +20 -10
- 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: c83ca1ab1d61452c55b19ee09572e002f7b933fc
|
4
|
+
data.tar.gz: 16eadfb229576c51c964b5e19536fbbec09d1388
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41f25002fb1e01f39c3875b61070ea5eeb590cdc1335e1f38a6a7bba9abe899e8ee32f48208ed649e29235fa32ce21b6e5b98d3bc34c52dae0a878f58b4ed908
|
7
|
+
data.tar.gz: 70787c659c4fcdb07bd417d7a66c6e6ad842d93841334115af54e06a2c6d1526298f71b213fa923a1f8c476aa2a23984c5ab6378b07c359073c40e56ca69a50d
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -5395,7 +5395,7 @@ module Aws::SSM
|
|
5395
5395
|
# @option params [Integer] :parameter_version
|
5396
5396
|
# The specific version of the parameter on which you want to attach one
|
5397
5397
|
# or more labels. If no version is specified, the system attaches the
|
5398
|
-
# label to the latest version.
|
5398
|
+
# label to the latest version.
|
5399
5399
|
#
|
5400
5400
|
# @option params [required, Array<String>] :labels
|
5401
5401
|
# One or more labels to attach to the specified parameter version.
|
@@ -5403,6 +5403,7 @@ module Aws::SSM
|
|
5403
5403
|
# @return [Types::LabelParameterVersionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5404
5404
|
#
|
5405
5405
|
# * {Types::LabelParameterVersionResult#invalid_labels #invalid_labels} => Array<String>
|
5406
|
+
# * {Types::LabelParameterVersionResult#parameter_version #parameter_version} => Integer
|
5406
5407
|
#
|
5407
5408
|
# @example Request syntax with placeholder values
|
5408
5409
|
#
|
@@ -5416,6 +5417,7 @@ module Aws::SSM
|
|
5416
5417
|
#
|
5417
5418
|
# resp.invalid_labels #=> Array
|
5418
5419
|
# resp.invalid_labels[0] #=> String
|
5420
|
+
# resp.parameter_version #=> Integer
|
5419
5421
|
#
|
5420
5422
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/LabelParameterVersion AWS API Documentation
|
5421
5423
|
#
|
@@ -6607,8 +6609,8 @@ module Aws::SSM
|
|
6607
6609
|
# current Region.
|
6608
6610
|
#
|
6609
6611
|
# For more information about configuring the default tier option, see
|
6610
|
-
# [Specifying a Default Parameter Tier][2] in the AWS Systems Manager
|
6611
|
-
# User Guide
|
6612
|
+
# [Specifying a Default Parameter Tier][2] in the *AWS Systems Manager
|
6613
|
+
# User Guide*.
|
6612
6614
|
#
|
6613
6615
|
#
|
6614
6616
|
#
|
@@ -6646,6 +6648,7 @@ module Aws::SSM
|
|
6646
6648
|
# @return [Types::PutParameterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6647
6649
|
#
|
6648
6650
|
# * {Types::PutParameterResult#version #version} => Integer
|
6651
|
+
# * {Types::PutParameterResult#tier #tier} => String
|
6649
6652
|
#
|
6650
6653
|
# @example Request syntax with placeholder values
|
6651
6654
|
#
|
@@ -6670,6 +6673,7 @@ module Aws::SSM
|
|
6670
6673
|
# @example Response structure
|
6671
6674
|
#
|
6672
6675
|
# resp.version #=> Integer
|
6676
|
+
# resp.tier #=> String, one of "Standard", "Advanced", "Intelligent-Tiering"
|
6673
6677
|
#
|
6674
6678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameter AWS API Documentation
|
6675
6679
|
#
|
@@ -7684,6 +7688,14 @@ module Aws::SSM
|
|
7684
7688
|
# version, the document version, schedule, parameters, and Amazon S3
|
7685
7689
|
# output.
|
7686
7690
|
#
|
7691
|
+
# In order to call this API action, your IAM user account, group, or
|
7692
|
+
# role must be configured with permission to call the
|
7693
|
+
# DescribeAssociation API action. If you don't have permission to call
|
7694
|
+
# DescribeAssociation, then you receive the following error: `An error
|
7695
|
+
# occurred (AccessDeniedException) when calling the UpdateAssociation
|
7696
|
+
# operation: User: <user_arn> is not authorized to perform:
|
7697
|
+
# ssm:DescribeAssociation on resource: <resource_arn>`
|
7698
|
+
#
|
7687
7699
|
# When you update an association, the association immediately runs
|
7688
7700
|
# against the specified targets.
|
7689
7701
|
#
|
@@ -8908,7 +8920,7 @@ module Aws::SSM
|
|
8908
8920
|
params: params,
|
8909
8921
|
config: config)
|
8910
8922
|
context[:gem_name] = 'aws-sdk-ssm'
|
8911
|
-
context[:gem_version] = '1.
|
8923
|
+
context[:gem_version] = '1.56.0'
|
8912
8924
|
Seahorse::Client::Request.new(handlers, context)
|
8913
8925
|
end
|
8914
8926
|
|
@@ -2655,6 +2655,7 @@ module Aws::SSM
|
|
2655
2655
|
LabelParameterVersionRequest.struct_class = Types::LabelParameterVersionRequest
|
2656
2656
|
|
2657
2657
|
LabelParameterVersionResult.add_member(:invalid_labels, Shapes::ShapeRef.new(shape: ParameterLabelList, location_name: "InvalidLabels"))
|
2658
|
+
LabelParameterVersionResult.add_member(:parameter_version, Shapes::ShapeRef.new(shape: PSParameterVersion, location_name: "ParameterVersion"))
|
2658
2659
|
LabelParameterVersionResult.struct_class = Types::LabelParameterVersionResult
|
2659
2660
|
|
2660
2661
|
ListAssociationVersionsRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location_name: "AssociationId"))
|
@@ -3291,6 +3292,7 @@ module Aws::SSM
|
|
3291
3292
|
PutParameterRequest.struct_class = Types::PutParameterRequest
|
3292
3293
|
|
3293
3294
|
PutParameterResult.add_member(:version, Shapes::ShapeRef.new(shape: PSParameterVersion, location_name: "Version"))
|
3295
|
+
PutParameterResult.add_member(:tier, Shapes::ShapeRef.new(shape: ParameterTier, location_name: "Tier"))
|
3294
3296
|
PutParameterResult.struct_class = Types::PutParameterResult
|
3295
3297
|
|
3296
3298
|
Regions.member = Shapes::ShapeRef.new(shape: Region)
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -8206,11 +8206,11 @@ module Aws::SSM
|
|
8206
8206
|
# @return [String]
|
8207
8207
|
#
|
8208
8208
|
# @!attribute [rw] is_latest_version
|
8209
|
-
# Indicates whether latest version of SSM Agent is running on your
|
8210
|
-
#
|
8211
|
-
#
|
8212
|
-
#
|
8213
|
-
#
|
8209
|
+
# Indicates whether the latest version of SSM Agent is running on your
|
8210
|
+
# Linux Managed Instance. This field does not indicate whether or not
|
8211
|
+
# the latest version is installed on Windows managed instances,
|
8212
|
+
# because some older versions of Windows Server use the EC2Config
|
8213
|
+
# service to process SSM requests.
|
8214
8214
|
# @return [Boolean]
|
8215
8215
|
#
|
8216
8216
|
# @!attribute [rw] platform_type
|
@@ -9530,7 +9530,7 @@ module Aws::SSM
|
|
9530
9530
|
# @!attribute [rw] parameter_version
|
9531
9531
|
# The specific version of the parameter on which you want to attach
|
9532
9532
|
# one or more labels. If no version is specified, the system attaches
|
9533
|
-
# the label to the latest version.
|
9533
|
+
# the label to the latest version.
|
9534
9534
|
# @return [Integer]
|
9535
9535
|
#
|
9536
9536
|
# @!attribute [rw] labels
|
@@ -9556,10 +9556,15 @@ module Aws::SSM
|
|
9556
9556
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html
|
9557
9557
|
# @return [Array<String>]
|
9558
9558
|
#
|
9559
|
+
# @!attribute [rw] parameter_version
|
9560
|
+
# The version of the parameter that has been labeled.
|
9561
|
+
# @return [Integer]
|
9562
|
+
#
|
9559
9563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/LabelParameterVersionResult AWS API Documentation
|
9560
9564
|
#
|
9561
9565
|
class LabelParameterVersionResult < Struct.new(
|
9562
|
-
:invalid_labels
|
9566
|
+
:invalid_labels,
|
9567
|
+
:parameter_version)
|
9563
9568
|
include Aws::Structure
|
9564
9569
|
end
|
9565
9570
|
|
@@ -12950,8 +12955,8 @@ module Aws::SSM
|
|
12950
12955
|
# the current Region.
|
12951
12956
|
#
|
12952
12957
|
# For more information about configuring the default tier option, see
|
12953
|
-
# [Specifying a Default Parameter Tier][2] in the AWS Systems Manager
|
12954
|
-
# User Guide
|
12958
|
+
# [Specifying a Default Parameter Tier][2] in the *AWS Systems Manager
|
12959
|
+
# User Guide*.
|
12955
12960
|
#
|
12956
12961
|
#
|
12957
12962
|
#
|
@@ -13015,10 +13020,15 @@ module Aws::SSM
|
|
13015
13020
|
# called.
|
13016
13021
|
# @return [Integer]
|
13017
13022
|
#
|
13023
|
+
# @!attribute [rw] tier
|
13024
|
+
# The tier assigned to the parameter.
|
13025
|
+
# @return [String]
|
13026
|
+
#
|
13018
13027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameterResult AWS API Documentation
|
13019
13028
|
#
|
13020
13029
|
class PutParameterResult < Struct.new(
|
13021
|
-
:version
|
13030
|
+
:version,
|
13031
|
+
:tier)
|
13022
13032
|
include Aws::Structure
|
13023
13033
|
end
|
13024
13034
|
|
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.56.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: 2019-
|
11
|
+
date: 2019-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|