Skip to content

Commit

Permalink
Updates SDK to v2.324.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 27, 2018
1 parent 6e7dfeb commit 1f0fa4f
Show file tree
Hide file tree
Showing 17 changed files with 3,153 additions and 2,577 deletions.
17 changes: 17 additions & 0 deletions .changes/2.324.0.json
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "APIGateway",
"description": "Adding support for OpenAPI 3.0 import and export."
},
{
"type": "feature",
"category": "CodeCommit",
"description": "This release adds API support for getting the contents of a file, getting the contents of a folder, and for deleting a file in an AWS CodeCommit repository."
},
{
"type": "feature",
"category": "MQ",
"description": "Amazon MQ supports ActiveMQ 5.15.6, in addition to 5.15.0. Automatic minor version upgrades can be toggled. Updated the documentation."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.323.0-->
<!--LATEST=2.324.0-->
<!--ENTRYINSERT-->

## 2.324.0
* feature: APIGateway: Adding support for OpenAPI 3.0 import and export.
* feature: CodeCommit: This release adds API support for getting the contents of a file, getting the contents of a folder, and for deleting a file in an AWS CodeCommit repository.
* feature: MQ: Amazon MQ supports ActiveMQ 5.15.6, in addition to 5.15.0. Automatic minor version upgrades can be toggled. Updated the documentation.

## 2.323.0
* feature: Glue: AWS Glue now supports data encryption at rest for ETL jobs and development endpoints. With encryption enabled, when you run ETL jobs, or development endpoints, Glue will use AWS KMS keys to write encrypted data at rest. You can also encrypt the metadata stored in the Glue Data Catalog using keys that you manage with AWS KMS. Additionally, you can use AWS KMS keys to encrypt the logs generated by crawlers and ETL jobs as well as encrypt ETL job bookmarks. Encryption settings for Glue crawlers, ETL jobs, and development endpoints can be configured using the security configurations in Glue. Glue Data Catalog encryption can be enabled via the settings for the Glue Data Catalog.
* feature: OpsWorksCM: This release introduces a new API called ExportServerEngineAttribute to Opsworks-CM. You can use this API call to export engine specific attributes like the UserData script used for unattended bootstrapping of new nodes that connect to the server.
Expand Down
2 changes: 1 addition & 1 deletion README.md
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.323.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.324.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
156 changes: 78 additions & 78 deletions apis/apigateway-2015-07-09.normal.json

Large diffs are not rendered by default.

195 changes: 171 additions & 24 deletions apis/codecommit-2015-04-13.min.json
Expand Up @@ -159,6 +159,44 @@
}
}
},
"DeleteFile": {
"input": {
"type": "structure",
"required": [
"repositoryName",
"branchName",
"filePath",
"parentCommitId"
],
"members": {
"repositoryName": {},
"branchName": {},
"filePath": {},
"parentCommitId": {},
"keepEmptyFolders": {
"type": "boolean"
},
"commitMessage": {},
"name": {},
"email": {}
}
},
"output": {
"type": "structure",
"required": [
"commitId",
"blobId",
"treeId",
"filePath"
],
"members": {
"commitId": {},
"blobId": {},
"treeId": {},
"filePath": {}
}
}
},
"DeleteRepository": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -341,10 +379,10 @@
"beforeBlobId": {},
"afterBlobId": {},
"location": {
"shape": "S1z"
"shape": "S26"
},
"comments": {
"shape": "S23"
"shape": "S29"
}
}
}
Expand Down Expand Up @@ -385,10 +423,10 @@
"beforeBlobId": {},
"afterBlobId": {},
"location": {
"shape": "S1z"
"shape": "S26"
},
"comments": {
"shape": "S23"
"shape": "S29"
}
}
}
Expand Down Expand Up @@ -426,10 +464,10 @@
},
"message": {},
"author": {
"shape": "S2d"
"shape": "S2i"
},
"committer": {
"shape": "S2d"
"shape": "S2i"
},
"additionalData": {}
}
Expand Down Expand Up @@ -465,10 +503,10 @@
"type": "structure",
"members": {
"beforeBlob": {
"shape": "S2o"
"shape": "S2r"
},
"afterBlob": {
"shape": "S2o"
"shape": "S2r"
},
"changeType": {}
}
Expand All @@ -478,6 +516,115 @@
}
}
},
"GetFile": {
"input": {
"type": "structure",
"required": [
"repositoryName",
"filePath"
],
"members": {
"repositoryName": {},
"commitSpecifier": {},
"filePath": {}
}
},
"output": {
"type": "structure",
"required": [
"commitId",
"blobId",
"filePath",
"fileMode",
"fileSize",
"fileContent"
],
"members": {
"commitId": {},
"blobId": {},
"filePath": {},
"fileMode": {},
"fileSize": {
"type": "long"
},
"fileContent": {
"type": "blob"
}
}
}
},
"GetFolder": {
"input": {
"type": "structure",
"required": [
"repositoryName",
"folderPath"
],
"members": {
"repositoryName": {},
"commitSpecifier": {},
"folderPath": {}
}
},
"output": {
"type": "structure",
"required": [
"commitId",
"folderPath"
],
"members": {
"commitId": {},
"folderPath": {},
"treeId": {},
"subFolders": {
"type": "list",
"member": {
"type": "structure",
"members": {
"treeId": {},
"absolutePath": {},
"relativePath": {}
}
}
},
"files": {
"type": "list",
"member": {
"type": "structure",
"members": {
"blobId": {},
"absolutePath": {},
"relativePath": {},
"fileMode": {}
}
}
},
"symbolicLinks": {
"type": "list",
"member": {
"type": "structure",
"members": {
"blobId": {},
"absolutePath": {},
"relativePath": {},
"fileMode": {}
}
}
},
"subModules": {
"type": "list",
"member": {
"type": "structure",
"members": {
"commitId": {},
"absolutePath": {},
"relativePath": {}
}
}
}
}
}
},
"GetMergeConflicts": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -566,7 +713,7 @@
"members": {
"configurationId": {},
"triggers": {
"shape": "S32"
"shape": "S3k"
}
}
}
Expand All @@ -586,7 +733,7 @@
"type": "structure",
"members": {
"branches": {
"shape": "S36"
"shape": "S3o"
},
"nextToken": {}
}
Expand Down Expand Up @@ -683,7 +830,7 @@
"beforeCommitId": {},
"afterCommitId": {},
"location": {
"shape": "S1z"
"shape": "S26"
},
"content": {},
"clientRequestToken": {
Expand All @@ -700,7 +847,7 @@
"beforeBlobId": {},
"afterBlobId": {},
"location": {
"shape": "S1z"
"shape": "S26"
},
"comment": {
"shape": "S16"
Expand All @@ -725,7 +872,7 @@
"beforeCommitId": {},
"afterCommitId": {},
"location": {
"shape": "S1z"
"shape": "S26"
},
"content": {},
"clientRequestToken": {
Expand All @@ -743,7 +890,7 @@
"beforeBlobId": {},
"afterBlobId": {},
"location": {
"shape": "S1z"
"shape": "S26"
},
"comment": {
"shape": "S16"
Expand Down Expand Up @@ -824,7 +971,7 @@
"members": {
"repositoryName": {},
"triggers": {
"shape": "S32"
"shape": "S3k"
}
}
},
Expand All @@ -845,7 +992,7 @@
"members": {
"repositoryName": {},
"triggers": {
"shape": "S32"
"shape": "S3k"
}
}
},
Expand Down Expand Up @@ -1044,8 +1191,8 @@
"sourceReference": {},
"destinationReference": {},
"destinationCommit": {},
"mergeBase": {},
"sourceCommit": {},
"mergeBase": {},
"mergeMetadata": {
"shape": "Sw"
}
Expand Down Expand Up @@ -1090,7 +1237,7 @@
"clientRequestToken": {}
}
},
"S1z": {
"S26": {
"type": "structure",
"members": {
"filePath": {},
Expand All @@ -1100,29 +1247,29 @@
"relativeFileVersion": {}
}
},
"S23": {
"S29": {
"type": "list",
"member": {
"shape": "S16"
}
},
"S2d": {
"S2i": {
"type": "structure",
"members": {
"name": {},
"email": {},
"date": {}
}
},
"S2o": {
"S2r": {
"type": "structure",
"members": {
"blobId": {},
"path": {},
"mode": {}
}
},
"S32": {
"S3k": {
"type": "list",
"member": {
"type": "structure",
Expand All @@ -1136,7 +1283,7 @@
"destinationArn": {},
"customData": {},
"branches": {
"shape": "S36"
"shape": "S3o"
},
"events": {
"type": "list",
Expand All @@ -1145,7 +1292,7 @@
}
}
},
"S36": {
"S3o": {
"type": "list",
"member": {}
}
Expand Down

0 comments on commit 1f0fa4f

Please sign in to comment.