aws-sdk-ssm 1.123.0 → 1.127.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 +264 -246
- data/lib/aws-sdk-ssm/client_api.rb +16 -0
- data/lib/aws-sdk-ssm/types.rb +546 -486
- data/lib/aws-sdk-ssm.rb +1 -1
- metadata +4 -4
@@ -955,6 +955,10 @@ module Aws::SSM
|
|
955
955
|
RegisterTaskWithMaintenanceWindowRequest = Shapes::StructureShape.new(name: 'RegisterTaskWithMaintenanceWindowRequest')
|
956
956
|
RegisterTaskWithMaintenanceWindowResult = Shapes::StructureShape.new(name: 'RegisterTaskWithMaintenanceWindowResult')
|
957
957
|
RegistrationLimit = Shapes::IntegerShape.new(name: 'RegistrationLimit')
|
958
|
+
RegistrationMetadataItem = Shapes::StructureShape.new(name: 'RegistrationMetadataItem')
|
959
|
+
RegistrationMetadataKey = Shapes::StringShape.new(name: 'RegistrationMetadataKey')
|
960
|
+
RegistrationMetadataList = Shapes::ListShape.new(name: 'RegistrationMetadataList')
|
961
|
+
RegistrationMetadataValue = Shapes::StringShape.new(name: 'RegistrationMetadataValue')
|
958
962
|
RegistrationsCount = Shapes::IntegerShape.new(name: 'RegistrationsCount')
|
959
963
|
RelatedOpsItem = Shapes::StructureShape.new(name: 'RelatedOpsItem')
|
960
964
|
RelatedOpsItems = Shapes::ListShape.new(name: 'RelatedOpsItems')
|
@@ -1059,6 +1063,8 @@ module Aws::SSM
|
|
1059
1063
|
SignalType = Shapes::StringShape.new(name: 'SignalType')
|
1060
1064
|
SnapshotDownloadUrl = Shapes::StringShape.new(name: 'SnapshotDownloadUrl')
|
1061
1065
|
SnapshotId = Shapes::StringShape.new(name: 'SnapshotId')
|
1066
|
+
SourceId = Shapes::StringShape.new(name: 'SourceId')
|
1067
|
+
SourceType = Shapes::StringShape.new(name: 'SourceType')
|
1062
1068
|
StandardErrorContent = Shapes::StringShape.new(name: 'StandardErrorContent')
|
1063
1069
|
StandardOutputContent = Shapes::StringShape.new(name: 'StandardOutputContent')
|
1064
1070
|
StartAssociationsOnceRequest = Shapes::StructureShape.new(name: 'StartAssociationsOnceRequest')
|
@@ -1623,6 +1629,7 @@ module Aws::SSM
|
|
1623
1629
|
CreateActivationRequest.add_member(:registration_limit, Shapes::ShapeRef.new(shape: RegistrationLimit, location_name: "RegistrationLimit", metadata: {"box"=>true}))
|
1624
1630
|
CreateActivationRequest.add_member(:expiration_date, Shapes::ShapeRef.new(shape: ExpirationDate, location_name: "ExpirationDate"))
|
1625
1631
|
CreateActivationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1632
|
+
CreateActivationRequest.add_member(:registration_metadata, Shapes::ShapeRef.new(shape: RegistrationMetadataList, location_name: "RegistrationMetadata"))
|
1626
1633
|
CreateActivationRequest.struct_class = Types::CreateActivationRequest
|
1627
1634
|
|
1628
1635
|
CreateActivationResult.add_member(:activation_id, Shapes::ShapeRef.new(shape: ActivationId, location_name: "ActivationId"))
|
@@ -2722,6 +2729,8 @@ module Aws::SSM
|
|
2722
2729
|
InstanceInformation.add_member(:last_association_execution_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastAssociationExecutionDate"))
|
2723
2730
|
InstanceInformation.add_member(:last_successful_association_execution_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastSuccessfulAssociationExecutionDate"))
|
2724
2731
|
InstanceInformation.add_member(:association_overview, Shapes::ShapeRef.new(shape: InstanceAggregatedAssociationOverview, location_name: "AssociationOverview"))
|
2732
|
+
InstanceInformation.add_member(:source_id, Shapes::ShapeRef.new(shape: SourceId, location_name: "SourceId"))
|
2733
|
+
InstanceInformation.add_member(:source_type, Shapes::ShapeRef.new(shape: SourceType, location_name: "SourceType"))
|
2725
2734
|
InstanceInformation.struct_class = Types::InstanceInformation
|
2726
2735
|
|
2727
2736
|
InstanceInformationFilter.add_member(:key, Shapes::ShapeRef.new(shape: InstanceInformationFilterKey, required: true, location_name: "key"))
|
@@ -3901,6 +3910,12 @@ module Aws::SSM
|
|
3901
3910
|
RegisterTaskWithMaintenanceWindowResult.add_member(:window_task_id, Shapes::ShapeRef.new(shape: MaintenanceWindowTaskId, location_name: "WindowTaskId"))
|
3902
3911
|
RegisterTaskWithMaintenanceWindowResult.struct_class = Types::RegisterTaskWithMaintenanceWindowResult
|
3903
3912
|
|
3913
|
+
RegistrationMetadataItem.add_member(:key, Shapes::ShapeRef.new(shape: RegistrationMetadataKey, required: true, location_name: "Key"))
|
3914
|
+
RegistrationMetadataItem.add_member(:value, Shapes::ShapeRef.new(shape: RegistrationMetadataValue, required: true, location_name: "Value"))
|
3915
|
+
RegistrationMetadataItem.struct_class = Types::RegistrationMetadataItem
|
3916
|
+
|
3917
|
+
RegistrationMetadataList.member = Shapes::ShapeRef.new(shape: RegistrationMetadataItem)
|
3918
|
+
|
3904
3919
|
RelatedOpsItem.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OpsItemId"))
|
3905
3920
|
RelatedOpsItem.struct_class = Types::RelatedOpsItem
|
3906
3921
|
|
@@ -4600,6 +4615,7 @@ module Aws::SSM
|
|
4600
4615
|
o.http_request_uri = "/"
|
4601
4616
|
o.input = Shapes::ShapeRef.new(shape: CreateActivationRequest)
|
4602
4617
|
o.output = Shapes::ShapeRef.new(shape: CreateActivationResult)
|
4618
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameters)
|
4603
4619
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4604
4620
|
end)
|
4605
4621
|
|