aws-sdk-ssm 1.36.0 → 1.37.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 +52 -15
- data/lib/aws-sdk-ssm/client_api.rb +10 -10
- data/lib/aws-sdk-ssm/types.rb +73 -12
- 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: a7b73ef10d2704dd181e84f6f94cad2ff11e221e
|
4
|
+
data.tar.gz: ea160f43bb5463e0b09fe1cf5fe5d724c6984495
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06400f4eb5b1a1314b39cdc0e5fc4eb4b74694e35b0fc07d9ce2df0d921c2abf56b4c16f6f939d0b0f7135e9fac2a4e638dd7013e4323db43b8f7eb833b5c688
|
7
|
+
data.tar.gz: bceaa79213715b12324074201b4de37160092330550e974783aa60ea630d0cc8806eb30459dffbf6185d03438df28668099e8d7a038399a9e0b08259443b31aa
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -472,7 +472,26 @@ module Aws::SSM
|
|
472
472
|
# exception.
|
473
473
|
#
|
474
474
|
# @option params [required, String] :name
|
475
|
-
# The name of the
|
475
|
+
# The name of the SSM document that contains the configuration
|
476
|
+
# information for the instance. You can specify Command, Policy, or
|
477
|
+
# Automation documents.
|
478
|
+
#
|
479
|
+
# You can specify AWS-predefined documents, documents you created, or a
|
480
|
+
# document that is shared with you from another account.
|
481
|
+
#
|
482
|
+
# For SSM documents that are shared with you from other AWS accounts,
|
483
|
+
# you must specify the complete SSM document ARN, in the following
|
484
|
+
# format:
|
485
|
+
#
|
486
|
+
# `arn:partition:ssm:region:account-id:document/document-name `
|
487
|
+
#
|
488
|
+
# For example:
|
489
|
+
#
|
490
|
+
# `arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document`
|
491
|
+
#
|
492
|
+
# For AWS-predefined documents and SSM documents you created in your
|
493
|
+
# account, you only need to specify the document name. For example,
|
494
|
+
# `AWS-ApplyPatchBaseline` or `My-Document`.
|
476
495
|
#
|
477
496
|
# @option params [String] :document_version
|
478
497
|
# The document version you want to associate with the target(s). Can be
|
@@ -542,7 +561,7 @@ module Aws::SSM
|
|
542
561
|
# @example Request syntax with placeholder values
|
543
562
|
#
|
544
563
|
# resp = client.create_association({
|
545
|
-
# name: "
|
564
|
+
# name: "DocumentARN", # required
|
546
565
|
# document_version: "DocumentVersion",
|
547
566
|
# instance_id: "InstanceId",
|
548
567
|
# parameters: {
|
@@ -638,7 +657,7 @@ module Aws::SSM
|
|
638
657
|
# resp = client.create_association_batch({
|
639
658
|
# entries: [ # required
|
640
659
|
# {
|
641
|
-
# name: "
|
660
|
+
# name: "DocumentARN", # required
|
642
661
|
# instance_id: "InstanceId",
|
643
662
|
# parameters: {
|
644
663
|
# "ParameterName" => ["ParameterValue"],
|
@@ -1004,7 +1023,7 @@ module Aws::SSM
|
|
1004
1023
|
# The name of the patch baseline.
|
1005
1024
|
#
|
1006
1025
|
# @option params [Types::PatchFilterGroup] :global_filters
|
1007
|
-
# A set of global filters used to
|
1026
|
+
# A set of global filters used to include patches in the baseline.
|
1008
1027
|
#
|
1009
1028
|
# @option params [Types::PatchRuleGroup] :approval_rules
|
1010
1029
|
# A set of rules used to include patches in the baseline.
|
@@ -1166,14 +1185,13 @@ module Aws::SSM
|
|
1166
1185
|
# By default, data is not encrypted in Amazon S3. We strongly recommend
|
1167
1186
|
# that you enable encryption in Amazon S3 to ensure secure data storage.
|
1168
1187
|
# We also recommend that you secure access to the Amazon S3 bucket by
|
1169
|
-
# creating a restrictive bucket policy.
|
1170
|
-
#
|
1171
|
-
# [Create a Resource Data Sync for Inventory][1] in the *AWS Systems
|
1188
|
+
# creating a restrictive bucket policy. For more information, see
|
1189
|
+
# [Configuring Resource Data Sync for Inventory][1] in the *AWS Systems
|
1172
1190
|
# Manager User Guide*.
|
1173
1191
|
#
|
1174
1192
|
#
|
1175
1193
|
#
|
1176
|
-
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-datasync
|
1194
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-datasync.html
|
1177
1195
|
#
|
1178
1196
|
# @option params [required, String] :sync_name
|
1179
1197
|
# A name for the configuration.
|
@@ -1254,7 +1272,7 @@ module Aws::SSM
|
|
1254
1272
|
# @example Request syntax with placeholder values
|
1255
1273
|
#
|
1256
1274
|
# resp = client.delete_association({
|
1257
|
-
# name: "
|
1275
|
+
# name: "DocumentARN",
|
1258
1276
|
# instance_id: "InstanceId",
|
1259
1277
|
# association_id: "AssociationId",
|
1260
1278
|
# })
|
@@ -1727,7 +1745,7 @@ module Aws::SSM
|
|
1727
1745
|
# @example Request syntax with placeholder values
|
1728
1746
|
#
|
1729
1747
|
# resp = client.describe_association({
|
1730
|
-
# name: "
|
1748
|
+
# name: "DocumentARN",
|
1731
1749
|
# instance_id: "InstanceId",
|
1732
1750
|
# association_id: "AssociationId",
|
1733
1751
|
# association_version: "AssociationVersion",
|
@@ -6862,7 +6880,26 @@ module Aws::SSM
|
|
6862
6880
|
# request.
|
6863
6881
|
#
|
6864
6882
|
# @option params [String] :name
|
6865
|
-
# The name of the
|
6883
|
+
# The name of the SSM document that contains the configuration
|
6884
|
+
# information for the instance. You can specify Command, Policy, or
|
6885
|
+
# Automation documents.
|
6886
|
+
#
|
6887
|
+
# You can specify AWS-predefined documents, documents you created, or a
|
6888
|
+
# document that is shared with you from another account.
|
6889
|
+
#
|
6890
|
+
# For SSM documents that are shared with you from other AWS accounts,
|
6891
|
+
# you must specify the complete SSM document ARN, in the following
|
6892
|
+
# format:
|
6893
|
+
#
|
6894
|
+
# `arn:aws:ssm:region:account-id:document/document-name `
|
6895
|
+
#
|
6896
|
+
# For example:
|
6897
|
+
#
|
6898
|
+
# `arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document`
|
6899
|
+
#
|
6900
|
+
# For AWS-predefined documents and SSM documents you created in your
|
6901
|
+
# account, you only need to specify the document name. For example,
|
6902
|
+
# `AWS-ApplyPatchBaseline` or `My-Document`.
|
6866
6903
|
#
|
6867
6904
|
# @option params [Array<Types::Target>] :targets
|
6868
6905
|
# The targets of the association.
|
@@ -6933,7 +6970,7 @@ module Aws::SSM
|
|
6933
6970
|
# output_s3_key_prefix: "S3KeyPrefix",
|
6934
6971
|
# },
|
6935
6972
|
# },
|
6936
|
-
# name: "
|
6973
|
+
# name: "DocumentARN",
|
6937
6974
|
# targets: [
|
6938
6975
|
# {
|
6939
6976
|
# key: "TargetKey",
|
@@ -7012,7 +7049,7 @@ module Aws::SSM
|
|
7012
7049
|
# @example Request syntax with placeholder values
|
7013
7050
|
#
|
7014
7051
|
# resp = client.update_association_status({
|
7015
|
-
# name: "
|
7052
|
+
# name: "DocumentARN", # required
|
7016
7053
|
# instance_id: "InstanceId", # required
|
7017
7054
|
# association_status: { # required
|
7018
7055
|
# date: Time.now, # required
|
@@ -7694,7 +7731,7 @@ module Aws::SSM
|
|
7694
7731
|
# The name of the patch baseline.
|
7695
7732
|
#
|
7696
7733
|
# @option params [Types::PatchFilterGroup] :global_filters
|
7697
|
-
# A set of global filters used to
|
7734
|
+
# A set of global filters used to include patches in the baseline.
|
7698
7735
|
#
|
7699
7736
|
# @option params [Types::PatchRuleGroup] :approval_rules
|
7700
7737
|
# A set of rules used to include patches in the baseline.
|
@@ -7876,7 +7913,7 @@ module Aws::SSM
|
|
7876
7913
|
params: params,
|
7877
7914
|
config: config)
|
7878
7915
|
context[:gem_name] = 'aws-sdk-ssm'
|
7879
|
-
context[:gem_version] = '1.
|
7916
|
+
context[:gem_version] = '1.37.0'
|
7880
7917
|
Seahorse::Client::Request.new(handlers, context)
|
7881
7918
|
end
|
7882
7919
|
|
@@ -931,7 +931,7 @@ module Aws::SSM
|
|
931
931
|
|
932
932
|
AddTagsToResourceResult.struct_class = Types::AddTagsToResourceResult
|
933
933
|
|
934
|
-
Association.add_member(:name, Shapes::ShapeRef.new(shape:
|
934
|
+
Association.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
935
935
|
Association.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
936
936
|
Association.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
|
937
937
|
Association.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
@@ -943,7 +943,7 @@ module Aws::SSM
|
|
943
943
|
Association.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
|
944
944
|
Association.struct_class = Types::Association
|
945
945
|
|
946
|
-
AssociationDescription.add_member(:name, Shapes::ShapeRef.new(shape:
|
946
|
+
AssociationDescription.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
947
947
|
AssociationDescription.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
948
948
|
AssociationDescription.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
949
949
|
AssociationDescription.add_member(:date, Shapes::ShapeRef.new(shape: DateTime, location_name: "Date"))
|
@@ -1032,7 +1032,7 @@ module Aws::SSM
|
|
1032
1032
|
AssociationVersionInfo.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
|
1033
1033
|
AssociationVersionInfo.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
1034
1034
|
AssociationVersionInfo.add_member(:created_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreatedDate"))
|
1035
|
-
AssociationVersionInfo.add_member(:name, Shapes::ShapeRef.new(shape:
|
1035
|
+
AssociationVersionInfo.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
1036
1036
|
AssociationVersionInfo.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
1037
1037
|
AssociationVersionInfo.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
1038
1038
|
AssociationVersionInfo.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
@@ -1290,7 +1290,7 @@ module Aws::SSM
|
|
1290
1290
|
|
1291
1291
|
CreateAssociationBatchRequestEntries.member = Shapes::ShapeRef.new(shape: CreateAssociationBatchRequestEntry)
|
1292
1292
|
|
1293
|
-
CreateAssociationBatchRequestEntry.add_member(:name, Shapes::ShapeRef.new(shape:
|
1293
|
+
CreateAssociationBatchRequestEntry.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "Name"))
|
1294
1294
|
CreateAssociationBatchRequestEntry.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
1295
1295
|
CreateAssociationBatchRequestEntry.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
1296
1296
|
CreateAssociationBatchRequestEntry.add_member(:automation_target_parameter_name, Shapes::ShapeRef.new(shape: AutomationTargetParameterName, location_name: "AutomationTargetParameterName"))
|
@@ -1308,7 +1308,7 @@ module Aws::SSM
|
|
1308
1308
|
CreateAssociationBatchResult.add_member(:failed, Shapes::ShapeRef.new(shape: FailedCreateAssociationList, location_name: "Failed"))
|
1309
1309
|
CreateAssociationBatchResult.struct_class = Types::CreateAssociationBatchResult
|
1310
1310
|
|
1311
|
-
CreateAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
1311
|
+
CreateAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "Name"))
|
1312
1312
|
CreateAssociationRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
1313
1313
|
CreateAssociationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
1314
1314
|
CreateAssociationRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
@@ -1383,7 +1383,7 @@ module Aws::SSM
|
|
1383
1383
|
|
1384
1384
|
DeleteActivationResult.struct_class = Types::DeleteActivationResult
|
1385
1385
|
|
1386
|
-
DeleteAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
1386
|
+
DeleteAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
1387
1387
|
DeleteAssociationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
1388
1388
|
DeleteAssociationRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
|
1389
1389
|
DeleteAssociationRequest.struct_class = Types::DeleteAssociationRequest
|
@@ -1501,7 +1501,7 @@ module Aws::SSM
|
|
1501
1501
|
DescribeAssociationExecutionsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1502
1502
|
DescribeAssociationExecutionsResult.struct_class = Types::DescribeAssociationExecutionsResult
|
1503
1503
|
|
1504
|
-
DescribeAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
1504
|
+
DescribeAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
1505
1505
|
DescribeAssociationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
1506
1506
|
DescribeAssociationRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
|
1507
1507
|
DescribeAssociationRequest.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
@@ -2124,7 +2124,7 @@ module Aws::SSM
|
|
2124
2124
|
InstanceAssociationStatusAggregatedCount.value = Shapes::ShapeRef.new(shape: InstanceCount)
|
2125
2125
|
|
2126
2126
|
InstanceAssociationStatusInfo.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
|
2127
|
-
InstanceAssociationStatusInfo.add_member(:name, Shapes::ShapeRef.new(shape:
|
2127
|
+
InstanceAssociationStatusInfo.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
2128
2128
|
InstanceAssociationStatusInfo.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
2129
2129
|
InstanceAssociationStatusInfo.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
2130
2130
|
InstanceAssociationStatusInfo.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
@@ -3088,7 +3088,7 @@ module Aws::SSM
|
|
3088
3088
|
UpdateAssociationRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
3089
3089
|
UpdateAssociationRequest.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, location_name: "ScheduleExpression"))
|
3090
3090
|
UpdateAssociationRequest.add_member(:output_location, Shapes::ShapeRef.new(shape: InstanceAssociationOutputLocation, location_name: "OutputLocation"))
|
3091
|
-
UpdateAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
3091
|
+
UpdateAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, location_name: "Name"))
|
3092
3092
|
UpdateAssociationRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
3093
3093
|
UpdateAssociationRequest.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
|
3094
3094
|
UpdateAssociationRequest.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
@@ -3101,7 +3101,7 @@ module Aws::SSM
|
|
3101
3101
|
UpdateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
3102
3102
|
UpdateAssociationResult.struct_class = Types::UpdateAssociationResult
|
3103
3103
|
|
3104
|
-
UpdateAssociationStatusRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
3104
|
+
UpdateAssociationStatusRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "Name"))
|
3105
3105
|
UpdateAssociationStatusRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
3106
3106
|
UpdateAssociationStatusRequest.add_member(:association_status, Shapes::ShapeRef.new(shape: AssociationStatus, required: true, location_name: "AssociationStatus"))
|
3107
3107
|
UpdateAssociationStatusRequest.struct_class = Types::UpdateAssociationStatusRequest
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -2092,7 +2092,7 @@ module Aws::SSM
|
|
2092
2092
|
# {
|
2093
2093
|
# entries: [ # required
|
2094
2094
|
# {
|
2095
|
-
# name: "
|
2095
|
+
# name: "DocumentARN", # required
|
2096
2096
|
# instance_id: "InstanceId",
|
2097
2097
|
# parameters: {
|
2098
2098
|
# "ParameterName" => ["ParameterValue"],
|
@@ -2139,7 +2139,7 @@ module Aws::SSM
|
|
2139
2139
|
# data as a hash:
|
2140
2140
|
#
|
2141
2141
|
# {
|
2142
|
-
# name: "
|
2142
|
+
# name: "DocumentARN", # required
|
2143
2143
|
# instance_id: "InstanceId",
|
2144
2144
|
# parameters: {
|
2145
2145
|
# "ParameterName" => ["ParameterValue"],
|
@@ -2167,7 +2167,26 @@ module Aws::SSM
|
|
2167
2167
|
# }
|
2168
2168
|
#
|
2169
2169
|
# @!attribute [rw] name
|
2170
|
-
# The name of the
|
2170
|
+
# The name of the SSM document that contains the configuration
|
2171
|
+
# information for the instance. You can specify Command, Policy, or
|
2172
|
+
# Automation documents.
|
2173
|
+
#
|
2174
|
+
# You can specify AWS-predefined documents, documents you created, or
|
2175
|
+
# a document that is shared with you from another account.
|
2176
|
+
#
|
2177
|
+
# For SSM documents that are shared with you from other AWS accounts,
|
2178
|
+
# you must specify the complete SSM document ARN, in the following
|
2179
|
+
# format:
|
2180
|
+
#
|
2181
|
+
# `arn:aws:ssm:region:account-id:document/document-name `
|
2182
|
+
#
|
2183
|
+
# For example:
|
2184
|
+
#
|
2185
|
+
# `arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document`
|
2186
|
+
#
|
2187
|
+
# For AWS-predefined documents and SSM documents you created in your
|
2188
|
+
# account, you only need to specify the document name. For example,
|
2189
|
+
# `AWS-ApplyPatchBaseline` or `My-Document`.
|
2171
2190
|
# @return [String]
|
2172
2191
|
#
|
2173
2192
|
# @!attribute [rw] instance_id
|
@@ -2279,7 +2298,7 @@ module Aws::SSM
|
|
2279
2298
|
# data as a hash:
|
2280
2299
|
#
|
2281
2300
|
# {
|
2282
|
-
# name: "
|
2301
|
+
# name: "DocumentARN", # required
|
2283
2302
|
# document_version: "DocumentVersion",
|
2284
2303
|
# instance_id: "InstanceId",
|
2285
2304
|
# parameters: {
|
@@ -2307,7 +2326,26 @@ module Aws::SSM
|
|
2307
2326
|
# }
|
2308
2327
|
#
|
2309
2328
|
# @!attribute [rw] name
|
2310
|
-
# The name of the
|
2329
|
+
# The name of the SSM document that contains the configuration
|
2330
|
+
# information for the instance. You can specify Command, Policy, or
|
2331
|
+
# Automation documents.
|
2332
|
+
#
|
2333
|
+
# You can specify AWS-predefined documents, documents you created, or
|
2334
|
+
# a document that is shared with you from another account.
|
2335
|
+
#
|
2336
|
+
# For SSM documents that are shared with you from other AWS accounts,
|
2337
|
+
# you must specify the complete SSM document ARN, in the following
|
2338
|
+
# format:
|
2339
|
+
#
|
2340
|
+
# `arn:partition:ssm:region:account-id:document/document-name `
|
2341
|
+
#
|
2342
|
+
# For example:
|
2343
|
+
#
|
2344
|
+
# `arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document`
|
2345
|
+
#
|
2346
|
+
# For AWS-predefined documents and SSM documents you created in your
|
2347
|
+
# account, you only need to specify the document name. For example,
|
2348
|
+
# `AWS-ApplyPatchBaseline` or `My-Document`.
|
2311
2349
|
# @return [String]
|
2312
2350
|
#
|
2313
2351
|
# @!attribute [rw] document_version
|
@@ -2732,7 +2770,7 @@ module Aws::SSM
|
|
2732
2770
|
# @return [String]
|
2733
2771
|
#
|
2734
2772
|
# @!attribute [rw] global_filters
|
2735
|
-
# A set of global filters used to
|
2773
|
+
# A set of global filters used to include patches in the baseline.
|
2736
2774
|
# @return [Types::PatchFilterGroup]
|
2737
2775
|
#
|
2738
2776
|
# @!attribute [rw] approval_rules
|
@@ -2917,7 +2955,7 @@ module Aws::SSM
|
|
2917
2955
|
# data as a hash:
|
2918
2956
|
#
|
2919
2957
|
# {
|
2920
|
-
# name: "
|
2958
|
+
# name: "DocumentARN",
|
2921
2959
|
# instance_id: "InstanceId",
|
2922
2960
|
# association_id: "AssociationId",
|
2923
2961
|
# }
|
@@ -3573,7 +3611,7 @@ module Aws::SSM
|
|
3573
3611
|
# data as a hash:
|
3574
3612
|
#
|
3575
3613
|
# {
|
3576
|
-
# name: "
|
3614
|
+
# name: "DocumentARN",
|
3577
3615
|
# instance_id: "InstanceId",
|
3578
3616
|
# association_id: "AssociationId",
|
3579
3617
|
# association_version: "AssociationVersion",
|
@@ -10606,6 +10644,10 @@ module Aws::SSM
|
|
10606
10644
|
#
|
10607
10645
|
# * `CentOS7.4`
|
10608
10646
|
#
|
10647
|
+
# * `CentOS7.5`
|
10648
|
+
#
|
10649
|
+
# * `CentOS7.6`
|
10650
|
+
#
|
10609
10651
|
# * `*`
|
10610
10652
|
#
|
10611
10653
|
# *Use a wildcard character (*) to target all supported operating
|
@@ -12982,7 +13024,7 @@ module Aws::SSM
|
|
12982
13024
|
# output_s3_key_prefix: "S3KeyPrefix",
|
12983
13025
|
# },
|
12984
13026
|
# },
|
12985
|
-
# name: "
|
13027
|
+
# name: "DocumentARN",
|
12986
13028
|
# targets: [
|
12987
13029
|
# {
|
12988
13030
|
# key: "TargetKey",
|
@@ -13022,7 +13064,26 @@ module Aws::SSM
|
|
13022
13064
|
# @return [Types::InstanceAssociationOutputLocation]
|
13023
13065
|
#
|
13024
13066
|
# @!attribute [rw] name
|
13025
|
-
# The name of the
|
13067
|
+
# The name of the SSM document that contains the configuration
|
13068
|
+
# information for the instance. You can specify Command, Policy, or
|
13069
|
+
# Automation documents.
|
13070
|
+
#
|
13071
|
+
# You can specify AWS-predefined documents, documents you created, or
|
13072
|
+
# a document that is shared with you from another account.
|
13073
|
+
#
|
13074
|
+
# For SSM documents that are shared with you from other AWS accounts,
|
13075
|
+
# you must specify the complete SSM document ARN, in the following
|
13076
|
+
# format:
|
13077
|
+
#
|
13078
|
+
# `arn:aws:ssm:region:account-id:document/document-name `
|
13079
|
+
#
|
13080
|
+
# For example:
|
13081
|
+
#
|
13082
|
+
# `arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document`
|
13083
|
+
#
|
13084
|
+
# For AWS-predefined documents and SSM documents you created in your
|
13085
|
+
# account, you only need to specify the document name. For example,
|
13086
|
+
# `AWS-ApplyPatchBaseline` or `My-Document`.
|
13026
13087
|
# @return [String]
|
13027
13088
|
#
|
13028
13089
|
# @!attribute [rw] targets
|
@@ -13115,7 +13176,7 @@ module Aws::SSM
|
|
13115
13176
|
# data as a hash:
|
13116
13177
|
#
|
13117
13178
|
# {
|
13118
|
-
# name: "
|
13179
|
+
# name: "DocumentARN", # required
|
13119
13180
|
# instance_id: "InstanceId", # required
|
13120
13181
|
# association_status: { # required
|
13121
13182
|
# date: Time.now, # required
|
@@ -13923,7 +13984,7 @@ module Aws::SSM
|
|
13923
13984
|
# @return [String]
|
13924
13985
|
#
|
13925
13986
|
# @!attribute [rw] global_filters
|
13926
|
-
# A set of global filters used to
|
13987
|
+
# A set of global filters used to include patches in the baseline.
|
13927
13988
|
# @return [Types::PatchFilterGroup]
|
13928
13989
|
#
|
13929
13990
|
# @!attribute [rw] approval_rules
|
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.37.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-02-
|
11
|
+
date: 2019-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|