aws-sdk-ssm 1.16.0 → 1.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2ebbc05efcca8468b42cd55f1fee3dbeeba6ed6
4
- data.tar.gz: f78f601cf35f5a986dc9d74ddf815b0c384e2e26
3
+ metadata.gz: 6fc4779ff905039aa0959ac339db8795ca893320
4
+ data.tar.gz: cab8dd8c3e5353a75a26d9ff9c0e3d42062388de
5
5
  SHA512:
6
- metadata.gz: 7e98ba9506d5ad954fc1c46fdb34ff8c5f0b75de3cf5846f5667b44826a23408669449b7294140d3fc3c0c8d03313059d2e45463aa955ed946a4aa67c2e3beb2
7
- data.tar.gz: fe9a6d1502c377f2fd12dc03aa3a5e761bc688943ede6db066f4ce1095f598f5695693df4bd76f32782a284407b4a9d0651bfb1422cbad11af44acbba5d4189f
6
+ metadata.gz: ae3e4dfcad4bcb763ad07868436ced572e81f1d292fe346fe88c4691565ce904f7522309bcc9bb00d1e46bfb34b0583ccdd79ac1af5228a4287cb2e04fd9e9aa
7
+ data.tar.gz: 57341d2a702e44edffac704a19fb45368a8e97f721da6e49b689d9228c2fa07f617c3b302876298ae8c5c646bd97f0eba7444d7de4667090b2143a2ca90d872b
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-ssm/customizations'
42
42
  # @service
43
43
  module Aws::SSM
44
44
 
45
- GEM_VERSION = '1.16.0'
45
+ GEM_VERSION = '1.17.0'
46
46
 
47
47
  end
@@ -1471,6 +1471,147 @@ module Aws::SSM
1471
1471
  req.send_request(options)
1472
1472
  end
1473
1473
 
1474
+ # Use this API action to view information about a specific execution of
1475
+ # a specific association.
1476
+ #
1477
+ # @option params [required, String] :association_id
1478
+ # The association ID that includes the execution for which you want to
1479
+ # view details.
1480
+ #
1481
+ # @option params [required, String] :execution_id
1482
+ # The execution ID for which you want to view details.
1483
+ #
1484
+ # @option params [Array<Types::AssociationExecutionTargetsFilter>] :filters
1485
+ # Filters for the request. You can specify the following filters and
1486
+ # values.
1487
+ #
1488
+ # Status (EQUAL)
1489
+ #
1490
+ # ResourceId (EQUAL)
1491
+ #
1492
+ # ResourceType (EQUAL)
1493
+ #
1494
+ # @option params [Integer] :max_results
1495
+ # The maximum number of items to return for this call. The call also
1496
+ # returns a token that you can specify in a subsequent call to get the
1497
+ # next set of results.
1498
+ #
1499
+ # @option params [String] :next_token
1500
+ # A token to start the list. Use this token to get the next set of
1501
+ # results.
1502
+ #
1503
+ # @return [Types::DescribeAssociationExecutionTargetsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1504
+ #
1505
+ # * {Types::DescribeAssociationExecutionTargetsResult#association_execution_targets #association_execution_targets} => Array&lt;Types::AssociationExecutionTarget&gt;
1506
+ # * {Types::DescribeAssociationExecutionTargetsResult#next_token #next_token} => String
1507
+ #
1508
+ # @example Request syntax with placeholder values
1509
+ #
1510
+ # resp = client.describe_association_execution_targets({
1511
+ # association_id: "AssociationId", # required
1512
+ # execution_id: "AssociationExecutionId", # required
1513
+ # filters: [
1514
+ # {
1515
+ # key: "Status", # required, accepts Status, ResourceId, ResourceType
1516
+ # value: "AssociationExecutionTargetsFilterValue", # required
1517
+ # },
1518
+ # ],
1519
+ # max_results: 1,
1520
+ # next_token: "NextToken",
1521
+ # })
1522
+ #
1523
+ # @example Response structure
1524
+ #
1525
+ # resp.association_execution_targets #=> Array
1526
+ # resp.association_execution_targets[0].association_id #=> String
1527
+ # resp.association_execution_targets[0].association_version #=> String
1528
+ # resp.association_execution_targets[0].execution_id #=> String
1529
+ # resp.association_execution_targets[0].resource_id #=> String
1530
+ # resp.association_execution_targets[0].resource_type #=> String
1531
+ # resp.association_execution_targets[0].status #=> String
1532
+ # resp.association_execution_targets[0].detailed_status #=> String
1533
+ # resp.association_execution_targets[0].last_execution_date #=> Time
1534
+ # resp.association_execution_targets[0].output_source.output_source_id #=> String
1535
+ # resp.association_execution_targets[0].output_source.output_source_type #=> String
1536
+ # resp.next_token #=> String
1537
+ #
1538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationExecutionTargets AWS API Documentation
1539
+ #
1540
+ # @overload describe_association_execution_targets(params = {})
1541
+ # @param [Hash] params ({})
1542
+ def describe_association_execution_targets(params = {}, options = {})
1543
+ req = build_request(:describe_association_execution_targets, params)
1544
+ req.send_request(options)
1545
+ end
1546
+
1547
+ # Use this API action to view all executions for a specific association
1548
+ # ID.
1549
+ #
1550
+ # @option params [required, String] :association_id
1551
+ # The association ID for which you want to view execution history
1552
+ # details.
1553
+ #
1554
+ # @option params [Array<Types::AssociationExecutionFilter>] :filters
1555
+ # Filters for the request. You can specify the following filters and
1556
+ # values.
1557
+ #
1558
+ # ExecutionId (EQUAL)
1559
+ #
1560
+ # Status (EQUAL)
1561
+ #
1562
+ # CreatedTime (EQUAL, GREATER\_THAN, LESS\_THAN)
1563
+ #
1564
+ # @option params [Integer] :max_results
1565
+ # The maximum number of items to return for this call. The call also
1566
+ # returns a token that you can specify in a subsequent call to get the
1567
+ # next set of results.
1568
+ #
1569
+ # @option params [String] :next_token
1570
+ # A token to start the list. Use this token to get the next set of
1571
+ # results.
1572
+ #
1573
+ # @return [Types::DescribeAssociationExecutionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1574
+ #
1575
+ # * {Types::DescribeAssociationExecutionsResult#association_executions #association_executions} => Array&lt;Types::AssociationExecution&gt;
1576
+ # * {Types::DescribeAssociationExecutionsResult#next_token #next_token} => String
1577
+ #
1578
+ # @example Request syntax with placeholder values
1579
+ #
1580
+ # resp = client.describe_association_executions({
1581
+ # association_id: "AssociationId", # required
1582
+ # filters: [
1583
+ # {
1584
+ # key: "ExecutionId", # required, accepts ExecutionId, Status, CreatedTime
1585
+ # value: "AssociationExecutionFilterValue", # required
1586
+ # type: "EQUAL", # required, accepts EQUAL, LESS_THAN, GREATER_THAN
1587
+ # },
1588
+ # ],
1589
+ # max_results: 1,
1590
+ # next_token: "NextToken",
1591
+ # })
1592
+ #
1593
+ # @example Response structure
1594
+ #
1595
+ # resp.association_executions #=> Array
1596
+ # resp.association_executions[0].association_id #=> String
1597
+ # resp.association_executions[0].association_version #=> String
1598
+ # resp.association_executions[0].execution_id #=> String
1599
+ # resp.association_executions[0].status #=> String
1600
+ # resp.association_executions[0].detailed_status #=> String
1601
+ # resp.association_executions[0].created_time #=> Time
1602
+ # resp.association_executions[0].last_execution_date #=> Time
1603
+ # resp.association_executions[0].resource_count_by_status #=> String
1604
+ # resp.next_token #=> String
1605
+ #
1606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationExecutions AWS API Documentation
1607
+ #
1608
+ # @overload describe_association_executions(params = {})
1609
+ # @param [Hash] params ({})
1610
+ def describe_association_executions(params = {}, options = {})
1611
+ req = build_request(:describe_association_executions, params)
1612
+ req.send_request(options)
1613
+ end
1614
+
1474
1615
  # Provides details about all active and terminated Automation
1475
1616
  # executions.
1476
1617
  #
@@ -3736,8 +3877,8 @@ module Aws::SSM
3736
3877
  #
3737
3878
  # @option params [required, String] :path
3738
3879
  # The hierarchy for the parameter. Hierarchies start with a forward
3739
- # slash (/) and end with the parameter name. A hierarchy can have a
3740
- # maximum of 15 levels. Here is an example of a hierarchy:
3880
+ # slash (/) and end with the parameter name. A parameter name hierarchy
3881
+ # can have a maximum of 15 levels. Here is an example of a hierarchy:
3741
3882
  # `/Finance/Prod/IAD/WinServ2016/license33`
3742
3883
  #
3743
3884
  # @option params [Boolean] :recursive
@@ -4922,9 +5063,26 @@ module Aws::SSM
4922
5063
  # the parameter path and name. For example:
4923
5064
  # `/Dev/DBServer/MySQL/db-string13`
4924
5065
  #
4925
- # For information about parameter name requirements and restrictions,
4926
- # see [Creating Systems Manager Parameters][1] in the *AWS Systems
4927
- # Manager User Guide*.
5066
+ # Naming Constraints:
5067
+ #
5068
+ # * Parameter names are case sensitive.
5069
+ #
5070
+ # * A parameter name must be unique within an AWS Region
5071
+ #
5072
+ # * A parameter name can't be prefixed with "aws" or "ssm"
5073
+ # (case-insensitive).
5074
+ #
5075
+ # * Parameter names can include only the following symbols and letters:
5076
+ # `a-zA-Z0-9_.-/`
5077
+ #
5078
+ # * A parameter name can't include spaces.
5079
+ #
5080
+ # * Parameter hierarchies are limited to a maximum depth of fifteen
5081
+ # levels.
5082
+ #
5083
+ # For additional information about valid values for parameter names, see
5084
+ # [Requirements and Constraints for Parameter Names][1] in the *AWS
5085
+ # Systems Manager User Guide*.
4928
5086
  #
4929
5087
  # <note markdown="1"> The maximum length constraint listed below includes capacity for
4930
5088
  # additional system attributes that are not part of the name. The
@@ -4935,10 +5093,11 @@ module Aws::SSM
4935
5093
  #
4936
5094
  #
4937
5095
  #
4938
- # [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html
5096
+ # [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html
4939
5097
  #
4940
5098
  # @option params [String] :description
4941
5099
  # Information about the parameter that you want to add to the system.
5100
+ # Optional but recommended.
4942
5101
  #
4943
5102
  # Do not enter personally identifiable information in this field.
4944
5103
  #
@@ -4948,10 +5107,32 @@ module Aws::SSM
4948
5107
  # @option params [required, String] :type
4949
5108
  # The type of parameter that you want to add to the system.
4950
5109
  #
5110
+ # Items in a `StringList` must be separated by a comma (,). You can't
5111
+ # use other punctuation or special character to escape items in the
5112
+ # list. If you have a parameter value that requires a comma, then use
5113
+ # the `String` data type.
5114
+ #
5115
+ # <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
5116
+ # templates or in the China Regions.
5117
+ #
5118
+ # </note>
5119
+ #
4951
5120
  # @option params [String] :key_id
4952
- # The KMS Key ID that you want to use to encrypt a parameter when you
4953
- # choose the SecureString data type. If you don't specify a key ID, the
4954
- # system uses the default key associated with your AWS account.
5121
+ # The KMS Key ID that you want to use to encrypt a parameter. Either the
5122
+ # default AWS Key Management Service (AWS KMS) key automatically
5123
+ # assigned to your AWS account or a custom key. Required for parameters
5124
+ # that use the `SecureString` data type.
5125
+ #
5126
+ # If you don't specify a key ID, the system uses the default key
5127
+ # associated with your AWS account.
5128
+ #
5129
+ # * To use your default AWS KMS key, choose the `SecureString` data
5130
+ # type, and do *not* specify the `Key ID` when you create the
5131
+ # parameter. The system automatically populates `Key ID` with your
5132
+ # default KMS key.
5133
+ #
5134
+ # * To use a custom KMS key, choose the `SecureString` data type with
5135
+ # the `Key ID` parameter.
4955
5136
  #
4956
5137
  # @option params [Boolean] :overwrite
4957
5138
  # Overwrite an existing parameter. If not specified, will default to
@@ -5577,6 +5758,30 @@ module Aws::SSM
5577
5758
  req.send_request(options)
5578
5759
  end
5579
5760
 
5761
+ # Use this API action to execute an association immediately and only one
5762
+ # time. This action can be helpful when troubleshooting associations.
5763
+ #
5764
+ # @option params [required, Array<String>] :association_ids
5765
+ # The association IDs that you want to execute immediately and only one
5766
+ # time.
5767
+ #
5768
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5769
+ #
5770
+ # @example Request syntax with placeholder values
5771
+ #
5772
+ # resp = client.start_associations_once({
5773
+ # association_ids: ["AssociationId"], # required
5774
+ # })
5775
+ #
5776
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAssociationsOnce AWS API Documentation
5777
+ #
5778
+ # @overload start_associations_once(params = {})
5779
+ # @param [Hash] params ({})
5780
+ def start_associations_once(params = {}, options = {})
5781
+ req = build_request(:start_associations_once, params)
5782
+ req.send_request(options)
5783
+ end
5784
+
5580
5785
  # Initiates execution of an Automation document.
5581
5786
  #
5582
5787
  # @option params [required, String] :document_name
@@ -6590,7 +6795,7 @@ module Aws::SSM
6590
6795
  params: params,
6591
6796
  config: config)
6592
6797
  context[:gem_name] = 'aws-sdk-ssm'
6593
- context[:gem_version] = '1.16.0'
6798
+ context[:gem_version] = '1.17.0'
6594
6799
  Seahorse::Client::Request.new(handlers, context)
6595
6800
  end
6596
6801
 
@@ -31,15 +31,33 @@ module Aws::SSM
31
31
  AssociationDescription = Shapes::StructureShape.new(name: 'AssociationDescription')
32
32
  AssociationDescriptionList = Shapes::ListShape.new(name: 'AssociationDescriptionList')
33
33
  AssociationDoesNotExist = Shapes::StructureShape.new(name: 'AssociationDoesNotExist')
34
+ AssociationExecution = Shapes::StructureShape.new(name: 'AssociationExecution')
35
+ AssociationExecutionDoesNotExist = Shapes::StructureShape.new(name: 'AssociationExecutionDoesNotExist')
36
+ AssociationExecutionFilter = Shapes::StructureShape.new(name: 'AssociationExecutionFilter')
37
+ AssociationExecutionFilterKey = Shapes::StringShape.new(name: 'AssociationExecutionFilterKey')
38
+ AssociationExecutionFilterList = Shapes::ListShape.new(name: 'AssociationExecutionFilterList')
39
+ AssociationExecutionFilterValue = Shapes::StringShape.new(name: 'AssociationExecutionFilterValue')
40
+ AssociationExecutionId = Shapes::StringShape.new(name: 'AssociationExecutionId')
41
+ AssociationExecutionTarget = Shapes::StructureShape.new(name: 'AssociationExecutionTarget')
42
+ AssociationExecutionTargetsFilter = Shapes::StructureShape.new(name: 'AssociationExecutionTargetsFilter')
43
+ AssociationExecutionTargetsFilterKey = Shapes::StringShape.new(name: 'AssociationExecutionTargetsFilterKey')
44
+ AssociationExecutionTargetsFilterList = Shapes::ListShape.new(name: 'AssociationExecutionTargetsFilterList')
45
+ AssociationExecutionTargetsFilterValue = Shapes::StringShape.new(name: 'AssociationExecutionTargetsFilterValue')
46
+ AssociationExecutionTargetsList = Shapes::ListShape.new(name: 'AssociationExecutionTargetsList')
47
+ AssociationExecutionsList = Shapes::ListShape.new(name: 'AssociationExecutionsList')
34
48
  AssociationFilter = Shapes::StructureShape.new(name: 'AssociationFilter')
35
49
  AssociationFilterKey = Shapes::StringShape.new(name: 'AssociationFilterKey')
36
50
  AssociationFilterList = Shapes::ListShape.new(name: 'AssociationFilterList')
51
+ AssociationFilterOperatorType = Shapes::StringShape.new(name: 'AssociationFilterOperatorType')
37
52
  AssociationFilterValue = Shapes::StringShape.new(name: 'AssociationFilterValue')
38
53
  AssociationId = Shapes::StringShape.new(name: 'AssociationId')
54
+ AssociationIdList = Shapes::ListShape.new(name: 'AssociationIdList')
39
55
  AssociationLimitExceeded = Shapes::StructureShape.new(name: 'AssociationLimitExceeded')
40
56
  AssociationList = Shapes::ListShape.new(name: 'AssociationList')
41
57
  AssociationName = Shapes::StringShape.new(name: 'AssociationName')
42
58
  AssociationOverview = Shapes::StructureShape.new(name: 'AssociationOverview')
59
+ AssociationResourceId = Shapes::StringShape.new(name: 'AssociationResourceId')
60
+ AssociationResourceType = Shapes::StringShape.new(name: 'AssociationResourceType')
43
61
  AssociationStatus = Shapes::StructureShape.new(name: 'AssociationStatus')
44
62
  AssociationStatusAggregatedCount = Shapes::MapShape.new(name: 'AssociationStatusAggregatedCount')
45
63
  AssociationStatusName = Shapes::StringShape.new(name: 'AssociationStatusName')
@@ -182,6 +200,10 @@ module Aws::SSM
182
200
  DescribeActivationsFilterList = Shapes::ListShape.new(name: 'DescribeActivationsFilterList')
183
201
  DescribeActivationsRequest = Shapes::StructureShape.new(name: 'DescribeActivationsRequest')
184
202
  DescribeActivationsResult = Shapes::StructureShape.new(name: 'DescribeActivationsResult')
203
+ DescribeAssociationExecutionTargetsRequest = Shapes::StructureShape.new(name: 'DescribeAssociationExecutionTargetsRequest')
204
+ DescribeAssociationExecutionTargetsResult = Shapes::StructureShape.new(name: 'DescribeAssociationExecutionTargetsResult')
205
+ DescribeAssociationExecutionsRequest = Shapes::StructureShape.new(name: 'DescribeAssociationExecutionsRequest')
206
+ DescribeAssociationExecutionsResult = Shapes::StructureShape.new(name: 'DescribeAssociationExecutionsResult')
185
207
  DescribeAssociationRequest = Shapes::StructureShape.new(name: 'DescribeAssociationRequest')
186
208
  DescribeAssociationResult = Shapes::StructureShape.new(name: 'DescribeAssociationResult')
187
209
  DescribeAutomationExecutionsRequest = Shapes::StructureShape.new(name: 'DescribeAutomationExecutionsRequest')
@@ -366,6 +388,7 @@ module Aws::SSM
366
388
  InvalidActivation = Shapes::StructureShape.new(name: 'InvalidActivation')
367
389
  InvalidActivationId = Shapes::StructureShape.new(name: 'InvalidActivationId')
368
390
  InvalidAllowedPatternException = Shapes::StructureShape.new(name: 'InvalidAllowedPatternException')
391
+ InvalidAssociation = Shapes::StructureShape.new(name: 'InvalidAssociation')
369
392
  InvalidAssociationVersion = Shapes::StructureShape.new(name: 'InvalidAssociationVersion')
370
393
  InvalidAutomationExecutionParametersException = Shapes::StructureShape.new(name: 'InvalidAutomationExecutionParametersException')
371
394
  InvalidAutomationSignalException = Shapes::StructureShape.new(name: 'InvalidAutomationSignalException')
@@ -557,6 +580,9 @@ module Aws::SSM
557
580
  NotificationEventList = Shapes::ListShape.new(name: 'NotificationEventList')
558
581
  NotificationType = Shapes::StringShape.new(name: 'NotificationType')
559
582
  OperatingSystem = Shapes::StringShape.new(name: 'OperatingSystem')
583
+ OutputSource = Shapes::StructureShape.new(name: 'OutputSource')
584
+ OutputSourceId = Shapes::StringShape.new(name: 'OutputSourceId')
585
+ OutputSourceType = Shapes::StringShape.new(name: 'OutputSourceType')
560
586
  OwnerInformation = Shapes::StringShape.new(name: 'OwnerInformation')
561
587
  PSParameterName = Shapes::StringShape.new(name: 'PSParameterName')
562
588
  PSParameterValue = Shapes::StringShape.new(name: 'PSParameterValue')
@@ -676,6 +702,7 @@ module Aws::SSM
676
702
  ResourceComplianceSummaryItem = Shapes::StructureShape.new(name: 'ResourceComplianceSummaryItem')
677
703
  ResourceComplianceSummaryItemList = Shapes::ListShape.new(name: 'ResourceComplianceSummaryItemList')
678
704
  ResourceCount = Shapes::IntegerShape.new(name: 'ResourceCount')
705
+ ResourceCountByStatus = Shapes::StringShape.new(name: 'ResourceCountByStatus')
679
706
  ResourceDataSyncAWSKMSKeyARN = Shapes::StringShape.new(name: 'ResourceDataSyncAWSKMSKeyARN')
680
707
  ResourceDataSyncAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceDataSyncAlreadyExistsException')
681
708
  ResourceDataSyncCountExceededException = Shapes::StructureShape.new(name: 'ResourceDataSyncCountExceededException')
@@ -715,6 +742,8 @@ module Aws::SSM
715
742
  SnapshotId = Shapes::StringShape.new(name: 'SnapshotId')
716
743
  StandardErrorContent = Shapes::StringShape.new(name: 'StandardErrorContent')
717
744
  StandardOutputContent = Shapes::StringShape.new(name: 'StandardOutputContent')
745
+ StartAssociationsOnceRequest = Shapes::StructureShape.new(name: 'StartAssociationsOnceRequest')
746
+ StartAssociationsOnceResult = Shapes::StructureShape.new(name: 'StartAssociationsOnceResult')
718
747
  StartAutomationExecutionRequest = Shapes::StructureShape.new(name: 'StartAutomationExecutionRequest')
719
748
  StartAutomationExecutionResult = Shapes::StructureShape.new(name: 'StartAutomationExecutionResult')
720
749
  StatusAdditionalInfo = Shapes::StringShape.new(name: 'StatusAdditionalInfo')
@@ -834,12 +863,52 @@ module Aws::SSM
834
863
 
835
864
  AssociationDescriptionList.member = Shapes::ShapeRef.new(shape: AssociationDescription)
836
865
 
866
+ AssociationExecution.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
867
+ AssociationExecution.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
868
+ AssociationExecution.add_member(:execution_id, Shapes::ShapeRef.new(shape: AssociationExecutionId, location_name: "ExecutionId"))
869
+ AssociationExecution.add_member(:status, Shapes::ShapeRef.new(shape: StatusName, location_name: "Status"))
870
+ AssociationExecution.add_member(:detailed_status, Shapes::ShapeRef.new(shape: StatusName, location_name: "DetailedStatus"))
871
+ AssociationExecution.add_member(:created_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreatedTime"))
872
+ AssociationExecution.add_member(:last_execution_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastExecutionDate"))
873
+ AssociationExecution.add_member(:resource_count_by_status, Shapes::ShapeRef.new(shape: ResourceCountByStatus, location_name: "ResourceCountByStatus"))
874
+ AssociationExecution.struct_class = Types::AssociationExecution
875
+
876
+ AssociationExecutionFilter.add_member(:key, Shapes::ShapeRef.new(shape: AssociationExecutionFilterKey, required: true, location_name: "Key"))
877
+ AssociationExecutionFilter.add_member(:value, Shapes::ShapeRef.new(shape: AssociationExecutionFilterValue, required: true, location_name: "Value"))
878
+ AssociationExecutionFilter.add_member(:type, Shapes::ShapeRef.new(shape: AssociationFilterOperatorType, required: true, location_name: "Type"))
879
+ AssociationExecutionFilter.struct_class = Types::AssociationExecutionFilter
880
+
881
+ AssociationExecutionFilterList.member = Shapes::ShapeRef.new(shape: AssociationExecutionFilter)
882
+
883
+ AssociationExecutionTarget.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
884
+ AssociationExecutionTarget.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
885
+ AssociationExecutionTarget.add_member(:execution_id, Shapes::ShapeRef.new(shape: AssociationExecutionId, location_name: "ExecutionId"))
886
+ AssociationExecutionTarget.add_member(:resource_id, Shapes::ShapeRef.new(shape: AssociationResourceId, location_name: "ResourceId"))
887
+ AssociationExecutionTarget.add_member(:resource_type, Shapes::ShapeRef.new(shape: AssociationResourceType, location_name: "ResourceType"))
888
+ AssociationExecutionTarget.add_member(:status, Shapes::ShapeRef.new(shape: StatusName, location_name: "Status"))
889
+ AssociationExecutionTarget.add_member(:detailed_status, Shapes::ShapeRef.new(shape: StatusName, location_name: "DetailedStatus"))
890
+ AssociationExecutionTarget.add_member(:last_execution_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastExecutionDate"))
891
+ AssociationExecutionTarget.add_member(:output_source, Shapes::ShapeRef.new(shape: OutputSource, location_name: "OutputSource"))
892
+ AssociationExecutionTarget.struct_class = Types::AssociationExecutionTarget
893
+
894
+ AssociationExecutionTargetsFilter.add_member(:key, Shapes::ShapeRef.new(shape: AssociationExecutionTargetsFilterKey, required: true, location_name: "Key"))
895
+ AssociationExecutionTargetsFilter.add_member(:value, Shapes::ShapeRef.new(shape: AssociationExecutionTargetsFilterValue, required: true, location_name: "Value"))
896
+ AssociationExecutionTargetsFilter.struct_class = Types::AssociationExecutionTargetsFilter
897
+
898
+ AssociationExecutionTargetsFilterList.member = Shapes::ShapeRef.new(shape: AssociationExecutionTargetsFilter)
899
+
900
+ AssociationExecutionTargetsList.member = Shapes::ShapeRef.new(shape: AssociationExecutionTarget)
901
+
902
+ AssociationExecutionsList.member = Shapes::ShapeRef.new(shape: AssociationExecution)
903
+
837
904
  AssociationFilter.add_member(:key, Shapes::ShapeRef.new(shape: AssociationFilterKey, required: true, location_name: "key"))
838
905
  AssociationFilter.add_member(:value, Shapes::ShapeRef.new(shape: AssociationFilterValue, required: true, location_name: "value"))
839
906
  AssociationFilter.struct_class = Types::AssociationFilter
840
907
 
841
908
  AssociationFilterList.member = Shapes::ShapeRef.new(shape: AssociationFilter)
842
909
 
910
+ AssociationIdList.member = Shapes::ShapeRef.new(shape: AssociationId)
911
+
843
912
  AssociationList.member = Shapes::ShapeRef.new(shape: Association)
844
913
 
845
914
  AssociationOverview.add_member(:status, Shapes::ShapeRef.new(shape: StatusName, location_name: "Status"))
@@ -1253,6 +1322,27 @@ module Aws::SSM
1253
1322
  DescribeActivationsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1254
1323
  DescribeActivationsResult.struct_class = Types::DescribeActivationsResult
1255
1324
 
1325
+ DescribeAssociationExecutionTargetsRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location_name: "AssociationId"))
1326
+ DescribeAssociationExecutionTargetsRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: AssociationExecutionId, required: true, location_name: "ExecutionId"))
1327
+ DescribeAssociationExecutionTargetsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: AssociationExecutionTargetsFilterList, location_name: "Filters"))
1328
+ DescribeAssociationExecutionTargetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
1329
+ DescribeAssociationExecutionTargetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1330
+ DescribeAssociationExecutionTargetsRequest.struct_class = Types::DescribeAssociationExecutionTargetsRequest
1331
+
1332
+ DescribeAssociationExecutionTargetsResult.add_member(:association_execution_targets, Shapes::ShapeRef.new(shape: AssociationExecutionTargetsList, location_name: "AssociationExecutionTargets"))
1333
+ DescribeAssociationExecutionTargetsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1334
+ DescribeAssociationExecutionTargetsResult.struct_class = Types::DescribeAssociationExecutionTargetsResult
1335
+
1336
+ DescribeAssociationExecutionsRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location_name: "AssociationId"))
1337
+ DescribeAssociationExecutionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: AssociationExecutionFilterList, location_name: "Filters"))
1338
+ DescribeAssociationExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
1339
+ DescribeAssociationExecutionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1340
+ DescribeAssociationExecutionsRequest.struct_class = Types::DescribeAssociationExecutionsRequest
1341
+
1342
+ DescribeAssociationExecutionsResult.add_member(:association_executions, Shapes::ShapeRef.new(shape: AssociationExecutionsList, location_name: "AssociationExecutions"))
1343
+ DescribeAssociationExecutionsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1344
+ DescribeAssociationExecutionsResult.struct_class = Types::DescribeAssociationExecutionsResult
1345
+
1256
1346
  DescribeAssociationRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentName, location_name: "Name"))
1257
1347
  DescribeAssociationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
1258
1348
  DescribeAssociationRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
@@ -2259,6 +2349,10 @@ module Aws::SSM
2259
2349
 
2260
2350
  NotificationEventList.member = Shapes::ShapeRef.new(shape: NotificationEvent)
2261
2351
 
2352
+ OutputSource.add_member(:output_source_id, Shapes::ShapeRef.new(shape: OutputSourceId, location_name: "OutputSourceId"))
2353
+ OutputSource.add_member(:output_source_type, Shapes::ShapeRef.new(shape: OutputSourceType, location_name: "OutputSourceType"))
2354
+ OutputSource.struct_class = Types::OutputSource
2355
+
2262
2356
  Parameter.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, location_name: "Name"))
2263
2357
  Parameter.add_member(:type, Shapes::ShapeRef.new(shape: ParameterType, location_name: "Type"))
2264
2358
  Parameter.add_member(:value, Shapes::ShapeRef.new(shape: PSParameterValue, location_name: "Value"))
@@ -2573,6 +2667,11 @@ module Aws::SSM
2573
2667
  SeveritySummary.add_member(:unspecified_count, Shapes::ShapeRef.new(shape: ComplianceSummaryCount, location_name: "UnspecifiedCount"))
2574
2668
  SeveritySummary.struct_class = Types::SeveritySummary
2575
2669
 
2670
+ StartAssociationsOnceRequest.add_member(:association_ids, Shapes::ShapeRef.new(shape: AssociationIdList, required: true, location_name: "AssociationIds"))
2671
+ StartAssociationsOnceRequest.struct_class = Types::StartAssociationsOnceRequest
2672
+
2673
+ StartAssociationsOnceResult.struct_class = Types::StartAssociationsOnceResult
2674
+
2576
2675
  StartAutomationExecutionRequest.add_member(:document_name, Shapes::ShapeRef.new(shape: DocumentARN, required: true, location_name: "DocumentName"))
2577
2676
  StartAutomationExecutionRequest.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion", metadata: {"box"=>true}))
2578
2677
  StartAutomationExecutionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Parameters"))
@@ -3085,6 +3184,29 @@ module Aws::SSM
3085
3184
  o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceId)
3086
3185
  end)
3087
3186
 
3187
+ api.add_operation(:describe_association_execution_targets, Seahorse::Model::Operation.new.tap do |o|
3188
+ o.name = "DescribeAssociationExecutionTargets"
3189
+ o.http_method = "POST"
3190
+ o.http_request_uri = "/"
3191
+ o.input = Shapes::ShapeRef.new(shape: DescribeAssociationExecutionTargetsRequest)
3192
+ o.output = Shapes::ShapeRef.new(shape: DescribeAssociationExecutionTargetsResult)
3193
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
3194
+ o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
3195
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
3196
+ o.errors << Shapes::ShapeRef.new(shape: AssociationExecutionDoesNotExist)
3197
+ end)
3198
+
3199
+ api.add_operation(:describe_association_executions, Seahorse::Model::Operation.new.tap do |o|
3200
+ o.name = "DescribeAssociationExecutions"
3201
+ o.http_method = "POST"
3202
+ o.http_request_uri = "/"
3203
+ o.input = Shapes::ShapeRef.new(shape: DescribeAssociationExecutionsRequest)
3204
+ o.output = Shapes::ShapeRef.new(shape: DescribeAssociationExecutionsResult)
3205
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
3206
+ o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
3207
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
3208
+ end)
3209
+
3088
3210
  api.add_operation(:describe_automation_executions, Seahorse::Model::Operation.new.tap do |o|
3089
3211
  o.name = "DescribeAutomationExecutions"
3090
3212
  o.http_method = "POST"
@@ -3871,6 +3993,16 @@ module Aws::SSM
3871
3993
  o.errors << Shapes::ShapeRef.new(shape: InvalidNotificationConfig)
3872
3994
  end)
3873
3995
 
3996
+ api.add_operation(:start_associations_once, Seahorse::Model::Operation.new.tap do |o|
3997
+ o.name = "StartAssociationsOnce"
3998
+ o.http_method = "POST"
3999
+ o.http_request_uri = "/"
4000
+ o.input = Shapes::ShapeRef.new(shape: StartAssociationsOnceRequest)
4001
+ o.output = Shapes::ShapeRef.new(shape: StartAssociationsOnceResult)
4002
+ o.errors << Shapes::ShapeRef.new(shape: InvalidAssociation)
4003
+ o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
4004
+ end)
4005
+
3874
4006
  api.add_operation(:start_automation_execution, Seahorse::Model::Operation.new.tap do |o|
3875
4007
  o.name = "StartAutomationExecution"
3876
4008
  o.http_method = "POST"
@@ -287,6 +287,171 @@ module Aws::SSM
287
287
  include Aws::Structure
288
288
  end
289
289
 
290
+ # Includes information about the specified association.
291
+ #
292
+ # @!attribute [rw] association_id
293
+ # The association ID.
294
+ # @return [String]
295
+ #
296
+ # @!attribute [rw] association_version
297
+ # The association version.
298
+ # @return [String]
299
+ #
300
+ # @!attribute [rw] execution_id
301
+ # The execution ID for the association. If the association does not
302
+ # run at intervals or according to a schedule, then the ExecutionID is
303
+ # the same as the AssociationID.
304
+ # @return [String]
305
+ #
306
+ # @!attribute [rw] status
307
+ # The status of the association execution.
308
+ # @return [String]
309
+ #
310
+ # @!attribute [rw] detailed_status
311
+ # Detailed status information about the execution.
312
+ # @return [String]
313
+ #
314
+ # @!attribute [rw] created_time
315
+ # The time the execution started.
316
+ # @return [Time]
317
+ #
318
+ # @!attribute [rw] last_execution_date
319
+ # The date of the last execution.
320
+ # @return [Time]
321
+ #
322
+ # @!attribute [rw] resource_count_by_status
323
+ # An aggregate status of the resources in the execution based on the
324
+ # status type.
325
+ # @return [String]
326
+ #
327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationExecution AWS API Documentation
328
+ #
329
+ class AssociationExecution < Struct.new(
330
+ :association_id,
331
+ :association_version,
332
+ :execution_id,
333
+ :status,
334
+ :detailed_status,
335
+ :created_time,
336
+ :last_execution_date,
337
+ :resource_count_by_status)
338
+ include Aws::Structure
339
+ end
340
+
341
+ # Filters used in the request.
342
+ #
343
+ # @note When making an API call, you may pass AssociationExecutionFilter
344
+ # data as a hash:
345
+ #
346
+ # {
347
+ # key: "ExecutionId", # required, accepts ExecutionId, Status, CreatedTime
348
+ # value: "AssociationExecutionFilterValue", # required
349
+ # type: "EQUAL", # required, accepts EQUAL, LESS_THAN, GREATER_THAN
350
+ # }
351
+ #
352
+ # @!attribute [rw] key
353
+ # The key value used in the request.
354
+ # @return [String]
355
+ #
356
+ # @!attribute [rw] value
357
+ # The value specified for the key.
358
+ # @return [String]
359
+ #
360
+ # @!attribute [rw] type
361
+ # The filter type specified in the request.
362
+ # @return [String]
363
+ #
364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationExecutionFilter AWS API Documentation
365
+ #
366
+ class AssociationExecutionFilter < Struct.new(
367
+ :key,
368
+ :value,
369
+ :type)
370
+ include Aws::Structure
371
+ end
372
+
373
+ # Includes information about the specified association execution.
374
+ #
375
+ # @!attribute [rw] association_id
376
+ # The association ID.
377
+ # @return [String]
378
+ #
379
+ # @!attribute [rw] association_version
380
+ # The association version.
381
+ # @return [String]
382
+ #
383
+ # @!attribute [rw] execution_id
384
+ # The execution ID. If the association does not run at intervals or
385
+ # according to a schedule, then the ExecutionID is the same as the
386
+ # AssociationID.
387
+ # @return [String]
388
+ #
389
+ # @!attribute [rw] resource_id
390
+ # The resource ID, for example, the instance ID where the association
391
+ # ran.
392
+ # @return [String]
393
+ #
394
+ # @!attribute [rw] resource_type
395
+ # The resource type, for example, instance.
396
+ # @return [String]
397
+ #
398
+ # @!attribute [rw] status
399
+ # The association execution status.
400
+ # @return [String]
401
+ #
402
+ # @!attribute [rw] detailed_status
403
+ # Detailed information about the execution status.
404
+ # @return [String]
405
+ #
406
+ # @!attribute [rw] last_execution_date
407
+ # The date of the last execution.
408
+ # @return [Time]
409
+ #
410
+ # @!attribute [rw] output_source
411
+ # The location where the association details are saved.
412
+ # @return [Types::OutputSource]
413
+ #
414
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationExecutionTarget AWS API Documentation
415
+ #
416
+ class AssociationExecutionTarget < Struct.new(
417
+ :association_id,
418
+ :association_version,
419
+ :execution_id,
420
+ :resource_id,
421
+ :resource_type,
422
+ :status,
423
+ :detailed_status,
424
+ :last_execution_date,
425
+ :output_source)
426
+ include Aws::Structure
427
+ end
428
+
429
+ # Filters for the association execution.
430
+ #
431
+ # @note When making an API call, you may pass AssociationExecutionTargetsFilter
432
+ # data as a hash:
433
+ #
434
+ # {
435
+ # key: "Status", # required, accepts Status, ResourceId, ResourceType
436
+ # value: "AssociationExecutionTargetsFilterValue", # required
437
+ # }
438
+ #
439
+ # @!attribute [rw] key
440
+ # The key value used in the request.
441
+ # @return [String]
442
+ #
443
+ # @!attribute [rw] value
444
+ # The value specified for the key.
445
+ # @return [String]
446
+ #
447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationExecutionTargetsFilter AWS API Documentation
448
+ #
449
+ class AssociationExecutionTargetsFilter < Struct.new(
450
+ :key,
451
+ :value)
452
+ include Aws::Structure
453
+ end
454
+
290
455
  # Describes a filter.
291
456
  #
292
457
  # @note When making an API call, you may pass AssociationFilter
@@ -2705,6 +2870,151 @@ module Aws::SSM
2705
2870
  include Aws::Structure
2706
2871
  end
2707
2872
 
2873
+ # @note When making an API call, you may pass DescribeAssociationExecutionTargetsRequest
2874
+ # data as a hash:
2875
+ #
2876
+ # {
2877
+ # association_id: "AssociationId", # required
2878
+ # execution_id: "AssociationExecutionId", # required
2879
+ # filters: [
2880
+ # {
2881
+ # key: "Status", # required, accepts Status, ResourceId, ResourceType
2882
+ # value: "AssociationExecutionTargetsFilterValue", # required
2883
+ # },
2884
+ # ],
2885
+ # max_results: 1,
2886
+ # next_token: "NextToken",
2887
+ # }
2888
+ #
2889
+ # @!attribute [rw] association_id
2890
+ # The association ID that includes the execution for which you want to
2891
+ # view details.
2892
+ # @return [String]
2893
+ #
2894
+ # @!attribute [rw] execution_id
2895
+ # The execution ID for which you want to view details.
2896
+ # @return [String]
2897
+ #
2898
+ # @!attribute [rw] filters
2899
+ # Filters for the request. You can specify the following filters and
2900
+ # values.
2901
+ #
2902
+ # Status (EQUAL)
2903
+ #
2904
+ # ResourceId (EQUAL)
2905
+ #
2906
+ # ResourceType (EQUAL)
2907
+ # @return [Array<Types::AssociationExecutionTargetsFilter>]
2908
+ #
2909
+ # @!attribute [rw] max_results
2910
+ # The maximum number of items to return for this call. The call also
2911
+ # returns a token that you can specify in a subsequent call to get the
2912
+ # next set of results.
2913
+ # @return [Integer]
2914
+ #
2915
+ # @!attribute [rw] next_token
2916
+ # A token to start the list. Use this token to get the next set of
2917
+ # results.
2918
+ # @return [String]
2919
+ #
2920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationExecutionTargetsRequest AWS API Documentation
2921
+ #
2922
+ class DescribeAssociationExecutionTargetsRequest < Struct.new(
2923
+ :association_id,
2924
+ :execution_id,
2925
+ :filters,
2926
+ :max_results,
2927
+ :next_token)
2928
+ include Aws::Structure
2929
+ end
2930
+
2931
+ # @!attribute [rw] association_execution_targets
2932
+ # Information about the execution.
2933
+ # @return [Array<Types::AssociationExecutionTarget>]
2934
+ #
2935
+ # @!attribute [rw] next_token
2936
+ # The token for the next set of items to return. Use this token to get
2937
+ # the next set of results.
2938
+ # @return [String]
2939
+ #
2940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationExecutionTargetsResult AWS API Documentation
2941
+ #
2942
+ class DescribeAssociationExecutionTargetsResult < Struct.new(
2943
+ :association_execution_targets,
2944
+ :next_token)
2945
+ include Aws::Structure
2946
+ end
2947
+
2948
+ # @note When making an API call, you may pass DescribeAssociationExecutionsRequest
2949
+ # data as a hash:
2950
+ #
2951
+ # {
2952
+ # association_id: "AssociationId", # required
2953
+ # filters: [
2954
+ # {
2955
+ # key: "ExecutionId", # required, accepts ExecutionId, Status, CreatedTime
2956
+ # value: "AssociationExecutionFilterValue", # required
2957
+ # type: "EQUAL", # required, accepts EQUAL, LESS_THAN, GREATER_THAN
2958
+ # },
2959
+ # ],
2960
+ # max_results: 1,
2961
+ # next_token: "NextToken",
2962
+ # }
2963
+ #
2964
+ # @!attribute [rw] association_id
2965
+ # The association ID for which you want to view execution history
2966
+ # details.
2967
+ # @return [String]
2968
+ #
2969
+ # @!attribute [rw] filters
2970
+ # Filters for the request. You can specify the following filters and
2971
+ # values.
2972
+ #
2973
+ # ExecutionId (EQUAL)
2974
+ #
2975
+ # Status (EQUAL)
2976
+ #
2977
+ # CreatedTime (EQUAL, GREATER\_THAN, LESS\_THAN)
2978
+ # @return [Array<Types::AssociationExecutionFilter>]
2979
+ #
2980
+ # @!attribute [rw] max_results
2981
+ # The maximum number of items to return for this call. The call also
2982
+ # returns a token that you can specify in a subsequent call to get the
2983
+ # next set of results.
2984
+ # @return [Integer]
2985
+ #
2986
+ # @!attribute [rw] next_token
2987
+ # A token to start the list. Use this token to get the next set of
2988
+ # results.
2989
+ # @return [String]
2990
+ #
2991
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationExecutionsRequest AWS API Documentation
2992
+ #
2993
+ class DescribeAssociationExecutionsRequest < Struct.new(
2994
+ :association_id,
2995
+ :filters,
2996
+ :max_results,
2997
+ :next_token)
2998
+ include Aws::Structure
2999
+ end
3000
+
3001
+ # @!attribute [rw] association_executions
3002
+ # A list of the executions for the specified association ID.
3003
+ # @return [Array<Types::AssociationExecution>]
3004
+ #
3005
+ # @!attribute [rw] next_token
3006
+ # The token for the next set of items to return. Use this token to get
3007
+ # the next set of results.
3008
+ # @return [String]
3009
+ #
3010
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociationExecutionsResult AWS API Documentation
3011
+ #
3012
+ class DescribeAssociationExecutionsResult < Struct.new(
3013
+ :association_executions,
3014
+ :next_token)
3015
+ include Aws::Structure
3016
+ end
3017
+
2708
3018
  # @note When making an API call, you may pass DescribeAssociationRequest
2709
3019
  # data as a hash:
2710
3020
  #
@@ -5646,9 +5956,9 @@ module Aws::SSM
5646
5956
  #
5647
5957
  # @!attribute [rw] path
5648
5958
  # The hierarchy for the parameter. Hierarchies start with a forward
5649
- # slash (/) and end with the parameter name. A hierarchy can have a
5650
- # maximum of 15 levels. Here is an example of a hierarchy:
5651
- # `/Finance/Prod/IAD/WinServ2016/license33`
5959
+ # slash (/) and end with the parameter name. A parameter name
5960
+ # hierarchy can have a maximum of 15 levels. Here is an example of a
5961
+ # hierarchy: `/Finance/Prod/IAD/WinServ2016/license33`
5652
5962
  # @return [String]
5653
5963
  #
5654
5964
  # @!attribute [rw] recursive
@@ -8307,6 +8617,27 @@ module Aws::SSM
8307
8617
  include Aws::Structure
8308
8618
  end
8309
8619
 
8620
+ # Information about the source where the association execution details
8621
+ # are stored.
8622
+ #
8623
+ # @!attribute [rw] output_source_id
8624
+ # The ID of the output source, for example the URL of an Amazon S3
8625
+ # bucket.
8626
+ # @return [String]
8627
+ #
8628
+ # @!attribute [rw] output_source_type
8629
+ # The type of source where the association execution details are
8630
+ # stored, for example, Amazon S3.
8631
+ # @return [String]
8632
+ #
8633
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OutputSource AWS API Documentation
8634
+ #
8635
+ class OutputSource < Struct.new(
8636
+ :output_source_id,
8637
+ :output_source_type)
8638
+ include Aws::Structure
8639
+ end
8640
+
8310
8641
  # An Amazon EC2 Systems Manager parameter in Parameter Store.
8311
8642
  #
8312
8643
  # @!attribute [rw] name
@@ -9307,7 +9638,7 @@ module Aws::SSM
9307
9638
  #
9308
9639
  # `keepcache=0`
9309
9640
  #
9310
- # `debualevel=2`
9641
+ # `debuglevel=2`
9311
9642
  # @return [String]
9312
9643
  #
9313
9644
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchSource AWS API Documentation
@@ -9491,9 +9822,26 @@ module Aws::SSM
9491
9822
  # of the parameter path and name. For example:
9492
9823
  # `/Dev/DBServer/MySQL/db-string13`
9493
9824
  #
9494
- # For information about parameter name requirements and restrictions,
9495
- # see [Creating Systems Manager Parameters][1] in the *AWS Systems
9496
- # Manager User Guide*.
9825
+ # Naming Constraints:
9826
+ #
9827
+ # * Parameter names are case sensitive.
9828
+ #
9829
+ # * A parameter name must be unique within an AWS Region
9830
+ #
9831
+ # * A parameter name can't be prefixed with "aws" or "ssm"
9832
+ # (case-insensitive).
9833
+ #
9834
+ # * Parameter names can include only the following symbols and
9835
+ # letters: `a-zA-Z0-9_.-/`
9836
+ #
9837
+ # * A parameter name can't include spaces.
9838
+ #
9839
+ # * Parameter hierarchies are limited to a maximum depth of fifteen
9840
+ # levels.
9841
+ #
9842
+ # For additional information about valid values for parameter names,
9843
+ # see [Requirements and Constraints for Parameter Names][1] in the
9844
+ # *AWS Systems Manager User Guide*.
9497
9845
  #
9498
9846
  # <note markdown="1"> The maximum length constraint listed below includes capacity for
9499
9847
  # additional system attributes that are not part of the name. The
@@ -9504,11 +9852,12 @@ module Aws::SSM
9504
9852
  #
9505
9853
  #
9506
9854
  #
9507
- # [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html
9855
+ # [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html
9508
9856
  # @return [String]
9509
9857
  #
9510
9858
  # @!attribute [rw] description
9511
9859
  # Information about the parameter that you want to add to the system.
9860
+ # Optional but recommended.
9512
9861
  #
9513
9862
  # Do not enter personally identifiable information in this field.
9514
9863
  # @return [String]
@@ -9519,12 +9868,34 @@ module Aws::SSM
9519
9868
  #
9520
9869
  # @!attribute [rw] type
9521
9870
  # The type of parameter that you want to add to the system.
9871
+ #
9872
+ # Items in a `StringList` must be separated by a comma (,). You can't
9873
+ # use other punctuation or special character to escape items in the
9874
+ # list. If you have a parameter value that requires a comma, then use
9875
+ # the `String` data type.
9876
+ #
9877
+ # <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
9878
+ # templates or in the China Regions.
9879
+ #
9880
+ # </note>
9522
9881
  # @return [String]
9523
9882
  #
9524
9883
  # @!attribute [rw] key_id
9525
- # The KMS Key ID that you want to use to encrypt a parameter when you
9526
- # choose the SecureString data type. If you don't specify a key ID,
9527
- # the system uses the default key associated with your AWS account.
9884
+ # The KMS Key ID that you want to use to encrypt a parameter. Either
9885
+ # the default AWS Key Management Service (AWS KMS) key automatically
9886
+ # assigned to your AWS account or a custom key. Required for
9887
+ # parameters that use the `SecureString` data type.
9888
+ #
9889
+ # If you don't specify a key ID, the system uses the default key
9890
+ # associated with your AWS account.
9891
+ #
9892
+ # * To use your default AWS KMS key, choose the `SecureString` data
9893
+ # type, and do *not* specify the `Key ID` when you create the
9894
+ # parameter. The system automatically populates `Key ID` with your
9895
+ # default KMS key.
9896
+ #
9897
+ # * To use a custom KMS key, choose the `SecureString` data type with
9898
+ # the `Key ID` parameter.
9528
9899
  # @return [String]
9529
9900
  #
9530
9901
  # @!attribute [rw] overwrite
@@ -10498,6 +10869,29 @@ module Aws::SSM
10498
10869
  include Aws::Structure
10499
10870
  end
10500
10871
 
10872
+ # @note When making an API call, you may pass StartAssociationsOnceRequest
10873
+ # data as a hash:
10874
+ #
10875
+ # {
10876
+ # association_ids: ["AssociationId"], # required
10877
+ # }
10878
+ #
10879
+ # @!attribute [rw] association_ids
10880
+ # The association IDs that you want to execute immediately and only
10881
+ # one time.
10882
+ # @return [Array<String>]
10883
+ #
10884
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAssociationsOnceRequest AWS API Documentation
10885
+ #
10886
+ class StartAssociationsOnceRequest < Struct.new(
10887
+ :association_ids)
10888
+ include Aws::Structure
10889
+ end
10890
+
10891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAssociationsOnceResult AWS API Documentation
10892
+ #
10893
+ class StartAssociationsOnceResult < Aws::EmptyStructure; end
10894
+
10501
10895
  # @note When making an API call, you may pass StartAutomationExecutionRequest
10502
10896
  # data as a hash:
10503
10897
  #
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.16.0
4
+ version: 1.17.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: 2018-06-26 00:00:00.000000000 Z
11
+ date: 2018-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core