aws-sdk-ssm 1.86.0 → 1.88.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 +2 -2
- data/lib/aws-sdk-ssm/client.rb +39 -12
- data/lib/aws-sdk-ssm/client_api.rb +5 -5
- data/lib/aws-sdk-ssm/types.rb +9 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccfcc1f5cd007ee807848d67691877af750ab3e1ba71f2b8e75323b2c4b95c85
|
4
|
+
data.tar.gz: e68e2792c8b397d4f3a39908fc767dc820e7f025ff409baa60ab712b1cb8887c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 338e0b8b4c1468367fe703ad8391070b2f66830219df0630228ca79be86a90222bdc256000d0fb8f50d65200bf18dea44d7a2d08b98dd49b3de1cadd77ec7345
|
7
|
+
data.tar.gz: 3dff46d2f7d78c1b3a7010f26570719bc0d8cfaa3dc269f317ce7e12249b0156afe40d17dd244ab6c4887e58207b67375677aa8e036a2a1b542c7c0019b49a38
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -85,13 +85,28 @@ module Aws::SSM
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::SSM
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -1771,13 +1786,13 @@ module Aws::SSM
|
|
1771
1786
|
req.send_request(options)
|
1772
1787
|
end
|
1773
1788
|
|
1774
|
-
# Delete a custom inventory type
|
1789
|
+
# Delete a custom inventory type or the data associated with a custom
|
1775
1790
|
# Inventory type. Deleting a custom inventory type is also referred to
|
1776
1791
|
# as deleting a custom inventory schema.
|
1777
1792
|
#
|
1778
1793
|
# @option params [required, String] :type_name
|
1779
1794
|
# The name of the custom inventory type for which you want to delete
|
1780
|
-
# either all previously collected data
|
1795
|
+
# either all previously collected data or the inventory type itself.
|
1781
1796
|
#
|
1782
1797
|
# @option params [String] :schema_delete_option
|
1783
1798
|
# Use the `SchemaDeleteOption` to delete a custom inventory type
|
@@ -1818,7 +1833,7 @@ module Aws::SSM
|
|
1818
1833
|
# type_name: "InventoryItemTypeName", # required
|
1819
1834
|
# schema_delete_option: "DisableSchema", # accepts DisableSchema, DeleteSchema
|
1820
1835
|
# dry_run: false,
|
1821
|
-
# client_token: "
|
1836
|
+
# client_token: "UUID",
|
1822
1837
|
# })
|
1823
1838
|
#
|
1824
1839
|
# @example Response structure
|
@@ -3246,7 +3261,7 @@ module Aws::SSM
|
|
3246
3261
|
# @example Request syntax with placeholder values
|
3247
3262
|
#
|
3248
3263
|
# resp = client.describe_inventory_deletions({
|
3249
|
-
# deletion_id: "
|
3264
|
+
# deletion_id: "UUID",
|
3250
3265
|
# next_token: "NextToken",
|
3251
3266
|
# max_results: 1,
|
3252
3267
|
# })
|
@@ -4476,6 +4491,12 @@ module Aws::SSM
|
|
4476
4491
|
# next time that the Change Calendar state will transition. If you do
|
4477
4492
|
# not specify a time, `GetCalendarState` assumes the current time.
|
4478
4493
|
# Change Calendar entries have two possible states: `OPEN` or `CLOSED`.
|
4494
|
+
#
|
4495
|
+
# If you specify more than one calendar in a request, the command
|
4496
|
+
# returns the status of `OPEN` only if all calendars in the request are
|
4497
|
+
# open. If one or more calendars in the request are closed, the status
|
4498
|
+
# returned is `CLOSED`.
|
4499
|
+
#
|
4479
4500
|
# For more information about Systems Manager Change Calendar, see [AWS
|
4480
4501
|
# Systems Manager Change Calendar][1] in the *AWS Systems Manager User
|
4481
4502
|
# Guide*.
|
@@ -7017,6 +7038,12 @@ module Aws::SSM
|
|
7017
7038
|
# parameters have a value limit of 4 KB. Advanced parameters have a
|
7018
7039
|
# value limit of 8 KB.
|
7019
7040
|
#
|
7041
|
+
# <note markdown="1"> Parameters can't be referenced or nested in the values of other
|
7042
|
+
# parameters. You can't include `\{\{\}\}` or
|
7043
|
+
# `\{\{ssm:parameter-name\}\}` in a parameter value.
|
7044
|
+
#
|
7045
|
+
# </note>
|
7046
|
+
#
|
7020
7047
|
# @option params [String] :type
|
7021
7048
|
# The type of parameter that you want to add to the system.
|
7022
7049
|
#
|
@@ -9691,7 +9718,7 @@ module Aws::SSM
|
|
9691
9718
|
params: params,
|
9692
9719
|
config: config)
|
9693
9720
|
context[:gem_name] = 'aws-sdk-ssm'
|
9694
|
-
context[:gem_version] = '1.
|
9721
|
+
context[:gem_version] = '1.88.0'
|
9695
9722
|
Seahorse::Client::Request.new(handlers, context)
|
9696
9723
|
end
|
9697
9724
|
|
@@ -501,7 +501,6 @@ module Aws::SSM
|
|
501
501
|
InventoryAggregatorExpression = Shapes::StringShape.new(name: 'InventoryAggregatorExpression')
|
502
502
|
InventoryAggregatorList = Shapes::ListShape.new(name: 'InventoryAggregatorList')
|
503
503
|
InventoryAttributeDataType = Shapes::StringShape.new(name: 'InventoryAttributeDataType')
|
504
|
-
InventoryDeletionId = Shapes::StringShape.new(name: 'InventoryDeletionId')
|
505
504
|
InventoryDeletionLastStatusMessage = Shapes::StringShape.new(name: 'InventoryDeletionLastStatusMessage')
|
506
505
|
InventoryDeletionLastStatusUpdateTime = Shapes::TimestampShape.new(name: 'InventoryDeletionLastStatusUpdateTime')
|
507
506
|
InventoryDeletionStartTime = Shapes::TimestampShape.new(name: 'InventoryDeletionStartTime')
|
@@ -1007,6 +1006,7 @@ module Aws::SSM
|
|
1007
1006
|
TooManyUpdates = Shapes::StructureShape.new(name: 'TooManyUpdates')
|
1008
1007
|
TotalCount = Shapes::IntegerShape.new(name: 'TotalCount')
|
1009
1008
|
TotalSizeLimitExceededException = Shapes::StructureShape.new(name: 'TotalSizeLimitExceededException')
|
1009
|
+
UUID = Shapes::StringShape.new(name: 'UUID')
|
1010
1010
|
UnsupportedCalendarException = Shapes::StructureShape.new(name: 'UnsupportedCalendarException')
|
1011
1011
|
UnsupportedFeatureRequiredException = Shapes::StructureShape.new(name: 'UnsupportedFeatureRequiredException')
|
1012
1012
|
UnsupportedInventoryItemContextException = Shapes::StructureShape.new(name: 'UnsupportedInventoryItemContextException')
|
@@ -1614,10 +1614,10 @@ module Aws::SSM
|
|
1614
1614
|
DeleteInventoryRequest.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, required: true, location_name: "TypeName"))
|
1615
1615
|
DeleteInventoryRequest.add_member(:schema_delete_option, Shapes::ShapeRef.new(shape: InventorySchemaDeleteOption, location_name: "SchemaDeleteOption"))
|
1616
1616
|
DeleteInventoryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
|
1617
|
-
DeleteInventoryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
1617
|
+
DeleteInventoryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: UUID, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
1618
1618
|
DeleteInventoryRequest.struct_class = Types::DeleteInventoryRequest
|
1619
1619
|
|
1620
|
-
DeleteInventoryResult.add_member(:deletion_id, Shapes::ShapeRef.new(shape:
|
1620
|
+
DeleteInventoryResult.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
1621
1621
|
DeleteInventoryResult.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, location_name: "TypeName"))
|
1622
1622
|
DeleteInventoryResult.add_member(:deletion_summary, Shapes::ShapeRef.new(shape: InventoryDeletionSummary, location_name: "DeletionSummary"))
|
1623
1623
|
DeleteInventoryResult.struct_class = Types::DeleteInventoryResult
|
@@ -1838,7 +1838,7 @@ module Aws::SSM
|
|
1838
1838
|
DescribeInstancePatchesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1839
1839
|
DescribeInstancePatchesResult.struct_class = Types::DescribeInstancePatchesResult
|
1840
1840
|
|
1841
|
-
DescribeInventoryDeletionsRequest.add_member(:deletion_id, Shapes::ShapeRef.new(shape:
|
1841
|
+
DescribeInventoryDeletionsRequest.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
1842
1842
|
DescribeInventoryDeletionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1843
1843
|
DescribeInventoryDeletionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
1844
1844
|
DescribeInventoryDeletionsRequest.struct_class = Types::DescribeInventoryDeletionsRequest
|
@@ -2678,7 +2678,7 @@ module Aws::SSM
|
|
2678
2678
|
|
2679
2679
|
InventoryAggregatorList.member = Shapes::ShapeRef.new(shape: InventoryAggregator)
|
2680
2680
|
|
2681
|
-
InventoryDeletionStatusItem.add_member(:deletion_id, Shapes::ShapeRef.new(shape:
|
2681
|
+
InventoryDeletionStatusItem.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
2682
2682
|
InventoryDeletionStatusItem.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, location_name: "TypeName"))
|
2683
2683
|
InventoryDeletionStatusItem.add_member(:deletion_start_time, Shapes::ShapeRef.new(shape: InventoryDeletionStartTime, location_name: "DeletionStartTime"))
|
2684
2684
|
InventoryDeletionStatusItem.add_member(:last_status, Shapes::ShapeRef.new(shape: InventoryDeletionStatus, location_name: "LastStatus"))
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -3696,12 +3696,12 @@ module Aws::SSM
|
|
3696
3696
|
# type_name: "InventoryItemTypeName", # required
|
3697
3697
|
# schema_delete_option: "DisableSchema", # accepts DisableSchema, DeleteSchema
|
3698
3698
|
# dry_run: false,
|
3699
|
-
# client_token: "
|
3699
|
+
# client_token: "UUID",
|
3700
3700
|
# }
|
3701
3701
|
#
|
3702
3702
|
# @!attribute [rw] type_name
|
3703
3703
|
# The name of the custom inventory type for which you want to delete
|
3704
|
-
# either all previously collected data
|
3704
|
+
# either all previously collected data or the inventory type itself.
|
3705
3705
|
# @return [String]
|
3706
3706
|
#
|
3707
3707
|
# @!attribute [rw] schema_delete_option
|
@@ -5084,7 +5084,7 @@ module Aws::SSM
|
|
5084
5084
|
# data as a hash:
|
5085
5085
|
#
|
5086
5086
|
# {
|
5087
|
-
# deletion_id: "
|
5087
|
+
# deletion_id: "UUID",
|
5088
5088
|
# next_token: "NextToken",
|
5089
5089
|
# max_results: 1,
|
5090
5090
|
# }
|
@@ -13999,6 +13999,12 @@ module Aws::SSM
|
|
13999
13999
|
# The parameter value that you want to add to the system. Standard
|
14000
14000
|
# parameters have a value limit of 4 KB. Advanced parameters have a
|
14001
14001
|
# value limit of 8 KB.
|
14002
|
+
#
|
14003
|
+
# <note markdown="1"> Parameters can't be referenced or nested in the values of other
|
14004
|
+
# parameters. You can't include `\{\{\}\}` or
|
14005
|
+
# `\{\{ssm:parameter-name\}\}` in a parameter value.
|
14006
|
+
#
|
14007
|
+
# </note>
|
14002
14008
|
# @return [String]
|
14003
14009
|
#
|
14004
14010
|
# @!attribute [rw] type
|
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.88.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-08-
|
11
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|