Skip to content

Commit

Permalink
Merge branch 'release-1.19.58' into develop
Browse files Browse the repository at this point in the history
* release-1.19.58:
  Bumping version to 1.19.58
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jan 21, 2021
2 parents 15cbf86 + 1ca65a2 commit 4f521b8
Show file tree
Hide file tree
Showing 7 changed files with 672 additions and 109 deletions.
17 changes: 17 additions & 0 deletions .changes/1.19.58.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"category": "``securityhub``",
"description": "Update securityhub client to latest version",
"type": "api-change"
},
{
"category": "``kafka``",
"description": "Update kafka client to latest version",
"type": "api-change"
},
{
"category": "``resourcegroupstaggingapi``",
"description": "Update resourcegroupstaggingapi client to latest version",
"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.19.58
=======

* api-change:``securityhub``: Update securityhub client to latest version
* api-change:``kafka``: Update kafka client to latest version
* api-change:``resourcegroupstaggingapi``: Update resourcegroupstaggingapi client to latest version


1.19.57
=======

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.19.57'
__version__ = '1.19.58'


class NullHandler(logging.Handler):
Expand Down
94 changes: 93 additions & 1 deletion botocore/data/kafka/2018-11-14/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -911,6 +911,52 @@
],
"documentation": "\n <p>Updates the number of broker nodes in the cluster.</p>\n "
},
"UpdateBrokerType": {
"name": "UpdateBrokerType",
"http": {
"method": "PUT",
"requestUri": "/v1/clusters/{clusterArn}/nodes/type",
"responseCode": 200
},
"input": {
"shape": "UpdateBrokerTypeRequest"
},
"output": {
"shape": "UpdateBrokerTypeResponse",
"documentation": "\n <p>Successful response.</p>\n "
},
"errors": [
{
"shape" : "BadRequestException",
"documentation" : "\n <p>The request isn't valid because the input is incorrect. Correct your input and then submit it again.</p>\n "
},
{
"shape" : "UnauthorizedException",
"documentation" : "\n <p>The request is not authorized. The provided credentials couldn't be validated.</p>\n "
},
{
"shape" : "InternalServerErrorException",
"documentation" : "\n <p>There was an unexpected internal server error. Retrying your request might resolve the issue.</p>\n "
},
{
"shape" : "ForbiddenException",
"documentation" : "\n <p>Access forbidden. Check your credentials and then retry your request.</p>\n "
},
{
"shape" : "NotFoundException",
"documentation" : "\n <p>The resource could not be found due to incorrect input. Correct the input, then retry the request.</p>\n "
},
{
"shape" : "ServiceUnavailableException",
"documentation" : "\n <p>503 response</p>\n "
},
{
"shape" : "TooManyRequestsException",
"documentation" : "\n <p>429 response</p>\n "
}
],
"documentation": "\n <p>Updates EC2 instance type.</p>\n "
},
"UpdateBrokerStorage": {
"name": "UpdateBrokerStorage",
"http": {
Expand Down Expand Up @@ -2636,7 +2682,12 @@
"LoggingInfo": {
"shape": "LoggingInfo",
"locationName": "loggingInfo"
}
},
"InstanceType": {
"shape" : "__stringMin5Max32",
"locationName" : "instanceType",
"documentation" : "\n <p>Information about the Amazon MSK broker type.</p>\n "
}
},
"documentation": "\n <p>Information about cluster attributes that can be updated via update APIs.</p>\n "
},
Expand Down Expand Up @@ -3078,6 +3129,47 @@
}
}
},
"UpdateBrokerTypeRequest": {
"type": "structure",
"members": {
"ClusterArn": {
"shape": "__string",
"location": "uri",
"locationName": "clusterArn",
"documentation": "\n <p>The Amazon Resource Name (ARN) that uniquely identifies the cluster.</p>\n "
},
"CurrentVersion": {
"shape": "__string",
"locationName": "currentVersion",
"documentation": "\n <p>The cluster version that you want to change. After this operation completes successfully, the cluster will have a new version.</p>\n "
},
"TargetInstanceType": {
"shape": "__string",
"locationName": "targetInstanceType",
"documentation": "\n <p>The Amazon MSK broker type that you want all of the brokers in this cluster to be.</p>\n "
}
},
"required": [
"ClusterArn",
"CurrentVersion",
"TargetInstanceType"
]
},
"UpdateBrokerTypeResponse": {
"type": "structure",
"members": {
"ClusterArn": {
"shape": "__string",
"locationName": "clusterArn",
"documentation": "\n <p>The Amazon Resource Name (ARN) of the cluster.</p>\n "
},
"ClusterOperationArn": {
"shape": "__string",
"locationName": "clusterOperationArn",
"documentation": "\n <p>The Amazon Resource Name (ARN) of the cluster operation.</p>\n "
}
}
},
"UpdateBrokerStorageRequest": {
"type": "structure",
"members": {
Expand Down
Loading

0 comments on commit 4f521b8

Please sign in to comment.