Skip to content

Commit

Permalink
Updates SDK to v2.663.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 24, 2020
1 parent c59526b commit a8ada34
Show file tree
Hide file tree
Showing 16 changed files with 772 additions and 43 deletions.
12 changes: 12 additions & 0 deletions .changes/2.663.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "ElasticInference",
"description": "This feature allows customers to describe the accelerator types and offerings on any region where Elastic Inference is available."
},
{
"type": "feature",
"category": "Iot",
"description": "This release adds a new exception type to the AWS IoT SetV2LoggingLevel API."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.662.0-->
<!--LATEST=2.663.0-->
<!--ENTRYINSERT-->

## 2.663.0
* feature: ElasticInference: This feature allows customers to describe the accelerator types and offerings on any region where Elastic Inference is available.
* feature: Iot: This release adds a new exception type to the AWS IoT SetV2LoggingLevel API.

## 2.662.0
* feature: ApplicationAutoScaling: This release supports Auto Scaling in Amazon Keyspaces for Apache Cassandra.
* feature: Firehose: You can now deliver streaming data to an Amazon Elasticsearch Service domain in an Amazon VPC. You can now compress streaming data delivered to S3 using Hadoop-Snappy in addition to Gzip, Zip and Snappy formats.
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.662.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.663.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
2 changes: 1 addition & 1 deletion apis/dlm-2018-01-12.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
"members": {
"Interval": {
"shape": "Interval",
"documentation": "<p>The interval between snapshots. The supported values are 2, 3, 4, 6, 8, 12, and 24.</p>"
"documentation": "<p>The interval between snapshots. The supported values are 1, 2, 3, 4, 6, 8, 12, and 24.</p>"
},
"IntervalUnit": {
"shape": "IntervalUnitValues",
Expand Down
141 changes: 137 additions & 4 deletions apis/elastic-inference-2017-07-25.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "2.0",
"metadata": {
"apiVersion": "2017-07-25",
"endpointPrefix": "elastic-inference",
"endpointPrefix": "api.elastic-inference",
"jsonVersion": "1.1",
"protocol": "rest-json",
"serviceAbbreviation": "Amazon Elastic Inference",
Expand All @@ -13,6 +13,139 @@
"uid": "elastic-inference-2017-07-25"
},
"operations": {
"DescribeAcceleratorOfferings": {
"http": {
"requestUri": "/describe-accelerator-offerings"
},
"input": {
"type": "structure",
"required": [
"locationType"
],
"members": {
"locationType": {},
"acceleratorTypes": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {
"acceleratorTypeOfferings": {
"type": "list",
"member": {
"type": "structure",
"members": {
"acceleratorType": {},
"locationType": {},
"location": {}
}
}
}
}
}
},
"DescribeAcceleratorTypes": {
"http": {
"method": "GET",
"requestUri": "/describe-accelerator-types"
},
"input": {
"type": "structure",
"members": {}
},
"output": {
"type": "structure",
"members": {
"acceleratorTypes": {
"type": "list",
"member": {
"type": "structure",
"members": {
"acceleratorTypeName": {},
"memoryInfo": {
"type": "structure",
"members": {
"sizeInMiB": {
"type": "integer"
}
}
},
"throughputInfo": {
"type": "list",
"member": {
"type": "structure",
"members": {
"key": {},
"value": {
"type": "integer"
}
}
}
}
}
}
}
}
}
},
"DescribeAccelerators": {
"http": {
"requestUri": "/describe-accelerators"
},
"input": {
"type": "structure",
"members": {
"acceleratorIds": {
"type": "list",
"member": {}
},
"filters": {
"type": "list",
"member": {
"type": "structure",
"members": {
"name": {},
"values": {
"type": "list",
"member": {}
}
}
}
},
"maxResults": {
"type": "integer"
},
"nextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"acceleratorSet": {
"type": "list",
"member": {
"type": "structure",
"members": {
"acceleratorHealth": {
"type": "structure",
"members": {
"status": {}
}
},
"acceleratorType": {},
"acceleratorId": {},
"availabilityZone": {},
"attachedResource": {}
}
}
},
"nextToken": {}
}
}
},
"ListTagsForResource": {
"http": {
"method": "GET",
Expand All @@ -34,7 +167,7 @@
"type": "structure",
"members": {
"tags": {
"shape": "S4"
"shape": "S13"
}
}
}
Expand All @@ -55,7 +188,7 @@
"locationName": "resourceArn"
},
"tags": {
"shape": "S4"
"shape": "S13"
}
}
},
Expand Down Expand Up @@ -95,7 +228,7 @@
}
},
"shapes": {
"S4": {
"S13": {
"type": "map",
"key": {},
"value": {}
Expand Down
Loading

0 comments on commit a8ada34

Please sign in to comment.