Skip to content

Commit

Permalink
Merge branch 'release-1.20.101'
Browse files Browse the repository at this point in the history
* release-1.20.101:
  Bumping version to 1.20.101
  Update to latest endpoints
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jun 25, 2021
2 parents 33c5abc + 35e1eba commit 6e3aa44
Show file tree
Hide file tree
Showing 8 changed files with 573 additions and 114 deletions.
17 changes: 17 additions & 0 deletions .changes/1.20.101.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"category": "``proton``",
"description": "Added waiters for template registration, service operations, and environment deployments.",
"type": "api-change"
},
{
"category": "``amplifybackend``",
"description": "Imports an existing backend authentication resource.",
"type": "api-change"
},
{
"category": "``snowball``",
"description": "AWS Snow Family customers can remotely monitor and operate their connected AWS Snowcone devices. AWS Snowball Edge Storage Optimized customers can now import and export their data using NFS.",
"type": "api-change"
}
]
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
CHANGELOG
=========

1.20.101
========

* api-change:``proton``: Added waiters for template registration, service operations, and environment deployments.
* api-change:``amplifybackend``: Imports an existing backend authentication resource.
* api-change:``snowball``: AWS Snow Family customers can remotely monitor and operate their connected AWS Snowcone devices. AWS Snowball Edge Storage Optimized customers can now import and export their data using NFS.


1.20.100
========

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.20.100'
__version__ = '1.20.101'


class NullHandler(logging.Handler):
Expand Down
307 changes: 226 additions & 81 deletions botocore/data/amplifybackend/2020-08-11/service-2.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions botocore/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -4932,6 +4932,7 @@
"ap-southeast-2" : { },
"eu-central-1" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
Expand Down Expand Up @@ -6071,6 +6072,7 @@
"ap-southeast-2" : { },
"eu-central-1" : { },
"eu-west-1" : { },
"eu-west-2" : { },
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
Expand Down
175 changes: 175 additions & 0 deletions botocore/data/proton/2020-07-20/waiters-2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
{
"version" : 2,
"waiters" : {
"EnvironmentDeployed" : {
"description" : "Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment",
"delay" : 5,
"maxAttempts" : 999,
"operation" : "GetEnvironment",
"acceptors" : [ {
"matcher" : "path",
"argument" : "environment.deploymentStatus",
"state" : "success",
"expected" : "SUCCEEDED"
}, {
"matcher" : "path",
"argument" : "environment.deploymentStatus",
"state" : "failure",
"expected" : "FAILED"
} ]
},
"EnvironmentTemplateVersionRegistered" : {
"description" : "Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion",
"delay" : 2,
"maxAttempts" : 150,
"operation" : "GetEnvironmentTemplateVersion",
"acceptors" : [ {
"matcher" : "path",
"argument" : "environmentTemplateVersion.status",
"state" : "success",
"expected" : "DRAFT"
}, {
"matcher" : "path",
"argument" : "environmentTemplateVersion.status",
"state" : "success",
"expected" : "PUBLISHED"
}, {
"matcher" : "path",
"argument" : "environmentTemplateVersion.status",
"state" : "failure",
"expected" : "REGISTRATION_FAILED"
} ]
},
"ServiceCreated" : {
"description" : "Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService",
"delay" : 5,
"maxAttempts" : 999,
"operation" : "GetService",
"acceptors" : [ {
"matcher" : "path",
"argument" : "service.status",
"state" : "success",
"expected" : "ACTIVE"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "CREATE_FAILED_CLEANUP_COMPLETE"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "CREATE_FAILED_CLEANUP_FAILED"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "CREATE_FAILED"
} ]
},
"ServiceDeleted" : {
"description" : "Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked",
"delay" : 5,
"maxAttempts" : 999,
"operation" : "GetService",
"acceptors" : [ {
"matcher" : "error",
"state" : "success",
"expected" : "ResourceNotFoundException"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "DELETE_FAILED"
} ]
},
"ServiceInstanceDeployed" : {
"description" : "Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance",
"delay" : 5,
"maxAttempts" : 999,
"operation" : "GetServiceInstance",
"acceptors" : [ {
"matcher" : "path",
"argument" : "serviceInstance.deploymentStatus",
"state" : "success",
"expected" : "SUCCEEDED"
}, {
"matcher" : "path",
"argument" : "serviceInstance.deploymentStatus",
"state" : "failure",
"expected" : "FAILED"
} ]
},
"ServicePipelineDeployed" : {
"description" : "Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline",
"delay" : 10,
"maxAttempts" : 360,
"operation" : "GetService",
"acceptors" : [ {
"matcher" : "path",
"argument" : "service.pipeline.deploymentStatus",
"state" : "success",
"expected" : "SUCCEEDED"
}, {
"matcher" : "path",
"argument" : "service.pipeline.deploymentStatus",
"state" : "failure",
"expected" : "FAILED"
} ]
},
"ServiceTemplateVersionRegistered" : {
"description" : "Wait until a ServiceTemplateVersion is registered. Use this after invoking CreateServiceTemplateVersion",
"delay" : 2,
"maxAttempts" : 150,
"operation" : "GetServiceTemplateVersion",
"acceptors" : [ {
"matcher" : "path",
"argument" : "serviceTemplateVersion.status",
"state" : "success",
"expected" : "DRAFT"
}, {
"matcher" : "path",
"argument" : "serviceTemplateVersion.status",
"state" : "success",
"expected" : "PUBLISHED"
}, {
"matcher" : "path",
"argument" : "serviceTemplateVersion.status",
"state" : "failure",
"expected" : "REGISTRATION_FAILED"
} ]
},
"ServiceUpdated" : {
"description" : "Wait until a Service, its instances, and possibly pipeline have been deployed after UpdateService is invoked",
"delay" : 5,
"maxAttempts" : 999,
"operation" : "GetService",
"acceptors" : [ {
"matcher" : "path",
"argument" : "service.status",
"state" : "success",
"expected" : "ACTIVE"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "UPDATE_FAILED_CLEANUP_COMPLETE"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "UPDATE_FAILED_CLEANUP_FAILED"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "UPDATE_FAILED"
}, {
"matcher" : "path",
"argument" : "service.status",
"state" : "failure",
"expected" : "UPDATE_COMPLETE_CLEANUP_FAILED"
} ]
}
}
}
Loading

0 comments on commit 6e3aa44

Please sign in to comment.