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

v1.25.7 #2876

Merged
merged 1 commit into from
Oct 7, 2019
Merged

v1.25.7 #2876

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.25.7 (2019-10-07)
===

### Service Client Updates
* `service/directconnect`: Updates service API and documentation
* This release adds a service provider field for physical connection creation and provides a list of available partner providers for each Direct Connect location.
* `service/firehose`: Updates service API and documentation
* Amazon Kinesis Data Firehose now allows delivering data to Elasticsearch clusters set up in a different AWS account than the Firehose AWS account. For technical documentation, look for ElasticsearchDestinationConfiguration in the Amazon Kinesis Firehose API reference.
* `service/glue`: Updates service API and documentation
* AWS Glue now provides ability to use custom certificates for JDBC Connections.
* `service/pinpoint`: Updates service API and documentation
* This release of the Amazon Pinpoint API introduces support for using and managing message templates.
* `service/pinpoint-email`: Updates service API and documentation
* `service/snowball`: Updates service API and documentation
* AWS Snowball Edge now allows you to perform an offline update to the software of your Snowball Edge device when your device is not connected to the internet. Previously, updating your Snowball Edge's software required that the device be connected to the internet or be sent back to AWS. Now, you can keep your Snowball Edge software up to date even if your device(s) cannot connect to the internet, or are required to run in an air-gapped environment. To complete offline updates, download the software update from a client machine with connection to the internet using the AWS Command Line Interface (CLI). Then, have the Snowball Edge device download and install the software update using the Snowball Edge device API. For more information about offline updates, visit the Snowball Edge documentation page.

Release v1.25.6 (2019-10-04)
===

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.25.6"
const SDKVersion = "1.25.7"
30 changes: 19 additions & 11 deletions models/apis/directconnect/2012-10-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,8 @@
"jumboFrameCapable":{"shape":"JumboFrameCapable"},
"awsDeviceV2":{"shape":"AwsDeviceV2"},
"hasLogicalRedundancy":{"shape":"HasLogicalRedundancy"},
"tags":{"shape":"TagList"}
"tags":{"shape":"TagList"},
"providerName":{"shape":"ProviderName"}
}
},
"ConnectionId":{"type":"string"},
Expand Down Expand Up @@ -1060,7 +1061,8 @@
"bandwidth":{"shape":"Bandwidth"},
"connectionName":{"shape":"ConnectionName"},
"lagId":{"shape":"LagId"},
"tags":{"shape":"TagList"}
"tags":{"shape":"TagList"},
"providerName":{"shape":"ProviderName"}
}
},
"CreateDirectConnectGatewayAssociationProposalRequest":{
Expand Down Expand Up @@ -1126,7 +1128,8 @@
"bandwidth":{"shape":"Bandwidth"},
"location":{"shape":"LocationCode"},
"lagId":{"shape":"LagId"},
"tags":{"shape":"TagList"}
"tags":{"shape":"TagList"},
"providerName":{"shape":"ProviderName"}
}
},
"CreateLagRequest":{
Expand All @@ -1144,7 +1147,8 @@
"lagName":{"shape":"LagName"},
"connectionId":{"shape":"ConnectionId"},
"tags":{"shape":"TagList"},
"childConnectionTags":{"shape":"TagList"}
"childConnectionTags":{"shape":"TagList"},
"providerName":{"shape":"ProviderName"}
}
},
"CreatePrivateVirtualInterfaceRequest":{
Expand Down Expand Up @@ -1616,7 +1620,8 @@
"jumboFrameCapable":{"shape":"JumboFrameCapable"},
"awsDeviceV2":{"shape":"AwsDeviceV2"},
"hasLogicalRedundancy":{"shape":"HasLogicalRedundancy"},
"tags":{"shape":"TagList"}
"tags":{"shape":"TagList"},
"providerName":{"shape":"ProviderName"}
}
},
"InterconnectId":{"type":"string"},
Expand Down Expand Up @@ -1662,7 +1667,8 @@
"allowsHostedConnections":{"shape":"BooleanFlag"},
"jumboFrameCapable":{"shape":"JumboFrameCapable"},
"hasLogicalRedundancy":{"shape":"HasLogicalRedundancy"},
"tags":{"shape":"TagList"}
"tags":{"shape":"TagList"},
"providerName":{"shape":"ProviderName"}
}
},
"LagId":{"type":"string"},
Expand Down Expand Up @@ -1708,7 +1714,8 @@
"locationCode":{"shape":"LocationCode"},
"locationName":{"shape":"LocationName"},
"region":{"shape":"Region"},
"availablePortSpeeds":{"shape":"AvailablePortSpeeds"}
"availablePortSpeeds":{"shape":"AvailablePortSpeeds"},
"availableProviders":{"shape":"ProviderList"}
}
},
"LocationCode":{"type":"string"},
Expand Down Expand Up @@ -1850,6 +1857,10 @@
"PaginationToken":{"type":"string"},
"PartnerName":{"type":"string"},
"PortSpeed":{"type":"string"},
"ProviderList":{
"type":"list",
"member":{"shape":"ProviderName"}
},
"ProviderName":{"type":"string"},
"Region":{"type":"string"},
"ResourceArn":{"type":"string"},
Expand Down Expand Up @@ -1986,10 +1997,7 @@
"virtualGatewayState":{"shape":"VirtualGatewayState"}
}
},
"VirtualGatewayId":{
"type":"string",
"deprecated":true
},
"VirtualGatewayId":{"type":"string"},
"VirtualGatewayList":{
"type":"list",
"member":{"shape":"VirtualGateway"}
Expand Down
Loading