Skip to content

Commit

Permalink
Updates SDK to v2.686.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 28, 2020
1 parent 68a3fd6 commit 8e30e7e
Show file tree
Hide file tree
Showing 20 changed files with 987 additions and 80 deletions.
17 changes: 17 additions & 0 deletions .changes/2.686.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "Kafka",
"description": "New APIs for upgrading the Apache Kafka version of a cluster and to find out compatible upgrade paths"
},
{
"type": "feature",
"category": "MarketplaceCatalog",
"description": "AWS Marketplace Catalog now supports accessing initial change payloads with DescribeChangeSet operation."
},
{
"type": "feature",
"category": "WorkMail",
"description": "This release adds support for Amazon WorkMail organization-level retention policies."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.685.0-->
<!--LATEST=2.686.0-->
<!--ENTRYINSERT-->

## 2.686.0
* feature: Kafka: New APIs for upgrading the Apache Kafka version of a cluster and to find out compatible upgrade paths
* feature: MarketplaceCatalog: AWS Marketplace Catalog now supports accessing initial change payloads with DescribeChangeSet operation.
* feature: WorkMail: This release adds support for Amazon WorkMail organization-level retention policies.

## 2.685.0
* feature: ELBv2: This release added support for HTTP/2 ALPN preference lists for Network Load Balancers

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.685.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.686.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
116 changes: 109 additions & 7 deletions apis/kafka-2018-11-14.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@
},
"required": [
"ServerProperties",
"KafkaVersions",
"Name"
]
},
Expand Down Expand Up @@ -346,6 +345,43 @@
}
}
},
"GetCompatibleKafkaVersions": {
"http": {
"method": "GET",
"requestUri": "/v1/compatible-kafka-versions",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"ClusterArn": {
"location": "querystring",
"locationName": "clusterArn"
}
}
},
"output": {
"type": "structure",
"members": {
"CompatibleKafkaVersions": {
"locationName": "compatibleKafkaVersions",
"type": "list",
"member": {
"type": "structure",
"members": {
"SourceVersion": {
"locationName": "sourceVersion"
},
"TargetVersions": {
"shape": "S4",
"locationName": "targetVersions"
}
}
}
}
}
}
},
"ListClusterOperations": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -822,7 +858,7 @@
"locationName": "currentVersion"
},
"TargetBrokerEBSVolumeInfo": {
"shape": "S1l",
"shape": "S1o",
"locationName": "targetBrokerEBSVolumeInfo"
}
},
Expand Down Expand Up @@ -883,6 +919,48 @@
}
}
},
"UpdateClusterKafkaVersion": {
"http": {
"method": "PUT",
"requestUri": "/v1/clusters/{clusterArn}/version",
"responseCode": 200
},
"input": {
"type": "structure",
"members": {
"ClusterArn": {
"location": "uri",
"locationName": "clusterArn"
},
"ConfigurationInfo": {
"shape": "Sd",
"locationName": "configurationInfo"
},
"CurrentVersion": {
"locationName": "currentVersion"
},
"TargetKafkaVersion": {
"locationName": "targetKafkaVersion"
}
},
"required": [
"ClusterArn",
"TargetKafkaVersion",
"CurrentVersion"
]
},
"output": {
"type": "structure",
"members": {
"ClusterArn": {
"locationName": "clusterArn"
},
"ClusterOperationArn": {
"locationName": "clusterOperationArn"
}
}
}
},
"UpdateMonitoring": {
"http": {
"method": "PUT",
Expand Down Expand Up @@ -1332,24 +1410,45 @@
"OperationState": {
"locationName": "operationState"
},
"OperationSteps": {
"locationName": "operationSteps",
"type": "list",
"member": {
"type": "structure",
"members": {
"StepInfo": {
"locationName": "stepInfo",
"type": "structure",
"members": {
"StepStatus": {
"locationName": "stepStatus"
}
}
},
"StepName": {
"locationName": "stepName"
}
}
}
},
"OperationType": {
"locationName": "operationType"
},
"SourceClusterInfo": {
"shape": "S1k",
"shape": "S1n",
"locationName": "sourceClusterInfo"
},
"TargetClusterInfo": {
"shape": "S1k",
"shape": "S1n",
"locationName": "targetClusterInfo"
}
}
},
"S1k": {
"S1n": {
"type": "structure",
"members": {
"BrokerEBSVolumeInfo": {
"shape": "S1l",
"shape": "S1o",
"locationName": "brokerEBSVolumeInfo"
},
"ConfigurationInfo": {
Expand All @@ -1367,13 +1466,16 @@
"shape": "S1a",
"locationName": "openMonitoring"
},
"KafkaVersion": {
"locationName": "kafkaVersion"
},
"LoggingInfo": {
"shape": "Sq",
"locationName": "loggingInfo"
}
}
},
"S1l": {
"S1o": {
"type": "list",
"member": {
"type": "structure",
Expand Down
Loading

0 comments on commit 8e30e7e

Please sign in to comment.