@aws-sdk/client-workspaces-web 3.857.0 → 3.858.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 +56 -0
- package/dist-cjs/index.js +450 -0
- package/dist-es/WorkSpacesWeb.js +14 -0
- package/dist-es/commands/AssociateSessionLoggerCommand.js +22 -0
- package/dist-es/commands/CreateSessionLoggerCommand.js +23 -0
- package/dist-es/commands/DeleteSessionLoggerCommand.js +22 -0
- package/dist-es/commands/DisassociateSessionLoggerCommand.js +22 -0
- package/dist-es/commands/GetSessionLoggerCommand.js +23 -0
- package/dist-es/commands/ListSessionLoggersCommand.js +23 -0
- package/dist-es/commands/UpdateSessionLoggerCommand.js +23 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +83 -0
- package/dist-es/pagination/ListSessionLoggersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +210 -1
- package/dist-types/WorkSpacesWeb.d.ts +50 -0
- package/dist-types/WorkSpacesWebClient.d.ts +9 -2
- package/dist-types/commands/AssociateSessionLoggerCommand.d.ts +109 -0
- package/dist-types/commands/CreateSessionLoggerCommand.d.ts +189 -0
- package/dist-types/commands/DeleteSessionLoggerCommand.d.ts +98 -0
- package/dist-types/commands/DisassociateSessionLoggerCommand.d.ts +98 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -0
- package/dist-types/commands/GetSessionLoggerCommand.d.ts +187 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -0
- package/dist-types/commands/ListSessionLoggersCommand.d.ts +175 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -0
- package/dist-types/commands/UpdateSessionLoggerCommand.d.ts +217 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +452 -0
- package/dist-types/pagination/ListSessionLoggersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +120 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSessionLoggerCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListSessionLoggersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +164 -0
- package/dist-types/ts3.4/pagination/ListSessionLoggersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core";
|
|
1
|
+
import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core";
|
|
2
2
|
import { requestBuilder as rb } from "@smithy/core";
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, map, parseEpochTimestamp as __parseEpochTimestamp, strictParseInt32 as __strictParseInt32, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
@@ -52,6 +52,18 @@ export const se_AssociateNetworkSettingsCommand = async (input, context) => {
|
|
|
52
52
|
b.m("PUT").h(headers).q(query).b(body);
|
|
53
53
|
return b.build();
|
|
54
54
|
};
|
|
55
|
+
export const se_AssociateSessionLoggerCommand = async (input, context) => {
|
|
56
|
+
const b = rb(input, context);
|
|
57
|
+
const headers = {};
|
|
58
|
+
b.bp("/portals/{portalArn+}/sessionLogger");
|
|
59
|
+
b.p("portalArn", () => input.portalArn, "{portalArn+}", true);
|
|
60
|
+
const query = map({
|
|
61
|
+
[_sLA]: [, __expectNonNull(input[_sLA], `sessionLoggerArn`)],
|
|
62
|
+
});
|
|
63
|
+
let body;
|
|
64
|
+
b.m("PUT").h(headers).q(query).b(body);
|
|
65
|
+
return b.build();
|
|
66
|
+
};
|
|
55
67
|
export const se_AssociateTrustStoreCommand = async (input, context) => {
|
|
56
68
|
const b = rb(input, context);
|
|
57
69
|
const headers = {};
|
|
@@ -198,6 +210,25 @@ export const se_CreatePortalCommand = async (input, context) => {
|
|
|
198
210
|
b.m("POST").h(headers).b(body);
|
|
199
211
|
return b.build();
|
|
200
212
|
};
|
|
213
|
+
export const se_CreateSessionLoggerCommand = async (input, context) => {
|
|
214
|
+
const b = rb(input, context);
|
|
215
|
+
const headers = {
|
|
216
|
+
"content-type": "application/json",
|
|
217
|
+
};
|
|
218
|
+
b.bp("/sessionLoggers");
|
|
219
|
+
let body;
|
|
220
|
+
body = JSON.stringify(take(input, {
|
|
221
|
+
additionalEncryptionContext: (_) => _json(_),
|
|
222
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
223
|
+
customerManagedKey: [],
|
|
224
|
+
displayName: [],
|
|
225
|
+
eventFilter: (_) => _json(_),
|
|
226
|
+
logConfiguration: (_) => _json(_),
|
|
227
|
+
tags: (_) => _json(_),
|
|
228
|
+
}));
|
|
229
|
+
b.m("POST").h(headers).b(body);
|
|
230
|
+
return b.build();
|
|
231
|
+
};
|
|
201
232
|
export const se_CreateTrustStoreCommand = async (input, context) => {
|
|
202
233
|
const b = rb(input, context);
|
|
203
234
|
const headers = {
|
|
@@ -308,6 +339,15 @@ export const se_DeletePortalCommand = async (input, context) => {
|
|
|
308
339
|
b.m("DELETE").h(headers).b(body);
|
|
309
340
|
return b.build();
|
|
310
341
|
};
|
|
342
|
+
export const se_DeleteSessionLoggerCommand = async (input, context) => {
|
|
343
|
+
const b = rb(input, context);
|
|
344
|
+
const headers = {};
|
|
345
|
+
b.bp("/sessionLoggers/{sessionLoggerArn+}");
|
|
346
|
+
b.p("sessionLoggerArn", () => input.sessionLoggerArn, "{sessionLoggerArn+}", true);
|
|
347
|
+
let body;
|
|
348
|
+
b.m("DELETE").h(headers).b(body);
|
|
349
|
+
return b.build();
|
|
350
|
+
};
|
|
311
351
|
export const se_DeleteTrustStoreCommand = async (input, context) => {
|
|
312
352
|
const b = rb(input, context);
|
|
313
353
|
const headers = {};
|
|
@@ -371,6 +411,15 @@ export const se_DisassociateNetworkSettingsCommand = async (input, context) => {
|
|
|
371
411
|
b.m("DELETE").h(headers).b(body);
|
|
372
412
|
return b.build();
|
|
373
413
|
};
|
|
414
|
+
export const se_DisassociateSessionLoggerCommand = async (input, context) => {
|
|
415
|
+
const b = rb(input, context);
|
|
416
|
+
const headers = {};
|
|
417
|
+
b.bp("/portals/{portalArn+}/sessionLogger");
|
|
418
|
+
b.p("portalArn", () => input.portalArn, "{portalArn+}", true);
|
|
419
|
+
let body;
|
|
420
|
+
b.m("DELETE").h(headers).b(body);
|
|
421
|
+
return b.build();
|
|
422
|
+
};
|
|
374
423
|
export const se_DisassociateTrustStoreCommand = async (input, context) => {
|
|
375
424
|
const b = rb(input, context);
|
|
376
425
|
const headers = {};
|
|
@@ -481,6 +530,15 @@ export const se_GetSessionCommand = async (input, context) => {
|
|
|
481
530
|
b.m("GET").h(headers).b(body);
|
|
482
531
|
return b.build();
|
|
483
532
|
};
|
|
533
|
+
export const se_GetSessionLoggerCommand = async (input, context) => {
|
|
534
|
+
const b = rb(input, context);
|
|
535
|
+
const headers = {};
|
|
536
|
+
b.bp("/sessionLoggers/{sessionLoggerArn+}");
|
|
537
|
+
b.p("sessionLoggerArn", () => input.sessionLoggerArn, "{sessionLoggerArn+}", true);
|
|
538
|
+
let body;
|
|
539
|
+
b.m("GET").h(headers).b(body);
|
|
540
|
+
return b.build();
|
|
541
|
+
};
|
|
484
542
|
export const se_GetTrustStoreCommand = async (input, context) => {
|
|
485
543
|
const b = rb(input, context);
|
|
486
544
|
const headers = {};
|
|
@@ -593,6 +651,18 @@ export const se_ListPortalsCommand = async (input, context) => {
|
|
|
593
651
|
b.m("GET").h(headers).q(query).b(body);
|
|
594
652
|
return b.build();
|
|
595
653
|
};
|
|
654
|
+
export const se_ListSessionLoggersCommand = async (input, context) => {
|
|
655
|
+
const b = rb(input, context);
|
|
656
|
+
const headers = {};
|
|
657
|
+
b.bp("/sessionLoggers");
|
|
658
|
+
const query = map({
|
|
659
|
+
[_nT]: [, input[_nT]],
|
|
660
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
661
|
+
});
|
|
662
|
+
let body;
|
|
663
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
664
|
+
return b.build();
|
|
665
|
+
};
|
|
596
666
|
export const se_ListSessionsCommand = async (input, context) => {
|
|
597
667
|
const b = rb(input, context);
|
|
598
668
|
const headers = {};
|
|
@@ -795,6 +865,22 @@ export const se_UpdatePortalCommand = async (input, context) => {
|
|
|
795
865
|
b.m("PUT").h(headers).b(body);
|
|
796
866
|
return b.build();
|
|
797
867
|
};
|
|
868
|
+
export const se_UpdateSessionLoggerCommand = async (input, context) => {
|
|
869
|
+
const b = rb(input, context);
|
|
870
|
+
const headers = {
|
|
871
|
+
"content-type": "application/json",
|
|
872
|
+
};
|
|
873
|
+
b.bp("/sessionLoggers/{sessionLoggerArn+}");
|
|
874
|
+
b.p("sessionLoggerArn", () => input.sessionLoggerArn, "{sessionLoggerArn+}", true);
|
|
875
|
+
let body;
|
|
876
|
+
body = JSON.stringify(take(input, {
|
|
877
|
+
displayName: [],
|
|
878
|
+
eventFilter: (_) => _json(_),
|
|
879
|
+
logConfiguration: (_) => _json(_),
|
|
880
|
+
}));
|
|
881
|
+
b.m("POST").h(headers).b(body);
|
|
882
|
+
return b.build();
|
|
883
|
+
};
|
|
798
884
|
export const se_UpdateTrustStoreCommand = async (input, context) => {
|
|
799
885
|
const b = rb(input, context);
|
|
800
886
|
const headers = {
|
|
@@ -910,6 +996,21 @@ export const de_AssociateNetworkSettingsCommand = async (output, context) => {
|
|
|
910
996
|
Object.assign(contents, doc);
|
|
911
997
|
return contents;
|
|
912
998
|
};
|
|
999
|
+
export const de_AssociateSessionLoggerCommand = async (output, context) => {
|
|
1000
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1001
|
+
return de_CommandError(output, context);
|
|
1002
|
+
}
|
|
1003
|
+
const contents = map({
|
|
1004
|
+
$metadata: deserializeMetadata(output),
|
|
1005
|
+
});
|
|
1006
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1007
|
+
const doc = take(data, {
|
|
1008
|
+
portalArn: __expectString,
|
|
1009
|
+
sessionLoggerArn: __expectString,
|
|
1010
|
+
});
|
|
1011
|
+
Object.assign(contents, doc);
|
|
1012
|
+
return contents;
|
|
1013
|
+
};
|
|
913
1014
|
export const de_AssociateTrustStoreCommand = async (output, context) => {
|
|
914
1015
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
915
1016
|
return de_CommandError(output, context);
|
|
@@ -1040,6 +1141,20 @@ export const de_CreatePortalCommand = async (output, context) => {
|
|
|
1040
1141
|
Object.assign(contents, doc);
|
|
1041
1142
|
return contents;
|
|
1042
1143
|
};
|
|
1144
|
+
export const de_CreateSessionLoggerCommand = async (output, context) => {
|
|
1145
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1146
|
+
return de_CommandError(output, context);
|
|
1147
|
+
}
|
|
1148
|
+
const contents = map({
|
|
1149
|
+
$metadata: deserializeMetadata(output),
|
|
1150
|
+
});
|
|
1151
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1152
|
+
const doc = take(data, {
|
|
1153
|
+
sessionLoggerArn: __expectString,
|
|
1154
|
+
});
|
|
1155
|
+
Object.assign(contents, doc);
|
|
1156
|
+
return contents;
|
|
1157
|
+
};
|
|
1043
1158
|
export const de_CreateTrustStoreCommand = async (output, context) => {
|
|
1044
1159
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1045
1160
|
return de_CommandError(output, context);
|
|
@@ -1142,6 +1257,16 @@ export const de_DeletePortalCommand = async (output, context) => {
|
|
|
1142
1257
|
await collectBody(output.body, context);
|
|
1143
1258
|
return contents;
|
|
1144
1259
|
};
|
|
1260
|
+
export const de_DeleteSessionLoggerCommand = async (output, context) => {
|
|
1261
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1262
|
+
return de_CommandError(output, context);
|
|
1263
|
+
}
|
|
1264
|
+
const contents = map({
|
|
1265
|
+
$metadata: deserializeMetadata(output),
|
|
1266
|
+
});
|
|
1267
|
+
await collectBody(output.body, context);
|
|
1268
|
+
return contents;
|
|
1269
|
+
};
|
|
1145
1270
|
export const de_DeleteTrustStoreCommand = async (output, context) => {
|
|
1146
1271
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1147
1272
|
return de_CommandError(output, context);
|
|
@@ -1212,6 +1337,16 @@ export const de_DisassociateNetworkSettingsCommand = async (output, context) =>
|
|
|
1212
1337
|
await collectBody(output.body, context);
|
|
1213
1338
|
return contents;
|
|
1214
1339
|
};
|
|
1340
|
+
export const de_DisassociateSessionLoggerCommand = async (output, context) => {
|
|
1341
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1342
|
+
return de_CommandError(output, context);
|
|
1343
|
+
}
|
|
1344
|
+
const contents = map({
|
|
1345
|
+
$metadata: deserializeMetadata(output),
|
|
1346
|
+
});
|
|
1347
|
+
await collectBody(output.body, context);
|
|
1348
|
+
return contents;
|
|
1349
|
+
};
|
|
1215
1350
|
export const de_DisassociateTrustStoreCommand = async (output, context) => {
|
|
1216
1351
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1217
1352
|
return de_CommandError(output, context);
|
|
@@ -1365,6 +1500,20 @@ export const de_GetSessionCommand = async (output, context) => {
|
|
|
1365
1500
|
Object.assign(contents, doc);
|
|
1366
1501
|
return contents;
|
|
1367
1502
|
};
|
|
1503
|
+
export const de_GetSessionLoggerCommand = async (output, context) => {
|
|
1504
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1505
|
+
return de_CommandError(output, context);
|
|
1506
|
+
}
|
|
1507
|
+
const contents = map({
|
|
1508
|
+
$metadata: deserializeMetadata(output),
|
|
1509
|
+
});
|
|
1510
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1511
|
+
const doc = take(data, {
|
|
1512
|
+
sessionLogger: (_) => de_SessionLogger(_, context),
|
|
1513
|
+
});
|
|
1514
|
+
Object.assign(contents, doc);
|
|
1515
|
+
return contents;
|
|
1516
|
+
};
|
|
1368
1517
|
export const de_GetTrustStoreCommand = async (output, context) => {
|
|
1369
1518
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1370
1519
|
return de_CommandError(output, context);
|
|
@@ -1512,6 +1661,21 @@ export const de_ListPortalsCommand = async (output, context) => {
|
|
|
1512
1661
|
Object.assign(contents, doc);
|
|
1513
1662
|
return contents;
|
|
1514
1663
|
};
|
|
1664
|
+
export const de_ListSessionLoggersCommand = async (output, context) => {
|
|
1665
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1666
|
+
return de_CommandError(output, context);
|
|
1667
|
+
}
|
|
1668
|
+
const contents = map({
|
|
1669
|
+
$metadata: deserializeMetadata(output),
|
|
1670
|
+
});
|
|
1671
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1672
|
+
const doc = take(data, {
|
|
1673
|
+
nextToken: __expectString,
|
|
1674
|
+
sessionLoggers: (_) => de_SessionLoggerList(_, context),
|
|
1675
|
+
});
|
|
1676
|
+
Object.assign(contents, doc);
|
|
1677
|
+
return contents;
|
|
1678
|
+
};
|
|
1515
1679
|
export const de_ListSessionsCommand = async (output, context) => {
|
|
1516
1680
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1517
1681
|
return de_CommandError(output, context);
|
|
@@ -1706,6 +1870,20 @@ export const de_UpdatePortalCommand = async (output, context) => {
|
|
|
1706
1870
|
Object.assign(contents, doc);
|
|
1707
1871
|
return contents;
|
|
1708
1872
|
};
|
|
1873
|
+
export const de_UpdateSessionLoggerCommand = async (output, context) => {
|
|
1874
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1875
|
+
return de_CommandError(output, context);
|
|
1876
|
+
}
|
|
1877
|
+
const contents = map({
|
|
1878
|
+
$metadata: deserializeMetadata(output),
|
|
1879
|
+
});
|
|
1880
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1881
|
+
const doc = take(data, {
|
|
1882
|
+
sessionLogger: (_) => de_SessionLogger(_, context),
|
|
1883
|
+
});
|
|
1884
|
+
Object.assign(contents, doc);
|
|
1885
|
+
return contents;
|
|
1886
|
+
};
|
|
1709
1887
|
export const de_UpdateTrustStoreCommand = async (output, context) => {
|
|
1710
1888
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1711
1889
|
return de_CommandError(output, context);
|
|
@@ -2018,6 +2196,7 @@ const de_Portal = (output, context) => {
|
|
|
2018
2196
|
portalEndpoint: __expectString,
|
|
2019
2197
|
portalStatus: __expectString,
|
|
2020
2198
|
rendererType: __expectString,
|
|
2199
|
+
sessionLoggerArn: __expectString,
|
|
2021
2200
|
statusReason: __expectString,
|
|
2022
2201
|
trustStoreArn: __expectString,
|
|
2023
2202
|
userAccessLoggingSettingsArn: __expectString,
|
|
@@ -2048,6 +2227,7 @@ const de_PortalSummary = (output, context) => {
|
|
|
2048
2227
|
portalEndpoint: __expectString,
|
|
2049
2228
|
portalStatus: __expectString,
|
|
2050
2229
|
rendererType: __expectString,
|
|
2230
|
+
sessionLoggerArn: __expectString,
|
|
2051
2231
|
trustStoreArn: __expectString,
|
|
2052
2232
|
userAccessLoggingSettingsArn: __expectString,
|
|
2053
2233
|
userSettingsArn: __expectString,
|
|
@@ -2064,6 +2244,34 @@ const de_Session = (output, context) => {
|
|
|
2064
2244
|
username: __expectString,
|
|
2065
2245
|
});
|
|
2066
2246
|
};
|
|
2247
|
+
const de_SessionLogger = (output, context) => {
|
|
2248
|
+
return take(output, {
|
|
2249
|
+
additionalEncryptionContext: _json,
|
|
2250
|
+
associatedPortalArns: _json,
|
|
2251
|
+
creationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2252
|
+
customerManagedKey: __expectString,
|
|
2253
|
+
displayName: __expectString,
|
|
2254
|
+
eventFilter: (_) => _json(__expectUnion(_)),
|
|
2255
|
+
logConfiguration: _json,
|
|
2256
|
+
sessionLoggerArn: __expectString,
|
|
2257
|
+
});
|
|
2258
|
+
};
|
|
2259
|
+
const de_SessionLoggerList = (output, context) => {
|
|
2260
|
+
const retVal = (output || [])
|
|
2261
|
+
.filter((e) => e != null)
|
|
2262
|
+
.map((entry) => {
|
|
2263
|
+
return de_SessionLoggerSummary(entry, context);
|
|
2264
|
+
});
|
|
2265
|
+
return retVal;
|
|
2266
|
+
};
|
|
2267
|
+
const de_SessionLoggerSummary = (output, context) => {
|
|
2268
|
+
return take(output, {
|
|
2269
|
+
creationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2270
|
+
displayName: __expectString,
|
|
2271
|
+
logConfiguration: _json,
|
|
2272
|
+
sessionLoggerArn: __expectString,
|
|
2273
|
+
});
|
|
2274
|
+
};
|
|
2067
2275
|
const de_SessionSummary = (output, context) => {
|
|
2068
2276
|
return take(output, {
|
|
2069
2277
|
endTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -2100,6 +2308,7 @@ const _ra = "retry-after";
|
|
|
2100
2308
|
const _s = "status";
|
|
2101
2309
|
const _sB = "sortBy";
|
|
2102
2310
|
const _sI = "sessionId";
|
|
2311
|
+
const _sLA = "sessionLoggerArn";
|
|
2103
2312
|
const _t = "thumbprint";
|
|
2104
2313
|
const _tK = "tagKeys";
|
|
2105
2314
|
const _tSA = "trustStoreArn";
|
|
@@ -3,6 +3,7 @@ import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOu
|
|
|
3
3
|
import { AssociateDataProtectionSettingsCommandInput, AssociateDataProtectionSettingsCommandOutput } from "./commands/AssociateDataProtectionSettingsCommand";
|
|
4
4
|
import { AssociateIpAccessSettingsCommandInput, AssociateIpAccessSettingsCommandOutput } from "./commands/AssociateIpAccessSettingsCommand";
|
|
5
5
|
import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "./commands/AssociateNetworkSettingsCommand";
|
|
6
|
+
import { AssociateSessionLoggerCommandInput, AssociateSessionLoggerCommandOutput } from "./commands/AssociateSessionLoggerCommand";
|
|
6
7
|
import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "./commands/AssociateTrustStoreCommand";
|
|
7
8
|
import { AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput } from "./commands/AssociateUserAccessLoggingSettingsCommand";
|
|
8
9
|
import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "./commands/AssociateUserSettingsCommand";
|
|
@@ -12,6 +13,7 @@ import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput
|
|
|
12
13
|
import { CreateIpAccessSettingsCommandInput, CreateIpAccessSettingsCommandOutput } from "./commands/CreateIpAccessSettingsCommand";
|
|
13
14
|
import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "./commands/CreateNetworkSettingsCommand";
|
|
14
15
|
import { CreatePortalCommandInput, CreatePortalCommandOutput } from "./commands/CreatePortalCommand";
|
|
16
|
+
import { CreateSessionLoggerCommandInput, CreateSessionLoggerCommandOutput } from "./commands/CreateSessionLoggerCommand";
|
|
15
17
|
import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "./commands/CreateTrustStoreCommand";
|
|
16
18
|
import { CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSettingsCommandOutput } from "./commands/CreateUserAccessLoggingSettingsCommand";
|
|
17
19
|
import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "./commands/CreateUserSettingsCommand";
|
|
@@ -21,6 +23,7 @@ import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput
|
|
|
21
23
|
import { DeleteIpAccessSettingsCommandInput, DeleteIpAccessSettingsCommandOutput } from "./commands/DeleteIpAccessSettingsCommand";
|
|
22
24
|
import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "./commands/DeleteNetworkSettingsCommand";
|
|
23
25
|
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
26
|
+
import { DeleteSessionLoggerCommandInput, DeleteSessionLoggerCommandOutput } from "./commands/DeleteSessionLoggerCommand";
|
|
24
27
|
import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./commands/DeleteTrustStoreCommand";
|
|
25
28
|
import { DeleteUserAccessLoggingSettingsCommandInput, DeleteUserAccessLoggingSettingsCommandOutput } from "./commands/DeleteUserAccessLoggingSettingsCommand";
|
|
26
29
|
import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "./commands/DeleteUserSettingsCommand";
|
|
@@ -28,6 +31,7 @@ import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCom
|
|
|
28
31
|
import { DisassociateDataProtectionSettingsCommandInput, DisassociateDataProtectionSettingsCommandOutput } from "./commands/DisassociateDataProtectionSettingsCommand";
|
|
29
32
|
import { DisassociateIpAccessSettingsCommandInput, DisassociateIpAccessSettingsCommandOutput } from "./commands/DisassociateIpAccessSettingsCommand";
|
|
30
33
|
import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "./commands/DisassociateNetworkSettingsCommand";
|
|
34
|
+
import { DisassociateSessionLoggerCommandInput, DisassociateSessionLoggerCommandOutput } from "./commands/DisassociateSessionLoggerCommand";
|
|
31
35
|
import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "./commands/DisassociateTrustStoreCommand";
|
|
32
36
|
import { DisassociateUserAccessLoggingSettingsCommandInput, DisassociateUserAccessLoggingSettingsCommandOutput } from "./commands/DisassociateUserAccessLoggingSettingsCommand";
|
|
33
37
|
import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "./commands/DisassociateUserSettingsCommand";
|
|
@@ -40,6 +44,7 @@ import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from
|
|
|
40
44
|
import { GetPortalCommandInput, GetPortalCommandOutput } from "./commands/GetPortalCommand";
|
|
41
45
|
import { GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput } from "./commands/GetPortalServiceProviderMetadataCommand";
|
|
42
46
|
import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
|
|
47
|
+
import { GetSessionLoggerCommandInput, GetSessionLoggerCommandOutput } from "./commands/GetSessionLoggerCommand";
|
|
43
48
|
import { GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput } from "./commands/GetTrustStoreCertificateCommand";
|
|
44
49
|
import { GetTrustStoreCommandInput, GetTrustStoreCommandOutput } from "./commands/GetTrustStoreCommand";
|
|
45
50
|
import { GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsCommandOutput } from "./commands/GetUserAccessLoggingSettingsCommand";
|
|
@@ -50,6 +55,7 @@ import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput }
|
|
|
50
55
|
import { ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput } from "./commands/ListIpAccessSettingsCommand";
|
|
51
56
|
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "./commands/ListNetworkSettingsCommand";
|
|
52
57
|
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
58
|
+
import { ListSessionLoggersCommandInput, ListSessionLoggersCommandOutput } from "./commands/ListSessionLoggersCommand";
|
|
53
59
|
import { ListSessionsCommandInput, ListSessionsCommandOutput } from "./commands/ListSessionsCommand";
|
|
54
60
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
55
61
|
import { ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput } from "./commands/ListTrustStoreCertificatesCommand";
|
|
@@ -64,6 +70,7 @@ import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput
|
|
|
64
70
|
import { UpdateIpAccessSettingsCommandInput, UpdateIpAccessSettingsCommandOutput } from "./commands/UpdateIpAccessSettingsCommand";
|
|
65
71
|
import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
|
|
66
72
|
import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "./commands/UpdatePortalCommand";
|
|
73
|
+
import { UpdateSessionLoggerCommandInput, UpdateSessionLoggerCommandOutput } from "./commands/UpdateSessionLoggerCommand";
|
|
67
74
|
import { UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput } from "./commands/UpdateTrustStoreCommand";
|
|
68
75
|
import { UpdateUserAccessLoggingSettingsCommandInput, UpdateUserAccessLoggingSettingsCommandOutput } from "./commands/UpdateUserAccessLoggingSettingsCommand";
|
|
69
76
|
import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from "./commands/UpdateUserSettingsCommand";
|
|
@@ -93,6 +100,12 @@ export interface WorkSpacesWeb {
|
|
|
93
100
|
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateNetworkSettingsCommandOutput>;
|
|
94
101
|
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
95
102
|
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
103
|
+
/**
|
|
104
|
+
* @see {@link AssociateSessionLoggerCommand}
|
|
105
|
+
*/
|
|
106
|
+
associateSessionLogger(args: AssociateSessionLoggerCommandInput, options?: __HttpHandlerOptions): Promise<AssociateSessionLoggerCommandOutput>;
|
|
107
|
+
associateSessionLogger(args: AssociateSessionLoggerCommandInput, cb: (err: any, data?: AssociateSessionLoggerCommandOutput) => void): void;
|
|
108
|
+
associateSessionLogger(args: AssociateSessionLoggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSessionLoggerCommandOutput) => void): void;
|
|
96
109
|
/**
|
|
97
110
|
* @see {@link AssociateTrustStoreCommand}
|
|
98
111
|
*/
|
|
@@ -149,6 +162,12 @@ export interface WorkSpacesWeb {
|
|
|
149
162
|
createPortal(args: CreatePortalCommandInput, options?: __HttpHandlerOptions): Promise<CreatePortalCommandOutput>;
|
|
150
163
|
createPortal(args: CreatePortalCommandInput, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
151
164
|
createPortal(args: CreatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
165
|
+
/**
|
|
166
|
+
* @see {@link CreateSessionLoggerCommand}
|
|
167
|
+
*/
|
|
168
|
+
createSessionLogger(args: CreateSessionLoggerCommandInput, options?: __HttpHandlerOptions): Promise<CreateSessionLoggerCommandOutput>;
|
|
169
|
+
createSessionLogger(args: CreateSessionLoggerCommandInput, cb: (err: any, data?: CreateSessionLoggerCommandOutput) => void): void;
|
|
170
|
+
createSessionLogger(args: CreateSessionLoggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSessionLoggerCommandOutput) => void): void;
|
|
152
171
|
/**
|
|
153
172
|
* @see {@link CreateTrustStoreCommand}
|
|
154
173
|
*/
|
|
@@ -203,6 +222,12 @@ export interface WorkSpacesWeb {
|
|
|
203
222
|
deletePortal(args: DeletePortalCommandInput, options?: __HttpHandlerOptions): Promise<DeletePortalCommandOutput>;
|
|
204
223
|
deletePortal(args: DeletePortalCommandInput, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
205
224
|
deletePortal(args: DeletePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
225
|
+
/**
|
|
226
|
+
* @see {@link DeleteSessionLoggerCommand}
|
|
227
|
+
*/
|
|
228
|
+
deleteSessionLogger(args: DeleteSessionLoggerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSessionLoggerCommandOutput>;
|
|
229
|
+
deleteSessionLogger(args: DeleteSessionLoggerCommandInput, cb: (err: any, data?: DeleteSessionLoggerCommandOutput) => void): void;
|
|
230
|
+
deleteSessionLogger(args: DeleteSessionLoggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSessionLoggerCommandOutput) => void): void;
|
|
206
231
|
/**
|
|
207
232
|
* @see {@link DeleteTrustStoreCommand}
|
|
208
233
|
*/
|
|
@@ -245,6 +270,12 @@ export interface WorkSpacesWeb {
|
|
|
245
270
|
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateNetworkSettingsCommandOutput>;
|
|
246
271
|
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
247
272
|
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
273
|
+
/**
|
|
274
|
+
* @see {@link DisassociateSessionLoggerCommand}
|
|
275
|
+
*/
|
|
276
|
+
disassociateSessionLogger(args: DisassociateSessionLoggerCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateSessionLoggerCommandOutput>;
|
|
277
|
+
disassociateSessionLogger(args: DisassociateSessionLoggerCommandInput, cb: (err: any, data?: DisassociateSessionLoggerCommandOutput) => void): void;
|
|
278
|
+
disassociateSessionLogger(args: DisassociateSessionLoggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateSessionLoggerCommandOutput) => void): void;
|
|
248
279
|
/**
|
|
249
280
|
* @see {@link DisassociateTrustStoreCommand}
|
|
250
281
|
*/
|
|
@@ -317,6 +348,12 @@ export interface WorkSpacesWeb {
|
|
|
317
348
|
getSession(args: GetSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetSessionCommandOutput>;
|
|
318
349
|
getSession(args: GetSessionCommandInput, cb: (err: any, data?: GetSessionCommandOutput) => void): void;
|
|
319
350
|
getSession(args: GetSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSessionCommandOutput) => void): void;
|
|
351
|
+
/**
|
|
352
|
+
* @see {@link GetSessionLoggerCommand}
|
|
353
|
+
*/
|
|
354
|
+
getSessionLogger(args: GetSessionLoggerCommandInput, options?: __HttpHandlerOptions): Promise<GetSessionLoggerCommandOutput>;
|
|
355
|
+
getSessionLogger(args: GetSessionLoggerCommandInput, cb: (err: any, data?: GetSessionLoggerCommandOutput) => void): void;
|
|
356
|
+
getSessionLogger(args: GetSessionLoggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSessionLoggerCommandOutput) => void): void;
|
|
320
357
|
/**
|
|
321
358
|
* @see {@link GetTrustStoreCommand}
|
|
322
359
|
*/
|
|
@@ -382,6 +419,13 @@ export interface WorkSpacesWeb {
|
|
|
382
419
|
listPortals(args: ListPortalsCommandInput, options?: __HttpHandlerOptions): Promise<ListPortalsCommandOutput>;
|
|
383
420
|
listPortals(args: ListPortalsCommandInput, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
384
421
|
listPortals(args: ListPortalsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
422
|
+
/**
|
|
423
|
+
* @see {@link ListSessionLoggersCommand}
|
|
424
|
+
*/
|
|
425
|
+
listSessionLoggers(): Promise<ListSessionLoggersCommandOutput>;
|
|
426
|
+
listSessionLoggers(args: ListSessionLoggersCommandInput, options?: __HttpHandlerOptions): Promise<ListSessionLoggersCommandOutput>;
|
|
427
|
+
listSessionLoggers(args: ListSessionLoggersCommandInput, cb: (err: any, data?: ListSessionLoggersCommandOutput) => void): void;
|
|
428
|
+
listSessionLoggers(args: ListSessionLoggersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSessionLoggersCommandOutput) => void): void;
|
|
385
429
|
/**
|
|
386
430
|
* @see {@link ListSessionsCommand}
|
|
387
431
|
*/
|
|
@@ -469,6 +513,12 @@ export interface WorkSpacesWeb {
|
|
|
469
513
|
updatePortal(args: UpdatePortalCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePortalCommandOutput>;
|
|
470
514
|
updatePortal(args: UpdatePortalCommandInput, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
471
515
|
updatePortal(args: UpdatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
516
|
+
/**
|
|
517
|
+
* @see {@link UpdateSessionLoggerCommand}
|
|
518
|
+
*/
|
|
519
|
+
updateSessionLogger(args: UpdateSessionLoggerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSessionLoggerCommandOutput>;
|
|
520
|
+
updateSessionLogger(args: UpdateSessionLoggerCommandInput, cb: (err: any, data?: UpdateSessionLoggerCommandOutput) => void): void;
|
|
521
|
+
updateSessionLogger(args: UpdateSessionLoggerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSessionLoggerCommandOutput) => void): void;
|
|
472
522
|
/**
|
|
473
523
|
* @see {@link UpdateTrustStoreCommand}
|
|
474
524
|
*/
|
|
@@ -11,6 +11,7 @@ import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOu
|
|
|
11
11
|
import { AssociateDataProtectionSettingsCommandInput, AssociateDataProtectionSettingsCommandOutput } from "./commands/AssociateDataProtectionSettingsCommand";
|
|
12
12
|
import { AssociateIpAccessSettingsCommandInput, AssociateIpAccessSettingsCommandOutput } from "./commands/AssociateIpAccessSettingsCommand";
|
|
13
13
|
import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "./commands/AssociateNetworkSettingsCommand";
|
|
14
|
+
import { AssociateSessionLoggerCommandInput, AssociateSessionLoggerCommandOutput } from "./commands/AssociateSessionLoggerCommand";
|
|
14
15
|
import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "./commands/AssociateTrustStoreCommand";
|
|
15
16
|
import { AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput } from "./commands/AssociateUserAccessLoggingSettingsCommand";
|
|
16
17
|
import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "./commands/AssociateUserSettingsCommand";
|
|
@@ -20,6 +21,7 @@ import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput
|
|
|
20
21
|
import { CreateIpAccessSettingsCommandInput, CreateIpAccessSettingsCommandOutput } from "./commands/CreateIpAccessSettingsCommand";
|
|
21
22
|
import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "./commands/CreateNetworkSettingsCommand";
|
|
22
23
|
import { CreatePortalCommandInput, CreatePortalCommandOutput } from "./commands/CreatePortalCommand";
|
|
24
|
+
import { CreateSessionLoggerCommandInput, CreateSessionLoggerCommandOutput } from "./commands/CreateSessionLoggerCommand";
|
|
23
25
|
import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "./commands/CreateTrustStoreCommand";
|
|
24
26
|
import { CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSettingsCommandOutput } from "./commands/CreateUserAccessLoggingSettingsCommand";
|
|
25
27
|
import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "./commands/CreateUserSettingsCommand";
|
|
@@ -29,6 +31,7 @@ import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput
|
|
|
29
31
|
import { DeleteIpAccessSettingsCommandInput, DeleteIpAccessSettingsCommandOutput } from "./commands/DeleteIpAccessSettingsCommand";
|
|
30
32
|
import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "./commands/DeleteNetworkSettingsCommand";
|
|
31
33
|
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
34
|
+
import { DeleteSessionLoggerCommandInput, DeleteSessionLoggerCommandOutput } from "./commands/DeleteSessionLoggerCommand";
|
|
32
35
|
import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./commands/DeleteTrustStoreCommand";
|
|
33
36
|
import { DeleteUserAccessLoggingSettingsCommandInput, DeleteUserAccessLoggingSettingsCommandOutput } from "./commands/DeleteUserAccessLoggingSettingsCommand";
|
|
34
37
|
import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "./commands/DeleteUserSettingsCommand";
|
|
@@ -36,6 +39,7 @@ import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCom
|
|
|
36
39
|
import { DisassociateDataProtectionSettingsCommandInput, DisassociateDataProtectionSettingsCommandOutput } from "./commands/DisassociateDataProtectionSettingsCommand";
|
|
37
40
|
import { DisassociateIpAccessSettingsCommandInput, DisassociateIpAccessSettingsCommandOutput } from "./commands/DisassociateIpAccessSettingsCommand";
|
|
38
41
|
import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "./commands/DisassociateNetworkSettingsCommand";
|
|
42
|
+
import { DisassociateSessionLoggerCommandInput, DisassociateSessionLoggerCommandOutput } from "./commands/DisassociateSessionLoggerCommand";
|
|
39
43
|
import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "./commands/DisassociateTrustStoreCommand";
|
|
40
44
|
import { DisassociateUserAccessLoggingSettingsCommandInput, DisassociateUserAccessLoggingSettingsCommandOutput } from "./commands/DisassociateUserAccessLoggingSettingsCommand";
|
|
41
45
|
import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "./commands/DisassociateUserSettingsCommand";
|
|
@@ -48,6 +52,7 @@ import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from
|
|
|
48
52
|
import { GetPortalCommandInput, GetPortalCommandOutput } from "./commands/GetPortalCommand";
|
|
49
53
|
import { GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput } from "./commands/GetPortalServiceProviderMetadataCommand";
|
|
50
54
|
import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
|
|
55
|
+
import { GetSessionLoggerCommandInput, GetSessionLoggerCommandOutput } from "./commands/GetSessionLoggerCommand";
|
|
51
56
|
import { GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput } from "./commands/GetTrustStoreCertificateCommand";
|
|
52
57
|
import { GetTrustStoreCommandInput, GetTrustStoreCommandOutput } from "./commands/GetTrustStoreCommand";
|
|
53
58
|
import { GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsCommandOutput } from "./commands/GetUserAccessLoggingSettingsCommand";
|
|
@@ -58,6 +63,7 @@ import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput }
|
|
|
58
63
|
import { ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput } from "./commands/ListIpAccessSettingsCommand";
|
|
59
64
|
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "./commands/ListNetworkSettingsCommand";
|
|
60
65
|
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
66
|
+
import { ListSessionLoggersCommandInput, ListSessionLoggersCommandOutput } from "./commands/ListSessionLoggersCommand";
|
|
61
67
|
import { ListSessionsCommandInput, ListSessionsCommandOutput } from "./commands/ListSessionsCommand";
|
|
62
68
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
63
69
|
import { ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput } from "./commands/ListTrustStoreCertificatesCommand";
|
|
@@ -72,6 +78,7 @@ import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput
|
|
|
72
78
|
import { UpdateIpAccessSettingsCommandInput, UpdateIpAccessSettingsCommandOutput } from "./commands/UpdateIpAccessSettingsCommand";
|
|
73
79
|
import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
|
|
74
80
|
import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "./commands/UpdatePortalCommand";
|
|
81
|
+
import { UpdateSessionLoggerCommandInput, UpdateSessionLoggerCommandOutput } from "./commands/UpdateSessionLoggerCommand";
|
|
75
82
|
import { UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput } from "./commands/UpdateTrustStoreCommand";
|
|
76
83
|
import { UpdateUserAccessLoggingSettingsCommandInput, UpdateUserAccessLoggingSettingsCommandOutput } from "./commands/UpdateUserAccessLoggingSettingsCommand";
|
|
77
84
|
import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from "./commands/UpdateUserSettingsCommand";
|
|
@@ -81,11 +88,11 @@ export { __Client };
|
|
|
81
88
|
/**
|
|
82
89
|
* @public
|
|
83
90
|
*/
|
|
84
|
-
export type ServiceInputTypes = AssociateBrowserSettingsCommandInput | AssociateDataProtectionSettingsCommandInput | AssociateIpAccessSettingsCommandInput | AssociateNetworkSettingsCommandInput | AssociateTrustStoreCommandInput | AssociateUserAccessLoggingSettingsCommandInput | AssociateUserSettingsCommandInput | CreateBrowserSettingsCommandInput | CreateDataProtectionSettingsCommandInput | CreateIdentityProviderCommandInput | CreateIpAccessSettingsCommandInput | CreateNetworkSettingsCommandInput | CreatePortalCommandInput | CreateTrustStoreCommandInput | CreateUserAccessLoggingSettingsCommandInput | CreateUserSettingsCommandInput | DeleteBrowserSettingsCommandInput | DeleteDataProtectionSettingsCommandInput | DeleteIdentityProviderCommandInput | DeleteIpAccessSettingsCommandInput | DeleteNetworkSettingsCommandInput | DeletePortalCommandInput | DeleteTrustStoreCommandInput | DeleteUserAccessLoggingSettingsCommandInput | DeleteUserSettingsCommandInput | DisassociateBrowserSettingsCommandInput | DisassociateDataProtectionSettingsCommandInput | DisassociateIpAccessSettingsCommandInput | DisassociateNetworkSettingsCommandInput | DisassociateTrustStoreCommandInput | DisassociateUserAccessLoggingSettingsCommandInput | DisassociateUserSettingsCommandInput | ExpireSessionCommandInput | GetBrowserSettingsCommandInput | GetDataProtectionSettingsCommandInput | GetIdentityProviderCommandInput | GetIpAccessSettingsCommandInput | GetNetworkSettingsCommandInput | GetPortalCommandInput | GetPortalServiceProviderMetadataCommandInput | GetSessionCommandInput | GetTrustStoreCertificateCommandInput | GetTrustStoreCommandInput | GetUserAccessLoggingSettingsCommandInput | GetUserSettingsCommandInput | ListBrowserSettingsCommandInput | ListDataProtectionSettingsCommandInput | ListIdentityProvidersCommandInput | ListIpAccessSettingsCommandInput | ListNetworkSettingsCommandInput | ListPortalsCommandInput | ListSessionsCommandInput | ListTagsForResourceCommandInput | ListTrustStoreCertificatesCommandInput | ListTrustStoresCommandInput | ListUserAccessLoggingSettingsCommandInput | ListUserSettingsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBrowserSettingsCommandInput | UpdateDataProtectionSettingsCommandInput | UpdateIdentityProviderCommandInput | UpdateIpAccessSettingsCommandInput | UpdateNetworkSettingsCommandInput | UpdatePortalCommandInput | UpdateTrustStoreCommandInput | UpdateUserAccessLoggingSettingsCommandInput | UpdateUserSettingsCommandInput;
|
|
91
|
+
export type ServiceInputTypes = AssociateBrowserSettingsCommandInput | AssociateDataProtectionSettingsCommandInput | AssociateIpAccessSettingsCommandInput | AssociateNetworkSettingsCommandInput | AssociateSessionLoggerCommandInput | AssociateTrustStoreCommandInput | AssociateUserAccessLoggingSettingsCommandInput | AssociateUserSettingsCommandInput | CreateBrowserSettingsCommandInput | CreateDataProtectionSettingsCommandInput | CreateIdentityProviderCommandInput | CreateIpAccessSettingsCommandInput | CreateNetworkSettingsCommandInput | CreatePortalCommandInput | CreateSessionLoggerCommandInput | CreateTrustStoreCommandInput | CreateUserAccessLoggingSettingsCommandInput | CreateUserSettingsCommandInput | DeleteBrowserSettingsCommandInput | DeleteDataProtectionSettingsCommandInput | DeleteIdentityProviderCommandInput | DeleteIpAccessSettingsCommandInput | DeleteNetworkSettingsCommandInput | DeletePortalCommandInput | DeleteSessionLoggerCommandInput | DeleteTrustStoreCommandInput | DeleteUserAccessLoggingSettingsCommandInput | DeleteUserSettingsCommandInput | DisassociateBrowserSettingsCommandInput | DisassociateDataProtectionSettingsCommandInput | DisassociateIpAccessSettingsCommandInput | DisassociateNetworkSettingsCommandInput | DisassociateSessionLoggerCommandInput | DisassociateTrustStoreCommandInput | DisassociateUserAccessLoggingSettingsCommandInput | DisassociateUserSettingsCommandInput | ExpireSessionCommandInput | GetBrowserSettingsCommandInput | GetDataProtectionSettingsCommandInput | GetIdentityProviderCommandInput | GetIpAccessSettingsCommandInput | GetNetworkSettingsCommandInput | GetPortalCommandInput | GetPortalServiceProviderMetadataCommandInput | GetSessionCommandInput | GetSessionLoggerCommandInput | GetTrustStoreCertificateCommandInput | GetTrustStoreCommandInput | GetUserAccessLoggingSettingsCommandInput | GetUserSettingsCommandInput | ListBrowserSettingsCommandInput | ListDataProtectionSettingsCommandInput | ListIdentityProvidersCommandInput | ListIpAccessSettingsCommandInput | ListNetworkSettingsCommandInput | ListPortalsCommandInput | ListSessionLoggersCommandInput | ListSessionsCommandInput | ListTagsForResourceCommandInput | ListTrustStoreCertificatesCommandInput | ListTrustStoresCommandInput | ListUserAccessLoggingSettingsCommandInput | ListUserSettingsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBrowserSettingsCommandInput | UpdateDataProtectionSettingsCommandInput | UpdateIdentityProviderCommandInput | UpdateIpAccessSettingsCommandInput | UpdateNetworkSettingsCommandInput | UpdatePortalCommandInput | UpdateSessionLoggerCommandInput | UpdateTrustStoreCommandInput | UpdateUserAccessLoggingSettingsCommandInput | UpdateUserSettingsCommandInput;
|
|
85
92
|
/**
|
|
86
93
|
* @public
|
|
87
94
|
*/
|
|
88
|
-
export type ServiceOutputTypes = AssociateBrowserSettingsCommandOutput | AssociateDataProtectionSettingsCommandOutput | AssociateIpAccessSettingsCommandOutput | AssociateNetworkSettingsCommandOutput | AssociateTrustStoreCommandOutput | AssociateUserAccessLoggingSettingsCommandOutput | AssociateUserSettingsCommandOutput | CreateBrowserSettingsCommandOutput | CreateDataProtectionSettingsCommandOutput | CreateIdentityProviderCommandOutput | CreateIpAccessSettingsCommandOutput | CreateNetworkSettingsCommandOutput | CreatePortalCommandOutput | CreateTrustStoreCommandOutput | CreateUserAccessLoggingSettingsCommandOutput | CreateUserSettingsCommandOutput | DeleteBrowserSettingsCommandOutput | DeleteDataProtectionSettingsCommandOutput | DeleteIdentityProviderCommandOutput | DeleteIpAccessSettingsCommandOutput | DeleteNetworkSettingsCommandOutput | DeletePortalCommandOutput | DeleteTrustStoreCommandOutput | DeleteUserAccessLoggingSettingsCommandOutput | DeleteUserSettingsCommandOutput | DisassociateBrowserSettingsCommandOutput | DisassociateDataProtectionSettingsCommandOutput | DisassociateIpAccessSettingsCommandOutput | DisassociateNetworkSettingsCommandOutput | DisassociateTrustStoreCommandOutput | DisassociateUserAccessLoggingSettingsCommandOutput | DisassociateUserSettingsCommandOutput | ExpireSessionCommandOutput | GetBrowserSettingsCommandOutput | GetDataProtectionSettingsCommandOutput | GetIdentityProviderCommandOutput | GetIpAccessSettingsCommandOutput | GetNetworkSettingsCommandOutput | GetPortalCommandOutput | GetPortalServiceProviderMetadataCommandOutput | GetSessionCommandOutput | GetTrustStoreCertificateCommandOutput | GetTrustStoreCommandOutput | GetUserAccessLoggingSettingsCommandOutput | GetUserSettingsCommandOutput | ListBrowserSettingsCommandOutput | ListDataProtectionSettingsCommandOutput | ListIdentityProvidersCommandOutput | ListIpAccessSettingsCommandOutput | ListNetworkSettingsCommandOutput | ListPortalsCommandOutput | ListSessionsCommandOutput | ListTagsForResourceCommandOutput | ListTrustStoreCertificatesCommandOutput | ListTrustStoresCommandOutput | ListUserAccessLoggingSettingsCommandOutput | ListUserSettingsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBrowserSettingsCommandOutput | UpdateDataProtectionSettingsCommandOutput | UpdateIdentityProviderCommandOutput | UpdateIpAccessSettingsCommandOutput | UpdateNetworkSettingsCommandOutput | UpdatePortalCommandOutput | UpdateTrustStoreCommandOutput | UpdateUserAccessLoggingSettingsCommandOutput | UpdateUserSettingsCommandOutput;
|
|
95
|
+
export type ServiceOutputTypes = AssociateBrowserSettingsCommandOutput | AssociateDataProtectionSettingsCommandOutput | AssociateIpAccessSettingsCommandOutput | AssociateNetworkSettingsCommandOutput | AssociateSessionLoggerCommandOutput | AssociateTrustStoreCommandOutput | AssociateUserAccessLoggingSettingsCommandOutput | AssociateUserSettingsCommandOutput | CreateBrowserSettingsCommandOutput | CreateDataProtectionSettingsCommandOutput | CreateIdentityProviderCommandOutput | CreateIpAccessSettingsCommandOutput | CreateNetworkSettingsCommandOutput | CreatePortalCommandOutput | CreateSessionLoggerCommandOutput | CreateTrustStoreCommandOutput | CreateUserAccessLoggingSettingsCommandOutput | CreateUserSettingsCommandOutput | DeleteBrowserSettingsCommandOutput | DeleteDataProtectionSettingsCommandOutput | DeleteIdentityProviderCommandOutput | DeleteIpAccessSettingsCommandOutput | DeleteNetworkSettingsCommandOutput | DeletePortalCommandOutput | DeleteSessionLoggerCommandOutput | DeleteTrustStoreCommandOutput | DeleteUserAccessLoggingSettingsCommandOutput | DeleteUserSettingsCommandOutput | DisassociateBrowserSettingsCommandOutput | DisassociateDataProtectionSettingsCommandOutput | DisassociateIpAccessSettingsCommandOutput | DisassociateNetworkSettingsCommandOutput | DisassociateSessionLoggerCommandOutput | DisassociateTrustStoreCommandOutput | DisassociateUserAccessLoggingSettingsCommandOutput | DisassociateUserSettingsCommandOutput | ExpireSessionCommandOutput | GetBrowserSettingsCommandOutput | GetDataProtectionSettingsCommandOutput | GetIdentityProviderCommandOutput | GetIpAccessSettingsCommandOutput | GetNetworkSettingsCommandOutput | GetPortalCommandOutput | GetPortalServiceProviderMetadataCommandOutput | GetSessionCommandOutput | GetSessionLoggerCommandOutput | GetTrustStoreCertificateCommandOutput | GetTrustStoreCommandOutput | GetUserAccessLoggingSettingsCommandOutput | GetUserSettingsCommandOutput | ListBrowserSettingsCommandOutput | ListDataProtectionSettingsCommandOutput | ListIdentityProvidersCommandOutput | ListIpAccessSettingsCommandOutput | ListNetworkSettingsCommandOutput | ListPortalsCommandOutput | ListSessionLoggersCommandOutput | ListSessionsCommandOutput | ListTagsForResourceCommandOutput | ListTrustStoreCertificatesCommandOutput | ListTrustStoresCommandOutput | ListUserAccessLoggingSettingsCommandOutput | ListUserSettingsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBrowserSettingsCommandOutput | UpdateDataProtectionSettingsCommandOutput | UpdateIdentityProviderCommandOutput | UpdateIpAccessSettingsCommandOutput | UpdateNetworkSettingsCommandOutput | UpdatePortalCommandOutput | UpdateSessionLoggerCommandOutput | UpdateTrustStoreCommandOutput | UpdateUserAccessLoggingSettingsCommandOutput | UpdateUserSettingsCommandOutput;
|
|
89
96
|
/**
|
|
90
97
|
* @public
|
|
91
98
|
*/
|