Skip to content

Commit

Permalink
Merge branch 'release-1.4.61' into develop
Browse files Browse the repository at this point in the history
* release-1.4.61:
  Bumping version to 1.4.61
  Update to latest models
  • Loading branch information
AWS committed Oct 12, 2016
2 parents 4c14728 + 47dc4a6 commit f51d012
Show file tree
Hide file tree
Showing 14 changed files with 561 additions and 262 deletions.
52 changes: 52 additions & 0 deletions .changes/1.4.61.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
[
{
"category": "``ecr``",
"description": "Update ecr client to latest version",
"type": "feature"
},
{
"category": "``cloudfront``",
"description": "Update cloudfront client to latest version",
"type": "feature"
},
{
"category": "``codedeploy``",
"description": "Update codedeploy client to latest version",
"type": "feature"
},
{
"category": "``sns``",
"description": "Update sns client to latest version",
"type": "feature"
},
{
"category": "``apigateway``",
"description": "Update apigateway client to latest version",
"type": "feature"
},
{
"category": "Client Meta",
"description": "Add partition to client meta object (`#1027 <https://github.com/boto/botocore/issues/1027>`__)",
"type": "feature"
},
{
"category": "``elasticache``",
"description": "Update elasticache client to latest version",
"type": "feature"
},
{
"category": "``kms``",
"description": "Update kms client to latest version",
"type": "feature"
},
{
"category": "``rds``",
"description": "Update rds client to latest version",
"type": "feature"
},
{
"category": "``gamelift``",
"description": "Update gamelift client to latest version",
"type": "feature"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/feature-ClientMeta-62201.json

This file was deleted.

15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
CHANGELOG
=========

1.4.61
======

* feature:``ecr``: Update ecr client to latest version
* feature:``cloudfront``: Update cloudfront client to latest version
* feature:``codedeploy``: Update codedeploy client to latest version
* feature:``sns``: Update sns client to latest version
* feature:``apigateway``: Update apigateway client to latest version
* feature:Client Meta: Add partition to client meta object (`#1027 <https://github.com/boto/botocore/issues/1027>`__)
* feature:``elasticache``: Update elasticache client to latest version
* feature:``kms``: Update kms client to latest version
* feature:``rds``: Update rds client to latest version
* feature:``gamelift``: Update gamelift client to latest version


1.4.60
======

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.4.60'
__version__ = '1.4.61'


class NullHandler(logging.Handler):
Expand Down
Empty file modified botocore/data/apigateway/2015-07-09/service-2.json
100644 → 100755
Empty file.
Empty file modified botocore/data/cloudfront/2016-09-07/service-2.json
100644 → 100755
Empty file.
Empty file modified botocore/data/codedeploy/2014-10-06/service-2.json
100644 → 100755
Empty file.
132 changes: 130 additions & 2 deletions botocore/data/ecr/2015-09-21/service-2.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,22 @@
],
"documentation":"<p>Deletes the repository policy from a specified repository.</p>"
},
"DescribeImages":{
"name":"DescribeImages",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeImagesRequest"},
"output":{"shape":"DescribeImagesResponse"},
"errors":[
{"shape":"ServerException"},
{"shape":"InvalidParameterException"},
{"shape":"RepositoryNotFoundException"},
{"shape":"ImageNotFoundException"}
],
"documentation":"<p>Returns metadata about the images in a repository, including image size and creation date.</p> <note> <p>Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the <code>docker images</code> command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by <a>DescribeImages</a>.</p> </note>"
},
"DescribeRepositories":{
"name":"DescribeRepositories",
"http":{
Expand Down Expand Up @@ -470,9 +486,13 @@
"CreateRepositoryResponse":{
"type":"structure",
"members":{
"repository":{"shape":"Repository"}
"repository":{
"shape":"Repository",
"documentation":"<p>The repository that was created.</p>"
}
}
},
"CreationTimestamp":{"type":"timestamp"},
"DeleteRepositoryPolicyRequest":{
"type":"structure",
"required":["repositoryName"],
Expand Down Expand Up @@ -525,7 +545,63 @@
"DeleteRepositoryResponse":{
"type":"structure",
"members":{
"repository":{"shape":"Repository"}
"repository":{
"shape":"Repository",
"documentation":"<p>The repository that was deleted.</p>"
}
}
},
"DescribeImagesFilter":{
"type":"structure",
"members":{
"tagStatus":{
"shape":"TagStatus",
"documentation":"<p>The tag status with which to filter your <a>DescribeImages</a> results. You can filter results based on whether they are <code>TAGGED</code> or <code>UNTAGGED</code>.</p>"
}
},
"documentation":"<p>An object representing a filter on a <a>DescribeImages</a> operation.</p>"
},
"DescribeImagesRequest":{
"type":"structure",
"required":["repositoryName"],
"members":{
"registryId":{
"shape":"RegistryId",
"documentation":"<p>The AWS account ID associated with the registry that contains the repository in which to list images. If you do not specify a registry, the default registry is assumed.</p>"
},
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>A list of repositories to describe. If this parameter is omitted, then all repositories in a registry are described.</p>"
},
"imageIds":{
"shape":"ImageIdentifierList",
"documentation":"<p>The list of image IDs for the requested repository.</p>"
},
"nextToken":{
"shape":"NextToken",
"documentation":"<p>The <code>nextToken</code> value returned from a previous paginated <code>DescribeImages</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p>"
},
"maxResults":{
"shape":"MaxResults",
"documentation":"<p>The maximum number of repository results returned by <code>DescribeImages</code> in paginated output. When this parameter is used, <code>DescribeImages</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>DescribeImages</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>DescribeImages</code> returns up to 100 results and a <code>nextToken</code> value, if applicable.</p>"
},
"filter":{
"shape":"DescribeImagesFilter",
"documentation":"<p>The filter key and value with which to filter your <code>DescribeImages</code> results.</p>"
}
}
},
"DescribeImagesResponse":{
"type":"structure",
"members":{
"imageDetails":{
"shape":"ImageDetailList",
"documentation":"<p>A list of <a>ImageDetail</a> objects that contain data about the image.</p>"
},
"nextToken":{
"shape":"NextToken",
"documentation":"<p>The <code>nextToken</code> value to include in a future <code>DescribeImages</code> request. When the results of a <code>DescribeImages</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>"
}
}
},
"DescribeRepositoriesRequest":{
Expand Down Expand Up @@ -698,6 +774,40 @@
"documentation":"<p>The specified image has already been pushed, and there are no changes to the manifest or image tag since the last push.</p>",
"exception":true
},
"ImageDetail":{
"type":"structure",
"members":{
"registryId":{
"shape":"RegistryId",
"documentation":"<p>The AWS account ID associated with the registry to which this image belongs.</p>"
},
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository to which this image belongs.</p>"
},
"imageDigest":{
"shape":"ImageDigest",
"documentation":"<p>The <code>sha256</code> digest of the image manifest.</p>"
},
"imageTags":{
"shape":"ImageTagList",
"documentation":"<p>The list of tags associated with this image.</p>"
},
"imageSizeInBytes":{
"shape":"ImageSizeInBytes",
"documentation":"<p>The size, in bytes, of the image in the repository.</p> <note> <p>Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the <code>docker images</code> command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by <a>DescribeImages</a>.</p> </note>"
},
"imagePushedAt":{
"shape":"PushTimestamp",
"documentation":"<p>The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the repository. </p>"
}
},
"documentation":"<p>An object that describes an image returned by a <a>DescribeImages</a> operation.</p>"
},
"ImageDetailList":{
"type":"list",
"member":{"shape":"ImageDetail"}
},
"ImageDigest":{"type":"string"},
"ImageFailure":{
"type":"structure",
Expand Down Expand Up @@ -757,7 +867,20 @@
"member":{"shape":"Image"}
},
"ImageManifest":{"type":"string"},
"ImageNotFoundException":{
"type":"structure",
"members":{
"message":{"shape":"ExceptionMessage"}
},
"documentation":"<p>The image requested does not exist in the specified repository.</p>",
"exception":true
},
"ImageSizeInBytes":{"type":"long"},
"ImageTag":{"type":"string"},
"ImageTagList":{
"type":"list",
"member":{"shape":"ImageTag"}
},
"InitiateLayerUploadRequest":{
"type":"structure",
"required":["repositoryName"],
Expand Down Expand Up @@ -1020,6 +1143,7 @@
"min":0
},
"ProxyEndpoint":{"type":"string"},
"PushTimestamp":{"type":"timestamp"},
"PutImageRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1072,6 +1196,10 @@
"repositoryUri":{
"shape":"Url",
"documentation":"<p>The URI for the repository. You can use this URI for Docker <code>push</code> and <code>pull</code> operations.</p>"
},
"createdAt":{
"shape":"CreationTimestamp",
"documentation":"<p>The date and time, in JavaScript date/time format, when the repository was created.</p>"
}
},
"documentation":"<p>An object representing a repository.</p>"
Expand Down
Loading

0 comments on commit f51d012

Please sign in to comment.