Skip to content

Commit

Permalink
Updates SDK to v2.312.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 10, 2018
1 parent 3839328 commit 4ed5104
Show file tree
Hide file tree
Showing 15 changed files with 1,216 additions and 769 deletions.
12 changes: 12 additions & 0 deletions .changes/2.312.0.json
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "CloudHSMV2",
"description": "With this release, we are adding 2 new APIs. DeleteBackup deletes a specified AWS CloudHSM backup. A backup can be restored up to 7 days after the DeleteBackup request. During this 7-day period, the backup will be in state PENDING_DELETION. Backups can be restored using the RestoreBackup API, which will move the backup from state PENDING_DELETION back to ACTIVE."
},
{
"type": "feature",
"category": "Redshift",
"description": "Adding support to Redshift to change the encryption type after cluster creation completes."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.311.0-->
<!--LATEST=2.312.0-->
<!--ENTRYINSERT-->

## 2.312.0
* feature: CloudHSMV2: With this release, we are adding 2 new APIs. DeleteBackup deletes a specified AWS CloudHSM backup. A backup can be restored up to 7 days after the DeleteBackup request. During this 7-day period, the backup will be in state PENDING_DELETION. Backups can be restored using the RestoreBackup API, which will move the backup from state PENDING_DELETION back to ACTIVE.
* feature: Redshift: Adding support to Redshift to change the encryption type after cluster creation completes.

## 2.311.0
* feature: CloudWatchLogs: * Adding a log prefix parameter for filter log events API and minor updates to the documentation
* feature: ConfigService: Adding a new field "createdBy" to the ConfigRule data model. The field is populated only if the rule is service linked i.e the rule is created by a service. The field is empty for normal rules created by customer.
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.311.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.312.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
92 changes: 68 additions & 24 deletions apis/cloudhsmv2-2017-04-28.min.json
Expand Up @@ -90,6 +90,25 @@
}
}
},
"DeleteBackup": {
"input": {
"type": "structure",
"required": [
"BackupId"
],
"members": {
"BackupId": {}
}
},
"output": {
"type": "structure",
"members": {
"Backup": {
"shape": "Sz"
}
}
}
},
"DeleteCluster": {
"input": {
"type": "structure",
Expand Down Expand Up @@ -138,7 +157,7 @@
"type": "integer"
},
"Filters": {
"shape": "S14"
"shape": "S18"
},
"SortAscending": {
"type": "boolean"
Expand All @@ -151,24 +170,7 @@
"Backups": {
"type": "list",
"member": {
"type": "structure",
"required": [
"BackupId"
],
"members": {
"BackupId": {},
"BackupState": {},
"ClusterId": {},
"CreateTimestamp": {
"type": "timestamp"
},
"CopyTimestamp": {
"type": "timestamp"
},
"SourceRegion": {},
"SourceBackup": {},
"SourceCluster": {}
}
"shape": "Sz"
}
},
"NextToken": {}
Expand All @@ -180,7 +182,7 @@
"type": "structure",
"members": {
"Filters": {
"shape": "S14"
"shape": "S18"
},
"NextToken": {},
"MaxResults": {
Expand Down Expand Up @@ -244,12 +246,31 @@
],
"members": {
"TagList": {
"shape": "S1j"
"shape": "S1l"
},
"NextToken": {}
}
}
},
"RestoreBackup": {
"input": {
"type": "structure",
"required": [
"BackupId"
],
"members": {
"BackupId": {}
}
},
"output": {
"type": "structure",
"members": {
"Backup": {
"shape": "Sz"
}
}
}
},
"TagResource": {
"input": {
"type": "structure",
Expand All @@ -260,7 +281,7 @@
"members": {
"ResourceId": {},
"TagList": {
"shape": "S1j"
"shape": "S1l"
}
}
},
Expand Down Expand Up @@ -345,15 +366,38 @@
"StateMessage": {}
}
},
"S14": {
"Sz": {
"type": "structure",
"required": [
"BackupId"
],
"members": {
"BackupId": {},
"BackupState": {},
"ClusterId": {},
"CreateTimestamp": {
"type": "timestamp"
},
"CopyTimestamp": {
"type": "timestamp"
},
"SourceRegion": {},
"SourceBackup": {},
"SourceCluster": {},
"DeleteTimestamp": {
"type": "timestamp"
}
}
},
"S18": {
"type": "map",
"key": {},
"value": {
"type": "list",
"member": {}
}
},
"S1j": {
"S1l": {
"type": "list",
"member": {
"type": "structure",
Expand Down

0 comments on commit 4ed5104

Please sign in to comment.