Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.38.14 #3852

Merged
merged 1 commit into from Apr 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
Release v1.38.14 (2021-04-06)
===

### Service Client Updates
* `service/cloud9`: Updates service documentation
* Documentation updates for Cloud9
* `service/ec2`: Updates service API and documentation
* This release adds support for storing EBS-backed AMIs in S3 and restoring them from S3 to enable cross-partition copying of AMIs
* `service/medialive`: Updates service API and documentation
* MediaLive VPC outputs update to include Availability Zones, Security groups, Elastic Network Interfaces, and Subnet Ids in channel response
* `service/ssm`: Updates service API and documentation
* Supports removing a label or labels from a parameter, enables ScheduledEndTime and ChangeDetails for StartChangeRequestExecution API, supports critical/security/other noncompliant count for patch API.

Release v1.38.13 (2021-04-05)
===

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

// SDKVersion is the version of this SDK
const SDKVersion = "1.38.13"
const SDKVersion = "1.38.14"
2 changes: 1 addition & 1 deletion models/apis/cloud9/2017-09-23/docs-2.json
Expand Up @@ -232,7 +232,7 @@
"ImageId": {
"base": null,
"refs": {
"CreateEnvironmentEC2Request$imageId": "<p>The identifier for the Amazon Machine Image (AMI) that's used to create the EC2 instance. You can specify the AMI for the instance using an AMI alias or an AWS Systems Manager (SSM) path. The default AMI is used if the parameter isn't explicitly assigned a value in the request. </p> <p> <b>AMI aliases </b> </p> <ul> <li> <p>Amazon Linux 2: <code>amazonlinux-2-x86_64</code> </p> </li> <li> <p>Ubuntu 18.04: <code>ubuntu-18.04-x86_64</code> </p> </li> <li> <p>Amazon Linux (default): <code>amazonlinux-1-x86_64</code> </p> </li> </ul> <p> <b>SSM paths</b> </p> <ul> <li> <p>Amazon Linux 2: <code>resolve:ssm:/aws/service/cloud9/amis/amazonlinux-2-x86_64</code> </p> </li> <li> <p>Ubuntu 18.04: <code>resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64</code> </p> </li> <li> <p>Amazon Linux (default): <code>resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64</code> </p> </li> </ul>"
"CreateEnvironmentEC2Request$imageId": "<p>The identifier for the Amazon Machine Image (AMI) that's used to create the EC2 instance. To choose an AMI for the instance, you must specify a valid AMI alias or a valid AWS Systems Manager (SSM) path.</p> <p>The default AMI is used if the parameter isn't explicitly assigned a value in the request. </p> <p> <b>AMI aliases </b> </p> <ul> <li> <p> <b>Amazon Linux (default): <code>amazonlinux-1-x86_64</code> </b> </p> </li> <li> <p>Amazon Linux 2: <code>amazonlinux-2-x86_64</code> </p> </li> <li> <p>Ubuntu 18.04: <code>ubuntu-18.04-x86_64</code> </p> </li> </ul> <p> <b>SSM paths</b> </p> <ul> <li> <p> <b>Amazon Linux (default): <code>resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64</code> </b> </p> </li> <li> <p>Amazon Linux 2: <code>resolve:ssm:/aws/service/cloud9/amis/amazonlinux-2-x86_64</code> </p> </li> <li> <p>Ubuntu 18.04: <code>resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64</code> </p> </li> </ul>"
}
},
"InstanceType": {
Expand Down
185 changes: 179 additions & 6 deletions models/apis/ec2/2016-11-15/api-2.json
Expand Up @@ -662,6 +662,15 @@
"input":{"shape":"CreateReservedInstancesListingRequest"},
"output":{"shape":"CreateReservedInstancesListingResult"}
},
"CreateRestoreImageTask":{
"name":"CreateRestoreImageTask",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateRestoreImageTaskRequest"},
"output":{"shape":"CreateRestoreImageTaskResult"}
},
"CreateRoute":{
"name":"CreateRoute",
"http":{
Expand Down Expand Up @@ -716,6 +725,15 @@
"input":{"shape":"CreateSpotDatafeedSubscriptionRequest"},
"output":{"shape":"CreateSpotDatafeedSubscriptionResult"}
},
"CreateStoreImageTask":{
"name":"CreateStoreImageTask",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateStoreImageTaskRequest"},
"output":{"shape":"CreateStoreImageTaskResult"}
},
"CreateSubnet":{
"name":"CreateSubnet",
"http":{
Expand Down Expand Up @@ -2259,6 +2277,15 @@
"input":{"shape":"DescribeStaleSecurityGroupsRequest"},
"output":{"shape":"DescribeStaleSecurityGroupsResult"}
},
"DescribeStoreImageTasks":{
"name":"DescribeStoreImageTasks",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeStoreImageTasksRequest"},
"output":{"shape":"DescribeStoreImageTasksResult"}
},
"DescribeSubnets":{
"name":"DescribeSubnets",
"http":{
Expand Down Expand Up @@ -8323,6 +8350,32 @@
}
}
},
"CreateRestoreImageTaskRequest":{
"type":"structure",
"required":[
"Bucket",
"ObjectKey"
],
"members":{
"Bucket":{"shape":"String"},
"ObjectKey":{"shape":"String"},
"Name":{"shape":"String"},
"TagSpecifications":{
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
},
"DryRun":{"shape":"Boolean"}
}
},
"CreateRestoreImageTaskResult":{
"type":"structure",
"members":{
"ImageId":{
"shape":"String",
"locationName":"imageId"
}
}
},
"CreateRouteRequest":{
"type":"structure",
"required":["RouteTableId"],
Expand Down Expand Up @@ -8514,6 +8567,31 @@
}
}
},
"CreateStoreImageTaskRequest":{
"type":"structure",
"required":[
"ImageId",
"Bucket"
],
"members":{
"ImageId":{"shape":"ImageId"},
"Bucket":{"shape":"String"},
"S3ObjectTags":{
"shape":"S3ObjectTagList",
"locationName":"S3ObjectTag"
},
"DryRun":{"shape":"Boolean"}
}
},
"CreateStoreImageTaskResult":{
"type":"structure",
"members":{
"ObjectKey":{
"shape":"String",
"locationName":"objectKey"
}
}
},
"CreateSubnetRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -13481,6 +13559,40 @@
}
}
},
"DescribeStoreImageTasksRequest":{
"type":"structure",
"members":{
"ImageIds":{
"shape":"ImageIdList",
"locationName":"ImageId"
},
"DryRun":{"shape":"Boolean"},
"Filters":{
"shape":"FilterList",
"locationName":"Filter"
},
"NextToken":{"shape":"String"},
"MaxResults":{"shape":"DescribeStoreImageTasksRequestMaxResults"}
}
},
"DescribeStoreImageTasksRequestMaxResults":{
"type":"integer",
"max":200,
"min":1
},
"DescribeStoreImageTasksResult":{
"type":"structure",
"members":{
"StoreImageTaskResults":{
"shape":"StoreImageTaskResultSet",
"locationName":"storeImageTaskResultSet"
},
"NextToken":{
"shape":"String",
"locationName":"nextToken"
}
}
},
"DescribeSubnetsMaxResults":{
"type":"integer",
"max":1000,
Expand Down Expand Up @@ -18385,6 +18497,13 @@
}
},
"ImageId":{"type":"string"},
"ImageIdList":{
"type":"list",
"member":{
"shape":"ImageId",
"locationName":"item"
}
},
"ImageIdStringList":{
"type":"list",
"member":{
Expand Down Expand Up @@ -27914,6 +28033,20 @@
}
}
},
"S3ObjectTag":{
"type":"structure",
"members":{
"Key":{"shape":"String"},
"Value":{"shape":"String"}
}
},
"S3ObjectTagList":{
"type":"list",
"member":{
"shape":"S3ObjectTag",
"locationName":"item"
}
},
"S3Storage":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -29713,6 +29846,46 @@
"Key":{"shape":"String"}
}
},
"StoreImageTaskResult":{
"type":"structure",
"members":{
"AmiId":{
"shape":"String",
"locationName":"amiId"
},
"TaskStartTime":{
"shape":"MillisecondDateTime",
"locationName":"taskStartTime"
},
"Bucket":{
"shape":"String",
"locationName":"bucket"
},
"S3objectKey":{
"shape":"String",
"locationName":"s3objectKey"
},
"ProgressPercentage":{
"shape":"Integer",
"locationName":"progressPercentage"
},
"StoreTaskState":{
"shape":"String",
"locationName":"storeTaskState"
},
"StoreTaskFailureReason":{
"shape":"String",
"locationName":"storeTaskFailureReason"
}
}
},
"StoreImageTaskResultSet":{
"type":"list",
"member":{
"shape":"StoreImageTaskResult",
"locationName":"item"
}
},
"String":{"type":"string"},
"StringList":{
"type":"list",
Expand Down Expand Up @@ -31766,17 +31939,17 @@
"UnassignIpv6AddressesRequest":{
"type":"structure",
"required":[
"Ipv6Addresses",
"NetworkInterfaceId"
"NetworkInterfaceId",
"Ipv6Addresses"
],
"members":{
"Ipv6Addresses":{
"shape":"Ipv6AddressList",
"locationName":"ipv6Addresses"
},
"NetworkInterfaceId":{
"shape":"NetworkInterfaceId",
"locationName":"networkInterfaceId"
},
"Ipv6Addresses":{
"shape":"Ipv6AddressList",
"locationName":"ipv6Addresses"
}
}
},
Expand Down