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.21 #2917

Merged
merged 1 commit into from Oct 28, 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
Release v1.25.21 (2019-10-28)
===

### Service Client Updates
* `service/s3`: Updates service API, documentation, and examples
* Adding support in SelectObjectContent for scanning a portion of an object specified by a scan range.

Release v1.25.20 (2019-10-28)
===

Expand Down
7 changes: 7 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.25.20"
const SDKVersion = "1.25.21"
12 changes: 11 additions & 1 deletion models/apis/s3/2006-03-01/api-2.json
Expand Up @@ -2296,6 +2296,7 @@
"ReplicaKmsKeyID":{"shape":"ReplicaKmsKeyID"}
}
},
"End":{"type":"long"},
"EndEvent":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -5988,6 +5989,13 @@
},
"locationName":"SSE-S3"
},
"ScanRange":{
"type":"structure",
"members":{
"Start":{"shape":"Start"},
"End":{"shape":"End"}
}
},
"SelectObjectContentEventStream":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -6046,7 +6054,8 @@
"ExpressionType":{"shape":"ExpressionType"},
"RequestProgress":{"shape":"RequestProgress"},
"InputSerialization":{"shape":"InputSerialization"},
"OutputSerialization":{"shape":"OutputSerialization"}
"OutputSerialization":{"shape":"OutputSerialization"},
"ScanRange":{"shape":"ScanRange"}
}
},
"SelectParameters":{
Expand Down Expand Up @@ -6122,6 +6131,7 @@
"Disabled"
]
},
"Start":{"type":"long"},
"StartAfter":{"type":"string"},
"Stats":{
"type":"structure",
Expand Down
18 changes: 18 additions & 0 deletions models/apis/s3/2006-03-01/docs-2.json
Expand Up @@ -1067,6 +1067,12 @@
"Destination$EncryptionConfiguration": "<p>A container that provides information about encryption. If <code>SourceSelectionCriteria</code> is specified, you must specify this element.</p>"
}
},
"End": {
"base": null,
"refs": {
"ScanRange$End": "<p>Specifies the end of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is one less than the size of the object being queried.</p>"
}
},
"EndEvent": {
"base": "<p/>",
"refs": {
Expand Down Expand Up @@ -3229,6 +3235,12 @@
"InventoryEncryption$SSES3": "<p>Specifies the use of SSE-S3 to encrypt delivered Inventory reports.</p>"
}
},
"ScanRange": {
"base": null,
"refs": {
"SelectObjectContentRequest$ScanRange": "<p>Specifies the byte range of the object to get the records from. A record is processed when its first byte is contained by the range. This parameter is optional, but when specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.</p>"
}
},
"SelectObjectContentEventStream": {
"base": "<p/>",
"refs": {
Expand Down Expand Up @@ -3329,6 +3341,12 @@
"SseKmsEncryptedObjects$Status": "<p>Specifies whether Amazon S3 replicates objects created with server-side encryption using an AWS KMS-managed key.</p>"
}
},
"Start": {
"base": null,
"refs": {
"ScanRange$Start": "<p>Specifies the start of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is 0.</p>"
}
},
"StartAfter": {
"base": null,
"refs": {
Expand Down