-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-1.2.11: (21 commits) Bumping version to 1.2.11 Update S3 model to latest version Update KMS model to latest version Log traceback on ConnectionErrors Update ec2 pagination models Add Glacier paginator model Update IAM paginators Update contributing guide with latest model format Add route53 check for Throttling code as well Add the retry for Route53 when PriorRequestNotComplete happens Add test for us-gov-west-1 and virtual style Hoist region check to fix_s3_host Avoid slow io.open() by handling encoding by ourselves Update a docstring about s3 addressing_style Fix code for cli integration tests Revert "Merge pull request #671 from boto/revert-655-dns-style-host" Update comment in test about invalid xml 500 error Add debug log for when parsing exception is caught Use utf8 encoding to open model file Make error parsing more robust ...
- Loading branch information
Showing
32 changed files
with
2,018 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"pagination": { | ||
"ListJobs": { | ||
"input_token": "marker", | ||
"output_token": "Marker", | ||
"limit_key": "limit", | ||
"result_key": "JobList" | ||
}, | ||
"ListMultipartUploads": { | ||
"input_token": "marker", | ||
"output_token": "Marker", | ||
"limit_key": "limit", | ||
"result_key": "UploadsList" | ||
}, | ||
"ListParts": { | ||
"input_token": "marker", | ||
"output_token": "Marker", | ||
"limit_key": "limit", | ||
"result_key": "Parts" | ||
}, | ||
"ListVaults": { | ||
"input_token": "marker", | ||
"output_token": "Marker", | ||
"limit_key": "limit", | ||
"result_key": "VaultList" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.