Skip to content

Commit

Permalink
Updates SDK to v2.498.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jul 23, 2019
1 parent ea4d96e commit 92bed99
Show file tree
Hide file tree
Showing 14 changed files with 142 additions and 100 deletions.
12 changes: 12 additions & 0 deletions .changes/2.498.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "SSM",
"description": "You can now use Maintenance Windows to select a resource group as the target. By selecting a resource group as the target of a Maintenance Window, customers can perform routine tasks across different resources such as Amazon Elastic Compute Cloud (AmazonEC2) instances, Amazon Elastic Block Store (Amazon EBS) volumes, and Amazon Simple Storage Service(Amazon S3) buckets within the same recurring time window."
},
{
"type": "feature",
"category": "SecretsManager",
"description": "This release increases the maximum allowed size of SecretString or SecretBinary from 7KB to 10KB in the CreateSecret, UpdateSecret, PutSecretValue and GetSecretValue APIs. This release also increases the maximum allowed size of ResourcePolicy from 4KB to 20KB in the GetResourcePolicy and PutResourcePolicy APIs."
}
]
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.497.0-->
<!--LATEST=2.498.0-->
<!--ENTRYINSERT-->

## 2.498.0
* feature: SSM: You can now use Maintenance Windows to select a resource group as the target. By selecting a resource group as the target of a Maintenance Window, customers can perform routine tasks across different resources such as Amazon Elastic Compute Cloud (AmazonEC2) instances, Amazon Elastic Block Store (Amazon EBS) volumes, and Amazon Simple Storage Service(Amazon S3) buckets within the same recurring time window.
* feature: SecretsManager: This release increases the maximum allowed size of SecretString or SecretBinary from 7KB to 10KB in the CreateSecret, UpdateSecret, PutSecretValue and GetSecretValue APIs. This release also increases the maximum allowed size of ResourcePolicy from 4KB to 20KB in the GetResourcePolicy and PutResourcePolicy APIs.

## 2.497.0
* feature: MQ: Adds support for AWS Key Management Service (KMS) to offer server-side encryption. You can now select your own customer managed CMK, or use an AWS managed CMK in your KMS account.
* feature: Shield: Adding new VectorType (HTTP_Reflection) and related top contributor types to describe WordPress Pingback DDoS attacks.
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.497.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.498.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
11 changes: 8 additions & 3 deletions apis/secretsmanager-2017-10-17.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@
},
"VersionIdsToStages": {
"shape": "S10"
}
},
"OwningService": {}
}
}
},
Expand Down Expand Up @@ -186,7 +187,10 @@
"output": {
"type": "structure",
"members": {
"RandomPassword": {}
"RandomPassword": {
"type": "string",
"sensitive": true
}
}
}
},
Expand Down Expand Up @@ -332,7 +336,8 @@
},
"SecretVersionsToStages": {
"shape": "S10"
}
},
"OwningService": {}
}
}
},
Expand Down
20 changes: 16 additions & 4 deletions apis/secretsmanager-2017-10-17.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -781,6 +781,9 @@
"VersionIdsToStages": {
"shape": "SecretVersionsToStagesMapType",
"documentation": "<p>A list of all of the currently assigned <code>VersionStage</code> staging labels and the <code>VersionId</code> that each is attached to. Staging labels are used to keep track of the different versions during the rotation process.</p> <note> <p>A version that does not have any staging labels attached is considered deprecated and subject to deletion. Such versions are not included in this list.</p> </note>"
},
"OwningService": {
"shape": "OwningServiceType"
}
}
},
Expand Down Expand Up @@ -1049,7 +1052,12 @@
},
"NonEmptyResourcePolicyType": {
"type": "string",
"max": 4096,
"max": 20480,
"min": 1
},
"OwningServiceType": {
"type": "string",
"max": 128,
"min": 1
},
"PasswordLengthType": {
Expand Down Expand Up @@ -1140,7 +1148,8 @@
"RandomPasswordType": {
"type": "string",
"max": 4096,
"min": 0
"min": 0,
"sensitive": true
},
"RecoveryWindowInDaysType": {
"type": "long"
Expand Down Expand Up @@ -1242,7 +1251,7 @@
},
"SecretBinaryType": {
"type": "blob",
"max": 7168,
"max": 10240,
"min": 0,
"sensitive": true
},
Expand Down Expand Up @@ -1309,6 +1318,9 @@
"SecretVersionsToStages": {
"shape": "SecretVersionsToStagesMapType",
"documentation": "<p>A list of all of the currently assigned <code>SecretVersionStage</code> staging labels and the <code>SecretVersionId</code> that each is attached to. Staging labels are used to keep track of the different versions during the rotation process.</p> <note> <p>A version that does not have any <code>SecretVersionStage</code> is considered deprecated and subject to deletion. Such versions are not included in this list.</p> </note>"
},
"OwningService": {
"shape": "OwningServiceType"
}
},
"documentation": "<p>A structure that contains the details about a secret. It does not include the encrypted <code>SecretString</code> and <code>SecretBinary</code> values. To get those values, use the <a>GetSecretValue</a> operation.</p>"
Expand All @@ -1326,7 +1338,7 @@
},
"SecretStringType": {
"type": "string",
"max": 7168,
"max": 10240,
"min": 0,
"sensitive": true
},
Expand Down
Loading

0 comments on commit 92bed99

Please sign in to comment.