aws-sdk-ssm 1.86.0 → 1.92.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 +3 -2
- data/lib/aws-sdk-ssm/client.rb +90 -26
- data/lib/aws-sdk-ssm/client_api.rb +5 -5
- data/lib/aws-sdk-ssm/types.rb +135 -58
- 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: e0a5a6493d50036fb43eec787a893ef98b0cfcaf80a213a733064d272ab87708
|
4
|
+
data.tar.gz: d8c09f14c94a4500a4697d786122e78b1a839e4a233430c28511d74895199d49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 936332f39be295bd9b75d6563d19ef61014323bdf8ce5d96cc032ab23e0b97389ed33ff824097b9fcaac21d41b7df71e58295f4c2fb00ff3fc6e39e48ef1449d
|
7
|
+
data.tar.gz: 630517b91022ca0b6321df67a44dd09232d47d3c585feff0abffd32f9e12d32b7feb82b1f7b9fe6f4bceaf37998fa6724774ff5c57a9a501b746849ca20f6fa0
|
data/lib/aws-sdk-ssm.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-ssm/customizations'
|
|
45
46
|
#
|
46
47
|
# See {Errors} for more information.
|
47
48
|
#
|
48
|
-
#
|
49
|
+
# @!group service
|
49
50
|
module Aws::SSM
|
50
51
|
|
51
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.92.0'
|
52
53
|
|
53
54
|
end
|
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
|
# })
|
@@ -4205,11 +4220,6 @@ module Aws::SSM
|
|
4205
4220
|
# The following section lists the properties that can be used in filters
|
4206
4221
|
# for each major operating system type:
|
4207
4222
|
#
|
4208
|
-
# WINDOWS
|
4209
|
-
#
|
4210
|
-
# : Valid properties: PRODUCT, PRODUCT\_FAMILY, CLASSIFICATION,
|
4211
|
-
# MSRC\_SEVERITY
|
4212
|
-
#
|
4213
4223
|
# AMAZON\_LINUX
|
4214
4224
|
#
|
4215
4225
|
# : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
|
@@ -4218,10 +4228,18 @@ module Aws::SSM
|
|
4218
4228
|
#
|
4219
4229
|
# : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
|
4220
4230
|
#
|
4221
|
-
#
|
4231
|
+
# CENTOS
|
4232
|
+
#
|
4233
|
+
# : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
|
4234
|
+
#
|
4235
|
+
# DEBIAN
|
4222
4236
|
#
|
4223
4237
|
# : Valid properties: PRODUCT, PRIORITY
|
4224
4238
|
#
|
4239
|
+
# ORACLE\_LINUX
|
4240
|
+
#
|
4241
|
+
# : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
|
4242
|
+
#
|
4225
4243
|
# REDHAT\_ENTERPRISE\_LINUX
|
4226
4244
|
#
|
4227
4245
|
# : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
|
@@ -4230,9 +4248,14 @@ module Aws::SSM
|
|
4230
4248
|
#
|
4231
4249
|
# : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
|
4232
4250
|
#
|
4233
|
-
#
|
4251
|
+
# UBUNTU
|
4234
4252
|
#
|
4235
|
-
# : Valid properties: PRODUCT,
|
4253
|
+
# : Valid properties: PRODUCT, PRIORITY
|
4254
|
+
#
|
4255
|
+
# WINDOWS
|
4256
|
+
#
|
4257
|
+
# : Valid properties: PRODUCT, PRODUCT\_FAMILY, CLASSIFICATION,
|
4258
|
+
# MSRC\_SEVERITY
|
4236
4259
|
#
|
4237
4260
|
# @option params [required, String] :operating_system
|
4238
4261
|
# The operating system type for which to list patches.
|
@@ -4476,6 +4499,12 @@ module Aws::SSM
|
|
4476
4499
|
# next time that the Change Calendar state will transition. If you do
|
4477
4500
|
# not specify a time, `GetCalendarState` assumes the current time.
|
4478
4501
|
# Change Calendar entries have two possible states: `OPEN` or `CLOSED`.
|
4502
|
+
#
|
4503
|
+
# If you specify more than one calendar in a request, the command
|
4504
|
+
# returns the status of `OPEN` only if all calendars in the request are
|
4505
|
+
# open. If one or more calendars in the request are closed, the status
|
4506
|
+
# returned is `CLOSED`.
|
4507
|
+
#
|
4479
4508
|
# For more information about Systems Manager Change Calendar, see [AWS
|
4480
4509
|
# Systems Manager Change Calendar][1] in the *AWS Systems Manager User
|
4481
4510
|
# Guide*.
|
@@ -5585,6 +5614,14 @@ module Aws::SSM
|
|
5585
5614
|
# @option params [Array<Types::ParameterStringFilter>] :parameter_filters
|
5586
5615
|
# Filters to limit the request results.
|
5587
5616
|
#
|
5617
|
+
# <note markdown="1"> For `GetParametersByPath`, the following filter `Key` names are
|
5618
|
+
# supported: `Type`, `KeyId`, `Label`, and `DataType`.
|
5619
|
+
#
|
5620
|
+
# The following `Key` values are not supported for
|
5621
|
+
# `GetParametersByPath`\: `tag`, `Name`, `Path`, and `Tier`.
|
5622
|
+
#
|
5623
|
+
# </note>
|
5624
|
+
#
|
5588
5625
|
# @option params [Boolean] :with_decryption
|
5589
5626
|
# Retrieve all parameters in a hierarchy with their value decrypted.
|
5590
5627
|
#
|
@@ -6642,8 +6679,8 @@ module Aws::SSM
|
|
6642
6679
|
# @option params [String] :sync_type
|
6643
6680
|
# View a list of resource data syncs according to the sync type. Specify
|
6644
6681
|
# `SyncToDestination` to view resource data syncs that synchronize data
|
6645
|
-
# to an Amazon S3
|
6646
|
-
#
|
6682
|
+
# to an Amazon S3 bucket. Specify `SyncFromSource` to view resource data
|
6683
|
+
# syncs from AWS Organizations or from multiple AWS Regions.
|
6647
6684
|
#
|
6648
6685
|
# @option params [String] :next_token
|
6649
6686
|
# A token to start the list. Use this token to get the next set of
|
@@ -7017,6 +7054,12 @@ module Aws::SSM
|
|
7017
7054
|
# parameters have a value limit of 4 KB. Advanced parameters have a
|
7018
7055
|
# value limit of 8 KB.
|
7019
7056
|
#
|
7057
|
+
# <note markdown="1"> Parameters can't be referenced or nested in the values of other
|
7058
|
+
# parameters. You can't include `\{\{\}\}` or
|
7059
|
+
# `\{\{ssm:parameter-name\}\}` in a parameter value.
|
7060
|
+
#
|
7061
|
+
# </note>
|
7062
|
+
#
|
7020
7063
|
# @option params [String] :type
|
7021
7064
|
# The type of parameter that you want to add to the system.
|
7022
7065
|
#
|
@@ -8969,11 +9012,22 @@ module Aws::SSM
|
|
8969
9012
|
#
|
8970
9013
|
# * MaxErrors
|
8971
9014
|
#
|
8972
|
-
# If
|
8973
|
-
#
|
9015
|
+
# If the value for a parameter in `UpdateMaintenanceWindowTask` is null,
|
9016
|
+
# then the corresponding field is not modified. If you set `Replace` to
|
9017
|
+
# true, then all fields required by the
|
8974
9018
|
# RegisterTaskWithMaintenanceWindow action are required for this
|
8975
9019
|
# request. Optional fields that aren't specified are set to null.
|
8976
9020
|
#
|
9021
|
+
# When you update a maintenance window task that has options specified
|
9022
|
+
# in `TaskInvocationParameters`, you must provide again all the
|
9023
|
+
# `TaskInvocationParameters` values that you want to retain. The values
|
9024
|
+
# you do not specify again are removed. For example, suppose that when
|
9025
|
+
# you registered a Run Command task, you specified
|
9026
|
+
# `TaskInvocationParameters` values for `Comment`, `NotificationConfig`,
|
9027
|
+
# and `OutputS3BucketName`. If you update the maintenance window task
|
9028
|
+
# and specify only a different `OutputS3BucketName` value, the values
|
9029
|
+
# for `Comment` and `NotificationConfig` are removed.
|
9030
|
+
#
|
8977
9031
|
# @option params [required, String] :window_id
|
8978
9032
|
# The maintenance window ID that contains the task to modify.
|
8979
9033
|
#
|
@@ -9031,6 +9085,16 @@ module Aws::SSM
|
|
9031
9085
|
# only the fields that match the task type. All other fields should be
|
9032
9086
|
# empty.
|
9033
9087
|
#
|
9088
|
+
# When you update a maintenance window task that has options specified
|
9089
|
+
# in `TaskInvocationParameters`, you must provide again all the
|
9090
|
+
# `TaskInvocationParameters` values that you want to retain. The values
|
9091
|
+
# you do not specify again are removed. For example, suppose that when
|
9092
|
+
# you registered a Run Command task, you specified
|
9093
|
+
# `TaskInvocationParameters` values for `Comment`, `NotificationConfig`,
|
9094
|
+
# and `OutputS3BucketName`. If you update the maintenance window task
|
9095
|
+
# and specify only a different `OutputS3BucketName` value, the values
|
9096
|
+
# for `Comment` and `NotificationConfig` are removed.
|
9097
|
+
#
|
9034
9098
|
# @option params [Integer] :priority
|
9035
9099
|
# The new task priority to specify. The lower the number, the higher the
|
9036
9100
|
# priority. Tasks that have the same priority are scheduled in parallel.
|
@@ -9065,8 +9129,8 @@ module Aws::SSM
|
|
9065
9129
|
#
|
9066
9130
|
# @option params [Boolean] :replace
|
9067
9131
|
# If True, then all fields that are required by the
|
9068
|
-
#
|
9069
|
-
# request. Optional fields that are not specified are set to null.
|
9132
|
+
# RegisterTaskWithMaintenanceWindow action are also required for this
|
9133
|
+
# API request. Optional fields that are not specified are set to null.
|
9070
9134
|
#
|
9071
9135
|
# @return [Types::UpdateMaintenanceWindowTaskResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9072
9136
|
#
|
@@ -9691,7 +9755,7 @@ module Aws::SSM
|
|
9691
9755
|
params: params,
|
9692
9756
|
config: config)
|
9693
9757
|
context[:gem_name] = 'aws-sdk-ssm'
|
9694
|
-
context[:gem_version] = '1.
|
9758
|
+
context[:gem_version] = '1.92.0'
|
9695
9759
|
Seahorse::Client::Request.new(handlers, context)
|
9696
9760
|
end
|
9697
9761
|
|
@@ -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
@@ -924,12 +924,12 @@ module Aws::SSM
|
|
924
924
|
# * For the key *SourceUrl*, the value is an S3 bucket location. For
|
925
925
|
# example:
|
926
926
|
#
|
927
|
-
# `"Values": [ "s3://
|
927
|
+
# `"Values": [ "s3://doc-example-bucket/my-folder" ]`
|
928
928
|
#
|
929
929
|
# * For the key *S3FileUrl*, the value is a file in an S3 bucket. For
|
930
930
|
# example:
|
931
931
|
#
|
932
|
-
# `"Values": [ "s3://
|
932
|
+
# `"Values": [ "s3://doc-example-bucket/my-folder/my-file.py" ]`
|
933
933
|
#
|
934
934
|
# * For the key *AttachmentReference*, the value is constructed from
|
935
935
|
# the name of another SSM document in your account, a version number
|
@@ -1974,14 +1974,14 @@ module Aws::SSM
|
|
1974
1974
|
# be stored. This was requested when issuing the command. For example,
|
1975
1975
|
# in the following response:
|
1976
1976
|
#
|
1977
|
-
#
|
1977
|
+
# doc-example-bucket/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-02573cafcfEXAMPLE/awsrunShellScript
|
1978
1978
|
#
|
1979
|
-
#
|
1979
|
+
# doc-example-bucket is the name of the S3 bucket;
|
1980
1980
|
#
|
1981
1981
|
# ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3
|
1982
1982
|
# prefix;
|
1983
1983
|
#
|
1984
|
-
# i-
|
1984
|
+
# i-02573cafcfEXAMPLE is the instance ID;
|
1985
1985
|
#
|
1986
1986
|
# awsrunShellScript is the name of the plugin.
|
1987
1987
|
# @return [String]
|
@@ -1991,14 +1991,14 @@ module Aws::SSM
|
|
1991
1991
|
# command executions should be stored. This was requested when issuing
|
1992
1992
|
# the command. For example, in the following response:
|
1993
1993
|
#
|
1994
|
-
#
|
1994
|
+
# doc-example-bucket/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-02573cafcfEXAMPLE/awsrunShellScript
|
1995
1995
|
#
|
1996
|
-
#
|
1996
|
+
# doc-example-bucket is the name of the S3 bucket;
|
1997
1997
|
#
|
1998
1998
|
# ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3
|
1999
1999
|
# prefix;
|
2000
2000
|
#
|
2001
|
-
# i-
|
2001
|
+
# i-02573cafcfEXAMPLE is the instance ID;
|
2002
2002
|
#
|
2003
2003
|
# awsrunShellScript is the name of the plugin.
|
2004
2004
|
# @return [String]
|
@@ -2096,8 +2096,9 @@ module Aws::SSM
|
|
2096
2096
|
# @return [String]
|
2097
2097
|
#
|
2098
2098
|
# @!attribute [rw] status
|
2099
|
-
# The status of the compliance item. An item is either COMPLIANT
|
2100
|
-
# NON\_COMPLIANT
|
2099
|
+
# The status of the compliance item. An item is either COMPLIANT,
|
2100
|
+
# NON\_COMPLIANT, or an empty string (for Windows patches that aren't
|
2101
|
+
# applicable).
|
2101
2102
|
# @return [String]
|
2102
2103
|
#
|
2103
2104
|
# @!attribute [rw] severity
|
@@ -3696,12 +3697,12 @@ module Aws::SSM
|
|
3696
3697
|
# type_name: "InventoryItemTypeName", # required
|
3697
3698
|
# schema_delete_option: "DisableSchema", # accepts DisableSchema, DeleteSchema
|
3698
3699
|
# dry_run: false,
|
3699
|
-
# client_token: "
|
3700
|
+
# client_token: "UUID",
|
3700
3701
|
# }
|
3701
3702
|
#
|
3702
3703
|
# @!attribute [rw] type_name
|
3703
3704
|
# The name of the custom inventory type for which you want to delete
|
3704
|
-
# either all previously collected data
|
3705
|
+
# either all previously collected data or the inventory type itself.
|
3705
3706
|
# @return [String]
|
3706
3707
|
#
|
3707
3708
|
# @!attribute [rw] schema_delete_option
|
@@ -5084,7 +5085,7 @@ module Aws::SSM
|
|
5084
5085
|
# data as a hash:
|
5085
5086
|
#
|
5086
5087
|
# {
|
5087
|
-
# deletion_id: "
|
5088
|
+
# deletion_id: "UUID",
|
5088
5089
|
# next_token: "NextToken",
|
5089
5090
|
# max_results: 1,
|
5090
5091
|
# }
|
@@ -6510,18 +6511,60 @@ module Aws::SSM
|
|
6510
6511
|
# For keys, you can specify one or more tags that have been applied to a
|
6511
6512
|
# document.
|
6512
6513
|
#
|
6513
|
-
#
|
6514
|
-
#
|
6514
|
+
# You can also use AWS-provided keys, some of which have specific
|
6515
|
+
# allowed values. These keys and their associated values are as follows:
|
6516
|
+
#
|
6517
|
+
# DocumentType
|
6518
|
+
# : * ApplicationConfiguration
|
6519
|
+
#
|
6520
|
+
# * ApplicationConfigurationSchema
|
6521
|
+
#
|
6522
|
+
# * Automation
|
6523
|
+
#
|
6524
|
+
# * ChangeCalendar
|
6525
|
+
#
|
6526
|
+
# * Command
|
6527
|
+
#
|
6528
|
+
# * DeploymentStrategy
|
6529
|
+
#
|
6530
|
+
# * Package
|
6531
|
+
#
|
6532
|
+
# * Policy
|
6533
|
+
#
|
6534
|
+
# * Session
|
6535
|
+
#
|
6536
|
+
# Owner
|
6537
|
+
#
|
6538
|
+
# : Note that only one `Owner` can be specified in a request. For
|
6539
|
+
# example: `Key=Owner,Values=Self`.
|
6515
6540
|
#
|
6516
|
-
#
|
6517
|
-
# `Key=Owner,Values=Self`.
|
6541
|
+
# * Amazon
|
6518
6542
|
#
|
6519
|
-
#
|
6520
|
-
#
|
6521
|
-
#
|
6543
|
+
# * Private
|
6544
|
+
#
|
6545
|
+
# * Public
|
6546
|
+
#
|
6547
|
+
# * Self
|
6548
|
+
#
|
6549
|
+
# * ThirdParty
|
6550
|
+
#
|
6551
|
+
# PlatformTypes
|
6552
|
+
# : * Linux
|
6553
|
+
#
|
6554
|
+
# * Windows
|
6555
|
+
#
|
6556
|
+
# `Name` is another AWS-provided key. If you use `Name` as a key, you
|
6557
|
+
# can use a name prefix to return a list of documents. For example, in
|
6558
|
+
# the AWS CLI, to return a list of all documents that begin with `Te`,
|
6559
|
+
# run the following command:
|
6522
6560
|
#
|
6523
6561
|
# `aws ssm list-documents --filters Key=Name,Values=Te`
|
6524
6562
|
#
|
6563
|
+
# You can also use the `TargetType` AWS-provided key. For a list of
|
6564
|
+
# valid resource type values that can be used with this key, see [AWS
|
6565
|
+
# resource and property types reference][1] in the *AWS CloudFormation
|
6566
|
+
# User Guide*.
|
6567
|
+
#
|
6525
6568
|
# If you specify more than two keys, only documents that are identified
|
6526
6569
|
# by all the tags are returned in the results. If you specify more than
|
6527
6570
|
# two values for a key, documents that are identified by any of the
|
@@ -6530,12 +6573,16 @@ module Aws::SSM
|
|
6530
6573
|
# To specify a custom key and value pair, use the format
|
6531
6574
|
# `Key=tag:tagName,Values=valueName`.
|
6532
6575
|
#
|
6533
|
-
# For example, if you created a
|
6576
|
+
# For example, if you created a key called region and are using the AWS
|
6534
6577
|
# CLI to call the `list-documents` command:
|
6535
6578
|
#
|
6536
6579
|
# `aws ssm list-documents --filters Key=tag:region,Values=east,west
|
6537
6580
|
# Key=Owner,Values=Self`
|
6538
6581
|
#
|
6582
|
+
#
|
6583
|
+
#
|
6584
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
6585
|
+
#
|
6539
6586
|
# @note When making an API call, you may pass DocumentKeyValuesFilter
|
6540
6587
|
# data as a hash:
|
6541
6588
|
#
|
@@ -8380,6 +8427,14 @@ module Aws::SSM
|
|
8380
8427
|
#
|
8381
8428
|
# @!attribute [rw] parameter_filters
|
8382
8429
|
# Filters to limit the request results.
|
8430
|
+
#
|
8431
|
+
# <note markdown="1"> For `GetParametersByPath`, the following filter `Key` names are
|
8432
|
+
# supported: `Type`, `KeyId`, `Label`, and `DataType`.
|
8433
|
+
#
|
8434
|
+
# The following `Key` values are not supported for
|
8435
|
+
# `GetParametersByPath`\: `tag`, `Name`, `Path`, and `Tier`.
|
8436
|
+
#
|
8437
|
+
# </note>
|
8383
8438
|
# @return [Array<Types::ParameterStringFilter>]
|
8384
8439
|
#
|
8385
8440
|
# @!attribute [rw] with_decryption
|
@@ -8914,6 +8969,10 @@ module Aws::SSM
|
|
8914
8969
|
#
|
8915
8970
|
# @!attribute [rw] ping_status
|
8916
8971
|
# Connection status of SSM Agent.
|
8972
|
+
#
|
8973
|
+
# <note markdown="1"> The status `Inactive` has been deprecated and is no longer in use.
|
8974
|
+
#
|
8975
|
+
# </note>
|
8917
8976
|
# @return [String]
|
8918
8977
|
#
|
8919
8978
|
# @!attribute [rw] last_ping_date_time
|
@@ -9171,14 +9230,14 @@ module Aws::SSM
|
|
9171
9230
|
# @return [Integer]
|
9172
9231
|
#
|
9173
9232
|
# @!attribute [rw] installed_rejected_count
|
9174
|
-
# The number of
|
9175
|
-
# a RejectedPatches list. Patches with a status of
|
9176
|
-
# were typically installed before they were added
|
9177
|
-
# list.
|
9233
|
+
# The number of patches installed on an instance that are specified in
|
9234
|
+
# a `RejectedPatches` list. Patches with a status of
|
9235
|
+
# *InstalledRejected* were typically installed before they were added
|
9236
|
+
# to a `RejectedPatches` list.
|
9178
9237
|
#
|
9179
|
-
# <note markdown="1"> If
|
9180
|
-
# RejectedPatchesAction
|
9181
|
-
# always be 0 (zero).
|
9238
|
+
# <note markdown="1"> If `ALLOW_AS_DEPENDENCY` is the specified option for
|
9239
|
+
# `RejectedPatchesAction`, the value of `InstalledRejectedCount` will
|
9240
|
+
# always be `0` (zero).
|
9182
9241
|
#
|
9183
9242
|
# </note>
|
9184
9243
|
# @return [Integer]
|
@@ -9219,8 +9278,8 @@ module Aws::SSM
|
|
9219
9278
|
# @return [Time]
|
9220
9279
|
#
|
9221
9280
|
# @!attribute [rw] operation
|
9222
|
-
# The type of patching operation that was performed: SCAN (assess
|
9223
|
-
# patch compliance state) or INSTALL (install missing patches).
|
9281
|
+
# The type of patching operation that was performed: `SCAN` (assess
|
9282
|
+
# patch compliance state) or `INSTALL` (install missing patches).
|
9224
9283
|
# @return [String]
|
9225
9284
|
#
|
9226
9285
|
# @!attribute [rw] last_no_reboot_install_operation_time
|
@@ -11170,9 +11229,9 @@ module Aws::SSM
|
|
11170
11229
|
# @!attribute [rw] sync_type
|
11171
11230
|
# View a list of resource data syncs according to the sync type.
|
11172
11231
|
# Specify `SyncToDestination` to view resource data syncs that
|
11173
|
-
# synchronize data to an Amazon S3
|
11174
|
-
#
|
11175
|
-
#
|
11232
|
+
# synchronize data to an Amazon S3 bucket. Specify `SyncFromSource` to
|
11233
|
+
# view resource data syncs from AWS Organizations or from multiple AWS
|
11234
|
+
# Regions.
|
11176
11235
|
# @return [String]
|
11177
11236
|
#
|
11178
11237
|
# @!attribute [rw] next_token
|
@@ -13149,25 +13208,6 @@ module Aws::SSM
|
|
13149
13208
|
# One or more filters. Use a filter to return a more specific list of
|
13150
13209
|
# results.
|
13151
13210
|
#
|
13152
|
-
# The `ParameterStringFilter` object is used by the DescribeParameters
|
13153
|
-
# and GetParametersByPath API actions. However, not all of the pattern
|
13154
|
-
# values listed for `Key` can be used with both actions.
|
13155
|
-
#
|
13156
|
-
# For `DescribeActions`, all of the listed patterns are valid, with the
|
13157
|
-
# exception of `Label`.
|
13158
|
-
#
|
13159
|
-
# For `GetParametersByPath`, the following patterns listed for `Key`
|
13160
|
-
# are
|
13161
|
-
# not valid: `Name`, `Path`, and `Tier`.
|
13162
|
-
#
|
13163
|
-
# For examples of CLI commands demonstrating valid parameter filter
|
13164
|
-
# constructions, see [Searching for Systems Manager parameters][1] in
|
13165
|
-
# the *AWS Systems Manager User Guide*.
|
13166
|
-
#
|
13167
|
-
#
|
13168
|
-
#
|
13169
|
-
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-search.html
|
13170
|
-
#
|
13171
13211
|
# @note When making an API call, you may pass ParameterStringFilter
|
13172
13212
|
# data as a hash:
|
13173
13213
|
#
|
@@ -13179,6 +13219,26 @@ module Aws::SSM
|
|
13179
13219
|
#
|
13180
13220
|
# @!attribute [rw] key
|
13181
13221
|
# The name of the filter.
|
13222
|
+
#
|
13223
|
+
# <note markdown="1"> The `ParameterStringFilter` object is used by the DescribeParameters
|
13224
|
+
# and GetParametersByPath API actions. However, not all of the pattern
|
13225
|
+
# values listed for `Key` can be used with both actions.
|
13226
|
+
#
|
13227
|
+
# For `DescribeActions`, all of the listed patterns are valid, with
|
13228
|
+
# the exception of `Label`.
|
13229
|
+
#
|
13230
|
+
# For `GetParametersByPath`, the following patterns listed for `Key`
|
13231
|
+
# are not valid: `tag`, `Name`, `Path`, and `Tier`.
|
13232
|
+
#
|
13233
|
+
# For examples of CLI commands demonstrating valid parameter filter
|
13234
|
+
# constructions, see [Searching for Systems Manager parameters][1] in
|
13235
|
+
# the *AWS Systems Manager User Guide*.
|
13236
|
+
#
|
13237
|
+
# </note>
|
13238
|
+
#
|
13239
|
+
#
|
13240
|
+
#
|
13241
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-search.html
|
13182
13242
|
# @return [String]
|
13183
13243
|
#
|
13184
13244
|
# @!attribute [rw] option
|
@@ -13188,8 +13248,8 @@ module Aws::SSM
|
|
13188
13248
|
# valid options include `Recursive` and `OneLevel`.)
|
13189
13249
|
#
|
13190
13250
|
# For filters used with GetParametersByPath, valid options include
|
13191
|
-
# `Equals` and `BeginsWith`. (Exception: For filters using
|
13192
|
-
#
|
13251
|
+
# `Equals` and `BeginsWith`. (Exception: For filters using `Label` as
|
13252
|
+
# the Key name, the only valid option is `Equals`.)
|
13193
13253
|
# @return [String]
|
13194
13254
|
#
|
13195
13255
|
# @!attribute [rw] values
|
@@ -13999,6 +14059,12 @@ module Aws::SSM
|
|
13999
14059
|
# The parameter value that you want to add to the system. Standard
|
14000
14060
|
# parameters have a value limit of 4 KB. Advanced parameters have a
|
14001
14061
|
# value limit of 8 KB.
|
14062
|
+
#
|
14063
|
+
# <note markdown="1"> Parameters can't be referenced or nested in the values of other
|
14064
|
+
# parameters. You can't include `\{\{\}\}` or
|
14065
|
+
# `\{\{ssm:parameter-name\}\}` in a parameter value.
|
14066
|
+
#
|
14067
|
+
# </note>
|
14002
14068
|
# @return [String]
|
14003
14069
|
#
|
14004
14070
|
# @!attribute [rw] type
|
@@ -16629,7 +16695,8 @@ module Aws::SSM
|
|
16629
16695
|
# The specified target instance for the session is not fully configured
|
16630
16696
|
# for use with Session Manager. For more information, see [Getting
|
16631
16697
|
# started with Session Manager][1] in the *AWS Systems Manager User
|
16632
|
-
# Guide*.
|
16698
|
+
# Guide*. This error is also returned if you attempt to start a session
|
16699
|
+
# on an instance that is located in a different account or Region
|
16633
16700
|
#
|
16634
16701
|
#
|
16635
16702
|
#
|
@@ -16782,8 +16849,7 @@ module Aws::SSM
|
|
16782
16849
|
end
|
16783
16850
|
|
16784
16851
|
# The operating systems you specified is not supported, or the operation
|
16785
|
-
# is not supported for the operating system.
|
16786
|
-
# include: Windows, AmazonLinux, RedhatEnterpriseLinux, and Ubuntu.
|
16852
|
+
# is not supported for the operating system.
|
16787
16853
|
#
|
16788
16854
|
# @!attribute [rw] message
|
16789
16855
|
# @return [String]
|
@@ -17637,6 +17703,17 @@ module Aws::SSM
|
|
17637
17703
|
# The parameters that the task should use during execution. Populate
|
17638
17704
|
# only the fields that match the task type. All other fields should be
|
17639
17705
|
# empty.
|
17706
|
+
#
|
17707
|
+
# When you update a maintenance window task that has options specified
|
17708
|
+
# in `TaskInvocationParameters`, you must provide again all the
|
17709
|
+
# `TaskInvocationParameters` values that you want to retain. The
|
17710
|
+
# values you do not specify again are removed. For example, suppose
|
17711
|
+
# that when you registered a Run Command task, you specified
|
17712
|
+
# `TaskInvocationParameters` values for `Comment`,
|
17713
|
+
# `NotificationConfig`, and `OutputS3BucketName`. If you update the
|
17714
|
+
# maintenance window task and specify only a different
|
17715
|
+
# `OutputS3BucketName` value, the values for `Comment` and
|
17716
|
+
# `NotificationConfig` are removed.
|
17640
17717
|
# @return [Types::MaintenanceWindowTaskInvocationParameters]
|
17641
17718
|
#
|
17642
17719
|
# @!attribute [rw] priority
|
@@ -17680,7 +17757,7 @@ module Aws::SSM
|
|
17680
17757
|
#
|
17681
17758
|
# @!attribute [rw] replace
|
17682
17759
|
# If True, then all fields that are required by the
|
17683
|
-
#
|
17760
|
+
# RegisterTaskWithMaintenanceWindow action are also required for this
|
17684
17761
|
# API request. Optional fields that are not specified are set to null.
|
17685
17762
|
# @return [Boolean]
|
17686
17763
|
#
|
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.92.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-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|