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.25.19 #2910

Merged
merged 1 commit into from Oct 24, 2019
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.25.19 (2019-10-24)
===

### Service Client Updates
* `service/appmesh`: Updates service API and documentation
* `service/chime`: Updates service API, documentation, and paginators
* * This release introduces Voice Connector PDX region and defaults previously created Voice Connectors to IAD. You can create Voice Connector Groups and add region specific Voice Connectors to direct telephony traffic across AWS regions in case of regional failures. With this release you can add phone numbers to Voice Connector Groups and can bulk move phone numbers between Voice Connectors, between Voice Connector and Voice Connector Groups and between Voice Connector Groups. Voice Connector now supports additional settings to enable SIP Log capture. This is in addition to the launch of Voice Connector Cloud Watch metrics in this release. This release also supports assigning outbound calling name (CNAM) to AWS account and individual phone numbers assigned to Voice Connectors. * Voice Connector now supports a setting to enable real time audio streaming delivered via Kinesis Audio streams. Please note that recording Amazon Chime Voice Connector calls with this feature maybe be subject to laws or regulations regarding the recording of telephone calls and other electronic communications. AWS Customer and their end users' have the responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or to a recorded communication that the session or communication is being recorded and obtain their consent.
* `service/ec2`: Updates service API and documentation
* This release updates CreateFpgaImage to support tagging FPGA images on creation
* `service/gamelift`: Updates service API
* Amazon GameLift offers expanded hardware options for game hosting: Custom game builds can use the Amazon Linux 2 operating system, and fleets for both custom builds and Realtime servers can now use C5, M5, and R5 instance types.
* `service/sagemaker`: Updates service API
* Adds support for the new family of Elastic Inference Accelerators (eia2) for SageMaker Hosting and Notebook Services

Release v1.25.18 (2019-10-23)
===

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.25.18"
const SDKVersion = "1.25.19"
143 changes: 143 additions & 0 deletions models/apis/appmesh/2019-01-25/api-2.json
Expand Up @@ -1185,6 +1185,30 @@
"min": 0,
"max": 50
},
"GrpcRetryPolicy": {
"type": "structure",
"required": [
"maxRetries",
"perRetryTimeout"
],
"members": {
"grpcRetryEvents": {
"shape": "GrpcRetryPolicyEvents"
},
"httpRetryEvents": {
"shape": "HttpRetryPolicyEvents"
},
"maxRetries": {
"shape": "MaxRetries"
},
"perRetryTimeout": {
"shape": "Duration"
},
"tcpRetryEvents": {
"shape": "TcpRetryPolicyEvents"
}
}
},
"ListTagsForResourceInput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -1228,6 +1252,14 @@
}
}
},
"GrpcRetryPolicyEvents": {
"type": "list",
"member": {
"shape": "GrpcRetryPolicyEvent"
},
"min": 1,
"max": 5
},
"ServiceUnavailableException": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -1400,7 +1432,9 @@
"PortProtocol": {
"type": "string",
"enum": [
"grpc",
"http",
"http2",
"tcp"
]
},
Expand Down Expand Up @@ -1515,6 +1549,19 @@
"min": 0,
"max": 100
},
"GrpcRouteMetadataList": {
"type": "list",
"member": {
"shape": "GrpcRouteMetadata"
},
"min": 1,
"max": 10
},
"MethodName": {
"type": "string",
"min": 1,
"max": 50
},
"TagValue": {
"type": "string",
"min": 0,
Expand Down Expand Up @@ -1775,6 +1822,17 @@
}
}
},
"GrpcRouteAction": {
"type": "structure",
"required": [
"weightedTargets"
],
"members": {
"weightedTargets": {
"shape": "WeightedTargets"
}
}
},
"DescribeVirtualNodeOutput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -1831,6 +1889,26 @@
},
"payload": "route"
},
"GrpcRouteMetadataMatchMethod": {
"type": "structure",
"members": {
"exact": {
"shape": "HeaderMatch"
},
"prefix": {
"shape": "HeaderMatch"
},
"range": {
"shape": "MatchRange"
},
"regex": {
"shape": "HeaderMatch"
},
"suffix": {
"shape": "HeaderMatch"
}
}
},
"DnsServiceDiscovery": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2627,6 +2705,24 @@
}
}
},
"GrpcRoute": {
"type": "structure",
"required": [
"action",
"match"
],
"members": {
"action": {
"shape": "GrpcRouteAction"
},
"match": {
"shape": "GrpcRouteMatch"
},
"retryPolicy": {
"shape": "GrpcRetryPolicy"
}
}
},
"DeleteVirtualNodeInput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2741,6 +2837,16 @@
"min": 0,
"max": 50
},
"GrpcRetryPolicyEvent": {
"type": "string",
"enum": [
"cancelled",
"deadline-exceeded",
"internal",
"resource-exhausted",
"unavailable"
]
},
"HttpRetryPolicy": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2888,6 +2994,23 @@
}
}
},
"GrpcRouteMetadata": {
"type": "structure",
"required": [
"name"
],
"members": {
"invert": {
"shape": "Boolean"
},
"match": {
"shape": "GrpcRouteMetadataMatchMethod"
},
"name": {
"shape": "HeaderName"
}
}
},
"CreateRouteInput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2949,6 +3072,20 @@
}
}
},
"GrpcRouteMatch": {
"type": "structure",
"members": {
"metadata": {
"shape": "GrpcRouteMetadataList"
},
"methodName": {
"shape": "MethodName"
},
"serviceName": {
"shape": "ServiceName"
}
}
},
"String": {
"type": "string"
},
Expand Down Expand Up @@ -3075,6 +3212,12 @@
"RouteSpec": {
"type": "structure",
"members": {
"grpcRoute": {
"shape": "GrpcRoute"
},
"http2Route": {
"shape": "HttpRoute"
},
"httpRoute": {
"shape": "HttpRoute"
},
Expand Down