Skip to content

Commit

Permalink
Release v1.31.7 (2020-05-28) (#3343)
Browse files Browse the repository at this point in the history
Release v1.31.7 (2020-05-28)
===

### Service Client Updates
* `service/kafka`: Updates service API and documentation
* `service/marketplace-catalog`: Updates service API and documentation
* `service/qldb-session`: Updates service documentation
* `service/workmail`: Updates service API and documentation
  * This release adds support for Amazon WorkMail organization-level retention policies.
  • Loading branch information
aws-sdk-go-automation committed May 28, 2020
1 parent cf7f7d1 commit 645efef
Show file tree
Hide file tree
Showing 18 changed files with 1,693 additions and 52 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.31.7 (2020-05-28)
===

### Service Client Updates
* `service/kafka`: Updates service API and documentation
* `service/marketplace-catalog`: Updates service API and documentation
* `service/qldb-session`: Updates service documentation
* `service/workmail`: Updates service API and documentation
* This release adds support for Amazon WorkMail organization-level retention policies.

Release v1.31.6 (2020-05-27)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.31.6"
const SDKVersion = "1.31.7"
185 changes: 184 additions & 1 deletion models/apis/kafka/2018-11-14/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,43 @@
}
]
},
"GetCompatibleKafkaVersions" : {
"name" : "GetCompatibleKafkaVersions",
"http" : {
"method" : "GET",
"requestUri" : "/v1/compatible-kafka-versions",
"responseCode" : 200
},
"input" : {
"shape" : "GetCompatibleKafkaVersionsRequest"
},
"output" : {
"shape" : "GetCompatibleKafkaVersionsResponse"
},
"errors" : [
{
"shape" : "BadRequestException"
},
{
"shape" : "UnauthorizedException"
},
{
"shape" : "InternalServerErrorException"
},
{
"shape" : "ForbiddenException"
},
{
"shape" : "NotFoundException"
},
{
"shape" : "ServiceUnavailableException"
},
{
"shape" : "TooManyRequestsException"
}
]
},
"ListClusterOperations": {
"name": "ListClusterOperations",
"http": {
Expand Down Expand Up @@ -617,6 +654,43 @@
}
]
},
"UpdateClusterKafkaVersion" : {
"name" : "UpdateClusterKafkaVersion",
"http" : {
"method" : "PUT",
"requestUri" : "/v1/clusters/{clusterArn}/version",
"responseCode" : 200
},
"input" : {
"shape" : "UpdateClusterKafkaVersionRequest"
},
"output" : {
"shape" : "UpdateClusterKafkaVersionResponse"
},
"errors" : [
{
"shape" : "BadRequestException"
},
{
"shape" : "UnauthorizedException"
},
{
"shape" : "InternalServerErrorException"
},
{
"shape" : "ForbiddenException"
},
{
"shape" : "NotFoundException"
},
{
"shape" : "ServiceUnavailableException"
},
{
"shape" : "TooManyRequestsException"
}
]
},
"UpdateMonitoring" : {
"name" : "UpdateMonitoring",
"http" : {
Expand Down Expand Up @@ -899,6 +973,10 @@
"shape": "ErrorInfo",
"locationName": "errorInfo"
},
"OperationSteps": {
"shape": "__listOfClusterOperationStep",
"locationName": "operationSteps"
},
"OperationArn": {
"shape": "__string",
"locationName": "operationArn"
Expand All @@ -921,6 +999,28 @@
}
}
},
"ClusterOperationStep" : {
"type" : "structure",
"members" : {
"StepInfo" : {
"shape" : "ClusterOperationStepInfo",
"locationName" : "stepInfo"
},
"StepName" : {
"shape" : "__string",
"locationName" : "stepName"
}
}
},
"ClusterOperationStepInfo" : {
"type" : "structure",
"members" : {
"StepStatus" : {
"shape" : "__string",
"locationName" : "stepStatus"
}
}
},
"ClusterState": {
"type": "string",
"enum": [
Expand All @@ -931,6 +1031,19 @@
"FAILED"
]
},
"CompatibleKafkaVersion" : {
"type" : "structure",
"members" : {
"SourceVersion" : {
"shape" : "__string",
"locationName" : "sourceVersion"
},
"TargetVersions" : {
"shape" : "__listOf__string",
"locationName" : "targetVersions"
}
}
},
"Configuration": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -1117,7 +1230,6 @@
},
"required": [
"ServerProperties",
"KafkaVersions",
"Name"
]
},
Expand Down Expand Up @@ -1441,6 +1553,25 @@
}
}
},
"GetCompatibleKafkaVersionsRequest" : {
"type" : "structure",
"members" : {
"ClusterArn" : {
"shape" : "__string",
"location" : "querystring",
"locationName" : "clusterArn"
}
}
},
"GetCompatibleKafkaVersionsResponse" : {
"type" : "structure",
"members" : {
"CompatibleKafkaVersions" : {
"shape" : "__listOfCompatibleKafkaVersion",
"locationName" : "compatibleKafkaVersions"
}
}
},
"InternalServerErrorException": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -1735,6 +1866,10 @@
"shape" : "EnhancedMonitoring",
"locationName" : "enhancedMonitoring"
},
"KafkaVersion" : {
"shape" : "__string",
"locationName" : "kafkaVersion"
},
"LoggingInfo": {
"shape": "LoggingInfo",
"locationName": "loggingInfo"
Expand Down Expand Up @@ -2020,6 +2155,42 @@
}
}
},
"UpdateClusterKafkaVersionRequest" : {
"type" : "structure",
"members" : {
"ClusterArn" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "clusterArn"
},
"ConfigurationInfo" : {
"shape" : "ConfigurationInfo",
"locationName" : "configurationInfo"
},
"CurrentVersion" : {
"shape" : "__string",
"locationName" : "currentVersion"
},
"TargetKafkaVersion" : {
"shape" : "__string",
"locationName" : "targetKafkaVersion"
}
},
"required" : [ "ClusterArn", "TargetKafkaVersion", "CurrentVersion" ]
},
"UpdateClusterKafkaVersionResponse" : {
"type" : "structure",
"members" : {
"ClusterArn" : {
"shape" : "__string",
"locationName" : "clusterArn"
},
"ClusterOperationArn" : {
"shape" : "__string",
"locationName" : "clusterOperationArn"
}
}
},
"UpdateMonitoringRequest" : {
"type" : "structure",
"members" : {
Expand Down Expand Up @@ -2229,6 +2400,18 @@
"shape": "ClusterOperationInfo"
}
},
"__listOfClusterOperationStep" : {
"type" : "list",
"member" : {
"shape" : "ClusterOperationStep"
}
},
"__listOfCompatibleKafkaVersion" : {
"type" : "list",
"member" : {
"shape" : "CompatibleKafkaVersion"
}
},
"__listOfConfiguration": {
"type": "list",
"member": {
Expand Down
50 changes: 50 additions & 0 deletions models/apis/kafka/2018-11-14/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"DescribeConfiguration" : "<p>Returns a description of this MSK configuration.</p>",
"DescribeConfigurationRevision" : "<p>Returns a description of this revision of the configuration.</p>",
"GetBootstrapBrokers" : "<p>A list of brokers that a client application can use to bootstrap.</p>",
"GetCompatibleKafkaVersions" : "<p>Gets the Apache Kafka versions to which you can update the MSK cluster.</p>",
"ListClusterOperations" : "<p>Returns a list of all the operations that have been performed on the specified MSK cluster.</p>",
"ListClusters" : "<p>Returns a list of all the MSK clusters in the current Region.</p>",
"ListConfigurationRevisions" : "<p>Returns a list of all the revisions of an MSK configuration.</p>",
Expand All @@ -22,6 +23,7 @@
"UpdateBrokerCount" : "<p>Updates the number of broker nodes in the cluster. You can use this operation to increase the number of brokers in an existing cluster. You can't decrease the number of brokers.</p>",
"UpdateBrokerStorage" : "<p>Updates the EBS storage associated with MSK brokers.</p>",
"UpdateClusterConfiguration" : "<p>Updates the cluster with the configuration that is specified in the request body.</p>",
"UpdateClusterKafkaVersion" : "<p>Updates the Apache Kafka version for the cluster.</p>",
"UpdateMonitoring" : "<p>Updates the monitoring settings for the cluster. You can use this operation to specify which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can also specify settings for open monitoring with Prometheus.</p>"
},
"shapes" : {
Expand Down Expand Up @@ -100,6 +102,18 @@
"__listOfClusterOperationInfo$member" : null
}
},
"ClusterOperationStep" : {
"base" : "<p>Step taken during a cluster operation.</p>",
"refs" : {
"__listOfClusterOperationStep$member" : null
}
},
"ClusterOperationStepInfo" : {
"base" : "<p>State information about the operation step.</p>",
"refs" : {
"ClusterOperationStep$StepInfo" : "<p>Information about the step and its status.</p>"
}
},
"ClusterState" : {
"base" : "<p>The state of a Kafka cluster.</p>",
"refs" : {
Expand All @@ -108,6 +122,12 @@
"DeleteClusterResponse$State" : "<p>The state of the cluster. The possible states are CREATING, ACTIVE, and FAILED.</p>"
}
},
"CompatibleKafkaVersion" : {
"base" : "<p>Contains source Kafka versions and compatible target Kafka versions.</p>",
"refs" : {
"__listOfCompatibleKafkaVersion$member" : null
}
},
"Configuration" : {
"base" : "<p>Represents an MSK Configuration.</p>",
"refs" : {
Expand Down Expand Up @@ -229,6 +249,10 @@
"base" : "<p>Returns a string containing one or more hostname:port pairs.</p>",
"refs" : { }
},
"GetCompatibleKafkaVersionsResponse" : {
"base" : "<p>Response body for GetCompatibleKafkaVersions.</p>",
"refs" : { }
},
"InternalServerErrorException" : {
"base" : "<p>Returns information about an error.</p>",
"refs" : { }
Expand Down Expand Up @@ -419,6 +443,14 @@
"base" : "<p>Response body for UpdateClusterConfiguration.</p>",
"refs" : { }
},
"UpdateClusterKafkaVersionRequest" : {
"base" : "<p>Request body for UpdateClusterKafkaVersion.</p>",
"refs" : { }
},
"UpdateClusterKafkaVersionResponse" : {
"base" : "<p>Response body for UpdateClusterKafkaVersion.</p>",
"refs" : { }
},
"UpdateMonitoringRequest" : {
"base" : "<p>Request body for UpdateMonitoring.</p>",
"refs" : { }
Expand Down Expand Up @@ -494,6 +526,18 @@
"ListClusterOperationsResponse$ClusterOperationInfoList" : "<p>An array of cluster operation information objects.</p>"
}
},
"__listOfClusterOperationStep" : {
"base" : null,
"refs" : {
"ClusterOperationInfo$OperationSteps" : "<p>Steps completed during the operation.</p>"
}
},
"__listOfCompatibleKafkaVersion" : {
"base" : null,
"refs" : {
"GetCompatibleKafkaVersionsResponse$CompatibleKafkaVersions" : "<p>A list of CompatibleKafkaVersion objects.</p>"
}
},
"__listOfConfiguration" : {
"base" : null,
"refs" : {
Expand Down Expand Up @@ -569,6 +613,8 @@
"ClusterOperationInfo$OperationArn" : "<p>ARN of the cluster operation.</p>",
"ClusterOperationInfo$OperationState" : "<p>State of the cluster operation.</p>",
"ClusterOperationInfo$OperationType" : "<p>Type of the cluster operation.</p>",
"ClusterOperationStep$StepName" : "<p>The name of the step.</p>",
"ClusterOperationStepInfo$StepStatus" : "<p>The steps current status.</p>",
"Configuration$Arn" : "<p>The Amazon Resource Name (ARN) of the configuration.</p>",
"Configuration$Description" : "<p>The description of the configuration.</p>",
"Configuration$Name" : "<p>The name of the configuration. Configuration names are strings that match the regex \"^[0-9A-Za-z-]+$\".</p>",
Expand Down Expand Up @@ -617,6 +663,10 @@
"UpdateClusterConfigurationRequest$CurrentVersion" : "<p>The version of the cluster that you want to update.</p>",
"UpdateClusterConfigurationResponse$ClusterArn" : "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
"UpdateClusterConfigurationResponse$ClusterOperationArn" : "<p>The Amazon Resource Name (ARN) of the cluster operation.</p>",
"UpdateClusterKafkaVersionRequest$CurrentVersion" : "<p>Current cluster version.</p>",
"UpdateClusterKafkaVersionRequest$TargetKafkaVersion" : "<p>Target Kafka version.</p>",
"UpdateClusterKafkaVersionResponse$ClusterArn" : "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
"UpdateClusterKafkaVersionResponse$ClusterOperationArn" : "<p>The Amazon Resource Name (ARN) of the cluster operation.</p>",
"UpdateMonitoringRequest$CurrentVersion" : "<p>The version of cluster to update from. A successful operation will then generate a new version.</p>",
"UpdateMonitoringResponse$ClusterArn" : "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
"UpdateMonitoringResponse$ClusterOperationArn" : "<p>The Amazon Resource Name (ARN) of the cluster operation.</p>",
Expand Down
1 change: 1 addition & 0 deletions models/apis/marketplace-catalog/2018-09-17/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@
"members":{
"ChangeType":{"shape":"ChangeType"},
"Entity":{"shape":"Entity"},
"Details":{"shape":"Json"},
"ErrorDetailList":{"shape":"ErrorDetailList"}
}
},
Expand Down

0 comments on commit 645efef

Please sign in to comment.