aws-sdk-ssm 1.54.0 → 1.55.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 +80 -28
- data/lib/aws-sdk-ssm/types.rb +76 -24
- 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: 0767bc94406c16052360d1d7f9c3464e3d88ae43
|
4
|
+
data.tar.gz: 22973bb75140ec5cb3752492db7b9bf602d91f62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d31c1cb613d3cf8de5a23a82e951884b9b6951fb3f0b08b5087dec25cadf03be0a6e80041d05f77bb169af1527b391fd4a35f7081acc9776cc6a62bf6e8c421
|
7
|
+
data.tar.gz: 81378da67a9c8b3626dac640fce462489431e2e9d07b81dd16bb2e7f317120fc31c5dd50e8572f541f6be2889e4f8bdeecb1509414601a64e1510c53946a71d9
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -547,11 +547,22 @@ module Aws::SSM
|
|
547
547
|
# @option params [String] :instance_id
|
548
548
|
# The instance ID.
|
549
549
|
#
|
550
|
+
# <note markdown="1"> `InstanceId` has been deprecated. To specify an instance ID for an
|
551
|
+
# association, use the `Targets` parameter. If you use the parameter
|
552
|
+
# `InstanceId`, you cannot use the parameters `AssociationName`,
|
553
|
+
# `DocumentVersion`, `MaxErrors`, `MaxConcurrency`, `OutputLocation`, or
|
554
|
+
# `ScheduleExpression`. To use these parameters, you must use the
|
555
|
+
# `Targets` parameter.
|
556
|
+
#
|
557
|
+
# </note>
|
558
|
+
#
|
550
559
|
# @option params [Hash<String,Array>] :parameters
|
551
560
|
# The parameters for the runtime configuration of the document.
|
552
561
|
#
|
553
562
|
# @option params [Array<Types::Target>] :targets
|
554
|
-
# The targets (either instances or tags) for the association.
|
563
|
+
# The targets (either instances or tags) for the association. You must
|
564
|
+
# specify a value for `Targets` if you don't specify a value for
|
565
|
+
# `InstanceId`.
|
555
566
|
#
|
556
567
|
# @option params [String] :schedule_expression
|
557
568
|
# A cron expression when the association will be applied to the
|
@@ -2856,11 +2867,9 @@ module Aws::SSM
|
|
2856
2867
|
# retrieved.
|
2857
2868
|
#
|
2858
2869
|
# @option params [Array<Types::PatchOrchestratorFilter>] :filters
|
2859
|
-
# Each entry in the array is a structure
|
2860
|
-
#
|
2861
|
-
#
|
2862
|
-
#
|
2863
|
-
# Values (array of strings, each string between 1 and 256 characters)
|
2870
|
+
# An array of structures. Each entry in the array is a structure
|
2871
|
+
# containing a Key, Value combination. Valid values for Key are
|
2872
|
+
# `Classification` \| `KBId` \| `Severity` \| `State`.
|
2864
2873
|
#
|
2865
2874
|
# @option params [String] :next_token
|
2866
2875
|
# The token for the next set of items to return. (You received this
|
@@ -3669,7 +3678,7 @@ module Aws::SSM
|
|
3669
3678
|
# resp.parameters[0].description #=> String
|
3670
3679
|
# resp.parameters[0].allowed_pattern #=> String
|
3671
3680
|
# resp.parameters[0].version #=> Integer
|
3672
|
-
# resp.parameters[0].tier #=> String, one of "Standard", "Advanced"
|
3681
|
+
# resp.parameters[0].tier #=> String, one of "Standard", "Advanced", "Intelligent-Tiering"
|
3673
3682
|
# resp.parameters[0].policies #=> Array
|
3674
3683
|
# resp.parameters[0].policies[0].policy_text #=> String
|
3675
3684
|
# resp.parameters[0].policies[0].policy_type #=> String
|
@@ -5025,7 +5034,7 @@ module Aws::SSM
|
|
5025
5034
|
# resp.parameters[0].version #=> Integer
|
5026
5035
|
# resp.parameters[0].labels #=> Array
|
5027
5036
|
# resp.parameters[0].labels[0] #=> String
|
5028
|
-
# resp.parameters[0].tier #=> String, one of "Standard", "Advanced"
|
5037
|
+
# resp.parameters[0].tier #=> String, one of "Standard", "Advanced", "Intelligent-Tiering"
|
5029
5038
|
# resp.parameters[0].policies #=> Array
|
5030
5039
|
# resp.parameters[0].policies[0].policy_text #=> String
|
5031
5040
|
# resp.parameters[0].policies[0].policy_type #=> String
|
@@ -6532,21 +6541,22 @@ module Aws::SSM
|
|
6532
6541
|
# </note>
|
6533
6542
|
#
|
6534
6543
|
# @option params [String] :tier
|
6544
|
+
# The parameter tier to assign to a parameter.
|
6545
|
+
#
|
6535
6546
|
# Parameter Store offers a standard tier and an advanced tier for
|
6536
|
-
# parameters. Standard parameters have a
|
6537
|
-
# be configured to use parameter policies. You can create a
|
6538
|
-
# 10,000 standard parameters
|
6539
|
-
# parameters are offered at no additional cost.
|
6540
|
-
#
|
6541
|
-
# Advanced parameters have a
|
6542
|
-
# to use parameter policies. You can create a maximum of
|
6543
|
-
# advanced parameters
|
6544
|
-
# incur a charge.
|
6545
|
-
#
|
6546
|
-
#
|
6547
|
-
#
|
6548
|
-
#
|
6549
|
-
# you can't revert an advanced parameter to a standard parameter.
|
6547
|
+
# parameters. Standard parameters have a content size limit of 4 KB and
|
6548
|
+
# can't be configured to use parameter policies. You can create a
|
6549
|
+
# maximum of 10,000 standard parameters for each Region in an AWS
|
6550
|
+
# account. Standard parameters are offered at no additional cost.
|
6551
|
+
#
|
6552
|
+
# Advanced parameters have a content size limit of 8 KB and can be
|
6553
|
+
# configured to use parameter policies. You can create a maximum of
|
6554
|
+
# 100,000 advanced parameters for each Region in an AWS account.
|
6555
|
+
# Advanced parameters incur a charge. For more information, see [About
|
6556
|
+
# Advanced Parameters][1] in the *AWS Systems Manager User Guide*.
|
6557
|
+
#
|
6558
|
+
# You can change a standard parameter to an advanced parameter any time.
|
6559
|
+
# But you can't revert an advanced parameter to a standard parameter.
|
6550
6560
|
# Reverting an advanced parameter to a standard parameter would result
|
6551
6561
|
# in data loss because the system would truncate the size of the
|
6552
6562
|
# parameter from 8 KB to 4 KB. Reverting would also remove any policies
|
@@ -6555,13 +6565,55 @@ module Aws::SSM
|
|
6555
6565
|
#
|
6556
6566
|
# If you no longer need an advanced parameter, or if you no longer want
|
6557
6567
|
# to incur charges for an advanced parameter, you must delete it and
|
6558
|
-
# recreate it as a new standard parameter.
|
6559
|
-
#
|
6560
|
-
#
|
6568
|
+
# recreate it as a new standard parameter.
|
6569
|
+
#
|
6570
|
+
# **Using the Default Tier Configuration**
|
6571
|
+
#
|
6572
|
+
# In `PutParameter` requests, you can specify the tier to create the
|
6573
|
+
# parameter in. Whenever you specify a tier in the request, Parameter
|
6574
|
+
# Store creates or updates the parameter according to that request.
|
6575
|
+
# However, if you do not specify a tier in a request, Parameter Store
|
6576
|
+
# assigns the tier based on the current Parameter Store default tier
|
6577
|
+
# configuration.
|
6578
|
+
#
|
6579
|
+
# The default tier when you begin using Parameter Store is the
|
6580
|
+
# standard-parameter tier. If you use the advanced-parameter tier, you
|
6581
|
+
# can specify one of the following as the default:
|
6582
|
+
#
|
6583
|
+
# * **Advanced**\: With this option, Parameter Store evaluates all
|
6584
|
+
# requests as advanced parameters.
|
6585
|
+
#
|
6586
|
+
# * **Intelligent-Tiering**\: With this option, Parameter Store
|
6587
|
+
# evaluates each request to determine if the parameter is standard or
|
6588
|
+
# advanced.
|
6589
|
+
#
|
6590
|
+
# If the request doesn't include any options that require an advanced
|
6591
|
+
# parameter, the parameter is created in the standard-parameter tier.
|
6592
|
+
# If one or more options requiring an advanced parameter are included
|
6593
|
+
# in the request, Parameter Store create a parameter in the
|
6594
|
+
# advanced-parameter tier.
|
6595
|
+
#
|
6596
|
+
# This approach helps control your parameter-related costs by always
|
6597
|
+
# creating standard parameters unless an advanced parameter is
|
6598
|
+
# necessary.
|
6599
|
+
#
|
6600
|
+
# Options that require an advanced parameter include the following:
|
6601
|
+
#
|
6602
|
+
# * The content size of the parameter is more than 4 KB.
|
6603
|
+
#
|
6604
|
+
# * The parameter uses a parameter policy.
|
6605
|
+
#
|
6606
|
+
# * More than 10,000 parameters already exist in your AWS account in the
|
6607
|
+
# current Region.
|
6608
|
+
#
|
6609
|
+
# 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.
|
6561
6612
|
#
|
6562
6613
|
#
|
6563
6614
|
#
|
6564
6615
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-advanced-parameters.html
|
6616
|
+
# [2]: http://docs.aws.amazon.com/systems-manager/latest/userguide/ps-default-tier.html
|
6565
6617
|
#
|
6566
6618
|
# @option params [String] :policies
|
6567
6619
|
# One or more policies to apply to a parameter. This action takes a JSON
|
@@ -6611,7 +6663,7 @@ module Aws::SSM
|
|
6611
6663
|
# value: "TagValue", # required
|
6612
6664
|
# },
|
6613
6665
|
# ],
|
6614
|
-
# tier: "Standard", # accepts Standard, Advanced
|
6666
|
+
# tier: "Standard", # accepts Standard, Advanced, Intelligent-Tiering
|
6615
6667
|
# policies: "ParameterPolicies",
|
6616
6668
|
# })
|
6617
6669
|
#
|
@@ -7898,7 +7950,7 @@ module Aws::SSM
|
|
7898
7950
|
# changed.
|
7899
7951
|
#
|
7900
7952
|
# @option params [String] :document_version
|
7901
|
-
# The version of the document that you want to update.
|
7953
|
+
# (Required) The version of the document that you want to update.
|
7902
7954
|
#
|
7903
7955
|
# @option params [String] :document_format
|
7904
7956
|
# Specify the document format for the new document version. Systems
|
@@ -8856,7 +8908,7 @@ module Aws::SSM
|
|
8856
8908
|
params: params,
|
8857
8909
|
config: config)
|
8858
8910
|
context[:gem_name] = 'aws-sdk-ssm'
|
8859
|
-
context[:gem_version] = '1.
|
8911
|
+
context[:gem_version] = '1.55.0'
|
8860
8912
|
Seahorse::Client::Request.new(handlers, context)
|
8861
8913
|
end
|
8862
8914
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -2479,6 +2479,15 @@ module Aws::SSM
|
|
2479
2479
|
#
|
2480
2480
|
# @!attribute [rw] instance_id
|
2481
2481
|
# The instance ID.
|
2482
|
+
#
|
2483
|
+
# <note markdown="1"> `InstanceId` has been deprecated. To specify an instance ID for an
|
2484
|
+
# association, use the `Targets` parameter. If you use the parameter
|
2485
|
+
# `InstanceId`, you cannot use the parameters `AssociationName`,
|
2486
|
+
# `DocumentVersion`, `MaxErrors`, `MaxConcurrency`, `OutputLocation`,
|
2487
|
+
# or `ScheduleExpression`. To use these parameters, you must use the
|
2488
|
+
# `Targets` parameter.
|
2489
|
+
#
|
2490
|
+
# </note>
|
2482
2491
|
# @return [String]
|
2483
2492
|
#
|
2484
2493
|
# @!attribute [rw] parameters
|
@@ -2486,7 +2495,9 @@ module Aws::SSM
|
|
2486
2495
|
# @return [Hash<String,Array<String>>]
|
2487
2496
|
#
|
2488
2497
|
# @!attribute [rw] targets
|
2489
|
-
# The targets (either instances or tags) for the association.
|
2498
|
+
# The targets (either instances or tags) for the association. You must
|
2499
|
+
# specify a value for `Targets` if you don't specify a value for
|
2500
|
+
# `InstanceId`.
|
2490
2501
|
# @return [Array<Types::Target>]
|
2491
2502
|
#
|
2492
2503
|
# @!attribute [rw] schedule_expression
|
@@ -4568,11 +4579,9 @@ module Aws::SSM
|
|
4568
4579
|
# @return [String]
|
4569
4580
|
#
|
4570
4581
|
# @!attribute [rw] filters
|
4571
|
-
# Each entry in the array is a structure
|
4572
|
-
#
|
4573
|
-
#
|
4574
|
-
#
|
4575
|
-
# Values (array of strings, each string between 1 and 256 characters)
|
4582
|
+
# An array of structures. Each entry in the array is a structure
|
4583
|
+
# containing a Key, Value combination. Valid values for Key are
|
4584
|
+
# `Classification` \| `KBId` \| `Severity` \| `State`.
|
4576
4585
|
# @return [Array<Types::PatchOrchestratorFilter>]
|
4577
4586
|
#
|
4578
4587
|
# @!attribute [rw] next_token
|
@@ -12754,7 +12763,7 @@ module Aws::SSM
|
|
12754
12763
|
# value: "TagValue", # required
|
12755
12764
|
# },
|
12756
12765
|
# ],
|
12757
|
-
# tier: "Standard", # accepts Standard, Advanced
|
12766
|
+
# tier: "Standard", # accepts Standard, Advanced, Intelligent-Tiering
|
12758
12767
|
# policies: "ParameterPolicies",
|
12759
12768
|
# }
|
12760
12769
|
#
|
@@ -12875,20 +12884,21 @@ module Aws::SSM
|
|
12875
12884
|
# @return [Array<Types::Tag>]
|
12876
12885
|
#
|
12877
12886
|
# @!attribute [rw] tier
|
12887
|
+
# The parameter tier to assign to a parameter.
|
12888
|
+
#
|
12878
12889
|
# Parameter Store offers a standard tier and an advanced tier for
|
12879
|
-
# parameters. Standard parameters have a
|
12880
|
-
# can't be configured to use parameter policies. You can create a
|
12881
|
-
# maximum of 10,000 standard parameters
|
12882
|
-
# Standard parameters are offered at no additional cost.
|
12883
|
-
#
|
12884
|
-
# Advanced parameters have a
|
12885
|
-
# to use parameter policies. You can create a maximum of
|
12886
|
-
# advanced parameters
|
12887
|
-
# incur a charge.
|
12888
|
-
#
|
12889
|
-
#
|
12890
|
-
#
|
12891
|
-
# can change a standard parameter to an advanced parameter at any
|
12890
|
+
# parameters. Standard parameters have a content size limit of 4 KB
|
12891
|
+
# and can't be configured to use parameter policies. You can create a
|
12892
|
+
# maximum of 10,000 standard parameters for each Region in an AWS
|
12893
|
+
# account. Standard parameters are offered at no additional cost.
|
12894
|
+
#
|
12895
|
+
# Advanced parameters have a content size limit of 8 KB and can be
|
12896
|
+
# configured to use parameter policies. You can create a maximum of
|
12897
|
+
# 100,000 advanced parameters for each Region in an AWS account.
|
12898
|
+
# Advanced parameters incur a charge. For more information, see [About
|
12899
|
+
# Advanced Parameters][1] in the *AWS Systems Manager User Guide*.
|
12900
|
+
#
|
12901
|
+
# You can change a standard parameter to an advanced parameter any
|
12892
12902
|
# time. But you can't revert an advanced parameter to a standard
|
12893
12903
|
# parameter. Reverting an advanced parameter to a standard parameter
|
12894
12904
|
# would result in data loss because the system would truncate the size
|
@@ -12898,13 +12908,55 @@ module Aws::SSM
|
|
12898
12908
|
#
|
12899
12909
|
# If you no longer need an advanced parameter, or if you no longer
|
12900
12910
|
# want to incur charges for an advanced parameter, you must delete it
|
12901
|
-
# and recreate it as a new standard parameter.
|
12902
|
-
#
|
12903
|
-
#
|
12911
|
+
# and recreate it as a new standard parameter.
|
12912
|
+
#
|
12913
|
+
# **Using the Default Tier Configuration**
|
12914
|
+
#
|
12915
|
+
# In `PutParameter` requests, you can specify the tier to create the
|
12916
|
+
# parameter in. Whenever you specify a tier in the request, Parameter
|
12917
|
+
# Store creates or updates the parameter according to that request.
|
12918
|
+
# However, if you do not specify a tier in a request, Parameter Store
|
12919
|
+
# assigns the tier based on the current Parameter Store default tier
|
12920
|
+
# configuration.
|
12921
|
+
#
|
12922
|
+
# The default tier when you begin using Parameter Store is the
|
12923
|
+
# standard-parameter tier. If you use the advanced-parameter tier, you
|
12924
|
+
# can specify one of the following as the default:
|
12925
|
+
#
|
12926
|
+
# * **Advanced**\: With this option, Parameter Store evaluates all
|
12927
|
+
# requests as advanced parameters.
|
12928
|
+
#
|
12929
|
+
# * **Intelligent-Tiering**\: With this option, Parameter Store
|
12930
|
+
# evaluates each request to determine if the parameter is standard
|
12931
|
+
# or advanced.
|
12932
|
+
#
|
12933
|
+
# If the request doesn't include any options that require an
|
12934
|
+
# advanced parameter, the parameter is created in the
|
12935
|
+
# standard-parameter tier. If one or more options requiring an
|
12936
|
+
# advanced parameter are included in the request, Parameter Store
|
12937
|
+
# create a parameter in the advanced-parameter tier.
|
12938
|
+
#
|
12939
|
+
# This approach helps control your parameter-related costs by always
|
12940
|
+
# creating standard parameters unless an advanced parameter is
|
12941
|
+
# necessary.
|
12942
|
+
#
|
12943
|
+
# Options that require an advanced parameter include the following:
|
12944
|
+
#
|
12945
|
+
# * The content size of the parameter is more than 4 KB.
|
12946
|
+
#
|
12947
|
+
# * The parameter uses a parameter policy.
|
12948
|
+
#
|
12949
|
+
# * More than 10,000 parameters already exist in your AWS account in
|
12950
|
+
# the current Region.
|
12951
|
+
#
|
12952
|
+
# 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.
|
12904
12955
|
#
|
12905
12956
|
#
|
12906
12957
|
#
|
12907
12958
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-advanced-parameters.html
|
12959
|
+
# [2]: http://docs.aws.amazon.com/systems-manager/latest/userguide/ps-default-tier.html
|
12908
12960
|
# @return [String]
|
12909
12961
|
#
|
12910
12962
|
# @!attribute [rw] policies
|
@@ -15443,7 +15495,7 @@ module Aws::SSM
|
|
15443
15495
|
# @return [String]
|
15444
15496
|
#
|
15445
15497
|
# @!attribute [rw] document_version
|
15446
|
-
# The version of the document that you want to update.
|
15498
|
+
# (Required) The version of the document that you want to update.
|
15447
15499
|
# @return [String]
|
15448
15500
|
#
|
15449
15501
|
# @!attribute [rw] document_format
|
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.55.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-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|