@aws-sdk/client-evs 3.1125.0 → 3.1127.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/README.md +14 -0
- package/dist-cjs/index.js +65 -4
- package/dist-es/Evs.js +4 -0
- package/dist-es/commands/GetAccountSettingsCommand.js +4 -0
- package/dist-es/commands/PutAccountSettingsCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +47 -3
- package/dist-types/Evs.d.ts +15 -0
- package/dist-types/EvsClient.d.ts +4 -2
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +83 -0
- package/dist-types/commands/PutAccountSettingsCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +55 -0
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/Evs.d.ts +35 -0
- package/dist-types/ts3.4/EvsClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PutAccountSettingsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -251,6 +251,13 @@ DisassociateEipFromVlan
|
|
|
251
251
|
</details>
|
|
252
252
|
<details>
|
|
253
253
|
<summary>
|
|
254
|
+
GetAccountSettings
|
|
255
|
+
</summary>
|
|
256
|
+
|
|
257
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/evs/command/GetAccountSettingsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-evs/Interface/GetAccountSettingsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-evs/Interface/GetAccountSettingsCommandOutput/)
|
|
258
|
+
</details>
|
|
259
|
+
<details>
|
|
260
|
+
<summary>
|
|
254
261
|
GetDepotUrl
|
|
255
262
|
</summary>
|
|
256
263
|
|
|
@@ -314,6 +321,13 @@ ListVmEntitlements
|
|
|
314
321
|
</details>
|
|
315
322
|
<details>
|
|
316
323
|
<summary>
|
|
324
|
+
PutAccountSettings
|
|
325
|
+
</summary>
|
|
326
|
+
|
|
327
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/evs/command/PutAccountSettingsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-evs/Interface/PutAccountSettingsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-evs/Interface/PutAccountSettingsCommandOutput/)
|
|
328
|
+
</details>
|
|
329
|
+
<details>
|
|
330
|
+
<summary>
|
|
317
331
|
TagResource
|
|
318
332
|
</summary>
|
|
319
333
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1126.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -238,6 +238,8 @@ class TooManyTagsException extends EvsServiceException {
|
|
|
238
238
|
const _AETV = "AssociateEipToVlan";
|
|
239
239
|
const _AETVR = "AssociateEipToVlanRequest";
|
|
240
240
|
const _AETVRs = "AssociateEipToVlanResponse";
|
|
241
|
+
const _AS = "AccountSetting";
|
|
242
|
+
const _ASL = "AccountSettingList";
|
|
241
243
|
const _C = "Check";
|
|
242
244
|
const _CC = "ConnectorCheck";
|
|
243
245
|
const _CCL = "ConnectorsChecksList";
|
|
@@ -278,6 +280,9 @@ const _EAL = "EipAssociationList";
|
|
|
278
280
|
const _ED = "ErrorDetail";
|
|
279
281
|
const _ES = "EnvironmentSummary";
|
|
280
282
|
const _ESL = "EnvironmentSummaryList";
|
|
283
|
+
const _GAS = "GetAccountSettings";
|
|
284
|
+
const _GASR = "GetAccountSettingsRequest";
|
|
285
|
+
const _GASRe = "GetAccountSettingsResponse";
|
|
281
286
|
const _GDU = "GetDepotUrl";
|
|
282
287
|
const _GDUR = "GetDepotUrlRequest";
|
|
283
288
|
const _GDURe = "GetDepotUrlResponse";
|
|
@@ -318,6 +323,9 @@ const _LVER = "ListVmEntitlementsRequest";
|
|
|
318
323
|
const _LVERi = "ListVmEntitlementsResponse";
|
|
319
324
|
const _NI = "NetworkInterface";
|
|
320
325
|
const _NIL = "NetworkInterfaceList";
|
|
326
|
+
const _PAS = "PutAccountSettings";
|
|
327
|
+
const _PASR = "PutAccountSettingsRequest";
|
|
328
|
+
const _PASRu = "PutAccountSettingsResponse";
|
|
321
329
|
const _RA = "Retry-After";
|
|
322
330
|
const _RNFE = "ResourceNotFoundException";
|
|
323
331
|
const _S = "Secret";
|
|
@@ -452,6 +460,7 @@ const _sIu = "subnetId";
|
|
|
452
460
|
const _sK = "solutionKey";
|
|
453
461
|
const _sM = "sddcManager";
|
|
454
462
|
const _se = "server";
|
|
463
|
+
const _set = "settings";
|
|
455
464
|
const _st = "state";
|
|
456
465
|
const _sta = "status";
|
|
457
466
|
const _t = "type";
|
|
@@ -459,7 +468,7 @@ const _tA = "termsAccepted";
|
|
|
459
468
|
const _tK = "tagKeys";
|
|
460
469
|
const _ta = "tags";
|
|
461
470
|
const _to = "token";
|
|
462
|
-
const _v = "
|
|
471
|
+
const _v = "value";
|
|
463
472
|
const _vC = "vCenter";
|
|
464
473
|
const _vH = "vcfHostnames";
|
|
465
474
|
const _vI = "vmIds";
|
|
@@ -477,6 +486,7 @@ const _vSl = "vlanState";
|
|
|
477
486
|
const _vT = "vTep";
|
|
478
487
|
const _vV = "vcfVersion";
|
|
479
488
|
const _vVc = "vcfVersions";
|
|
489
|
+
const _vl = "vlan";
|
|
480
490
|
const n0 = "com.amazonaws.evs";
|
|
481
491
|
const _s_registry = TypeRegistry.for(_s);
|
|
482
492
|
var EvsServiceException$ = [-3, _s, "EvsServiceException", 0, [], []];
|
|
@@ -530,6 +540,11 @@ const errorTypeRegistries = [
|
|
|
530
540
|
];
|
|
531
541
|
var SolutionKey = [0, n0, _SK, 8, 0];
|
|
532
542
|
var VSanLicenseKey = [0, n0, _VSLK, 8, 0];
|
|
543
|
+
var AccountSetting$ = [3, n0, _AS,
|
|
544
|
+
0,
|
|
545
|
+
[_n, _v],
|
|
546
|
+
[0, 0], 2
|
|
547
|
+
];
|
|
533
548
|
var AssociateEipToVlanRequest$ = [3, n0, _AETVR,
|
|
534
549
|
0,
|
|
535
550
|
[_eI, _vN, _aI, _cT],
|
|
@@ -537,7 +552,7 @@ var AssociateEipToVlanRequest$ = [3, n0, _AETVR,
|
|
|
537
552
|
];
|
|
538
553
|
var AssociateEipToVlanResponse$ = [3, n0, _AETVRs,
|
|
539
554
|
0,
|
|
540
|
-
[
|
|
555
|
+
[_vl],
|
|
541
556
|
[() => Vlan$]
|
|
542
557
|
];
|
|
543
558
|
var Check$ = [3, n0, _C,
|
|
@@ -647,7 +662,7 @@ var DisassociateEipFromVlanRequest$ = [3, n0, _DEFVR,
|
|
|
647
662
|
];
|
|
648
663
|
var DisassociateEipFromVlanResponse$ = [3, n0, _DEFVRi,
|
|
649
664
|
0,
|
|
650
|
-
[
|
|
665
|
+
[_vl],
|
|
651
666
|
[() => Vlan$]
|
|
652
667
|
];
|
|
653
668
|
var EipAssociation$ = [3, n0, _EA,
|
|
@@ -670,6 +685,16 @@ var ErrorDetail$ = [3, n0, _ED,
|
|
|
670
685
|
[_eC, _eM],
|
|
671
686
|
[0, 0], 2
|
|
672
687
|
];
|
|
688
|
+
var GetAccountSettingsRequest$ = [3, n0, _GASR,
|
|
689
|
+
0,
|
|
690
|
+
[],
|
|
691
|
+
[]
|
|
692
|
+
];
|
|
693
|
+
var GetAccountSettingsResponse$ = [3, n0, _GASRe,
|
|
694
|
+
0,
|
|
695
|
+
[_set],
|
|
696
|
+
[() => AccountSettingList]
|
|
697
|
+
];
|
|
673
698
|
var GetDepotUrlRequest$ = [3, n0, _GDUR,
|
|
674
699
|
0,
|
|
675
700
|
[_eI, _ro],
|
|
@@ -795,6 +820,16 @@ var NetworkInterface$ = [3, n0, _NI,
|
|
|
795
820
|
[_nII],
|
|
796
821
|
[0]
|
|
797
822
|
];
|
|
823
|
+
var PutAccountSettingsRequest$ = [3, n0, _PASR,
|
|
824
|
+
0,
|
|
825
|
+
[_set],
|
|
826
|
+
[() => AccountSettingList], 1
|
|
827
|
+
];
|
|
828
|
+
var PutAccountSettingsResponse$ = [3, n0, _PASRu,
|
|
829
|
+
0,
|
|
830
|
+
[_set],
|
|
831
|
+
[() => AccountSettingList]
|
|
832
|
+
];
|
|
798
833
|
var Secret$ = [3, n0, _S,
|
|
799
834
|
0,
|
|
800
835
|
[_sA],
|
|
@@ -860,6 +895,9 @@ var VmEntitlement$ = [3, n0, _VEm,
|
|
|
860
895
|
[_vIm, _eI, _cI, _vNm, _t, _sta, _lSA, _sAt, _sAto, _eD],
|
|
861
896
|
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => ErrorDetail$]
|
|
862
897
|
];
|
|
898
|
+
var AccountSettingList = [1, n0, _ASL,
|
|
899
|
+
0, () => AccountSetting$
|
|
900
|
+
];
|
|
863
901
|
var ChecksList = [1, n0, _CL,
|
|
864
902
|
0, () => Check$
|
|
865
903
|
];
|
|
@@ -936,6 +974,9 @@ var DeleteEnvironmentHost$ = [9, n0, _DEH,
|
|
|
936
974
|
var DisassociateEipFromVlan$ = [9, n0, _DEFV,
|
|
937
975
|
2, () => DisassociateEipFromVlanRequest$, () => DisassociateEipFromVlanResponse$
|
|
938
976
|
];
|
|
977
|
+
var GetAccountSettings$ = [9, n0, _GAS,
|
|
978
|
+
0, () => GetAccountSettingsRequest$, () => GetAccountSettingsResponse$
|
|
979
|
+
];
|
|
939
980
|
var GetDepotUrl$ = [9, n0, _GDU,
|
|
940
981
|
0, () => GetDepotUrlRequest$, () => GetDepotUrlResponse$
|
|
941
982
|
];
|
|
@@ -963,6 +1004,9 @@ var ListTagsForResource$ = [9, n0, _LTFR,
|
|
|
963
1004
|
var ListVmEntitlements$ = [9, n0, _LVE,
|
|
964
1005
|
0, () => ListVmEntitlementsRequest$, () => ListVmEntitlementsResponse$
|
|
965
1006
|
];
|
|
1007
|
+
var PutAccountSettings$ = [9, n0, _PAS,
|
|
1008
|
+
2, () => PutAccountSettingsRequest$, () => PutAccountSettingsResponse$
|
|
1009
|
+
];
|
|
966
1010
|
var TagResource$ = [9, n0, _TR,
|
|
967
1011
|
2, () => TagResourceRequest$, () => TagResourceResponse$
|
|
968
1012
|
];
|
|
@@ -1153,6 +1197,9 @@ class DeleteEnvironmentHostCommand extends command(_ep0, _mw0, "DeleteEnvironmen
|
|
|
1153
1197
|
class DisassociateEipFromVlanCommand extends command(_ep0, _mw0, "DisassociateEipFromVlan", DisassociateEipFromVlan$) {
|
|
1154
1198
|
}
|
|
1155
1199
|
|
|
1200
|
+
class GetAccountSettingsCommand extends command(_ep0, _mw0, "GetAccountSettings", GetAccountSettings$) {
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1156
1203
|
class GetDepotUrlCommand extends command(_ep0, _mw0, "GetDepotUrl", GetDepotUrl$) {
|
|
1157
1204
|
}
|
|
1158
1205
|
|
|
@@ -1180,6 +1227,9 @@ class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResourc
|
|
|
1180
1227
|
class ListVmEntitlementsCommand extends command(_ep0, _mw0, "ListVmEntitlements", ListVmEntitlements$) {
|
|
1181
1228
|
}
|
|
1182
1229
|
|
|
1230
|
+
class PutAccountSettingsCommand extends command(_ep0, _mw0, "PutAccountSettings", PutAccountSettings$) {
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1183
1233
|
class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
|
|
1184
1234
|
}
|
|
1185
1235
|
|
|
@@ -1210,6 +1260,7 @@ const commands = {
|
|
|
1210
1260
|
DeleteEnvironmentConnectorCommand,
|
|
1211
1261
|
DeleteEnvironmentHostCommand,
|
|
1212
1262
|
DisassociateEipFromVlanCommand,
|
|
1263
|
+
GetAccountSettingsCommand,
|
|
1213
1264
|
GetDepotUrlCommand,
|
|
1214
1265
|
GetEnvironmentCommand,
|
|
1215
1266
|
GetVersionsCommand,
|
|
@@ -1219,6 +1270,7 @@ const commands = {
|
|
|
1219
1270
|
ListEnvironmentVlansCommand,
|
|
1220
1271
|
ListTagsForResourceCommand,
|
|
1221
1272
|
ListVmEntitlementsCommand,
|
|
1273
|
+
PutAccountSettingsCommand,
|
|
1222
1274
|
TagResourceCommand,
|
|
1223
1275
|
UntagResourceCommand,
|
|
1224
1276
|
UpdateEnvironmentConnectorCommand,
|
|
@@ -1319,6 +1371,7 @@ const HostState = {
|
|
|
1319
1371
|
UPDATING: "UPDATING",
|
|
1320
1372
|
};
|
|
1321
1373
|
|
|
1374
|
+
exports.AccountSetting$ = AccountSetting$;
|
|
1322
1375
|
exports.AssociateEipToVlan$ = AssociateEipToVlan$;
|
|
1323
1376
|
exports.AssociateEipToVlanCommand = AssociateEipToVlanCommand;
|
|
1324
1377
|
exports.AssociateEipToVlanRequest$ = AssociateEipToVlanRequest$;
|
|
@@ -1378,6 +1431,10 @@ exports.Evs = Evs;
|
|
|
1378
1431
|
exports.EvsClient = EvsClient;
|
|
1379
1432
|
exports.EvsServiceException = EvsServiceException;
|
|
1380
1433
|
exports.EvsServiceException$ = EvsServiceException$;
|
|
1434
|
+
exports.GetAccountSettings$ = GetAccountSettings$;
|
|
1435
|
+
exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
|
|
1436
|
+
exports.GetAccountSettingsRequest$ = GetAccountSettingsRequest$;
|
|
1437
|
+
exports.GetAccountSettingsResponse$ = GetAccountSettingsResponse$;
|
|
1381
1438
|
exports.GetDepotUrl$ = GetDepotUrl$;
|
|
1382
1439
|
exports.GetDepotUrlCommand = GetDepotUrlCommand;
|
|
1383
1440
|
exports.GetDepotUrlRequest$ = GetDepotUrlRequest$;
|
|
@@ -1424,6 +1481,10 @@ exports.ListVmEntitlementsCommand = ListVmEntitlementsCommand;
|
|
|
1424
1481
|
exports.ListVmEntitlementsRequest$ = ListVmEntitlementsRequest$;
|
|
1425
1482
|
exports.ListVmEntitlementsResponse$ = ListVmEntitlementsResponse$;
|
|
1426
1483
|
exports.NetworkInterface$ = NetworkInterface$;
|
|
1484
|
+
exports.PutAccountSettings$ = PutAccountSettings$;
|
|
1485
|
+
exports.PutAccountSettingsCommand = PutAccountSettingsCommand;
|
|
1486
|
+
exports.PutAccountSettingsRequest$ = PutAccountSettingsRequest$;
|
|
1487
|
+
exports.PutAccountSettingsResponse$ = PutAccountSettingsResponse$;
|
|
1427
1488
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1428
1489
|
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1429
1490
|
exports.Secret$ = Secret$;
|
package/dist-es/Evs.js
CHANGED
|
@@ -9,6 +9,7 @@ import { DeleteEnvironmentCommand, } from "./commands/DeleteEnvironmentCommand";
|
|
|
9
9
|
import { DeleteEnvironmentConnectorCommand, } from "./commands/DeleteEnvironmentConnectorCommand";
|
|
10
10
|
import { DeleteEnvironmentHostCommand, } from "./commands/DeleteEnvironmentHostCommand";
|
|
11
11
|
import { DisassociateEipFromVlanCommand, } from "./commands/DisassociateEipFromVlanCommand";
|
|
12
|
+
import { GetAccountSettingsCommand, } from "./commands/GetAccountSettingsCommand";
|
|
12
13
|
import { GetDepotUrlCommand, } from "./commands/GetDepotUrlCommand";
|
|
13
14
|
import { GetEnvironmentCommand, } from "./commands/GetEnvironmentCommand";
|
|
14
15
|
import { GetVersionsCommand, } from "./commands/GetVersionsCommand";
|
|
@@ -18,6 +19,7 @@ import { ListEnvironmentsCommand, } from "./commands/ListEnvironmentsCommand";
|
|
|
18
19
|
import { ListEnvironmentVlansCommand, } from "./commands/ListEnvironmentVlansCommand";
|
|
19
20
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
20
21
|
import { ListVmEntitlementsCommand, } from "./commands/ListVmEntitlementsCommand";
|
|
22
|
+
import { PutAccountSettingsCommand, } from "./commands/PutAccountSettingsCommand";
|
|
21
23
|
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
22
24
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
23
25
|
import { UpdateEnvironmentConnectorCommand, } from "./commands/UpdateEnvironmentConnectorCommand";
|
|
@@ -38,6 +40,7 @@ const commands = {
|
|
|
38
40
|
DeleteEnvironmentConnectorCommand,
|
|
39
41
|
DeleteEnvironmentHostCommand,
|
|
40
42
|
DisassociateEipFromVlanCommand,
|
|
43
|
+
GetAccountSettingsCommand,
|
|
41
44
|
GetDepotUrlCommand,
|
|
42
45
|
GetEnvironmentCommand,
|
|
43
46
|
GetVersionsCommand,
|
|
@@ -47,6 +50,7 @@ const commands = {
|
|
|
47
50
|
ListEnvironmentVlansCommand,
|
|
48
51
|
ListTagsForResourceCommand,
|
|
49
52
|
ListVmEntitlementsCommand,
|
|
53
|
+
PutAccountSettingsCommand,
|
|
50
54
|
TagResourceCommand,
|
|
51
55
|
UntagResourceCommand,
|
|
52
56
|
UpdateEnvironmentConnectorCommand,
|
|
@@ -8,6 +8,7 @@ export * from "./DeleteEnvironmentCommand";
|
|
|
8
8
|
export * from "./DeleteEnvironmentConnectorCommand";
|
|
9
9
|
export * from "./DeleteEnvironmentHostCommand";
|
|
10
10
|
export * from "./DisassociateEipFromVlanCommand";
|
|
11
|
+
export * from "./GetAccountSettingsCommand";
|
|
11
12
|
export * from "./GetDepotUrlCommand";
|
|
12
13
|
export * from "./GetEnvironmentCommand";
|
|
13
14
|
export * from "./GetVersionsCommand";
|
|
@@ -17,6 +18,7 @@ export * from "./ListEnvironmentVlansCommand";
|
|
|
17
18
|
export * from "./ListEnvironmentsCommand";
|
|
18
19
|
export * from "./ListTagsForResourceCommand";
|
|
19
20
|
export * from "./ListVmEntitlementsCommand";
|
|
21
|
+
export * from "./PutAccountSettingsCommand";
|
|
20
22
|
export * from "./TagResourceCommand";
|
|
21
23
|
export * from "./UntagResourceCommand";
|
|
22
24
|
export * from "./UpdateEnvironmentConnectorCommand";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
const _AETV = "AssociateEipToVlan";
|
|
2
2
|
const _AETVR = "AssociateEipToVlanRequest";
|
|
3
3
|
const _AETVRs = "AssociateEipToVlanResponse";
|
|
4
|
+
const _AS = "AccountSetting";
|
|
5
|
+
const _ASL = "AccountSettingList";
|
|
4
6
|
const _C = "Check";
|
|
5
7
|
const _CC = "ConnectorCheck";
|
|
6
8
|
const _CCL = "ConnectorsChecksList";
|
|
@@ -41,6 +43,9 @@ const _EAL = "EipAssociationList";
|
|
|
41
43
|
const _ED = "ErrorDetail";
|
|
42
44
|
const _ES = "EnvironmentSummary";
|
|
43
45
|
const _ESL = "EnvironmentSummaryList";
|
|
46
|
+
const _GAS = "GetAccountSettings";
|
|
47
|
+
const _GASR = "GetAccountSettingsRequest";
|
|
48
|
+
const _GASRe = "GetAccountSettingsResponse";
|
|
44
49
|
const _GDU = "GetDepotUrl";
|
|
45
50
|
const _GDUR = "GetDepotUrlRequest";
|
|
46
51
|
const _GDURe = "GetDepotUrlResponse";
|
|
@@ -81,6 +86,9 @@ const _LVER = "ListVmEntitlementsRequest";
|
|
|
81
86
|
const _LVERi = "ListVmEntitlementsResponse";
|
|
82
87
|
const _NI = "NetworkInterface";
|
|
83
88
|
const _NIL = "NetworkInterfaceList";
|
|
89
|
+
const _PAS = "PutAccountSettings";
|
|
90
|
+
const _PASR = "PutAccountSettingsRequest";
|
|
91
|
+
const _PASRu = "PutAccountSettingsResponse";
|
|
84
92
|
const _RA = "Retry-After";
|
|
85
93
|
const _RNFE = "ResourceNotFoundException";
|
|
86
94
|
const _S = "Secret";
|
|
@@ -215,6 +223,7 @@ const _sIu = "subnetId";
|
|
|
215
223
|
const _sK = "solutionKey";
|
|
216
224
|
const _sM = "sddcManager";
|
|
217
225
|
const _se = "server";
|
|
226
|
+
const _set = "settings";
|
|
218
227
|
const _st = "state";
|
|
219
228
|
const _sta = "status";
|
|
220
229
|
const _t = "type";
|
|
@@ -222,7 +231,7 @@ const _tA = "termsAccepted";
|
|
|
222
231
|
const _tK = "tagKeys";
|
|
223
232
|
const _ta = "tags";
|
|
224
233
|
const _to = "token";
|
|
225
|
-
const _v = "
|
|
234
|
+
const _v = "value";
|
|
226
235
|
const _vC = "vCenter";
|
|
227
236
|
const _vH = "vcfHostnames";
|
|
228
237
|
const _vI = "vmIds";
|
|
@@ -240,6 +249,7 @@ const _vSl = "vlanState";
|
|
|
240
249
|
const _vT = "vTep";
|
|
241
250
|
const _vV = "vcfVersion";
|
|
242
251
|
const _vVc = "vcfVersions";
|
|
252
|
+
const _vl = "vlan";
|
|
243
253
|
const n0 = "com.amazonaws.evs";
|
|
244
254
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
245
255
|
import { InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, TagPolicyException, ThrottlingException, TooManyTagsException, ValidationException, } from "../models/errors";
|
|
@@ -296,6 +306,11 @@ export const errorTypeRegistries = [
|
|
|
296
306
|
];
|
|
297
307
|
var SolutionKey = [0, n0, _SK, 8, 0];
|
|
298
308
|
var VSanLicenseKey = [0, n0, _VSLK, 8, 0];
|
|
309
|
+
export var AccountSetting$ = [3, n0, _AS,
|
|
310
|
+
0,
|
|
311
|
+
[_n, _v],
|
|
312
|
+
[0, 0], 2
|
|
313
|
+
];
|
|
299
314
|
export var AssociateEipToVlanRequest$ = [3, n0, _AETVR,
|
|
300
315
|
0,
|
|
301
316
|
[_eI, _vN, _aI, _cT],
|
|
@@ -303,7 +318,7 @@ export var AssociateEipToVlanRequest$ = [3, n0, _AETVR,
|
|
|
303
318
|
];
|
|
304
319
|
export var AssociateEipToVlanResponse$ = [3, n0, _AETVRs,
|
|
305
320
|
0,
|
|
306
|
-
[
|
|
321
|
+
[_vl],
|
|
307
322
|
[() => Vlan$]
|
|
308
323
|
];
|
|
309
324
|
export var Check$ = [3, n0, _C,
|
|
@@ -413,7 +428,7 @@ export var DisassociateEipFromVlanRequest$ = [3, n0, _DEFVR,
|
|
|
413
428
|
];
|
|
414
429
|
export var DisassociateEipFromVlanResponse$ = [3, n0, _DEFVRi,
|
|
415
430
|
0,
|
|
416
|
-
[
|
|
431
|
+
[_vl],
|
|
417
432
|
[() => Vlan$]
|
|
418
433
|
];
|
|
419
434
|
export var EipAssociation$ = [3, n0, _EA,
|
|
@@ -436,6 +451,16 @@ export var ErrorDetail$ = [3, n0, _ED,
|
|
|
436
451
|
[_eC, _eM],
|
|
437
452
|
[0, 0], 2
|
|
438
453
|
];
|
|
454
|
+
export var GetAccountSettingsRequest$ = [3, n0, _GASR,
|
|
455
|
+
0,
|
|
456
|
+
[],
|
|
457
|
+
[]
|
|
458
|
+
];
|
|
459
|
+
export var GetAccountSettingsResponse$ = [3, n0, _GASRe,
|
|
460
|
+
0,
|
|
461
|
+
[_set],
|
|
462
|
+
[() => AccountSettingList]
|
|
463
|
+
];
|
|
439
464
|
export var GetDepotUrlRequest$ = [3, n0, _GDUR,
|
|
440
465
|
0,
|
|
441
466
|
[_eI, _ro],
|
|
@@ -561,6 +586,16 @@ export var NetworkInterface$ = [3, n0, _NI,
|
|
|
561
586
|
[_nII],
|
|
562
587
|
[0]
|
|
563
588
|
];
|
|
589
|
+
export var PutAccountSettingsRequest$ = [3, n0, _PASR,
|
|
590
|
+
0,
|
|
591
|
+
[_set],
|
|
592
|
+
[() => AccountSettingList], 1
|
|
593
|
+
];
|
|
594
|
+
export var PutAccountSettingsResponse$ = [3, n0, _PASRu,
|
|
595
|
+
0,
|
|
596
|
+
[_set],
|
|
597
|
+
[() => AccountSettingList]
|
|
598
|
+
];
|
|
564
599
|
export var Secret$ = [3, n0, _S,
|
|
565
600
|
0,
|
|
566
601
|
[_sA],
|
|
@@ -626,6 +661,9 @@ export var VmEntitlement$ = [3, n0, _VEm,
|
|
|
626
661
|
[_vIm, _eI, _cI, _vNm, _t, _sta, _lSA, _sAt, _sAto, _eD],
|
|
627
662
|
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => ErrorDetail$]
|
|
628
663
|
];
|
|
664
|
+
var AccountSettingList = [1, n0, _ASL,
|
|
665
|
+
0, () => AccountSetting$
|
|
666
|
+
];
|
|
629
667
|
var ChecksList = [1, n0, _CL,
|
|
630
668
|
0, () => Check$
|
|
631
669
|
];
|
|
@@ -711,6 +749,9 @@ export var DeleteEnvironmentHost$ = [9, n0, _DEH,
|
|
|
711
749
|
export var DisassociateEipFromVlan$ = [9, n0, _DEFV,
|
|
712
750
|
2, () => DisassociateEipFromVlanRequest$, () => DisassociateEipFromVlanResponse$
|
|
713
751
|
];
|
|
752
|
+
export var GetAccountSettings$ = [9, n0, _GAS,
|
|
753
|
+
0, () => GetAccountSettingsRequest$, () => GetAccountSettingsResponse$
|
|
754
|
+
];
|
|
714
755
|
export var GetDepotUrl$ = [9, n0, _GDU,
|
|
715
756
|
0, () => GetDepotUrlRequest$, () => GetDepotUrlResponse$
|
|
716
757
|
];
|
|
@@ -738,6 +779,9 @@ export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
|
738
779
|
export var ListVmEntitlements$ = [9, n0, _LVE,
|
|
739
780
|
0, () => ListVmEntitlementsRequest$, () => ListVmEntitlementsResponse$
|
|
740
781
|
];
|
|
782
|
+
export var PutAccountSettings$ = [9, n0, _PAS,
|
|
783
|
+
2, () => PutAccountSettingsRequest$, () => PutAccountSettingsResponse$
|
|
784
|
+
];
|
|
741
785
|
export var TagResource$ = [9, n0, _TR,
|
|
742
786
|
2, () => TagResourceRequest$, () => TagResourceResponse$
|
|
743
787
|
];
|
package/dist-types/Evs.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { type DeleteEnvironmentCommandInput, type DeleteEnvironmentCommandOutput
|
|
|
9
9
|
import { type DeleteEnvironmentConnectorCommandInput, type DeleteEnvironmentConnectorCommandOutput } from "./commands/DeleteEnvironmentConnectorCommand";
|
|
10
10
|
import { type DeleteEnvironmentHostCommandInput, type DeleteEnvironmentHostCommandOutput } from "./commands/DeleteEnvironmentHostCommand";
|
|
11
11
|
import { type DisassociateEipFromVlanCommandInput, type DisassociateEipFromVlanCommandOutput } from "./commands/DisassociateEipFromVlanCommand";
|
|
12
|
+
import { type GetAccountSettingsCommandInput, type GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
|
|
12
13
|
import { type GetDepotUrlCommandInput, type GetDepotUrlCommandOutput } from "./commands/GetDepotUrlCommand";
|
|
13
14
|
import { type GetEnvironmentCommandInput, type GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
14
15
|
import { type GetVersionsCommandInput, type GetVersionsCommandOutput } from "./commands/GetVersionsCommand";
|
|
@@ -18,6 +19,7 @@ import { type ListEnvironmentsCommandInput, type ListEnvironmentsCommandOutput }
|
|
|
18
19
|
import { type ListEnvironmentVlansCommandInput, type ListEnvironmentVlansCommandOutput } from "./commands/ListEnvironmentVlansCommand";
|
|
19
20
|
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
20
21
|
import { type ListVmEntitlementsCommandInput, type ListVmEntitlementsCommandOutput } from "./commands/ListVmEntitlementsCommand";
|
|
22
|
+
import { type PutAccountSettingsCommandInput, type PutAccountSettingsCommandOutput } from "./commands/PutAccountSettingsCommand";
|
|
21
23
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
22
24
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
23
25
|
import { type UpdateEnvironmentConnectorCommandInput, type UpdateEnvironmentConnectorCommandOutput } from "./commands/UpdateEnvironmentConnectorCommand";
|
|
@@ -83,6 +85,13 @@ export interface Evs {
|
|
|
83
85
|
disassociateEipFromVlan(args: DisassociateEipFromVlanCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateEipFromVlanCommandOutput>;
|
|
84
86
|
disassociateEipFromVlan(args: DisassociateEipFromVlanCommandInput, cb: (err: any, data?: DisassociateEipFromVlanCommandOutput) => void): void;
|
|
85
87
|
disassociateEipFromVlan(args: DisassociateEipFromVlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateEipFromVlanCommandOutput) => void): void;
|
|
88
|
+
/**
|
|
89
|
+
* @see {@link GetAccountSettingsCommand}
|
|
90
|
+
*/
|
|
91
|
+
getAccountSettings(): Promise<GetAccountSettingsCommandOutput>;
|
|
92
|
+
getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSettingsCommandOutput>;
|
|
93
|
+
getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
94
|
+
getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
86
95
|
/**
|
|
87
96
|
* @see {@link GetDepotUrlCommand}
|
|
88
97
|
*/
|
|
@@ -139,6 +148,12 @@ export interface Evs {
|
|
|
139
148
|
listVmEntitlements(args: ListVmEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<ListVmEntitlementsCommandOutput>;
|
|
140
149
|
listVmEntitlements(args: ListVmEntitlementsCommandInput, cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void): void;
|
|
141
150
|
listVmEntitlements(args: ListVmEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void): void;
|
|
151
|
+
/**
|
|
152
|
+
* @see {@link PutAccountSettingsCommand}
|
|
153
|
+
*/
|
|
154
|
+
putAccountSettings(args: PutAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountSettingsCommandOutput>;
|
|
155
|
+
putAccountSettings(args: PutAccountSettingsCommandInput, cb: (err: any, data?: PutAccountSettingsCommandOutput) => void): void;
|
|
156
|
+
putAccountSettings(args: PutAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountSettingsCommandOutput) => void): void;
|
|
142
157
|
/**
|
|
143
158
|
* @see {@link TagResourceCommand}
|
|
144
159
|
*/
|
|
@@ -16,6 +16,7 @@ import type { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } fr
|
|
|
16
16
|
import type { DeleteEnvironmentConnectorCommandInput, DeleteEnvironmentConnectorCommandOutput } from "./commands/DeleteEnvironmentConnectorCommand";
|
|
17
17
|
import type { DeleteEnvironmentHostCommandInput, DeleteEnvironmentHostCommandOutput } from "./commands/DeleteEnvironmentHostCommand";
|
|
18
18
|
import type { DisassociateEipFromVlanCommandInput, DisassociateEipFromVlanCommandOutput } from "./commands/DisassociateEipFromVlanCommand";
|
|
19
|
+
import type { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
|
|
19
20
|
import type { GetDepotUrlCommandInput, GetDepotUrlCommandOutput } from "./commands/GetDepotUrlCommand";
|
|
20
21
|
import type { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
21
22
|
import type { GetVersionsCommandInput, GetVersionsCommandOutput } from "./commands/GetVersionsCommand";
|
|
@@ -25,6 +26,7 @@ import type { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from
|
|
|
25
26
|
import type { ListEnvironmentVlansCommandInput, ListEnvironmentVlansCommandOutput } from "./commands/ListEnvironmentVlansCommand";
|
|
26
27
|
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
27
28
|
import type { ListVmEntitlementsCommandInput, ListVmEntitlementsCommandOutput } from "./commands/ListVmEntitlementsCommand";
|
|
29
|
+
import type { PutAccountSettingsCommandInput, PutAccountSettingsCommandOutput } from "./commands/PutAccountSettingsCommand";
|
|
28
30
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
29
31
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
30
32
|
import type { UpdateEnvironmentConnectorCommandInput, UpdateEnvironmentConnectorCommandOutput } from "./commands/UpdateEnvironmentConnectorCommand";
|
|
@@ -34,11 +36,11 @@ export { __Client };
|
|
|
34
36
|
/**
|
|
35
37
|
* @public
|
|
36
38
|
*/
|
|
37
|
-
export type ServiceInputTypes = AssociateEipToVlanCommandInput | CreateEntitlementCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentConnectorCommandInput | CreateEnvironmentHostCommandInput | DeleteEntitlementCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentConnectorCommandInput | DeleteEnvironmentHostCommandInput | DisassociateEipFromVlanCommandInput | GetDepotUrlCommandInput | GetEnvironmentCommandInput | GetVersionsCommandInput | ListEnvironmentConnectorsCommandInput | ListEnvironmentHostsCommandInput | ListEnvironmentVlansCommandInput | ListEnvironmentsCommandInput | ListTagsForResourceCommandInput | ListVmEntitlementsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnvironmentConnectorCommandInput;
|
|
39
|
+
export type ServiceInputTypes = AssociateEipToVlanCommandInput | CreateEntitlementCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentConnectorCommandInput | CreateEnvironmentHostCommandInput | DeleteEntitlementCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentConnectorCommandInput | DeleteEnvironmentHostCommandInput | DisassociateEipFromVlanCommandInput | GetAccountSettingsCommandInput | GetDepotUrlCommandInput | GetEnvironmentCommandInput | GetVersionsCommandInput | ListEnvironmentConnectorsCommandInput | ListEnvironmentHostsCommandInput | ListEnvironmentVlansCommandInput | ListEnvironmentsCommandInput | ListTagsForResourceCommandInput | ListVmEntitlementsCommandInput | PutAccountSettingsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnvironmentConnectorCommandInput;
|
|
38
40
|
/**
|
|
39
41
|
* @public
|
|
40
42
|
*/
|
|
41
|
-
export type ServiceOutputTypes = AssociateEipToVlanCommandOutput | CreateEntitlementCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentConnectorCommandOutput | CreateEnvironmentHostCommandOutput | DeleteEntitlementCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentConnectorCommandOutput | DeleteEnvironmentHostCommandOutput | DisassociateEipFromVlanCommandOutput | GetDepotUrlCommandOutput | GetEnvironmentCommandOutput | GetVersionsCommandOutput | ListEnvironmentConnectorsCommandOutput | ListEnvironmentHostsCommandOutput | ListEnvironmentVlansCommandOutput | ListEnvironmentsCommandOutput | ListTagsForResourceCommandOutput | ListVmEntitlementsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnvironmentConnectorCommandOutput;
|
|
43
|
+
export type ServiceOutputTypes = AssociateEipToVlanCommandOutput | CreateEntitlementCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentConnectorCommandOutput | CreateEnvironmentHostCommandOutput | DeleteEntitlementCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentConnectorCommandOutput | DeleteEnvironmentHostCommandOutput | DisassociateEipFromVlanCommandOutput | GetAccountSettingsCommandOutput | GetDepotUrlCommandOutput | GetEnvironmentCommandOutput | GetVersionsCommandOutput | ListEnvironmentConnectorsCommandOutput | ListEnvironmentHostsCommandOutput | ListEnvironmentVlansCommandOutput | ListEnvironmentsCommandOutput | ListTagsForResourceCommandOutput | ListVmEntitlementsCommandOutput | PutAccountSettingsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnvironmentConnectorCommandOutput;
|
|
42
44
|
/**
|
|
43
45
|
* @public
|
|
44
46
|
*/
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link GetAccountSettingsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface GetAccountSettingsCommandInput extends GetAccountSettingsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link GetAccountSettingsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetAccountSettingsCommandOutput extends GetAccountSettingsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const GetAccountSettingsCommand_base: {
|
|
22
|
+
new (input: GetAccountSettingsCommandInput): import("@smithy/core/client").CommandImpl<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, import("..").EvsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [GetAccountSettingsCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, import("..").EvsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Returns the configured EVS settings for your Amazon Web Services account in the specified Amazon Web Services Region. If no settings have been set, an empty list is returned.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { EvsClient, GetAccountSettingsCommand } from "@aws-sdk/client-evs"; // ES Modules import
|
|
32
|
+
* // const { EvsClient, GetAccountSettingsCommand } = require("@aws-sdk/client-evs"); // CommonJS import
|
|
33
|
+
* // import type { EvsClientConfig } from "@aws-sdk/client-evs";
|
|
34
|
+
* const config = {}; // type is EvsClientConfig
|
|
35
|
+
* const client = new EvsClient(config);
|
|
36
|
+
* const input = {};
|
|
37
|
+
* const command = new GetAccountSettingsCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // { // GetAccountSettingsResponse
|
|
40
|
+
* // settings: [ // AccountSettingList
|
|
41
|
+
* // { // AccountSetting
|
|
42
|
+
* // name: "STRING_VALUE", // required
|
|
43
|
+
* // value: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param GetAccountSettingsCommandInput - {@link GetAccountSettingsCommandInput}
|
|
51
|
+
* @returns {@link GetAccountSettingsCommandOutput}
|
|
52
|
+
* @see {@link GetAccountSettingsCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link GetAccountSettingsCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link EvsClientResolvedConfig | config} for EvsClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InternalServerException} (server fault)
|
|
57
|
+
* <p>An internal server error occurred. Retry your request.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
60
|
+
* <p>The operation could not be performed because the service is throttling requests. This exception is thrown when the service endpoint receives too many concurrent requests.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
* <p>The input fails to satisfy the specified constraints. You will see this exception if invalid inputs are provided for any of the Amazon EVS environment operations, or if a list operation is performed on an environment resource that is still initializing.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link EvsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Evs service.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export declare class GetAccountSettingsCommand extends GetAccountSettingsCommand_base {
|
|
72
|
+
/** @internal type navigation helper, not in runtime. */
|
|
73
|
+
protected static __types: {
|
|
74
|
+
api: {
|
|
75
|
+
input: {};
|
|
76
|
+
output: GetAccountSettingsResponse;
|
|
77
|
+
};
|
|
78
|
+
sdk: {
|
|
79
|
+
input: GetAccountSettingsCommandInput;
|
|
80
|
+
output: GetAccountSettingsCommandOutput;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { PutAccountSettingsRequest, PutAccountSettingsResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link PutAccountSettingsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface PutAccountSettingsCommandInput extends PutAccountSettingsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link PutAccountSettingsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface PutAccountSettingsCommandOutput extends PutAccountSettingsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const PutAccountSettingsCommand_base: {
|
|
22
|
+
new (input: PutAccountSettingsCommandInput): import("@smithy/core/client").CommandImpl<PutAccountSettingsCommandInput, PutAccountSettingsCommandOutput, import("..").EvsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: PutAccountSettingsCommandInput): import("@smithy/core/client").CommandImpl<PutAccountSettingsCommandInput, PutAccountSettingsCommandOutput, import("..").EvsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Creates or updates account-level EVS settings for your Amazon Web Services account in the specified Amazon Web Services Region.</p> <p>EVS settings included in the request are created or overwritten. Settings omitted from the request retain their current values.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { EvsClient, PutAccountSettingsCommand } from "@aws-sdk/client-evs"; // ES Modules import
|
|
32
|
+
* // const { EvsClient, PutAccountSettingsCommand } = require("@aws-sdk/client-evs"); // CommonJS import
|
|
33
|
+
* // import type { EvsClientConfig } from "@aws-sdk/client-evs";
|
|
34
|
+
* const config = {}; // type is EvsClientConfig
|
|
35
|
+
* const client = new EvsClient(config);
|
|
36
|
+
* const input = { // PutAccountSettingsRequest
|
|
37
|
+
* settings: [ // AccountSettingList // required
|
|
38
|
+
* { // AccountSetting
|
|
39
|
+
* name: "STRING_VALUE", // required
|
|
40
|
+
* value: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
44
|
+
* const command = new PutAccountSettingsCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // PutAccountSettingsResponse
|
|
47
|
+
* // settings: [ // AccountSettingList
|
|
48
|
+
* // { // AccountSetting
|
|
49
|
+
* // name: "STRING_VALUE", // required
|
|
50
|
+
* // value: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param PutAccountSettingsCommandInput - {@link PutAccountSettingsCommandInput}
|
|
58
|
+
* @returns {@link PutAccountSettingsCommandOutput}
|
|
59
|
+
* @see {@link PutAccountSettingsCommandInput} for command's `input` shape.
|
|
60
|
+
* @see {@link PutAccountSettingsCommandOutput} for command's `response` shape.
|
|
61
|
+
* @see {@link EvsClientResolvedConfig | config} for EvsClient's `config` shape.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>An internal server error occurred. Retry your request.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
67
|
+
* <p>The operation could not be performed because the service is throttling requests. This exception is thrown when the service endpoint receives too many concurrent requests.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
* <p>The input fails to satisfy the specified constraints. You will see this exception if invalid inputs are provided for any of the Amazon EVS environment operations, or if a list operation is performed on an environment resource that is still initializing.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link EvsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Evs service.</p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class PutAccountSettingsCommand extends PutAccountSettingsCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: PutAccountSettingsRequest;
|
|
83
|
+
output: PutAccountSettingsResponse;
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: PutAccountSettingsCommandInput;
|
|
87
|
+
output: PutAccountSettingsCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./DeleteEnvironmentCommand";
|
|
|
8
8
|
export * from "./DeleteEnvironmentConnectorCommand";
|
|
9
9
|
export * from "./DeleteEnvironmentHostCommand";
|
|
10
10
|
export * from "./DisassociateEipFromVlanCommand";
|
|
11
|
+
export * from "./GetAccountSettingsCommand";
|
|
11
12
|
export * from "./GetDepotUrlCommand";
|
|
12
13
|
export * from "./GetEnvironmentCommand";
|
|
13
14
|
export * from "./GetVersionsCommand";
|
|
@@ -17,6 +18,7 @@ export * from "./ListEnvironmentVlansCommand";
|
|
|
17
18
|
export * from "./ListEnvironmentsCommand";
|
|
18
19
|
export * from "./ListTagsForResourceCommand";
|
|
19
20
|
export * from "./ListVmEntitlementsCommand";
|
|
21
|
+
export * from "./PutAccountSettingsCommand";
|
|
20
22
|
export * from "./TagResourceCommand";
|
|
21
23
|
export * from "./UntagResourceCommand";
|
|
22
24
|
export * from "./UpdateEnvironmentConnectorCommand";
|
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
import type { _InstanceType, CheckResult, CheckType, ConnectorState, ConnectorType, EntitlementStatus, EntitlementType, EnvironmentState, HostState, VcfVersion, VlanState } from "./enums";
|
|
2
|
+
/**
|
|
3
|
+
* <p>A regional account-level EVS setting, represented as a name and value pair.</p>
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface AccountSetting {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The name of the EVS setting. Valid values are:</p> <ul> <li> <p> <code>vcfPortedCoreCount</code> (type: numeric string) - The total number of VCF license cores ported to Amazon EVS for the account in that Region. The maximum value is 1,000,000 cores. This setting value is shared with Broadcom for record-keeping.</p> </li> </ul>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
name: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The value of the EVS setting.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
value: string | undefined;
|
|
17
|
+
}
|
|
2
18
|
/**
|
|
3
19
|
* @public
|
|
4
20
|
*/
|
|
@@ -1414,6 +1430,23 @@ export interface UpdateEnvironmentConnectorResponse {
|
|
|
1414
1430
|
*/
|
|
1415
1431
|
connector?: Connector | undefined;
|
|
1416
1432
|
}
|
|
1433
|
+
/**
|
|
1434
|
+
* <p>The request for the GetAccountSettings operation.</p>
|
|
1435
|
+
* @public
|
|
1436
|
+
*/
|
|
1437
|
+
export interface GetAccountSettingsRequest {
|
|
1438
|
+
}
|
|
1439
|
+
/**
|
|
1440
|
+
* <p>The response for the GetAccountSettings operation.</p>
|
|
1441
|
+
* @public
|
|
1442
|
+
*/
|
|
1443
|
+
export interface GetAccountSettingsResponse {
|
|
1444
|
+
/**
|
|
1445
|
+
* <p>A list of regional account-level EVS settings for the account. EVS settings that have never been explicitly set are omitted from the response.</p>
|
|
1446
|
+
* @public
|
|
1447
|
+
*/
|
|
1448
|
+
settings?: AccountSetting[] | undefined;
|
|
1449
|
+
}
|
|
1417
1450
|
/**
|
|
1418
1451
|
* @public
|
|
1419
1452
|
*/
|
|
@@ -1496,6 +1529,28 @@ export interface ListTagsForResourceResponse {
|
|
|
1496
1529
|
*/
|
|
1497
1530
|
tags?: Record<string, string> | undefined;
|
|
1498
1531
|
}
|
|
1532
|
+
/**
|
|
1533
|
+
* <p>The request for the PutAccountSettings operation.</p>
|
|
1534
|
+
* @public
|
|
1535
|
+
*/
|
|
1536
|
+
export interface PutAccountSettingsRequest {
|
|
1537
|
+
/**
|
|
1538
|
+
* <p>A list of regional account-level EVS settings to create or update. Only the settings included in this list are modified.</p>
|
|
1539
|
+
* @public
|
|
1540
|
+
*/
|
|
1541
|
+
settings: AccountSetting[] | undefined;
|
|
1542
|
+
}
|
|
1543
|
+
/**
|
|
1544
|
+
* <p>The response for the PutAccountSettings operation.</p>
|
|
1545
|
+
* @public
|
|
1546
|
+
*/
|
|
1547
|
+
export interface PutAccountSettingsResponse {
|
|
1548
|
+
/**
|
|
1549
|
+
* <p>A list of regional account-level EVS settings, and their values, that were modified in this request.</p>
|
|
1550
|
+
* @public
|
|
1551
|
+
*/
|
|
1552
|
+
settings?: AccountSetting[] | undefined;
|
|
1553
|
+
}
|
|
1499
1554
|
/**
|
|
1500
1555
|
* @public
|
|
1501
1556
|
*/
|
|
@@ -14,6 +14,7 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
16
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
17
|
+
export declare var AccountSetting$: StaticStructureSchema;
|
|
17
18
|
export declare var AssociateEipToVlanRequest$: StaticStructureSchema;
|
|
18
19
|
export declare var AssociateEipToVlanResponse$: StaticStructureSchema;
|
|
19
20
|
export declare var Check$: StaticStructureSchema;
|
|
@@ -42,6 +43,8 @@ export declare var EipAssociation$: StaticStructureSchema;
|
|
|
42
43
|
export declare var Environment$: StaticStructureSchema;
|
|
43
44
|
export declare var EnvironmentSummary$: StaticStructureSchema;
|
|
44
45
|
export declare var ErrorDetail$: StaticStructureSchema;
|
|
46
|
+
export declare var GetAccountSettingsRequest$: StaticStructureSchema;
|
|
47
|
+
export declare var GetAccountSettingsResponse$: StaticStructureSchema;
|
|
45
48
|
export declare var GetDepotUrlRequest$: StaticStructureSchema;
|
|
46
49
|
export declare var GetDepotUrlResponse$: StaticStructureSchema;
|
|
47
50
|
export declare var GetEnvironmentRequest$: StaticStructureSchema;
|
|
@@ -67,6 +70,8 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
67
70
|
export declare var ListVmEntitlementsRequest$: StaticStructureSchema;
|
|
68
71
|
export declare var ListVmEntitlementsResponse$: StaticStructureSchema;
|
|
69
72
|
export declare var NetworkInterface$: StaticStructureSchema;
|
|
73
|
+
export declare var PutAccountSettingsRequest$: StaticStructureSchema;
|
|
74
|
+
export declare var PutAccountSettingsResponse$: StaticStructureSchema;
|
|
70
75
|
export declare var Secret$: StaticStructureSchema;
|
|
71
76
|
export declare var ServiceAccessSecurityGroups$: StaticStructureSchema;
|
|
72
77
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
@@ -90,6 +95,7 @@ export declare var DeleteEnvironment$: StaticOperationSchema;
|
|
|
90
95
|
export declare var DeleteEnvironmentConnector$: StaticOperationSchema;
|
|
91
96
|
export declare var DeleteEnvironmentHost$: StaticOperationSchema;
|
|
92
97
|
export declare var DisassociateEipFromVlan$: StaticOperationSchema;
|
|
98
|
+
export declare var GetAccountSettings$: StaticOperationSchema;
|
|
93
99
|
export declare var GetDepotUrl$: StaticOperationSchema;
|
|
94
100
|
export declare var GetEnvironment$: StaticOperationSchema;
|
|
95
101
|
export declare var GetVersions$: StaticOperationSchema;
|
|
@@ -99,6 +105,7 @@ export declare var ListEnvironments$: StaticOperationSchema;
|
|
|
99
105
|
export declare var ListEnvironmentVlans$: StaticOperationSchema;
|
|
100
106
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
101
107
|
export declare var ListVmEntitlements$: StaticOperationSchema;
|
|
108
|
+
export declare var PutAccountSettings$: StaticOperationSchema;
|
|
102
109
|
export declare var TagResource$: StaticOperationSchema;
|
|
103
110
|
export declare var UntagResource$: StaticOperationSchema;
|
|
104
111
|
export declare var UpdateEnvironmentConnector$: StaticOperationSchema;
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
DisassociateEipFromVlanCommandInput,
|
|
44
44
|
DisassociateEipFromVlanCommandOutput,
|
|
45
45
|
} from "./commands/DisassociateEipFromVlanCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetAccountSettingsCommandInput,
|
|
48
|
+
GetAccountSettingsCommandOutput,
|
|
49
|
+
} from "./commands/GetAccountSettingsCommand";
|
|
46
50
|
import { GetDepotUrlCommandInput, GetDepotUrlCommandOutput } from "./commands/GetDepotUrlCommand";
|
|
47
51
|
import {
|
|
48
52
|
GetEnvironmentCommandInput,
|
|
@@ -73,6 +77,10 @@ import {
|
|
|
73
77
|
ListVmEntitlementsCommandInput,
|
|
74
78
|
ListVmEntitlementsCommandOutput,
|
|
75
79
|
} from "./commands/ListVmEntitlementsCommand";
|
|
80
|
+
import {
|
|
81
|
+
PutAccountSettingsCommandInput,
|
|
82
|
+
PutAccountSettingsCommandOutput,
|
|
83
|
+
} from "./commands/PutAccountSettingsCommand";
|
|
76
84
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
77
85
|
import {
|
|
78
86
|
UntagResourceCommandInput,
|
|
@@ -214,6 +222,20 @@ export interface Evs {
|
|
|
214
222
|
options: __HttpHandlerOptions,
|
|
215
223
|
cb: (err: any, data?: DisassociateEipFromVlanCommandOutput) => void,
|
|
216
224
|
): void;
|
|
225
|
+
getAccountSettings(): Promise<GetAccountSettingsCommandOutput>;
|
|
226
|
+
getAccountSettings(
|
|
227
|
+
args: GetAccountSettingsCommandInput,
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
229
|
+
): Promise<GetAccountSettingsCommandOutput>;
|
|
230
|
+
getAccountSettings(
|
|
231
|
+
args: GetAccountSettingsCommandInput,
|
|
232
|
+
cb: (err: any, data?: GetAccountSettingsCommandOutput) => void,
|
|
233
|
+
): void;
|
|
234
|
+
getAccountSettings(
|
|
235
|
+
args: GetAccountSettingsCommandInput,
|
|
236
|
+
options: __HttpHandlerOptions,
|
|
237
|
+
cb: (err: any, data?: GetAccountSettingsCommandOutput) => void,
|
|
238
|
+
): void;
|
|
217
239
|
getDepotUrl(
|
|
218
240
|
args: GetDepotUrlCommandInput,
|
|
219
241
|
options?: __HttpHandlerOptions,
|
|
@@ -333,6 +355,19 @@ export interface Evs {
|
|
|
333
355
|
options: __HttpHandlerOptions,
|
|
334
356
|
cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void,
|
|
335
357
|
): void;
|
|
358
|
+
putAccountSettings(
|
|
359
|
+
args: PutAccountSettingsCommandInput,
|
|
360
|
+
options?: __HttpHandlerOptions,
|
|
361
|
+
): Promise<PutAccountSettingsCommandOutput>;
|
|
362
|
+
putAccountSettings(
|
|
363
|
+
args: PutAccountSettingsCommandInput,
|
|
364
|
+
cb: (err: any, data?: PutAccountSettingsCommandOutput) => void,
|
|
365
|
+
): void;
|
|
366
|
+
putAccountSettings(
|
|
367
|
+
args: PutAccountSettingsCommandInput,
|
|
368
|
+
options: __HttpHandlerOptions,
|
|
369
|
+
cb: (err: any, data?: PutAccountSettingsCommandOutput) => void,
|
|
370
|
+
): void;
|
|
336
371
|
tagResource(
|
|
337
372
|
args: TagResourceCommandInput,
|
|
338
373
|
options?: __HttpHandlerOptions,
|
|
@@ -73,6 +73,10 @@ import {
|
|
|
73
73
|
DisassociateEipFromVlanCommandInput,
|
|
74
74
|
DisassociateEipFromVlanCommandOutput,
|
|
75
75
|
} from "./commands/DisassociateEipFromVlanCommand";
|
|
76
|
+
import {
|
|
77
|
+
GetAccountSettingsCommandInput,
|
|
78
|
+
GetAccountSettingsCommandOutput,
|
|
79
|
+
} from "./commands/GetAccountSettingsCommand";
|
|
76
80
|
import { GetDepotUrlCommandInput, GetDepotUrlCommandOutput } from "./commands/GetDepotUrlCommand";
|
|
77
81
|
import {
|
|
78
82
|
GetEnvironmentCommandInput,
|
|
@@ -103,6 +107,10 @@ import {
|
|
|
103
107
|
ListVmEntitlementsCommandInput,
|
|
104
108
|
ListVmEntitlementsCommandOutput,
|
|
105
109
|
} from "./commands/ListVmEntitlementsCommand";
|
|
110
|
+
import {
|
|
111
|
+
PutAccountSettingsCommandInput,
|
|
112
|
+
PutAccountSettingsCommandOutput,
|
|
113
|
+
} from "./commands/PutAccountSettingsCommand";
|
|
106
114
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
107
115
|
import {
|
|
108
116
|
UntagResourceCommandInput,
|
|
@@ -130,6 +138,7 @@ export type ServiceInputTypes =
|
|
|
130
138
|
| DeleteEnvironmentConnectorCommandInput
|
|
131
139
|
| DeleteEnvironmentHostCommandInput
|
|
132
140
|
| DisassociateEipFromVlanCommandInput
|
|
141
|
+
| GetAccountSettingsCommandInput
|
|
133
142
|
| GetDepotUrlCommandInput
|
|
134
143
|
| GetEnvironmentCommandInput
|
|
135
144
|
| GetVersionsCommandInput
|
|
@@ -139,6 +148,7 @@ export type ServiceInputTypes =
|
|
|
139
148
|
| ListEnvironmentsCommandInput
|
|
140
149
|
| ListTagsForResourceCommandInput
|
|
141
150
|
| ListVmEntitlementsCommandInput
|
|
151
|
+
| PutAccountSettingsCommandInput
|
|
142
152
|
| TagResourceCommandInput
|
|
143
153
|
| UntagResourceCommandInput
|
|
144
154
|
| UpdateEnvironmentConnectorCommandInput;
|
|
@@ -153,6 +163,7 @@ export type ServiceOutputTypes =
|
|
|
153
163
|
| DeleteEnvironmentConnectorCommandOutput
|
|
154
164
|
| DeleteEnvironmentHostCommandOutput
|
|
155
165
|
| DisassociateEipFromVlanCommandOutput
|
|
166
|
+
| GetAccountSettingsCommandOutput
|
|
156
167
|
| GetDepotUrlCommandOutput
|
|
157
168
|
| GetEnvironmentCommandOutput
|
|
158
169
|
| GetVersionsCommandOutput
|
|
@@ -162,6 +173,7 @@ export type ServiceOutputTypes =
|
|
|
162
173
|
| ListEnvironmentsCommandOutput
|
|
163
174
|
| ListTagsForResourceCommandOutput
|
|
164
175
|
| ListVmEntitlementsCommandOutput
|
|
176
|
+
| PutAccountSettingsCommandOutput
|
|
165
177
|
| TagResourceCommandOutput
|
|
166
178
|
| UntagResourceCommandOutput
|
|
167
179
|
| UpdateEnvironmentConnectorCommandOutput;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface GetAccountSettingsCommandInput extends GetAccountSettingsRequest {}
|
|
5
|
+
export interface GetAccountSettingsCommandOutput
|
|
6
|
+
extends GetAccountSettingsResponse, __MetadataBearer {}
|
|
7
|
+
declare const GetAccountSettingsCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: GetAccountSettingsCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
GetAccountSettingsCommandInput,
|
|
12
|
+
GetAccountSettingsCommandOutput,
|
|
13
|
+
import("..").EvsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
...[input]: [] | [GetAccountSettingsCommandInput]
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
GetAccountSettingsCommandInput,
|
|
21
|
+
GetAccountSettingsCommandOutput,
|
|
22
|
+
import("..").EvsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class GetAccountSettingsCommand extends GetAccountSettingsCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: {};
|
|
32
|
+
output: GetAccountSettingsResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: GetAccountSettingsCommandInput;
|
|
36
|
+
output: GetAccountSettingsCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { PutAccountSettingsRequest, PutAccountSettingsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface PutAccountSettingsCommandInput extends PutAccountSettingsRequest {}
|
|
5
|
+
export interface PutAccountSettingsCommandOutput
|
|
6
|
+
extends PutAccountSettingsResponse, __MetadataBearer {}
|
|
7
|
+
declare const PutAccountSettingsCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: PutAccountSettingsCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
PutAccountSettingsCommandInput,
|
|
12
|
+
PutAccountSettingsCommandOutput,
|
|
13
|
+
import("..").EvsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: PutAccountSettingsCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
PutAccountSettingsCommandInput,
|
|
21
|
+
PutAccountSettingsCommandOutput,
|
|
22
|
+
import("..").EvsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class PutAccountSettingsCommand extends PutAccountSettingsCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: PutAccountSettingsRequest;
|
|
32
|
+
output: PutAccountSettingsResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: PutAccountSettingsCommandInput;
|
|
36
|
+
output: PutAccountSettingsCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./DeleteEnvironmentCommand";
|
|
|
8
8
|
export * from "./DeleteEnvironmentConnectorCommand";
|
|
9
9
|
export * from "./DeleteEnvironmentHostCommand";
|
|
10
10
|
export * from "./DisassociateEipFromVlanCommand";
|
|
11
|
+
export * from "./GetAccountSettingsCommand";
|
|
11
12
|
export * from "./GetDepotUrlCommand";
|
|
12
13
|
export * from "./GetEnvironmentCommand";
|
|
13
14
|
export * from "./GetVersionsCommand";
|
|
@@ -17,6 +18,7 @@ export * from "./ListEnvironmentVlansCommand";
|
|
|
17
18
|
export * from "./ListEnvironmentsCommand";
|
|
18
19
|
export * from "./ListTagsForResourceCommand";
|
|
19
20
|
export * from "./ListVmEntitlementsCommand";
|
|
21
|
+
export * from "./PutAccountSettingsCommand";
|
|
20
22
|
export * from "./TagResourceCommand";
|
|
21
23
|
export * from "./UntagResourceCommand";
|
|
22
24
|
export * from "./UpdateEnvironmentConnectorCommand";
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
VcfVersion,
|
|
12
12
|
VlanState,
|
|
13
13
|
} from "./enums";
|
|
14
|
+
export interface AccountSetting {
|
|
15
|
+
name: string | undefined;
|
|
16
|
+
value: string | undefined;
|
|
17
|
+
}
|
|
14
18
|
export interface AssociateEipToVlanRequest {
|
|
15
19
|
clientToken?: string | undefined;
|
|
16
20
|
environmentId: string | undefined;
|
|
@@ -346,6 +350,10 @@ export interface UpdateEnvironmentConnectorRequest {
|
|
|
346
350
|
export interface UpdateEnvironmentConnectorResponse {
|
|
347
351
|
connector?: Connector | undefined;
|
|
348
352
|
}
|
|
353
|
+
export interface GetAccountSettingsRequest {}
|
|
354
|
+
export interface GetAccountSettingsResponse {
|
|
355
|
+
settings?: AccountSetting[] | undefined;
|
|
356
|
+
}
|
|
349
357
|
export interface GetVersionsRequest {}
|
|
350
358
|
export interface InstanceTypeEsxVersionsInfo {
|
|
351
359
|
instanceType: _InstanceType | undefined;
|
|
@@ -367,6 +375,12 @@ export interface ListTagsForResourceRequest {
|
|
|
367
375
|
export interface ListTagsForResourceResponse {
|
|
368
376
|
tags?: Record<string, string> | undefined;
|
|
369
377
|
}
|
|
378
|
+
export interface PutAccountSettingsRequest {
|
|
379
|
+
settings: AccountSetting[] | undefined;
|
|
380
|
+
}
|
|
381
|
+
export interface PutAccountSettingsResponse {
|
|
382
|
+
settings?: AccountSetting[] | undefined;
|
|
383
|
+
}
|
|
370
384
|
export interface TagResourceRequest {
|
|
371
385
|
resourceArn: string | undefined;
|
|
372
386
|
tags: Record<string, string> | undefined;
|
|
@@ -9,6 +9,7 @@ export declare var ThrottlingException$: StaticErrorSchema;
|
|
|
9
9
|
export declare var TooManyTagsException$: StaticErrorSchema;
|
|
10
10
|
export declare var ValidationException$: StaticErrorSchema;
|
|
11
11
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
12
|
+
export declare var AccountSetting$: StaticStructureSchema;
|
|
12
13
|
export declare var AssociateEipToVlanRequest$: StaticStructureSchema;
|
|
13
14
|
export declare var AssociateEipToVlanResponse$: StaticStructureSchema;
|
|
14
15
|
export declare var Check$: StaticStructureSchema;
|
|
@@ -37,6 +38,8 @@ export declare var EipAssociation$: StaticStructureSchema;
|
|
|
37
38
|
export declare var Environment$: StaticStructureSchema;
|
|
38
39
|
export declare var EnvironmentSummary$: StaticStructureSchema;
|
|
39
40
|
export declare var ErrorDetail$: StaticStructureSchema;
|
|
41
|
+
export declare var GetAccountSettingsRequest$: StaticStructureSchema;
|
|
42
|
+
export declare var GetAccountSettingsResponse$: StaticStructureSchema;
|
|
40
43
|
export declare var GetDepotUrlRequest$: StaticStructureSchema;
|
|
41
44
|
export declare var GetDepotUrlResponse$: StaticStructureSchema;
|
|
42
45
|
export declare var GetEnvironmentRequest$: StaticStructureSchema;
|
|
@@ -62,6 +65,8 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
62
65
|
export declare var ListVmEntitlementsRequest$: StaticStructureSchema;
|
|
63
66
|
export declare var ListVmEntitlementsResponse$: StaticStructureSchema;
|
|
64
67
|
export declare var NetworkInterface$: StaticStructureSchema;
|
|
68
|
+
export declare var PutAccountSettingsRequest$: StaticStructureSchema;
|
|
69
|
+
export declare var PutAccountSettingsResponse$: StaticStructureSchema;
|
|
65
70
|
export declare var Secret$: StaticStructureSchema;
|
|
66
71
|
export declare var ServiceAccessSecurityGroups$: StaticStructureSchema;
|
|
67
72
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
@@ -85,6 +90,7 @@ export declare var DeleteEnvironment$: StaticOperationSchema;
|
|
|
85
90
|
export declare var DeleteEnvironmentConnector$: StaticOperationSchema;
|
|
86
91
|
export declare var DeleteEnvironmentHost$: StaticOperationSchema;
|
|
87
92
|
export declare var DisassociateEipFromVlan$: StaticOperationSchema;
|
|
93
|
+
export declare var GetAccountSettings$: StaticOperationSchema;
|
|
88
94
|
export declare var GetDepotUrl$: StaticOperationSchema;
|
|
89
95
|
export declare var GetEnvironment$: StaticOperationSchema;
|
|
90
96
|
export declare var GetVersions$: StaticOperationSchema;
|
|
@@ -94,6 +100,7 @@ export declare var ListEnvironments$: StaticOperationSchema;
|
|
|
94
100
|
export declare var ListEnvironmentVlans$: StaticOperationSchema;
|
|
95
101
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
96
102
|
export declare var ListVmEntitlements$: StaticOperationSchema;
|
|
103
|
+
export declare var PutAccountSettings$: StaticOperationSchema;
|
|
97
104
|
export declare var TagResource$: StaticOperationSchema;
|
|
98
105
|
export declare var UntagResource$: StaticOperationSchema;
|
|
99
106
|
export declare var UpdateEnvironmentConnector$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-evs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1127.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Evs Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-evs",
|
|
6
6
|
"license": "Apache-2.0",
|