Skip to content

Commit

Permalink
Release v1.43.29 (2022-03-30) (#4342)
Browse files Browse the repository at this point in the history
Release v1.43.29 (2022-03-30)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
  * This release simplifies the auto-recovery configuration process enabling customers to set the recovery behavior to disabled or default
* `service/fms`: Updates service API, documentation, and paginators
* `service/fsx`: Updates service API and documentation
* `service/iot`: Updates service documentation
  * Doc only update for IoT that fixes customer-reported issues.
* `service/iot-data`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Mar 30, 2022
1 parent ceb8a6c commit 360c58a
Show file tree
Hide file tree
Showing 21 changed files with 2,545 additions and 234 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release v1.43.29 (2022-03-30)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
* This release simplifies the auto-recovery configuration process enabling customers to set the recovery behavior to disabled or default
* `service/fms`: Updates service API, documentation, and paginators
* `service/fsx`: Updates service API and documentation
* `service/iot`: Updates service documentation
* Doc only update for IoT that fixes customer-reported issues.
* `service/iot-data`: Updates service API and documentation

Release v1.43.28 (2022-03-29)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.43.28"
const SDKVersion = "1.43.29"
89 changes: 87 additions & 2 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3752,6 +3752,15 @@
"input":{"shape":"ModifyInstanceEventWindowRequest"},
"output":{"shape":"ModifyInstanceEventWindowResult"}
},
"ModifyInstanceMaintenanceOptions":{
"name":"ModifyInstanceMaintenanceOptions",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ModifyInstanceMaintenanceOptionsRequest"},
"output":{"shape":"ModifyInstanceMaintenanceOptionsResult"}
},
"ModifyInstanceMetadataOptions":{
"name":"ModifyInstanceMetadataOptions",
"http":{
Expand Down Expand Up @@ -22355,6 +22364,10 @@
"Ipv6Address":{
"shape":"String",
"locationName":"ipv6Address"
},
"MaintenanceOptions":{
"shape":"InstanceMaintenanceOptions",
"locationName":"maintenanceOptions"
}
}
},
Expand Down Expand Up @@ -22447,6 +22460,13 @@
"enclaveOptions"
]
},
"InstanceAutoRecoveryState":{
"type":"string",
"enum":[
"disabled",
"default"
]
},
"InstanceBlockDeviceMapping":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -22896,6 +22916,21 @@
"locationName":"item"
}
},
"InstanceMaintenanceOptions":{
"type":"structure",
"members":{
"AutoRecovery":{
"shape":"InstanceAutoRecoveryState",
"locationName":"autoRecovery"
}
}
},
"InstanceMaintenanceOptionsRequest":{
"type":"structure",
"members":{
"AutoRecovery":{"shape":"InstanceAutoRecoveryState"}
}
},
"InstanceMarketOptionsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -25518,6 +25553,13 @@
}
}
},
"LaunchTemplateAutoRecoveryState":{
"type":"string",
"enum":[
"default",
"disabled"
]
},
"LaunchTemplateBlockDeviceMapping":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -25787,6 +25829,21 @@
"locationName":"item"
}
},
"LaunchTemplateInstanceMaintenanceOptions":{
"type":"structure",
"members":{
"AutoRecovery":{
"shape":"LaunchTemplateAutoRecoveryState",
"locationName":"autoRecovery"
}
}
},
"LaunchTemplateInstanceMaintenanceOptionsRequest":{
"type":"structure",
"members":{
"AutoRecovery":{"shape":"LaunchTemplateAutoRecoveryState"}
}
},
"LaunchTemplateInstanceMarketOptions":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -27453,6 +27510,28 @@
}
}
},
"ModifyInstanceMaintenanceOptionsRequest":{
"type":"structure",
"required":["InstanceId"],
"members":{
"InstanceId":{"shape":"InstanceId"},
"AutoRecovery":{"shape":"InstanceAutoRecoveryState"},
"DryRun":{"shape":"Boolean"}
}
},
"ModifyInstanceMaintenanceOptionsResult":{
"type":"structure",
"members":{
"InstanceId":{
"shape":"String",
"locationName":"instanceId"
},
"AutoRecovery":{
"shape":"InstanceAutoRecoveryState",
"locationName":"autoRecovery"
}
}
},
"ModifyInstanceMetadataOptionsRequest":{
"type":"structure",
"required":["InstanceId"],
Expand Down Expand Up @@ -31847,7 +31926,8 @@
"MetadataOptions":{"shape":"LaunchTemplateInstanceMetadataOptionsRequest"},
"EnclaveOptions":{"shape":"LaunchTemplateEnclaveOptionsRequest"},
"InstanceRequirements":{"shape":"InstanceRequirementsRequest"},
"PrivateDnsNameOptions":{"shape":"LaunchTemplatePrivateDnsNameOptionsRequest"}
"PrivateDnsNameOptions":{"shape":"LaunchTemplatePrivateDnsNameOptionsRequest"},
"MaintenanceOptions":{"shape":"LaunchTemplateInstanceMaintenanceOptionsRequest"}
}
},
"RequestSpotFleetRequest":{
Expand Down Expand Up @@ -32878,6 +32958,10 @@
"PrivateDnsNameOptions":{
"shape":"LaunchTemplatePrivateDnsNameOptions",
"locationName":"privateDnsNameOptions"
},
"MaintenanceOptions":{
"shape":"LaunchTemplateInstanceMaintenanceOptions",
"locationName":"maintenanceOptions"
}
}
},
Expand Down Expand Up @@ -33483,7 +33567,8 @@
},
"MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"},
"EnclaveOptions":{"shape":"EnclaveOptionsRequest"},
"PrivateDnsNameOptions":{"shape":"PrivateDnsNameOptionsRequest"}
"PrivateDnsNameOptions":{"shape":"PrivateDnsNameOptionsRequest"},
"MaintenanceOptions":{"shape":"InstanceMaintenanceOptionsRequest"}
}
},
"RunScheduledInstancesRequest":{
Expand Down
Loading

0 comments on commit 360c58a

Please sign in to comment.