Skip to content

Commit

Permalink
Merge branch 'release-1.13.4'
Browse files Browse the repository at this point in the history
* release-1.13.4:
  Bumping version to 1.13.4
  Update to latest endpoints
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Oct 28, 2019
2 parents 76171b6 + 927905c commit ca09366
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .changes/1.13.4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"category": "``s3``",
"description": "Update s3 client to latest version",
"type": "api-change"
}
]
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
=========

1.13.4
======

* api-change:``s3``: Update s3 client to latest version


1.13.3
======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import re
import logging

__version__ = '1.13.3'
__version__ = '1.13.4'


class NullHandler(logging.Handler):
Expand Down
7 changes: 7 additions & 0 deletions botocore/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -474,14 +474,20 @@
},
"backup" : {
"endpoints" : {
"ap-east-1" : { },
"ap-northeast-1" : { },
"ap-northeast-2" : { },
"ap-south-1" : { },
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"ca-central-1" : { },
"eu-central-1" : { },
"eu-north-1" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
"us-east-2" : { },
"us-west-1" : { },
Expand Down Expand Up @@ -2958,6 +2964,7 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
"us-east-1-fips" : {
Expand Down
19 changes: 19 additions & 0 deletions botocore/data/s3/2006-03-01/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2786,6 +2786,7 @@
},
"documentation":"<p>Specifies encryption-related information for an Amazon S3 bucket that is a destination for replicated objects.</p>"
},
"End":{"type":"long"},
"EndEvent":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7648,6 +7649,19 @@
"documentation":"<p>Specifies the use of SSE-S3 to encrypt delivered Inventory reports.</p>",
"locationName":"SSE-S3"
},
"ScanRange":{
"type":"structure",
"members":{
"Start":{
"shape":"Start",
"documentation":"<p>Specifies the start of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is 0.</p>"
},
"End":{
"shape":"End",
"documentation":"<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>"
}
}
},
"SelectObjectContentEventStream":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7745,6 +7759,10 @@
"OutputSerialization":{
"shape":"OutputSerialization",
"documentation":"<p>Describes the format of the data that you want Amazon S3 to return in response.</p>"
},
"ScanRange":{
"shape":"ScanRange",
"documentation":"<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>"
}
},
"documentation":"<p>Request to filter the contents of an Amazon S3 object based on a simple Structured Query Language (SQL) statement. In the request, along with the SQL expression, you must specify a data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data into records. It returns only records that match the specified SQL expression. You must also specify the data serialization format for the response. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html\">S3Select API Documentation</a>.</p>"
Expand Down Expand Up @@ -7856,6 +7874,7 @@
"Disabled"
]
},
"Start":{"type":"long"},
"StartAfter":{"type":"string"},
"Stats":{
"type":"structure",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# The short X.Y version.
version = '1.13'
# The full version, including alpha/beta/rc tags.
release = '1.13.3'
release = '1.13.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit ca09366

Please sign in to comment.