aws-sdk-ssm 1.95.0 → 1.100.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
  SHA256:
3
- metadata.gz: febaf0c6db9fce4e913a11067e3a00c1517749a48fe42f6ab73e355bae0a8359
4
- data.tar.gz: 1981a5a741289f6d029c0714490342792f4aa296b2cfcd95462b4f353492fb12
3
+ metadata.gz: 93e73b8a694febf8c6e952fc85b110882e60c2bc1fe071539af701ebe15facf2
4
+ data.tar.gz: ad7a20e4c9faabd84ed9f2784d4bef9429003c26898ed6420640e9f291b47baa
5
5
  SHA512:
6
- metadata.gz: 03fda2577685c4019683efed6e119de3e46c3179b7694f5d29d7e1d64ba2b7a120c5cd143370e465e5540a703384de4db92cf01915e9fc444a9b0e76ef20f0f4
7
- data.tar.gz: 6ca9a7dc6edac5b9a0b886740dab647ca689f9eb9a839a8414ef781d65dfabee8564e5271aec071ee5b358064d230973b6e0e3f47430ba266fd535f347e1b59f
6
+ metadata.gz: 7ff60f4c22619b371c04c924f3ce45498eacb765f5d29b65de780eb09d6325d45aacf7f64a776e87f67a4a2f7f1d52ecf99e985e021f4fc47bdd844ab0a2c768
7
+ data.tar.gz: 7dd2d933e43aab62907b24bf8679ae96a26db4f860727f561976211687c7310d1e692c672138ccb3fb1e5db6698cedd5e2dfeb926b35cdfcaaf694e44f44da3f
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ssm/customizations'
49
49
  # @!group service
50
50
  module Aws::SSM
51
51
 
52
- GEM_VERSION = '1.95.0'
52
+ GEM_VERSION = '1.100.0'
53
53
 
54
54
  end
@@ -731,7 +731,13 @@ module Aws::SSM
731
731
  # By default, when you create a new associations, the system runs it
732
732
  # immediately after it is created and then according to the schedule you
733
733
  # specified. Specify this option if you don't want an association to
734
- # run immediately after you create it.
734
+ # run immediately after you create it. This parameter is not supported
735
+ # for rate expressions.
736
+ #
737
+ # @option params [Array<Types::TargetLocation>] :target_locations
738
+ # A location is a combination of AWS Regions and AWS accounts where you
739
+ # want to run the association. Use this action to create an association
740
+ # in multiple Regions and multiple accounts.
735
741
  #
736
742
  # @return [Types::CreateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
737
743
  #
@@ -767,6 +773,15 @@ module Aws::SSM
767
773
  # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
768
774
  # sync_compliance: "AUTO", # accepts AUTO, MANUAL
769
775
  # apply_only_at_cron_interval: false,
776
+ # target_locations: [
777
+ # {
778
+ # accounts: ["Account"],
779
+ # regions: ["Region"],
780
+ # target_location_max_concurrency: "MaxConcurrency",
781
+ # target_location_max_errors: "MaxErrors",
782
+ # execution_role_name: "ExecutionRoleName",
783
+ # },
784
+ # ],
770
785
  # })
771
786
  #
772
787
  # @example Response structure
@@ -806,6 +821,14 @@ module Aws::SSM
806
821
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
807
822
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
808
823
  # resp.association_description.apply_only_at_cron_interval #=> Boolean
824
+ # resp.association_description.target_locations #=> Array
825
+ # resp.association_description.target_locations[0].accounts #=> Array
826
+ # resp.association_description.target_locations[0].accounts[0] #=> String
827
+ # resp.association_description.target_locations[0].regions #=> Array
828
+ # resp.association_description.target_locations[0].regions[0] #=> String
829
+ # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
830
+ # resp.association_description.target_locations[0].target_location_max_errors #=> String
831
+ # resp.association_description.target_locations[0].execution_role_name #=> String
809
832
  #
810
833
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation AWS API Documentation
811
834
  #
@@ -867,6 +890,15 @@ module Aws::SSM
867
890
  # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
868
891
  # sync_compliance: "AUTO", # accepts AUTO, MANUAL
869
892
  # apply_only_at_cron_interval: false,
893
+ # target_locations: [
894
+ # {
895
+ # accounts: ["Account"],
896
+ # regions: ["Region"],
897
+ # target_location_max_concurrency: "MaxConcurrency",
898
+ # target_location_max_errors: "MaxErrors",
899
+ # execution_role_name: "ExecutionRoleName",
900
+ # },
901
+ # ],
870
902
  # },
871
903
  # ],
872
904
  # })
@@ -909,6 +941,14 @@ module Aws::SSM
909
941
  # resp.successful[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
910
942
  # resp.successful[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
911
943
  # resp.successful[0].apply_only_at_cron_interval #=> Boolean
944
+ # resp.successful[0].target_locations #=> Array
945
+ # resp.successful[0].target_locations[0].accounts #=> Array
946
+ # resp.successful[0].target_locations[0].accounts[0] #=> String
947
+ # resp.successful[0].target_locations[0].regions #=> Array
948
+ # resp.successful[0].target_locations[0].regions[0] #=> String
949
+ # resp.successful[0].target_locations[0].target_location_max_concurrency #=> String
950
+ # resp.successful[0].target_locations[0].target_location_max_errors #=> String
951
+ # resp.successful[0].target_locations[0].execution_role_name #=> String
912
952
  # resp.failed #=> Array
913
953
  # resp.failed[0].entry.name #=> String
914
954
  # resp.failed[0].entry.instance_id #=> String
@@ -931,6 +971,14 @@ module Aws::SSM
931
971
  # resp.failed[0].entry.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
932
972
  # resp.failed[0].entry.sync_compliance #=> String, one of "AUTO", "MANUAL"
933
973
  # resp.failed[0].entry.apply_only_at_cron_interval #=> Boolean
974
+ # resp.failed[0].entry.target_locations #=> Array
975
+ # resp.failed[0].entry.target_locations[0].accounts #=> Array
976
+ # resp.failed[0].entry.target_locations[0].accounts[0] #=> String
977
+ # resp.failed[0].entry.target_locations[0].regions #=> Array
978
+ # resp.failed[0].entry.target_locations[0].regions[0] #=> String
979
+ # resp.failed[0].entry.target_locations[0].target_location_max_concurrency #=> String
980
+ # resp.failed[0].entry.target_locations[0].target_location_max_errors #=> String
981
+ # resp.failed[0].entry.target_locations[0].execution_role_name #=> String
934
982
  # resp.failed[0].message #=> String
935
983
  # resp.failed[0].fault #=> String, one of "Client", "Server", "Unknown"
936
984
  #
@@ -1067,7 +1115,7 @@ module Aws::SSM
1067
1115
  # ],
1068
1116
  # name: "DocumentName", # required
1069
1117
  # version_name: "DocumentVersionName",
1070
- # document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar
1118
+ # document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate
1071
1119
  # document_format: "YAML", # accepts YAML, JSON, TEXT
1072
1120
  # target_type: "TargetType",
1073
1121
  # tags: [
@@ -1098,7 +1146,7 @@ module Aws::SSM
1098
1146
  # resp.document_description.parameters[0].default_value #=> String
1099
1147
  # resp.document_description.platform_types #=> Array
1100
1148
  # resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux"
1101
- # resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar"
1149
+ # resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
1102
1150
  # resp.document_description.schema_version #=> String
1103
1151
  # resp.document_description.latest_version #=> String
1104
1152
  # resp.document_description.default_version #=> String
@@ -1112,6 +1160,14 @@ module Aws::SSM
1112
1160
  # resp.document_description.requires #=> Array
1113
1161
  # resp.document_description.requires[0].name #=> String
1114
1162
  # resp.document_description.requires[0].version #=> String
1163
+ # resp.document_description.author #=> String
1164
+ # resp.document_description.review_information #=> Array
1165
+ # resp.document_description.review_information[0].reviewed_time #=> Time
1166
+ # resp.document_description.review_information[0].status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
1167
+ # resp.document_description.review_information[0].reviewer #=> String
1168
+ # resp.document_description.approved_version #=> String
1169
+ # resp.document_description.pending_review_version #=> String
1170
+ # resp.document_description.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
1115
1171
  #
1116
1172
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocument AWS API Documentation
1117
1173
  #
@@ -1160,7 +1216,7 @@ module Aws::SSM
1160
1216
  # @option params [String] :schedule_timezone
1161
1217
  # The time zone that the scheduled maintenance window executions are
1162
1218
  # based on, in Internet Assigned Numbers Authority (IANA) format. For
1163
- # example: "America/Los\_Angeles", "etc/UTC", or "Asia/Seoul". For
1219
+ # example: "America/Los\_Angeles", "UTC", or "Asia/Seoul". For
1164
1220
  # more information, see the [Time Zone Database][1] on the IANA website.
1165
1221
  #
1166
1222
  #
@@ -1174,7 +1230,7 @@ module Aws::SSM
1174
1230
  # For example, the following cron expression schedules a maintenance
1175
1231
  # window to run on the third Tuesday of every month at 11:30 PM.
1176
1232
  #
1177
- # `cron(0 30 23 ? * TUE#3 *)`
1233
+ # `cron(30 23 ? * TUE#3 *)`
1178
1234
  #
1179
1235
  # If the schedule offset is `2`, the maintenance window won't run until
1180
1236
  # two days later.
@@ -1279,6 +1335,10 @@ module Aws::SSM
1279
1335
  # @option params [required, String] :description
1280
1336
  # Information about the OpsItem.
1281
1337
  #
1338
+ # @option params [String] :ops_item_type
1339
+ # The type of OpsItem to create. Currently, the only valid values are
1340
+ # `/aws/changerequest` and `/aws/issue`.
1341
+ #
1282
1342
  # @option params [Hash<String,Types::OpsItemDataValue>] :operational_data
1283
1343
  # Operational data is custom data that provides useful reference details
1284
1344
  # about the OpsItem. For example, you can specify log files, error
@@ -1357,6 +1417,23 @@ module Aws::SSM
1357
1417
  # @option params [String] :severity
1358
1418
  # Specify a severity to assign to an OpsItem.
1359
1419
  #
1420
+ # @option params [Time,DateTime,Date,Integer,String] :actual_start_time
1421
+ # The time a runbook workflow started. Currently reported only for the
1422
+ # OpsItem type `/aws/changerequest`.
1423
+ #
1424
+ # @option params [Time,DateTime,Date,Integer,String] :actual_end_time
1425
+ # The time a runbook workflow ended. Currently reported only for the
1426
+ # OpsItem type `/aws/changerequest`.
1427
+ #
1428
+ # @option params [Time,DateTime,Date,Integer,String] :planned_start_time
1429
+ # The time specified in a change request for a runbook workflow to
1430
+ # start. Currently supported only for the OpsItem type
1431
+ # `/aws/changerequest`.
1432
+ #
1433
+ # @option params [Time,DateTime,Date,Integer,String] :planned_end_time
1434
+ # The time specified in a change request for a runbook workflow to end.
1435
+ # Currently supported only for the OpsItem type `/aws/changerequest`.
1436
+ #
1360
1437
  # @return [Types::CreateOpsItemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1361
1438
  #
1362
1439
  # * {Types::CreateOpsItemResponse#ops_item_id #ops_item_id} => String
@@ -1365,6 +1442,7 @@ module Aws::SSM
1365
1442
  #
1366
1443
  # resp = client.create_ops_item({
1367
1444
  # description: "OpsItemDescription", # required
1445
+ # ops_item_type: "OpsItemType",
1368
1446
  # operational_data: {
1369
1447
  # "OpsItemDataKey" => {
1370
1448
  # value: "OpsItemDataValueString",
@@ -1392,6 +1470,10 @@ module Aws::SSM
1392
1470
  # ],
1393
1471
  # category: "OpsItemCategory",
1394
1472
  # severity: "OpsItemSeverity",
1473
+ # actual_start_time: Time.now,
1474
+ # actual_end_time: Time.now,
1475
+ # planned_start_time: Time.now,
1476
+ # planned_end_time: Time.now,
1395
1477
  # })
1396
1478
  #
1397
1479
  # @example Response structure
@@ -1407,6 +1489,44 @@ module Aws::SSM
1407
1489
  req.send_request(options)
1408
1490
  end
1409
1491
 
1492
+ # If you create a new application in Application Manager, Systems
1493
+ # Manager calls this API action to specify information about the new
1494
+ # application, including the application type.
1495
+ #
1496
+ # @option params [required, String] :resource_id
1497
+ # A resource ID for a new Application Manager application.
1498
+ #
1499
+ # @option params [Hash<String,Types::MetadataValue>] :metadata
1500
+ # Metadata for a new Application Manager application.
1501
+ #
1502
+ # @return [Types::CreateOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1503
+ #
1504
+ # * {Types::CreateOpsMetadataResult#ops_metadata_arn #ops_metadata_arn} => String
1505
+ #
1506
+ # @example Request syntax with placeholder values
1507
+ #
1508
+ # resp = client.create_ops_metadata({
1509
+ # resource_id: "OpsMetadataResourceId", # required
1510
+ # metadata: {
1511
+ # "MetadataKey" => {
1512
+ # value: "MetadataValueString",
1513
+ # },
1514
+ # },
1515
+ # })
1516
+ #
1517
+ # @example Response structure
1518
+ #
1519
+ # resp.ops_metadata_arn #=> String
1520
+ #
1521
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateOpsMetadata AWS API Documentation
1522
+ #
1523
+ # @overload create_ops_metadata(params = {})
1524
+ # @param [Hash] params ({})
1525
+ def create_ops_metadata(params = {}, options = {})
1526
+ req = build_request(:create_ops_metadata, params)
1527
+ req.send_request(options)
1528
+ end
1529
+
1410
1530
  # Creates a patch baseline.
1411
1531
  #
1412
1532
  # <note markdown="1"> For information about valid key and value pairs in `PatchFilters` for
@@ -1517,7 +1637,7 @@ module Aws::SSM
1517
1637
  # @example Request syntax with placeholder values
1518
1638
  #
1519
1639
  # resp = client.create_patch_baseline({
1520
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
1640
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
1521
1641
  # name: "BaselineName", # required
1522
1642
  # global_filters: {
1523
1643
  # patch_filters: [ # required
@@ -1884,6 +2004,28 @@ module Aws::SSM
1884
2004
  req.send_request(options)
1885
2005
  end
1886
2006
 
2007
+ # Delete OpsMetadata related to an application.
2008
+ #
2009
+ # @option params [required, String] :ops_metadata_arn
2010
+ # The Amazon Resource Name (ARN) of an OpsMetadata Object to delete.
2011
+ #
2012
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2013
+ #
2014
+ # @example Request syntax with placeholder values
2015
+ #
2016
+ # resp = client.delete_ops_metadata({
2017
+ # ops_metadata_arn: "OpsMetadataArn", # required
2018
+ # })
2019
+ #
2020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteOpsMetadata AWS API Documentation
2021
+ #
2022
+ # @overload delete_ops_metadata(params = {})
2023
+ # @param [Hash] params ({})
2024
+ def delete_ops_metadata(params = {}, options = {})
2025
+ req = build_request(:delete_ops_metadata, params)
2026
+ req.send_request(options)
2027
+ end
2028
+
1887
2029
  # Delete a parameter from the system.
1888
2030
  #
1889
2031
  # @option params [required, String] :name
@@ -2266,6 +2408,14 @@ module Aws::SSM
2266
2408
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
2267
2409
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
2268
2410
  # resp.association_description.apply_only_at_cron_interval #=> Boolean
2411
+ # resp.association_description.target_locations #=> Array
2412
+ # resp.association_description.target_locations[0].accounts #=> Array
2413
+ # resp.association_description.target_locations[0].accounts[0] #=> String
2414
+ # resp.association_description.target_locations[0].regions #=> Array
2415
+ # resp.association_description.target_locations[0].regions[0] #=> String
2416
+ # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
2417
+ # resp.association_description.target_locations[0].target_location_max_errors #=> String
2418
+ # resp.association_description.target_locations[0].execution_role_name #=> String
2269
2419
  #
2270
2420
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation AWS API Documentation
2271
2421
  #
@@ -2448,7 +2598,7 @@ module Aws::SSM
2448
2598
  # resp = client.describe_automation_executions({
2449
2599
  # filters: [
2450
2600
  # {
2451
- # key: "DocumentNamePrefix", # required, accepts DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter, AutomationType, TagKey
2601
+ # key: "DocumentNamePrefix", # required, accepts DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter, AutomationType, TagKey, TargetResourceGroup, AutomationSubtype, OpsItemId
2452
2602
  # values: ["AutomationExecutionFilterValue"], # required
2453
2603
  # },
2454
2604
  # ],
@@ -2462,7 +2612,7 @@ module Aws::SSM
2462
2612
  # resp.automation_execution_metadata_list[0].automation_execution_id #=> String
2463
2613
  # resp.automation_execution_metadata_list[0].document_name #=> String
2464
2614
  # resp.automation_execution_metadata_list[0].document_version #=> String
2465
- # resp.automation_execution_metadata_list[0].automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed"
2615
+ # resp.automation_execution_metadata_list[0].automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
2466
2616
  # resp.automation_execution_metadata_list[0].execution_start_time #=> Time
2467
2617
  # resp.automation_execution_metadata_list[0].execution_end_time #=> Time
2468
2618
  # resp.automation_execution_metadata_list[0].executed_by #=> String
@@ -2491,6 +2641,32 @@ module Aws::SSM
2491
2641
  # resp.automation_execution_metadata_list[0].max_errors #=> String
2492
2642
  # resp.automation_execution_metadata_list[0].target #=> String
2493
2643
  # resp.automation_execution_metadata_list[0].automation_type #=> String, one of "CrossAccount", "Local"
2644
+ # resp.automation_execution_metadata_list[0].automation_subtype #=> String, one of "ChangeRequest"
2645
+ # resp.automation_execution_metadata_list[0].scheduled_time #=> Time
2646
+ # resp.automation_execution_metadata_list[0].runbooks #=> Array
2647
+ # resp.automation_execution_metadata_list[0].runbooks[0].document_name #=> String
2648
+ # resp.automation_execution_metadata_list[0].runbooks[0].document_version #=> String
2649
+ # resp.automation_execution_metadata_list[0].runbooks[0].parameters #=> Hash
2650
+ # resp.automation_execution_metadata_list[0].runbooks[0].parameters["AutomationParameterKey"] #=> Array
2651
+ # resp.automation_execution_metadata_list[0].runbooks[0].parameters["AutomationParameterKey"][0] #=> String
2652
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_parameter_name #=> String
2653
+ # resp.automation_execution_metadata_list[0].runbooks[0].targets #=> Array
2654
+ # resp.automation_execution_metadata_list[0].runbooks[0].targets[0].key #=> String
2655
+ # resp.automation_execution_metadata_list[0].runbooks[0].targets[0].values #=> Array
2656
+ # resp.automation_execution_metadata_list[0].runbooks[0].targets[0].values[0] #=> String
2657
+ # resp.automation_execution_metadata_list[0].runbooks[0].max_concurrency #=> String
2658
+ # resp.automation_execution_metadata_list[0].runbooks[0].max_errors #=> String
2659
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations #=> Array
2660
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].accounts #=> Array
2661
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].accounts[0] #=> String
2662
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].regions #=> Array
2663
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].regions[0] #=> String
2664
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_max_concurrency #=> String
2665
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_max_errors #=> String
2666
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].execution_role_name #=> String
2667
+ # resp.automation_execution_metadata_list[0].ops_item_id #=> String
2668
+ # resp.automation_execution_metadata_list[0].association_id #=> String
2669
+ # resp.automation_execution_metadata_list[0].change_request_name #=> String
2494
2670
  # resp.next_token #=> String
2495
2671
  #
2496
2672
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationExecutions AWS API Documentation
@@ -2558,7 +2734,7 @@ module Aws::SSM
2558
2734
  # resp.step_executions[0].max_attempts #=> Integer
2559
2735
  # resp.step_executions[0].execution_start_time #=> Time
2560
2736
  # resp.step_executions[0].execution_end_time #=> Time
2561
- # resp.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed"
2737
+ # resp.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
2562
2738
  # resp.step_executions[0].response_code #=> String
2563
2739
  # resp.step_executions[0].inputs #=> Hash
2564
2740
  # resp.step_executions[0].inputs["String"] #=> String
@@ -2721,7 +2897,7 @@ module Aws::SSM
2721
2897
  # resp.document.parameters[0].default_value #=> String
2722
2898
  # resp.document.platform_types #=> Array
2723
2899
  # resp.document.platform_types[0] #=> String, one of "Windows", "Linux"
2724
- # resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar"
2900
+ # resp.document.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
2725
2901
  # resp.document.schema_version #=> String
2726
2902
  # resp.document.latest_version #=> String
2727
2903
  # resp.document.default_version #=> String
@@ -2735,6 +2911,14 @@ module Aws::SSM
2735
2911
  # resp.document.requires #=> Array
2736
2912
  # resp.document.requires[0].name #=> String
2737
2913
  # resp.document.requires[0].version #=> String
2914
+ # resp.document.author #=> String
2915
+ # resp.document.review_information #=> Array
2916
+ # resp.document.review_information[0].reviewed_time #=> Time
2917
+ # resp.document.review_information[0].status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
2918
+ # resp.document.review_information[0].reviewer #=> String
2919
+ # resp.document.approved_version #=> String
2920
+ # resp.document.pending_review_version #=> String
2921
+ # resp.document.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
2738
2922
  #
2739
2923
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocument AWS API Documentation
2740
2924
  #
@@ -3947,7 +4131,7 @@ module Aws::SSM
3947
4131
  # resp = client.describe_ops_items({
3948
4132
  # ops_item_filters: [
3949
4133
  # {
3950
- # key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId, Category, Severity
4134
+ # key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, ActualStartTime, ActualEndTime, PlannedStartTime, PlannedEndTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId, Category, Severity, OpsItemType, ChangeRequestByRequesterArn, ChangeRequestByRequesterName, ChangeRequestByApproverArn, ChangeRequestByApproverName, ChangeRequestByTemplate, ChangeRequestByTargetsResourceGroup
3951
4135
  # values: ["OpsItemFilterValue"], # required
3952
4136
  # operator: "Equal", # required, accepts Equal, Contains, GreaterThan, LessThan
3953
4137
  # },
@@ -3966,7 +4150,7 @@ module Aws::SSM
3966
4150
  # resp.ops_item_summaries[0].last_modified_time #=> Time
3967
4151
  # resp.ops_item_summaries[0].priority #=> Integer
3968
4152
  # resp.ops_item_summaries[0].source #=> String
3969
- # resp.ops_item_summaries[0].status #=> String, one of "Open", "InProgress", "Resolved"
4153
+ # resp.ops_item_summaries[0].status #=> String, one of "Open", "InProgress", "Resolved", "Pending", "TimedOut", "Cancelling", "Cancelled", "Failed", "CompletedWithSuccess", "CompletedWithFailure", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "PendingApproval", "Approved", "Rejected"
3970
4154
  # resp.ops_item_summaries[0].ops_item_id #=> String
3971
4155
  # resp.ops_item_summaries[0].title #=> String
3972
4156
  # resp.ops_item_summaries[0].operational_data #=> Hash
@@ -3974,6 +4158,11 @@ module Aws::SSM
3974
4158
  # resp.ops_item_summaries[0].operational_data["OpsItemDataKey"].type #=> String, one of "SearchableString", "String"
3975
4159
  # resp.ops_item_summaries[0].category #=> String
3976
4160
  # resp.ops_item_summaries[0].severity #=> String
4161
+ # resp.ops_item_summaries[0].ops_item_type #=> String
4162
+ # resp.ops_item_summaries[0].actual_start_time #=> Time
4163
+ # resp.ops_item_summaries[0].actual_end_time #=> Time
4164
+ # resp.ops_item_summaries[0].planned_start_time #=> Time
4165
+ # resp.ops_item_summaries[0].planned_end_time #=> Time
3977
4166
  #
3978
4167
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeOpsItems AWS API Documentation
3979
4168
  #
@@ -4109,7 +4298,7 @@ module Aws::SSM
4109
4298
  # resp.baseline_identities #=> Array
4110
4299
  # resp.baseline_identities[0].baseline_id #=> String
4111
4300
  # resp.baseline_identities[0].baseline_name #=> String
4112
- # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4301
+ # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
4113
4302
  # resp.baseline_identities[0].baseline_description #=> String
4114
4303
  # resp.baseline_identities[0].default_baseline #=> Boolean
4115
4304
  # resp.next_token #=> String
@@ -4223,7 +4412,7 @@ module Aws::SSM
4223
4412
  # resp.mappings[0].patch_group #=> String
4224
4413
  # resp.mappings[0].baseline_identity.baseline_id #=> String
4225
4414
  # resp.mappings[0].baseline_identity.baseline_name #=> String
4226
- # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4415
+ # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
4227
4416
  # resp.mappings[0].baseline_identity.baseline_description #=> String
4228
4417
  # resp.mappings[0].baseline_identity.default_baseline #=> Boolean
4229
4418
  # resp.next_token #=> String
@@ -4263,6 +4452,10 @@ module Aws::SSM
4263
4452
  #
4264
4453
  # : Valid properties: PRODUCT, PRIORITY
4265
4454
  #
4455
+ # MACOS
4456
+ #
4457
+ # : Valid properties: PRODUCT, CLASSIFICATION
4458
+ #
4266
4459
  # ORACLE\_LINUX
4267
4460
  #
4268
4461
  # : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
@@ -4292,8 +4485,8 @@ module Aws::SSM
4292
4485
  #
4293
4486
  # @option params [String] :patch_set
4294
4487
  # Indicates whether to list patches for the Windows operating system or
4295
- # for Microsoft applications. Not applicable for Linux operating
4296
- # systems.
4488
+ # for Microsoft applications. Not applicable for the Linux or macOS
4489
+ # operating systems.
4297
4490
  #
4298
4491
  # @option params [Integer] :max_results
4299
4492
  # The maximum number of items to return for this call. The call also
@@ -4314,7 +4507,7 @@ module Aws::SSM
4314
4507
  # @example Request syntax with placeholder values
4315
4508
  #
4316
4509
  # resp = client.describe_patch_properties({
4317
- # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
4510
+ # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
4318
4511
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
4319
4512
  # patch_set: "OS", # accepts OS, APPLICATION
4320
4513
  # max_results: 1,
@@ -4372,7 +4565,7 @@ module Aws::SSM
4372
4565
  # next_token: "NextToken",
4373
4566
  # filters: [
4374
4567
  # {
4375
- # key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status
4568
+ # key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status, SessionId
4376
4569
  # value: "SessionFilterValue", # required
4377
4570
  # },
4378
4571
  # ],
@@ -4426,7 +4619,7 @@ module Aws::SSM
4426
4619
  # resp.automation_execution.document_version #=> String
4427
4620
  # resp.automation_execution.execution_start_time #=> Time
4428
4621
  # resp.automation_execution.execution_end_time #=> Time
4429
- # resp.automation_execution.automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed"
4622
+ # resp.automation_execution.automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
4430
4623
  # resp.automation_execution.step_executions #=> Array
4431
4624
  # resp.automation_execution.step_executions[0].step_name #=> String
4432
4625
  # resp.automation_execution.step_executions[0].action #=> String
@@ -4435,7 +4628,7 @@ module Aws::SSM
4435
4628
  # resp.automation_execution.step_executions[0].max_attempts #=> Integer
4436
4629
  # resp.automation_execution.step_executions[0].execution_start_time #=> Time
4437
4630
  # resp.automation_execution.step_executions[0].execution_end_time #=> Time
4438
- # resp.automation_execution.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed"
4631
+ # resp.automation_execution.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
4439
4632
  # resp.automation_execution.step_executions[0].response_code #=> String
4440
4633
  # resp.automation_execution.step_executions[0].inputs #=> Hash
4441
4634
  # resp.automation_execution.step_executions[0].inputs["String"] #=> String
@@ -4510,6 +4703,32 @@ module Aws::SSM
4510
4703
  # resp.automation_execution.progress_counters.failed_steps #=> Integer
4511
4704
  # resp.automation_execution.progress_counters.cancelled_steps #=> Integer
4512
4705
  # resp.automation_execution.progress_counters.timed_out_steps #=> Integer
4706
+ # resp.automation_execution.automation_subtype #=> String, one of "ChangeRequest"
4707
+ # resp.automation_execution.scheduled_time #=> Time
4708
+ # resp.automation_execution.runbooks #=> Array
4709
+ # resp.automation_execution.runbooks[0].document_name #=> String
4710
+ # resp.automation_execution.runbooks[0].document_version #=> String
4711
+ # resp.automation_execution.runbooks[0].parameters #=> Hash
4712
+ # resp.automation_execution.runbooks[0].parameters["AutomationParameterKey"] #=> Array
4713
+ # resp.automation_execution.runbooks[0].parameters["AutomationParameterKey"][0] #=> String
4714
+ # resp.automation_execution.runbooks[0].target_parameter_name #=> String
4715
+ # resp.automation_execution.runbooks[0].targets #=> Array
4716
+ # resp.automation_execution.runbooks[0].targets[0].key #=> String
4717
+ # resp.automation_execution.runbooks[0].targets[0].values #=> Array
4718
+ # resp.automation_execution.runbooks[0].targets[0].values[0] #=> String
4719
+ # resp.automation_execution.runbooks[0].max_concurrency #=> String
4720
+ # resp.automation_execution.runbooks[0].max_errors #=> String
4721
+ # resp.automation_execution.runbooks[0].target_locations #=> Array
4722
+ # resp.automation_execution.runbooks[0].target_locations[0].accounts #=> Array
4723
+ # resp.automation_execution.runbooks[0].target_locations[0].accounts[0] #=> String
4724
+ # resp.automation_execution.runbooks[0].target_locations[0].regions #=> Array
4725
+ # resp.automation_execution.runbooks[0].target_locations[0].regions[0] #=> String
4726
+ # resp.automation_execution.runbooks[0].target_locations[0].target_location_max_concurrency #=> String
4727
+ # resp.automation_execution.runbooks[0].target_locations[0].target_location_max_errors #=> String
4728
+ # resp.automation_execution.runbooks[0].target_locations[0].execution_role_name #=> String
4729
+ # resp.automation_execution.ops_item_id #=> String
4730
+ # resp.automation_execution.association_id #=> String
4731
+ # resp.automation_execution.change_request_name #=> String
4513
4732
  #
4514
4733
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAutomationExecution AWS API Documentation
4515
4734
  #
@@ -4714,13 +4933,13 @@ module Aws::SSM
4714
4933
  # @example Request syntax with placeholder values
4715
4934
  #
4716
4935
  # resp = client.get_default_patch_baseline({
4717
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
4936
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
4718
4937
  # })
4719
4938
  #
4720
4939
  # @example Response structure
4721
4940
  #
4722
4941
  # resp.baseline_id #=> String
4723
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4942
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
4724
4943
  #
4725
4944
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
4726
4945
  #
@@ -4801,6 +5020,7 @@ module Aws::SSM
4801
5020
  # * {Types::GetDocumentResult#document_format #document_format} => String
4802
5021
  # * {Types::GetDocumentResult#requires #requires} => Array&lt;Types::DocumentRequires&gt;
4803
5022
  # * {Types::GetDocumentResult#attachments_content #attachments_content} => Array&lt;Types::AttachmentContent&gt;
5023
+ # * {Types::GetDocumentResult#review_status #review_status} => String
4804
5024
  #
4805
5025
  # @example Request syntax with placeholder values
4806
5026
  #
@@ -4819,7 +5039,7 @@ module Aws::SSM
4819
5039
  # resp.status #=> String, one of "Creating", "Active", "Updating", "Deleting", "Failed"
4820
5040
  # resp.status_information #=> String
4821
5041
  # resp.content #=> String
4822
- # resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar"
5042
+ # resp.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
4823
5043
  # resp.document_format #=> String, one of "YAML", "JSON", "TEXT"
4824
5044
  # resp.requires #=> Array
4825
5045
  # resp.requires[0].name #=> String
@@ -4830,6 +5050,7 @@ module Aws::SSM
4830
5050
  # resp.attachments_content[0].hash #=> String
4831
5051
  # resp.attachments_content[0].hash_type #=> String, one of "Sha256"
4832
5052
  # resp.attachments_content[0].url #=> String
5053
+ # resp.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
4833
5054
  #
4834
5055
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDocument AWS API Documentation
4835
5056
  #
@@ -5334,6 +5555,7 @@ module Aws::SSM
5334
5555
  # @example Response structure
5335
5556
  #
5336
5557
  # resp.ops_item.created_by #=> String
5558
+ # resp.ops_item.ops_item_type #=> String
5337
5559
  # resp.ops_item.created_time #=> Time
5338
5560
  # resp.ops_item.description #=> String
5339
5561
  # resp.ops_item.last_modified_by #=> String
@@ -5343,7 +5565,7 @@ module Aws::SSM
5343
5565
  # resp.ops_item.priority #=> Integer
5344
5566
  # resp.ops_item.related_ops_items #=> Array
5345
5567
  # resp.ops_item.related_ops_items[0].ops_item_id #=> String
5346
- # resp.ops_item.status #=> String, one of "Open", "InProgress", "Resolved"
5568
+ # resp.ops_item.status #=> String, one of "Open", "InProgress", "Resolved", "Pending", "TimedOut", "Cancelling", "Cancelled", "Failed", "CompletedWithSuccess", "CompletedWithFailure", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "PendingApproval", "Approved", "Rejected"
5347
5569
  # resp.ops_item.ops_item_id #=> String
5348
5570
  # resp.ops_item.version #=> String
5349
5571
  # resp.ops_item.title #=> String
@@ -5353,6 +5575,10 @@ module Aws::SSM
5353
5575
  # resp.ops_item.operational_data["OpsItemDataKey"].type #=> String, one of "SearchableString", "String"
5354
5576
  # resp.ops_item.category #=> String
5355
5577
  # resp.ops_item.severity #=> String
5578
+ # resp.ops_item.actual_start_time #=> Time
5579
+ # resp.ops_item.actual_end_time #=> Time
5580
+ # resp.ops_item.planned_start_time #=> Time
5581
+ # resp.ops_item.planned_end_time #=> Time
5356
5582
  #
5357
5583
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetOpsItem AWS API Documentation
5358
5584
  #
@@ -5363,6 +5589,51 @@ module Aws::SSM
5363
5589
  req.send_request(options)
5364
5590
  end
5365
5591
 
5592
+ # View operational metadata related to an application in Application
5593
+ # Manager.
5594
+ #
5595
+ # @option params [required, String] :ops_metadata_arn
5596
+ # The Amazon Resource Name (ARN) of an OpsMetadata Object to view.
5597
+ #
5598
+ # @option params [Integer] :max_results
5599
+ # The maximum number of items to return for this call. The call also
5600
+ # returns a token that you can specify in a subsequent call to get the
5601
+ # next set of results.
5602
+ #
5603
+ # @option params [String] :next_token
5604
+ # A token to start the list. Use this token to get the next set of
5605
+ # results.
5606
+ #
5607
+ # @return [Types::GetOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5608
+ #
5609
+ # * {Types::GetOpsMetadataResult#resource_id #resource_id} => String
5610
+ # * {Types::GetOpsMetadataResult#metadata #metadata} => Hash&lt;String,Types::MetadataValue&gt;
5611
+ # * {Types::GetOpsMetadataResult#next_token #next_token} => String
5612
+ #
5613
+ # @example Request syntax with placeholder values
5614
+ #
5615
+ # resp = client.get_ops_metadata({
5616
+ # ops_metadata_arn: "OpsMetadataArn", # required
5617
+ # max_results: 1,
5618
+ # next_token: "NextToken",
5619
+ # })
5620
+ #
5621
+ # @example Response structure
5622
+ #
5623
+ # resp.resource_id #=> String
5624
+ # resp.metadata #=> Hash
5625
+ # resp.metadata["MetadataKey"].value #=> String
5626
+ # resp.next_token #=> String
5627
+ #
5628
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetOpsMetadata AWS API Documentation
5629
+ #
5630
+ # @overload get_ops_metadata(params = {})
5631
+ # @param [Hash] params ({})
5632
+ def get_ops_metadata(params = {}, options = {})
5633
+ req = build_request(:get_ops_metadata, params)
5634
+ req.send_request(options)
5635
+ end
5636
+
5366
5637
  # View a summary of OpsItems based on specified filters and aggregators.
5367
5638
  #
5368
5639
  # @option params [String] :sync_name
@@ -5741,7 +6012,7 @@ module Aws::SSM
5741
6012
  #
5742
6013
  # resp.baseline_id #=> String
5743
6014
  # resp.name #=> String
5744
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
6015
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
5745
6016
  # resp.global_filters.patch_filters #=> Array
5746
6017
  # resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
5747
6018
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -5802,14 +6073,14 @@ module Aws::SSM
5802
6073
  #
5803
6074
  # resp = client.get_patch_baseline_for_patch_group({
5804
6075
  # patch_group: "PatchGroup", # required
5805
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
6076
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
5806
6077
  # })
5807
6078
  #
5808
6079
  # @example Response structure
5809
6080
  #
5810
6081
  # resp.baseline_id #=> String
5811
6082
  # resp.patch_group #=> String
5812
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
6083
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
5813
6084
  #
5814
6085
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
5815
6086
  #
@@ -5999,6 +6270,14 @@ module Aws::SSM
5999
6270
  # resp.association_versions[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
6000
6271
  # resp.association_versions[0].sync_compliance #=> String, one of "AUTO", "MANUAL"
6001
6272
  # resp.association_versions[0].apply_only_at_cron_interval #=> Boolean
6273
+ # resp.association_versions[0].target_locations #=> Array
6274
+ # resp.association_versions[0].target_locations[0].accounts #=> Array
6275
+ # resp.association_versions[0].target_locations[0].accounts[0] #=> String
6276
+ # resp.association_versions[0].target_locations[0].regions #=> Array
6277
+ # resp.association_versions[0].target_locations[0].regions[0] #=> String
6278
+ # resp.association_versions[0].target_locations[0].target_location_max_concurrency #=> String
6279
+ # resp.association_versions[0].target_locations[0].target_location_max_errors #=> String
6280
+ # resp.association_versions[0].target_locations[0].execution_role_name #=> String
6002
6281
  # resp.next_token #=> String
6003
6282
  #
6004
6283
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationVersions AWS API Documentation
@@ -6018,6 +6297,13 @@ module Aws::SSM
6018
6297
  # One or more filters. Use a filter to return a more specific list of
6019
6298
  # results.
6020
6299
  #
6300
+ # <note markdown="1"> Filtering associations using the `InstanceID` attribute only returns
6301
+ # legacy associations created using the `InstanceID` attribute.
6302
+ # Associations targeting the instance that are part of the Target
6303
+ # Attributes `ResourceGroup` or `Tags` are not returned.
6304
+ #
6305
+ # </note>
6306
+ #
6021
6307
  # @option params [Integer] :max_results
6022
6308
  # The maximum number of items to return for this call. The call also
6023
6309
  # returns a token that you can specify in a subsequent call to get the
@@ -6416,6 +6702,69 @@ module Aws::SSM
6416
6702
  req.send_request(options)
6417
6703
  end
6418
6704
 
6705
+ # Information about approval reviews for a version of an SSM document.
6706
+ #
6707
+ # @option params [required, String] :name
6708
+ # The name of the document.
6709
+ #
6710
+ # @option params [String] :document_version
6711
+ # The version of the document.
6712
+ #
6713
+ # @option params [required, String] :metadata
6714
+ # The type of data for which details are being requested. Currently, the
6715
+ # only supported value is `DocumentReviews`.
6716
+ #
6717
+ # @option params [String] :next_token
6718
+ # The token for the next set of items to return. (You received this
6719
+ # token from a previous call.)
6720
+ #
6721
+ # @option params [Integer] :max_results
6722
+ # The maximum number of items to return for this call. The call also
6723
+ # returns a token that you can specify in a subsequent call to get the
6724
+ # next set of results.
6725
+ #
6726
+ # @return [Types::ListDocumentMetadataHistoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6727
+ #
6728
+ # * {Types::ListDocumentMetadataHistoryResponse#name #name} => String
6729
+ # * {Types::ListDocumentMetadataHistoryResponse#document_version #document_version} => String
6730
+ # * {Types::ListDocumentMetadataHistoryResponse#author #author} => String
6731
+ # * {Types::ListDocumentMetadataHistoryResponse#metadata #metadata} => Types::DocumentMetadataResponseInfo
6732
+ # * {Types::ListDocumentMetadataHistoryResponse#next_token #next_token} => String
6733
+ #
6734
+ # @example Request syntax with placeholder values
6735
+ #
6736
+ # resp = client.list_document_metadata_history({
6737
+ # name: "DocumentName", # required
6738
+ # document_version: "DocumentVersion",
6739
+ # metadata: "DocumentReviews", # required, accepts DocumentReviews
6740
+ # next_token: "NextToken",
6741
+ # max_results: 1,
6742
+ # })
6743
+ #
6744
+ # @example Response structure
6745
+ #
6746
+ # resp.name #=> String
6747
+ # resp.document_version #=> String
6748
+ # resp.author #=> String
6749
+ # resp.metadata.reviewer_response #=> Array
6750
+ # resp.metadata.reviewer_response[0].create_time #=> Time
6751
+ # resp.metadata.reviewer_response[0].updated_time #=> Time
6752
+ # resp.metadata.reviewer_response[0].review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
6753
+ # resp.metadata.reviewer_response[0].comment #=> Array
6754
+ # resp.metadata.reviewer_response[0].comment[0].type #=> String, one of "Comment"
6755
+ # resp.metadata.reviewer_response[0].comment[0].content #=> String
6756
+ # resp.metadata.reviewer_response[0].reviewer #=> String
6757
+ # resp.next_token #=> String
6758
+ #
6759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentMetadataHistory AWS API Documentation
6760
+ #
6761
+ # @overload list_document_metadata_history(params = {})
6762
+ # @param [Hash] params ({})
6763
+ def list_document_metadata_history(params = {}, options = {})
6764
+ req = build_request(:list_document_metadata_history, params)
6765
+ req.send_request(options)
6766
+ end
6767
+
6419
6768
  # List all versions for a document.
6420
6769
  #
6421
6770
  # @option params [required, String] :name
@@ -6457,6 +6806,7 @@ module Aws::SSM
6457
6806
  # resp.document_versions[0].document_format #=> String, one of "YAML", "JSON", "TEXT"
6458
6807
  # resp.document_versions[0].status #=> String, one of "Creating", "Active", "Updating", "Deleting", "Failed"
6459
6808
  # resp.document_versions[0].status_information #=> String
6809
+ # resp.document_versions[0].review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
6460
6810
  # resp.next_token #=> String
6461
6811
  #
6462
6812
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentVersions AWS API Documentation
@@ -6528,7 +6878,7 @@ module Aws::SSM
6528
6878
  # resp.document_identifiers[0].platform_types #=> Array
6529
6879
  # resp.document_identifiers[0].platform_types[0] #=> String, one of "Windows", "Linux"
6530
6880
  # resp.document_identifiers[0].document_version #=> String
6531
- # resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar"
6881
+ # resp.document_identifiers[0].document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
6532
6882
  # resp.document_identifiers[0].schema_version #=> String
6533
6883
  # resp.document_identifiers[0].document_format #=> String, one of "YAML", "JSON", "TEXT"
6534
6884
  # resp.document_identifiers[0].target_type #=> String
@@ -6538,6 +6888,8 @@ module Aws::SSM
6538
6888
  # resp.document_identifiers[0].requires #=> Array
6539
6889
  # resp.document_identifiers[0].requires[0].name #=> String
6540
6890
  # resp.document_identifiers[0].requires[0].version #=> String
6891
+ # resp.document_identifiers[0].review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
6892
+ # resp.document_identifiers[0].author #=> String
6541
6893
  # resp.next_token #=> String
6542
6894
  #
6543
6895
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocuments AWS API Documentation
@@ -6615,6 +6967,120 @@ module Aws::SSM
6615
6967
  req.send_request(options)
6616
6968
  end
6617
6969
 
6970
+ # Returns a list of all OpsItem events in the current AWS account and
6971
+ # Region. You can limit the results to events associated with specific
6972
+ # OpsItems by specifying a filter.
6973
+ #
6974
+ # @option params [Array<Types::OpsItemEventFilter>] :filters
6975
+ # One or more OpsItem filters. Use a filter to return a more specific
6976
+ # list of results.
6977
+ #
6978
+ # @option params [Integer] :max_results
6979
+ # The maximum number of items to return for this call. The call also
6980
+ # returns a token that you can specify in a subsequent call to get the
6981
+ # next set of results.
6982
+ #
6983
+ # @option params [String] :next_token
6984
+ # A token to start the list. Use this token to get the next set of
6985
+ # results.
6986
+ #
6987
+ # @return [Types::ListOpsItemEventsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6988
+ #
6989
+ # * {Types::ListOpsItemEventsResponse#next_token #next_token} => String
6990
+ # * {Types::ListOpsItemEventsResponse#summaries #summaries} => Array&lt;Types::OpsItemEventSummary&gt;
6991
+ #
6992
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6993
+ #
6994
+ # @example Request syntax with placeholder values
6995
+ #
6996
+ # resp = client.list_ops_item_events({
6997
+ # filters: [
6998
+ # {
6999
+ # key: "OpsItemId", # required, accepts OpsItemId
7000
+ # values: ["OpsItemEventFilterValue"], # required
7001
+ # operator: "Equal", # required, accepts Equal
7002
+ # },
7003
+ # ],
7004
+ # max_results: 1,
7005
+ # next_token: "String",
7006
+ # })
7007
+ #
7008
+ # @example Response structure
7009
+ #
7010
+ # resp.next_token #=> String
7011
+ # resp.summaries #=> Array
7012
+ # resp.summaries[0].ops_item_id #=> String
7013
+ # resp.summaries[0].event_id #=> String
7014
+ # resp.summaries[0].source #=> String
7015
+ # resp.summaries[0].detail_type #=> String
7016
+ # resp.summaries[0].detail #=> String
7017
+ # resp.summaries[0].created_by.arn #=> String
7018
+ # resp.summaries[0].created_time #=> Time
7019
+ #
7020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListOpsItemEvents AWS API Documentation
7021
+ #
7022
+ # @overload list_ops_item_events(params = {})
7023
+ # @param [Hash] params ({})
7024
+ def list_ops_item_events(params = {}, options = {})
7025
+ req = build_request(:list_ops_item_events, params)
7026
+ req.send_request(options)
7027
+ end
7028
+
7029
+ # Systems Manager calls this API action when displaying all Application
7030
+ # Manager OpsMetadata objects or blobs.
7031
+ #
7032
+ # @option params [Array<Types::OpsMetadataFilter>] :filters
7033
+ # One or more filters to limit the number of OpsMetadata objects
7034
+ # returned by the call.
7035
+ #
7036
+ # @option params [Integer] :max_results
7037
+ # The maximum number of items to return for this call. The call also
7038
+ # returns a token that you can specify in a subsequent call to get the
7039
+ # next set of results.
7040
+ #
7041
+ # @option params [String] :next_token
7042
+ # A token to start the list. Use this token to get the next set of
7043
+ # results.
7044
+ #
7045
+ # @return [Types::ListOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7046
+ #
7047
+ # * {Types::ListOpsMetadataResult#ops_metadata_list #ops_metadata_list} => Array&lt;Types::OpsMetadata&gt;
7048
+ # * {Types::ListOpsMetadataResult#next_token #next_token} => String
7049
+ #
7050
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
7051
+ #
7052
+ # @example Request syntax with placeholder values
7053
+ #
7054
+ # resp = client.list_ops_metadata({
7055
+ # filters: [
7056
+ # {
7057
+ # key: "OpsMetadataFilterKey", # required
7058
+ # values: ["OpsMetadataFilterValue"], # required
7059
+ # },
7060
+ # ],
7061
+ # max_results: 1,
7062
+ # next_token: "NextToken",
7063
+ # })
7064
+ #
7065
+ # @example Response structure
7066
+ #
7067
+ # resp.ops_metadata_list #=> Array
7068
+ # resp.ops_metadata_list[0].resource_id #=> String
7069
+ # resp.ops_metadata_list[0].ops_metadata_arn #=> String
7070
+ # resp.ops_metadata_list[0].last_modified_date #=> Time
7071
+ # resp.ops_metadata_list[0].last_modified_user #=> String
7072
+ # resp.ops_metadata_list[0].creation_date #=> Time
7073
+ # resp.next_token #=> String
7074
+ #
7075
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListOpsMetadata AWS API Documentation
7076
+ #
7077
+ # @overload list_ops_metadata(params = {})
7078
+ # @param [Hash] params ({})
7079
+ def list_ops_metadata(params = {}, options = {})
7080
+ req = build_request(:list_ops_metadata, params)
7081
+ req.send_request(options)
7082
+ end
7083
+
6618
7084
  # Returns a resource-level summary count. The summary includes
6619
7085
  # information about compliant and non-compliant statuses and detailed
6620
7086
  # compliance-item severity counts, according to the filter criteria you
@@ -7501,7 +7967,7 @@ module Aws::SSM
7501
7967
  #
7502
7968
  # Specify maintenance window targets using the following format:
7503
7969
  #
7504
- # `Key=WindowTargetIds;,Values=<window-target-id-1>,<window-target-id-2>`
7970
+ # `Key=WindowTargetIds,Values=<window-target-id-1>,<window-target-id-2>`
7505
7971
  #
7506
7972
  # @option params [required, String] :task_arn
7507
7973
  # The ARN of the task to run.
@@ -8246,6 +8712,125 @@ module Aws::SSM
8246
8712
  req.send_request(options)
8247
8713
  end
8248
8714
 
8715
+ # Creates a change request for Change Manager. The runbooks (Automation
8716
+ # documents) specified in the change request run only after all required
8717
+ # approvals for the change request have been received.
8718
+ #
8719
+ # @option params [Time,DateTime,Date,Integer,String] :scheduled_time
8720
+ # The date and time specified in the change request to run the
8721
+ # Automation runbooks.
8722
+ #
8723
+ # <note markdown="1"> The Automation runbooks specified for the runbook workflow can't run
8724
+ # until all required approvals for the change request have been
8725
+ # received.
8726
+ #
8727
+ # </note>
8728
+ #
8729
+ # @option params [required, String] :document_name
8730
+ # The name of the change template document to run during the runbook
8731
+ # workflow.
8732
+ #
8733
+ # @option params [String] :document_version
8734
+ # The version of the change template document to run during the runbook
8735
+ # workflow.
8736
+ #
8737
+ # @option params [Hash<String,Array>] :parameters
8738
+ # A key-value map of parameters that match the declared parameters in
8739
+ # the change template document.
8740
+ #
8741
+ # @option params [String] :change_request_name
8742
+ # The name of the change request associated with the runbook workflow to
8743
+ # be run.
8744
+ #
8745
+ # @option params [String] :client_token
8746
+ # The user-provided idempotency token. The token must be unique, is case
8747
+ # insensitive, enforces the UUID format, and can't be reused.
8748
+ #
8749
+ # @option params [required, Array<Types::Runbook>] :runbooks
8750
+ # Information about the Automation runbooks (Automation documents) that
8751
+ # are run during the runbook workflow.
8752
+ #
8753
+ # <note markdown="1"> The Automation runbooks specified for the runbook workflow can't run
8754
+ # until all required approvals for the change request have been
8755
+ # received.
8756
+ #
8757
+ # </note>
8758
+ #
8759
+ # @option params [Array<Types::Tag>] :tags
8760
+ # Optional metadata that you assign to a resource. You can specify a
8761
+ # maximum of five tags for a change request. Tags enable you to
8762
+ # categorize a resource in different ways, such as by purpose, owner, or
8763
+ # environment. For example, you might want to tag a change request to
8764
+ # identify an environment or target AWS Region. In this case, you could
8765
+ # specify the following key-value pairs:
8766
+ #
8767
+ # * `Key=Environment,Value=Production`
8768
+ #
8769
+ # * `Key=Region,Value=us-east-2`
8770
+ #
8771
+ # @return [Types::StartChangeRequestExecutionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8772
+ #
8773
+ # * {Types::StartChangeRequestExecutionResult#automation_execution_id #automation_execution_id} => String
8774
+ #
8775
+ # @example Request syntax with placeholder values
8776
+ #
8777
+ # resp = client.start_change_request_execution({
8778
+ # scheduled_time: Time.now,
8779
+ # document_name: "DocumentARN", # required
8780
+ # document_version: "DocumentVersion",
8781
+ # parameters: {
8782
+ # "AutomationParameterKey" => ["AutomationParameterValue"],
8783
+ # },
8784
+ # change_request_name: "ChangeRequestName",
8785
+ # client_token: "IdempotencyToken",
8786
+ # runbooks: [ # required
8787
+ # {
8788
+ # document_name: "DocumentARN", # required
8789
+ # document_version: "DocumentVersion",
8790
+ # parameters: {
8791
+ # "AutomationParameterKey" => ["AutomationParameterValue"],
8792
+ # },
8793
+ # target_parameter_name: "AutomationParameterKey",
8794
+ # targets: [
8795
+ # {
8796
+ # key: "TargetKey",
8797
+ # values: ["TargetValue"],
8798
+ # },
8799
+ # ],
8800
+ # max_concurrency: "MaxConcurrency",
8801
+ # max_errors: "MaxErrors",
8802
+ # target_locations: [
8803
+ # {
8804
+ # accounts: ["Account"],
8805
+ # regions: ["Region"],
8806
+ # target_location_max_concurrency: "MaxConcurrency",
8807
+ # target_location_max_errors: "MaxErrors",
8808
+ # execution_role_name: "ExecutionRoleName",
8809
+ # },
8810
+ # ],
8811
+ # },
8812
+ # ],
8813
+ # tags: [
8814
+ # {
8815
+ # key: "TagKey", # required
8816
+ # value: "TagValue", # required
8817
+ # },
8818
+ # ],
8819
+ # })
8820
+ #
8821
+ # @example Response structure
8822
+ #
8823
+ # resp.automation_execution_id #=> String
8824
+ #
8825
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartChangeRequestExecution AWS API Documentation
8826
+ #
8827
+ # @overload start_change_request_execution(params = {})
8828
+ # @param [Hash] params ({})
8829
+ def start_change_request_execution(params = {}, options = {})
8830
+ req = build_request(:start_change_request_execution, params)
8831
+ req.send_request(options)
8832
+ end
8833
+
8249
8834
  # Initiates a connection to a target (for example, an instance) for a
8250
8835
  # Session Manager session. Returns a URL and token that can be used to
8251
8836
  # open a WebSocket connection for sending input and receiving outputs.
@@ -8488,7 +9073,8 @@ module Aws::SSM
8488
9073
  # By default, when you update an association, the system runs it
8489
9074
  # immediately after it is updated and then according to the schedule you
8490
9075
  # specified. Specify this option if you don't want an association to
8491
- # run immediately after you update it.
9076
+ # run immediately after you update it. This parameter is not supported
9077
+ # for rate expressions.
8492
9078
  #
8493
9079
  # Also, if you specified this option when you created the association,
8494
9080
  # you can reset it. To do so, specify the
@@ -8497,6 +9083,11 @@ module Aws::SSM
8497
9083
  # association to run immediately after updating it and according to the
8498
9084
  # interval specified.
8499
9085
  #
9086
+ # @option params [Array<Types::TargetLocation>] :target_locations
9087
+ # A location is a combination of AWS Regions and AWS accounts where you
9088
+ # want to run the association. Use this action to update an association
9089
+ # in multiple Regions and multiple accounts.
9090
+ #
8500
9091
  # @return [Types::UpdateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8501
9092
  #
8502
9093
  # * {Types::UpdateAssociationResult#association_description #association_description} => Types::AssociationDescription
@@ -8532,6 +9123,15 @@ module Aws::SSM
8532
9123
  # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
8533
9124
  # sync_compliance: "AUTO", # accepts AUTO, MANUAL
8534
9125
  # apply_only_at_cron_interval: false,
9126
+ # target_locations: [
9127
+ # {
9128
+ # accounts: ["Account"],
9129
+ # regions: ["Region"],
9130
+ # target_location_max_concurrency: "MaxConcurrency",
9131
+ # target_location_max_errors: "MaxErrors",
9132
+ # execution_role_name: "ExecutionRoleName",
9133
+ # },
9134
+ # ],
8535
9135
  # })
8536
9136
  #
8537
9137
  # @example Response structure
@@ -8571,6 +9171,14 @@ module Aws::SSM
8571
9171
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
8572
9172
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
8573
9173
  # resp.association_description.apply_only_at_cron_interval #=> Boolean
9174
+ # resp.association_description.target_locations #=> Array
9175
+ # resp.association_description.target_locations[0].accounts #=> Array
9176
+ # resp.association_description.target_locations[0].accounts[0] #=> String
9177
+ # resp.association_description.target_locations[0].regions #=> Array
9178
+ # resp.association_description.target_locations[0].regions[0] #=> String
9179
+ # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
9180
+ # resp.association_description.target_locations[0].target_location_max_errors #=> String
9181
+ # resp.association_description.target_locations[0].execution_role_name #=> String
8574
9182
  #
8575
9183
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation AWS API Documentation
8576
9184
  #
@@ -8647,6 +9255,14 @@ module Aws::SSM
8647
9255
  # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
8648
9256
  # resp.association_description.sync_compliance #=> String, one of "AUTO", "MANUAL"
8649
9257
  # resp.association_description.apply_only_at_cron_interval #=> Boolean
9258
+ # resp.association_description.target_locations #=> Array
9259
+ # resp.association_description.target_locations[0].accounts #=> Array
9260
+ # resp.association_description.target_locations[0].accounts[0] #=> String
9261
+ # resp.association_description.target_locations[0].regions #=> Array
9262
+ # resp.association_description.target_locations[0].regions[0] #=> String
9263
+ # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
9264
+ # resp.association_description.target_locations[0].target_location_max_errors #=> String
9265
+ # resp.association_description.target_locations[0].execution_role_name #=> String
8650
9266
  #
8651
9267
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus AWS API Documentation
8652
9268
  #
@@ -8730,7 +9346,7 @@ module Aws::SSM
8730
9346
  # resp.document_description.parameters[0].default_value #=> String
8731
9347
  # resp.document_description.platform_types #=> Array
8732
9348
  # resp.document_description.platform_types[0] #=> String, one of "Windows", "Linux"
8733
- # resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar"
9349
+ # resp.document_description.document_type #=> String, one of "Command", "Policy", "Automation", "Session", "Package", "ApplicationConfiguration", "ApplicationConfigurationSchema", "DeploymentStrategy", "ChangeCalendar", "Automation.ChangeTemplate"
8734
9350
  # resp.document_description.schema_version #=> String
8735
9351
  # resp.document_description.latest_version #=> String
8736
9352
  # resp.document_description.default_version #=> String
@@ -8744,6 +9360,14 @@ module Aws::SSM
8744
9360
  # resp.document_description.requires #=> Array
8745
9361
  # resp.document_description.requires[0].name #=> String
8746
9362
  # resp.document_description.requires[0].version #=> String
9363
+ # resp.document_description.author #=> String
9364
+ # resp.document_description.review_information #=> Array
9365
+ # resp.document_description.review_information[0].reviewed_time #=> Time
9366
+ # resp.document_description.review_information[0].status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
9367
+ # resp.document_description.review_information[0].reviewer #=> String
9368
+ # resp.document_description.approved_version #=> String
9369
+ # resp.document_description.pending_review_version #=> String
9370
+ # resp.document_description.review_status #=> String, one of "APPROVED", "NOT_REVIEWED", "PENDING", "REJECTED"
8747
9371
  #
8748
9372
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocument AWS API Documentation
8749
9373
  #
@@ -8790,6 +9414,45 @@ module Aws::SSM
8790
9414
  req.send_request(options)
8791
9415
  end
8792
9416
 
9417
+ # Updates information related to approval reviews for a specific version
9418
+ # of a document.
9419
+ #
9420
+ # @option params [required, String] :name
9421
+ # The name of the document for which a version is to be updated.
9422
+ #
9423
+ # @option params [String] :document_version
9424
+ # The version of a document to update.
9425
+ #
9426
+ # @option params [required, Types::DocumentReviews] :document_reviews
9427
+ # The document review details to update.
9428
+ #
9429
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9430
+ #
9431
+ # @example Request syntax with placeholder values
9432
+ #
9433
+ # resp = client.update_document_metadata({
9434
+ # name: "DocumentName", # required
9435
+ # document_version: "DocumentVersion",
9436
+ # document_reviews: { # required
9437
+ # action: "SendForReview", # required, accepts SendForReview, UpdateReview, Approve, Reject
9438
+ # comment: [
9439
+ # {
9440
+ # type: "Comment", # accepts Comment
9441
+ # content: "DocumentReviewComment",
9442
+ # },
9443
+ # ],
9444
+ # },
9445
+ # })
9446
+ #
9447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentMetadata AWS API Documentation
9448
+ #
9449
+ # @overload update_document_metadata(params = {})
9450
+ # @param [Hash] params ({})
9451
+ def update_document_metadata(params = {}, options = {})
9452
+ req = build_request(:update_document_metadata, params)
9453
+ req.send_request(options)
9454
+ end
9455
+
8793
9456
  # Updates an existing maintenance window. Only specified parameters are
8794
9457
  # modified.
8795
9458
  #
@@ -8815,7 +9478,7 @@ module Aws::SSM
8815
9478
  # @option params [String] :start_date
8816
9479
  # The time zone that the scheduled maintenance window executions are
8817
9480
  # based on, in Internet Assigned Numbers Authority (IANA) format. For
8818
- # example: "America/Los\_Angeles", "etc/UTC", or "Asia/Seoul". For
9481
+ # example: "America/Los\_Angeles", "UTC", or "Asia/Seoul". For
8819
9482
  # more information, see the [Time Zone Database][1] on the IANA website.
8820
9483
  #
8821
9484
  #
@@ -8835,7 +9498,7 @@ module Aws::SSM
8835
9498
  # @option params [String] :schedule_timezone
8836
9499
  # The time zone that the scheduled maintenance window executions are
8837
9500
  # based on, in Internet Assigned Numbers Authority (IANA) format. For
8838
- # example: "America/Los\_Angeles", "etc/UTC", or "Asia/Seoul". For
9501
+ # example: "America/Los\_Angeles", "UTC", or "Asia/Seoul". For
8839
9502
  # more information, see the [Time Zone Database][1] on the IANA website.
8840
9503
  #
8841
9504
  #
@@ -8849,7 +9512,7 @@ module Aws::SSM
8849
9512
  # For example, the following cron expression schedules a maintenance
8850
9513
  # window to run the third Tuesday of every month at 11:30 PM.
8851
9514
  #
8852
- # `cron(0 30 23 ? * TUE#3 *)`
9515
+ # `cron(30 23 ? * TUE#3 *)`
8853
9516
  #
8854
9517
  # If the schedule offset is `2`, the maintenance window won't run until
8855
9518
  # two days later.
@@ -9422,6 +10085,23 @@ module Aws::SSM
9422
10085
  # @option params [String] :severity
9423
10086
  # Specify a new severity for an OpsItem.
9424
10087
  #
10088
+ # @option params [Time,DateTime,Date,Integer,String] :actual_start_time
10089
+ # The time a runbook workflow started. Currently reported only for the
10090
+ # OpsItem type `/aws/changerequest`.
10091
+ #
10092
+ # @option params [Time,DateTime,Date,Integer,String] :actual_end_time
10093
+ # The time a runbook workflow ended. Currently reported only for the
10094
+ # OpsItem type `/aws/changerequest`.
10095
+ #
10096
+ # @option params [Time,DateTime,Date,Integer,String] :planned_start_time
10097
+ # The time specified in a change request for a runbook workflow to
10098
+ # start. Currently supported only for the OpsItem type
10099
+ # `/aws/changerequest`.
10100
+ #
10101
+ # @option params [Time,DateTime,Date,Integer,String] :planned_end_time
10102
+ # The time specified in a change request for a runbook workflow to end.
10103
+ # Currently supported only for the OpsItem type `/aws/changerequest`.
10104
+ #
9425
10105
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9426
10106
  #
9427
10107
  # @example Request syntax with placeholder values
@@ -9446,11 +10126,15 @@ module Aws::SSM
9446
10126
  # ops_item_id: "String", # required
9447
10127
  # },
9448
10128
  # ],
9449
- # status: "Open", # accepts Open, InProgress, Resolved
10129
+ # status: "Open", # accepts Open, InProgress, Resolved, Pending, TimedOut, Cancelling, Cancelled, Failed, CompletedWithSuccess, CompletedWithFailure, Scheduled, RunbookInProgress, PendingChangeCalendarOverride, ChangeCalendarOverrideApproved, ChangeCalendarOverrideRejected, PendingApproval, Approved, Rejected
9450
10130
  # ops_item_id: "OpsItemId", # required
9451
10131
  # title: "OpsItemTitle",
9452
10132
  # category: "OpsItemCategory",
9453
10133
  # severity: "OpsItemSeverity",
10134
+ # actual_start_time: Time.now,
10135
+ # actual_end_time: Time.now,
10136
+ # planned_start_time: Time.now,
10137
+ # planned_end_time: Time.now,
9454
10138
  # })
9455
10139
  #
9456
10140
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateOpsItem AWS API Documentation
@@ -9462,6 +10146,47 @@ module Aws::SSM
9462
10146
  req.send_request(options)
9463
10147
  end
9464
10148
 
10149
+ # Systems Manager calls this API action when you edit OpsMetadata in
10150
+ # Application Manager.
10151
+ #
10152
+ # @option params [required, String] :ops_metadata_arn
10153
+ # The Amazon Resoure Name (ARN) of the OpsMetadata Object to update.
10154
+ #
10155
+ # @option params [Hash<String,Types::MetadataValue>] :metadata_to_update
10156
+ # Metadata to add to an OpsMetadata object.
10157
+ #
10158
+ # @option params [Array<String>] :keys_to_delete
10159
+ # The metadata keys to delete from the OpsMetadata object.
10160
+ #
10161
+ # @return [Types::UpdateOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10162
+ #
10163
+ # * {Types::UpdateOpsMetadataResult#ops_metadata_arn #ops_metadata_arn} => String
10164
+ #
10165
+ # @example Request syntax with placeholder values
10166
+ #
10167
+ # resp = client.update_ops_metadata({
10168
+ # ops_metadata_arn: "OpsMetadataArn", # required
10169
+ # metadata_to_update: {
10170
+ # "MetadataKey" => {
10171
+ # value: "MetadataValueString",
10172
+ # },
10173
+ # },
10174
+ # keys_to_delete: ["MetadataKey"],
10175
+ # })
10176
+ #
10177
+ # @example Response structure
10178
+ #
10179
+ # resp.ops_metadata_arn #=> String
10180
+ #
10181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateOpsMetadata AWS API Documentation
10182
+ #
10183
+ # @overload update_ops_metadata(params = {})
10184
+ # @param [Hash] params ({})
10185
+ def update_ops_metadata(params = {}, options = {})
10186
+ req = build_request(:update_ops_metadata, params)
10187
+ req.send_request(options)
10188
+ end
10189
+
9465
10190
  # Modifies an existing patch baseline. Fields not specified in the
9466
10191
  # request are left unchanged.
9467
10192
  #
@@ -9613,7 +10338,7 @@ module Aws::SSM
9613
10338
  #
9614
10339
  # resp.baseline_id #=> String
9615
10340
  # resp.name #=> String
9616
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
10341
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
9617
10342
  # resp.global_filters.patch_filters #=> Array
9618
10343
  # resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
9619
10344
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -9782,7 +10507,7 @@ module Aws::SSM
9782
10507
  params: params,
9783
10508
  config: config)
9784
10509
  context[:gem_name] = 'aws-sdk-ssm'
9785
- context[:gem_version] = '1.95.0'
10510
+ context[:gem_version] = '1.100.0'
9786
10511
  Seahorse::Client::Request.new(handlers, context)
9787
10512
  end
9788
10513