Skip to content

Commit

Permalink
Updates SDK to v2.427.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 22, 2019
1 parent 4f91085 commit 6d08a08
Show file tree
Hide file tree
Showing 14 changed files with 1,264 additions and 759 deletions.
12 changes: 12 additions & 0 deletions .changes/2.427.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "IoT1ClickProjects",
"description": "This release adds tagging support for AWS IoT 1-Click Project resources. Use these APIs to add, remove, or list tags on Projects, and leverage the tags for various authorization and billing scenarios. This release also adds the ARN property to projects for DescribeProject and ListProject responses."
},
{
"type": "feature",
"category": "TranscribeService",
"description": "Amazon Transcribe - support transcriptions from audio sources in German (de-DE) and Korean (ko-KR)."
}
]
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.426.0-->
<!--LATEST=2.427.0-->
<!--ENTRYINSERT-->

## 2.427.0
* feature: IoT1ClickProjects: This release adds tagging support for AWS IoT 1-Click Project resources. Use these APIs to add, remove, or list tags on Projects, and leverage the tags for various authorization and billing scenarios. This release also adds the ARN property to projects for DescribeProject and ListProject responses.
* feature: TranscribeService: Amazon Transcribe - support transcriptions from audio sources in German (de-DE) and Korean (ko-KR).

## 2.426.0
* bugfix: Paginator: still send '{}' in body for requests other than GET
* feature: CloudWatchEvents: Added 3 new APIs, and one additional parameter to the PutRule API, to support tagging of CloudWatch Events rules.
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.426.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.427.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
96 changes: 96 additions & 0 deletions apis/iot1click-projects-2018-05-14.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@
"description": {},
"placementTemplate": {
"shape": "Se"
},
"tags": {
"shape": "Sn"
}
}
},
Expand Down Expand Up @@ -229,6 +232,7 @@
"updatedDate"
],
"members": {
"arn": {},
"projectName": {},
"description": {},
"createdDate": {
Expand All @@ -239,6 +243,9 @@
},
"placementTemplate": {
"shape": "Se"
},
"tags": {
"shape": "Sn"
}
}
}
Expand Down Expand Up @@ -406,12 +413,16 @@
"updatedDate"
],
"members": {
"arn": {},
"projectName": {},
"createdDate": {
"type": "timestamp"
},
"updatedDate": {
"type": "timestamp"
},
"tags": {
"shape": "Sn"
}
}
}
Expand All @@ -420,6 +431,86 @@
}
}
},
"ListTagsForResource": {
"http": {
"method": "GET",
"requestUri": "/tags/{resourceArn}"
},
"input": {
"type": "structure",
"required": [
"resourceArn"
],
"members": {
"resourceArn": {
"location": "uri",
"locationName": "resourceArn"
}
}
},
"output": {
"type": "structure",
"members": {
"tags": {
"shape": "Sn"
}
}
}
},
"TagResource": {
"http": {
"requestUri": "/tags/{resourceArn}"
},
"input": {
"type": "structure",
"required": [
"resourceArn",
"tags"
],
"members": {
"resourceArn": {
"location": "uri",
"locationName": "resourceArn"
},
"tags": {
"shape": "Sn"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"http": {
"method": "DELETE",
"requestUri": "/tags/{resourceArn}"
},
"input": {
"type": "structure",
"required": [
"resourceArn",
"tagKeys"
],
"members": {
"resourceArn": {
"location": "uri",
"locationName": "resourceArn"
},
"tagKeys": {
"location": "querystring",
"locationName": "tagKeys",
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UpdatePlacement": {
"http": {
"method": "PUT",
Expand Down Expand Up @@ -507,6 +598,11 @@
}
}
}
},
"Sn": {
"type": "map",
"key": {},
"value": {}
}
}
}
Loading

0 comments on commit 6d08a08

Please sign in to comment.