Skip to content

Commit

Permalink
Updates SDK to v2.378.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 17, 2018
1 parent 11b7544 commit 1c5d58b
Show file tree
Hide file tree
Showing 15 changed files with 2,138 additions and 1,566 deletions.
12 changes: 12 additions & 0 deletions .changes/2.378.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "ECR",
"description": "This release adds support for ECR repository tagging."
},
{
"type": "feature",
"category": "QuickSight",
"description": "Amazon QuickSight's RegisterUser API now generates a user invitation URL when registering a user with the QuickSight identity type. This URL can then be used by the registered QuickSight user to complete the user registration process. This release also corrects some HTTP return status codes."
}
]
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.377.0-->
<!--LATEST=2.378.0-->
<!--ENTRYINSERT-->

## 2.378.0
* feature: ECR: This release adds support for ECR repository tagging.
* feature: QuickSight: Amazon QuickSight's RegisterUser API now generates a user invitation URL when registering a user with the QuickSight identity type. This URL can then be used by the registered QuickSight user to complete the user registration process. This release also corrects some HTTP return status codes.

## 2.377.0
* feature: AlexaForBusiness: Released new APIs for managing private skill access to Enrolled Users. These API's are the equivalent of the A4B console for Private Skills checkbox "Available for Users".
* feature: Comprehend: enable cors
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.377.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.378.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
87 changes: 79 additions & 8 deletions apis/ecr-2015-09-21.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,17 @@
"repositoryName"
],
"members": {
"repositoryName": {}
"repositoryName": {},
"tags": {
"shape": "S12"
}
}
},
"output": {
"type": "structure",
"members": {
"repository": {
"shape": "S13"
"shape": "S17"
}
}
}
Expand Down Expand Up @@ -209,7 +212,7 @@
"type": "structure",
"members": {
"repository": {
"shape": "S13"
"shape": "S17"
}
}
}
Expand Down Expand Up @@ -270,7 +273,7 @@
"repositoryName": {},
"imageDigest": {},
"imageTags": {
"shape": "S1p"
"shape": "S1t"
},
"imageSizeInBytes": {
"type": "long"
Expand Down Expand Up @@ -306,7 +309,7 @@
"repositories": {
"type": "list",
"member": {
"shape": "S13"
"shape": "S17"
}
},
"nextToken": {}
Expand Down Expand Up @@ -424,7 +427,7 @@
"type": "structure",
"members": {
"imageTags": {
"shape": "S1p"
"shape": "S1t"
},
"imageDigest": {},
"imagePushedAt": {
Expand Down Expand Up @@ -525,6 +528,25 @@
}
}
},
"ListTagsForResource": {
"input": {
"type": "structure",
"required": [
"resourceArn"
],
"members": {
"resourceArn": {}
}
},
"output": {
"type": "structure",
"members": {
"tags": {
"shape": "S12"
}
}
}
},
"PutImage": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -617,6 +639,45 @@
}
}
},
"TagResource": {
"input": {
"type": "structure",
"required": [
"resourceArn",
"tags"
],
"members": {
"resourceArn": {},
"tags": {
"shape": "S12"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"input": {
"type": "structure",
"required": [
"resourceArn",
"tagKeys"
],
"members": {
"resourceArn": {},
"tagKeys": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UploadLayerPart": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -693,7 +754,17 @@
"imageManifest": {}
}
},
"S13": {
"S12": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Key": {},
"Value": {}
}
}
},
"S17": {
"type": "structure",
"members": {
"repositoryArn": {},
Expand All @@ -705,7 +776,7 @@
}
}
},
"S1p": {
"S1t": {
"type": "list",
"member": {}
}
Expand Down
Loading

0 comments on commit 1c5d58b

Please sign in to comment.