Skip to content

Commit

Permalink
Release v1.40.38 (2021-09-07) (#4088)
Browse files Browse the repository at this point in the history
Release v1.40.38 (2021-09-07)
===

### Service Client Updates
* `service/amp`: Updates service API and documentation
* `service/eks`: Updates service API, documentation, and waiters
* `service/elasticache`: Updates service documentation
  * Doc only update for ElastiCache
* `service/forecast`: Updates service API and documentation
* `service/mediapackage`: Updates service documentation
  * SPEKE v2 support for live CMAF packaging type. SPEKE v2 is an upgrade to the existing SPEKE API to support multiple encryption keys, it supports live DASH currently.
* `service/ssm-contacts`: Updates service documentation and examples
* `service/xray`: Updates service documentation
  * Updated references to AWS KMS keys and customer managed keys to reflect current terminology.
  • Loading branch information
aws-sdk-go-automation authored Sep 7, 2021
1 parent 23db5a4 commit c348111
Show file tree
Hide file tree
Showing 31 changed files with 3,865 additions and 252 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.40.38 (2021-09-07)
===

### Service Client Updates
* `service/amp`: Updates service API and documentation
* `service/eks`: Updates service API, documentation, and waiters
* `service/elasticache`: Updates service documentation
* Doc only update for ElastiCache
* `service/forecast`: Updates service API and documentation
* `service/mediapackage`: Updates service documentation
* SPEKE v2 support for live CMAF packaging type. SPEKE v2 is an upgrade to the existing SPEKE API to support multiple encryption keys, it supports live DASH currently.
* `service/ssm-contacts`: Updates service documentation and examples
* `service/xray`: Updates service documentation
* Updated references to AWS KMS keys and customer managed keys to reflect current terminology.

Release v1.40.37 (2021-09-03)
===

Expand Down
8 changes: 8 additions & 0 deletions 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
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.40.37"
const SDKVersion = "1.40.38"
142 changes: 141 additions & 1 deletion models/apis/amp/2020-08-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,23 @@
{"shape":"InternalServerException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"GET",
"requestUri":"/tags/{resourceArn}",
"responseCode":200
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"ThrottlingException"},
{"shape":"ValidationException"},
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"InternalServerException"}
]
},
"ListWorkspaces":{
"name":"ListWorkspaces",
"http":{
Expand All @@ -81,6 +98,41 @@
{"shape":"InternalServerException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/tags/{resourceArn}",
"responseCode":200
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"ThrottlingException"},
{"shape":"ValidationException"},
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"InternalServerException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"DELETE",
"requestUri":"/tags/{resourceArn}",
"responseCode":200
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"ThrottlingException"},
{"shape":"ValidationException"},
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"InternalServerException"}
],
"idempotent":true
},
"UpdateWorkspaceAlias":{
"name":"UpdateWorkspaceAlias",
"http":{
Expand Down Expand Up @@ -139,7 +191,8 @@
"clientToken":{
"shape":"IdempotencyToken",
"idempotencyToken":true
}
},
"tags":{"shape":"TagMap"}
}
},
"CreateWorkspaceResponse":{
Expand All @@ -152,6 +205,7 @@
"members":{
"arn":{"shape":"WorkspaceArn"},
"status":{"shape":"WorkspaceStatus"},
"tags":{"shape":"TagMap"},
"workspaceId":{"shape":"WorkspaceId"}
}
},
Expand Down Expand Up @@ -216,6 +270,23 @@
"fault":true,
"retryable":{"throttling":false}
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["resourceArn"],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"members":{
"tags":{"shape":"TagMap"}
}
},
"ListWorkspacesRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -292,6 +363,49 @@
"exception":true
},
"String":{"type":"string"},
"TagKey":{
"type":"string",
"max":128,
"min":1,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
},
"TagKeys":{
"type":"list",
"member":{"shape":"TagKey"}
},
"TagMap":{
"type":"map",
"key":{"shape":"TagKey"},
"value":{"shape":"TagValue"},
"max":50,
"min":0
},
"TagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tags"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
},
"tags":{"shape":"TagMap"}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
},
"ThrottlingException":{
"type":"structure",
"required":["message"],
Expand All @@ -313,6 +427,30 @@
"retryable":{"throttling":false}
},
"Timestamp":{"type":"timestamp"},
"UntagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tagKeys"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
},
"tagKeys":{
"shape":"TagKeys",
"location":"querystring",
"locationName":"tagKeys"
}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"UpdateWorkspaceAliasRequest":{
"type":"structure",
"required":["workspaceId"],
Expand Down Expand Up @@ -395,6 +533,7 @@
"createdAt":{"shape":"Timestamp"},
"prometheusEndpoint":{"shape":"Uri"},
"status":{"shape":"WorkspaceStatus"},
"tags":{"shape":"TagMap"},
"workspaceId":{"shape":"WorkspaceId"}
}
},
Expand Down Expand Up @@ -434,6 +573,7 @@
"arn":{"shape":"WorkspaceArn"},
"createdAt":{"shape":"Timestamp"},
"status":{"shape":"WorkspaceStatus"},
"tags":{"shape":"TagMap"},
"workspaceId":{"shape":"WorkspaceId"}
}
},
Expand Down
66 changes: 66 additions & 0 deletions models/apis/amp/2020-08-01/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"CreateWorkspace": "<p>Creates a new AMP workspace.</p>",
"DeleteWorkspace": "<p>Deletes an AMP workspace.</p>",
"DescribeWorkspace": "<p>Describes an existing AMP workspace.</p>",
"ListTagsForResource": "<p>Lists the tags you have assigned to the resource.</p>",
"ListWorkspaces": "<p>Lists all AMP workspaces, including workspaces being created or deleted.</p>",
"TagResource": "<p>Creates tags for the specified resource.</p>",
"UntagResource": "<p>Deletes tags from the specified resource.</p>",
"UpdateWorkspaceAlias": "<p>Updates an AMP workspace alias.</p>"
},
"shapes": {
Expand Down Expand Up @@ -64,6 +67,16 @@
"refs": {
}
},
"ListTagsForResourceRequest": {
"base": null,
"refs": {
}
},
"ListTagsForResourceResponse": {
"base": null,
"refs": {
}
},
"ListWorkspacesRequest": {
"base": "<p>Represents the input of a ListWorkspaces operation.</p>",
"refs": {
Expand Down Expand Up @@ -105,6 +118,7 @@
"ConflictException$resourceId": "<p>Identifier of the resource affected.</p>",
"ConflictException$resourceType": "<p>Type of the resource affected.</p>",
"InternalServerException$message": "<p>Description of the error.</p>",
"ListTagsForResourceRequest$resourceArn": "<p>The ARN of the resource.</p>",
"ResourceNotFoundException$message": "<p>Description of the error.</p>",
"ResourceNotFoundException$resourceId": "<p>Identifier of the resource affected.</p>",
"ResourceNotFoundException$resourceType": "<p>Type of the resource affected.</p>",
Expand All @@ -113,14 +127,56 @@
"ServiceQuotaExceededException$resourceId": "<p>Identifier of the resource affected.</p>",
"ServiceQuotaExceededException$resourceType": "<p>Type of the resource affected.</p>",
"ServiceQuotaExceededException$serviceCode": "<p>Service Quotas requirement to identify originating service.</p>",
"TagResourceRequest$resourceArn": "<p>The ARN of the resource.</p>",
"ThrottlingException$message": "<p>Description of the error.</p>",
"ThrottlingException$quotaCode": "<p>Service Quotas requirement to identify originating quota.</p>",
"ThrottlingException$serviceCode": "<p>Service Quotas requirement to identify originating service.</p>",
"UntagResourceRequest$resourceArn": "<p>The ARN of the resource.</p>",
"ValidationException$message": "<p>Description of the error.</p>",
"ValidationExceptionField$message": "<p>Message describing why the field failed validation.</p>",
"ValidationExceptionField$name": "<p>The field name.</p>"
}
},
"TagKey": {
"base": null,
"refs": {
"TagKeys$member": null,
"TagMap$key": "<p>The key of the tag.</p> <p>Constraints: Tag keys are case-sensitive and accept a maximum of 128 Unicode characters. Valid characters are Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @ May not begin with <code>aws:</code>.</p>"
}
},
"TagKeys": {
"base": null,
"refs": {
"UntagResourceRequest$tagKeys": "<p>One or more tag keys</p>"
}
},
"TagMap": {
"base": "<p>The list of tags assigned to the resource.</p>",
"refs": {
"CreateWorkspaceRequest$tags": "<p>Optional, user-provided tags for this workspace.</p>",
"CreateWorkspaceResponse$tags": "<p>The tags of this workspace.</p>",
"ListTagsForResourceResponse$tags": null,
"TagResourceRequest$tags": null,
"WorkspaceDescription$tags": "<p>The tags of this workspace.</p>",
"WorkspaceSummary$tags": "<p>The tags of this workspace.</p>"
}
},
"TagResourceRequest": {
"base": null,
"refs": {
}
},
"TagResourceResponse": {
"base": null,
"refs": {
}
},
"TagValue": {
"base": null,
"refs": {
"TagMap$value": "<p>The value of the tag.</p> <p>Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters. Valid characters are Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @</p>"
}
},
"ThrottlingException": {
"base": "<p>Request was denied due to request throttling.</p>",
"refs": {
Expand All @@ -133,6 +189,16 @@
"WorkspaceSummary$createdAt": "<p>The time when the workspace was created.</p>"
}
},
"UntagResourceRequest": {
"base": null,
"refs": {
}
},
"UntagResourceResponse": {
"base": null,
"refs": {
}
},
"UpdateWorkspaceAliasRequest": {
"base": "<p>Represents the input of an UpdateWorkspaceAlias operation.</p>",
"refs": {
Expand Down
Loading

0 comments on commit c348111

Please sign in to comment.