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.16 #3854

Merged
merged 1 commit into from Apr 8, 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
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,17 @@
Release v1.38.16 (2021-04-08)
===

### Service Client Updates
* `service/appstream`: Updates service API and documentation
* This release provides support for image updates
* `service/autoscaling`: Updates service API, documentation, and examples
* Amazon EC2 Auto Scaling announces Warm Pools that help applications to scale out faster by pre-initializing EC2 instances and save money by requiring fewer continuously running instances
* `service/customer-profiles`: Updates service documentation
* `service/kinesis-video-archived-media`: Updates service documentation
* `service/lookoutequipment`: Adds new service
* `service/ram`: Updates service documentation
* `service/robomaker`: Updates service API and documentation

Release v1.38.15 (2021-04-07)
===

Expand Down
25 changes: 24 additions & 1 deletion aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.15"
const SDKVersion = "1.38.16"
47 changes: 45 additions & 2 deletions models/apis/appstream/2016-12-01/api-2.json
Expand Up @@ -180,6 +180,24 @@
{"shape":"InvalidParameterCombinationException"}
]
},
"CreateUpdatedImage":{
"name":"CreateUpdatedImage",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateUpdatedImageRequest"},
"output":{"shape":"CreateUpdatedImageResult"},
"errors":[
{"shape":"LimitExceededException"},
{"shape":"InvalidAccountStatusException"},
{"shape":"OperationNotPermittedException"},
{"shape":"ResourceAlreadyExistsException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ConcurrentModificationException"},
{"shape":"IncompatibleImageException"}
]
},
"CreateUsageReportSubscription":{
"name":"CreateUsageReportSubscription",
"http":{
Expand Down Expand Up @@ -1015,6 +1033,28 @@
"Expires":{"shape":"Timestamp"}
}
},
"CreateUpdatedImageRequest":{
"type":"structure",
"required":[
"existingImageName",
"newImageName"
],
"members":{
"existingImageName":{"shape":"Name"},
"newImageName":{"shape":"Name"},
"newImageDescription":{"shape":"Description"},
"newImageDisplayName":{"shape":"DisplayName"},
"newImageTags":{"shape":"Tags"},
"dryRun":{"shape":"Boolean"}
}
},
"CreateUpdatedImageResult":{
"type":"structure",
"members":{
"image":{"shape":"Image"},
"canUpdateImage":{"shape":"Boolean"}
}
},
"CreateUsageReportSubscriptionRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1568,7 +1608,8 @@
"CreatedTime":{"shape":"Timestamp"},
"PublicBaseImageReleasedDate":{"shape":"Timestamp"},
"AppstreamAgentVersion":{"shape":"AppstreamAgentVersion"},
"ImagePermissions":{"shape":"ImagePermissions"}
"ImagePermissions":{"shape":"ImagePermissions"},
"ImageErrors":{"shape":"ResourceErrors"}
}
},
"ImageBuilder":{
Expand Down Expand Up @@ -1610,7 +1651,9 @@
"REBOOTING",
"SNAPSHOTTING",
"DELETING",
"FAILED"
"FAILED",
"UPDATING",
"PENDING_QUALIFICATION"
]
},
"ImageBuilderStateChangeReason":{
Expand Down
22 changes: 21 additions & 1 deletion models/apis/appstream/2016-12-01/docs-2.json
Expand Up @@ -12,6 +12,7 @@
"CreateImageBuilderStreamingURL": "<p>Creates a URL to start an image builder streaming session.</p>",
"CreateStack": "<p>Creates a stack to start streaming applications to users. A stack consists of an associated fleet, user access policies, and storage configurations. </p>",
"CreateStreamingURL": "<p>Creates a temporary URL to start an AppStream 2.0 streaming session for the specified user. A streaming URL enables application streaming to be tested without user setup. </p>",
"CreateUpdatedImage": "<p>Creates a new image with the latest Windows operating system updates, driver updates, and AppStream 2.0 agent software.</p> <p>For more information, see the \"Update an Image by Using Managed AppStream 2.0 Image Updates\" section in <a href=\"https://docs.aws.amazon.com/appstream2/latest/developerguide/administer-images.html\">Administer Your AppStream 2.0 Images</a>, in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>",
"CreateUsageReportSubscription": "<p>Creates a usage report subscription. Usage reports are generated daily.</p>",
"CreateUser": "<p>Creates a new user in the user pool.</p>",
"DeleteDirectoryConfig": "<p>Deletes the specified Directory Config object from AppStream 2.0. This object includes the information required to join streaming instances to an Active Directory domain.</p>",
Expand Down Expand Up @@ -222,6 +223,8 @@
"Application$Enabled": "<p>If there is a problem, the application can be disabled after image creation.</p>",
"ApplicationSettings$Enabled": "<p>Enables or disables persistent application settings for users during their streaming sessions. </p>",
"ApplicationSettingsResponse$Enabled": "<p>Specifies whether persistent application settings are enabled for users during their streaming sessions.</p>",
"CreateUpdatedImageRequest$dryRun": "<p>Indicates whether to display the status of image update availability before AppStream 2.0 initiates the process of creating a new updated image. If this value is set to <code>true</code>, AppStream 2.0 displays whether image updates are available. If this value is set to <code>false</code>, AppStream 2.0 initiates the process of creating a new updated image without displaying whether image updates are available.</p>",
"CreateUpdatedImageResult$canUpdateImage": "<p>Indicates whether a new image can be created.</p>",
"Image$ImageBuilderSupported": "<p>Indicates whether an image builder can be launched from this image.</p>",
"UpdateFleetRequest$DeleteVpcConfig": "<p>Deletes the VPC association for the specified fleet.</p>",
"UpdateStackRequest$DeleteStorageConnectors": "<p>Deletes the storage connectors currently enabled for the stack.</p>",
Expand Down Expand Up @@ -329,6 +332,16 @@
"refs": {
}
},
"CreateUpdatedImageRequest": {
"base": null,
"refs": {
}
},
"CreateUpdatedImageResult": {
"base": null,
"refs": {
}
},
"CreateUsageReportSubscriptionRequest": {
"base": null,
"refs": {
Expand Down Expand Up @@ -542,6 +555,7 @@
"CreateFleetRequest$Description": "<p>The description to display.</p>",
"CreateImageBuilderRequest$Description": "<p>The description to display.</p>",
"CreateStackRequest$Description": "<p>The description to display.</p>",
"CreateUpdatedImageRequest$newImageDescription": "<p>The description to display for the new image.</p>",
"UpdateFleetRequest$Description": "<p>The description to display.</p>",
"UpdateStackRequest$Description": "<p>The description to display.</p>"
}
Expand Down Expand Up @@ -603,6 +617,7 @@
"CreateFleetRequest$DisplayName": "<p>The fleet name to display.</p>",
"CreateImageBuilderRequest$DisplayName": "<p>The image builder name to display.</p>",
"CreateStackRequest$DisplayName": "<p>The stack name to display.</p>",
"CreateUpdatedImageRequest$newImageDisplayName": "<p>The name to display for the new image.</p>",
"UpdateFleetRequest$DisplayName": "<p>The fleet name to display.</p>",
"UpdateStackRequest$DisplayName": "<p>The stack name to display.</p>"
}
Expand Down Expand Up @@ -749,6 +764,7 @@
"Image": {
"base": "<p>Describes an image.</p>",
"refs": {
"CreateUpdatedImageResult$image": null,
"DeleteImageResult$Image": "<p>Information about the image.</p>",
"ImageList$member": null
}
Expand Down Expand Up @@ -820,7 +836,7 @@
}
},
"IncompatibleImageException": {
"base": "<p>The image does not support storage connectors.</p>",
"base": "<p>The image can't be updated because it's not compatible for updates.</p>",
"refs": {
}
},
Expand Down Expand Up @@ -945,6 +961,8 @@
"CreateFleetRequest$Name": "<p>A unique name for the fleet.</p>",
"CreateImageBuilderRequest$Name": "<p>A unique name for the image builder.</p>",
"CreateStackRequest$Name": "<p>The name of the stack.</p>",
"CreateUpdatedImageRequest$existingImageName": "<p>The name of the image to update.</p>",
"CreateUpdatedImageRequest$newImageName": "<p>The name of the new image. The name must be unique within the AWS account and Region.</p>",
"DeleteImageBuilderRequest$Name": "<p>The name of the image builder.</p>",
"DeleteImagePermissionsRequest$Name": "<p>The name of the private image.</p>",
"DeleteImageRequest$Name": "<p>The name of the image.</p>",
Expand Down Expand Up @@ -1026,6 +1044,7 @@
"ResourceErrors": {
"base": null,
"refs": {
"Image$ImageErrors": "<p>Describes the errors that are returned when a new image can't be created.</p>",
"ImageBuilder$ImageBuilderErrors": "<p>The image builder errors.</p>"
}
},
Expand Down Expand Up @@ -1381,6 +1400,7 @@
"CreateFleetRequest$Tags": "<p>The tags to associate with the fleet. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p> <p>If you do not specify a value, the value is set to an empty string.</p> <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p> <p>_ . : / = + \\ - @</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html\">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>",
"CreateImageBuilderRequest$Tags": "<p>The tags to associate with the image builder. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p> <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p> <p>_ . : / = + \\ - @</p> <p>If you do not specify a value, the value is set to an empty string.</p> <p>For more information about tags, see <a href=\"https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html\">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>",
"CreateStackRequest$Tags": "<p>The tags to associate with the stack. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p> <p>If you do not specify a value, the value is set to an empty string.</p> <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p> <p>_ . : / = + \\ - @</p> <p>For more information about tags, see <a href=\"https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html\">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>",
"CreateUpdatedImageRequest$newImageTags": "<p>The tags to associate with the new image. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p> <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p> <p>_ . : / = + \\ - @</p> <p>If you do not specify a value, the value is set to an empty string.</p> <p>For more information about tags, see <a href=\"https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html\">Tagging Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p>",
"ListTagsForResourceResponse$Tags": "<p>The information about the tags.</p>",
"TagResourceRequest$Tags": "<p>The tags to associate. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. </p> <p>If you do not specify a value, the value is set to an empty string.</p> <p>Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: </p> <p>_ . : / = + \\ - @</p>"
}
Expand Down