Skip to content

Commit

Permalink
Updates SDK to v2.375.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 12, 2018
1 parent 4e074eb commit 68ad0d0
Show file tree
Hide file tree
Showing 20 changed files with 894 additions and 197 deletions.
22 changes: 22 additions & 0 deletions .changes/2.375.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "EKS",
"description": "Added support for updating kubernetes version of Amazon EKS clusters."
},
{
"type": "feature",
"category": "Glue",
"description": "API Update for Glue: this update enables encryption of password inside connection objects stored in AWS Glue Data Catalog using DataCatalogEncryptionSettings. In addition, a new \"HidePassword\" flag is added to GetConnection and GetConnections to return connections without passwords."
},
{
"type": "feature",
"category": "Route53",
"description": "You can now specify a new region, eu-north-1 (in Stockholm, Sweden), as a region for latency-based or geoproximity routing."
},
{
"type": "feature",
"category": "SageMaker",
"description": "Amazon SageMaker Automatic Model Tuning now supports early stopping of training jobs. With early stopping, training jobs that are unlikely to generate good models will be automatically stopped during a Hyperparameter Tuning Job."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.374.0-->
<!--LATEST=2.375.0-->
<!--ENTRYINSERT-->

## 2.375.0
* feature: EKS: Added support for updating kubernetes version of Amazon EKS clusters.
* feature: Glue: API Update for Glue: this update enables encryption of password inside connection objects stored in AWS Glue Data Catalog using DataCatalogEncryptionSettings. In addition, a new "HidePassword" flag is added to GetConnection and GetConnections to return connections without passwords.
* feature: Route53: You can now specify a new region, eu-north-1 (in Stockholm, Sweden), as a region for latency-based or geoproximity routing.
* feature: SageMaker: Amazon SageMaker Automatic Model Tuning now supports early stopping of training jobs. With early stopping, training jobs that are unlikely to generate good models will be automatically stopped during a Hyperparameter Tuning Job.

## 2.374.0
* feature: Connect: This update adds the GetContactAttributes operation to retrieve the attributes associated with a contact.
* feature: MediaStore: This release adds Delete Object Lifecycling to AWS MediaStore Containers.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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.374.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.375.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
131 changes: 131 additions & 0 deletions apis/eks-2017-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,37 @@
}
}
},
"DescribeUpdate": {
"http": {
"method": "GET",
"requestUri": "/clusters/{name}/updates/{updateId}"
},
"input": {
"type": "structure",
"required": [
"name",
"updateId"
],
"members": {
"name": {
"location": "uri",
"locationName": "name"
},
"updateId": {
"location": "uri",
"locationName": "updateId"
}
}
},
"output": {
"type": "structure",
"members": {
"update": {
"shape": "Si"
}
}
}
},
"ListClusters": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -136,6 +167,72 @@
"nextToken": {}
}
}
},
"ListUpdates": {
"http": {
"method": "GET",
"requestUri": "/clusters/{name}/updates"
},
"input": {
"type": "structure",
"required": [
"name"
],
"members": {
"name": {
"location": "uri",
"locationName": "name"
},
"nextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"maxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"updateIds": {
"shape": "S5"
},
"nextToken": {}
}
}
},
"UpdateClusterVersion": {
"http": {
"requestUri": "/clusters/{name}/updates"
},
"input": {
"type": "structure",
"required": [
"name",
"version"
],
"members": {
"name": {
"location": "uri",
"locationName": "name"
},
"version": {},
"clientRequestToken": {
"idempotencyToken": true
}
}
},
"output": {
"type": "structure",
"members": {
"update": {
"shape": "Si"
}
}
}
}
},
"shapes": {
Expand Down Expand Up @@ -176,6 +273,40 @@
"clientRequestToken": {},
"platformVersion": {}
}
},
"Si": {
"type": "structure",
"members": {
"id": {},
"status": {},
"type": {},
"params": {
"type": "list",
"member": {
"type": "structure",
"members": {
"type": {},
"value": {}
}
}
},
"createdAt": {
"type": "timestamp"
},
"errors": {
"type": "list",
"member": {
"type": "structure",
"members": {
"errorCode": {},
"errorMessage": {},
"resourceIds": {
"shape": "S5"
}
}
}
}
}
}
}
}
Loading

0 comments on commit 68ad0d0

Please sign in to comment.