@aws-sdk/client-workspaces-web 3.696.0 → 3.697.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 +443 -0
- package/dist-es/WorkSpacesWeb.js +14 -0
- package/dist-es/commands/AssociateDataProtectionSettingsCommand.js +22 -0
- package/dist-es/commands/CreateDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/DeleteDataProtectionSettingsCommand.js +22 -0
- package/dist-es/commands/DisassociateDataProtectionSettingsCommand.js +22 -0
- package/dist-es/commands/GetDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/ListDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/UpdateDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +80 -0
- package/dist-es/pagination/ListDataProtectionSettingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +210 -0
- package/dist-types/WorkSpacesWeb.d.ts +51 -0
- package/dist-types/WorkSpacesWebClient.d.ts +9 -2
- package/dist-types/commands/AssociateDataProtectionSettingsCommand.d.ts +91 -0
- package/dist-types/commands/CreateDataProtectionSettingsCommand.d.ts +135 -0
- package/dist-types/commands/DeleteDataProtectionSettingsCommand.d.ts +84 -0
- package/dist-types/commands/DisassociateDataProtectionSettingsCommand.d.ts +87 -0
- package/dist-types/commands/GetDataProtectionSettingsCommand.d.ts +129 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -0
- package/dist-types/commands/ListDataProtectionSettingsCommand.d.ts +92 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDataProtectionSettingsCommand.d.ts +163 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +468 -0
- package/dist-types/pagination/ListDataProtectionSettingsPaginator.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 +127 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataProtectionSettingsCommand.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 +132 -0
- package/dist-types/ts3.4/pagination/ListDataProtectionSettingsPaginator.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 +1 -1
|
@@ -16,6 +16,18 @@ export const se_AssociateBrowserSettingsCommand = async (input, context) => {
|
|
|
16
16
|
b.m("PUT").h(headers).q(query).b(body);
|
|
17
17
|
return b.build();
|
|
18
18
|
};
|
|
19
|
+
export const se_AssociateDataProtectionSettingsCommand = async (input, context) => {
|
|
20
|
+
const b = rb(input, context);
|
|
21
|
+
const headers = {};
|
|
22
|
+
b.bp("/portals/{portalArn+}/dataProtectionSettings");
|
|
23
|
+
b.p("portalArn", () => input.portalArn, "{portalArn+}", true);
|
|
24
|
+
const query = map({
|
|
25
|
+
[_dPSA]: [, __expectNonNull(input[_dPSA], `dataProtectionSettingsArn`)],
|
|
26
|
+
});
|
|
27
|
+
let body;
|
|
28
|
+
b.m("PUT").h(headers).q(query).b(body);
|
|
29
|
+
return b.build();
|
|
30
|
+
};
|
|
19
31
|
export const se_AssociateIpAccessSettingsCommand = async (input, context) => {
|
|
20
32
|
const b = rb(input, context);
|
|
21
33
|
const headers = {};
|
|
@@ -93,6 +105,25 @@ export const se_CreateBrowserSettingsCommand = async (input, context) => {
|
|
|
93
105
|
b.m("POST").h(headers).b(body);
|
|
94
106
|
return b.build();
|
|
95
107
|
};
|
|
108
|
+
export const se_CreateDataProtectionSettingsCommand = async (input, context) => {
|
|
109
|
+
const b = rb(input, context);
|
|
110
|
+
const headers = {
|
|
111
|
+
"content-type": "application/json",
|
|
112
|
+
};
|
|
113
|
+
b.bp("/dataProtectionSettings");
|
|
114
|
+
let body;
|
|
115
|
+
body = JSON.stringify(take(input, {
|
|
116
|
+
additionalEncryptionContext: (_) => _json(_),
|
|
117
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
118
|
+
customerManagedKey: [],
|
|
119
|
+
description: [],
|
|
120
|
+
displayName: [],
|
|
121
|
+
inlineRedactionConfiguration: (_) => _json(_),
|
|
122
|
+
tags: (_) => _json(_),
|
|
123
|
+
}));
|
|
124
|
+
b.m("POST").h(headers).b(body);
|
|
125
|
+
return b.build();
|
|
126
|
+
};
|
|
96
127
|
export const se_CreateIdentityProviderCommand = async (input, context) => {
|
|
97
128
|
const b = rb(input, context);
|
|
98
129
|
const headers = {
|
|
@@ -231,6 +262,15 @@ export const se_DeleteBrowserSettingsCommand = async (input, context) => {
|
|
|
231
262
|
b.m("DELETE").h(headers).b(body);
|
|
232
263
|
return b.build();
|
|
233
264
|
};
|
|
265
|
+
export const se_DeleteDataProtectionSettingsCommand = async (input, context) => {
|
|
266
|
+
const b = rb(input, context);
|
|
267
|
+
const headers = {};
|
|
268
|
+
b.bp("/dataProtectionSettings/{dataProtectionSettingsArn+}");
|
|
269
|
+
b.p("dataProtectionSettingsArn", () => input.dataProtectionSettingsArn, "{dataProtectionSettingsArn+}", true);
|
|
270
|
+
let body;
|
|
271
|
+
b.m("DELETE").h(headers).b(body);
|
|
272
|
+
return b.build();
|
|
273
|
+
};
|
|
234
274
|
export const se_DeleteIdentityProviderCommand = async (input, context) => {
|
|
235
275
|
const b = rb(input, context);
|
|
236
276
|
const headers = {};
|
|
@@ -303,6 +343,15 @@ export const se_DisassociateBrowserSettingsCommand = async (input, context) => {
|
|
|
303
343
|
b.m("DELETE").h(headers).b(body);
|
|
304
344
|
return b.build();
|
|
305
345
|
};
|
|
346
|
+
export const se_DisassociateDataProtectionSettingsCommand = async (input, context) => {
|
|
347
|
+
const b = rb(input, context);
|
|
348
|
+
const headers = {};
|
|
349
|
+
b.bp("/portals/{portalArn+}/dataProtectionSettings");
|
|
350
|
+
b.p("portalArn", () => input.portalArn, "{portalArn+}", true);
|
|
351
|
+
let body;
|
|
352
|
+
b.m("DELETE").h(headers).b(body);
|
|
353
|
+
return b.build();
|
|
354
|
+
};
|
|
306
355
|
export const se_DisassociateIpAccessSettingsCommand = async (input, context) => {
|
|
307
356
|
const b = rb(input, context);
|
|
308
357
|
const headers = {};
|
|
@@ -367,6 +416,15 @@ export const se_GetBrowserSettingsCommand = async (input, context) => {
|
|
|
367
416
|
b.m("GET").h(headers).b(body);
|
|
368
417
|
return b.build();
|
|
369
418
|
};
|
|
419
|
+
export const se_GetDataProtectionSettingsCommand = async (input, context) => {
|
|
420
|
+
const b = rb(input, context);
|
|
421
|
+
const headers = {};
|
|
422
|
+
b.bp("/dataProtectionSettings/{dataProtectionSettingsArn+}");
|
|
423
|
+
b.p("dataProtectionSettingsArn", () => input.dataProtectionSettingsArn, "{dataProtectionSettingsArn+}", true);
|
|
424
|
+
let body;
|
|
425
|
+
b.m("GET").h(headers).b(body);
|
|
426
|
+
return b.build();
|
|
427
|
+
};
|
|
370
428
|
export const se_GetIdentityProviderCommand = async (input, context) => {
|
|
371
429
|
const b = rb(input, context);
|
|
372
430
|
const headers = {};
|
|
@@ -473,6 +531,18 @@ export const se_ListBrowserSettingsCommand = async (input, context) => {
|
|
|
473
531
|
b.m("GET").h(headers).q(query).b(body);
|
|
474
532
|
return b.build();
|
|
475
533
|
};
|
|
534
|
+
export const se_ListDataProtectionSettingsCommand = async (input, context) => {
|
|
535
|
+
const b = rb(input, context);
|
|
536
|
+
const headers = {};
|
|
537
|
+
b.bp("/dataProtectionSettings");
|
|
538
|
+
const query = map({
|
|
539
|
+
[_nT]: [, input[_nT]],
|
|
540
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
541
|
+
});
|
|
542
|
+
let body;
|
|
543
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
544
|
+
return b.build();
|
|
545
|
+
};
|
|
476
546
|
export const se_ListIdentityProvidersCommand = async (input, context) => {
|
|
477
547
|
const b = rb(input, context);
|
|
478
548
|
const headers = {};
|
|
@@ -639,6 +709,23 @@ export const se_UpdateBrowserSettingsCommand = async (input, context) => {
|
|
|
639
709
|
b.m("PATCH").h(headers).b(body);
|
|
640
710
|
return b.build();
|
|
641
711
|
};
|
|
712
|
+
export const se_UpdateDataProtectionSettingsCommand = async (input, context) => {
|
|
713
|
+
const b = rb(input, context);
|
|
714
|
+
const headers = {
|
|
715
|
+
"content-type": "application/json",
|
|
716
|
+
};
|
|
717
|
+
b.bp("/dataProtectionSettings/{dataProtectionSettingsArn+}");
|
|
718
|
+
b.p("dataProtectionSettingsArn", () => input.dataProtectionSettingsArn, "{dataProtectionSettingsArn+}", true);
|
|
719
|
+
let body;
|
|
720
|
+
body = JSON.stringify(take(input, {
|
|
721
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
722
|
+
description: [],
|
|
723
|
+
displayName: [],
|
|
724
|
+
inlineRedactionConfiguration: (_) => _json(_),
|
|
725
|
+
}));
|
|
726
|
+
b.m("PATCH").h(headers).b(body);
|
|
727
|
+
return b.build();
|
|
728
|
+
};
|
|
642
729
|
export const se_UpdateIdentityProviderCommand = async (input, context) => {
|
|
643
730
|
const b = rb(input, context);
|
|
644
731
|
const headers = {
|
|
@@ -776,6 +863,21 @@ export const de_AssociateBrowserSettingsCommand = async (output, context) => {
|
|
|
776
863
|
Object.assign(contents, doc);
|
|
777
864
|
return contents;
|
|
778
865
|
};
|
|
866
|
+
export const de_AssociateDataProtectionSettingsCommand = async (output, context) => {
|
|
867
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
868
|
+
return de_CommandError(output, context);
|
|
869
|
+
}
|
|
870
|
+
const contents = map({
|
|
871
|
+
$metadata: deserializeMetadata(output),
|
|
872
|
+
});
|
|
873
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
874
|
+
const doc = take(data, {
|
|
875
|
+
dataProtectionSettingsArn: __expectString,
|
|
876
|
+
portalArn: __expectString,
|
|
877
|
+
});
|
|
878
|
+
Object.assign(contents, doc);
|
|
879
|
+
return contents;
|
|
880
|
+
};
|
|
779
881
|
export const de_AssociateIpAccessSettingsCommand = async (output, context) => {
|
|
780
882
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
781
883
|
return de_CommandError(output, context);
|
|
@@ -865,6 +967,20 @@ export const de_CreateBrowserSettingsCommand = async (output, context) => {
|
|
|
865
967
|
Object.assign(contents, doc);
|
|
866
968
|
return contents;
|
|
867
969
|
};
|
|
970
|
+
export const de_CreateDataProtectionSettingsCommand = async (output, context) => {
|
|
971
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
972
|
+
return de_CommandError(output, context);
|
|
973
|
+
}
|
|
974
|
+
const contents = map({
|
|
975
|
+
$metadata: deserializeMetadata(output),
|
|
976
|
+
});
|
|
977
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
978
|
+
const doc = take(data, {
|
|
979
|
+
dataProtectionSettingsArn: __expectString,
|
|
980
|
+
});
|
|
981
|
+
Object.assign(contents, doc);
|
|
982
|
+
return contents;
|
|
983
|
+
};
|
|
868
984
|
export const de_CreateIdentityProviderCommand = async (output, context) => {
|
|
869
985
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
870
986
|
return de_CommandError(output, context);
|
|
@@ -974,6 +1090,16 @@ export const de_DeleteBrowserSettingsCommand = async (output, context) => {
|
|
|
974
1090
|
await collectBody(output.body, context);
|
|
975
1091
|
return contents;
|
|
976
1092
|
};
|
|
1093
|
+
export const de_DeleteDataProtectionSettingsCommand = async (output, context) => {
|
|
1094
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1095
|
+
return de_CommandError(output, context);
|
|
1096
|
+
}
|
|
1097
|
+
const contents = map({
|
|
1098
|
+
$metadata: deserializeMetadata(output),
|
|
1099
|
+
});
|
|
1100
|
+
await collectBody(output.body, context);
|
|
1101
|
+
return contents;
|
|
1102
|
+
};
|
|
977
1103
|
export const de_DeleteIdentityProviderCommand = async (output, context) => {
|
|
978
1104
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
979
1105
|
return de_CommandError(output, context);
|
|
@@ -1054,6 +1180,16 @@ export const de_DisassociateBrowserSettingsCommand = async (output, context) =>
|
|
|
1054
1180
|
await collectBody(output.body, context);
|
|
1055
1181
|
return contents;
|
|
1056
1182
|
};
|
|
1183
|
+
export const de_DisassociateDataProtectionSettingsCommand = async (output, context) => {
|
|
1184
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1185
|
+
return de_CommandError(output, context);
|
|
1186
|
+
}
|
|
1187
|
+
const contents = map({
|
|
1188
|
+
$metadata: deserializeMetadata(output),
|
|
1189
|
+
});
|
|
1190
|
+
await collectBody(output.body, context);
|
|
1191
|
+
return contents;
|
|
1192
|
+
};
|
|
1057
1193
|
export const de_DisassociateIpAccessSettingsCommand = async (output, context) => {
|
|
1058
1194
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1059
1195
|
return de_CommandError(output, context);
|
|
@@ -1128,6 +1264,20 @@ export const de_GetBrowserSettingsCommand = async (output, context) => {
|
|
|
1128
1264
|
Object.assign(contents, doc);
|
|
1129
1265
|
return contents;
|
|
1130
1266
|
};
|
|
1267
|
+
export const de_GetDataProtectionSettingsCommand = async (output, context) => {
|
|
1268
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1269
|
+
return de_CommandError(output, context);
|
|
1270
|
+
}
|
|
1271
|
+
const contents = map({
|
|
1272
|
+
$metadata: deserializeMetadata(output),
|
|
1273
|
+
});
|
|
1274
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1275
|
+
const doc = take(data, {
|
|
1276
|
+
dataProtectionSettings: (_) => de_DataProtectionSettings(_, context),
|
|
1277
|
+
});
|
|
1278
|
+
Object.assign(contents, doc);
|
|
1279
|
+
return contents;
|
|
1280
|
+
};
|
|
1131
1281
|
export const de_GetIdentityProviderCommand = async (output, context) => {
|
|
1132
1282
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1133
1283
|
return de_CommandError(output, context);
|
|
@@ -1285,6 +1435,21 @@ export const de_ListBrowserSettingsCommand = async (output, context) => {
|
|
|
1285
1435
|
Object.assign(contents, doc);
|
|
1286
1436
|
return contents;
|
|
1287
1437
|
};
|
|
1438
|
+
export const de_ListDataProtectionSettingsCommand = async (output, context) => {
|
|
1439
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1440
|
+
return de_CommandError(output, context);
|
|
1441
|
+
}
|
|
1442
|
+
const contents = map({
|
|
1443
|
+
$metadata: deserializeMetadata(output),
|
|
1444
|
+
});
|
|
1445
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1446
|
+
const doc = take(data, {
|
|
1447
|
+
dataProtectionSettings: (_) => de_DataProtectionSettingsList(_, context),
|
|
1448
|
+
nextToken: __expectString,
|
|
1449
|
+
});
|
|
1450
|
+
Object.assign(contents, doc);
|
|
1451
|
+
return contents;
|
|
1452
|
+
};
|
|
1288
1453
|
export const de_ListIdentityProvidersCommand = async (output, context) => {
|
|
1289
1454
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1290
1455
|
return de_CommandError(output, context);
|
|
@@ -1469,6 +1634,20 @@ export const de_UpdateBrowserSettingsCommand = async (output, context) => {
|
|
|
1469
1634
|
Object.assign(contents, doc);
|
|
1470
1635
|
return contents;
|
|
1471
1636
|
};
|
|
1637
|
+
export const de_UpdateDataProtectionSettingsCommand = async (output, context) => {
|
|
1638
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1639
|
+
return de_CommandError(output, context);
|
|
1640
|
+
}
|
|
1641
|
+
const contents = map({
|
|
1642
|
+
$metadata: deserializeMetadata(output),
|
|
1643
|
+
});
|
|
1644
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1645
|
+
const doc = take(data, {
|
|
1646
|
+
dataProtectionSettings: (_) => de_DataProtectionSettings(_, context),
|
|
1647
|
+
});
|
|
1648
|
+
Object.assign(contents, doc);
|
|
1649
|
+
return contents;
|
|
1650
|
+
};
|
|
1472
1651
|
export const de_UpdateIdentityProviderCommand = async (output, context) => {
|
|
1473
1652
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1474
1653
|
return de_CommandError(output, context);
|
|
@@ -1763,6 +1942,34 @@ const de_CertificateSummaryList = (output, context) => {
|
|
|
1763
1942
|
});
|
|
1764
1943
|
return retVal;
|
|
1765
1944
|
};
|
|
1945
|
+
const de_DataProtectionSettings = (output, context) => {
|
|
1946
|
+
return take(output, {
|
|
1947
|
+
additionalEncryptionContext: _json,
|
|
1948
|
+
associatedPortalArns: _json,
|
|
1949
|
+
creationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1950
|
+
customerManagedKey: __expectString,
|
|
1951
|
+
dataProtectionSettingsArn: __expectString,
|
|
1952
|
+
description: __expectString,
|
|
1953
|
+
displayName: __expectString,
|
|
1954
|
+
inlineRedactionConfiguration: _json,
|
|
1955
|
+
});
|
|
1956
|
+
};
|
|
1957
|
+
const de_DataProtectionSettingsList = (output, context) => {
|
|
1958
|
+
const retVal = (output || [])
|
|
1959
|
+
.filter((e) => e != null)
|
|
1960
|
+
.map((entry) => {
|
|
1961
|
+
return de_DataProtectionSettingsSummary(entry, context);
|
|
1962
|
+
});
|
|
1963
|
+
return retVal;
|
|
1964
|
+
};
|
|
1965
|
+
const de_DataProtectionSettingsSummary = (output, context) => {
|
|
1966
|
+
return take(output, {
|
|
1967
|
+
creationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1968
|
+
dataProtectionSettingsArn: __expectString,
|
|
1969
|
+
description: __expectString,
|
|
1970
|
+
displayName: __expectString,
|
|
1971
|
+
});
|
|
1972
|
+
};
|
|
1766
1973
|
const de_IpAccessSettings = (output, context) => {
|
|
1767
1974
|
return take(output, {
|
|
1768
1975
|
additionalEncryptionContext: _json,
|
|
@@ -1799,6 +2006,7 @@ const de_Portal = (output, context) => {
|
|
|
1799
2006
|
browserType: __expectString,
|
|
1800
2007
|
creationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1801
2008
|
customerManagedKey: __expectString,
|
|
2009
|
+
dataProtectionSettingsArn: __expectString,
|
|
1802
2010
|
displayName: __expectString,
|
|
1803
2011
|
instanceType: __expectString,
|
|
1804
2012
|
ipAccessSettingsArn: __expectString,
|
|
@@ -1828,6 +2036,7 @@ const de_PortalSummary = (output, context) => {
|
|
|
1828
2036
|
browserSettingsArn: __expectString,
|
|
1829
2037
|
browserType: __expectString,
|
|
1830
2038
|
creationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2039
|
+
dataProtectionSettingsArn: __expectString,
|
|
1831
2040
|
displayName: __expectString,
|
|
1832
2041
|
instanceType: __expectString,
|
|
1833
2042
|
ipAccessSettingsArn: __expectString,
|
|
@@ -1879,6 +2088,7 @@ const deserializeMetadata = (output) => ({
|
|
|
1879
2088
|
});
|
|
1880
2089
|
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
1881
2090
|
const _bSA = "browserSettingsArn";
|
|
2091
|
+
const _dPSA = "dataProtectionSettingsArn";
|
|
1882
2092
|
const _iASA = "ipAccessSettingsArn";
|
|
1883
2093
|
const _mR = "maxResults";
|
|
1884
2094
|
const _nSA = "networkSettingsArn";
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput } from "./commands/AssociateBrowserSettingsCommand";
|
|
3
|
+
import { AssociateDataProtectionSettingsCommandInput, AssociateDataProtectionSettingsCommandOutput } from "./commands/AssociateDataProtectionSettingsCommand";
|
|
3
4
|
import { AssociateIpAccessSettingsCommandInput, AssociateIpAccessSettingsCommandOutput } from "./commands/AssociateIpAccessSettingsCommand";
|
|
4
5
|
import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "./commands/AssociateNetworkSettingsCommand";
|
|
5
6
|
import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "./commands/AssociateTrustStoreCommand";
|
|
6
7
|
import { AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput } from "./commands/AssociateUserAccessLoggingSettingsCommand";
|
|
7
8
|
import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "./commands/AssociateUserSettingsCommand";
|
|
8
9
|
import { CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput } from "./commands/CreateBrowserSettingsCommand";
|
|
10
|
+
import { CreateDataProtectionSettingsCommandInput, CreateDataProtectionSettingsCommandOutput } from "./commands/CreateDataProtectionSettingsCommand";
|
|
9
11
|
import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput } from "./commands/CreateIdentityProviderCommand";
|
|
10
12
|
import { CreateIpAccessSettingsCommandInput, CreateIpAccessSettingsCommandOutput } from "./commands/CreateIpAccessSettingsCommand";
|
|
11
13
|
import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "./commands/CreateNetworkSettingsCommand";
|
|
@@ -14,6 +16,7 @@ import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "./c
|
|
|
14
16
|
import { CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSettingsCommandOutput } from "./commands/CreateUserAccessLoggingSettingsCommand";
|
|
15
17
|
import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "./commands/CreateUserSettingsCommand";
|
|
16
18
|
import { DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput } from "./commands/DeleteBrowserSettingsCommand";
|
|
19
|
+
import { DeleteDataProtectionSettingsCommandInput, DeleteDataProtectionSettingsCommandOutput } from "./commands/DeleteDataProtectionSettingsCommand";
|
|
17
20
|
import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput } from "./commands/DeleteIdentityProviderCommand";
|
|
18
21
|
import { DeleteIpAccessSettingsCommandInput, DeleteIpAccessSettingsCommandOutput } from "./commands/DeleteIpAccessSettingsCommand";
|
|
19
22
|
import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "./commands/DeleteNetworkSettingsCommand";
|
|
@@ -22,6 +25,7 @@ import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./c
|
|
|
22
25
|
import { DeleteUserAccessLoggingSettingsCommandInput, DeleteUserAccessLoggingSettingsCommandOutput } from "./commands/DeleteUserAccessLoggingSettingsCommand";
|
|
23
26
|
import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "./commands/DeleteUserSettingsCommand";
|
|
24
27
|
import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCommandOutput } from "./commands/DisassociateBrowserSettingsCommand";
|
|
28
|
+
import { DisassociateDataProtectionSettingsCommandInput, DisassociateDataProtectionSettingsCommandOutput } from "./commands/DisassociateDataProtectionSettingsCommand";
|
|
25
29
|
import { DisassociateIpAccessSettingsCommandInput, DisassociateIpAccessSettingsCommandOutput } from "./commands/DisassociateIpAccessSettingsCommand";
|
|
26
30
|
import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "./commands/DisassociateNetworkSettingsCommand";
|
|
27
31
|
import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "./commands/DisassociateTrustStoreCommand";
|
|
@@ -29,6 +33,7 @@ import { DisassociateUserAccessLoggingSettingsCommandInput, DisassociateUserAcce
|
|
|
29
33
|
import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "./commands/DisassociateUserSettingsCommand";
|
|
30
34
|
import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
31
35
|
import { GetBrowserSettingsCommandInput, GetBrowserSettingsCommandOutput } from "./commands/GetBrowserSettingsCommand";
|
|
36
|
+
import { GetDataProtectionSettingsCommandInput, GetDataProtectionSettingsCommandOutput } from "./commands/GetDataProtectionSettingsCommand";
|
|
32
37
|
import { GetIdentityProviderCommandInput, GetIdentityProviderCommandOutput } from "./commands/GetIdentityProviderCommand";
|
|
33
38
|
import { GetIpAccessSettingsCommandInput, GetIpAccessSettingsCommandOutput } from "./commands/GetIpAccessSettingsCommand";
|
|
34
39
|
import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "./commands/GetNetworkSettingsCommand";
|
|
@@ -40,6 +45,7 @@ import { GetTrustStoreCommandInput, GetTrustStoreCommandOutput } from "./command
|
|
|
40
45
|
import { GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsCommandOutput } from "./commands/GetUserAccessLoggingSettingsCommand";
|
|
41
46
|
import { GetUserSettingsCommandInput, GetUserSettingsCommandOutput } from "./commands/GetUserSettingsCommand";
|
|
42
47
|
import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "./commands/ListBrowserSettingsCommand";
|
|
48
|
+
import { ListDataProtectionSettingsCommandInput, ListDataProtectionSettingsCommandOutput } from "./commands/ListDataProtectionSettingsCommand";
|
|
43
49
|
import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
|
|
44
50
|
import { ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput } from "./commands/ListIpAccessSettingsCommand";
|
|
45
51
|
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "./commands/ListNetworkSettingsCommand";
|
|
@@ -53,6 +59,7 @@ import { ListUserSettingsCommandInput, ListUserSettingsCommandOutput } from "./c
|
|
|
53
59
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
54
60
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
55
61
|
import { UpdateBrowserSettingsCommandInput, UpdateBrowserSettingsCommandOutput } from "./commands/UpdateBrowserSettingsCommand";
|
|
62
|
+
import { UpdateDataProtectionSettingsCommandInput, UpdateDataProtectionSettingsCommandOutput } from "./commands/UpdateDataProtectionSettingsCommand";
|
|
56
63
|
import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput } from "./commands/UpdateIdentityProviderCommand";
|
|
57
64
|
import { UpdateIpAccessSettingsCommandInput, UpdateIpAccessSettingsCommandOutput } from "./commands/UpdateIpAccessSettingsCommand";
|
|
58
65
|
import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
|
|
@@ -68,6 +75,12 @@ export interface WorkSpacesWeb {
|
|
|
68
75
|
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateBrowserSettingsCommandOutput>;
|
|
69
76
|
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
70
77
|
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
78
|
+
/**
|
|
79
|
+
* @see {@link AssociateDataProtectionSettingsCommand}
|
|
80
|
+
*/
|
|
81
|
+
associateDataProtectionSettings(args: AssociateDataProtectionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateDataProtectionSettingsCommandOutput>;
|
|
82
|
+
associateDataProtectionSettings(args: AssociateDataProtectionSettingsCommandInput, cb: (err: any, data?: AssociateDataProtectionSettingsCommandOutput) => void): void;
|
|
83
|
+
associateDataProtectionSettings(args: AssociateDataProtectionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDataProtectionSettingsCommandOutput) => void): void;
|
|
71
84
|
/**
|
|
72
85
|
* @see {@link AssociateIpAccessSettingsCommand}
|
|
73
86
|
*/
|
|
@@ -104,6 +117,13 @@ export interface WorkSpacesWeb {
|
|
|
104
117
|
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateBrowserSettingsCommandOutput>;
|
|
105
118
|
createBrowserSettings(args: CreateBrowserSettingsCommandInput, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
106
119
|
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
120
|
+
/**
|
|
121
|
+
* @see {@link CreateDataProtectionSettingsCommand}
|
|
122
|
+
*/
|
|
123
|
+
createDataProtectionSettings(): Promise<CreateDataProtectionSettingsCommandOutput>;
|
|
124
|
+
createDataProtectionSettings(args: CreateDataProtectionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataProtectionSettingsCommandOutput>;
|
|
125
|
+
createDataProtectionSettings(args: CreateDataProtectionSettingsCommandInput, cb: (err: any, data?: CreateDataProtectionSettingsCommandOutput) => void): void;
|
|
126
|
+
createDataProtectionSettings(args: CreateDataProtectionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataProtectionSettingsCommandOutput) => void): void;
|
|
107
127
|
/**
|
|
108
128
|
* @see {@link CreateIdentityProviderCommand}
|
|
109
129
|
*/
|
|
@@ -153,6 +173,12 @@ export interface WorkSpacesWeb {
|
|
|
153
173
|
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrowserSettingsCommandOutput>;
|
|
154
174
|
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
155
175
|
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
176
|
+
/**
|
|
177
|
+
* @see {@link DeleteDataProtectionSettingsCommand}
|
|
178
|
+
*/
|
|
179
|
+
deleteDataProtectionSettings(args: DeleteDataProtectionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataProtectionSettingsCommandOutput>;
|
|
180
|
+
deleteDataProtectionSettings(args: DeleteDataProtectionSettingsCommandInput, cb: (err: any, data?: DeleteDataProtectionSettingsCommandOutput) => void): void;
|
|
181
|
+
deleteDataProtectionSettings(args: DeleteDataProtectionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataProtectionSettingsCommandOutput) => void): void;
|
|
156
182
|
/**
|
|
157
183
|
* @see {@link DeleteIdentityProviderCommand}
|
|
158
184
|
*/
|
|
@@ -201,6 +227,12 @@ export interface WorkSpacesWeb {
|
|
|
201
227
|
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateBrowserSettingsCommandOutput>;
|
|
202
228
|
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
203
229
|
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
230
|
+
/**
|
|
231
|
+
* @see {@link DisassociateDataProtectionSettingsCommand}
|
|
232
|
+
*/
|
|
233
|
+
disassociateDataProtectionSettings(args: DisassociateDataProtectionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateDataProtectionSettingsCommandOutput>;
|
|
234
|
+
disassociateDataProtectionSettings(args: DisassociateDataProtectionSettingsCommandInput, cb: (err: any, data?: DisassociateDataProtectionSettingsCommandOutput) => void): void;
|
|
235
|
+
disassociateDataProtectionSettings(args: DisassociateDataProtectionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateDataProtectionSettingsCommandOutput) => void): void;
|
|
204
236
|
/**
|
|
205
237
|
* @see {@link DisassociateIpAccessSettingsCommand}
|
|
206
238
|
*/
|
|
@@ -243,6 +275,12 @@ export interface WorkSpacesWeb {
|
|
|
243
275
|
getBrowserSettings(args: GetBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetBrowserSettingsCommandOutput>;
|
|
244
276
|
getBrowserSettings(args: GetBrowserSettingsCommandInput, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
245
277
|
getBrowserSettings(args: GetBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
278
|
+
/**
|
|
279
|
+
* @see {@link GetDataProtectionSettingsCommand}
|
|
280
|
+
*/
|
|
281
|
+
getDataProtectionSettings(args: GetDataProtectionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetDataProtectionSettingsCommandOutput>;
|
|
282
|
+
getDataProtectionSettings(args: GetDataProtectionSettingsCommandInput, cb: (err: any, data?: GetDataProtectionSettingsCommandOutput) => void): void;
|
|
283
|
+
getDataProtectionSettings(args: GetDataProtectionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataProtectionSettingsCommandOutput) => void): void;
|
|
246
284
|
/**
|
|
247
285
|
* @see {@link GetIdentityProviderCommand}
|
|
248
286
|
*/
|
|
@@ -310,6 +348,13 @@ export interface WorkSpacesWeb {
|
|
|
310
348
|
listBrowserSettings(args: ListBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListBrowserSettingsCommandOutput>;
|
|
311
349
|
listBrowserSettings(args: ListBrowserSettingsCommandInput, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
312
350
|
listBrowserSettings(args: ListBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
351
|
+
/**
|
|
352
|
+
* @see {@link ListDataProtectionSettingsCommand}
|
|
353
|
+
*/
|
|
354
|
+
listDataProtectionSettings(): Promise<ListDataProtectionSettingsCommandOutput>;
|
|
355
|
+
listDataProtectionSettings(args: ListDataProtectionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataProtectionSettingsCommandOutput>;
|
|
356
|
+
listDataProtectionSettings(args: ListDataProtectionSettingsCommandInput, cb: (err: any, data?: ListDataProtectionSettingsCommandOutput) => void): void;
|
|
357
|
+
listDataProtectionSettings(args: ListDataProtectionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataProtectionSettingsCommandOutput) => void): void;
|
|
313
358
|
/**
|
|
314
359
|
* @see {@link ListIdentityProvidersCommand}
|
|
315
360
|
*/
|
|
@@ -394,6 +439,12 @@ export interface WorkSpacesWeb {
|
|
|
394
439
|
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrowserSettingsCommandOutput>;
|
|
395
440
|
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
396
441
|
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
442
|
+
/**
|
|
443
|
+
* @see {@link UpdateDataProtectionSettingsCommand}
|
|
444
|
+
*/
|
|
445
|
+
updateDataProtectionSettings(args: UpdateDataProtectionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataProtectionSettingsCommandOutput>;
|
|
446
|
+
updateDataProtectionSettings(args: UpdateDataProtectionSettingsCommandInput, cb: (err: any, data?: UpdateDataProtectionSettingsCommandOutput) => void): void;
|
|
447
|
+
updateDataProtectionSettings(args: UpdateDataProtectionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataProtectionSettingsCommandOutput) => void): void;
|
|
397
448
|
/**
|
|
398
449
|
* @see {@link UpdateIdentityProviderCommand}
|
|
399
450
|
*/
|
|
@@ -8,12 +8,14 @@ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration
|
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput } from "./commands/AssociateBrowserSettingsCommand";
|
|
11
|
+
import { AssociateDataProtectionSettingsCommandInput, AssociateDataProtectionSettingsCommandOutput } from "./commands/AssociateDataProtectionSettingsCommand";
|
|
11
12
|
import { AssociateIpAccessSettingsCommandInput, AssociateIpAccessSettingsCommandOutput } from "./commands/AssociateIpAccessSettingsCommand";
|
|
12
13
|
import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "./commands/AssociateNetworkSettingsCommand";
|
|
13
14
|
import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "./commands/AssociateTrustStoreCommand";
|
|
14
15
|
import { AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput } from "./commands/AssociateUserAccessLoggingSettingsCommand";
|
|
15
16
|
import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "./commands/AssociateUserSettingsCommand";
|
|
16
17
|
import { CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput } from "./commands/CreateBrowserSettingsCommand";
|
|
18
|
+
import { CreateDataProtectionSettingsCommandInput, CreateDataProtectionSettingsCommandOutput } from "./commands/CreateDataProtectionSettingsCommand";
|
|
17
19
|
import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput } from "./commands/CreateIdentityProviderCommand";
|
|
18
20
|
import { CreateIpAccessSettingsCommandInput, CreateIpAccessSettingsCommandOutput } from "./commands/CreateIpAccessSettingsCommand";
|
|
19
21
|
import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "./commands/CreateNetworkSettingsCommand";
|
|
@@ -22,6 +24,7 @@ import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "./c
|
|
|
22
24
|
import { CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSettingsCommandOutput } from "./commands/CreateUserAccessLoggingSettingsCommand";
|
|
23
25
|
import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "./commands/CreateUserSettingsCommand";
|
|
24
26
|
import { DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput } from "./commands/DeleteBrowserSettingsCommand";
|
|
27
|
+
import { DeleteDataProtectionSettingsCommandInput, DeleteDataProtectionSettingsCommandOutput } from "./commands/DeleteDataProtectionSettingsCommand";
|
|
25
28
|
import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput } from "./commands/DeleteIdentityProviderCommand";
|
|
26
29
|
import { DeleteIpAccessSettingsCommandInput, DeleteIpAccessSettingsCommandOutput } from "./commands/DeleteIpAccessSettingsCommand";
|
|
27
30
|
import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "./commands/DeleteNetworkSettingsCommand";
|
|
@@ -30,6 +33,7 @@ import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./c
|
|
|
30
33
|
import { DeleteUserAccessLoggingSettingsCommandInput, DeleteUserAccessLoggingSettingsCommandOutput } from "./commands/DeleteUserAccessLoggingSettingsCommand";
|
|
31
34
|
import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "./commands/DeleteUserSettingsCommand";
|
|
32
35
|
import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCommandOutput } from "./commands/DisassociateBrowserSettingsCommand";
|
|
36
|
+
import { DisassociateDataProtectionSettingsCommandInput, DisassociateDataProtectionSettingsCommandOutput } from "./commands/DisassociateDataProtectionSettingsCommand";
|
|
33
37
|
import { DisassociateIpAccessSettingsCommandInput, DisassociateIpAccessSettingsCommandOutput } from "./commands/DisassociateIpAccessSettingsCommand";
|
|
34
38
|
import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "./commands/DisassociateNetworkSettingsCommand";
|
|
35
39
|
import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "./commands/DisassociateTrustStoreCommand";
|
|
@@ -37,6 +41,7 @@ import { DisassociateUserAccessLoggingSettingsCommandInput, DisassociateUserAcce
|
|
|
37
41
|
import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "./commands/DisassociateUserSettingsCommand";
|
|
38
42
|
import { ExpireSessionCommandInput, ExpireSessionCommandOutput } from "./commands/ExpireSessionCommand";
|
|
39
43
|
import { GetBrowserSettingsCommandInput, GetBrowserSettingsCommandOutput } from "./commands/GetBrowserSettingsCommand";
|
|
44
|
+
import { GetDataProtectionSettingsCommandInput, GetDataProtectionSettingsCommandOutput } from "./commands/GetDataProtectionSettingsCommand";
|
|
40
45
|
import { GetIdentityProviderCommandInput, GetIdentityProviderCommandOutput } from "./commands/GetIdentityProviderCommand";
|
|
41
46
|
import { GetIpAccessSettingsCommandInput, GetIpAccessSettingsCommandOutput } from "./commands/GetIpAccessSettingsCommand";
|
|
42
47
|
import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "./commands/GetNetworkSettingsCommand";
|
|
@@ -48,6 +53,7 @@ import { GetTrustStoreCommandInput, GetTrustStoreCommandOutput } from "./command
|
|
|
48
53
|
import { GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsCommandOutput } from "./commands/GetUserAccessLoggingSettingsCommand";
|
|
49
54
|
import { GetUserSettingsCommandInput, GetUserSettingsCommandOutput } from "./commands/GetUserSettingsCommand";
|
|
50
55
|
import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "./commands/ListBrowserSettingsCommand";
|
|
56
|
+
import { ListDataProtectionSettingsCommandInput, ListDataProtectionSettingsCommandOutput } from "./commands/ListDataProtectionSettingsCommand";
|
|
51
57
|
import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
|
|
52
58
|
import { ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput } from "./commands/ListIpAccessSettingsCommand";
|
|
53
59
|
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "./commands/ListNetworkSettingsCommand";
|
|
@@ -61,6 +67,7 @@ import { ListUserSettingsCommandInput, ListUserSettingsCommandOutput } from "./c
|
|
|
61
67
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
62
68
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
63
69
|
import { UpdateBrowserSettingsCommandInput, UpdateBrowserSettingsCommandOutput } from "./commands/UpdateBrowserSettingsCommand";
|
|
70
|
+
import { UpdateDataProtectionSettingsCommandInput, UpdateDataProtectionSettingsCommandOutput } from "./commands/UpdateDataProtectionSettingsCommand";
|
|
64
71
|
import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput } from "./commands/UpdateIdentityProviderCommand";
|
|
65
72
|
import { UpdateIpAccessSettingsCommandInput, UpdateIpAccessSettingsCommandOutput } from "./commands/UpdateIpAccessSettingsCommand";
|
|
66
73
|
import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
|
|
@@ -74,11 +81,11 @@ export { __Client };
|
|
|
74
81
|
/**
|
|
75
82
|
* @public
|
|
76
83
|
*/
|
|
77
|
-
export type ServiceInputTypes = AssociateBrowserSettingsCommandInput | AssociateIpAccessSettingsCommandInput | AssociateNetworkSettingsCommandInput | AssociateTrustStoreCommandInput | AssociateUserAccessLoggingSettingsCommandInput | AssociateUserSettingsCommandInput | CreateBrowserSettingsCommandInput | CreateIdentityProviderCommandInput | CreateIpAccessSettingsCommandInput | CreateNetworkSettingsCommandInput | CreatePortalCommandInput | CreateTrustStoreCommandInput | CreateUserAccessLoggingSettingsCommandInput | CreateUserSettingsCommandInput | DeleteBrowserSettingsCommandInput | DeleteIdentityProviderCommandInput | DeleteIpAccessSettingsCommandInput | DeleteNetworkSettingsCommandInput | DeletePortalCommandInput | DeleteTrustStoreCommandInput | DeleteUserAccessLoggingSettingsCommandInput | DeleteUserSettingsCommandInput | DisassociateBrowserSettingsCommandInput | DisassociateIpAccessSettingsCommandInput | DisassociateNetworkSettingsCommandInput | DisassociateTrustStoreCommandInput | DisassociateUserAccessLoggingSettingsCommandInput | DisassociateUserSettingsCommandInput | ExpireSessionCommandInput | GetBrowserSettingsCommandInput | GetIdentityProviderCommandInput | GetIpAccessSettingsCommandInput | GetNetworkSettingsCommandInput | GetPortalCommandInput | GetPortalServiceProviderMetadataCommandInput | GetSessionCommandInput | GetTrustStoreCertificateCommandInput | GetTrustStoreCommandInput | GetUserAccessLoggingSettingsCommandInput | GetUserSettingsCommandInput | ListBrowserSettingsCommandInput | ListIdentityProvidersCommandInput | ListIpAccessSettingsCommandInput | ListNetworkSettingsCommandInput | ListPortalsCommandInput | ListSessionsCommandInput | ListTagsForResourceCommandInput | ListTrustStoreCertificatesCommandInput | ListTrustStoresCommandInput | ListUserAccessLoggingSettingsCommandInput | ListUserSettingsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBrowserSettingsCommandInput | UpdateIdentityProviderCommandInput | UpdateIpAccessSettingsCommandInput | UpdateNetworkSettingsCommandInput | UpdatePortalCommandInput | UpdateTrustStoreCommandInput | UpdateUserAccessLoggingSettingsCommandInput | UpdateUserSettingsCommandInput;
|
|
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;
|
|
78
85
|
/**
|
|
79
86
|
* @public
|
|
80
87
|
*/
|
|
81
|
-
export type ServiceOutputTypes = AssociateBrowserSettingsCommandOutput | AssociateIpAccessSettingsCommandOutput | AssociateNetworkSettingsCommandOutput | AssociateTrustStoreCommandOutput | AssociateUserAccessLoggingSettingsCommandOutput | AssociateUserSettingsCommandOutput | CreateBrowserSettingsCommandOutput | CreateIdentityProviderCommandOutput | CreateIpAccessSettingsCommandOutput | CreateNetworkSettingsCommandOutput | CreatePortalCommandOutput | CreateTrustStoreCommandOutput | CreateUserAccessLoggingSettingsCommandOutput | CreateUserSettingsCommandOutput | DeleteBrowserSettingsCommandOutput | DeleteIdentityProviderCommandOutput | DeleteIpAccessSettingsCommandOutput | DeleteNetworkSettingsCommandOutput | DeletePortalCommandOutput | DeleteTrustStoreCommandOutput | DeleteUserAccessLoggingSettingsCommandOutput | DeleteUserSettingsCommandOutput | DisassociateBrowserSettingsCommandOutput | DisassociateIpAccessSettingsCommandOutput | DisassociateNetworkSettingsCommandOutput | DisassociateTrustStoreCommandOutput | DisassociateUserAccessLoggingSettingsCommandOutput | DisassociateUserSettingsCommandOutput | ExpireSessionCommandOutput | GetBrowserSettingsCommandOutput | GetIdentityProviderCommandOutput | GetIpAccessSettingsCommandOutput | GetNetworkSettingsCommandOutput | GetPortalCommandOutput | GetPortalServiceProviderMetadataCommandOutput | GetSessionCommandOutput | GetTrustStoreCertificateCommandOutput | GetTrustStoreCommandOutput | GetUserAccessLoggingSettingsCommandOutput | GetUserSettingsCommandOutput | ListBrowserSettingsCommandOutput | ListIdentityProvidersCommandOutput | ListIpAccessSettingsCommandOutput | ListNetworkSettingsCommandOutput | ListPortalsCommandOutput | ListSessionsCommandOutput | ListTagsForResourceCommandOutput | ListTrustStoreCertificatesCommandOutput | ListTrustStoresCommandOutput | ListUserAccessLoggingSettingsCommandOutput | ListUserSettingsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBrowserSettingsCommandOutput | UpdateIdentityProviderCommandOutput | UpdateIpAccessSettingsCommandOutput | UpdateNetworkSettingsCommandOutput | UpdatePortalCommandOutput | UpdateTrustStoreCommandOutput | UpdateUserAccessLoggingSettingsCommandOutput | UpdateUserSettingsCommandOutput;
|
|
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;
|
|
82
89
|
/**
|
|
83
90
|
* @public
|
|
84
91
|
*/
|