aws-sdk-ssm 1.124.0 → 1.128.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +292 -246
- data/lib/aws-sdk-ssm/client_api.rb +13 -0
- data/lib/aws-sdk-ssm/types.rb +535 -483
- data/lib/aws-sdk-ssm.rb +1 -1
- metadata +4 -4
@@ -129,6 +129,9 @@ module Aws::SSM
|
|
129
129
|
CancelCommandResult = Shapes::StructureShape.new(name: 'CancelCommandResult')
|
130
130
|
CancelMaintenanceWindowExecutionRequest = Shapes::StructureShape.new(name: 'CancelMaintenanceWindowExecutionRequest')
|
131
131
|
CancelMaintenanceWindowExecutionResult = Shapes::StructureShape.new(name: 'CancelMaintenanceWindowExecutionResult')
|
132
|
+
Category = Shapes::StringShape.new(name: 'Category')
|
133
|
+
CategoryEnumList = Shapes::ListShape.new(name: 'CategoryEnumList')
|
134
|
+
CategoryList = Shapes::ListShape.new(name: 'CategoryList')
|
132
135
|
ChangeDetailsValue = Shapes::StringShape.new(name: 'ChangeDetailsValue')
|
133
136
|
ChangeRequestName = Shapes::StringShape.new(name: 'ChangeRequestName')
|
134
137
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
@@ -1063,6 +1066,8 @@ module Aws::SSM
|
|
1063
1066
|
SignalType = Shapes::StringShape.new(name: 'SignalType')
|
1064
1067
|
SnapshotDownloadUrl = Shapes::StringShape.new(name: 'SnapshotDownloadUrl')
|
1065
1068
|
SnapshotId = Shapes::StringShape.new(name: 'SnapshotId')
|
1069
|
+
SourceId = Shapes::StringShape.new(name: 'SourceId')
|
1070
|
+
SourceType = Shapes::StringShape.new(name: 'SourceType')
|
1066
1071
|
StandardErrorContent = Shapes::StringShape.new(name: 'StandardErrorContent')
|
1067
1072
|
StandardOutputContent = Shapes::StringShape.new(name: 'StandardOutputContent')
|
1068
1073
|
StartAssociationsOnceRequest = Shapes::StructureShape.new(name: 'StartAssociationsOnceRequest')
|
@@ -1490,6 +1495,10 @@ module Aws::SSM
|
|
1490
1495
|
CancelMaintenanceWindowExecutionResult.add_member(:window_execution_id, Shapes::ShapeRef.new(shape: MaintenanceWindowExecutionId, location_name: "WindowExecutionId"))
|
1491
1496
|
CancelMaintenanceWindowExecutionResult.struct_class = Types::CancelMaintenanceWindowExecutionResult
|
1492
1497
|
|
1498
|
+
CategoryEnumList.member = Shapes::ShapeRef.new(shape: Category)
|
1499
|
+
|
1500
|
+
CategoryList.member = Shapes::ShapeRef.new(shape: Category)
|
1501
|
+
|
1493
1502
|
CloudWatchOutputConfig.add_member(:cloud_watch_log_group_name, Shapes::ShapeRef.new(shape: CloudWatchLogGroupName, location_name: "CloudWatchLogGroupName"))
|
1494
1503
|
CloudWatchOutputConfig.add_member(:cloud_watch_output_enabled, Shapes::ShapeRef.new(shape: CloudWatchOutputEnabled, location_name: "CloudWatchOutputEnabled"))
|
1495
1504
|
CloudWatchOutputConfig.struct_class = Types::CloudWatchOutputConfig
|
@@ -2234,6 +2243,8 @@ module Aws::SSM
|
|
2234
2243
|
DocumentDescription.add_member(:approved_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "ApprovedVersion"))
|
2235
2244
|
DocumentDescription.add_member(:pending_review_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "PendingReviewVersion"))
|
2236
2245
|
DocumentDescription.add_member(:review_status, Shapes::ShapeRef.new(shape: ReviewStatus, location_name: "ReviewStatus"))
|
2246
|
+
DocumentDescription.add_member(:category, Shapes::ShapeRef.new(shape: CategoryList, location_name: "Category"))
|
2247
|
+
DocumentDescription.add_member(:category_enum, Shapes::ShapeRef.new(shape: CategoryEnumList, location_name: "CategoryEnum"))
|
2237
2248
|
DocumentDescription.struct_class = Types::DocumentDescription
|
2238
2249
|
|
2239
2250
|
DocumentFilter.add_member(:key, Shapes::ShapeRef.new(shape: DocumentFilterKey, required: true, location_name: "key"))
|
@@ -2727,6 +2738,8 @@ module Aws::SSM
|
|
2727
2738
|
InstanceInformation.add_member(:last_association_execution_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastAssociationExecutionDate"))
|
2728
2739
|
InstanceInformation.add_member(:last_successful_association_execution_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastSuccessfulAssociationExecutionDate"))
|
2729
2740
|
InstanceInformation.add_member(:association_overview, Shapes::ShapeRef.new(shape: InstanceAggregatedAssociationOverview, location_name: "AssociationOverview"))
|
2741
|
+
InstanceInformation.add_member(:source_id, Shapes::ShapeRef.new(shape: SourceId, location_name: "SourceId"))
|
2742
|
+
InstanceInformation.add_member(:source_type, Shapes::ShapeRef.new(shape: SourceType, location_name: "SourceType"))
|
2730
2743
|
InstanceInformation.struct_class = Types::InstanceInformation
|
2731
2744
|
|
2732
2745
|
InstanceInformationFilter.add_member(:key, Shapes::ShapeRef.new(shape: InstanceInformationFilterKey, required: true, location_name: "key"))
|