Skip to content

Commit 912af6e

Browse files
author
awstools
committed
Updates SDK to v2.1128.0
1 parent aeca977 commit 912af6e

21 files changed

+718
-370
lines changed

.changes/2.1128.0.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Backup",
5+
"description": "Adds support to 2 new filters about job complete time for 3 list jobs APIs in AWS Backup"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "IoTSecureTunneling",
10+
"description": "This release introduces a new API RotateTunnelAccessToken that allow revoking the existing tokens and generate new tokens"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "SSM",
15+
"description": "This release adds the TargetMaps parameter in SSM State Manager API."
16+
}
17+
]

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1127.0-->
2+
<!--LATEST=2.1128.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1128.0
6+
* feature: Backup: Adds support to 2 new filters about job complete time for 3 list jobs APIs in AWS Backup
7+
* feature: IoTSecureTunneling: This release introduces a new API RotateTunnelAccessToken that allow revoking the existing tokens and generate new tokens
8+
* feature: SSM: This release adds the TargetMaps parameter in SSM State Manager API.
9+
510
## 2.1127.0
611
* feature: EC2: Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter.
712
* feature: KinesisVideo: Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add "GET_IMAGES" to the list of supported API names for the GetDataEndpoint API.

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.1127.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1128.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

apis/backup-2018-11-15.min.json

+30
Original file line numberDiff line numberDiff line change
@@ -1107,6 +1107,16 @@
11071107
"ByAccountId": {
11081108
"location": "querystring",
11091109
"locationName": "accountId"
1110+
},
1111+
"ByCompleteAfter": {
1112+
"location": "querystring",
1113+
"locationName": "completeAfter",
1114+
"type": "timestamp"
1115+
},
1116+
"ByCompleteBefore": {
1117+
"location": "querystring",
1118+
"locationName": "completeBefore",
1119+
"type": "timestamp"
11101120
}
11111121
}
11121122
},
@@ -1429,6 +1439,16 @@
14291439
"ByAccountId": {
14301440
"location": "querystring",
14311441
"locationName": "accountId"
1442+
},
1443+
"ByCompleteBefore": {
1444+
"location": "querystring",
1445+
"locationName": "completeBefore",
1446+
"type": "timestamp"
1447+
},
1448+
"ByCompleteAfter": {
1449+
"location": "querystring",
1450+
"locationName": "completeAfter",
1451+
"type": "timestamp"
14321452
}
14331453
}
14341454
},
@@ -1796,6 +1816,16 @@
17961816
"ByStatus": {
17971817
"location": "querystring",
17981818
"locationName": "status"
1819+
},
1820+
"ByCompleteBefore": {
1821+
"location": "querystring",
1822+
"locationName": "completeBefore",
1823+
"type": "timestamp"
1824+
},
1825+
"ByCompleteAfter": {
1826+
"location": "querystring",
1827+
"locationName": "completeAfter",
1828+
"type": "timestamp"
17991829
}
18001830
}
18011831
},

apis/backup-2018-11-15.normal.json

+37-1
Original file line numberDiff line numberDiff line change
@@ -3656,7 +3656,7 @@
36563656
},
36573657
"ControlScope": {
36583658
"shape": "ControlScope",
3659-
"documentation": "<p>The scope of a control. The control scope defines what the control will evaluate. Three examples of control scopes are: a specific backup plan, all backup plans with a specific tag, or all backup plans. For more information, see <code>ControlScope</code>.</p>"
3659+
"documentation": "<p>The scope of a control. The control scope defines what the control will evaluate. Three examples of control scopes are: a specific backup plan, all backup plans with a specific tag, or all backup plans. For more information, see <a href=\"aws-backup/latest/devguide/API_ControlScope.html\"> <code>ControlScope</code>.</a> </p>"
36603660
}
36613661
},
36623662
"documentation": "<p>Contains detailed information about all of the controls of a framework. Each framework must contain at least one control.</p>"
@@ -4043,6 +4043,18 @@
40434043
"documentation": "<p>The account ID to list the jobs from. Returns only backup jobs associated with the specified account ID.</p> <p>If used from an Organizations management account, passing <code>*</code> returns all jobs across the organization.</p>",
40444044
"location": "querystring",
40454045
"locationName": "accountId"
4046+
},
4047+
"ByCompleteAfter": {
4048+
"shape": "timestamp",
4049+
"documentation": "<p>Returns only backup jobs completed after a date expressed in Unix format and Coordinated Universal Time (UTC).</p>",
4050+
"location": "querystring",
4051+
"locationName": "completeAfter"
4052+
},
4053+
"ByCompleteBefore": {
4054+
"shape": "timestamp",
4055+
"documentation": "<p>Returns only backup jobs completed before a date expressed in Unix format and Coordinated Universal Time (UTC).</p>",
4056+
"location": "querystring",
4057+
"locationName": "completeBefore"
40464058
}
40474059
}
40484060
},
@@ -4289,6 +4301,18 @@
42894301
"documentation": "<p>The account ID to list the jobs from. Returns only copy jobs associated with the specified account ID.</p>",
42904302
"location": "querystring",
42914303
"locationName": "accountId"
4304+
},
4305+
"ByCompleteBefore": {
4306+
"shape": "timestamp",
4307+
"documentation": "<p>Returns only copy jobs completed before a date expressed in Unix format and Coordinated Universal Time (UTC).</p>",
4308+
"location": "querystring",
4309+
"locationName": "completeBefore"
4310+
},
4311+
"ByCompleteAfter": {
4312+
"shape": "timestamp",
4313+
"documentation": "<p>Returns only copy jobs completed after a date expressed in Unix format and Coordinated Universal Time (UTC).</p>",
4314+
"location": "querystring",
4315+
"locationName": "completeAfter"
42924316
}
42934317
}
42944318
},
@@ -4601,6 +4625,18 @@
46014625
"documentation": "<p>Returns only restore jobs associated with the specified job status.</p>",
46024626
"location": "querystring",
46034627
"locationName": "status"
4628+
},
4629+
"ByCompleteBefore": {
4630+
"shape": "timestamp",
4631+
"documentation": "<p>Returns only copy jobs completed before a date expressed in Unix format and Coordinated Universal Time (UTC).</p>",
4632+
"location": "querystring",
4633+
"locationName": "completeBefore"
4634+
},
4635+
"ByCompleteAfter": {
4636+
"shape": "timestamp",
4637+
"documentation": "<p>Returns only copy jobs completed after a date expressed in Unix format and Coordinated Universal Time (UTC).</p>",
4638+
"location": "querystring",
4639+
"locationName": "completeAfter"
46044640
}
46054641
}
46064642
},

apis/backup-2018-11-15.paginators.json

+22-11
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,44 @@
33
"ListBackupJobs": {
44
"input_token": "NextToken",
55
"output_token": "NextToken",
6-
"limit_key": "MaxResults"
6+
"limit_key": "MaxResults",
7+
"result_key": "BackupJobs"
78
},
89
"ListBackupPlanTemplates": {
910
"input_token": "NextToken",
1011
"output_token": "NextToken",
11-
"limit_key": "MaxResults"
12+
"limit_key": "MaxResults",
13+
"result_key": "BackupPlanTemplatesList"
1214
},
1315
"ListBackupPlanVersions": {
1416
"input_token": "NextToken",
1517
"output_token": "NextToken",
16-
"limit_key": "MaxResults"
18+
"limit_key": "MaxResults",
19+
"result_key": "BackupPlanVersionsList"
1720
},
1821
"ListBackupPlans": {
1922
"input_token": "NextToken",
2023
"output_token": "NextToken",
21-
"limit_key": "MaxResults"
24+
"limit_key": "MaxResults",
25+
"result_key": "BackupPlansList"
2226
},
2327
"ListBackupSelections": {
2428
"input_token": "NextToken",
2529
"output_token": "NextToken",
26-
"limit_key": "MaxResults"
30+
"limit_key": "MaxResults",
31+
"result_key": "BackupSelectionsList"
2732
},
2833
"ListBackupVaults": {
2934
"input_token": "NextToken",
3035
"output_token": "NextToken",
31-
"limit_key": "MaxResults"
36+
"limit_key": "MaxResults",
37+
"result_key": "BackupVaultList"
3238
},
3339
"ListCopyJobs": {
3440
"input_token": "NextToken",
3541
"output_token": "NextToken",
36-
"limit_key": "MaxResults"
42+
"limit_key": "MaxResults",
43+
"result_key": "CopyJobs"
3744
},
3845
"ListFrameworks": {
3946
"input_token": "NextToken",
@@ -43,17 +50,20 @@
4350
"ListProtectedResources": {
4451
"input_token": "NextToken",
4552
"output_token": "NextToken",
46-
"limit_key": "MaxResults"
53+
"limit_key": "MaxResults",
54+
"result_key": "Results"
4755
},
4856
"ListRecoveryPointsByBackupVault": {
4957
"input_token": "NextToken",
5058
"output_token": "NextToken",
51-
"limit_key": "MaxResults"
59+
"limit_key": "MaxResults",
60+
"result_key": "RecoveryPoints"
5261
},
5362
"ListRecoveryPointsByResource": {
5463
"input_token": "NextToken",
5564
"output_token": "NextToken",
56-
"limit_key": "MaxResults"
65+
"limit_key": "MaxResults",
66+
"result_key": "RecoveryPoints"
5767
},
5868
"ListReportJobs": {
5969
"input_token": "NextToken",
@@ -68,7 +78,8 @@
6878
"ListRestoreJobs": {
6979
"input_token": "NextToken",
7080
"output_token": "NextToken",
71-
"limit_key": "MaxResults"
81+
"limit_key": "MaxResults",
82+
"result_key": "RestoreJobs"
7283
},
7384
"ListTags": {
7485
"input_token": "NextToken",

apis/iotsecuretunneling-2018-10-05.min.json

+28
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,34 @@
162162
}
163163
}
164164
},
165+
"RotateTunnelAccessToken": {
166+
"input": {
167+
"type": "structure",
168+
"required": [
169+
"tunnelId",
170+
"clientMode"
171+
],
172+
"members": {
173+
"tunnelId": {},
174+
"clientMode": {},
175+
"destinationConfig": {
176+
"shape": "Se"
177+
}
178+
}
179+
},
180+
"output": {
181+
"type": "structure",
182+
"members": {
183+
"tunnelArn": {},
184+
"sourceAccessToken": {
185+
"shape": "Sz"
186+
},
187+
"destinationAccessToken": {
188+
"shape": "Sz"
189+
}
190+
}
191+
}
192+
},
165193
"TagResource": {
166194
"input": {
167195
"type": "structure",

0 commit comments

Comments
 (0)