Skip to content

Commit ee03cce

Browse files
author
awstools
committed
Updates SDK to v2.1139.0
1 parent 76a749a commit ee03cce

15 files changed

+167
-67
lines changed

Diff for: .changes/2.1139.0.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "GameSparks",
5+
"description": "This release adds an optional DeploymentResult field in the responses of GetStageDeploymentIntegrationTests and ListStageDeploymentIntegrationTests APIs."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "LookoutMetrics",
10+
"description": "In this release we added SnsFormat to SNSConfiguration to support human readable alert."
11+
}
12+
]

Diff for: CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1138.0-->
2+
<!--LATEST=2.1139.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1139.0
6+
* feature: GameSparks: This release adds an optional DeploymentResult field in the responses of GetStageDeploymentIntegrationTests and ListStageDeploymentIntegrationTests APIs.
7+
* feature: LookoutMetrics: In this release we added SnsFormat to SNSConfiguration to support human readable alert.
8+
59
## 2.1138.0
610
* feature: AppMesh: This release updates the existing Create and Update APIs for meshes and virtual nodes by adding a new IP preference field. This new IP preference field can be used to control the IP versions being used with the mesh and allows for IPv6 support within App Mesh.
711
* feature: GreengrassV2: This release adds the new DeleteDeployment API operation that you can use to delete deployment resources. This release also adds support for discontinued AWS-provided components, so AWS can communicate when a component has any issues that you should consider before you deploy it.

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1138.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1139.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

Diff for: apis/gamesparks-2021-08-17.min.json

+13
Original file line numberDiff line numberDiff line change
@@ -840,6 +840,9 @@
840840
"members": {
841841
"DeploymentAction": {},
842842
"DeploymentId": {},
843+
"DeploymentResult": {
844+
"shape": "S29"
845+
},
843846
"DeploymentState": {},
844847
"LastUpdated": {
845848
"shape": "Sb"
@@ -1352,12 +1355,22 @@
13521355
},
13531356
"DeploymentAction": {},
13541357
"DeploymentId": {},
1358+
"DeploymentResult": {
1359+
"shape": "S29"
1360+
},
13551361
"DeploymentState": {},
13561362
"LastUpdated": {
13571363
"shape": "Sb"
13581364
},
13591365
"SnapshotId": {}
13601366
}
1367+
},
1368+
"S29": {
1369+
"type": "structure",
1370+
"members": {
1371+
"Message": {},
1372+
"ResultCode": {}
1373+
}
13611374
}
13621375
}
13631376
}

Diff for: apis/gamesparks-2021-08-17.normal.json

+33
Original file line numberDiff line numberDiff line change
@@ -1290,6 +1290,20 @@
12901290
"min": 1,
12911291
"pattern": "^\\S(.*\\S)?$"
12921292
},
1293+
"DeploymentResult": {
1294+
"type": "structure",
1295+
"members": {
1296+
"Message": {
1297+
"shape": "Message",
1298+
"documentation": "<p>Details about the deployment result.</p>"
1299+
},
1300+
"ResultCode": {
1301+
"shape": "ResultCode",
1302+
"documentation": "<p>The type of deployment result.</p>"
1303+
}
1304+
},
1305+
"documentation": "<p>The result of the deployment.</p>"
1306+
},
12931307
"DeploymentState": {
12941308
"type": "string",
12951309
"enum": [
@@ -2294,6 +2308,9 @@
22942308
"max": 100,
22952309
"min": 1
22962310
},
2311+
"Message": {
2312+
"type": "string"
2313+
},
22972314
"NextToken": {
22982315
"type": "string",
22992316
"max": 1024,
@@ -2331,6 +2348,14 @@
23312348
"min": 20,
23322349
"pattern": "^arn:aws:gamesparks:"
23332350
},
2351+
"ResultCode": {
2352+
"type": "string",
2353+
"enum": [
2354+
"SUCCESS",
2355+
"INVALID_ROLE_FAILURE",
2356+
"UNSPECIFIED_FAILURE"
2357+
]
2358+
},
23342359
"RoleARN": {
23352360
"type": "string",
23362361
"max": 2048,
@@ -2500,6 +2525,10 @@
25002525
"shape": "DeploymentId",
25012526
"documentation": "<p>The identifier of the deployment.</p>"
25022527
},
2528+
"DeploymentResult": {
2529+
"shape": "DeploymentResult",
2530+
"documentation": "<p>The result of the deployment.</p>"
2531+
},
25032532
"DeploymentState": {
25042533
"shape": "DeploymentState",
25052534
"documentation": "<p>The state of the deployment.</p>"
@@ -2532,6 +2561,10 @@
25322561
"shape": "DeploymentId",
25332562
"documentation": "<p>The identifier of the deployment.</p>"
25342563
},
2564+
"DeploymentResult": {
2565+
"shape": "DeploymentResult",
2566+
"documentation": "<p>The result of the deployment.</p>"
2567+
},
25352568
"DeploymentState": {
25362569
"shape": "DeploymentState",
25372570
"documentation": "<p>The state of the deployment.</p>"

0 commit comments

Comments
 (0)