aws-sdk-ssm 1.61.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +115 -18
- data/lib/aws-sdk-ssm/client_api.rb +73 -2
- data/lib/aws-sdk-ssm/errors.rb +10 -0
- data/lib/aws-sdk-ssm/types.rb +351 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5b8eb9171e55082952bdcf9b96e864bb02461b5
|
4
|
+
data.tar.gz: dedfeab24b9b22adc75f0cf2b34962df01758cad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35821adb2228dea5e70ae322fe0e1ee3551b0ce1cccab358113506ca435d7bc76813d9c93f64cd65ffee39a4ed0198ce540b18acd3a273f4180e87451d28b3b7
|
7
|
+
data.tar.gz: 29266237df379f0a8983453a5e97896f403c419d2c13809e3e44cfcae632eb06e57db5b8f2909141aeea537a3d6b576a5a4d5ad204a5c984fbb0db2298c3ad4f
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -1159,6 +1159,12 @@ module Aws::SSM
|
|
1159
1159
|
#
|
1160
1160
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html#OpsCenter-getting-started-user-permissions
|
1161
1161
|
#
|
1162
|
+
# @option params [String] :category
|
1163
|
+
# Specify a category to assign to an OpsItem.
|
1164
|
+
#
|
1165
|
+
# @option params [String] :severity
|
1166
|
+
# Specify a severity to assign to an OpsItem.
|
1167
|
+
#
|
1162
1168
|
# @return [Types::CreateOpsItemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1163
1169
|
#
|
1164
1170
|
# * {Types::CreateOpsItemResponse#ops_item_id #ops_item_id} => String
|
@@ -1192,6 +1198,8 @@ module Aws::SSM
|
|
1192
1198
|
# value: "TagValue", # required
|
1193
1199
|
# },
|
1194
1200
|
# ],
|
1201
|
+
# category: "OpsItemCategory",
|
1202
|
+
# severity: "OpsItemSeverity",
|
1195
1203
|
# })
|
1196
1204
|
#
|
1197
1205
|
# @example Response structure
|
@@ -1379,42 +1387,85 @@ module Aws::SSM
|
|
1379
1387
|
req.send_request(options)
|
1380
1388
|
end
|
1381
1389
|
|
1382
|
-
#
|
1383
|
-
#
|
1384
|
-
#
|
1385
|
-
# syncs data to the Amazon S3 bucket. To check the status of the sync,
|
1386
|
-
# use the ListResourceDataSync.
|
1390
|
+
# A resource data sync helps you view data from multiple sources in a
|
1391
|
+
# single location. Systems Manager offers two types of resource data
|
1392
|
+
# sync: `SyncToDestination` and `SyncFromSource`.
|
1387
1393
|
#
|
1388
|
-
#
|
1389
|
-
#
|
1390
|
-
#
|
1391
|
-
# creating a restrictive bucket policy. For more information, see
|
1394
|
+
# You can configure Systems Manager Inventory to use the
|
1395
|
+
# `SyncToDestination` type to synchronize Inventory data from multiple
|
1396
|
+
# AWS Regions to a single Amazon S3 bucket. For more information, see
|
1392
1397
|
# [Configuring Resource Data Sync for Inventory][1] in the *AWS Systems
|
1393
1398
|
# Manager User Guide*.
|
1394
1399
|
#
|
1400
|
+
# You can configure Systems Manager Explorer to use the
|
1401
|
+
# `SyncToDestination` type to synchronize operational work items
|
1402
|
+
# (OpsItems) and operational data (OpsData) from multiple AWS Regions to
|
1403
|
+
# a single Amazon S3 bucket. You can also configure Explorer to use the
|
1404
|
+
# `SyncFromSource` type. This type synchronizes OpsItems and OpsData
|
1405
|
+
# from multiple AWS accounts and Regions by using AWS Organizations. For
|
1406
|
+
# more information, see [Setting Up Explorer to Display Data from
|
1407
|
+
# Multiple Accounts and Regions][2] in the *AWS Systems Manager User
|
1408
|
+
# Guide*.
|
1409
|
+
#
|
1410
|
+
# A resource data sync is an asynchronous operation that returns
|
1411
|
+
# immediately. After a successful initial sync is completed, the system
|
1412
|
+
# continuously syncs data. To check the status of a sync, use the
|
1413
|
+
# ListResourceDataSync.
|
1414
|
+
#
|
1415
|
+
# <note markdown="1"> By default, data is not encrypted in Amazon S3. We strongly recommend
|
1416
|
+
# that you enable encryption in Amazon S3 to ensure secure data storage.
|
1417
|
+
# We also recommend that you secure access to the Amazon S3 bucket by
|
1418
|
+
# creating a restrictive bucket policy.
|
1419
|
+
#
|
1420
|
+
# </note>
|
1421
|
+
#
|
1395
1422
|
#
|
1396
1423
|
#
|
1397
1424
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-datasync.html
|
1425
|
+
# [2]: http://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resource-data-sync.html
|
1398
1426
|
#
|
1399
1427
|
# @option params [required, String] :sync_name
|
1400
1428
|
# A name for the configuration.
|
1401
1429
|
#
|
1402
|
-
# @option params [
|
1430
|
+
# @option params [Types::ResourceDataSyncS3Destination] :s3_destination
|
1403
1431
|
# Amazon S3 configuration details for the sync.
|
1404
1432
|
#
|
1433
|
+
# @option params [String] :sync_type
|
1434
|
+
# Specify `SyncToDestination` to create a resource data sync that
|
1435
|
+
# synchronizes data from multiple AWS Regions to an Amazon S3 bucket.
|
1436
|
+
# Specify `SyncFromSource` to synchronize data from multiple AWS
|
1437
|
+
# accounts and Regions, as listed in AWS Organizations.
|
1438
|
+
#
|
1439
|
+
# @option params [Types::ResourceDataSyncSource] :sync_source
|
1440
|
+
# Specify information about the data sources to synchronize.
|
1441
|
+
#
|
1405
1442
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1406
1443
|
#
|
1407
1444
|
# @example Request syntax with placeholder values
|
1408
1445
|
#
|
1409
1446
|
# resp = client.create_resource_data_sync({
|
1410
1447
|
# sync_name: "ResourceDataSyncName", # required
|
1411
|
-
# s3_destination: {
|
1448
|
+
# s3_destination: {
|
1412
1449
|
# bucket_name: "ResourceDataSyncS3BucketName", # required
|
1413
1450
|
# prefix: "ResourceDataSyncS3Prefix",
|
1414
1451
|
# sync_format: "JsonSerDe", # required, accepts JsonSerDe
|
1415
1452
|
# region: "ResourceDataSyncS3Region", # required
|
1416
1453
|
# awskms_key_arn: "ResourceDataSyncAWSKMSKeyARN",
|
1417
1454
|
# },
|
1455
|
+
# sync_type: "ResourceDataSyncType",
|
1456
|
+
# sync_source: {
|
1457
|
+
# source_type: "ResourceDataSyncSourceType", # required
|
1458
|
+
# aws_organizations_source: {
|
1459
|
+
# organization_source_type: "ResourceDataSyncOrganizationSourceType", # required
|
1460
|
+
# organizational_units: [
|
1461
|
+
# {
|
1462
|
+
# organizational_unit_id: "ResourceDataSyncOrganizationalUnitId",
|
1463
|
+
# },
|
1464
|
+
# ],
|
1465
|
+
# },
|
1466
|
+
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
1467
|
+
# include_future_regions: false,
|
1468
|
+
# },
|
1418
1469
|
# })
|
1419
1470
|
#
|
1420
1471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateResourceDataSync AWS API Documentation
|
@@ -1707,19 +1758,23 @@ module Aws::SSM
|
|
1707
1758
|
end
|
1708
1759
|
|
1709
1760
|
# Deletes a Resource Data Sync configuration. After the configuration is
|
1710
|
-
# deleted, changes to
|
1711
|
-
#
|
1712
|
-
#
|
1761
|
+
# deleted, changes to data on managed instances are no longer synced to
|
1762
|
+
# or from the target. Deleting a sync configuration does not delete
|
1763
|
+
# data.
|
1713
1764
|
#
|
1714
1765
|
# @option params [required, String] :sync_name
|
1715
1766
|
# The name of the configuration to delete.
|
1716
1767
|
#
|
1768
|
+
# @option params [String] :sync_type
|
1769
|
+
# Specify the type of resource data sync to delete.
|
1770
|
+
#
|
1717
1771
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1718
1772
|
#
|
1719
1773
|
# @example Request syntax with placeholder values
|
1720
1774
|
#
|
1721
1775
|
# resp = client.delete_resource_data_sync({
|
1722
1776
|
# sync_name: "ResourceDataSyncName", # required
|
1777
|
+
# sync_type: "ResourceDataSyncType",
|
1723
1778
|
# })
|
1724
1779
|
#
|
1725
1780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteResourceDataSync AWS API Documentation
|
@@ -3591,7 +3646,7 @@ module Aws::SSM
|
|
3591
3646
|
# resp = client.describe_ops_items({
|
3592
3647
|
# ops_item_filters: [
|
3593
3648
|
# {
|
3594
|
-
# key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId
|
3649
|
+
# key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId, Category, Severity
|
3595
3650
|
# values: ["OpsItemFilterValue"], # required
|
3596
3651
|
# operator: "Equal", # required, accepts Equal, Contains, GreaterThan, LessThan
|
3597
3652
|
# },
|
@@ -3616,6 +3671,8 @@ module Aws::SSM
|
|
3616
3671
|
# resp.ops_item_summaries[0].operational_data #=> Hash
|
3617
3672
|
# resp.ops_item_summaries[0].operational_data["OpsItemDataKey"].value #=> String
|
3618
3673
|
# resp.ops_item_summaries[0].operational_data["OpsItemDataKey"].type #=> String, one of "SearchableString", "String"
|
3674
|
+
# resp.ops_item_summaries[0].category #=> String
|
3675
|
+
# resp.ops_item_summaries[0].severity #=> String
|
3619
3676
|
#
|
3620
3677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeOpsItems AWS API Documentation
|
3621
3678
|
#
|
@@ -4873,6 +4930,8 @@ module Aws::SSM
|
|
4873
4930
|
# resp.ops_item.operational_data #=> Hash
|
4874
4931
|
# resp.ops_item.operational_data["OpsItemDataKey"].value #=> String
|
4875
4932
|
# resp.ops_item.operational_data["OpsItemDataKey"].type #=> String, one of "SearchableString", "String"
|
4933
|
+
# resp.ops_item.category #=> String
|
4934
|
+
# resp.ops_item.severity #=> String
|
4876
4935
|
#
|
4877
4936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetOpsItem AWS API Documentation
|
4878
4937
|
#
|
@@ -4885,13 +4944,19 @@ module Aws::SSM
|
|
4885
4944
|
|
4886
4945
|
# View a summary of OpsItems based on specified filters and aggregators.
|
4887
4946
|
#
|
4947
|
+
# @option params [String] :sync_name
|
4948
|
+
# Specify the name of a resource data sync to get.
|
4949
|
+
#
|
4888
4950
|
# @option params [Array<Types::OpsFilter>] :filters
|
4889
4951
|
# Optional filters used to scope down the returned OpsItems.
|
4890
4952
|
#
|
4891
|
-
# @option params [
|
4953
|
+
# @option params [Array<Types::OpsAggregator>] :aggregators
|
4892
4954
|
# Optional aggregators that return counts of OpsItems based on one or
|
4893
4955
|
# more expressions.
|
4894
4956
|
#
|
4957
|
+
# @option params [Array<Types::OpsResultAttribute>] :result_attributes
|
4958
|
+
# The OpsItem data type to return.
|
4959
|
+
#
|
4895
4960
|
# @option params [String] :next_token
|
4896
4961
|
# A token to start the list. Use this token to get the next set of
|
4897
4962
|
# results.
|
@@ -4909,6 +4974,7 @@ module Aws::SSM
|
|
4909
4974
|
# @example Request syntax with placeholder values
|
4910
4975
|
#
|
4911
4976
|
# resp = client.get_ops_summary({
|
4977
|
+
# sync_name: "ResourceDataSyncName",
|
4912
4978
|
# filters: [
|
4913
4979
|
# {
|
4914
4980
|
# key: "OpsFilterKey", # required
|
@@ -4916,7 +4982,7 @@ module Aws::SSM
|
|
4916
4982
|
# type: "Equal", # accepts Equal, NotEqual, BeginWith, LessThan, GreaterThan, Exists
|
4917
4983
|
# },
|
4918
4984
|
# ],
|
4919
|
-
# aggregators: [
|
4985
|
+
# aggregators: [
|
4920
4986
|
# {
|
4921
4987
|
# aggregator_type: "OpsAggregatorType",
|
4922
4988
|
# type_name: "OpsDataTypeName",
|
@@ -4936,6 +5002,11 @@ module Aws::SSM
|
|
4936
5002
|
# },
|
4937
5003
|
# },
|
4938
5004
|
# ],
|
5005
|
+
# result_attributes: [
|
5006
|
+
# {
|
5007
|
+
# type_name: "OpsDataTypeName", # required
|
5008
|
+
# },
|
5009
|
+
# ],
|
4939
5010
|
# next_token: "NextToken",
|
4940
5011
|
# max_results: 1,
|
4941
5012
|
# })
|
@@ -4945,6 +5016,7 @@ module Aws::SSM
|
|
4945
5016
|
# resp.entities #=> Array
|
4946
5017
|
# resp.entities[0].id #=> String
|
4947
5018
|
# resp.entities[0].data #=> Hash
|
5019
|
+
# resp.entities[0].data["OpsEntityItemKey"].capture_time #=> String
|
4948
5020
|
# resp.entities[0].data["OpsEntityItemKey"].content #=> Array
|
4949
5021
|
# resp.entities[0].data["OpsEntityItemKey"].content[0] #=> Hash
|
4950
5022
|
# resp.entities[0].data["OpsEntityItemKey"].content[0]["AttributeName"] #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
@@ -6151,6 +6223,12 @@ module Aws::SSM
|
|
6151
6223
|
# `NextToken` returned in the call to the parameter of a subsequent
|
6152
6224
|
# call.
|
6153
6225
|
#
|
6226
|
+
# @option params [String] :sync_type
|
6227
|
+
# View a list of resource data syncs according to the sync type. Specify
|
6228
|
+
# `SyncToDestination` to view resource data syncs that synchronize data
|
6229
|
+
# to an Amazon S3 buckets. Specify `SyncFromSource` to view resource
|
6230
|
+
# data syncs from AWS Organizations or from multiple AWS Regions.
|
6231
|
+
#
|
6154
6232
|
# @option params [String] :next_token
|
6155
6233
|
# A token to start the list. Use this token to get the next set of
|
6156
6234
|
# results.
|
@@ -6168,6 +6246,7 @@ module Aws::SSM
|
|
6168
6246
|
# @example Request syntax with placeholder values
|
6169
6247
|
#
|
6170
6248
|
# resp = client.list_resource_data_sync({
|
6249
|
+
# sync_type: "ResourceDataSyncType",
|
6171
6250
|
# next_token: "NextToken",
|
6172
6251
|
# max_results: 1,
|
6173
6252
|
# })
|
@@ -6176,6 +6255,15 @@ module Aws::SSM
|
|
6176
6255
|
#
|
6177
6256
|
# resp.resource_data_sync_items #=> Array
|
6178
6257
|
# resp.resource_data_sync_items[0].sync_name #=> String
|
6258
|
+
# resp.resource_data_sync_items[0].sync_type #=> String
|
6259
|
+
# resp.resource_data_sync_items[0].sync_source.source_type #=> String
|
6260
|
+
# resp.resource_data_sync_items[0].sync_source.aws_organizations_source.organization_source_type #=> String
|
6261
|
+
# resp.resource_data_sync_items[0].sync_source.aws_organizations_source.organizational_units #=> Array
|
6262
|
+
# resp.resource_data_sync_items[0].sync_source.aws_organizations_source.organizational_units[0].organizational_unit_id #=> String
|
6263
|
+
# resp.resource_data_sync_items[0].sync_source.source_regions #=> Array
|
6264
|
+
# resp.resource_data_sync_items[0].sync_source.source_regions[0] #=> String
|
6265
|
+
# resp.resource_data_sync_items[0].sync_source.include_future_regions #=> Boolean
|
6266
|
+
# resp.resource_data_sync_items[0].sync_source.state #=> String
|
6179
6267
|
# resp.resource_data_sync_items[0].s3_destination.bucket_name #=> String
|
6180
6268
|
# resp.resource_data_sync_items[0].s3_destination.prefix #=> String
|
6181
6269
|
# resp.resource_data_sync_items[0].s3_destination.sync_format #=> String, one of "JsonSerDe"
|
@@ -6183,6 +6271,7 @@ module Aws::SSM
|
|
6183
6271
|
# resp.resource_data_sync_items[0].s3_destination.awskms_key_arn #=> String
|
6184
6272
|
# resp.resource_data_sync_items[0].last_sync_time #=> Time
|
6185
6273
|
# resp.resource_data_sync_items[0].last_successful_sync_time #=> Time
|
6274
|
+
# resp.resource_data_sync_items[0].sync_last_modified_time #=> Time
|
6186
6275
|
# resp.resource_data_sync_items[0].last_status #=> String, one of "Successful", "Failed", "InProgress"
|
6187
6276
|
# resp.resource_data_sync_items[0].sync_created_time #=> Time
|
6188
6277
|
# resp.resource_data_sync_items[0].last_sync_status_message #=> String
|
@@ -8654,6 +8743,12 @@ module Aws::SSM
|
|
8654
8743
|
# A short heading that describes the nature of the OpsItem and the
|
8655
8744
|
# impacted resource.
|
8656
8745
|
#
|
8746
|
+
# @option params [String] :category
|
8747
|
+
# Specify a new category for an OpsItem.
|
8748
|
+
#
|
8749
|
+
# @option params [String] :severity
|
8750
|
+
# Specify a new severity for an OpsItem.
|
8751
|
+
#
|
8657
8752
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
8658
8753
|
#
|
8659
8754
|
# @example Request syntax with placeholder values
|
@@ -8681,6 +8776,8 @@ module Aws::SSM
|
|
8681
8776
|
# status: "Open", # accepts Open, InProgress, Resolved
|
8682
8777
|
# ops_item_id: "OpsItemId", # required
|
8683
8778
|
# title: "OpsItemTitle",
|
8779
|
+
# category: "OpsItemCategory",
|
8780
|
+
# severity: "OpsItemSeverity",
|
8684
8781
|
# })
|
8685
8782
|
#
|
8686
8783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateOpsItem AWS API Documentation
|
@@ -8935,7 +9032,7 @@ module Aws::SSM
|
|
8935
9032
|
params: params,
|
8936
9033
|
config: config)
|
8937
9034
|
context[:gem_name] = 'aws-sdk-ssm'
|
8938
|
-
context[:gem_version] = '1.
|
9035
|
+
context[:gem_version] = '1.62.0'
|
8939
9036
|
Seahorse::Client::Request.new(handlers, context)
|
8940
9037
|
end
|
8941
9038
|
|
@@ -655,6 +655,7 @@ module Aws::SSM
|
|
655
655
|
OpsEntity = Shapes::StructureShape.new(name: 'OpsEntity')
|
656
656
|
OpsEntityId = Shapes::StringShape.new(name: 'OpsEntityId')
|
657
657
|
OpsEntityItem = Shapes::StructureShape.new(name: 'OpsEntityItem')
|
658
|
+
OpsEntityItemCaptureTime = Shapes::StringShape.new(name: 'OpsEntityItemCaptureTime')
|
658
659
|
OpsEntityItemEntry = Shapes::MapShape.new(name: 'OpsEntityItemEntry')
|
659
660
|
OpsEntityItemEntryList = Shapes::ListShape.new(name: 'OpsEntityItemEntryList')
|
660
661
|
OpsEntityItemKey = Shapes::StringShape.new(name: 'OpsEntityItemKey')
|
@@ -668,6 +669,7 @@ module Aws::SSM
|
|
668
669
|
OpsFilterValueList = Shapes::ListShape.new(name: 'OpsFilterValueList')
|
669
670
|
OpsItem = Shapes::StructureShape.new(name: 'OpsItem')
|
670
671
|
OpsItemAlreadyExistsException = Shapes::StructureShape.new(name: 'OpsItemAlreadyExistsException')
|
672
|
+
OpsItemCategory = Shapes::StringShape.new(name: 'OpsItemCategory')
|
671
673
|
OpsItemDataKey = Shapes::StringShape.new(name: 'OpsItemDataKey')
|
672
674
|
OpsItemDataType = Shapes::StringShape.new(name: 'OpsItemDataType')
|
673
675
|
OpsItemDataValue = Shapes::StructureShape.new(name: 'OpsItemDataValue')
|
@@ -690,11 +692,14 @@ module Aws::SSM
|
|
690
692
|
OpsItemOpsDataKeysList = Shapes::ListShape.new(name: 'OpsItemOpsDataKeysList')
|
691
693
|
OpsItemParameterNamesList = Shapes::ListShape.new(name: 'OpsItemParameterNamesList')
|
692
694
|
OpsItemPriority = Shapes::IntegerShape.new(name: 'OpsItemPriority')
|
695
|
+
OpsItemSeverity = Shapes::StringShape.new(name: 'OpsItemSeverity')
|
693
696
|
OpsItemSource = Shapes::StringShape.new(name: 'OpsItemSource')
|
694
697
|
OpsItemStatus = Shapes::StringShape.new(name: 'OpsItemStatus')
|
695
698
|
OpsItemSummaries = Shapes::ListShape.new(name: 'OpsItemSummaries')
|
696
699
|
OpsItemSummary = Shapes::StructureShape.new(name: 'OpsItemSummary')
|
697
700
|
OpsItemTitle = Shapes::StringShape.new(name: 'OpsItemTitle')
|
701
|
+
OpsResultAttribute = Shapes::StructureShape.new(name: 'OpsResultAttribute')
|
702
|
+
OpsResultAttributeList = Shapes::ListShape.new(name: 'OpsResultAttributeList')
|
698
703
|
OutputSource = Shapes::StructureShape.new(name: 'OutputSource')
|
699
704
|
OutputSourceId = Shapes::StringShape.new(name: 'OutputSourceId')
|
700
705
|
OutputSourceType = Shapes::StringShape.new(name: 'OutputSourceType')
|
@@ -843,18 +848,32 @@ module Aws::SSM
|
|
843
848
|
ResourceCountByStatus = Shapes::StringShape.new(name: 'ResourceCountByStatus')
|
844
849
|
ResourceDataSyncAWSKMSKeyARN = Shapes::StringShape.new(name: 'ResourceDataSyncAWSKMSKeyARN')
|
845
850
|
ResourceDataSyncAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceDataSyncAlreadyExistsException')
|
851
|
+
ResourceDataSyncAwsOrganizationsSource = Shapes::StructureShape.new(name: 'ResourceDataSyncAwsOrganizationsSource')
|
846
852
|
ResourceDataSyncCountExceededException = Shapes::StructureShape.new(name: 'ResourceDataSyncCountExceededException')
|
847
853
|
ResourceDataSyncCreatedTime = Shapes::TimestampShape.new(name: 'ResourceDataSyncCreatedTime')
|
854
|
+
ResourceDataSyncIncludeFutureRegions = Shapes::BooleanShape.new(name: 'ResourceDataSyncIncludeFutureRegions')
|
848
855
|
ResourceDataSyncInvalidConfigurationException = Shapes::StructureShape.new(name: 'ResourceDataSyncInvalidConfigurationException')
|
849
856
|
ResourceDataSyncItem = Shapes::StructureShape.new(name: 'ResourceDataSyncItem')
|
850
857
|
ResourceDataSyncItemList = Shapes::ListShape.new(name: 'ResourceDataSyncItemList')
|
858
|
+
ResourceDataSyncLastModifiedTime = Shapes::TimestampShape.new(name: 'ResourceDataSyncLastModifiedTime')
|
851
859
|
ResourceDataSyncName = Shapes::StringShape.new(name: 'ResourceDataSyncName')
|
852
860
|
ResourceDataSyncNotFoundException = Shapes::StructureShape.new(name: 'ResourceDataSyncNotFoundException')
|
861
|
+
ResourceDataSyncOrganizationSourceType = Shapes::StringShape.new(name: 'ResourceDataSyncOrganizationSourceType')
|
862
|
+
ResourceDataSyncOrganizationalUnit = Shapes::StructureShape.new(name: 'ResourceDataSyncOrganizationalUnit')
|
863
|
+
ResourceDataSyncOrganizationalUnitId = Shapes::StringShape.new(name: 'ResourceDataSyncOrganizationalUnitId')
|
864
|
+
ResourceDataSyncOrganizationalUnitList = Shapes::ListShape.new(name: 'ResourceDataSyncOrganizationalUnitList')
|
853
865
|
ResourceDataSyncS3BucketName = Shapes::StringShape.new(name: 'ResourceDataSyncS3BucketName')
|
854
866
|
ResourceDataSyncS3Destination = Shapes::StructureShape.new(name: 'ResourceDataSyncS3Destination')
|
855
867
|
ResourceDataSyncS3Format = Shapes::StringShape.new(name: 'ResourceDataSyncS3Format')
|
856
868
|
ResourceDataSyncS3Prefix = Shapes::StringShape.new(name: 'ResourceDataSyncS3Prefix')
|
857
869
|
ResourceDataSyncS3Region = Shapes::StringShape.new(name: 'ResourceDataSyncS3Region')
|
870
|
+
ResourceDataSyncSource = Shapes::StructureShape.new(name: 'ResourceDataSyncSource')
|
871
|
+
ResourceDataSyncSourceRegion = Shapes::StringShape.new(name: 'ResourceDataSyncSourceRegion')
|
872
|
+
ResourceDataSyncSourceRegionList = Shapes::ListShape.new(name: 'ResourceDataSyncSourceRegionList')
|
873
|
+
ResourceDataSyncSourceType = Shapes::StringShape.new(name: 'ResourceDataSyncSourceType')
|
874
|
+
ResourceDataSyncSourceWithState = Shapes::StructureShape.new(name: 'ResourceDataSyncSourceWithState')
|
875
|
+
ResourceDataSyncState = Shapes::StringShape.new(name: 'ResourceDataSyncState')
|
876
|
+
ResourceDataSyncType = Shapes::StringShape.new(name: 'ResourceDataSyncType')
|
858
877
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
859
878
|
ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
|
860
879
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
@@ -1483,6 +1502,8 @@ module Aws::SSM
|
|
1483
1502
|
CreateOpsItemRequest.add_member(:source, Shapes::ShapeRef.new(shape: OpsItemSource, required: true, location_name: "Source"))
|
1484
1503
|
CreateOpsItemRequest.add_member(:title, Shapes::ShapeRef.new(shape: OpsItemTitle, required: true, location_name: "Title"))
|
1485
1504
|
CreateOpsItemRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1505
|
+
CreateOpsItemRequest.add_member(:category, Shapes::ShapeRef.new(shape: OpsItemCategory, location_name: "Category"))
|
1506
|
+
CreateOpsItemRequest.add_member(:severity, Shapes::ShapeRef.new(shape: OpsItemSeverity, location_name: "Severity"))
|
1486
1507
|
CreateOpsItemRequest.struct_class = Types::CreateOpsItemRequest
|
1487
1508
|
|
1488
1509
|
CreateOpsItemResponse.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: String, location_name: "OpsItemId"))
|
@@ -1507,7 +1528,9 @@ module Aws::SSM
|
|
1507
1528
|
CreatePatchBaselineResult.struct_class = Types::CreatePatchBaselineResult
|
1508
1529
|
|
1509
1530
|
CreateResourceDataSyncRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, required: true, location_name: "SyncName"))
|
1510
|
-
CreateResourceDataSyncRequest.add_member(:s3_destination, Shapes::ShapeRef.new(shape: ResourceDataSyncS3Destination,
|
1531
|
+
CreateResourceDataSyncRequest.add_member(:s3_destination, Shapes::ShapeRef.new(shape: ResourceDataSyncS3Destination, location_name: "S3Destination"))
|
1532
|
+
CreateResourceDataSyncRequest.add_member(:sync_type, Shapes::ShapeRef.new(shape: ResourceDataSyncType, location_name: "SyncType"))
|
1533
|
+
CreateResourceDataSyncRequest.add_member(:sync_source, Shapes::ShapeRef.new(shape: ResourceDataSyncSource, location_name: "SyncSource"))
|
1511
1534
|
CreateResourceDataSyncRequest.struct_class = Types::CreateResourceDataSyncRequest
|
1512
1535
|
|
1513
1536
|
CreateResourceDataSyncResult.struct_class = Types::CreateResourceDataSyncResult
|
@@ -1570,6 +1593,7 @@ module Aws::SSM
|
|
1570
1593
|
DeletePatchBaselineResult.struct_class = Types::DeletePatchBaselineResult
|
1571
1594
|
|
1572
1595
|
DeleteResourceDataSyncRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, required: true, location_name: "SyncName"))
|
1596
|
+
DeleteResourceDataSyncRequest.add_member(:sync_type, Shapes::ShapeRef.new(shape: ResourceDataSyncType, location_name: "SyncType"))
|
1573
1597
|
DeleteResourceDataSyncRequest.struct_class = Types::DeleteResourceDataSyncRequest
|
1574
1598
|
|
1575
1599
|
DeleteResourceDataSyncResult.struct_class = Types::DeleteResourceDataSyncResult
|
@@ -2226,8 +2250,10 @@ module Aws::SSM
|
|
2226
2250
|
GetOpsItemResponse.add_member(:ops_item, Shapes::ShapeRef.new(shape: OpsItem, location_name: "OpsItem"))
|
2227
2251
|
GetOpsItemResponse.struct_class = Types::GetOpsItemResponse
|
2228
2252
|
|
2253
|
+
GetOpsSummaryRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
|
2229
2254
|
GetOpsSummaryRequest.add_member(:filters, Shapes::ShapeRef.new(shape: OpsFilterList, location_name: "Filters"))
|
2230
|
-
GetOpsSummaryRequest.add_member(:aggregators, Shapes::ShapeRef.new(shape: OpsAggregatorList,
|
2255
|
+
GetOpsSummaryRequest.add_member(:aggregators, Shapes::ShapeRef.new(shape: OpsAggregatorList, location_name: "Aggregators"))
|
2256
|
+
GetOpsSummaryRequest.add_member(:result_attributes, Shapes::ShapeRef.new(shape: OpsResultAttributeList, location_name: "ResultAttributes"))
|
2231
2257
|
GetOpsSummaryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2232
2258
|
GetOpsSummaryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2233
2259
|
GetOpsSummaryRequest.struct_class = Types::GetOpsSummaryRequest
|
@@ -2764,6 +2790,7 @@ module Aws::SSM
|
|
2764
2790
|
ListResourceComplianceSummariesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2765
2791
|
ListResourceComplianceSummariesResult.struct_class = Types::ListResourceComplianceSummariesResult
|
2766
2792
|
|
2793
|
+
ListResourceDataSyncRequest.add_member(:sync_type, Shapes::ShapeRef.new(shape: ResourceDataSyncType, location_name: "SyncType"))
|
2767
2794
|
ListResourceDataSyncRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
2768
2795
|
ListResourceDataSyncRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
2769
2796
|
ListResourceDataSyncRequest.struct_class = Types::ListResourceDataSyncRequest
|
@@ -2963,6 +2990,7 @@ module Aws::SSM
|
|
2963
2990
|
OpsEntity.add_member(:data, Shapes::ShapeRef.new(shape: OpsEntityItemMap, location_name: "Data"))
|
2964
2991
|
OpsEntity.struct_class = Types::OpsEntity
|
2965
2992
|
|
2993
|
+
OpsEntityItem.add_member(:capture_time, Shapes::ShapeRef.new(shape: OpsEntityItemCaptureTime, location_name: "CaptureTime"))
|
2966
2994
|
OpsEntityItem.add_member(:content, Shapes::ShapeRef.new(shape: OpsEntityItemEntryList, location_name: "Content"))
|
2967
2995
|
OpsEntityItem.struct_class = Types::OpsEntityItem
|
2968
2996
|
|
@@ -2999,6 +3027,8 @@ module Aws::SSM
|
|
2999
3027
|
OpsItem.add_member(:title, Shapes::ShapeRef.new(shape: OpsItemTitle, location_name: "Title"))
|
3000
3028
|
OpsItem.add_member(:source, Shapes::ShapeRef.new(shape: OpsItemSource, location_name: "Source"))
|
3001
3029
|
OpsItem.add_member(:operational_data, Shapes::ShapeRef.new(shape: OpsItemOperationalData, location_name: "OperationalData"))
|
3030
|
+
OpsItem.add_member(:category, Shapes::ShapeRef.new(shape: OpsItemCategory, location_name: "Category"))
|
3031
|
+
OpsItem.add_member(:severity, Shapes::ShapeRef.new(shape: OpsItemSeverity, location_name: "Severity"))
|
3002
3032
|
OpsItem.struct_class = Types::OpsItem
|
3003
3033
|
|
3004
3034
|
OpsItemAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -3055,8 +3085,15 @@ module Aws::SSM
|
|
3055
3085
|
OpsItemSummary.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: OpsItemId, location_name: "OpsItemId"))
|
3056
3086
|
OpsItemSummary.add_member(:title, Shapes::ShapeRef.new(shape: OpsItemTitle, location_name: "Title"))
|
3057
3087
|
OpsItemSummary.add_member(:operational_data, Shapes::ShapeRef.new(shape: OpsItemOperationalData, location_name: "OperationalData"))
|
3088
|
+
OpsItemSummary.add_member(:category, Shapes::ShapeRef.new(shape: OpsItemCategory, location_name: "Category"))
|
3089
|
+
OpsItemSummary.add_member(:severity, Shapes::ShapeRef.new(shape: OpsItemSeverity, location_name: "Severity"))
|
3058
3090
|
OpsItemSummary.struct_class = Types::OpsItemSummary
|
3059
3091
|
|
3092
|
+
OpsResultAttribute.add_member(:type_name, Shapes::ShapeRef.new(shape: OpsDataTypeName, required: true, location_name: "TypeName"))
|
3093
|
+
OpsResultAttribute.struct_class = Types::OpsResultAttribute
|
3094
|
+
|
3095
|
+
OpsResultAttributeList.member = Shapes::ShapeRef.new(shape: OpsResultAttribute)
|
3096
|
+
|
3060
3097
|
OutputSource.add_member(:output_source_id, Shapes::ShapeRef.new(shape: OutputSourceId, location_name: "OutputSourceId"))
|
3061
3098
|
OutputSource.add_member(:output_source_type, Shapes::ShapeRef.new(shape: OutputSourceType, location_name: "OutputSourceType"))
|
3062
3099
|
OutputSource.struct_class = Types::OutputSource
|
@@ -3381,6 +3418,10 @@ module Aws::SSM
|
|
3381
3418
|
ResourceDataSyncAlreadyExistsException.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
|
3382
3419
|
ResourceDataSyncAlreadyExistsException.struct_class = Types::ResourceDataSyncAlreadyExistsException
|
3383
3420
|
|
3421
|
+
ResourceDataSyncAwsOrganizationsSource.add_member(:organization_source_type, Shapes::ShapeRef.new(shape: ResourceDataSyncOrganizationSourceType, required: true, location_name: "OrganizationSourceType"))
|
3422
|
+
ResourceDataSyncAwsOrganizationsSource.add_member(:organizational_units, Shapes::ShapeRef.new(shape: ResourceDataSyncOrganizationalUnitList, location_name: "OrganizationalUnits"))
|
3423
|
+
ResourceDataSyncAwsOrganizationsSource.struct_class = Types::ResourceDataSyncAwsOrganizationsSource
|
3424
|
+
|
3384
3425
|
ResourceDataSyncCountExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
3385
3426
|
ResourceDataSyncCountExceededException.struct_class = Types::ResourceDataSyncCountExceededException
|
3386
3427
|
|
@@ -3388,9 +3429,12 @@ module Aws::SSM
|
|
3388
3429
|
ResourceDataSyncInvalidConfigurationException.struct_class = Types::ResourceDataSyncInvalidConfigurationException
|
3389
3430
|
|
3390
3431
|
ResourceDataSyncItem.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
|
3432
|
+
ResourceDataSyncItem.add_member(:sync_type, Shapes::ShapeRef.new(shape: ResourceDataSyncType, location_name: "SyncType"))
|
3433
|
+
ResourceDataSyncItem.add_member(:sync_source, Shapes::ShapeRef.new(shape: ResourceDataSyncSourceWithState, location_name: "SyncSource"))
|
3391
3434
|
ResourceDataSyncItem.add_member(:s3_destination, Shapes::ShapeRef.new(shape: ResourceDataSyncS3Destination, location_name: "S3Destination"))
|
3392
3435
|
ResourceDataSyncItem.add_member(:last_sync_time, Shapes::ShapeRef.new(shape: LastResourceDataSyncTime, location_name: "LastSyncTime"))
|
3393
3436
|
ResourceDataSyncItem.add_member(:last_successful_sync_time, Shapes::ShapeRef.new(shape: LastSuccessfulResourceDataSyncTime, location_name: "LastSuccessfulSyncTime"))
|
3437
|
+
ResourceDataSyncItem.add_member(:sync_last_modified_time, Shapes::ShapeRef.new(shape: ResourceDataSyncLastModifiedTime, location_name: "SyncLastModifiedTime"))
|
3394
3438
|
ResourceDataSyncItem.add_member(:last_status, Shapes::ShapeRef.new(shape: LastResourceDataSyncStatus, location_name: "LastStatus"))
|
3395
3439
|
ResourceDataSyncItem.add_member(:sync_created_time, Shapes::ShapeRef.new(shape: ResourceDataSyncCreatedTime, location_name: "SyncCreatedTime"))
|
3396
3440
|
ResourceDataSyncItem.add_member(:last_sync_status_message, Shapes::ShapeRef.new(shape: LastResourceDataSyncMessage, location_name: "LastSyncStatusMessage"))
|
@@ -3399,8 +3443,15 @@ module Aws::SSM
|
|
3399
3443
|
ResourceDataSyncItemList.member = Shapes::ShapeRef.new(shape: ResourceDataSyncItem)
|
3400
3444
|
|
3401
3445
|
ResourceDataSyncNotFoundException.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
|
3446
|
+
ResourceDataSyncNotFoundException.add_member(:sync_type, Shapes::ShapeRef.new(shape: ResourceDataSyncType, location_name: "SyncType"))
|
3447
|
+
ResourceDataSyncNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
3402
3448
|
ResourceDataSyncNotFoundException.struct_class = Types::ResourceDataSyncNotFoundException
|
3403
3449
|
|
3450
|
+
ResourceDataSyncOrganizationalUnit.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: ResourceDataSyncOrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
3451
|
+
ResourceDataSyncOrganizationalUnit.struct_class = Types::ResourceDataSyncOrganizationalUnit
|
3452
|
+
|
3453
|
+
ResourceDataSyncOrganizationalUnitList.member = Shapes::ShapeRef.new(shape: ResourceDataSyncOrganizationalUnit)
|
3454
|
+
|
3404
3455
|
ResourceDataSyncS3Destination.add_member(:bucket_name, Shapes::ShapeRef.new(shape: ResourceDataSyncS3BucketName, required: true, location_name: "BucketName"))
|
3405
3456
|
ResourceDataSyncS3Destination.add_member(:prefix, Shapes::ShapeRef.new(shape: ResourceDataSyncS3Prefix, location_name: "Prefix"))
|
3406
3457
|
ResourceDataSyncS3Destination.add_member(:sync_format, Shapes::ShapeRef.new(shape: ResourceDataSyncS3Format, required: true, location_name: "SyncFormat"))
|
@@ -3408,6 +3459,21 @@ module Aws::SSM
|
|
3408
3459
|
ResourceDataSyncS3Destination.add_member(:awskms_key_arn, Shapes::ShapeRef.new(shape: ResourceDataSyncAWSKMSKeyARN, location_name: "AWSKMSKeyARN"))
|
3409
3460
|
ResourceDataSyncS3Destination.struct_class = Types::ResourceDataSyncS3Destination
|
3410
3461
|
|
3462
|
+
ResourceDataSyncSource.add_member(:source_type, Shapes::ShapeRef.new(shape: ResourceDataSyncSourceType, required: true, location_name: "SourceType"))
|
3463
|
+
ResourceDataSyncSource.add_member(:aws_organizations_source, Shapes::ShapeRef.new(shape: ResourceDataSyncAwsOrganizationsSource, location_name: "AwsOrganizationsSource"))
|
3464
|
+
ResourceDataSyncSource.add_member(:source_regions, Shapes::ShapeRef.new(shape: ResourceDataSyncSourceRegionList, required: true, location_name: "SourceRegions"))
|
3465
|
+
ResourceDataSyncSource.add_member(:include_future_regions, Shapes::ShapeRef.new(shape: ResourceDataSyncIncludeFutureRegions, location_name: "IncludeFutureRegions"))
|
3466
|
+
ResourceDataSyncSource.struct_class = Types::ResourceDataSyncSource
|
3467
|
+
|
3468
|
+
ResourceDataSyncSourceRegionList.member = Shapes::ShapeRef.new(shape: ResourceDataSyncSourceRegion)
|
3469
|
+
|
3470
|
+
ResourceDataSyncSourceWithState.add_member(:source_type, Shapes::ShapeRef.new(shape: ResourceDataSyncSourceType, location_name: "SourceType"))
|
3471
|
+
ResourceDataSyncSourceWithState.add_member(:aws_organizations_source, Shapes::ShapeRef.new(shape: ResourceDataSyncAwsOrganizationsSource, location_name: "AwsOrganizationsSource"))
|
3472
|
+
ResourceDataSyncSourceWithState.add_member(:source_regions, Shapes::ShapeRef.new(shape: ResourceDataSyncSourceRegionList, location_name: "SourceRegions"))
|
3473
|
+
ResourceDataSyncSourceWithState.add_member(:include_future_regions, Shapes::ShapeRef.new(shape: ResourceDataSyncIncludeFutureRegions, location_name: "IncludeFutureRegions"))
|
3474
|
+
ResourceDataSyncSourceWithState.add_member(:state, Shapes::ShapeRef.new(shape: ResourceDataSyncState, location_name: "State"))
|
3475
|
+
ResourceDataSyncSourceWithState.struct_class = Types::ResourceDataSyncSourceWithState
|
3476
|
+
|
3411
3477
|
ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
3412
3478
|
ResourceInUseException.struct_class = Types::ResourceInUseException
|
3413
3479
|
|
@@ -3798,6 +3864,8 @@ module Aws::SSM
|
|
3798
3864
|
UpdateOpsItemRequest.add_member(:status, Shapes::ShapeRef.new(shape: OpsItemStatus, location_name: "Status"))
|
3799
3865
|
UpdateOpsItemRequest.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: OpsItemId, required: true, location_name: "OpsItemId"))
|
3800
3866
|
UpdateOpsItemRequest.add_member(:title, Shapes::ShapeRef.new(shape: OpsItemTitle, location_name: "Title"))
|
3867
|
+
UpdateOpsItemRequest.add_member(:category, Shapes::ShapeRef.new(shape: OpsItemCategory, location_name: "Category"))
|
3868
|
+
UpdateOpsItemRequest.add_member(:severity, Shapes::ShapeRef.new(shape: OpsItemSeverity, location_name: "Severity"))
|
3801
3869
|
UpdateOpsItemRequest.struct_class = Types::UpdateOpsItemRequest
|
3802
3870
|
|
3803
3871
|
UpdateOpsItemResponse.struct_class = Types::UpdateOpsItemResponse
|
@@ -4097,6 +4165,7 @@ module Aws::SSM
|
|
4097
4165
|
o.output = Shapes::ShapeRef.new(shape: DeleteResourceDataSyncResult)
|
4098
4166
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4099
4167
|
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncNotFoundException)
|
4168
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncInvalidConfigurationException)
|
4100
4169
|
end)
|
4101
4170
|
|
4102
4171
|
api.add_operation(:deregister_managed_instance, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4655,6 +4724,7 @@ module Aws::SSM
|
|
4655
4724
|
o.input = Shapes::ShapeRef.new(shape: GetOpsSummaryRequest)
|
4656
4725
|
o.output = Shapes::ShapeRef.new(shape: GetOpsSummaryResult)
|
4657
4726
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4727
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncNotFoundException)
|
4658
4728
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
4659
4729
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4660
4730
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTypeNameException)
|
@@ -4911,6 +4981,7 @@ module Aws::SSM
|
|
4911
4981
|
o.http_request_uri = "/"
|
4912
4982
|
o.input = Shapes::ShapeRef.new(shape: ListResourceDataSyncRequest)
|
4913
4983
|
o.output = Shapes::ShapeRef.new(shape: ListResourceDataSyncResult)
|
4984
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncInvalidConfigurationException)
|
4914
4985
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4915
4986
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4916
4987
|
end)
|
data/lib/aws-sdk-ssm/errors.rb
CHANGED
@@ -1360,6 +1360,16 @@ module Aws::SSM
|
|
1360
1360
|
@data[:sync_name]
|
1361
1361
|
end
|
1362
1362
|
|
1363
|
+
# @return [String]
|
1364
|
+
def sync_type
|
1365
|
+
@data[:sync_type]
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
# @return [String]
|
1369
|
+
def message
|
1370
|
+
@message || @data[:message]
|
1371
|
+
end
|
1372
|
+
|
1363
1373
|
end
|
1364
1374
|
|
1365
1375
|
class ResourceInUseException < ServiceError
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -2881,6 +2881,8 @@ module Aws::SSM
|
|
2881
2881
|
# value: "TagValue", # required
|
2882
2882
|
# },
|
2883
2883
|
# ],
|
2884
|
+
# category: "OpsItemCategory",
|
2885
|
+
# severity: "OpsItemSeverity",
|
2884
2886
|
# }
|
2885
2887
|
#
|
2886
2888
|
# @!attribute [rw] description
|
@@ -2964,6 +2966,14 @@ module Aws::SSM
|
|
2964
2966
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html#OpsCenter-getting-started-user-permissions
|
2965
2967
|
# @return [Array<Types::Tag>]
|
2966
2968
|
#
|
2969
|
+
# @!attribute [rw] category
|
2970
|
+
# Specify a category to assign to an OpsItem.
|
2971
|
+
# @return [String]
|
2972
|
+
#
|
2973
|
+
# @!attribute [rw] severity
|
2974
|
+
# Specify a severity to assign to an OpsItem.
|
2975
|
+
# @return [String]
|
2976
|
+
#
|
2967
2977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateOpsItemRequest AWS API Documentation
|
2968
2978
|
#
|
2969
2979
|
class CreateOpsItemRequest < Struct.new(
|
@@ -2974,7 +2984,9 @@ module Aws::SSM
|
|
2974
2984
|
:related_ops_items,
|
2975
2985
|
:source,
|
2976
2986
|
:title,
|
2977
|
-
:tags
|
2987
|
+
:tags,
|
2988
|
+
:category,
|
2989
|
+
:severity)
|
2978
2990
|
include Aws::Structure
|
2979
2991
|
end
|
2980
2992
|
|
@@ -3182,13 +3194,27 @@ module Aws::SSM
|
|
3182
3194
|
#
|
3183
3195
|
# {
|
3184
3196
|
# sync_name: "ResourceDataSyncName", # required
|
3185
|
-
# s3_destination: {
|
3197
|
+
# s3_destination: {
|
3186
3198
|
# bucket_name: "ResourceDataSyncS3BucketName", # required
|
3187
3199
|
# prefix: "ResourceDataSyncS3Prefix",
|
3188
3200
|
# sync_format: "JsonSerDe", # required, accepts JsonSerDe
|
3189
3201
|
# region: "ResourceDataSyncS3Region", # required
|
3190
3202
|
# awskms_key_arn: "ResourceDataSyncAWSKMSKeyARN",
|
3191
3203
|
# },
|
3204
|
+
# sync_type: "ResourceDataSyncType",
|
3205
|
+
# sync_source: {
|
3206
|
+
# source_type: "ResourceDataSyncSourceType", # required
|
3207
|
+
# aws_organizations_source: {
|
3208
|
+
# organization_source_type: "ResourceDataSyncOrganizationSourceType", # required
|
3209
|
+
# organizational_units: [
|
3210
|
+
# {
|
3211
|
+
# organizational_unit_id: "ResourceDataSyncOrganizationalUnitId",
|
3212
|
+
# },
|
3213
|
+
# ],
|
3214
|
+
# },
|
3215
|
+
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
3216
|
+
# include_future_regions: false,
|
3217
|
+
# },
|
3192
3218
|
# }
|
3193
3219
|
#
|
3194
3220
|
# @!attribute [rw] sync_name
|
@@ -3199,11 +3225,24 @@ module Aws::SSM
|
|
3199
3225
|
# Amazon S3 configuration details for the sync.
|
3200
3226
|
# @return [Types::ResourceDataSyncS3Destination]
|
3201
3227
|
#
|
3228
|
+
# @!attribute [rw] sync_type
|
3229
|
+
# Specify `SyncToDestination` to create a resource data sync that
|
3230
|
+
# synchronizes data from multiple AWS Regions to an Amazon S3 bucket.
|
3231
|
+
# Specify `SyncFromSource` to synchronize data from multiple AWS
|
3232
|
+
# accounts and Regions, as listed in AWS Organizations.
|
3233
|
+
# @return [String]
|
3234
|
+
#
|
3235
|
+
# @!attribute [rw] sync_source
|
3236
|
+
# Specify information about the data sources to synchronize.
|
3237
|
+
# @return [Types::ResourceDataSyncSource]
|
3238
|
+
#
|
3202
3239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateResourceDataSyncRequest AWS API Documentation
|
3203
3240
|
#
|
3204
3241
|
class CreateResourceDataSyncRequest < Struct.new(
|
3205
3242
|
:sync_name,
|
3206
|
-
:s3_destination
|
3243
|
+
:s3_destination,
|
3244
|
+
:sync_type,
|
3245
|
+
:sync_source)
|
3207
3246
|
include Aws::Structure
|
3208
3247
|
end
|
3209
3248
|
|
@@ -3521,16 +3560,22 @@ module Aws::SSM
|
|
3521
3560
|
#
|
3522
3561
|
# {
|
3523
3562
|
# sync_name: "ResourceDataSyncName", # required
|
3563
|
+
# sync_type: "ResourceDataSyncType",
|
3524
3564
|
# }
|
3525
3565
|
#
|
3526
3566
|
# @!attribute [rw] sync_name
|
3527
3567
|
# The name of the configuration to delete.
|
3528
3568
|
# @return [String]
|
3529
3569
|
#
|
3570
|
+
# @!attribute [rw] sync_type
|
3571
|
+
# Specify the type of resource data sync to delete.
|
3572
|
+
# @return [String]
|
3573
|
+
#
|
3530
3574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteResourceDataSyncRequest AWS API Documentation
|
3531
3575
|
#
|
3532
3576
|
class DeleteResourceDataSyncRequest < Struct.new(
|
3533
|
-
:sync_name
|
3577
|
+
:sync_name,
|
3578
|
+
:sync_type)
|
3534
3579
|
include Aws::Structure
|
3535
3580
|
end
|
3536
3581
|
|
@@ -5234,7 +5279,7 @@ module Aws::SSM
|
|
5234
5279
|
# {
|
5235
5280
|
# ops_item_filters: [
|
5236
5281
|
# {
|
5237
|
-
# key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId
|
5282
|
+
# key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId, Category, Severity
|
5238
5283
|
# values: ["OpsItemFilterValue"], # required
|
5239
5284
|
# operator: "Equal", # required, accepts Equal, Contains, GreaterThan, LessThan
|
5240
5285
|
# },
|
@@ -7477,6 +7522,7 @@ module Aws::SSM
|
|
7477
7522
|
# data as a hash:
|
7478
7523
|
#
|
7479
7524
|
# {
|
7525
|
+
# sync_name: "ResourceDataSyncName",
|
7480
7526
|
# filters: [
|
7481
7527
|
# {
|
7482
7528
|
# key: "OpsFilterKey", # required
|
@@ -7484,7 +7530,7 @@ module Aws::SSM
|
|
7484
7530
|
# type: "Equal", # accepts Equal, NotEqual, BeginWith, LessThan, GreaterThan, Exists
|
7485
7531
|
# },
|
7486
7532
|
# ],
|
7487
|
-
# aggregators: [
|
7533
|
+
# aggregators: [
|
7488
7534
|
# {
|
7489
7535
|
# aggregator_type: "OpsAggregatorType",
|
7490
7536
|
# type_name: "OpsDataTypeName",
|
@@ -7504,10 +7550,19 @@ module Aws::SSM
|
|
7504
7550
|
# },
|
7505
7551
|
# },
|
7506
7552
|
# ],
|
7553
|
+
# result_attributes: [
|
7554
|
+
# {
|
7555
|
+
# type_name: "OpsDataTypeName", # required
|
7556
|
+
# },
|
7557
|
+
# ],
|
7507
7558
|
# next_token: "NextToken",
|
7508
7559
|
# max_results: 1,
|
7509
7560
|
# }
|
7510
7561
|
#
|
7562
|
+
# @!attribute [rw] sync_name
|
7563
|
+
# Specify the name of a resource data sync to get.
|
7564
|
+
# @return [String]
|
7565
|
+
#
|
7511
7566
|
# @!attribute [rw] filters
|
7512
7567
|
# Optional filters used to scope down the returned OpsItems.
|
7513
7568
|
# @return [Array<Types::OpsFilter>]
|
@@ -7517,6 +7572,10 @@ module Aws::SSM
|
|
7517
7572
|
# more expressions.
|
7518
7573
|
# @return [Array<Types::OpsAggregator>]
|
7519
7574
|
#
|
7575
|
+
# @!attribute [rw] result_attributes
|
7576
|
+
# The OpsItem data type to return.
|
7577
|
+
# @return [Array<Types::OpsResultAttribute>]
|
7578
|
+
#
|
7520
7579
|
# @!attribute [rw] next_token
|
7521
7580
|
# A token to start the list. Use this token to get the next set of
|
7522
7581
|
# results.
|
@@ -7531,8 +7590,10 @@ module Aws::SSM
|
|
7531
7590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetOpsSummaryRequest AWS API Documentation
|
7532
7591
|
#
|
7533
7592
|
class GetOpsSummaryRequest < Struct.new(
|
7593
|
+
:sync_name,
|
7534
7594
|
:filters,
|
7535
7595
|
:aggregators,
|
7596
|
+
:result_attributes,
|
7536
7597
|
:next_token,
|
7537
7598
|
:max_results)
|
7538
7599
|
include Aws::Structure
|
@@ -10227,10 +10288,19 @@ module Aws::SSM
|
|
10227
10288
|
# data as a hash:
|
10228
10289
|
#
|
10229
10290
|
# {
|
10291
|
+
# sync_type: "ResourceDataSyncType",
|
10230
10292
|
# next_token: "NextToken",
|
10231
10293
|
# max_results: 1,
|
10232
10294
|
# }
|
10233
10295
|
#
|
10296
|
+
# @!attribute [rw] sync_type
|
10297
|
+
# View a list of resource data syncs according to the sync type.
|
10298
|
+
# Specify `SyncToDestination` to view resource data syncs that
|
10299
|
+
# synchronize data to an Amazon S3 buckets. Specify `SyncFromSource`
|
10300
|
+
# to view resource data syncs from AWS Organizations or from multiple
|
10301
|
+
# AWS Regions.
|
10302
|
+
# @return [String]
|
10303
|
+
#
|
10234
10304
|
# @!attribute [rw] next_token
|
10235
10305
|
# A token to start the list. Use this token to get the next set of
|
10236
10306
|
# results.
|
@@ -10245,6 +10315,7 @@ module Aws::SSM
|
|
10245
10315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListResourceDataSyncRequest AWS API Documentation
|
10246
10316
|
#
|
10247
10317
|
class ListResourceDataSyncRequest < Struct.new(
|
10318
|
+
:sync_type,
|
10248
10319
|
:next_token,
|
10249
10320
|
:max_results)
|
10250
10321
|
include Aws::Structure
|
@@ -11348,6 +11419,10 @@ module Aws::SSM
|
|
11348
11419
|
|
11349
11420
|
# The OpsItem summaries result item.
|
11350
11421
|
#
|
11422
|
+
# @!attribute [rw] capture_time
|
11423
|
+
# The time OpsItem data was captured.
|
11424
|
+
# @return [String]
|
11425
|
+
#
|
11351
11426
|
# @!attribute [rw] content
|
11352
11427
|
# The detailed data content for an OpsItem summaries result item.
|
11353
11428
|
# @return [Array<Hash<String,String>>]
|
@@ -11355,6 +11430,7 @@ module Aws::SSM
|
|
11355
11430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsEntityItem AWS API Documentation
|
11356
11431
|
#
|
11357
11432
|
class OpsEntityItem < Struct.new(
|
11433
|
+
:capture_time,
|
11358
11434
|
:content)
|
11359
11435
|
include Aws::Structure
|
11360
11436
|
end
|
@@ -11497,6 +11573,15 @@ module Aws::SSM
|
|
11497
11573
|
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems
|
11498
11574
|
# @return [Hash<String,Types::OpsItemDataValue>]
|
11499
11575
|
#
|
11576
|
+
# @!attribute [rw] category
|
11577
|
+
# An OpsItem category. Category options include: Availability, Cost,
|
11578
|
+
# Performance, Recovery, Security.
|
11579
|
+
# @return [String]
|
11580
|
+
#
|
11581
|
+
# @!attribute [rw] severity
|
11582
|
+
# The severity of the OpsItem. Severity options range from 1 to 4.
|
11583
|
+
# @return [String]
|
11584
|
+
#
|
11500
11585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsItem AWS API Documentation
|
11501
11586
|
#
|
11502
11587
|
class OpsItem < Struct.new(
|
@@ -11513,7 +11598,9 @@ module Aws::SSM
|
|
11513
11598
|
:version,
|
11514
11599
|
:title,
|
11515
11600
|
:source,
|
11516
|
-
:operational_data
|
11601
|
+
:operational_data,
|
11602
|
+
:category,
|
11603
|
+
:severity)
|
11517
11604
|
include Aws::Structure
|
11518
11605
|
end
|
11519
11606
|
|
@@ -11567,7 +11654,7 @@ module Aws::SSM
|
|
11567
11654
|
# data as a hash:
|
11568
11655
|
#
|
11569
11656
|
# {
|
11570
|
-
# key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId
|
11657
|
+
# key: "Status", # required, accepts Status, CreatedBy, Source, Priority, Title, OpsItemId, CreatedTime, LastModifiedTime, OperationalData, OperationalDataKey, OperationalDataValue, ResourceId, AutomationId, Category, Severity
|
11571
11658
|
# values: ["OpsItemFilterValue"], # required
|
11572
11659
|
# operator: "Equal", # required, accepts Equal, Contains, GreaterThan, LessThan
|
11573
11660
|
# }
|
@@ -11721,6 +11808,14 @@ module Aws::SSM
|
|
11721
11808
|
# details about the OpsItem.
|
11722
11809
|
# @return [Hash<String,Types::OpsItemDataValue>]
|
11723
11810
|
#
|
11811
|
+
# @!attribute [rw] category
|
11812
|
+
# A list of OpsItems by category.
|
11813
|
+
# @return [String]
|
11814
|
+
#
|
11815
|
+
# @!attribute [rw] severity
|
11816
|
+
# A list of OpsItems by severity.
|
11817
|
+
# @return [String]
|
11818
|
+
#
|
11724
11819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsItemSummary AWS API Documentation
|
11725
11820
|
#
|
11726
11821
|
class OpsItemSummary < Struct.new(
|
@@ -11733,7 +11828,31 @@ module Aws::SSM
|
|
11733
11828
|
:status,
|
11734
11829
|
:ops_item_id,
|
11735
11830
|
:title,
|
11736
|
-
:operational_data
|
11831
|
+
:operational_data,
|
11832
|
+
:category,
|
11833
|
+
:severity)
|
11834
|
+
include Aws::Structure
|
11835
|
+
end
|
11836
|
+
|
11837
|
+
# The OpsItem data type to return.
|
11838
|
+
#
|
11839
|
+
# @note When making an API call, you may pass OpsResultAttribute
|
11840
|
+
# data as a hash:
|
11841
|
+
#
|
11842
|
+
# {
|
11843
|
+
# type_name: "OpsDataTypeName", # required
|
11844
|
+
# }
|
11845
|
+
#
|
11846
|
+
# @!attribute [rw] type_name
|
11847
|
+
# Name of the data type. Valid value: AWS:OpsItem,
|
11848
|
+
# AWS:EC2InstanceInformation, AWS:OpsItemTrendline, or
|
11849
|
+
# AWS:ComplianceSummary.
|
11850
|
+
# @return [String]
|
11851
|
+
#
|
11852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsResultAttribute AWS API Documentation
|
11853
|
+
#
|
11854
|
+
class OpsResultAttribute < Struct.new(
|
11855
|
+
:type_name)
|
11737
11856
|
include Aws::Structure
|
11738
11857
|
end
|
11739
11858
|
|
@@ -13642,6 +13761,43 @@ module Aws::SSM
|
|
13642
13761
|
include Aws::Structure
|
13643
13762
|
end
|
13644
13763
|
|
13764
|
+
# Information about the AwsOrganizationsSource resource data sync
|
13765
|
+
# source. A sync source of this type can synchronize data from AWS
|
13766
|
+
# Organizations or, if an AWS Organization is not present, from multiple
|
13767
|
+
# AWS Regions.
|
13768
|
+
#
|
13769
|
+
# @note When making an API call, you may pass ResourceDataSyncAwsOrganizationsSource
|
13770
|
+
# data as a hash:
|
13771
|
+
#
|
13772
|
+
# {
|
13773
|
+
# organization_source_type: "ResourceDataSyncOrganizationSourceType", # required
|
13774
|
+
# organizational_units: [
|
13775
|
+
# {
|
13776
|
+
# organizational_unit_id: "ResourceDataSyncOrganizationalUnitId",
|
13777
|
+
# },
|
13778
|
+
# ],
|
13779
|
+
# }
|
13780
|
+
#
|
13781
|
+
# @!attribute [rw] organization_source_type
|
13782
|
+
# If an AWS Organization is present, this is either
|
13783
|
+
# `OrganizationalUnits` or `EntireOrganization`. For
|
13784
|
+
# `OrganizationalUnits`, the data is aggregated from a set of
|
13785
|
+
# organization units. For `EntireOrganization`, the data is aggregated
|
13786
|
+
# from the entire AWS Organization.
|
13787
|
+
# @return [String]
|
13788
|
+
#
|
13789
|
+
# @!attribute [rw] organizational_units
|
13790
|
+
# The AWS Organizations organization units included in the sync.
|
13791
|
+
# @return [Array<Types::ResourceDataSyncOrganizationalUnit>]
|
13792
|
+
#
|
13793
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncAwsOrganizationsSource AWS API Documentation
|
13794
|
+
#
|
13795
|
+
class ResourceDataSyncAwsOrganizationsSource < Struct.new(
|
13796
|
+
:organization_source_type,
|
13797
|
+
:organizational_units)
|
13798
|
+
include Aws::Structure
|
13799
|
+
end
|
13800
|
+
|
13645
13801
|
# You have exceeded the allowed maximum sync configurations.
|
13646
13802
|
#
|
13647
13803
|
# @!attribute [rw] message
|
@@ -13673,6 +13829,18 @@ module Aws::SSM
|
|
13673
13829
|
# The name of the Resource Data Sync.
|
13674
13830
|
# @return [String]
|
13675
13831
|
#
|
13832
|
+
# @!attribute [rw] sync_type
|
13833
|
+
# The type of resource data sync. If `SyncType` is
|
13834
|
+
# `SyncToDestination`, then the resource data sync synchronizes data
|
13835
|
+
# to an Amazon S3 bucket. If the `SyncType` is `SyncFromSource` then
|
13836
|
+
# the resource data sync synchronizes data from AWS Organizations or
|
13837
|
+
# from multiple AWS Regions.
|
13838
|
+
# @return [String]
|
13839
|
+
#
|
13840
|
+
# @!attribute [rw] sync_source
|
13841
|
+
# Information about the source where the data was synchronized.
|
13842
|
+
# @return [Types::ResourceDataSyncSourceWithState]
|
13843
|
+
#
|
13676
13844
|
# @!attribute [rw] s3_destination
|
13677
13845
|
# Configuration information for the target Amazon S3 bucket.
|
13678
13846
|
# @return [Types::ResourceDataSyncS3Destination]
|
@@ -13686,6 +13854,10 @@ module Aws::SSM
|
|
13686
13854
|
# (UTC).
|
13687
13855
|
# @return [Time]
|
13688
13856
|
#
|
13857
|
+
# @!attribute [rw] sync_last_modified_time
|
13858
|
+
# The date and time the resource data sync was changed.
|
13859
|
+
# @return [Time]
|
13860
|
+
#
|
13689
13861
|
# @!attribute [rw] last_status
|
13690
13862
|
# The status reported by the last sync.
|
13691
13863
|
# @return [String]
|
@@ -13702,9 +13874,12 @@ module Aws::SSM
|
|
13702
13874
|
#
|
13703
13875
|
class ResourceDataSyncItem < Struct.new(
|
13704
13876
|
:sync_name,
|
13877
|
+
:sync_type,
|
13878
|
+
:sync_source,
|
13705
13879
|
:s3_destination,
|
13706
13880
|
:last_sync_time,
|
13707
13881
|
:last_successful_sync_time,
|
13882
|
+
:sync_last_modified_time,
|
13708
13883
|
:last_status,
|
13709
13884
|
:sync_created_time,
|
13710
13885
|
:last_sync_status_message)
|
@@ -13716,10 +13891,38 @@ module Aws::SSM
|
|
13716
13891
|
# @!attribute [rw] sync_name
|
13717
13892
|
# @return [String]
|
13718
13893
|
#
|
13894
|
+
# @!attribute [rw] sync_type
|
13895
|
+
# @return [String]
|
13896
|
+
#
|
13897
|
+
# @!attribute [rw] message
|
13898
|
+
# @return [String]
|
13899
|
+
#
|
13719
13900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncNotFoundException AWS API Documentation
|
13720
13901
|
#
|
13721
13902
|
class ResourceDataSyncNotFoundException < Struct.new(
|
13722
|
-
:sync_name
|
13903
|
+
:sync_name,
|
13904
|
+
:sync_type,
|
13905
|
+
:message)
|
13906
|
+
include Aws::Structure
|
13907
|
+
end
|
13908
|
+
|
13909
|
+
# The AWS Organizations organizational unit data source for the sync.
|
13910
|
+
#
|
13911
|
+
# @note When making an API call, you may pass ResourceDataSyncOrganizationalUnit
|
13912
|
+
# data as a hash:
|
13913
|
+
#
|
13914
|
+
# {
|
13915
|
+
# organizational_unit_id: "ResourceDataSyncOrganizationalUnitId",
|
13916
|
+
# }
|
13917
|
+
#
|
13918
|
+
# @!attribute [rw] organizational_unit_id
|
13919
|
+
# The AWS Organization unit ID data source for the sync.
|
13920
|
+
# @return [String]
|
13921
|
+
#
|
13922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncOrganizationalUnit AWS API Documentation
|
13923
|
+
#
|
13924
|
+
class ResourceDataSyncOrganizationalUnit < Struct.new(
|
13925
|
+
:organizational_unit_id)
|
13723
13926
|
include Aws::Structure
|
13724
13927
|
end
|
13725
13928
|
|
@@ -13772,6 +13975,119 @@ module Aws::SSM
|
|
13772
13975
|
include Aws::Structure
|
13773
13976
|
end
|
13774
13977
|
|
13978
|
+
# Information about the source of the data included in the resource data
|
13979
|
+
# sync.
|
13980
|
+
#
|
13981
|
+
# @note When making an API call, you may pass ResourceDataSyncSource
|
13982
|
+
# data as a hash:
|
13983
|
+
#
|
13984
|
+
# {
|
13985
|
+
# source_type: "ResourceDataSyncSourceType", # required
|
13986
|
+
# aws_organizations_source: {
|
13987
|
+
# organization_source_type: "ResourceDataSyncOrganizationSourceType", # required
|
13988
|
+
# organizational_units: [
|
13989
|
+
# {
|
13990
|
+
# organizational_unit_id: "ResourceDataSyncOrganizationalUnitId",
|
13991
|
+
# },
|
13992
|
+
# ],
|
13993
|
+
# },
|
13994
|
+
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
13995
|
+
# include_future_regions: false,
|
13996
|
+
# }
|
13997
|
+
#
|
13998
|
+
# @!attribute [rw] source_type
|
13999
|
+
# The type of data source for the resource data sync. `SourceType` is
|
14000
|
+
# either `AwsOrganizations` (if an organization is present in AWS
|
14001
|
+
# Organizations) or `singleAccountMultiRegions`.
|
14002
|
+
# @return [String]
|
14003
|
+
#
|
14004
|
+
# @!attribute [rw] aws_organizations_source
|
14005
|
+
# The field name in `SyncSource` for the
|
14006
|
+
# `ResourceDataSyncAwsOrganizationsSource` type.
|
14007
|
+
# @return [Types::ResourceDataSyncAwsOrganizationsSource]
|
14008
|
+
#
|
14009
|
+
# @!attribute [rw] source_regions
|
14010
|
+
# The `SyncSource` AWS Regions included in the resource data sync.
|
14011
|
+
# @return [Array<String>]
|
14012
|
+
#
|
14013
|
+
# @!attribute [rw] include_future_regions
|
14014
|
+
# Whether to automatically synchronize and aggregate data from new AWS
|
14015
|
+
# Regions when those Regions come online.
|
14016
|
+
# @return [Boolean]
|
14017
|
+
#
|
14018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncSource AWS API Documentation
|
14019
|
+
#
|
14020
|
+
class ResourceDataSyncSource < Struct.new(
|
14021
|
+
:source_type,
|
14022
|
+
:aws_organizations_source,
|
14023
|
+
:source_regions,
|
14024
|
+
:include_future_regions)
|
14025
|
+
include Aws::Structure
|
14026
|
+
end
|
14027
|
+
|
14028
|
+
# The data type name for including resource data sync state. There are
|
14029
|
+
# four sync states:
|
14030
|
+
#
|
14031
|
+
# `OrganizationNotExists` (Your organization doesn't exist)
|
14032
|
+
#
|
14033
|
+
# `NoPermissions` (The system can't locate the service-linked role.
|
14034
|
+
# This role is automatically created when a user creates a resource data
|
14035
|
+
# sync in Explorer.)
|
14036
|
+
#
|
14037
|
+
# `InvalidOrganizationalUnit` (You specified or selected an invalid unit
|
14038
|
+
# in the resource data sync configuration.)
|
14039
|
+
#
|
14040
|
+
# `TrustedAccessDisabled` (You disabled Systems Manager access in the
|
14041
|
+
# organization in AWS Organizations.)
|
14042
|
+
#
|
14043
|
+
# @!attribute [rw] source_type
|
14044
|
+
# The type of data source for the resource data sync. `SourceType` is
|
14045
|
+
# either `AwsOrganizations` (if an organization is present in AWS
|
14046
|
+
# Organizations) or `singleAccountMultiRegions`.
|
14047
|
+
# @return [String]
|
14048
|
+
#
|
14049
|
+
# @!attribute [rw] aws_organizations_source
|
14050
|
+
# The field name in `SyncSource` for the
|
14051
|
+
# `ResourceDataSyncAwsOrganizationsSource` type.
|
14052
|
+
# @return [Types::ResourceDataSyncAwsOrganizationsSource]
|
14053
|
+
#
|
14054
|
+
# @!attribute [rw] source_regions
|
14055
|
+
# The `SyncSource` AWS Regions included in the resource data sync.
|
14056
|
+
# @return [Array<String>]
|
14057
|
+
#
|
14058
|
+
# @!attribute [rw] include_future_regions
|
14059
|
+
# Whether to automatically synchronize and aggregate data from new AWS
|
14060
|
+
# Regions when those Regions come online.
|
14061
|
+
# @return [Boolean]
|
14062
|
+
#
|
14063
|
+
# @!attribute [rw] state
|
14064
|
+
# The data type name for including resource data sync state. There are
|
14065
|
+
# four sync states:
|
14066
|
+
#
|
14067
|
+
# `OrganizationNotExists`\: Your organization doesn't exist.
|
14068
|
+
#
|
14069
|
+
# `NoPermissions`\: The system can't locate the service-linked role.
|
14070
|
+
# This role is automatically created when a user creates a resource
|
14071
|
+
# data sync in Explorer.
|
14072
|
+
#
|
14073
|
+
# `InvalidOrganizationalUnit`\: You specified or selected an invalid
|
14074
|
+
# unit in the resource data sync configuration.
|
14075
|
+
#
|
14076
|
+
# `TrustedAccessDisabled`\: You disabled Systems Manager access in the
|
14077
|
+
# organization in AWS Organizations.
|
14078
|
+
# @return [String]
|
14079
|
+
#
|
14080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncSourceWithState AWS API Documentation
|
14081
|
+
#
|
14082
|
+
class ResourceDataSyncSourceWithState < Struct.new(
|
14083
|
+
:source_type,
|
14084
|
+
:aws_organizations_source,
|
14085
|
+
:source_regions,
|
14086
|
+
:include_future_regions,
|
14087
|
+
:state)
|
14088
|
+
include Aws::Structure
|
14089
|
+
end
|
14090
|
+
|
13775
14091
|
# Error returned if an attempt is made to delete a patch baseline that
|
13776
14092
|
# is registered for a patch group.
|
13777
14093
|
#
|
@@ -14971,10 +15287,22 @@ module Aws::SSM
|
|
14971
15287
|
# * (Maintenance window targets only)
|
14972
15288
|
# `Key=resource-groups:Name,Values=ProductionResourceGroup`
|
14973
15289
|
#
|
15290
|
+
# This example demonstrates how to target all resources in the
|
15291
|
+
# resource group **ProductionResourceGroup** in your maintenance
|
15292
|
+
# window.
|
15293
|
+
#
|
14974
15294
|
# * (Maintenance window targets only)
|
14975
15295
|
# `Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC
|
14976
15296
|
# `
|
14977
15297
|
#
|
15298
|
+
# This example demonstrates how to target only Amazon EC2 instances
|
15299
|
+
# and VPCs in your maintenance window.
|
15300
|
+
#
|
15301
|
+
# * (State Manager association targets only) `Key=InstanceIds,Values=* `
|
15302
|
+
#
|
15303
|
+
# This example demonstrates how to target all managed instances in the
|
15304
|
+
# AWS Region where the association was created.
|
15305
|
+
#
|
14978
15306
|
# For information about how to send commands that target instances using
|
14979
15307
|
# `Key,Value` parameters, see [Using Targets and Rate Controls to Send
|
14980
15308
|
# Commands to a Fleet][1] in the *AWS Systems Manager User Guide*.
|
@@ -16190,6 +16518,8 @@ module Aws::SSM
|
|
16190
16518
|
# status: "Open", # accepts Open, InProgress, Resolved
|
16191
16519
|
# ops_item_id: "OpsItemId", # required
|
16192
16520
|
# title: "OpsItemTitle",
|
16521
|
+
# category: "OpsItemCategory",
|
16522
|
+
# severity: "OpsItemSeverity",
|
16193
16523
|
# }
|
16194
16524
|
#
|
16195
16525
|
# @!attribute [rw] description
|
@@ -16271,6 +16601,14 @@ module Aws::SSM
|
|
16271
16601
|
# impacted resource.
|
16272
16602
|
# @return [String]
|
16273
16603
|
#
|
16604
|
+
# @!attribute [rw] category
|
16605
|
+
# Specify a new category for an OpsItem.
|
16606
|
+
# @return [String]
|
16607
|
+
#
|
16608
|
+
# @!attribute [rw] severity
|
16609
|
+
# Specify a new severity for an OpsItem.
|
16610
|
+
# @return [String]
|
16611
|
+
#
|
16274
16612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateOpsItemRequest AWS API Documentation
|
16275
16613
|
#
|
16276
16614
|
class UpdateOpsItemRequest < Struct.new(
|
@@ -16282,7 +16620,9 @@ module Aws::SSM
|
|
16282
16620
|
:related_ops_items,
|
16283
16621
|
:status,
|
16284
16622
|
:ops_item_id,
|
16285
|
-
:title
|
16623
|
+
:title,
|
16624
|
+
:category,
|
16625
|
+
:severity)
|
16286
16626
|
include Aws::Structure
|
16287
16627
|
end
|
16288
16628
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|