Skip to content

Commit

Permalink
Release v1.32.4 (2020-06-17)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/appmesh`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
  * nvmeSupport added to DescribeInstanceTypes API
* `service/macie2`: Updates service documentation
* `service/route53`: Updates service API
  * Add PriorRequestNotComplete exception to AssociateVPCWithHostedZone API
* `service/snowball`: Updates service API and documentation
  * AWS Snowcone is a portable, rugged and secure device for edge computing and data transfer. You can use Snowcone to collect, process, and move data to AWS, either offline by shipping the device to AWS or online by using AWS DataSync. With 2 CPUs and 4 GB RAM of compute and 8 TB of storage, Snowcone can run edge computing workloads and store data securely. Snowcone's small size (8.94" x 5.85" x 3.25" / 227 mm x 148.6 mm x 82.65 mm) allows you to set it next to machinery in a factory. Snowcone weighs about 4.5 lbs. (2 kg), so you can carry one in a backpack, use it with battery-based operation, and use the Wi-Fi interface to gather sensor data. Snowcone supports a file interface with NFS support.

### SDK Enhancements
* `private/protocol`: Adds support for decimal precision UNIX timestamps up to thousandths of a second ([#3376](#3376))
  • Loading branch information
awssdkgo committed Jun 17, 2020
1 parent 0909baa commit 0a5c2d9
Show file tree
Hide file tree
Showing 21 changed files with 753 additions and 199 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.32.4 (2020-06-17)
===

### Service Client Updates
* `service/appmesh`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
* nvmeSupport added to DescribeInstanceTypes API
* `service/macie2`: Updates service documentation
* `service/route53`: Updates service API
* Add PriorRequestNotComplete exception to AssociateVPCWithHostedZone API
* `service/snowball`: Updates service API and documentation
* AWS Snowcone is a portable, rugged and secure device for edge computing and data transfer. You can use Snowcone to collect, process, and move data to AWS, either offline by shipping the device to AWS or online by using AWS DataSync. With 2 CPUs and 4 GB RAM of compute and 8 TB of storage, Snowcone can run edge computing workloads and store data securely. Snowcone's small size (8.94" x 5.85" x 3.25" / 227 mm x 148.6 mm x 82.65 mm) allows you to set it next to machinery in a factory. Snowcone weighs about 4.5 lbs. (2 kg), so you can carry one in a backpack, use it with battery-based operation, and use the Wi-Fi interface to gather sensor data. Snowcone supports a file interface with NFS support.

### SDK Enhancements
* `private/protocol`: Adds support for decimal precision UNIX timestamps up to thousandths of a second ([#3376](https://github.com/aws/aws-sdk-go/pull/3376))

Release v1.32.3 (2020-06-16)
===

Expand Down
1 change: 0 additions & 1 deletion CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
### SDK Features

### SDK Enhancements
* `private/protocol`: Adds support for decimal precision UNIX timestamps up to thousandths of a second ([#3376](https://github.com/aws/aws-sdk-go/pull/3376))

### SDK Bugs
17 changes: 17 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.32.3"
const SDKVersion = "1.32.4"
59 changes: 59 additions & 0 deletions models/apis/appmesh/2019-01-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1741,6 +1741,23 @@
"senderFault": true
}
},
"ListenerTimeout": {
"type": "structure",
"members": {
"grpc": {
"shape": "GrpcTimeout"
},
"http": {
"shape": "HttpTimeout"
},
"http2": {
"shape": "HttpTimeout"
},
"tcp": {
"shape": "TcpTimeout"
}
}
},
"MeshList": {
"type": "list",
"member": {
Expand Down Expand Up @@ -2212,6 +2229,17 @@
}
}
},
"HttpTimeout": {
"type": "structure",
"members": {
"idle": {
"shape": "Duration"
},
"perRequest": {
"shape": "Duration"
}
}
},
"DeleteVirtualServiceInput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -2718,6 +2746,17 @@
}
}
},
"GrpcTimeout": {
"type": "structure",
"members": {
"idle": {
"shape": "Duration"
},
"perRequest": {
"shape": "Duration"
}
}
},
"VirtualNodeStatus": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -3040,6 +3079,9 @@
"members": {
"action": {
"shape": "TcpRouteAction"
},
"timeout": {
"shape": "TcpTimeout"
}
}
},
Expand Down Expand Up @@ -3390,6 +3432,9 @@
"portMapping": {
"shape": "PortMapping"
},
"timeout": {
"shape": "ListenerTimeout"
},
"tls": {
"shape": "ListenerTls"
}
Expand All @@ -3410,6 +3455,9 @@
},
"retryPolicy": {
"shape": "GrpcRetryPolicy"
},
"timeout": {
"shape": "GrpcTimeout"
}
}
},
Expand Down Expand Up @@ -3646,6 +3694,14 @@
"String": {
"type": "string"
},
"TcpTimeout": {
"type": "structure",
"members": {
"idle": {
"shape": "Duration"
}
}
},
"HttpScheme": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -3706,6 +3762,9 @@
},
"retryPolicy": {
"shape": "HttpRetryPolicy"
},
"timeout": {
"shape": "HttpTimeout"
}
}
},
Expand Down

0 comments on commit 0a5c2d9

Please sign in to comment.