aws-sdk 2.1076.0 → 2.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/README.md +1 -1
- package/apis/budgets-2016-10-20.min.json +40 -4
- package/apis/budgets-2016-10-20.paginators.json +6 -0
- package/apis/transfer-2018-11-05.min.json +49 -43
- package/clients/budgets.d.ts +29 -0
- package/clients/gamelift.d.ts +216 -216
- package/clients/transfer.d.ts +8 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1077.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1077.0
|
|
6
|
+
* feature: Budgets: This change introduces DescribeBudgetNotificationsForAccount API which returns budget notifications for the specified account
|
|
7
|
+
* feature: Transfer: Properties for Transfer Family used with SFTP, FTP, and FTPS protocols. Display Banners are bodies of text that can be displayed before and/or after a user authenticates onto a server using one of the previously mentioned protocols.
|
|
8
|
+
|
|
5
9
|
## 2.1076.0
|
|
6
10
|
* feature: Backup: AWS Backup add new S3_BACKUP_OBJECT_FAILED and S3_RESTORE_OBJECT_FAILED event types in BackupVaultNotifications events list.
|
|
7
11
|
* feature: Evidently: Add support for filtering list of experiments and launches by status
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1077.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -409,6 +409,39 @@
|
|
|
409
409
|
}
|
|
410
410
|
}
|
|
411
411
|
},
|
|
412
|
+
"DescribeBudgetNotificationsForAccount": {
|
|
413
|
+
"input": {
|
|
414
|
+
"type": "structure",
|
|
415
|
+
"required": [
|
|
416
|
+
"AccountId"
|
|
417
|
+
],
|
|
418
|
+
"members": {
|
|
419
|
+
"AccountId": {},
|
|
420
|
+
"MaxResults": {
|
|
421
|
+
"type": "integer"
|
|
422
|
+
},
|
|
423
|
+
"NextToken": {}
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"output": {
|
|
427
|
+
"type": "structure",
|
|
428
|
+
"members": {
|
|
429
|
+
"BudgetNotificationsForAccount": {
|
|
430
|
+
"type": "list",
|
|
431
|
+
"member": {
|
|
432
|
+
"type": "structure",
|
|
433
|
+
"members": {
|
|
434
|
+
"Notifications": {
|
|
435
|
+
"shape": "S2o"
|
|
436
|
+
},
|
|
437
|
+
"BudgetName": {}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"NextToken": {}
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
},
|
|
412
445
|
"DescribeBudgetPerformanceHistory": {
|
|
413
446
|
"input": {
|
|
414
447
|
"type": "structure",
|
|
@@ -513,10 +546,7 @@
|
|
|
513
546
|
"type": "structure",
|
|
514
547
|
"members": {
|
|
515
548
|
"Notifications": {
|
|
516
|
-
"
|
|
517
|
-
"member": {
|
|
518
|
-
"shape": "Sp"
|
|
519
|
-
}
|
|
549
|
+
"shape": "S2o"
|
|
520
550
|
},
|
|
521
551
|
"NextToken": {}
|
|
522
552
|
}
|
|
@@ -992,6 +1022,12 @@
|
|
|
992
1022
|
"member": {
|
|
993
1023
|
"shape": "S1x"
|
|
994
1024
|
}
|
|
1025
|
+
},
|
|
1026
|
+
"S2o": {
|
|
1027
|
+
"type": "list",
|
|
1028
|
+
"member": {
|
|
1029
|
+
"shape": "Sp"
|
|
1030
|
+
}
|
|
995
1031
|
}
|
|
996
1032
|
}
|
|
997
1033
|
}
|
|
@@ -18,6 +18,12 @@
|
|
|
18
18
|
"output_token": "NextToken",
|
|
19
19
|
"result_key": "Actions"
|
|
20
20
|
},
|
|
21
|
+
"DescribeBudgetNotificationsForAccount": {
|
|
22
|
+
"input_token": "NextToken",
|
|
23
|
+
"limit_key": "MaxResults",
|
|
24
|
+
"output_token": "NextToken",
|
|
25
|
+
"result_key": "BudgetNotificationsForAccount"
|
|
26
|
+
},
|
|
21
27
|
"DescribeBudgetPerformanceHistory": {
|
|
22
28
|
"input_token": "NextToken",
|
|
23
29
|
"limit_key": "MaxResults",
|
|
@@ -67,18 +67,20 @@
|
|
|
67
67
|
},
|
|
68
68
|
"IdentityProviderType": {},
|
|
69
69
|
"LoggingRole": {},
|
|
70
|
+
"PostAuthenticationLoginBanner": {},
|
|
71
|
+
"PreAuthenticationLoginBanner": {},
|
|
70
72
|
"Protocols": {
|
|
71
|
-
"shape": "
|
|
73
|
+
"shape": "S11"
|
|
72
74
|
},
|
|
73
75
|
"ProtocolDetails": {
|
|
74
|
-
"shape": "
|
|
76
|
+
"shape": "S13"
|
|
75
77
|
},
|
|
76
78
|
"SecurityPolicyName": {},
|
|
77
79
|
"Tags": {
|
|
78
|
-
"shape": "
|
|
80
|
+
"shape": "S17"
|
|
79
81
|
},
|
|
80
82
|
"WorkflowDetails": {
|
|
81
|
-
"shape": "
|
|
83
|
+
"shape": "S1b"
|
|
82
84
|
}
|
|
83
85
|
}
|
|
84
86
|
},
|
|
@@ -114,7 +116,7 @@
|
|
|
114
116
|
"ServerId": {},
|
|
115
117
|
"SshPublicKeyBody": {},
|
|
116
118
|
"Tags": {
|
|
117
|
-
"shape": "
|
|
119
|
+
"shape": "S17"
|
|
118
120
|
},
|
|
119
121
|
"UserName": {}
|
|
120
122
|
}
|
|
@@ -140,13 +142,13 @@
|
|
|
140
142
|
"members": {
|
|
141
143
|
"Description": {},
|
|
142
144
|
"Steps": {
|
|
143
|
-
"shape": "
|
|
145
|
+
"shape": "S1m"
|
|
144
146
|
},
|
|
145
147
|
"OnExceptionSteps": {
|
|
146
|
-
"shape": "
|
|
148
|
+
"shape": "S1m"
|
|
147
149
|
},
|
|
148
150
|
"Tags": {
|
|
149
|
-
"shape": "
|
|
151
|
+
"shape": "S17"
|
|
150
152
|
}
|
|
151
153
|
}
|
|
152
154
|
},
|
|
@@ -287,10 +289,10 @@
|
|
|
287
289
|
"members": {
|
|
288
290
|
"ExecutionId": {},
|
|
289
291
|
"InitialFileLocation": {
|
|
290
|
-
"shape": "
|
|
292
|
+
"shape": "S2m"
|
|
291
293
|
},
|
|
292
294
|
"ServiceMetadata": {
|
|
293
|
-
"shape": "
|
|
295
|
+
"shape": "S2q"
|
|
294
296
|
},
|
|
295
297
|
"ExecutionRole": {},
|
|
296
298
|
"LoggingConfiguration": {
|
|
@@ -308,10 +310,10 @@
|
|
|
308
310
|
"type": "structure",
|
|
309
311
|
"members": {
|
|
310
312
|
"Steps": {
|
|
311
|
-
"shape": "
|
|
313
|
+
"shape": "S2x"
|
|
312
314
|
},
|
|
313
315
|
"OnExceptionSteps": {
|
|
314
|
-
"shape": "
|
|
316
|
+
"shape": "S2x"
|
|
315
317
|
}
|
|
316
318
|
}
|
|
317
319
|
}
|
|
@@ -347,16 +349,16 @@
|
|
|
347
349
|
},
|
|
348
350
|
"SecurityPolicyName": {},
|
|
349
351
|
"SshCiphers": {
|
|
350
|
-
"shape": "
|
|
352
|
+
"shape": "S37"
|
|
351
353
|
},
|
|
352
354
|
"SshKexs": {
|
|
353
|
-
"shape": "
|
|
355
|
+
"shape": "S37"
|
|
354
356
|
},
|
|
355
357
|
"SshMacs": {
|
|
356
|
-
"shape": "
|
|
358
|
+
"shape": "S37"
|
|
357
359
|
},
|
|
358
360
|
"TlsCiphers": {
|
|
359
|
-
"shape": "
|
|
361
|
+
"shape": "S37"
|
|
360
362
|
}
|
|
361
363
|
}
|
|
362
364
|
}
|
|
@@ -388,7 +390,7 @@
|
|
|
388
390
|
"Arn": {},
|
|
389
391
|
"Certificate": {},
|
|
390
392
|
"ProtocolDetails": {
|
|
391
|
-
"shape": "
|
|
393
|
+
"shape": "S13"
|
|
392
394
|
},
|
|
393
395
|
"Domain": {},
|
|
394
396
|
"EndpointDetails": {
|
|
@@ -401,20 +403,22 @@
|
|
|
401
403
|
},
|
|
402
404
|
"IdentityProviderType": {},
|
|
403
405
|
"LoggingRole": {},
|
|
406
|
+
"PostAuthenticationLoginBanner": {},
|
|
407
|
+
"PreAuthenticationLoginBanner": {},
|
|
404
408
|
"Protocols": {
|
|
405
|
-
"shape": "
|
|
409
|
+
"shape": "S11"
|
|
406
410
|
},
|
|
407
411
|
"SecurityPolicyName": {},
|
|
408
412
|
"ServerId": {},
|
|
409
413
|
"State": {},
|
|
410
414
|
"Tags": {
|
|
411
|
-
"shape": "
|
|
415
|
+
"shape": "S17"
|
|
412
416
|
},
|
|
413
417
|
"UserCount": {
|
|
414
418
|
"type": "integer"
|
|
415
419
|
},
|
|
416
420
|
"WorkflowDetails": {
|
|
417
|
-
"shape": "
|
|
421
|
+
"shape": "S1b"
|
|
418
422
|
}
|
|
419
423
|
}
|
|
420
424
|
}
|
|
@@ -477,7 +481,7 @@
|
|
|
477
481
|
}
|
|
478
482
|
},
|
|
479
483
|
"Tags": {
|
|
480
|
-
"shape": "
|
|
484
|
+
"shape": "S17"
|
|
481
485
|
},
|
|
482
486
|
"UserName": {}
|
|
483
487
|
}
|
|
@@ -510,14 +514,14 @@
|
|
|
510
514
|
"Arn": {},
|
|
511
515
|
"Description": {},
|
|
512
516
|
"Steps": {
|
|
513
|
-
"shape": "
|
|
517
|
+
"shape": "S1m"
|
|
514
518
|
},
|
|
515
519
|
"OnExceptionSteps": {
|
|
516
|
-
"shape": "
|
|
520
|
+
"shape": "S1m"
|
|
517
521
|
},
|
|
518
522
|
"WorkflowId": {},
|
|
519
523
|
"Tags": {
|
|
520
|
-
"shape": "
|
|
524
|
+
"shape": "S17"
|
|
521
525
|
}
|
|
522
526
|
}
|
|
523
527
|
}
|
|
@@ -620,10 +624,10 @@
|
|
|
620
624
|
"members": {
|
|
621
625
|
"ExecutionId": {},
|
|
622
626
|
"InitialFileLocation": {
|
|
623
|
-
"shape": "
|
|
627
|
+
"shape": "S2m"
|
|
624
628
|
},
|
|
625
629
|
"ServiceMetadata": {
|
|
626
|
-
"shape": "
|
|
630
|
+
"shape": "S2q"
|
|
627
631
|
},
|
|
628
632
|
"Status": {}
|
|
629
633
|
}
|
|
@@ -717,7 +721,7 @@
|
|
|
717
721
|
"Arn": {},
|
|
718
722
|
"NextToken": {},
|
|
719
723
|
"Tags": {
|
|
720
|
-
"shape": "
|
|
724
|
+
"shape": "S17"
|
|
721
725
|
}
|
|
722
726
|
}
|
|
723
727
|
}
|
|
@@ -851,7 +855,7 @@
|
|
|
851
855
|
"members": {
|
|
852
856
|
"Arn": {},
|
|
853
857
|
"Tags": {
|
|
854
|
-
"shape": "
|
|
858
|
+
"shape": "S17"
|
|
855
859
|
}
|
|
856
860
|
}
|
|
857
861
|
}
|
|
@@ -949,7 +953,7 @@
|
|
|
949
953
|
"members": {
|
|
950
954
|
"Certificate": {},
|
|
951
955
|
"ProtocolDetails": {
|
|
952
|
-
"shape": "
|
|
956
|
+
"shape": "S13"
|
|
953
957
|
},
|
|
954
958
|
"EndpointDetails": {
|
|
955
959
|
"shape": "Sj"
|
|
@@ -962,13 +966,15 @@
|
|
|
962
966
|
"shape": "Su"
|
|
963
967
|
},
|
|
964
968
|
"LoggingRole": {},
|
|
969
|
+
"PostAuthenticationLoginBanner": {},
|
|
970
|
+
"PreAuthenticationLoginBanner": {},
|
|
965
971
|
"Protocols": {
|
|
966
|
-
"shape": "
|
|
972
|
+
"shape": "S11"
|
|
967
973
|
},
|
|
968
974
|
"SecurityPolicyName": {},
|
|
969
975
|
"ServerId": {},
|
|
970
976
|
"WorkflowDetails": {
|
|
971
|
-
"shape": "
|
|
977
|
+
"shape": "S1b"
|
|
972
978
|
}
|
|
973
979
|
}
|
|
974
980
|
},
|
|
@@ -1085,18 +1091,18 @@
|
|
|
1085
1091
|
"Function": {}
|
|
1086
1092
|
}
|
|
1087
1093
|
},
|
|
1088
|
-
"
|
|
1094
|
+
"S11": {
|
|
1089
1095
|
"type": "list",
|
|
1090
1096
|
"member": {}
|
|
1091
1097
|
},
|
|
1092
|
-
"
|
|
1098
|
+
"S13": {
|
|
1093
1099
|
"type": "structure",
|
|
1094
1100
|
"members": {
|
|
1095
1101
|
"PassiveIp": {},
|
|
1096
1102
|
"TlsSessionResumptionMode": {}
|
|
1097
1103
|
}
|
|
1098
1104
|
},
|
|
1099
|
-
"
|
|
1105
|
+
"S17": {
|
|
1100
1106
|
"type": "list",
|
|
1101
1107
|
"member": {
|
|
1102
1108
|
"type": "structure",
|
|
@@ -1110,7 +1116,7 @@
|
|
|
1110
1116
|
}
|
|
1111
1117
|
}
|
|
1112
1118
|
},
|
|
1113
|
-
"
|
|
1119
|
+
"S1b": {
|
|
1114
1120
|
"type": "structure",
|
|
1115
1121
|
"required": [
|
|
1116
1122
|
"OnUpload"
|
|
@@ -1132,7 +1138,7 @@
|
|
|
1132
1138
|
}
|
|
1133
1139
|
}
|
|
1134
1140
|
},
|
|
1135
|
-
"
|
|
1141
|
+
"S1m": {
|
|
1136
1142
|
"type": "list",
|
|
1137
1143
|
"member": {
|
|
1138
1144
|
"type": "structure",
|
|
@@ -1153,7 +1159,7 @@
|
|
|
1153
1159
|
}
|
|
1154
1160
|
},
|
|
1155
1161
|
"EfsFileLocation": {
|
|
1156
|
-
"shape": "
|
|
1162
|
+
"shape": "S1v"
|
|
1157
1163
|
}
|
|
1158
1164
|
}
|
|
1159
1165
|
},
|
|
@@ -1199,14 +1205,14 @@
|
|
|
1199
1205
|
}
|
|
1200
1206
|
}
|
|
1201
1207
|
},
|
|
1202
|
-
"
|
|
1208
|
+
"S1v": {
|
|
1203
1209
|
"type": "structure",
|
|
1204
1210
|
"members": {
|
|
1205
1211
|
"FileSystemId": {},
|
|
1206
1212
|
"Path": {}
|
|
1207
1213
|
}
|
|
1208
1214
|
},
|
|
1209
|
-
"
|
|
1215
|
+
"S2m": {
|
|
1210
1216
|
"type": "structure",
|
|
1211
1217
|
"members": {
|
|
1212
1218
|
"S3FileLocation": {
|
|
@@ -1219,11 +1225,11 @@
|
|
|
1219
1225
|
}
|
|
1220
1226
|
},
|
|
1221
1227
|
"EfsFileLocation": {
|
|
1222
|
-
"shape": "
|
|
1228
|
+
"shape": "S1v"
|
|
1223
1229
|
}
|
|
1224
1230
|
}
|
|
1225
1231
|
},
|
|
1226
|
-
"
|
|
1232
|
+
"S2q": {
|
|
1227
1233
|
"type": "structure",
|
|
1228
1234
|
"required": [
|
|
1229
1235
|
"UserDetails"
|
|
@@ -1243,7 +1249,7 @@
|
|
|
1243
1249
|
}
|
|
1244
1250
|
}
|
|
1245
1251
|
},
|
|
1246
|
-
"
|
|
1252
|
+
"S2x": {
|
|
1247
1253
|
"type": "list",
|
|
1248
1254
|
"member": {
|
|
1249
1255
|
"type": "structure",
|
|
@@ -1264,7 +1270,7 @@
|
|
|
1264
1270
|
}
|
|
1265
1271
|
}
|
|
1266
1272
|
},
|
|
1267
|
-
"
|
|
1273
|
+
"S37": {
|
|
1268
1274
|
"type": "list",
|
|
1269
1275
|
"member": {}
|
|
1270
1276
|
}
|
package/clients/budgets.d.ts
CHANGED
|
@@ -115,6 +115,14 @@ declare class Budgets extends Service {
|
|
|
115
115
|
* Describes all of the budget actions for a budget.
|
|
116
116
|
*/
|
|
117
117
|
describeBudgetActionsForBudget(callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetActionsForBudgetResponse) => void): Request<Budgets.Types.DescribeBudgetActionsForBudgetResponse, AWSError>;
|
|
118
|
+
/**
|
|
119
|
+
* Lists the budget names and notifications that are associated with an account.
|
|
120
|
+
*/
|
|
121
|
+
describeBudgetNotificationsForAccount(params: Budgets.Types.DescribeBudgetNotificationsForAccountRequest, callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetNotificationsForAccountResponse) => void): Request<Budgets.Types.DescribeBudgetNotificationsForAccountResponse, AWSError>;
|
|
122
|
+
/**
|
|
123
|
+
* Lists the budget names and notifications that are associated with an account.
|
|
124
|
+
*/
|
|
125
|
+
describeBudgetNotificationsForAccount(callback?: (err: AWSError, data: Budgets.Types.DescribeBudgetNotificationsForAccountResponse) => void): Request<Budgets.Types.DescribeBudgetNotificationsForAccountResponse, AWSError>;
|
|
118
126
|
/**
|
|
119
127
|
* Describes the history for DAILY, MONTHLY, and QUARTERLY budgets. Budget history isn't available for ANNUAL budgets.
|
|
120
128
|
*/
|
|
@@ -319,6 +327,11 @@ declare namespace Budgets {
|
|
|
319
327
|
AutoAdjustData?: AutoAdjustData;
|
|
320
328
|
}
|
|
321
329
|
export type BudgetName = string;
|
|
330
|
+
export interface BudgetNotificationsForAccount {
|
|
331
|
+
Notifications?: Notifications;
|
|
332
|
+
BudgetName?: BudgetName;
|
|
333
|
+
}
|
|
334
|
+
export type BudgetNotificationsForAccountList = BudgetNotificationsForAccount[];
|
|
322
335
|
export interface BudgetPerformanceHistory {
|
|
323
336
|
BudgetName?: BudgetName;
|
|
324
337
|
BudgetType?: BudgetType;
|
|
@@ -629,6 +642,21 @@ declare namespace Budgets {
|
|
|
629
642
|
Actions: Actions;
|
|
630
643
|
NextToken?: GenericString;
|
|
631
644
|
}
|
|
645
|
+
export interface DescribeBudgetNotificationsForAccountRequest {
|
|
646
|
+
AccountId: AccountId;
|
|
647
|
+
/**
|
|
648
|
+
* An integer that shows how many budget name entries a paginated response contains.
|
|
649
|
+
*/
|
|
650
|
+
MaxResults?: MaxResultsBudgetNotifications;
|
|
651
|
+
NextToken?: GenericString;
|
|
652
|
+
}
|
|
653
|
+
export interface DescribeBudgetNotificationsForAccountResponse {
|
|
654
|
+
/**
|
|
655
|
+
* A list of budget names and associated notifications for an account.
|
|
656
|
+
*/
|
|
657
|
+
BudgetNotificationsForAccount?: BudgetNotificationsForAccountList;
|
|
658
|
+
NextToken?: GenericString;
|
|
659
|
+
}
|
|
632
660
|
export interface DescribeBudgetPerformanceHistoryRequest {
|
|
633
661
|
AccountId: AccountId;
|
|
634
662
|
BudgetName: BudgetName;
|
|
@@ -808,6 +836,7 @@ declare namespace Budgets {
|
|
|
808
836
|
export type InstanceId = string;
|
|
809
837
|
export type InstanceIds = InstanceId[];
|
|
810
838
|
export type MaxResults = number;
|
|
839
|
+
export type MaxResultsBudgetNotifications = number;
|
|
811
840
|
export interface Notification {
|
|
812
841
|
/**
|
|
813
842
|
* Specifies whether the notification is for how much you have spent (ACTUAL) or for how much that you're forecasted to spend (FORECASTED).
|