@aws-sdk/client-workspaces-web 3.1075.0 → 3.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +2474 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/WorkSpacesWebServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -127
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2086
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultWorkSpacesWebHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "workspaces-web",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultWorkSpacesWebHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,2139 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://workspaces-web-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://workspaces-web-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://workspaces-web.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://workspaces-web.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class WorkSpacesWebServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, WorkSpacesWebServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends WorkSpacesWebServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class ConflictException extends WorkSpacesWebServiceException {
|
|
153
|
+
name = "ConflictException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
resourceId;
|
|
156
|
+
resourceType;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "ConflictException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
164
|
+
this.resourceId = opts.resourceId;
|
|
165
|
+
this.resourceType = opts.resourceType;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
class InternalServerException extends WorkSpacesWebServiceException {
|
|
169
|
+
name = "InternalServerException";
|
|
170
|
+
$fault = "server";
|
|
171
|
+
retryAfterSeconds;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "InternalServerException",
|
|
175
|
+
$fault: "server",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
179
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class ResourceNotFoundException extends WorkSpacesWebServiceException {
|
|
183
|
+
name = "ResourceNotFoundException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
resourceId;
|
|
186
|
+
resourceType;
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "ResourceNotFoundException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
194
|
+
this.resourceId = opts.resourceId;
|
|
195
|
+
this.resourceType = opts.resourceType;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
class ThrottlingException extends WorkSpacesWebServiceException {
|
|
199
|
+
name = "ThrottlingException";
|
|
200
|
+
$fault = "client";
|
|
201
|
+
serviceCode;
|
|
202
|
+
quotaCode;
|
|
203
|
+
retryAfterSeconds;
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "ThrottlingException",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
211
|
+
this.serviceCode = opts.serviceCode;
|
|
212
|
+
this.quotaCode = opts.quotaCode;
|
|
213
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
class ValidationException extends WorkSpacesWebServiceException {
|
|
217
|
+
name = "ValidationException";
|
|
218
|
+
$fault = "client";
|
|
219
|
+
reason;
|
|
220
|
+
fieldList;
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "ValidationException",
|
|
224
|
+
$fault: "client",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
228
|
+
this.reason = opts.reason;
|
|
229
|
+
this.fieldList = opts.fieldList;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
class ServiceQuotaExceededException extends WorkSpacesWebServiceException {
|
|
233
|
+
name = "ServiceQuotaExceededException";
|
|
234
|
+
$fault = "client";
|
|
235
|
+
resourceId;
|
|
236
|
+
resourceType;
|
|
237
|
+
serviceCode;
|
|
238
|
+
quotaCode;
|
|
239
|
+
constructor(opts) {
|
|
240
|
+
super({
|
|
241
|
+
name: "ServiceQuotaExceededException",
|
|
242
|
+
$fault: "client",
|
|
243
|
+
...opts,
|
|
244
|
+
});
|
|
245
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
246
|
+
this.resourceId = opts.resourceId;
|
|
247
|
+
this.resourceType = opts.resourceType;
|
|
248
|
+
this.serviceCode = opts.serviceCode;
|
|
249
|
+
this.quotaCode = opts.quotaCode;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
class TooManyTagsException extends WorkSpacesWebServiceException {
|
|
253
|
+
name = "TooManyTagsException";
|
|
254
|
+
$fault = "client";
|
|
255
|
+
resourceName;
|
|
256
|
+
constructor(opts) {
|
|
257
|
+
super({
|
|
258
|
+
name: "TooManyTagsException",
|
|
259
|
+
$fault: "client",
|
|
260
|
+
...opts,
|
|
261
|
+
});
|
|
262
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
263
|
+
this.resourceName = opts.resourceName;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
const _ABS = "AssociateBrowserSettings";
|
|
268
|
+
const _ABSR = "AssociateBrowserSettingsRequest";
|
|
269
|
+
const _ABSRs = "AssociateBrowserSettingsResponse";
|
|
270
|
+
const _ADE = "AccessDeniedException";
|
|
271
|
+
const _ADPS = "AssociateDataProtectionSettings";
|
|
272
|
+
const _ADPSR = "AssociateDataProtectionSettingsRequest";
|
|
273
|
+
const _ADPSRs = "AssociateDataProtectionSettingsResponse";
|
|
274
|
+
const _AIAS = "AssociateIpAccessSettings";
|
|
275
|
+
const _AIASR = "AssociateIpAccessSettingsRequest";
|
|
276
|
+
const _AIASRs = "AssociateIpAccessSettingsResponse";
|
|
277
|
+
const _ANS = "AssociateNetworkSettings";
|
|
278
|
+
const _ANSR = "AssociateNetworkSettingsRequest";
|
|
279
|
+
const _ANSRs = "AssociateNetworkSettingsResponse";
|
|
280
|
+
const _ASL = "AssociateSessionLogger";
|
|
281
|
+
const _ASLR = "AssociateSessionLoggerRequest";
|
|
282
|
+
const _ASLRs = "AssociateSessionLoggerResponse";
|
|
283
|
+
const _ATS = "AssociateTrustStore";
|
|
284
|
+
const _ATSR = "AssociateTrustStoreRequest";
|
|
285
|
+
const _ATSRs = "AssociateTrustStoreResponse";
|
|
286
|
+
const _AUALS = "AssociateUserAccessLoggingSettings";
|
|
287
|
+
const _AUALSR = "AssociateUserAccessLoggingSettingsRequest";
|
|
288
|
+
const _AUALSRs = "AssociateUserAccessLoggingSettingsResponse";
|
|
289
|
+
const _AUS = "AssociateUserSettings";
|
|
290
|
+
const _AUSR = "AssociateUserSettingsRequest";
|
|
291
|
+
const _AUSRs = "AssociateUserSettingsResponse";
|
|
292
|
+
const _BC = "BrandingConfiguration";
|
|
293
|
+
const _BCCI = "BrandingConfigurationCreateInput";
|
|
294
|
+
const _BCUI = "BrandingConfigurationUpdateInput";
|
|
295
|
+
const _BIPI = "BuiltInPatternId";
|
|
296
|
+
const _BP = "BrowserPolicy";
|
|
297
|
+
const _BS = "BrowserSettings";
|
|
298
|
+
const _BSL = "BrowserSettingsList";
|
|
299
|
+
const _BSS = "BrowserSettingsSummary";
|
|
300
|
+
const _C = "Certificate";
|
|
301
|
+
const _CBS = "CreateBrowserSettings";
|
|
302
|
+
const _CBSR = "CreateBrowserSettingsRequest";
|
|
303
|
+
const _CBSRr = "CreateBrowserSettingsResponse";
|
|
304
|
+
const _CD = "CookieDomain";
|
|
305
|
+
const _CDPS = "CreateDataProtectionSettings";
|
|
306
|
+
const _CDPSR = "CreateDataProtectionSettingsRequest";
|
|
307
|
+
const _CDPSRr = "CreateDataProtectionSettingsResponse";
|
|
308
|
+
const _CE = "ConflictException";
|
|
309
|
+
const _CIAS = "CreateIpAccessSettings";
|
|
310
|
+
const _CIASR = "CreateIpAccessSettingsRequest";
|
|
311
|
+
const _CIASRr = "CreateIpAccessSettingsResponse";
|
|
312
|
+
const _CIP = "CreateIdentityProvider";
|
|
313
|
+
const _CIPR = "CreateIdentityProviderRequest";
|
|
314
|
+
const _CIPRr = "CreateIdentityProviderResponse";
|
|
315
|
+
const _CN = "CookieName";
|
|
316
|
+
const _CNS = "CreateNetworkSettings";
|
|
317
|
+
const _CNSR = "CreateNetworkSettingsRequest";
|
|
318
|
+
const _CNSRr = "CreateNetworkSettingsResponse";
|
|
319
|
+
const _CP = "CookiePath";
|
|
320
|
+
const _CPR = "CreatePortalRequest";
|
|
321
|
+
const _CPRr = "CreatePortalResponse";
|
|
322
|
+
const _CPr = "CreatePortal";
|
|
323
|
+
const _CPu = "CustomPattern";
|
|
324
|
+
const _CS = "CertificateSummary";
|
|
325
|
+
const _CSC = "CookieSynchronizationConfiguration";
|
|
326
|
+
const _CSL = "CertificateSummaryList";
|
|
327
|
+
const _CSLR = "CreateSessionLoggerRequest";
|
|
328
|
+
const _CSLRr = "CreateSessionLoggerResponse";
|
|
329
|
+
const _CSLr = "CreateSessionLogger";
|
|
330
|
+
const _CSo = "CookieSpecification";
|
|
331
|
+
const _CSoo = "CookieSpecifications";
|
|
332
|
+
const _CTS = "CreateTrustStore";
|
|
333
|
+
const _CTSR = "CreateTrustStoreRequest";
|
|
334
|
+
const _CTSRr = "CreateTrustStoreResponse";
|
|
335
|
+
const _CUALS = "CreateUserAccessLoggingSettings";
|
|
336
|
+
const _CUALSR = "CreateUserAccessLoggingSettingsRequest";
|
|
337
|
+
const _CUALSRr = "CreateUserAccessLoggingSettingsResponse";
|
|
338
|
+
const _CUS = "CreateUserSettings";
|
|
339
|
+
const _CUSR = "CreateUserSettingsRequest";
|
|
340
|
+
const _CUSRr = "CreateUserSettingsResponse";
|
|
341
|
+
const _D = "Description";
|
|
342
|
+
const _DBS = "DeleteBrowserSettings";
|
|
343
|
+
const _DBSR = "DeleteBrowserSettingsRequest";
|
|
344
|
+
const _DBSRe = "DeleteBrowserSettingsResponse";
|
|
345
|
+
const _DBSRi = "DisassociateBrowserSettingsRequest";
|
|
346
|
+
const _DBSRis = "DisassociateBrowserSettingsResponse";
|
|
347
|
+
const _DBSi = "DisassociateBrowserSettings";
|
|
348
|
+
const _DDPS = "DeleteDataProtectionSettings";
|
|
349
|
+
const _DDPSR = "DeleteDataProtectionSettingsRequest";
|
|
350
|
+
const _DDPSRe = "DeleteDataProtectionSettingsResponse";
|
|
351
|
+
const _DDPSRi = "DisassociateDataProtectionSettingsRequest";
|
|
352
|
+
const _DDPSRis = "DisassociateDataProtectionSettingsResponse";
|
|
353
|
+
const _DDPSi = "DisassociateDataProtectionSettings";
|
|
354
|
+
const _DIAS = "DeleteIpAccessSettings";
|
|
355
|
+
const _DIASR = "DeleteIpAccessSettingsRequest";
|
|
356
|
+
const _DIASRe = "DeleteIpAccessSettingsResponse";
|
|
357
|
+
const _DIASRi = "DisassociateIpAccessSettingsRequest";
|
|
358
|
+
const _DIASRis = "DisassociateIpAccessSettingsResponse";
|
|
359
|
+
const _DIASi = "DisassociateIpAccessSettings";
|
|
360
|
+
const _DIP = "DeleteIdentityProvider";
|
|
361
|
+
const _DIPR = "DeleteIdentityProviderRequest";
|
|
362
|
+
const _DIPRe = "DeleteIdentityProviderResponse";
|
|
363
|
+
const _DN = "DisplayName";
|
|
364
|
+
const _DNS = "DisplayNameSafe";
|
|
365
|
+
const _DNSR = "DeleteNetworkSettingsRequest";
|
|
366
|
+
const _DNSRe = "DeleteNetworkSettingsResponse";
|
|
367
|
+
const _DNSRi = "DisassociateNetworkSettingsRequest";
|
|
368
|
+
const _DNSRis = "DisassociateNetworkSettingsResponse";
|
|
369
|
+
const _DNSe = "DeleteNetworkSettings";
|
|
370
|
+
const _DNSi = "DisassociateNetworkSettings";
|
|
371
|
+
const _DP = "DeletePortal";
|
|
372
|
+
const _DPR = "DeletePortalRequest";
|
|
373
|
+
const _DPRe = "DeletePortalResponse";
|
|
374
|
+
const _DPS = "DataProtectionSettings";
|
|
375
|
+
const _DPSL = "DataProtectionSettingsList";
|
|
376
|
+
const _DPSS = "DataProtectionSettingsSummary";
|
|
377
|
+
const _DS = "DescriptionSafe";
|
|
378
|
+
const _DSL = "DeleteSessionLogger";
|
|
379
|
+
const _DSLR = "DeleteSessionLoggerRequest";
|
|
380
|
+
const _DSLRe = "DeleteSessionLoggerResponse";
|
|
381
|
+
const _DSLRi = "DisassociateSessionLoggerRequest";
|
|
382
|
+
const _DSLRis = "DisassociateSessionLoggerResponse";
|
|
383
|
+
const _DSLi = "DisassociateSessionLogger";
|
|
384
|
+
const _DTS = "DeleteTrustStore";
|
|
385
|
+
const _DTSR = "DeleteTrustStoreRequest";
|
|
386
|
+
const _DTSRe = "DeleteTrustStoreResponse";
|
|
387
|
+
const _DTSRi = "DisassociateTrustStoreRequest";
|
|
388
|
+
const _DTSRis = "DisassociateTrustStoreResponse";
|
|
389
|
+
const _DTSi = "DisassociateTrustStore";
|
|
390
|
+
const _DUALS = "DeleteUserAccessLoggingSettings";
|
|
391
|
+
const _DUALSR = "DeleteUserAccessLoggingSettingsRequest";
|
|
392
|
+
const _DUALSRe = "DeleteUserAccessLoggingSettingsResponse";
|
|
393
|
+
const _DUALSRi = "DisassociateUserAccessLoggingSettingsRequest";
|
|
394
|
+
const _DUALSRis = "DisassociateUserAccessLoggingSettingsResponse";
|
|
395
|
+
const _DUALSi = "DisassociateUserAccessLoggingSettings";
|
|
396
|
+
const _DUS = "DeleteUserSettings";
|
|
397
|
+
const _DUSR = "DeleteUserSettingsRequest";
|
|
398
|
+
const _DUSRe = "DeleteUserSettingsResponse";
|
|
399
|
+
const _DUSRi = "DisassociateUserSettingsRequest";
|
|
400
|
+
const _DUSRis = "DisassociateUserSettingsResponse";
|
|
401
|
+
const _DUSi = "DisassociateUserSettings";
|
|
402
|
+
const _EF = "EventFilter";
|
|
403
|
+
const _ES = "ExpireSession";
|
|
404
|
+
const _ESR = "ExpireSessionRequest";
|
|
405
|
+
const _ESRx = "ExpireSessionResponse";
|
|
406
|
+
const _GBS = "GetBrowserSettings";
|
|
407
|
+
const _GBSR = "GetBrowserSettingsRequest";
|
|
408
|
+
const _GBSRe = "GetBrowserSettingsResponse";
|
|
409
|
+
const _GDPS = "GetDataProtectionSettings";
|
|
410
|
+
const _GDPSR = "GetDataProtectionSettingsRequest";
|
|
411
|
+
const _GDPSRe = "GetDataProtectionSettingsResponse";
|
|
412
|
+
const _GIAS = "GetIpAccessSettings";
|
|
413
|
+
const _GIASR = "GetIpAccessSettingsRequest";
|
|
414
|
+
const _GIASRe = "GetIpAccessSettingsResponse";
|
|
415
|
+
const _GIP = "GetIdentityProvider";
|
|
416
|
+
const _GIPR = "GetIdentityProviderRequest";
|
|
417
|
+
const _GIPRe = "GetIdentityProviderResponse";
|
|
418
|
+
const _GIRU = "GlobalInlineRedactionUrls";
|
|
419
|
+
const _GNS = "GetNetworkSettings";
|
|
420
|
+
const _GNSR = "GetNetworkSettingsRequest";
|
|
421
|
+
const _GNSRe = "GetNetworkSettingsResponse";
|
|
422
|
+
const _GP = "GetPortal";
|
|
423
|
+
const _GPR = "GetPortalRequest";
|
|
424
|
+
const _GPRe = "GetPortalResponse";
|
|
425
|
+
const _GPSPM = "GetPortalServiceProviderMetadata";
|
|
426
|
+
const _GPSPMR = "GetPortalServiceProviderMetadataRequest";
|
|
427
|
+
const _GPSPMRe = "GetPortalServiceProviderMetadataResponse";
|
|
428
|
+
const _GS = "GetSession";
|
|
429
|
+
const _GSL = "GetSessionLogger";
|
|
430
|
+
const _GSLR = "GetSessionLoggerRequest";
|
|
431
|
+
const _GSLRe = "GetSessionLoggerResponse";
|
|
432
|
+
const _GSR = "GetSessionRequest";
|
|
433
|
+
const _GSRe = "GetSessionResponse";
|
|
434
|
+
const _GTS = "GetTrustStore";
|
|
435
|
+
const _GTSC = "GetTrustStoreCertificate";
|
|
436
|
+
const _GTSCR = "GetTrustStoreCertificateRequest";
|
|
437
|
+
const _GTSCRe = "GetTrustStoreCertificateResponse";
|
|
438
|
+
const _GTSR = "GetTrustStoreRequest";
|
|
439
|
+
const _GTSRe = "GetTrustStoreResponse";
|
|
440
|
+
const _GUALS = "GetUserAccessLoggingSettings";
|
|
441
|
+
const _GUALSR = "GetUserAccessLoggingSettingsRequest";
|
|
442
|
+
const _GUALSRe = "GetUserAccessLoggingSettingsResponse";
|
|
443
|
+
const _GUS = "GetUserSettings";
|
|
444
|
+
const _GUSR = "GetUserSettingsRequest";
|
|
445
|
+
const _GUSRe = "GetUserSettingsResponse";
|
|
446
|
+
const _IA = "IpAddress";
|
|
447
|
+
const _IAL = "IpAddressList";
|
|
448
|
+
const _IAS = "IpAccessSettings";
|
|
449
|
+
const _IASL = "IpAccessSettingsList";
|
|
450
|
+
const _IASS = "IpAccessSettingsSummary";
|
|
451
|
+
const _II = "IconImage";
|
|
452
|
+
const _III = "IconImageInput";
|
|
453
|
+
const _IM = "ImageMetadata";
|
|
454
|
+
const _IP = "IdentityProvider";
|
|
455
|
+
const _IPD = "IdentityProviderDetails";
|
|
456
|
+
const _IPL = "IdentityProviderList";
|
|
457
|
+
const _IPN = "IdentityProviderName";
|
|
458
|
+
const _IPS = "IdentityProviderSummary";
|
|
459
|
+
const _IR = "IpRange";
|
|
460
|
+
const _IRC = "InlineRedactionConfiguration";
|
|
461
|
+
const _IRL = "IpRuleList";
|
|
462
|
+
const _IRP = "InlineRedactionPattern";
|
|
463
|
+
const _IRPn = "InlineRedactionPatterns";
|
|
464
|
+
const _IRU = "InlineRedactionUrl";
|
|
465
|
+
const _IRUn = "InlineRedactionUrls";
|
|
466
|
+
const _IRp = "IpRule";
|
|
467
|
+
const _ISE = "InternalServerException";
|
|
468
|
+
const _K = "Key";
|
|
469
|
+
const _LBS = "LocalizedBrandingStrings";
|
|
470
|
+
const _LBSM = "LocalizedBrandingStringMap";
|
|
471
|
+
const _LBSR = "ListBrowserSettingsRequest";
|
|
472
|
+
const _LBSRi = "ListBrowserSettingsResponse";
|
|
473
|
+
const _LBSi = "ListBrowserSettings";
|
|
474
|
+
const _LC = "LogConfiguration";
|
|
475
|
+
const _LDPS = "ListDataProtectionSettings";
|
|
476
|
+
const _LDPSR = "ListDataProtectionSettingsRequest";
|
|
477
|
+
const _LDPSRi = "ListDataProtectionSettingsResponse";
|
|
478
|
+
const _LIAS = "ListIpAccessSettings";
|
|
479
|
+
const _LIASR = "ListIpAccessSettingsRequest";
|
|
480
|
+
const _LIASRi = "ListIpAccessSettingsResponse";
|
|
481
|
+
const _LIP = "ListIdentityProviders";
|
|
482
|
+
const _LIPR = "ListIdentityProvidersRequest";
|
|
483
|
+
const _LIPRi = "ListIdentityProvidersResponse";
|
|
484
|
+
const _LNS = "ListNetworkSettings";
|
|
485
|
+
const _LNSR = "ListNetworkSettingsRequest";
|
|
486
|
+
const _LNSRi = "ListNetworkSettingsResponse";
|
|
487
|
+
const _LP = "ListPortals";
|
|
488
|
+
const _LPR = "ListPortalsRequest";
|
|
489
|
+
const _LPRi = "ListPortalsResponse";
|
|
490
|
+
const _LS = "ListSessions";
|
|
491
|
+
const _LSL = "ListSessionLoggers";
|
|
492
|
+
const _LSLR = "ListSessionLoggersRequest";
|
|
493
|
+
const _LSLRi = "ListSessionLoggersResponse";
|
|
494
|
+
const _LSR = "ListSessionsRequest";
|
|
495
|
+
const _LSRi = "ListSessionsResponse";
|
|
496
|
+
const _LTFR = "ListTagsForResource";
|
|
497
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
498
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
499
|
+
const _LTS = "ListTrustStores";
|
|
500
|
+
const _LTSC = "ListTrustStoreCertificates";
|
|
501
|
+
const _LTSCR = "ListTrustStoreCertificatesRequest";
|
|
502
|
+
const _LTSCRi = "ListTrustStoreCertificatesResponse";
|
|
503
|
+
const _LTSR = "ListTrustStoresRequest";
|
|
504
|
+
const _LTSRi = "ListTrustStoresResponse";
|
|
505
|
+
const _LUALS = "ListUserAccessLoggingSettings";
|
|
506
|
+
const _LUALSR = "ListUserAccessLoggingSettingsRequest";
|
|
507
|
+
const _LUALSRi = "ListUserAccessLoggingSettingsResponse";
|
|
508
|
+
const _LUS = "ListUserSettings";
|
|
509
|
+
const _LUSR = "ListUserSettingsRequest";
|
|
510
|
+
const _LUSRi = "ListUserSettingsResponse";
|
|
511
|
+
const _M = "Markdown";
|
|
512
|
+
const _NS = "NetworkSettings";
|
|
513
|
+
const _NSL = "NetworkSettingsList";
|
|
514
|
+
const _NSS = "NetworkSettingsSummary";
|
|
515
|
+
const _P = "Portal";
|
|
516
|
+
const _PL = "PortalList";
|
|
517
|
+
const _PN = "PatternName";
|
|
518
|
+
const _PS = "PortalSummary";
|
|
519
|
+
const _R = "Regex";
|
|
520
|
+
const _RA = "Retry-After";
|
|
521
|
+
const _RNFE = "ResourceNotFoundException";
|
|
522
|
+
const _RPH = "RedactionPlaceHolder";
|
|
523
|
+
const _RPHT = "RedactionPlaceHolderText";
|
|
524
|
+
const _S = "Session";
|
|
525
|
+
const _SB = "S3Bucket";
|
|
526
|
+
const _SKP = "S3KeyPrefix";
|
|
527
|
+
const _SL = "SessionLogger";
|
|
528
|
+
const _SLC = "S3LogConfiguration";
|
|
529
|
+
const _SLL = "SessionLoggerList";
|
|
530
|
+
const _SLS = "SessionLoggerSummary";
|
|
531
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
532
|
+
const _SS = "SessionSummary";
|
|
533
|
+
const _SSL = "SessionSummaryList";
|
|
534
|
+
const _T = "Tag";
|
|
535
|
+
const _TC = "ToolbarConfiguration";
|
|
536
|
+
const _TE = "ThrottlingException";
|
|
537
|
+
const _TK = "TagKey";
|
|
538
|
+
const _TKL = "TagKeyList";
|
|
539
|
+
const _TL = "TagList";
|
|
540
|
+
const _TMTE = "TooManyTagsException";
|
|
541
|
+
const _TR = "TagResource";
|
|
542
|
+
const _TRR = "TagResourceRequest";
|
|
543
|
+
const _TRRa = "TagResourceResponse";
|
|
544
|
+
const _TS = "TrustStore";
|
|
545
|
+
const _TSS = "TrustStoreSummary";
|
|
546
|
+
const _TSSL = "TrustStoreSummaryList";
|
|
547
|
+
const _TV = "TagValue";
|
|
548
|
+
const _U = "Username";
|
|
549
|
+
const _UALS = "UserAccessLoggingSettings";
|
|
550
|
+
const _UALSL = "UserAccessLoggingSettingsList";
|
|
551
|
+
const _UALSS = "UserAccessLoggingSettingsSummary";
|
|
552
|
+
const _UBS = "UpdateBrowserSettings";
|
|
553
|
+
const _UBSR = "UpdateBrowserSettingsRequest";
|
|
554
|
+
const _UBSRp = "UpdateBrowserSettingsResponse";
|
|
555
|
+
const _UDPS = "UpdateDataProtectionSettings";
|
|
556
|
+
const _UDPSR = "UpdateDataProtectionSettingsRequest";
|
|
557
|
+
const _UDPSRp = "UpdateDataProtectionSettingsResponse";
|
|
558
|
+
const _UIAS = "UpdateIpAccessSettings";
|
|
559
|
+
const _UIASR = "UpdateIpAccessSettingsRequest";
|
|
560
|
+
const _UIASRp = "UpdateIpAccessSettingsResponse";
|
|
561
|
+
const _UIP = "UpdateIdentityProvider";
|
|
562
|
+
const _UIPR = "UpdateIdentityProviderRequest";
|
|
563
|
+
const _UIPRp = "UpdateIdentityProviderResponse";
|
|
564
|
+
const _UNS = "UpdateNetworkSettings";
|
|
565
|
+
const _UNSR = "UpdateNetworkSettingsRequest";
|
|
566
|
+
const _UNSRp = "UpdateNetworkSettingsResponse";
|
|
567
|
+
const _UP = "UrlPattern";
|
|
568
|
+
const _UPL = "UrlPatternList";
|
|
569
|
+
const _UPR = "UpdatePortalRequest";
|
|
570
|
+
const _UPRp = "UpdatePortalResponse";
|
|
571
|
+
const _UPp = "UpdatePortal";
|
|
572
|
+
const _UR = "UntagResource";
|
|
573
|
+
const _URR = "UntagResourceRequest";
|
|
574
|
+
const _URRn = "UntagResourceResponse";
|
|
575
|
+
const _US = "UserSettings";
|
|
576
|
+
const _USL = "UserSettingsList";
|
|
577
|
+
const _USLR = "UpdateSessionLoggerRequest";
|
|
578
|
+
const _USLRp = "UpdateSessionLoggerResponse";
|
|
579
|
+
const _USLp = "UpdateSessionLogger";
|
|
580
|
+
const _USS = "UserSettingsSummary";
|
|
581
|
+
const _UTS = "UpdateTrustStore";
|
|
582
|
+
const _UTSR = "UpdateTrustStoreRequest";
|
|
583
|
+
const _UTSRp = "UpdateTrustStoreResponse";
|
|
584
|
+
const _UUALS = "UpdateUserAccessLoggingSettings";
|
|
585
|
+
const _UUALSR = "UpdateUserAccessLoggingSettingsRequest";
|
|
586
|
+
const _UUALSRp = "UpdateUserAccessLoggingSettingsResponse";
|
|
587
|
+
const _UUS = "UpdateUserSettings";
|
|
588
|
+
const _UUSR = "UpdateUserSettingsRequest";
|
|
589
|
+
const _UUSRp = "UpdateUserSettingsResponse";
|
|
590
|
+
const _V = "Value";
|
|
591
|
+
const _VE = "ValidationException";
|
|
592
|
+
const _VEF = "ValidationExceptionField";
|
|
593
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
594
|
+
const _WCFP = "WebContentFilteringPolicy";
|
|
595
|
+
const _WI = "WallpaperImage";
|
|
596
|
+
const _WII = "WallpaperImageInput";
|
|
597
|
+
const _a = "allowlist";
|
|
598
|
+
const _aEC = "additionalEncryptionContext";
|
|
599
|
+
const _aPA = "associatedPortalArns";
|
|
600
|
+
const _aT = "authenticationType";
|
|
601
|
+
const _aU = "allowedUrls";
|
|
602
|
+
const _al = "all";
|
|
603
|
+
const _b = "body";
|
|
604
|
+
const _bC = "brandingConfiguration";
|
|
605
|
+
const _bCI = "brandingConfigurationInput";
|
|
606
|
+
const _bCl = "blockedCategories";
|
|
607
|
+
const _bIPI = "builtInPatternId";
|
|
608
|
+
const _bO = "bucketOwner";
|
|
609
|
+
const _bP = "browserPolicy";
|
|
610
|
+
const _bS = "browserSettings";
|
|
611
|
+
const _bSA = "browserSettingsArn";
|
|
612
|
+
const _bT = "browserType";
|
|
613
|
+
const _bTT = "browserTabTitle";
|
|
614
|
+
const _bU = "blockedUrls";
|
|
615
|
+
const _bl = "blocklist";
|
|
616
|
+
const _blo = "blob";
|
|
617
|
+
const _bu = "bucket";
|
|
618
|
+
const _c = "client";
|
|
619
|
+
const _cA = "copyAllowed";
|
|
620
|
+
const _cBT = "contactButtonText";
|
|
621
|
+
const _cD = "creationDate";
|
|
622
|
+
const _cIA = "clientIpAddresses";
|
|
623
|
+
const _cL = "certificateList";
|
|
624
|
+
const _cLo = "confidenceLevel";
|
|
625
|
+
const _cLon = "contactLink";
|
|
626
|
+
const _cMK = "customerManagedKey";
|
|
627
|
+
const _cP = "customPattern";
|
|
628
|
+
const _cSC = "cookieSynchronizationConfiguration";
|
|
629
|
+
const _cT = "colorTheme";
|
|
630
|
+
const _cTA = "certificatesToAdd";
|
|
631
|
+
const _cTD = "certificatesToDelete";
|
|
632
|
+
const _cTl = "clientToken";
|
|
633
|
+
const _ce = "certificate";
|
|
634
|
+
const _d = "domain";
|
|
635
|
+
const _dA = "downloadAllowed";
|
|
636
|
+
const _dLA = "deepLinkAllowed";
|
|
637
|
+
const _dN = "displayName";
|
|
638
|
+
const _dPS = "dataProtectionSettings";
|
|
639
|
+
const _dPSA = "dataProtectionSettingsArn";
|
|
640
|
+
const _dTIM = "disconnectTimeoutInMinutes";
|
|
641
|
+
const _de = "description";
|
|
642
|
+
const _e = "error";
|
|
643
|
+
const _eF = "eventFilter";
|
|
644
|
+
const _eT = "endTime";
|
|
645
|
+
const _eU = "enforcedUrls";
|
|
646
|
+
const _eUx = "exemptUrls";
|
|
647
|
+
const _f = "favicon";
|
|
648
|
+
const _fE = "fileExtension";
|
|
649
|
+
const _fL = "fieldList";
|
|
650
|
+
const _fS = "folderStructure";
|
|
651
|
+
const _gCL = "globalConfidenceLevel";
|
|
652
|
+
const _gEU = "globalEnforcedUrls";
|
|
653
|
+
const _gEUl = "globalExemptUrls";
|
|
654
|
+
const _h = "http";
|
|
655
|
+
const _hE = "httpError";
|
|
656
|
+
const _hH = "httpHeader";
|
|
657
|
+
const _hQ = "httpQuery";
|
|
658
|
+
const _hTI = "hiddenToolbarItems";
|
|
659
|
+
const _i = "image/*";
|
|
660
|
+
const _iAS = "ipAccessSettings";
|
|
661
|
+
const _iASA = "ipAccessSettingsArn";
|
|
662
|
+
const _iDTIM = "idleDisconnectTimeoutInMinutes";
|
|
663
|
+
const _iP = "identityProvider";
|
|
664
|
+
const _iPA = "identityProviderArn";
|
|
665
|
+
const _iPD = "identityProviderDetails";
|
|
666
|
+
const _iPN = "identityProviderName";
|
|
667
|
+
const _iPT = "identityProviderType";
|
|
668
|
+
const _iPd = "identityProviders";
|
|
669
|
+
const _iR = "ipRules";
|
|
670
|
+
const _iRC = "inlineRedactionConfiguration";
|
|
671
|
+
const _iRP = "inlineRedactionPatterns";
|
|
672
|
+
const _iRp = "ipRange";
|
|
673
|
+
const _iT = "instanceType";
|
|
674
|
+
const _in = "include";
|
|
675
|
+
const _is = "issuer";
|
|
676
|
+
const _kP = "keyPrefix";
|
|
677
|
+
const _kR = "keywordRegex";
|
|
678
|
+
const _kSA = "kinesisStreamArn";
|
|
679
|
+
const _l = "logo";
|
|
680
|
+
const _lBT = "loginButtonText";
|
|
681
|
+
const _lC = "logConfiguration";
|
|
682
|
+
const _lD = "loginDescription";
|
|
683
|
+
const _lFF = "logFileFormat";
|
|
684
|
+
const _lS = "localizedStrings";
|
|
685
|
+
const _lT = "loginTitle";
|
|
686
|
+
const _lTo = "loadingText";
|
|
687
|
+
const _lUT = "lastUploadTimestamp";
|
|
688
|
+
const _m = "message";
|
|
689
|
+
const _mCS = "maxConcurrentSessions";
|
|
690
|
+
const _mDR = "maxDisplayResolution";
|
|
691
|
+
const _mR = "maxResults";
|
|
692
|
+
const _mT = "mediaType";
|
|
693
|
+
const _mTi = "mimeType";
|
|
694
|
+
const _n = "name";
|
|
695
|
+
const _nS = "networkSettings";
|
|
696
|
+
const _nSA = "networkSettingsArn";
|
|
697
|
+
const _nT = "nextToken";
|
|
698
|
+
const _nVA = "notValidAfter";
|
|
699
|
+
const _nVB = "notValidBefore";
|
|
700
|
+
const _p = "path";
|
|
701
|
+
const _pA = "portalArn";
|
|
702
|
+
const _pAa = "pasteAllowed";
|
|
703
|
+
const _pAr = "printAllowed";
|
|
704
|
+
const _pCD = "portalCustomDomain";
|
|
705
|
+
const _pD = "patternDescription";
|
|
706
|
+
const _pE = "portalEndpoint";
|
|
707
|
+
const _pI = "portalId";
|
|
708
|
+
const _pN = "patternName";
|
|
709
|
+
const _pR = "patternRegex";
|
|
710
|
+
const _pS = "portalStatus";
|
|
711
|
+
const _po = "portal";
|
|
712
|
+
const _por = "portals";
|
|
713
|
+
const _qC = "quotaCode";
|
|
714
|
+
const _r = "reason";
|
|
715
|
+
const _rA = "resourceArn";
|
|
716
|
+
const _rAS = "retryAfterSeconds";
|
|
717
|
+
const _rI = "resourceId";
|
|
718
|
+
const _rN = "resourceName";
|
|
719
|
+
const _rPH = "redactionPlaceHolder";
|
|
720
|
+
const _rPHT = "redactionPlaceHolderType";
|
|
721
|
+
const _rPHTe = "redactionPlaceHolderText";
|
|
722
|
+
const _rT = "resourceType";
|
|
723
|
+
const _rTe = "rendererType";
|
|
724
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.workspacesweb";
|
|
725
|
+
const _sB = "sortBy";
|
|
726
|
+
const _sC = "serviceCode";
|
|
727
|
+
const _sGI = "securityGroupIds";
|
|
728
|
+
const _sI = "subnetIds";
|
|
729
|
+
const _sIe = "sessionId";
|
|
730
|
+
const _sL = "sessionLogger";
|
|
731
|
+
const _sLA = "sessionLoggerArn";
|
|
732
|
+
const _sLe = "sessionLoggers";
|
|
733
|
+
const _sPSM = "serviceProviderSamlMetadata";
|
|
734
|
+
const _sR = "statusReason";
|
|
735
|
+
const _sT = "startTime";
|
|
736
|
+
const _sU = "s3Uri";
|
|
737
|
+
const _s_ = "s3";
|
|
738
|
+
const _se = "server";
|
|
739
|
+
const _sen = "sensitive";
|
|
740
|
+
const _ses = "session";
|
|
741
|
+
const _sess = "sessions";
|
|
742
|
+
const _st = "status";
|
|
743
|
+
const _su = "subject";
|
|
744
|
+
const _t = "text/markdown";
|
|
745
|
+
const _tC = "toolbarConfiguration";
|
|
746
|
+
const _tK = "tagKeys";
|
|
747
|
+
const _tOS = "termsOfService";
|
|
748
|
+
const _tS = "trustStore";
|
|
749
|
+
const _tSA = "trustStoreArn";
|
|
750
|
+
const _tSr = "trustStores";
|
|
751
|
+
const _tT = "toolbarType";
|
|
752
|
+
const _ta = "tags";
|
|
753
|
+
const _th = "thumbprint";
|
|
754
|
+
const _u = "username";
|
|
755
|
+
const _uA = "uploadAllowed";
|
|
756
|
+
const _uALS = "userAccessLoggingSettings";
|
|
757
|
+
const _uALSA = "userAccessLoggingSettingsArn";
|
|
758
|
+
const _uS = "userSettings";
|
|
759
|
+
const _uSA = "userSettingsArn";
|
|
760
|
+
const _vI = "vpcId";
|
|
761
|
+
const _vM = "visualMode";
|
|
762
|
+
const _w = "wallpaper";
|
|
763
|
+
const _wAA = "webAuthnAllowed";
|
|
764
|
+
const _wCFP = "webContentFilteringPolicy";
|
|
765
|
+
const _wT = "welcomeText";
|
|
766
|
+
const n0 = "com.amazonaws.workspacesweb";
|
|
767
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
768
|
+
var WorkSpacesWebServiceException$ = [-3, _s, "WorkSpacesWebServiceException", 0, [], []];
|
|
769
|
+
_s_registry.registerError(WorkSpacesWebServiceException$, WorkSpacesWebServiceException);
|
|
770
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
771
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
772
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
773
|
+
[_m],
|
|
774
|
+
[0]
|
|
775
|
+
];
|
|
776
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
777
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
778
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
779
|
+
[_m, _rI, _rT],
|
|
780
|
+
[0, 0, 0]
|
|
781
|
+
];
|
|
782
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
783
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
784
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
785
|
+
[_m, _rAS],
|
|
786
|
+
[0, [1, { [_hH]: _RA }]]
|
|
787
|
+
];
|
|
788
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
789
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
790
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
791
|
+
[_m, _rI, _rT],
|
|
792
|
+
[0, 0, 0]
|
|
793
|
+
];
|
|
794
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
795
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
796
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
797
|
+
[_m, _rI, _rT, _sC, _qC],
|
|
798
|
+
[0, 0, 0, 0, 0]
|
|
799
|
+
];
|
|
800
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
801
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
802
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
803
|
+
[_m, _sC, _qC, _rAS],
|
|
804
|
+
[0, 0, 0, [1, { [_hH]: _RA }]]
|
|
805
|
+
];
|
|
806
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
807
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
808
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
809
|
+
[_m, _rN],
|
|
810
|
+
[0, 0]
|
|
811
|
+
];
|
|
812
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
813
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
814
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
815
|
+
[_m, _r, _fL],
|
|
816
|
+
[0, 0, () => ValidationExceptionFieldList]
|
|
817
|
+
];
|
|
818
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
819
|
+
const errorTypeRegistries = [
|
|
820
|
+
_s_registry,
|
|
821
|
+
n0_registry,
|
|
822
|
+
];
|
|
823
|
+
var BrowserPolicy = [0, n0, _BP, 8, 0];
|
|
824
|
+
var BuiltInPatternId = [0, n0, _BIPI, 8, 0];
|
|
825
|
+
var CookieDomain = [0, n0, _CD, 8, 0];
|
|
826
|
+
var CookieName = [0, n0, _CN, 8, 0];
|
|
827
|
+
var CookiePath = [0, n0, _CP, 8, 0];
|
|
828
|
+
var Description = [0, n0, _D, 8, 0];
|
|
829
|
+
var DescriptionSafe = [0, n0, _DS, 8, 0];
|
|
830
|
+
var DisplayName = [0, n0, _DN, 8, 0];
|
|
831
|
+
var DisplayNameSafe = [0, n0, _DNS, 8, 0];
|
|
832
|
+
var IconImage = [0, n0, _II, { [_mT]: _i }, 21];
|
|
833
|
+
var IdentityProviderName = [0, n0, _IPN, 8, 0];
|
|
834
|
+
var InlineRedactionUrl = [0, n0, _IRU, 8, 0];
|
|
835
|
+
var IpAddress = [0, n0, _IA, 8, 0];
|
|
836
|
+
var IpRange = [0, n0, _IR, 8, 0];
|
|
837
|
+
var Markdown = [0, n0, _M, { [_mT]: _t, [_sen]: 1 }, 0];
|
|
838
|
+
var PatternName = [0, n0, _PN, 8, 0];
|
|
839
|
+
var RedactionPlaceHolderText = [0, n0, _RPHT, 8, 0];
|
|
840
|
+
var Regex = [0, n0, _R, 8, 0];
|
|
841
|
+
var S3Bucket = [0, n0, _SB, 8, 0];
|
|
842
|
+
var S3KeyPrefix = [0, n0, _SKP, 8, 0];
|
|
843
|
+
var TagKey = [0, n0, _TK, 8, 0];
|
|
844
|
+
var TagValue = [0, n0, _TV, 8, 0];
|
|
845
|
+
var UrlPattern = [0, n0, _UP, 8, 0];
|
|
846
|
+
var Username = [0, n0, _U, 8, 0];
|
|
847
|
+
var WallpaperImage = [0, n0, _WI, { [_mT]: _i }, 21];
|
|
848
|
+
var AssociateBrowserSettingsRequest$ = [3, n0, _ABSR,
|
|
849
|
+
0,
|
|
850
|
+
[_pA, _bSA],
|
|
851
|
+
[[0, 1], [0, { [_hQ]: _bSA }]], 2
|
|
852
|
+
];
|
|
853
|
+
var AssociateBrowserSettingsResponse$ = [3, n0, _ABSRs,
|
|
854
|
+
0,
|
|
855
|
+
[_pA, _bSA],
|
|
856
|
+
[0, 0], 2
|
|
857
|
+
];
|
|
858
|
+
var AssociateDataProtectionSettingsRequest$ = [3, n0, _ADPSR,
|
|
859
|
+
0,
|
|
860
|
+
[_pA, _dPSA],
|
|
861
|
+
[[0, 1], [0, { [_hQ]: _dPSA }]], 2
|
|
862
|
+
];
|
|
863
|
+
var AssociateDataProtectionSettingsResponse$ = [3, n0, _ADPSRs,
|
|
864
|
+
0,
|
|
865
|
+
[_pA, _dPSA],
|
|
866
|
+
[0, 0], 2
|
|
867
|
+
];
|
|
868
|
+
var AssociateIpAccessSettingsRequest$ = [3, n0, _AIASR,
|
|
869
|
+
0,
|
|
870
|
+
[_pA, _iASA],
|
|
871
|
+
[[0, 1], [0, { [_hQ]: _iASA }]], 2
|
|
872
|
+
];
|
|
873
|
+
var AssociateIpAccessSettingsResponse$ = [3, n0, _AIASRs,
|
|
874
|
+
0,
|
|
875
|
+
[_pA, _iASA],
|
|
876
|
+
[0, 0], 2
|
|
877
|
+
];
|
|
878
|
+
var AssociateNetworkSettingsRequest$ = [3, n0, _ANSR,
|
|
879
|
+
0,
|
|
880
|
+
[_pA, _nSA],
|
|
881
|
+
[[0, 1], [0, { [_hQ]: _nSA }]], 2
|
|
882
|
+
];
|
|
883
|
+
var AssociateNetworkSettingsResponse$ = [3, n0, _ANSRs,
|
|
884
|
+
0,
|
|
885
|
+
[_pA, _nSA],
|
|
886
|
+
[0, 0], 2
|
|
887
|
+
];
|
|
888
|
+
var AssociateSessionLoggerRequest$ = [3, n0, _ASLR,
|
|
889
|
+
0,
|
|
890
|
+
[_pA, _sLA],
|
|
891
|
+
[[0, 1], [0, { [_hQ]: _sLA }]], 2
|
|
892
|
+
];
|
|
893
|
+
var AssociateSessionLoggerResponse$ = [3, n0, _ASLRs,
|
|
894
|
+
0,
|
|
895
|
+
[_pA, _sLA],
|
|
896
|
+
[0, 0], 2
|
|
897
|
+
];
|
|
898
|
+
var AssociateTrustStoreRequest$ = [3, n0, _ATSR,
|
|
899
|
+
0,
|
|
900
|
+
[_pA, _tSA],
|
|
901
|
+
[[0, 1], [0, { [_hQ]: _tSA }]], 2
|
|
902
|
+
];
|
|
903
|
+
var AssociateTrustStoreResponse$ = [3, n0, _ATSRs,
|
|
904
|
+
0,
|
|
905
|
+
[_pA, _tSA],
|
|
906
|
+
[0, 0], 2
|
|
907
|
+
];
|
|
908
|
+
var AssociateUserAccessLoggingSettingsRequest$ = [3, n0, _AUALSR,
|
|
909
|
+
0,
|
|
910
|
+
[_pA, _uALSA],
|
|
911
|
+
[[0, 1], [0, { [_hQ]: _uALSA }]], 2
|
|
912
|
+
];
|
|
913
|
+
var AssociateUserAccessLoggingSettingsResponse$ = [3, n0, _AUALSRs,
|
|
914
|
+
0,
|
|
915
|
+
[_pA, _uALSA],
|
|
916
|
+
[0, 0], 2
|
|
917
|
+
];
|
|
918
|
+
var AssociateUserSettingsRequest$ = [3, n0, _AUSR,
|
|
919
|
+
0,
|
|
920
|
+
[_pA, _uSA],
|
|
921
|
+
[[0, 1], [0, { [_hQ]: _uSA }]], 2
|
|
922
|
+
];
|
|
923
|
+
var AssociateUserSettingsResponse$ = [3, n0, _AUSRs,
|
|
924
|
+
0,
|
|
925
|
+
[_pA, _uSA],
|
|
926
|
+
[0, 0], 2
|
|
927
|
+
];
|
|
928
|
+
var BrandingConfiguration$ = [3, n0, _BC,
|
|
929
|
+
0,
|
|
930
|
+
[_l, _f, _lS, _cT, _w, _tOS],
|
|
931
|
+
[() => ImageMetadata$, () => ImageMetadata$, () => LocalizedBrandingStringMap, 0, () => ImageMetadata$, [() => Markdown, 0]], 4
|
|
932
|
+
];
|
|
933
|
+
var BrandingConfigurationCreateInput$ = [3, n0, _BCCI,
|
|
934
|
+
0,
|
|
935
|
+
[_l, _f, _lS, _cT, _w, _tOS],
|
|
936
|
+
[[() => IconImageInput$, 0], [() => IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => WallpaperImageInput$, 0], [() => Markdown, 0]], 4
|
|
937
|
+
];
|
|
938
|
+
var BrandingConfigurationUpdateInput$ = [3, n0, _BCUI,
|
|
939
|
+
0,
|
|
940
|
+
[_l, _w, _f, _lS, _cT, _tOS],
|
|
941
|
+
[[() => IconImageInput$, 0], [() => WallpaperImageInput$, 0], [() => IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]]
|
|
942
|
+
];
|
|
943
|
+
var BrowserSettings$ = [3, n0, _BS,
|
|
944
|
+
0,
|
|
945
|
+
[_bSA, _aPA, _bP, _cMK, _aEC, _wCFP],
|
|
946
|
+
[0, 64 | 0, [() => BrowserPolicy, 0], 0, 128 | 0, [() => WebContentFilteringPolicy$, 0]], 1
|
|
947
|
+
];
|
|
948
|
+
var BrowserSettingsSummary$ = [3, n0, _BSS,
|
|
949
|
+
0,
|
|
950
|
+
[_bSA],
|
|
951
|
+
[0], 1
|
|
952
|
+
];
|
|
953
|
+
var Certificate$ = [3, n0, _C,
|
|
954
|
+
0,
|
|
955
|
+
[_th, _su, _is, _nVB, _nVA, _b],
|
|
956
|
+
[0, 0, 0, 4, 4, 21]
|
|
957
|
+
];
|
|
958
|
+
var CertificateSummary$ = [3, n0, _CS,
|
|
959
|
+
0,
|
|
960
|
+
[_th, _su, _is, _nVB, _nVA],
|
|
961
|
+
[0, 0, 0, 4, 4]
|
|
962
|
+
];
|
|
963
|
+
var CookieSpecification$ = [3, n0, _CSo,
|
|
964
|
+
0,
|
|
965
|
+
[_d, _n, _p],
|
|
966
|
+
[[() => CookieDomain, 0], [() => CookieName, 0], [() => CookiePath, 0]], 1
|
|
967
|
+
];
|
|
968
|
+
var CookieSynchronizationConfiguration$ = [3, n0, _CSC,
|
|
969
|
+
8,
|
|
970
|
+
[_a, _bl],
|
|
971
|
+
[[() => CookieSpecifications, 0], [() => CookieSpecifications, 0]], 1
|
|
972
|
+
];
|
|
973
|
+
var CreateBrowserSettingsRequest$ = [3, n0, _CBSR,
|
|
974
|
+
0,
|
|
975
|
+
[_ta, _cMK, _aEC, _bP, _cTl, _wCFP],
|
|
976
|
+
[[() => TagList, 0], 0, 128 | 0, [() => BrowserPolicy, 0], [0, 4], [() => WebContentFilteringPolicy$, 0]]
|
|
977
|
+
];
|
|
978
|
+
var CreateBrowserSettingsResponse$ = [3, n0, _CBSRr,
|
|
979
|
+
0,
|
|
980
|
+
[_bSA],
|
|
981
|
+
[0], 1
|
|
982
|
+
];
|
|
983
|
+
var CreateDataProtectionSettingsRequest$ = [3, n0, _CDPSR,
|
|
984
|
+
0,
|
|
985
|
+
[_dN, _de, _ta, _cMK, _aEC, _iRC, _cTl],
|
|
986
|
+
[[() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], [() => TagList, 0], 0, 128 | 0, [() => InlineRedactionConfiguration$, 0], [0, 4]]
|
|
987
|
+
];
|
|
988
|
+
var CreateDataProtectionSettingsResponse$ = [3, n0, _CDPSRr,
|
|
989
|
+
0,
|
|
990
|
+
[_dPSA],
|
|
991
|
+
[0], 1
|
|
992
|
+
];
|
|
993
|
+
var CreateIdentityProviderRequest$ = [3, n0, _CIPR,
|
|
994
|
+
0,
|
|
995
|
+
[_pA, _iPN, _iPT, _iPD, _cTl, _ta],
|
|
996
|
+
[0, [() => IdentityProviderName, 0], 0, [() => IdentityProviderDetails, 0], [0, 4], [() => TagList, 0]], 4
|
|
997
|
+
];
|
|
998
|
+
var CreateIdentityProviderResponse$ = [3, n0, _CIPRr,
|
|
999
|
+
0,
|
|
1000
|
+
[_iPA],
|
|
1001
|
+
[0], 1
|
|
1002
|
+
];
|
|
1003
|
+
var CreateIpAccessSettingsRequest$ = [3, n0, _CIASR,
|
|
1004
|
+
0,
|
|
1005
|
+
[_iR, _dN, _de, _ta, _cMK, _aEC, _cTl],
|
|
1006
|
+
[[() => IpRuleList, 0], [() => DisplayName, 0], [() => Description, 0], [() => TagList, 0], 0, 128 | 0, [0, 4]], 1
|
|
1007
|
+
];
|
|
1008
|
+
var CreateIpAccessSettingsResponse$ = [3, n0, _CIASRr,
|
|
1009
|
+
0,
|
|
1010
|
+
[_iASA],
|
|
1011
|
+
[0], 1
|
|
1012
|
+
];
|
|
1013
|
+
var CreateNetworkSettingsRequest$ = [3, n0, _CNSR,
|
|
1014
|
+
0,
|
|
1015
|
+
[_vI, _sI, _sGI, _ta, _cTl],
|
|
1016
|
+
[0, 64 | 0, 64 | 0, [() => TagList, 0], [0, 4]], 3
|
|
1017
|
+
];
|
|
1018
|
+
var CreateNetworkSettingsResponse$ = [3, n0, _CNSRr,
|
|
1019
|
+
0,
|
|
1020
|
+
[_nSA],
|
|
1021
|
+
[0], 1
|
|
1022
|
+
];
|
|
1023
|
+
var CreatePortalRequest$ = [3, n0, _CPR,
|
|
1024
|
+
0,
|
|
1025
|
+
[_dN, _ta, _cMK, _aEC, _cTl, _aT, _iT, _mCS, _pCD],
|
|
1026
|
+
[[() => DisplayName, 0], [() => TagList, 0], 0, 128 | 0, [0, 4], 0, 0, 1, 0]
|
|
1027
|
+
];
|
|
1028
|
+
var CreatePortalResponse$ = [3, n0, _CPRr,
|
|
1029
|
+
0,
|
|
1030
|
+
[_pA, _pE],
|
|
1031
|
+
[0, 0], 2
|
|
1032
|
+
];
|
|
1033
|
+
var CreateSessionLoggerRequest$ = [3, n0, _CSLR,
|
|
1034
|
+
0,
|
|
1035
|
+
[_eF, _lC, _dN, _cMK, _aEC, _ta, _cTl],
|
|
1036
|
+
[() => EventFilter$, [() => LogConfiguration$, 0], [() => DisplayNameSafe, 0], 0, 128 | 0, [() => TagList, 0], [0, 4]], 2
|
|
1037
|
+
];
|
|
1038
|
+
var CreateSessionLoggerResponse$ = [3, n0, _CSLRr,
|
|
1039
|
+
0,
|
|
1040
|
+
[_sLA],
|
|
1041
|
+
[0], 1
|
|
1042
|
+
];
|
|
1043
|
+
var CreateTrustStoreRequest$ = [3, n0, _CTSR,
|
|
1044
|
+
0,
|
|
1045
|
+
[_cL, _ta, _cTl],
|
|
1046
|
+
[64 | 21, [() => TagList, 0], [0, 4]], 1
|
|
1047
|
+
];
|
|
1048
|
+
var CreateTrustStoreResponse$ = [3, n0, _CTSRr,
|
|
1049
|
+
0,
|
|
1050
|
+
[_tSA],
|
|
1051
|
+
[0], 1
|
|
1052
|
+
];
|
|
1053
|
+
var CreateUserAccessLoggingSettingsRequest$ = [3, n0, _CUALSR,
|
|
1054
|
+
0,
|
|
1055
|
+
[_kSA, _ta, _cTl],
|
|
1056
|
+
[0, [() => TagList, 0], [0, 4]], 1
|
|
1057
|
+
];
|
|
1058
|
+
var CreateUserAccessLoggingSettingsResponse$ = [3, n0, _CUALSRr,
|
|
1059
|
+
0,
|
|
1060
|
+
[_uALSA],
|
|
1061
|
+
[0], 1
|
|
1062
|
+
];
|
|
1063
|
+
var CreateUserSettingsRequest$ = [3, n0, _CUSR,
|
|
1064
|
+
0,
|
|
1065
|
+
[_cA, _pAa, _dA, _uA, _pAr, _ta, _dTIM, _iDTIM, _cTl, _cSC, _cMK, _aEC, _dLA, _tC, _bCI, _wAA],
|
|
1066
|
+
[0, 0, 0, 0, 0, [() => TagList, 0], 1, 1, [0, 4], [() => CookieSynchronizationConfiguration$, 0], 0, 128 | 0, 0, () => ToolbarConfiguration$, [() => BrandingConfigurationCreateInput$, 0], 0], 5
|
|
1067
|
+
];
|
|
1068
|
+
var CreateUserSettingsResponse$ = [3, n0, _CUSRr,
|
|
1069
|
+
0,
|
|
1070
|
+
[_uSA],
|
|
1071
|
+
[0], 1
|
|
1072
|
+
];
|
|
1073
|
+
var CustomPattern$ = [3, n0, _CPu,
|
|
1074
|
+
0,
|
|
1075
|
+
[_pN, _pR, _pD, _kR],
|
|
1076
|
+
[[() => PatternName, 0], [() => Regex, 0], [() => DescriptionSafe, 0], [() => Regex, 0]], 2
|
|
1077
|
+
];
|
|
1078
|
+
var DataProtectionSettings$ = [3, n0, _DPS,
|
|
1079
|
+
0,
|
|
1080
|
+
[_dPSA, _iRC, _aPA, _dN, _de, _cD, _cMK, _aEC],
|
|
1081
|
+
[0, [() => InlineRedactionConfiguration$, 0], 64 | 0, [() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], 4, 0, 128 | 0], 1
|
|
1082
|
+
];
|
|
1083
|
+
var DataProtectionSettingsSummary$ = [3, n0, _DPSS,
|
|
1084
|
+
0,
|
|
1085
|
+
[_dPSA, _dN, _de, _cD],
|
|
1086
|
+
[0, [() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], 4], 1
|
|
1087
|
+
];
|
|
1088
|
+
var DeleteBrowserSettingsRequest$ = [3, n0, _DBSR,
|
|
1089
|
+
0,
|
|
1090
|
+
[_bSA],
|
|
1091
|
+
[[0, 1]], 1
|
|
1092
|
+
];
|
|
1093
|
+
var DeleteBrowserSettingsResponse$ = [3, n0, _DBSRe,
|
|
1094
|
+
0,
|
|
1095
|
+
[],
|
|
1096
|
+
[]
|
|
1097
|
+
];
|
|
1098
|
+
var DeleteDataProtectionSettingsRequest$ = [3, n0, _DDPSR,
|
|
1099
|
+
0,
|
|
1100
|
+
[_dPSA],
|
|
1101
|
+
[[0, 1]], 1
|
|
1102
|
+
];
|
|
1103
|
+
var DeleteDataProtectionSettingsResponse$ = [3, n0, _DDPSRe,
|
|
1104
|
+
0,
|
|
1105
|
+
[],
|
|
1106
|
+
[]
|
|
1107
|
+
];
|
|
1108
|
+
var DeleteIdentityProviderRequest$ = [3, n0, _DIPR,
|
|
1109
|
+
0,
|
|
1110
|
+
[_iPA],
|
|
1111
|
+
[[0, 1]], 1
|
|
1112
|
+
];
|
|
1113
|
+
var DeleteIdentityProviderResponse$ = [3, n0, _DIPRe,
|
|
1114
|
+
0,
|
|
1115
|
+
[],
|
|
1116
|
+
[]
|
|
1117
|
+
];
|
|
1118
|
+
var DeleteIpAccessSettingsRequest$ = [3, n0, _DIASR,
|
|
1119
|
+
0,
|
|
1120
|
+
[_iASA],
|
|
1121
|
+
[[0, 1]], 1
|
|
1122
|
+
];
|
|
1123
|
+
var DeleteIpAccessSettingsResponse$ = [3, n0, _DIASRe,
|
|
1124
|
+
0,
|
|
1125
|
+
[],
|
|
1126
|
+
[]
|
|
1127
|
+
];
|
|
1128
|
+
var DeleteNetworkSettingsRequest$ = [3, n0, _DNSR,
|
|
1129
|
+
0,
|
|
1130
|
+
[_nSA],
|
|
1131
|
+
[[0, 1]], 1
|
|
1132
|
+
];
|
|
1133
|
+
var DeleteNetworkSettingsResponse$ = [3, n0, _DNSRe,
|
|
1134
|
+
0,
|
|
1135
|
+
[],
|
|
1136
|
+
[]
|
|
1137
|
+
];
|
|
1138
|
+
var DeletePortalRequest$ = [3, n0, _DPR,
|
|
1139
|
+
0,
|
|
1140
|
+
[_pA],
|
|
1141
|
+
[[0, 1]], 1
|
|
1142
|
+
];
|
|
1143
|
+
var DeletePortalResponse$ = [3, n0, _DPRe,
|
|
1144
|
+
0,
|
|
1145
|
+
[],
|
|
1146
|
+
[]
|
|
1147
|
+
];
|
|
1148
|
+
var DeleteSessionLoggerRequest$ = [3, n0, _DSLR,
|
|
1149
|
+
0,
|
|
1150
|
+
[_sLA],
|
|
1151
|
+
[[0, 1]], 1
|
|
1152
|
+
];
|
|
1153
|
+
var DeleteSessionLoggerResponse$ = [3, n0, _DSLRe,
|
|
1154
|
+
0,
|
|
1155
|
+
[],
|
|
1156
|
+
[]
|
|
1157
|
+
];
|
|
1158
|
+
var DeleteTrustStoreRequest$ = [3, n0, _DTSR,
|
|
1159
|
+
0,
|
|
1160
|
+
[_tSA],
|
|
1161
|
+
[[0, 1]], 1
|
|
1162
|
+
];
|
|
1163
|
+
var DeleteTrustStoreResponse$ = [3, n0, _DTSRe,
|
|
1164
|
+
0,
|
|
1165
|
+
[],
|
|
1166
|
+
[]
|
|
1167
|
+
];
|
|
1168
|
+
var DeleteUserAccessLoggingSettingsRequest$ = [3, n0, _DUALSR,
|
|
1169
|
+
0,
|
|
1170
|
+
[_uALSA],
|
|
1171
|
+
[[0, 1]], 1
|
|
1172
|
+
];
|
|
1173
|
+
var DeleteUserAccessLoggingSettingsResponse$ = [3, n0, _DUALSRe,
|
|
1174
|
+
0,
|
|
1175
|
+
[],
|
|
1176
|
+
[]
|
|
1177
|
+
];
|
|
1178
|
+
var DeleteUserSettingsRequest$ = [3, n0, _DUSR,
|
|
1179
|
+
0,
|
|
1180
|
+
[_uSA],
|
|
1181
|
+
[[0, 1]], 1
|
|
1182
|
+
];
|
|
1183
|
+
var DeleteUserSettingsResponse$ = [3, n0, _DUSRe,
|
|
1184
|
+
0,
|
|
1185
|
+
[],
|
|
1186
|
+
[]
|
|
1187
|
+
];
|
|
1188
|
+
var DisassociateBrowserSettingsRequest$ = [3, n0, _DBSRi,
|
|
1189
|
+
0,
|
|
1190
|
+
[_pA],
|
|
1191
|
+
[[0, 1]], 1
|
|
1192
|
+
];
|
|
1193
|
+
var DisassociateBrowserSettingsResponse$ = [3, n0, _DBSRis,
|
|
1194
|
+
0,
|
|
1195
|
+
[],
|
|
1196
|
+
[]
|
|
1197
|
+
];
|
|
1198
|
+
var DisassociateDataProtectionSettingsRequest$ = [3, n0, _DDPSRi,
|
|
1199
|
+
0,
|
|
1200
|
+
[_pA],
|
|
1201
|
+
[[0, 1]], 1
|
|
1202
|
+
];
|
|
1203
|
+
var DisassociateDataProtectionSettingsResponse$ = [3, n0, _DDPSRis,
|
|
1204
|
+
0,
|
|
1205
|
+
[],
|
|
1206
|
+
[]
|
|
1207
|
+
];
|
|
1208
|
+
var DisassociateIpAccessSettingsRequest$ = [3, n0, _DIASRi,
|
|
1209
|
+
0,
|
|
1210
|
+
[_pA],
|
|
1211
|
+
[[0, 1]], 1
|
|
1212
|
+
];
|
|
1213
|
+
var DisassociateIpAccessSettingsResponse$ = [3, n0, _DIASRis,
|
|
1214
|
+
0,
|
|
1215
|
+
[],
|
|
1216
|
+
[]
|
|
1217
|
+
];
|
|
1218
|
+
var DisassociateNetworkSettingsRequest$ = [3, n0, _DNSRi,
|
|
1219
|
+
0,
|
|
1220
|
+
[_pA],
|
|
1221
|
+
[[0, 1]], 1
|
|
1222
|
+
];
|
|
1223
|
+
var DisassociateNetworkSettingsResponse$ = [3, n0, _DNSRis,
|
|
1224
|
+
0,
|
|
1225
|
+
[],
|
|
1226
|
+
[]
|
|
1227
|
+
];
|
|
1228
|
+
var DisassociateSessionLoggerRequest$ = [3, n0, _DSLRi,
|
|
1229
|
+
0,
|
|
1230
|
+
[_pA],
|
|
1231
|
+
[[0, 1]], 1
|
|
1232
|
+
];
|
|
1233
|
+
var DisassociateSessionLoggerResponse$ = [3, n0, _DSLRis,
|
|
1234
|
+
0,
|
|
1235
|
+
[],
|
|
1236
|
+
[]
|
|
1237
|
+
];
|
|
1238
|
+
var DisassociateTrustStoreRequest$ = [3, n0, _DTSRi,
|
|
1239
|
+
0,
|
|
1240
|
+
[_pA],
|
|
1241
|
+
[[0, 1]], 1
|
|
1242
|
+
];
|
|
1243
|
+
var DisassociateTrustStoreResponse$ = [3, n0, _DTSRis,
|
|
1244
|
+
0,
|
|
1245
|
+
[],
|
|
1246
|
+
[]
|
|
1247
|
+
];
|
|
1248
|
+
var DisassociateUserAccessLoggingSettingsRequest$ = [3, n0, _DUALSRi,
|
|
1249
|
+
0,
|
|
1250
|
+
[_pA],
|
|
1251
|
+
[[0, 1]], 1
|
|
1252
|
+
];
|
|
1253
|
+
var DisassociateUserAccessLoggingSettingsResponse$ = [3, n0, _DUALSRis,
|
|
1254
|
+
0,
|
|
1255
|
+
[],
|
|
1256
|
+
[]
|
|
1257
|
+
];
|
|
1258
|
+
var DisassociateUserSettingsRequest$ = [3, n0, _DUSRi,
|
|
1259
|
+
0,
|
|
1260
|
+
[_pA],
|
|
1261
|
+
[[0, 1]], 1
|
|
1262
|
+
];
|
|
1263
|
+
var DisassociateUserSettingsResponse$ = [3, n0, _DUSRis,
|
|
1264
|
+
0,
|
|
1265
|
+
[],
|
|
1266
|
+
[]
|
|
1267
|
+
];
|
|
1268
|
+
var ExpireSessionRequest$ = [3, n0, _ESR,
|
|
1269
|
+
0,
|
|
1270
|
+
[_pI, _sIe],
|
|
1271
|
+
[[0, 1], [0, 1]], 2
|
|
1272
|
+
];
|
|
1273
|
+
var ExpireSessionResponse$ = [3, n0, _ESRx,
|
|
1274
|
+
0,
|
|
1275
|
+
[],
|
|
1276
|
+
[]
|
|
1277
|
+
];
|
|
1278
|
+
var GetBrowserSettingsRequest$ = [3, n0, _GBSR,
|
|
1279
|
+
0,
|
|
1280
|
+
[_bSA],
|
|
1281
|
+
[[0, 1]], 1
|
|
1282
|
+
];
|
|
1283
|
+
var GetBrowserSettingsResponse$ = [3, n0, _GBSRe,
|
|
1284
|
+
0,
|
|
1285
|
+
[_bS],
|
|
1286
|
+
[[() => BrowserSettings$, 0]]
|
|
1287
|
+
];
|
|
1288
|
+
var GetDataProtectionSettingsRequest$ = [3, n0, _GDPSR,
|
|
1289
|
+
0,
|
|
1290
|
+
[_dPSA],
|
|
1291
|
+
[[0, 1]], 1
|
|
1292
|
+
];
|
|
1293
|
+
var GetDataProtectionSettingsResponse$ = [3, n0, _GDPSRe,
|
|
1294
|
+
0,
|
|
1295
|
+
[_dPS],
|
|
1296
|
+
[[() => DataProtectionSettings$, 0]]
|
|
1297
|
+
];
|
|
1298
|
+
var GetIdentityProviderRequest$ = [3, n0, _GIPR,
|
|
1299
|
+
0,
|
|
1300
|
+
[_iPA],
|
|
1301
|
+
[[0, 1]], 1
|
|
1302
|
+
];
|
|
1303
|
+
var GetIdentityProviderResponse$ = [3, n0, _GIPRe,
|
|
1304
|
+
0,
|
|
1305
|
+
[_iP],
|
|
1306
|
+
[[() => IdentityProvider$, 0]]
|
|
1307
|
+
];
|
|
1308
|
+
var GetIpAccessSettingsRequest$ = [3, n0, _GIASR,
|
|
1309
|
+
0,
|
|
1310
|
+
[_iASA],
|
|
1311
|
+
[[0, 1]], 1
|
|
1312
|
+
];
|
|
1313
|
+
var GetIpAccessSettingsResponse$ = [3, n0, _GIASRe,
|
|
1314
|
+
0,
|
|
1315
|
+
[_iAS],
|
|
1316
|
+
[[() => IpAccessSettings$, 0]]
|
|
1317
|
+
];
|
|
1318
|
+
var GetNetworkSettingsRequest$ = [3, n0, _GNSR,
|
|
1319
|
+
0,
|
|
1320
|
+
[_nSA],
|
|
1321
|
+
[[0, 1]], 1
|
|
1322
|
+
];
|
|
1323
|
+
var GetNetworkSettingsResponse$ = [3, n0, _GNSRe,
|
|
1324
|
+
0,
|
|
1325
|
+
[_nS],
|
|
1326
|
+
[() => NetworkSettings$]
|
|
1327
|
+
];
|
|
1328
|
+
var GetPortalRequest$ = [3, n0, _GPR,
|
|
1329
|
+
0,
|
|
1330
|
+
[_pA],
|
|
1331
|
+
[[0, 1]], 1
|
|
1332
|
+
];
|
|
1333
|
+
var GetPortalResponse$ = [3, n0, _GPRe,
|
|
1334
|
+
0,
|
|
1335
|
+
[_po],
|
|
1336
|
+
[[() => Portal$, 0]]
|
|
1337
|
+
];
|
|
1338
|
+
var GetPortalServiceProviderMetadataRequest$ = [3, n0, _GPSPMR,
|
|
1339
|
+
0,
|
|
1340
|
+
[_pA],
|
|
1341
|
+
[[0, 1]], 1
|
|
1342
|
+
];
|
|
1343
|
+
var GetPortalServiceProviderMetadataResponse$ = [3, n0, _GPSPMRe,
|
|
1344
|
+
0,
|
|
1345
|
+
[_pA, _sPSM],
|
|
1346
|
+
[0, 0], 1
|
|
1347
|
+
];
|
|
1348
|
+
var GetSessionLoggerRequest$ = [3, n0, _GSLR,
|
|
1349
|
+
0,
|
|
1350
|
+
[_sLA],
|
|
1351
|
+
[[0, 1]], 1
|
|
1352
|
+
];
|
|
1353
|
+
var GetSessionLoggerResponse$ = [3, n0, _GSLRe,
|
|
1354
|
+
0,
|
|
1355
|
+
[_sL],
|
|
1356
|
+
[[() => SessionLogger$, 0]]
|
|
1357
|
+
];
|
|
1358
|
+
var GetSessionRequest$ = [3, n0, _GSR,
|
|
1359
|
+
0,
|
|
1360
|
+
[_pI, _sIe],
|
|
1361
|
+
[[0, 1], [0, 1]], 2
|
|
1362
|
+
];
|
|
1363
|
+
var GetSessionResponse$ = [3, n0, _GSRe,
|
|
1364
|
+
0,
|
|
1365
|
+
[_ses],
|
|
1366
|
+
[[() => Session$, 0]]
|
|
1367
|
+
];
|
|
1368
|
+
var GetTrustStoreCertificateRequest$ = [3, n0, _GTSCR,
|
|
1369
|
+
0,
|
|
1370
|
+
[_tSA, _th],
|
|
1371
|
+
[[0, 1], [0, { [_hQ]: _th }]], 2
|
|
1372
|
+
];
|
|
1373
|
+
var GetTrustStoreCertificateResponse$ = [3, n0, _GTSCRe,
|
|
1374
|
+
0,
|
|
1375
|
+
[_tSA, _ce],
|
|
1376
|
+
[0, () => Certificate$], 1
|
|
1377
|
+
];
|
|
1378
|
+
var GetTrustStoreRequest$ = [3, n0, _GTSR,
|
|
1379
|
+
0,
|
|
1380
|
+
[_tSA],
|
|
1381
|
+
[[0, 1]], 1
|
|
1382
|
+
];
|
|
1383
|
+
var GetTrustStoreResponse$ = [3, n0, _GTSRe,
|
|
1384
|
+
0,
|
|
1385
|
+
[_tS],
|
|
1386
|
+
[() => TrustStore$]
|
|
1387
|
+
];
|
|
1388
|
+
var GetUserAccessLoggingSettingsRequest$ = [3, n0, _GUALSR,
|
|
1389
|
+
0,
|
|
1390
|
+
[_uALSA],
|
|
1391
|
+
[[0, 1]], 1
|
|
1392
|
+
];
|
|
1393
|
+
var GetUserAccessLoggingSettingsResponse$ = [3, n0, _GUALSRe,
|
|
1394
|
+
0,
|
|
1395
|
+
[_uALS],
|
|
1396
|
+
[() => UserAccessLoggingSettings$]
|
|
1397
|
+
];
|
|
1398
|
+
var GetUserSettingsRequest$ = [3, n0, _GUSR,
|
|
1399
|
+
0,
|
|
1400
|
+
[_uSA],
|
|
1401
|
+
[[0, 1]], 1
|
|
1402
|
+
];
|
|
1403
|
+
var GetUserSettingsResponse$ = [3, n0, _GUSRe,
|
|
1404
|
+
0,
|
|
1405
|
+
[_uS],
|
|
1406
|
+
[[() => UserSettings$, 0]]
|
|
1407
|
+
];
|
|
1408
|
+
var IdentityProvider$ = [3, n0, _IP,
|
|
1409
|
+
0,
|
|
1410
|
+
[_iPA, _iPN, _iPT, _iPD],
|
|
1411
|
+
[0, [() => IdentityProviderName, 0], 0, [() => IdentityProviderDetails, 0]], 1
|
|
1412
|
+
];
|
|
1413
|
+
var IdentityProviderSummary$ = [3, n0, _IPS,
|
|
1414
|
+
0,
|
|
1415
|
+
[_iPA, _iPN, _iPT],
|
|
1416
|
+
[0, [() => IdentityProviderName, 0], 0], 1
|
|
1417
|
+
];
|
|
1418
|
+
var ImageMetadata$ = [3, n0, _IM,
|
|
1419
|
+
0,
|
|
1420
|
+
[_mTi, _fE, _lUT],
|
|
1421
|
+
[0, 0, 4], 3
|
|
1422
|
+
];
|
|
1423
|
+
var InlineRedactionConfiguration$ = [3, n0, _IRC,
|
|
1424
|
+
0,
|
|
1425
|
+
[_iRP, _gEU, _gEUl, _gCL],
|
|
1426
|
+
[[() => InlineRedactionPatterns, 0], [() => GlobalInlineRedactionUrls, 0], [() => GlobalInlineRedactionUrls, 0], 1], 1
|
|
1427
|
+
];
|
|
1428
|
+
var InlineRedactionPattern$ = [3, n0, _IRP,
|
|
1429
|
+
0,
|
|
1430
|
+
[_rPH, _bIPI, _cP, _eU, _eUx, _cLo],
|
|
1431
|
+
[[() => RedactionPlaceHolder$, 0], [() => BuiltInPatternId, 0], [() => CustomPattern$, 0], [() => InlineRedactionUrls, 0], [() => InlineRedactionUrls, 0], 1], 1
|
|
1432
|
+
];
|
|
1433
|
+
var IpAccessSettings$ = [3, n0, _IAS,
|
|
1434
|
+
0,
|
|
1435
|
+
[_iASA, _aPA, _iR, _dN, _de, _cD, _cMK, _aEC],
|
|
1436
|
+
[0, 64 | 0, [() => IpRuleList, 0], [() => DisplayName, 0], [() => Description, 0], 4, 0, 128 | 0], 1
|
|
1437
|
+
];
|
|
1438
|
+
var IpAccessSettingsSummary$ = [3, n0, _IASS,
|
|
1439
|
+
0,
|
|
1440
|
+
[_iASA, _dN, _de, _cD],
|
|
1441
|
+
[0, [() => DisplayName, 0], [() => Description, 0], 4], 1
|
|
1442
|
+
];
|
|
1443
|
+
var IpRule$ = [3, n0, _IRp,
|
|
1444
|
+
0,
|
|
1445
|
+
[_iRp, _de],
|
|
1446
|
+
[[() => IpRange, 0], [() => Description, 0]], 1
|
|
1447
|
+
];
|
|
1448
|
+
var ListBrowserSettingsRequest$ = [3, n0, _LBSR,
|
|
1449
|
+
0,
|
|
1450
|
+
[_nT, _mR],
|
|
1451
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1452
|
+
];
|
|
1453
|
+
var ListBrowserSettingsResponse$ = [3, n0, _LBSRi,
|
|
1454
|
+
0,
|
|
1455
|
+
[_bS, _nT],
|
|
1456
|
+
[() => BrowserSettingsList, 0]
|
|
1457
|
+
];
|
|
1458
|
+
var ListDataProtectionSettingsRequest$ = [3, n0, _LDPSR,
|
|
1459
|
+
0,
|
|
1460
|
+
[_nT, _mR],
|
|
1461
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1462
|
+
];
|
|
1463
|
+
var ListDataProtectionSettingsResponse$ = [3, n0, _LDPSRi,
|
|
1464
|
+
0,
|
|
1465
|
+
[_dPS, _nT],
|
|
1466
|
+
[[() => DataProtectionSettingsList, 0], 0]
|
|
1467
|
+
];
|
|
1468
|
+
var ListIdentityProvidersRequest$ = [3, n0, _LIPR,
|
|
1469
|
+
0,
|
|
1470
|
+
[_pA, _nT, _mR],
|
|
1471
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1472
|
+
];
|
|
1473
|
+
var ListIdentityProvidersResponse$ = [3, n0, _LIPRi,
|
|
1474
|
+
0,
|
|
1475
|
+
[_nT, _iPd],
|
|
1476
|
+
[0, [() => IdentityProviderList, 0]]
|
|
1477
|
+
];
|
|
1478
|
+
var ListIpAccessSettingsRequest$ = [3, n0, _LIASR,
|
|
1479
|
+
0,
|
|
1480
|
+
[_nT, _mR],
|
|
1481
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1482
|
+
];
|
|
1483
|
+
var ListIpAccessSettingsResponse$ = [3, n0, _LIASRi,
|
|
1484
|
+
0,
|
|
1485
|
+
[_iAS, _nT],
|
|
1486
|
+
[[() => IpAccessSettingsList, 0], 0]
|
|
1487
|
+
];
|
|
1488
|
+
var ListNetworkSettingsRequest$ = [3, n0, _LNSR,
|
|
1489
|
+
0,
|
|
1490
|
+
[_nT, _mR],
|
|
1491
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1492
|
+
];
|
|
1493
|
+
var ListNetworkSettingsResponse$ = [3, n0, _LNSRi,
|
|
1494
|
+
0,
|
|
1495
|
+
[_nS, _nT],
|
|
1496
|
+
[() => NetworkSettingsList, 0]
|
|
1497
|
+
];
|
|
1498
|
+
var ListPortalsRequest$ = [3, n0, _LPR,
|
|
1499
|
+
0,
|
|
1500
|
+
[_nT, _mR],
|
|
1501
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1502
|
+
];
|
|
1503
|
+
var ListPortalsResponse$ = [3, n0, _LPRi,
|
|
1504
|
+
0,
|
|
1505
|
+
[_por, _nT],
|
|
1506
|
+
[[() => PortalList, 0], 0]
|
|
1507
|
+
];
|
|
1508
|
+
var ListSessionLoggersRequest$ = [3, n0, _LSLR,
|
|
1509
|
+
0,
|
|
1510
|
+
[_nT, _mR],
|
|
1511
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1512
|
+
];
|
|
1513
|
+
var ListSessionLoggersResponse$ = [3, n0, _LSLRi,
|
|
1514
|
+
0,
|
|
1515
|
+
[_sLe, _nT],
|
|
1516
|
+
[[() => SessionLoggerList, 0], 0]
|
|
1517
|
+
];
|
|
1518
|
+
var ListSessionsRequest$ = [3, n0, _LSR,
|
|
1519
|
+
0,
|
|
1520
|
+
[_pI, _u, _sIe, _sB, _st, _mR, _nT],
|
|
1521
|
+
[[0, 1], [() => Username, { [_hQ]: _u }], [0, { [_hQ]: _sIe }], [0, { [_hQ]: _sB }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1522
|
+
];
|
|
1523
|
+
var ListSessionsResponse$ = [3, n0, _LSRi,
|
|
1524
|
+
0,
|
|
1525
|
+
[_sess, _nT],
|
|
1526
|
+
[[() => SessionSummaryList, 0], 0], 1
|
|
1527
|
+
];
|
|
1528
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1529
|
+
0,
|
|
1530
|
+
[_rA],
|
|
1531
|
+
[[0, 1]], 1
|
|
1532
|
+
];
|
|
1533
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1534
|
+
0,
|
|
1535
|
+
[_ta],
|
|
1536
|
+
[[() => TagList, 0]]
|
|
1537
|
+
];
|
|
1538
|
+
var ListTrustStoreCertificatesRequest$ = [3, n0, _LTSCR,
|
|
1539
|
+
0,
|
|
1540
|
+
[_tSA, _nT, _mR],
|
|
1541
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1542
|
+
];
|
|
1543
|
+
var ListTrustStoreCertificatesResponse$ = [3, n0, _LTSCRi,
|
|
1544
|
+
0,
|
|
1545
|
+
[_tSA, _cL, _nT],
|
|
1546
|
+
[0, () => CertificateSummaryList, 0], 1
|
|
1547
|
+
];
|
|
1548
|
+
var ListTrustStoresRequest$ = [3, n0, _LTSR,
|
|
1549
|
+
0,
|
|
1550
|
+
[_nT, _mR],
|
|
1551
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1552
|
+
];
|
|
1553
|
+
var ListTrustStoresResponse$ = [3, n0, _LTSRi,
|
|
1554
|
+
0,
|
|
1555
|
+
[_tSr, _nT],
|
|
1556
|
+
[() => TrustStoreSummaryList, 0]
|
|
1557
|
+
];
|
|
1558
|
+
var ListUserAccessLoggingSettingsRequest$ = [3, n0, _LUALSR,
|
|
1559
|
+
0,
|
|
1560
|
+
[_nT, _mR],
|
|
1561
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1562
|
+
];
|
|
1563
|
+
var ListUserAccessLoggingSettingsResponse$ = [3, n0, _LUALSRi,
|
|
1564
|
+
0,
|
|
1565
|
+
[_uALS, _nT],
|
|
1566
|
+
[() => UserAccessLoggingSettingsList, 0]
|
|
1567
|
+
];
|
|
1568
|
+
var ListUserSettingsRequest$ = [3, n0, _LUSR,
|
|
1569
|
+
0,
|
|
1570
|
+
[_nT, _mR],
|
|
1571
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1572
|
+
];
|
|
1573
|
+
var ListUserSettingsResponse$ = [3, n0, _LUSRi,
|
|
1574
|
+
0,
|
|
1575
|
+
[_uS, _nT],
|
|
1576
|
+
[[() => UserSettingsList, 0], 0]
|
|
1577
|
+
];
|
|
1578
|
+
var LocalizedBrandingStrings$ = [3, n0, _LBS,
|
|
1579
|
+
0,
|
|
1580
|
+
[_bTT, _wT, _lT, _lD, _lBT, _cLon, _cBT, _lTo],
|
|
1581
|
+
[0, 0, 0, 0, 0, 0, 0, 0], 2
|
|
1582
|
+
];
|
|
1583
|
+
var LogConfiguration$ = [3, n0, _LC,
|
|
1584
|
+
0,
|
|
1585
|
+
[_s_],
|
|
1586
|
+
[[() => S3LogConfiguration$, 0]]
|
|
1587
|
+
];
|
|
1588
|
+
var NetworkSettings$ = [3, n0, _NS,
|
|
1589
|
+
0,
|
|
1590
|
+
[_nSA, _aPA, _vI, _sI, _sGI],
|
|
1591
|
+
[0, 64 | 0, 0, 64 | 0, 64 | 0], 1
|
|
1592
|
+
];
|
|
1593
|
+
var NetworkSettingsSummary$ = [3, n0, _NSS,
|
|
1594
|
+
0,
|
|
1595
|
+
[_nSA, _vI],
|
|
1596
|
+
[0, 0], 1
|
|
1597
|
+
];
|
|
1598
|
+
var Portal$ = [3, n0, _P,
|
|
1599
|
+
0,
|
|
1600
|
+
[_pA, _rTe, _bT, _pS, _pE, _dN, _cD, _bSA, _dPSA, _uSA, _nSA, _sLA, _tSA, _sR, _uALSA, _aT, _iASA, _cMK, _aEC, _iT, _mCS, _pCD],
|
|
1601
|
+
[0, 0, 0, 0, 0, [() => DisplayName, 0], 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 0, 1, 0], 1
|
|
1602
|
+
];
|
|
1603
|
+
var PortalSummary$ = [3, n0, _PS,
|
|
1604
|
+
0,
|
|
1605
|
+
[_pA, _rTe, _bT, _pS, _pE, _dN, _cD, _bSA, _dPSA, _uSA, _nSA, _sLA, _tSA, _uALSA, _aT, _iASA, _iT, _mCS, _pCD],
|
|
1606
|
+
[0, 0, 0, 0, 0, [() => DisplayName, 0], 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], 1
|
|
1607
|
+
];
|
|
1608
|
+
var RedactionPlaceHolder$ = [3, n0, _RPH,
|
|
1609
|
+
0,
|
|
1610
|
+
[_rPHT, _rPHTe],
|
|
1611
|
+
[0, [() => RedactionPlaceHolderText, 0]], 1
|
|
1612
|
+
];
|
|
1613
|
+
var S3LogConfiguration$ = [3, n0, _SLC,
|
|
1614
|
+
0,
|
|
1615
|
+
[_bu, _lFF, _fS, _kP, _bO],
|
|
1616
|
+
[[() => S3Bucket, 0], 0, 0, [() => S3KeyPrefix, 0], 0], 3
|
|
1617
|
+
];
|
|
1618
|
+
var Session$ = [3, n0, _S,
|
|
1619
|
+
0,
|
|
1620
|
+
[_pA, _sIe, _u, _cIA, _st, _sT, _eT],
|
|
1621
|
+
[0, 0, [() => Username, 0], [() => IpAddressList, 0], 0, 4, 4]
|
|
1622
|
+
];
|
|
1623
|
+
var SessionLogger$ = [3, n0, _SL,
|
|
1624
|
+
0,
|
|
1625
|
+
[_sLA, _eF, _lC, _cMK, _aEC, _aPA, _dN, _cD],
|
|
1626
|
+
[0, () => EventFilter$, [() => LogConfiguration$, 0], 0, 128 | 0, 64 | 0, [() => DisplayNameSafe, 0], 4], 1
|
|
1627
|
+
];
|
|
1628
|
+
var SessionLoggerSummary$ = [3, n0, _SLS,
|
|
1629
|
+
0,
|
|
1630
|
+
[_sLA, _lC, _dN, _cD],
|
|
1631
|
+
[0, [() => LogConfiguration$, 0], [() => DisplayNameSafe, 0], 4], 1
|
|
1632
|
+
];
|
|
1633
|
+
var SessionSummary$ = [3, n0, _SS,
|
|
1634
|
+
0,
|
|
1635
|
+
[_pA, _sIe, _u, _st, _sT, _eT],
|
|
1636
|
+
[0, 0, [() => Username, 0], 0, 4, 4]
|
|
1637
|
+
];
|
|
1638
|
+
var Tag$ = [3, n0, _T,
|
|
1639
|
+
8,
|
|
1640
|
+
[_K, _V],
|
|
1641
|
+
[[() => TagKey, 0], [() => TagValue, 0]], 2
|
|
1642
|
+
];
|
|
1643
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1644
|
+
0,
|
|
1645
|
+
[_rA, _ta, _cTl],
|
|
1646
|
+
[[0, 1], [() => TagList, 0], [0, 4]], 2
|
|
1647
|
+
];
|
|
1648
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1649
|
+
0,
|
|
1650
|
+
[],
|
|
1651
|
+
[]
|
|
1652
|
+
];
|
|
1653
|
+
var ToolbarConfiguration$ = [3, n0, _TC,
|
|
1654
|
+
0,
|
|
1655
|
+
[_tT, _vM, _hTI, _mDR],
|
|
1656
|
+
[0, 0, 64 | 0, 0]
|
|
1657
|
+
];
|
|
1658
|
+
var TrustStore$ = [3, n0, _TS,
|
|
1659
|
+
0,
|
|
1660
|
+
[_tSA, _aPA],
|
|
1661
|
+
[0, 64 | 0], 1
|
|
1662
|
+
];
|
|
1663
|
+
var TrustStoreSummary$ = [3, n0, _TSS,
|
|
1664
|
+
0,
|
|
1665
|
+
[_tSA],
|
|
1666
|
+
[0]
|
|
1667
|
+
];
|
|
1668
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1669
|
+
0,
|
|
1670
|
+
[_rA, _tK],
|
|
1671
|
+
[[0, 1], [() => TagKeyList, { [_hQ]: _tK }]], 2
|
|
1672
|
+
];
|
|
1673
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1674
|
+
0,
|
|
1675
|
+
[],
|
|
1676
|
+
[]
|
|
1677
|
+
];
|
|
1678
|
+
var UpdateBrowserSettingsRequest$ = [3, n0, _UBSR,
|
|
1679
|
+
0,
|
|
1680
|
+
[_bSA, _bP, _cTl, _wCFP],
|
|
1681
|
+
[[0, 1], [() => BrowserPolicy, 0], [0, 4], [() => WebContentFilteringPolicy$, 0]], 1
|
|
1682
|
+
];
|
|
1683
|
+
var UpdateBrowserSettingsResponse$ = [3, n0, _UBSRp,
|
|
1684
|
+
0,
|
|
1685
|
+
[_bS],
|
|
1686
|
+
[[() => BrowserSettings$, 0]], 1
|
|
1687
|
+
];
|
|
1688
|
+
var UpdateDataProtectionSettingsRequest$ = [3, n0, _UDPSR,
|
|
1689
|
+
0,
|
|
1690
|
+
[_dPSA, _iRC, _dN, _de, _cTl],
|
|
1691
|
+
[[0, 1], [() => InlineRedactionConfiguration$, 0], [() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], [0, 4]], 1
|
|
1692
|
+
];
|
|
1693
|
+
var UpdateDataProtectionSettingsResponse$ = [3, n0, _UDPSRp,
|
|
1694
|
+
0,
|
|
1695
|
+
[_dPS],
|
|
1696
|
+
[[() => DataProtectionSettings$, 0]], 1
|
|
1697
|
+
];
|
|
1698
|
+
var UpdateIdentityProviderRequest$ = [3, n0, _UIPR,
|
|
1699
|
+
0,
|
|
1700
|
+
[_iPA, _iPN, _iPT, _iPD, _cTl],
|
|
1701
|
+
[[0, 1], [() => IdentityProviderName, 0], 0, [() => IdentityProviderDetails, 0], [0, 4]], 1
|
|
1702
|
+
];
|
|
1703
|
+
var UpdateIdentityProviderResponse$ = [3, n0, _UIPRp,
|
|
1704
|
+
0,
|
|
1705
|
+
[_iP],
|
|
1706
|
+
[[() => IdentityProvider$, 0]], 1
|
|
1707
|
+
];
|
|
1708
|
+
var UpdateIpAccessSettingsRequest$ = [3, n0, _UIASR,
|
|
1709
|
+
0,
|
|
1710
|
+
[_iASA, _dN, _de, _iR, _cTl],
|
|
1711
|
+
[[0, 1], [() => DisplayName, 0], [() => Description, 0], [() => IpRuleList, 0], [0, 4]], 1
|
|
1712
|
+
];
|
|
1713
|
+
var UpdateIpAccessSettingsResponse$ = [3, n0, _UIASRp,
|
|
1714
|
+
0,
|
|
1715
|
+
[_iAS],
|
|
1716
|
+
[[() => IpAccessSettings$, 0]], 1
|
|
1717
|
+
];
|
|
1718
|
+
var UpdateNetworkSettingsRequest$ = [3, n0, _UNSR,
|
|
1719
|
+
0,
|
|
1720
|
+
[_nSA, _vI, _sI, _sGI, _cTl],
|
|
1721
|
+
[[0, 1], 0, 64 | 0, 64 | 0, [0, 4]], 1
|
|
1722
|
+
];
|
|
1723
|
+
var UpdateNetworkSettingsResponse$ = [3, n0, _UNSRp,
|
|
1724
|
+
0,
|
|
1725
|
+
[_nS],
|
|
1726
|
+
[() => NetworkSettings$], 1
|
|
1727
|
+
];
|
|
1728
|
+
var UpdatePortalRequest$ = [3, n0, _UPR,
|
|
1729
|
+
0,
|
|
1730
|
+
[_pA, _dN, _aT, _iT, _mCS, _pCD],
|
|
1731
|
+
[[0, 1], [() => DisplayName, 0], 0, 0, 1, 0], 1
|
|
1732
|
+
];
|
|
1733
|
+
var UpdatePortalResponse$ = [3, n0, _UPRp,
|
|
1734
|
+
0,
|
|
1735
|
+
[_po],
|
|
1736
|
+
[[() => Portal$, 0]]
|
|
1737
|
+
];
|
|
1738
|
+
var UpdateSessionLoggerRequest$ = [3, n0, _USLR,
|
|
1739
|
+
0,
|
|
1740
|
+
[_sLA, _eF, _lC, _dN],
|
|
1741
|
+
[[0, 1], () => EventFilter$, [() => LogConfiguration$, 0], [() => DisplayNameSafe, 0]], 1
|
|
1742
|
+
];
|
|
1743
|
+
var UpdateSessionLoggerResponse$ = [3, n0, _USLRp,
|
|
1744
|
+
0,
|
|
1745
|
+
[_sL],
|
|
1746
|
+
[[() => SessionLogger$, 0]], 1
|
|
1747
|
+
];
|
|
1748
|
+
var UpdateTrustStoreRequest$ = [3, n0, _UTSR,
|
|
1749
|
+
0,
|
|
1750
|
+
[_tSA, _cTA, _cTD, _cTl],
|
|
1751
|
+
[[0, 1], 64 | 21, 64 | 0, [0, 4]], 1
|
|
1752
|
+
];
|
|
1753
|
+
var UpdateTrustStoreResponse$ = [3, n0, _UTSRp,
|
|
1754
|
+
0,
|
|
1755
|
+
[_tSA],
|
|
1756
|
+
[0], 1
|
|
1757
|
+
];
|
|
1758
|
+
var UpdateUserAccessLoggingSettingsRequest$ = [3, n0, _UUALSR,
|
|
1759
|
+
0,
|
|
1760
|
+
[_uALSA, _kSA, _cTl],
|
|
1761
|
+
[[0, 1], 0, [0, 4]], 1
|
|
1762
|
+
];
|
|
1763
|
+
var UpdateUserAccessLoggingSettingsResponse$ = [3, n0, _UUALSRp,
|
|
1764
|
+
0,
|
|
1765
|
+
[_uALS],
|
|
1766
|
+
[() => UserAccessLoggingSettings$], 1
|
|
1767
|
+
];
|
|
1768
|
+
var UpdateUserSettingsRequest$ = [3, n0, _UUSR,
|
|
1769
|
+
0,
|
|
1770
|
+
[_uSA, _cA, _pAa, _dA, _uA, _pAr, _dTIM, _iDTIM, _cTl, _cSC, _dLA, _tC, _bCI, _wAA],
|
|
1771
|
+
[[0, 1], 0, 0, 0, 0, 0, 1, 1, [0, 4], [() => CookieSynchronizationConfiguration$, 0], 0, () => ToolbarConfiguration$, [() => BrandingConfigurationUpdateInput$, 0], 0], 1
|
|
1772
|
+
];
|
|
1773
|
+
var UpdateUserSettingsResponse$ = [3, n0, _UUSRp,
|
|
1774
|
+
0,
|
|
1775
|
+
[_uS],
|
|
1776
|
+
[[() => UserSettings$, 0]], 1
|
|
1777
|
+
];
|
|
1778
|
+
var UserAccessLoggingSettings$ = [3, n0, _UALS,
|
|
1779
|
+
0,
|
|
1780
|
+
[_uALSA, _aPA, _kSA],
|
|
1781
|
+
[0, 64 | 0, 0], 1
|
|
1782
|
+
];
|
|
1783
|
+
var UserAccessLoggingSettingsSummary$ = [3, n0, _UALSS,
|
|
1784
|
+
0,
|
|
1785
|
+
[_uALSA, _kSA],
|
|
1786
|
+
[0, 0], 1
|
|
1787
|
+
];
|
|
1788
|
+
var UserSettings$ = [3, n0, _US,
|
|
1789
|
+
0,
|
|
1790
|
+
[_uSA, _aPA, _cA, _pAa, _dA, _uA, _pAr, _dTIM, _iDTIM, _cSC, _cMK, _aEC, _dLA, _tC, _bC, _wAA],
|
|
1791
|
+
[0, 64 | 0, 0, 0, 0, 0, 0, 1, 1, [() => CookieSynchronizationConfiguration$, 0], 0, 128 | 0, 0, () => ToolbarConfiguration$, [() => BrandingConfiguration$, 0], 0], 1
|
|
1792
|
+
];
|
|
1793
|
+
var UserSettingsSummary$ = [3, n0, _USS,
|
|
1794
|
+
0,
|
|
1795
|
+
[_uSA, _cA, _pAa, _dA, _uA, _pAr, _dTIM, _iDTIM, _cSC, _dLA, _tC, _bC, _wAA],
|
|
1796
|
+
[0, 0, 0, 0, 0, 0, 1, 1, [() => CookieSynchronizationConfiguration$, 0], 0, () => ToolbarConfiguration$, [() => BrandingConfiguration$, 0], 0], 1
|
|
1797
|
+
];
|
|
1798
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1799
|
+
0,
|
|
1800
|
+
[_n, _m],
|
|
1801
|
+
[0, 0], 2
|
|
1802
|
+
];
|
|
1803
|
+
var WebContentFilteringPolicy$ = [3, n0, _WCFP,
|
|
1804
|
+
0,
|
|
1805
|
+
[_bCl, _aU, _bU],
|
|
1806
|
+
[64 | 0, [() => UrlPatternList, 0], [() => UrlPatternList, 0]]
|
|
1807
|
+
];
|
|
1808
|
+
var __Unit = "unit";
|
|
1809
|
+
var BrowserSettingsList = [1, n0, _BSL,
|
|
1810
|
+
0, () => BrowserSettingsSummary$
|
|
1811
|
+
];
|
|
1812
|
+
var CertificateSummaryList = [1, n0, _CSL,
|
|
1813
|
+
0, () => CertificateSummary$
|
|
1814
|
+
];
|
|
1815
|
+
var CookieSpecifications = [1, n0, _CSoo,
|
|
1816
|
+
0, [() => CookieSpecification$,
|
|
1817
|
+
0]
|
|
1818
|
+
];
|
|
1819
|
+
var DataProtectionSettingsList = [1, n0, _DPSL,
|
|
1820
|
+
0, [() => DataProtectionSettingsSummary$,
|
|
1821
|
+
0]
|
|
1822
|
+
];
|
|
1823
|
+
var GlobalInlineRedactionUrls = [1, n0, _GIRU,
|
|
1824
|
+
0, [() => InlineRedactionUrl,
|
|
1825
|
+
0]
|
|
1826
|
+
];
|
|
1827
|
+
var IdentityProviderList = [1, n0, _IPL,
|
|
1828
|
+
0, [() => IdentityProviderSummary$,
|
|
1829
|
+
0]
|
|
1830
|
+
];
|
|
1831
|
+
var InlineRedactionPatterns = [1, n0, _IRPn,
|
|
1832
|
+
0, [() => InlineRedactionPattern$,
|
|
1833
|
+
0]
|
|
1834
|
+
];
|
|
1835
|
+
var InlineRedactionUrls = [1, n0, _IRUn,
|
|
1836
|
+
0, [() => InlineRedactionUrl,
|
|
1837
|
+
0]
|
|
1838
|
+
];
|
|
1839
|
+
var IpAccessSettingsList = [1, n0, _IASL,
|
|
1840
|
+
0, [() => IpAccessSettingsSummary$,
|
|
1841
|
+
0]
|
|
1842
|
+
];
|
|
1843
|
+
var IpAddressList = [1, n0, _IAL,
|
|
1844
|
+
0, [() => IpAddress,
|
|
1845
|
+
0]
|
|
1846
|
+
];
|
|
1847
|
+
var IpRuleList = [1, n0, _IRL,
|
|
1848
|
+
8, [() => IpRule$,
|
|
1849
|
+
0]
|
|
1850
|
+
];
|
|
1851
|
+
var NetworkSettingsList = [1, n0, _NSL,
|
|
1852
|
+
0, () => NetworkSettingsSummary$
|
|
1853
|
+
];
|
|
1854
|
+
var PortalList = [1, n0, _PL,
|
|
1855
|
+
0, [() => PortalSummary$,
|
|
1856
|
+
0]
|
|
1857
|
+
];
|
|
1858
|
+
var SessionLoggerList = [1, n0, _SLL,
|
|
1859
|
+
0, [() => SessionLoggerSummary$,
|
|
1860
|
+
0]
|
|
1861
|
+
];
|
|
1862
|
+
var SessionSummaryList = [1, n0, _SSL,
|
|
1863
|
+
0, [() => SessionSummary$,
|
|
1864
|
+
0]
|
|
1865
|
+
];
|
|
1866
|
+
var TagKeyList = [1, n0, _TKL,
|
|
1867
|
+
0, [() => TagKey,
|
|
1868
|
+
0]
|
|
1869
|
+
];
|
|
1870
|
+
var TagList = [1, n0, _TL,
|
|
1871
|
+
0, [() => Tag$,
|
|
1872
|
+
0]
|
|
1873
|
+
];
|
|
1874
|
+
var TrustStoreSummaryList = [1, n0, _TSSL,
|
|
1875
|
+
0, () => TrustStoreSummary$
|
|
1876
|
+
];
|
|
1877
|
+
var UrlPatternList = [1, n0, _UPL,
|
|
1878
|
+
0, [() => UrlPattern,
|
|
1879
|
+
0]
|
|
1880
|
+
];
|
|
1881
|
+
var UserAccessLoggingSettingsList = [1, n0, _UALSL,
|
|
1882
|
+
0, () => UserAccessLoggingSettingsSummary$
|
|
1883
|
+
];
|
|
1884
|
+
var UserSettingsList = [1, n0, _USL,
|
|
1885
|
+
0, [() => UserSettingsSummary$,
|
|
1886
|
+
0]
|
|
1887
|
+
];
|
|
1888
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1889
|
+
0, () => ValidationExceptionField$
|
|
1890
|
+
];
|
|
1891
|
+
var IdentityProviderDetails = [2, n0, _IPD,
|
|
1892
|
+
8, 0, 0
|
|
1893
|
+
];
|
|
1894
|
+
var LocalizedBrandingStringMap = [2, n0, _LBSM,
|
|
1895
|
+
0, 0, () => LocalizedBrandingStrings$
|
|
1896
|
+
];
|
|
1897
|
+
var EventFilter$ = [4, n0, _EF,
|
|
1898
|
+
0,
|
|
1899
|
+
[_al, _in],
|
|
1900
|
+
[() => __Unit, 64 | 0]
|
|
1901
|
+
];
|
|
1902
|
+
var IconImageInput$ = [4, n0, _III,
|
|
1903
|
+
0,
|
|
1904
|
+
[_blo, _sU],
|
|
1905
|
+
[[() => IconImage, 0], 0]
|
|
1906
|
+
];
|
|
1907
|
+
var WallpaperImageInput$ = [4, n0, _WII,
|
|
1908
|
+
0,
|
|
1909
|
+
[_blo, _sU],
|
|
1910
|
+
[[() => WallpaperImage, 0], 0]
|
|
1911
|
+
];
|
|
1912
|
+
var AssociateBrowserSettings$ = [9, n0, _ABS,
|
|
1913
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/browserSettings", 200] }, () => AssociateBrowserSettingsRequest$, () => AssociateBrowserSettingsResponse$
|
|
1914
|
+
];
|
|
1915
|
+
var AssociateDataProtectionSettings$ = [9, n0, _ADPS,
|
|
1916
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/dataProtectionSettings", 200] }, () => AssociateDataProtectionSettingsRequest$, () => AssociateDataProtectionSettingsResponse$
|
|
1917
|
+
];
|
|
1918
|
+
var AssociateIpAccessSettings$ = [9, n0, _AIAS,
|
|
1919
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/ipAccessSettings", 200] }, () => AssociateIpAccessSettingsRequest$, () => AssociateIpAccessSettingsResponse$
|
|
1920
|
+
];
|
|
1921
|
+
var AssociateNetworkSettings$ = [9, n0, _ANS,
|
|
1922
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/networkSettings", 200] }, () => AssociateNetworkSettingsRequest$, () => AssociateNetworkSettingsResponse$
|
|
1923
|
+
];
|
|
1924
|
+
var AssociateSessionLogger$ = [9, n0, _ASL,
|
|
1925
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/sessionLogger", 200] }, () => AssociateSessionLoggerRequest$, () => AssociateSessionLoggerResponse$
|
|
1926
|
+
];
|
|
1927
|
+
var AssociateTrustStore$ = [9, n0, _ATS,
|
|
1928
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/trustStores", 200] }, () => AssociateTrustStoreRequest$, () => AssociateTrustStoreResponse$
|
|
1929
|
+
];
|
|
1930
|
+
var AssociateUserAccessLoggingSettings$ = [9, n0, _AUALS,
|
|
1931
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/userAccessLoggingSettings", 200] }, () => AssociateUserAccessLoggingSettingsRequest$, () => AssociateUserAccessLoggingSettingsResponse$
|
|
1932
|
+
];
|
|
1933
|
+
var AssociateUserSettings$ = [9, n0, _AUS,
|
|
1934
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}/userSettings", 200] }, () => AssociateUserSettingsRequest$, () => AssociateUserSettingsResponse$
|
|
1935
|
+
];
|
|
1936
|
+
var CreateBrowserSettings$ = [9, n0, _CBS,
|
|
1937
|
+
{ [_h]: ["POST", "/browserSettings", 200] }, () => CreateBrowserSettingsRequest$, () => CreateBrowserSettingsResponse$
|
|
1938
|
+
];
|
|
1939
|
+
var CreateDataProtectionSettings$ = [9, n0, _CDPS,
|
|
1940
|
+
{ [_h]: ["POST", "/dataProtectionSettings", 200] }, () => CreateDataProtectionSettingsRequest$, () => CreateDataProtectionSettingsResponse$
|
|
1941
|
+
];
|
|
1942
|
+
var CreateIdentityProvider$ = [9, n0, _CIP,
|
|
1943
|
+
{ [_h]: ["POST", "/identityProviders", 200] }, () => CreateIdentityProviderRequest$, () => CreateIdentityProviderResponse$
|
|
1944
|
+
];
|
|
1945
|
+
var CreateIpAccessSettings$ = [9, n0, _CIAS,
|
|
1946
|
+
{ [_h]: ["POST", "/ipAccessSettings", 200] }, () => CreateIpAccessSettingsRequest$, () => CreateIpAccessSettingsResponse$
|
|
1947
|
+
];
|
|
1948
|
+
var CreateNetworkSettings$ = [9, n0, _CNS,
|
|
1949
|
+
{ [_h]: ["POST", "/networkSettings", 200] }, () => CreateNetworkSettingsRequest$, () => CreateNetworkSettingsResponse$
|
|
1950
|
+
];
|
|
1951
|
+
var CreatePortal$ = [9, n0, _CPr,
|
|
1952
|
+
{ [_h]: ["POST", "/portals", 200] }, () => CreatePortalRequest$, () => CreatePortalResponse$
|
|
1953
|
+
];
|
|
1954
|
+
var CreateSessionLogger$ = [9, n0, _CSLr,
|
|
1955
|
+
{ [_h]: ["POST", "/sessionLoggers", 200] }, () => CreateSessionLoggerRequest$, () => CreateSessionLoggerResponse$
|
|
1956
|
+
];
|
|
1957
|
+
var CreateTrustStore$ = [9, n0, _CTS,
|
|
1958
|
+
{ [_h]: ["POST", "/trustStores", 200] }, () => CreateTrustStoreRequest$, () => CreateTrustStoreResponse$
|
|
1959
|
+
];
|
|
1960
|
+
var CreateUserAccessLoggingSettings$ = [9, n0, _CUALS,
|
|
1961
|
+
{ [_h]: ["POST", "/userAccessLoggingSettings", 200] }, () => CreateUserAccessLoggingSettingsRequest$, () => CreateUserAccessLoggingSettingsResponse$
|
|
1962
|
+
];
|
|
1963
|
+
var CreateUserSettings$ = [9, n0, _CUS,
|
|
1964
|
+
{ [_h]: ["POST", "/userSettings", 200] }, () => CreateUserSettingsRequest$, () => CreateUserSettingsResponse$
|
|
1965
|
+
];
|
|
1966
|
+
var DeleteBrowserSettings$ = [9, n0, _DBS,
|
|
1967
|
+
{ [_h]: ["DELETE", "/browserSettings/{browserSettingsArn+}", 200] }, () => DeleteBrowserSettingsRequest$, () => DeleteBrowserSettingsResponse$
|
|
1968
|
+
];
|
|
1969
|
+
var DeleteDataProtectionSettings$ = [9, n0, _DDPS,
|
|
1970
|
+
{ [_h]: ["DELETE", "/dataProtectionSettings/{dataProtectionSettingsArn+}", 200] }, () => DeleteDataProtectionSettingsRequest$, () => DeleteDataProtectionSettingsResponse$
|
|
1971
|
+
];
|
|
1972
|
+
var DeleteIdentityProvider$ = [9, n0, _DIP,
|
|
1973
|
+
{ [_h]: ["DELETE", "/identityProviders/{identityProviderArn+}", 200] }, () => DeleteIdentityProviderRequest$, () => DeleteIdentityProviderResponse$
|
|
1974
|
+
];
|
|
1975
|
+
var DeleteIpAccessSettings$ = [9, n0, _DIAS,
|
|
1976
|
+
{ [_h]: ["DELETE", "/ipAccessSettings/{ipAccessSettingsArn+}", 200] }, () => DeleteIpAccessSettingsRequest$, () => DeleteIpAccessSettingsResponse$
|
|
1977
|
+
];
|
|
1978
|
+
var DeleteNetworkSettings$ = [9, n0, _DNSe,
|
|
1979
|
+
{ [_h]: ["DELETE", "/networkSettings/{networkSettingsArn+}", 200] }, () => DeleteNetworkSettingsRequest$, () => DeleteNetworkSettingsResponse$
|
|
1980
|
+
];
|
|
1981
|
+
var DeletePortal$ = [9, n0, _DP,
|
|
1982
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}", 200] }, () => DeletePortalRequest$, () => DeletePortalResponse$
|
|
1983
|
+
];
|
|
1984
|
+
var DeleteSessionLogger$ = [9, n0, _DSL,
|
|
1985
|
+
{ [_h]: ["DELETE", "/sessionLoggers/{sessionLoggerArn+}", 200] }, () => DeleteSessionLoggerRequest$, () => DeleteSessionLoggerResponse$
|
|
1986
|
+
];
|
|
1987
|
+
var DeleteTrustStore$ = [9, n0, _DTS,
|
|
1988
|
+
{ [_h]: ["DELETE", "/trustStores/{trustStoreArn+}", 200] }, () => DeleteTrustStoreRequest$, () => DeleteTrustStoreResponse$
|
|
1989
|
+
];
|
|
1990
|
+
var DeleteUserAccessLoggingSettings$ = [9, n0, _DUALS,
|
|
1991
|
+
{ [_h]: ["DELETE", "/userAccessLoggingSettings/{userAccessLoggingSettingsArn+}", 200] }, () => DeleteUserAccessLoggingSettingsRequest$, () => DeleteUserAccessLoggingSettingsResponse$
|
|
1992
|
+
];
|
|
1993
|
+
var DeleteUserSettings$ = [9, n0, _DUS,
|
|
1994
|
+
{ [_h]: ["DELETE", "/userSettings/{userSettingsArn+}", 200] }, () => DeleteUserSettingsRequest$, () => DeleteUserSettingsResponse$
|
|
1995
|
+
];
|
|
1996
|
+
var DisassociateBrowserSettings$ = [9, n0, _DBSi,
|
|
1997
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/browserSettings", 200] }, () => DisassociateBrowserSettingsRequest$, () => DisassociateBrowserSettingsResponse$
|
|
1998
|
+
];
|
|
1999
|
+
var DisassociateDataProtectionSettings$ = [9, n0, _DDPSi,
|
|
2000
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/dataProtectionSettings", 200] }, () => DisassociateDataProtectionSettingsRequest$, () => DisassociateDataProtectionSettingsResponse$
|
|
2001
|
+
];
|
|
2002
|
+
var DisassociateIpAccessSettings$ = [9, n0, _DIASi,
|
|
2003
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/ipAccessSettings", 200] }, () => DisassociateIpAccessSettingsRequest$, () => DisassociateIpAccessSettingsResponse$
|
|
2004
|
+
];
|
|
2005
|
+
var DisassociateNetworkSettings$ = [9, n0, _DNSi,
|
|
2006
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/networkSettings", 200] }, () => DisassociateNetworkSettingsRequest$, () => DisassociateNetworkSettingsResponse$
|
|
2007
|
+
];
|
|
2008
|
+
var DisassociateSessionLogger$ = [9, n0, _DSLi,
|
|
2009
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/sessionLogger", 200] }, () => DisassociateSessionLoggerRequest$, () => DisassociateSessionLoggerResponse$
|
|
2010
|
+
];
|
|
2011
|
+
var DisassociateTrustStore$ = [9, n0, _DTSi,
|
|
2012
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/trustStores", 200] }, () => DisassociateTrustStoreRequest$, () => DisassociateTrustStoreResponse$
|
|
2013
|
+
];
|
|
2014
|
+
var DisassociateUserAccessLoggingSettings$ = [9, n0, _DUALSi,
|
|
2015
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/userAccessLoggingSettings", 200] }, () => DisassociateUserAccessLoggingSettingsRequest$, () => DisassociateUserAccessLoggingSettingsResponse$
|
|
2016
|
+
];
|
|
2017
|
+
var DisassociateUserSettings$ = [9, n0, _DUSi,
|
|
2018
|
+
{ [_h]: ["DELETE", "/portals/{portalArn+}/userSettings", 200] }, () => DisassociateUserSettingsRequest$, () => DisassociateUserSettingsResponse$
|
|
2019
|
+
];
|
|
2020
|
+
var ExpireSession$ = [9, n0, _ES,
|
|
2021
|
+
{ [_h]: ["DELETE", "/portals/{portalId}/sessions/{sessionId}", 200] }, () => ExpireSessionRequest$, () => ExpireSessionResponse$
|
|
2022
|
+
];
|
|
2023
|
+
var GetBrowserSettings$ = [9, n0, _GBS,
|
|
2024
|
+
{ [_h]: ["GET", "/browserSettings/{browserSettingsArn+}", 200] }, () => GetBrowserSettingsRequest$, () => GetBrowserSettingsResponse$
|
|
2025
|
+
];
|
|
2026
|
+
var GetDataProtectionSettings$ = [9, n0, _GDPS,
|
|
2027
|
+
{ [_h]: ["GET", "/dataProtectionSettings/{dataProtectionSettingsArn+}", 200] }, () => GetDataProtectionSettingsRequest$, () => GetDataProtectionSettingsResponse$
|
|
2028
|
+
];
|
|
2029
|
+
var GetIdentityProvider$ = [9, n0, _GIP,
|
|
2030
|
+
{ [_h]: ["GET", "/identityProviders/{identityProviderArn+}", 200] }, () => GetIdentityProviderRequest$, () => GetIdentityProviderResponse$
|
|
2031
|
+
];
|
|
2032
|
+
var GetIpAccessSettings$ = [9, n0, _GIAS,
|
|
2033
|
+
{ [_h]: ["GET", "/ipAccessSettings/{ipAccessSettingsArn+}", 200] }, () => GetIpAccessSettingsRequest$, () => GetIpAccessSettingsResponse$
|
|
2034
|
+
];
|
|
2035
|
+
var GetNetworkSettings$ = [9, n0, _GNS,
|
|
2036
|
+
{ [_h]: ["GET", "/networkSettings/{networkSettingsArn+}", 200] }, () => GetNetworkSettingsRequest$, () => GetNetworkSettingsResponse$
|
|
2037
|
+
];
|
|
2038
|
+
var GetPortal$ = [9, n0, _GP,
|
|
2039
|
+
{ [_h]: ["GET", "/portals/{portalArn+}", 200] }, () => GetPortalRequest$, () => GetPortalResponse$
|
|
2040
|
+
];
|
|
2041
|
+
var GetPortalServiceProviderMetadata$ = [9, n0, _GPSPM,
|
|
2042
|
+
{ [_h]: ["GET", "/portalIdp/{portalArn+}", 200] }, () => GetPortalServiceProviderMetadataRequest$, () => GetPortalServiceProviderMetadataResponse$
|
|
2043
|
+
];
|
|
2044
|
+
var GetSession$ = [9, n0, _GS,
|
|
2045
|
+
{ [_h]: ["GET", "/portals/{portalId}/sessions/{sessionId}", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
|
|
2046
|
+
];
|
|
2047
|
+
var GetSessionLogger$ = [9, n0, _GSL,
|
|
2048
|
+
{ [_h]: ["GET", "/sessionLoggers/{sessionLoggerArn+}", 200] }, () => GetSessionLoggerRequest$, () => GetSessionLoggerResponse$
|
|
2049
|
+
];
|
|
2050
|
+
var GetTrustStore$ = [9, n0, _GTS,
|
|
2051
|
+
{ [_h]: ["GET", "/trustStores/{trustStoreArn+}", 200] }, () => GetTrustStoreRequest$, () => GetTrustStoreResponse$
|
|
2052
|
+
];
|
|
2053
|
+
var GetTrustStoreCertificate$ = [9, n0, _GTSC,
|
|
2054
|
+
{ [_h]: ["GET", "/trustStores/{trustStoreArn+}/certificate", 200] }, () => GetTrustStoreCertificateRequest$, () => GetTrustStoreCertificateResponse$
|
|
2055
|
+
];
|
|
2056
|
+
var GetUserAccessLoggingSettings$ = [9, n0, _GUALS,
|
|
2057
|
+
{ [_h]: ["GET", "/userAccessLoggingSettings/{userAccessLoggingSettingsArn+}", 200] }, () => GetUserAccessLoggingSettingsRequest$, () => GetUserAccessLoggingSettingsResponse$
|
|
2058
|
+
];
|
|
2059
|
+
var GetUserSettings$ = [9, n0, _GUS,
|
|
2060
|
+
{ [_h]: ["GET", "/userSettings/{userSettingsArn+}", 200] }, () => GetUserSettingsRequest$, () => GetUserSettingsResponse$
|
|
2061
|
+
];
|
|
2062
|
+
var ListBrowserSettings$ = [9, n0, _LBSi,
|
|
2063
|
+
{ [_h]: ["GET", "/browserSettings", 200] }, () => ListBrowserSettingsRequest$, () => ListBrowserSettingsResponse$
|
|
2064
|
+
];
|
|
2065
|
+
var ListDataProtectionSettings$ = [9, n0, _LDPS,
|
|
2066
|
+
{ [_h]: ["GET", "/dataProtectionSettings", 200] }, () => ListDataProtectionSettingsRequest$, () => ListDataProtectionSettingsResponse$
|
|
2067
|
+
];
|
|
2068
|
+
var ListIdentityProviders$ = [9, n0, _LIP,
|
|
2069
|
+
{ [_h]: ["GET", "/portals/{portalArn+}/identityProviders", 200] }, () => ListIdentityProvidersRequest$, () => ListIdentityProvidersResponse$
|
|
2070
|
+
];
|
|
2071
|
+
var ListIpAccessSettings$ = [9, n0, _LIAS,
|
|
2072
|
+
{ [_h]: ["GET", "/ipAccessSettings", 200] }, () => ListIpAccessSettingsRequest$, () => ListIpAccessSettingsResponse$
|
|
2073
|
+
];
|
|
2074
|
+
var ListNetworkSettings$ = [9, n0, _LNS,
|
|
2075
|
+
{ [_h]: ["GET", "/networkSettings", 200] }, () => ListNetworkSettingsRequest$, () => ListNetworkSettingsResponse$
|
|
2076
|
+
];
|
|
2077
|
+
var ListPortals$ = [9, n0, _LP,
|
|
2078
|
+
{ [_h]: ["GET", "/portals", 200] }, () => ListPortalsRequest$, () => ListPortalsResponse$
|
|
2079
|
+
];
|
|
2080
|
+
var ListSessionLoggers$ = [9, n0, _LSL,
|
|
2081
|
+
{ [_h]: ["GET", "/sessionLoggers", 200] }, () => ListSessionLoggersRequest$, () => ListSessionLoggersResponse$
|
|
2082
|
+
];
|
|
2083
|
+
var ListSessions$ = [9, n0, _LS,
|
|
2084
|
+
{ [_h]: ["GET", "/portals/{portalId}/sessions", 200] }, () => ListSessionsRequest$, () => ListSessionsResponse$
|
|
2085
|
+
];
|
|
2086
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2087
|
+
{ [_h]: ["GET", "/tags/{resourceArn+}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2088
|
+
];
|
|
2089
|
+
var ListTrustStoreCertificates$ = [9, n0, _LTSC,
|
|
2090
|
+
{ [_h]: ["GET", "/trustStores/{trustStoreArn+}/certificates", 200] }, () => ListTrustStoreCertificatesRequest$, () => ListTrustStoreCertificatesResponse$
|
|
2091
|
+
];
|
|
2092
|
+
var ListTrustStores$ = [9, n0, _LTS,
|
|
2093
|
+
{ [_h]: ["GET", "/trustStores", 200] }, () => ListTrustStoresRequest$, () => ListTrustStoresResponse$
|
|
2094
|
+
];
|
|
2095
|
+
var ListUserAccessLoggingSettings$ = [9, n0, _LUALS,
|
|
2096
|
+
{ [_h]: ["GET", "/userAccessLoggingSettings", 200] }, () => ListUserAccessLoggingSettingsRequest$, () => ListUserAccessLoggingSettingsResponse$
|
|
2097
|
+
];
|
|
2098
|
+
var ListUserSettings$ = [9, n0, _LUS,
|
|
2099
|
+
{ [_h]: ["GET", "/userSettings", 200] }, () => ListUserSettingsRequest$, () => ListUserSettingsResponse$
|
|
2100
|
+
];
|
|
2101
|
+
var TagResource$ = [9, n0, _TR,
|
|
2102
|
+
{ [_h]: ["POST", "/tags/{resourceArn+}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2103
|
+
];
|
|
2104
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2105
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn+}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2106
|
+
];
|
|
2107
|
+
var UpdateBrowserSettings$ = [9, n0, _UBS,
|
|
2108
|
+
{ [_h]: ["PATCH", "/browserSettings/{browserSettingsArn+}", 200] }, () => UpdateBrowserSettingsRequest$, () => UpdateBrowserSettingsResponse$
|
|
2109
|
+
];
|
|
2110
|
+
var UpdateDataProtectionSettings$ = [9, n0, _UDPS,
|
|
2111
|
+
{ [_h]: ["PATCH", "/dataProtectionSettings/{dataProtectionSettingsArn+}", 200] }, () => UpdateDataProtectionSettingsRequest$, () => UpdateDataProtectionSettingsResponse$
|
|
2112
|
+
];
|
|
2113
|
+
var UpdateIdentityProvider$ = [9, n0, _UIP,
|
|
2114
|
+
{ [_h]: ["PATCH", "/identityProviders/{identityProviderArn+}", 200] }, () => UpdateIdentityProviderRequest$, () => UpdateIdentityProviderResponse$
|
|
2115
|
+
];
|
|
2116
|
+
var UpdateIpAccessSettings$ = [9, n0, _UIAS,
|
|
2117
|
+
{ [_h]: ["PATCH", "/ipAccessSettings/{ipAccessSettingsArn+}", 200] }, () => UpdateIpAccessSettingsRequest$, () => UpdateIpAccessSettingsResponse$
|
|
2118
|
+
];
|
|
2119
|
+
var UpdateNetworkSettings$ = [9, n0, _UNS,
|
|
2120
|
+
{ [_h]: ["PATCH", "/networkSettings/{networkSettingsArn+}", 200] }, () => UpdateNetworkSettingsRequest$, () => UpdateNetworkSettingsResponse$
|
|
2121
|
+
];
|
|
2122
|
+
var UpdatePortal$ = [9, n0, _UPp,
|
|
2123
|
+
{ [_h]: ["PUT", "/portals/{portalArn+}", 200] }, () => UpdatePortalRequest$, () => UpdatePortalResponse$
|
|
2124
|
+
];
|
|
2125
|
+
var UpdateSessionLogger$ = [9, n0, _USLp,
|
|
2126
|
+
{ [_h]: ["POST", "/sessionLoggers/{sessionLoggerArn+}", 200] }, () => UpdateSessionLoggerRequest$, () => UpdateSessionLoggerResponse$
|
|
2127
|
+
];
|
|
2128
|
+
var UpdateTrustStore$ = [9, n0, _UTS,
|
|
2129
|
+
{ [_h]: ["PATCH", "/trustStores/{trustStoreArn+}", 200] }, () => UpdateTrustStoreRequest$, () => UpdateTrustStoreResponse$
|
|
2130
|
+
];
|
|
2131
|
+
var UpdateUserAccessLoggingSettings$ = [9, n0, _UUALS,
|
|
2132
|
+
{ [_h]: ["PATCH", "/userAccessLoggingSettings/{userAccessLoggingSettingsArn+}", 200] }, () => UpdateUserAccessLoggingSettingsRequest$, () => UpdateUserAccessLoggingSettingsResponse$
|
|
2133
|
+
];
|
|
2134
|
+
var UpdateUserSettings$ = [9, n0, _UUS,
|
|
2135
|
+
{ [_h]: ["PATCH", "/userSettings/{userSettingsArn+}", 200] }, () => UpdateUserSettingsRequest$, () => UpdateUserSettingsResponse$
|
|
2136
|
+
];
|
|
2137
|
+
|
|
2138
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2139
|
+
return {
|
|
2140
|
+
apiVersion: "2020-07-08",
|
|
2141
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2142
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2143
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2144
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2145
|
+
extensions: config?.extensions ?? [],
|
|
2146
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultWorkSpacesWebHttpAuthSchemeProvider,
|
|
2147
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2148
|
+
{
|
|
2149
|
+
schemeId: "aws.auth#sigv4",
|
|
2150
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2151
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2152
|
+
},
|
|
2153
|
+
],
|
|
2154
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2155
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2156
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2157
|
+
defaultNamespace: "com.amazonaws.workspacesweb",
|
|
2158
|
+
errorTypeRegistries,
|
|
2159
|
+
version: "2020-07-08",
|
|
2160
|
+
serviceTarget: "AWSErmineControlPlaneService",
|
|
2161
|
+
},
|
|
2162
|
+
serviceId: config?.serviceId ?? "WorkSpaces Web",
|
|
2163
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2164
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2165
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2166
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2167
|
+
};
|
|
2168
|
+
};
|
|
2169
|
+
|
|
2170
|
+
const getRuntimeConfig = (config) => {
|
|
2171
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2172
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2173
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2174
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2175
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2176
|
+
const loaderConfig = {
|
|
2177
|
+
profile: config?.profile,
|
|
2178
|
+
logger: clientSharedValues.logger,
|
|
2179
|
+
};
|
|
2180
|
+
return {
|
|
2181
|
+
...clientSharedValues,
|
|
2182
|
+
...config,
|
|
2183
|
+
runtime: "node",
|
|
2184
|
+
defaultsMode,
|
|
2185
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2186
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2187
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2188
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2189
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2190
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2191
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2192
|
+
retryMode: config?.retryMode ??
|
|
2193
|
+
loadConfig({
|
|
2194
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2195
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2196
|
+
}, config),
|
|
2197
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2198
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2199
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2200
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2201
|
+
};
|
|
2202
|
+
};
|
|
2203
|
+
|
|
34
2204
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2205
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2206
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1283,105 +3453,394 @@ const VisualMode = {
|
|
|
1283
3453
|
LIGHT: "Light",
|
|
1284
3454
|
};
|
|
1285
3455
|
|
|
3456
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3457
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3458
|
+
exports.AssociateBrowserSettings$ = AssociateBrowserSettings$;
|
|
1286
3459
|
exports.AssociateBrowserSettingsCommand = AssociateBrowserSettingsCommand;
|
|
3460
|
+
exports.AssociateBrowserSettingsRequest$ = AssociateBrowserSettingsRequest$;
|
|
3461
|
+
exports.AssociateBrowserSettingsResponse$ = AssociateBrowserSettingsResponse$;
|
|
3462
|
+
exports.AssociateDataProtectionSettings$ = AssociateDataProtectionSettings$;
|
|
1287
3463
|
exports.AssociateDataProtectionSettingsCommand = AssociateDataProtectionSettingsCommand;
|
|
3464
|
+
exports.AssociateDataProtectionSettingsRequest$ = AssociateDataProtectionSettingsRequest$;
|
|
3465
|
+
exports.AssociateDataProtectionSettingsResponse$ = AssociateDataProtectionSettingsResponse$;
|
|
3466
|
+
exports.AssociateIpAccessSettings$ = AssociateIpAccessSettings$;
|
|
1288
3467
|
exports.AssociateIpAccessSettingsCommand = AssociateIpAccessSettingsCommand;
|
|
3468
|
+
exports.AssociateIpAccessSettingsRequest$ = AssociateIpAccessSettingsRequest$;
|
|
3469
|
+
exports.AssociateIpAccessSettingsResponse$ = AssociateIpAccessSettingsResponse$;
|
|
3470
|
+
exports.AssociateNetworkSettings$ = AssociateNetworkSettings$;
|
|
1289
3471
|
exports.AssociateNetworkSettingsCommand = AssociateNetworkSettingsCommand;
|
|
3472
|
+
exports.AssociateNetworkSettingsRequest$ = AssociateNetworkSettingsRequest$;
|
|
3473
|
+
exports.AssociateNetworkSettingsResponse$ = AssociateNetworkSettingsResponse$;
|
|
3474
|
+
exports.AssociateSessionLogger$ = AssociateSessionLogger$;
|
|
1290
3475
|
exports.AssociateSessionLoggerCommand = AssociateSessionLoggerCommand;
|
|
3476
|
+
exports.AssociateSessionLoggerRequest$ = AssociateSessionLoggerRequest$;
|
|
3477
|
+
exports.AssociateSessionLoggerResponse$ = AssociateSessionLoggerResponse$;
|
|
3478
|
+
exports.AssociateTrustStore$ = AssociateTrustStore$;
|
|
1291
3479
|
exports.AssociateTrustStoreCommand = AssociateTrustStoreCommand;
|
|
3480
|
+
exports.AssociateTrustStoreRequest$ = AssociateTrustStoreRequest$;
|
|
3481
|
+
exports.AssociateTrustStoreResponse$ = AssociateTrustStoreResponse$;
|
|
3482
|
+
exports.AssociateUserAccessLoggingSettings$ = AssociateUserAccessLoggingSettings$;
|
|
1292
3483
|
exports.AssociateUserAccessLoggingSettingsCommand = AssociateUserAccessLoggingSettingsCommand;
|
|
3484
|
+
exports.AssociateUserAccessLoggingSettingsRequest$ = AssociateUserAccessLoggingSettingsRequest$;
|
|
3485
|
+
exports.AssociateUserAccessLoggingSettingsResponse$ = AssociateUserAccessLoggingSettingsResponse$;
|
|
3486
|
+
exports.AssociateUserSettings$ = AssociateUserSettings$;
|
|
1293
3487
|
exports.AssociateUserSettingsCommand = AssociateUserSettingsCommand;
|
|
3488
|
+
exports.AssociateUserSettingsRequest$ = AssociateUserSettingsRequest$;
|
|
3489
|
+
exports.AssociateUserSettingsResponse$ = AssociateUserSettingsResponse$;
|
|
1294
3490
|
exports.AuthenticationType = AuthenticationType;
|
|
3491
|
+
exports.BrandingConfiguration$ = BrandingConfiguration$;
|
|
3492
|
+
exports.BrandingConfigurationCreateInput$ = BrandingConfigurationCreateInput$;
|
|
3493
|
+
exports.BrandingConfigurationUpdateInput$ = BrandingConfigurationUpdateInput$;
|
|
3494
|
+
exports.BrowserSettings$ = BrowserSettings$;
|
|
3495
|
+
exports.BrowserSettingsSummary$ = BrowserSettingsSummary$;
|
|
1295
3496
|
exports.BrowserType = BrowserType;
|
|
1296
3497
|
exports.Category = Category;
|
|
3498
|
+
exports.Certificate$ = Certificate$;
|
|
3499
|
+
exports.CertificateSummary$ = CertificateSummary$;
|
|
1297
3500
|
exports.ColorTheme = ColorTheme;
|
|
3501
|
+
exports.ConflictException = ConflictException;
|
|
3502
|
+
exports.ConflictException$ = ConflictException$;
|
|
3503
|
+
exports.CookieSpecification$ = CookieSpecification$;
|
|
3504
|
+
exports.CookieSynchronizationConfiguration$ = CookieSynchronizationConfiguration$;
|
|
3505
|
+
exports.CreateBrowserSettings$ = CreateBrowserSettings$;
|
|
1298
3506
|
exports.CreateBrowserSettingsCommand = CreateBrowserSettingsCommand;
|
|
3507
|
+
exports.CreateBrowserSettingsRequest$ = CreateBrowserSettingsRequest$;
|
|
3508
|
+
exports.CreateBrowserSettingsResponse$ = CreateBrowserSettingsResponse$;
|
|
3509
|
+
exports.CreateDataProtectionSettings$ = CreateDataProtectionSettings$;
|
|
1299
3510
|
exports.CreateDataProtectionSettingsCommand = CreateDataProtectionSettingsCommand;
|
|
3511
|
+
exports.CreateDataProtectionSettingsRequest$ = CreateDataProtectionSettingsRequest$;
|
|
3512
|
+
exports.CreateDataProtectionSettingsResponse$ = CreateDataProtectionSettingsResponse$;
|
|
3513
|
+
exports.CreateIdentityProvider$ = CreateIdentityProvider$;
|
|
1300
3514
|
exports.CreateIdentityProviderCommand = CreateIdentityProviderCommand;
|
|
3515
|
+
exports.CreateIdentityProviderRequest$ = CreateIdentityProviderRequest$;
|
|
3516
|
+
exports.CreateIdentityProviderResponse$ = CreateIdentityProviderResponse$;
|
|
3517
|
+
exports.CreateIpAccessSettings$ = CreateIpAccessSettings$;
|
|
1301
3518
|
exports.CreateIpAccessSettingsCommand = CreateIpAccessSettingsCommand;
|
|
3519
|
+
exports.CreateIpAccessSettingsRequest$ = CreateIpAccessSettingsRequest$;
|
|
3520
|
+
exports.CreateIpAccessSettingsResponse$ = CreateIpAccessSettingsResponse$;
|
|
3521
|
+
exports.CreateNetworkSettings$ = CreateNetworkSettings$;
|
|
1302
3522
|
exports.CreateNetworkSettingsCommand = CreateNetworkSettingsCommand;
|
|
3523
|
+
exports.CreateNetworkSettingsRequest$ = CreateNetworkSettingsRequest$;
|
|
3524
|
+
exports.CreateNetworkSettingsResponse$ = CreateNetworkSettingsResponse$;
|
|
3525
|
+
exports.CreatePortal$ = CreatePortal$;
|
|
1303
3526
|
exports.CreatePortalCommand = CreatePortalCommand;
|
|
3527
|
+
exports.CreatePortalRequest$ = CreatePortalRequest$;
|
|
3528
|
+
exports.CreatePortalResponse$ = CreatePortalResponse$;
|
|
3529
|
+
exports.CreateSessionLogger$ = CreateSessionLogger$;
|
|
1304
3530
|
exports.CreateSessionLoggerCommand = CreateSessionLoggerCommand;
|
|
3531
|
+
exports.CreateSessionLoggerRequest$ = CreateSessionLoggerRequest$;
|
|
3532
|
+
exports.CreateSessionLoggerResponse$ = CreateSessionLoggerResponse$;
|
|
3533
|
+
exports.CreateTrustStore$ = CreateTrustStore$;
|
|
1305
3534
|
exports.CreateTrustStoreCommand = CreateTrustStoreCommand;
|
|
3535
|
+
exports.CreateTrustStoreRequest$ = CreateTrustStoreRequest$;
|
|
3536
|
+
exports.CreateTrustStoreResponse$ = CreateTrustStoreResponse$;
|
|
3537
|
+
exports.CreateUserAccessLoggingSettings$ = CreateUserAccessLoggingSettings$;
|
|
1306
3538
|
exports.CreateUserAccessLoggingSettingsCommand = CreateUserAccessLoggingSettingsCommand;
|
|
3539
|
+
exports.CreateUserAccessLoggingSettingsRequest$ = CreateUserAccessLoggingSettingsRequest$;
|
|
3540
|
+
exports.CreateUserAccessLoggingSettingsResponse$ = CreateUserAccessLoggingSettingsResponse$;
|
|
3541
|
+
exports.CreateUserSettings$ = CreateUserSettings$;
|
|
1307
3542
|
exports.CreateUserSettingsCommand = CreateUserSettingsCommand;
|
|
3543
|
+
exports.CreateUserSettingsRequest$ = CreateUserSettingsRequest$;
|
|
3544
|
+
exports.CreateUserSettingsResponse$ = CreateUserSettingsResponse$;
|
|
3545
|
+
exports.CustomPattern$ = CustomPattern$;
|
|
3546
|
+
exports.DataProtectionSettings$ = DataProtectionSettings$;
|
|
3547
|
+
exports.DataProtectionSettingsSummary$ = DataProtectionSettingsSummary$;
|
|
3548
|
+
exports.DeleteBrowserSettings$ = DeleteBrowserSettings$;
|
|
1308
3549
|
exports.DeleteBrowserSettingsCommand = DeleteBrowserSettingsCommand;
|
|
3550
|
+
exports.DeleteBrowserSettingsRequest$ = DeleteBrowserSettingsRequest$;
|
|
3551
|
+
exports.DeleteBrowserSettingsResponse$ = DeleteBrowserSettingsResponse$;
|
|
3552
|
+
exports.DeleteDataProtectionSettings$ = DeleteDataProtectionSettings$;
|
|
1309
3553
|
exports.DeleteDataProtectionSettingsCommand = DeleteDataProtectionSettingsCommand;
|
|
3554
|
+
exports.DeleteDataProtectionSettingsRequest$ = DeleteDataProtectionSettingsRequest$;
|
|
3555
|
+
exports.DeleteDataProtectionSettingsResponse$ = DeleteDataProtectionSettingsResponse$;
|
|
3556
|
+
exports.DeleteIdentityProvider$ = DeleteIdentityProvider$;
|
|
1310
3557
|
exports.DeleteIdentityProviderCommand = DeleteIdentityProviderCommand;
|
|
3558
|
+
exports.DeleteIdentityProviderRequest$ = DeleteIdentityProviderRequest$;
|
|
3559
|
+
exports.DeleteIdentityProviderResponse$ = DeleteIdentityProviderResponse$;
|
|
3560
|
+
exports.DeleteIpAccessSettings$ = DeleteIpAccessSettings$;
|
|
1311
3561
|
exports.DeleteIpAccessSettingsCommand = DeleteIpAccessSettingsCommand;
|
|
3562
|
+
exports.DeleteIpAccessSettingsRequest$ = DeleteIpAccessSettingsRequest$;
|
|
3563
|
+
exports.DeleteIpAccessSettingsResponse$ = DeleteIpAccessSettingsResponse$;
|
|
3564
|
+
exports.DeleteNetworkSettings$ = DeleteNetworkSettings$;
|
|
1312
3565
|
exports.DeleteNetworkSettingsCommand = DeleteNetworkSettingsCommand;
|
|
3566
|
+
exports.DeleteNetworkSettingsRequest$ = DeleteNetworkSettingsRequest$;
|
|
3567
|
+
exports.DeleteNetworkSettingsResponse$ = DeleteNetworkSettingsResponse$;
|
|
3568
|
+
exports.DeletePortal$ = DeletePortal$;
|
|
1313
3569
|
exports.DeletePortalCommand = DeletePortalCommand;
|
|
3570
|
+
exports.DeletePortalRequest$ = DeletePortalRequest$;
|
|
3571
|
+
exports.DeletePortalResponse$ = DeletePortalResponse$;
|
|
3572
|
+
exports.DeleteSessionLogger$ = DeleteSessionLogger$;
|
|
1314
3573
|
exports.DeleteSessionLoggerCommand = DeleteSessionLoggerCommand;
|
|
3574
|
+
exports.DeleteSessionLoggerRequest$ = DeleteSessionLoggerRequest$;
|
|
3575
|
+
exports.DeleteSessionLoggerResponse$ = DeleteSessionLoggerResponse$;
|
|
3576
|
+
exports.DeleteTrustStore$ = DeleteTrustStore$;
|
|
1315
3577
|
exports.DeleteTrustStoreCommand = DeleteTrustStoreCommand;
|
|
3578
|
+
exports.DeleteTrustStoreRequest$ = DeleteTrustStoreRequest$;
|
|
3579
|
+
exports.DeleteTrustStoreResponse$ = DeleteTrustStoreResponse$;
|
|
3580
|
+
exports.DeleteUserAccessLoggingSettings$ = DeleteUserAccessLoggingSettings$;
|
|
1316
3581
|
exports.DeleteUserAccessLoggingSettingsCommand = DeleteUserAccessLoggingSettingsCommand;
|
|
3582
|
+
exports.DeleteUserAccessLoggingSettingsRequest$ = DeleteUserAccessLoggingSettingsRequest$;
|
|
3583
|
+
exports.DeleteUserAccessLoggingSettingsResponse$ = DeleteUserAccessLoggingSettingsResponse$;
|
|
3584
|
+
exports.DeleteUserSettings$ = DeleteUserSettings$;
|
|
1317
3585
|
exports.DeleteUserSettingsCommand = DeleteUserSettingsCommand;
|
|
3586
|
+
exports.DeleteUserSettingsRequest$ = DeleteUserSettingsRequest$;
|
|
3587
|
+
exports.DeleteUserSettingsResponse$ = DeleteUserSettingsResponse$;
|
|
3588
|
+
exports.DisassociateBrowserSettings$ = DisassociateBrowserSettings$;
|
|
1318
3589
|
exports.DisassociateBrowserSettingsCommand = DisassociateBrowserSettingsCommand;
|
|
3590
|
+
exports.DisassociateBrowserSettingsRequest$ = DisassociateBrowserSettingsRequest$;
|
|
3591
|
+
exports.DisassociateBrowserSettingsResponse$ = DisassociateBrowserSettingsResponse$;
|
|
3592
|
+
exports.DisassociateDataProtectionSettings$ = DisassociateDataProtectionSettings$;
|
|
1319
3593
|
exports.DisassociateDataProtectionSettingsCommand = DisassociateDataProtectionSettingsCommand;
|
|
3594
|
+
exports.DisassociateDataProtectionSettingsRequest$ = DisassociateDataProtectionSettingsRequest$;
|
|
3595
|
+
exports.DisassociateDataProtectionSettingsResponse$ = DisassociateDataProtectionSettingsResponse$;
|
|
3596
|
+
exports.DisassociateIpAccessSettings$ = DisassociateIpAccessSettings$;
|
|
1320
3597
|
exports.DisassociateIpAccessSettingsCommand = DisassociateIpAccessSettingsCommand;
|
|
3598
|
+
exports.DisassociateIpAccessSettingsRequest$ = DisassociateIpAccessSettingsRequest$;
|
|
3599
|
+
exports.DisassociateIpAccessSettingsResponse$ = DisassociateIpAccessSettingsResponse$;
|
|
3600
|
+
exports.DisassociateNetworkSettings$ = DisassociateNetworkSettings$;
|
|
1321
3601
|
exports.DisassociateNetworkSettingsCommand = DisassociateNetworkSettingsCommand;
|
|
3602
|
+
exports.DisassociateNetworkSettingsRequest$ = DisassociateNetworkSettingsRequest$;
|
|
3603
|
+
exports.DisassociateNetworkSettingsResponse$ = DisassociateNetworkSettingsResponse$;
|
|
3604
|
+
exports.DisassociateSessionLogger$ = DisassociateSessionLogger$;
|
|
1322
3605
|
exports.DisassociateSessionLoggerCommand = DisassociateSessionLoggerCommand;
|
|
3606
|
+
exports.DisassociateSessionLoggerRequest$ = DisassociateSessionLoggerRequest$;
|
|
3607
|
+
exports.DisassociateSessionLoggerResponse$ = DisassociateSessionLoggerResponse$;
|
|
3608
|
+
exports.DisassociateTrustStore$ = DisassociateTrustStore$;
|
|
1323
3609
|
exports.DisassociateTrustStoreCommand = DisassociateTrustStoreCommand;
|
|
3610
|
+
exports.DisassociateTrustStoreRequest$ = DisassociateTrustStoreRequest$;
|
|
3611
|
+
exports.DisassociateTrustStoreResponse$ = DisassociateTrustStoreResponse$;
|
|
3612
|
+
exports.DisassociateUserAccessLoggingSettings$ = DisassociateUserAccessLoggingSettings$;
|
|
1324
3613
|
exports.DisassociateUserAccessLoggingSettingsCommand = DisassociateUserAccessLoggingSettingsCommand;
|
|
3614
|
+
exports.DisassociateUserAccessLoggingSettingsRequest$ = DisassociateUserAccessLoggingSettingsRequest$;
|
|
3615
|
+
exports.DisassociateUserAccessLoggingSettingsResponse$ = DisassociateUserAccessLoggingSettingsResponse$;
|
|
3616
|
+
exports.DisassociateUserSettings$ = DisassociateUserSettings$;
|
|
1325
3617
|
exports.DisassociateUserSettingsCommand = DisassociateUserSettingsCommand;
|
|
3618
|
+
exports.DisassociateUserSettingsRequest$ = DisassociateUserSettingsRequest$;
|
|
3619
|
+
exports.DisassociateUserSettingsResponse$ = DisassociateUserSettingsResponse$;
|
|
1326
3620
|
exports.EnabledType = EnabledType;
|
|
1327
3621
|
exports.Event = Event;
|
|
3622
|
+
exports.EventFilter$ = EventFilter$;
|
|
3623
|
+
exports.ExpireSession$ = ExpireSession$;
|
|
1328
3624
|
exports.ExpireSessionCommand = ExpireSessionCommand;
|
|
3625
|
+
exports.ExpireSessionRequest$ = ExpireSessionRequest$;
|
|
3626
|
+
exports.ExpireSessionResponse$ = ExpireSessionResponse$;
|
|
1329
3627
|
exports.FolderStructure = FolderStructure;
|
|
3628
|
+
exports.GetBrowserSettings$ = GetBrowserSettings$;
|
|
1330
3629
|
exports.GetBrowserSettingsCommand = GetBrowserSettingsCommand;
|
|
3630
|
+
exports.GetBrowserSettingsRequest$ = GetBrowserSettingsRequest$;
|
|
3631
|
+
exports.GetBrowserSettingsResponse$ = GetBrowserSettingsResponse$;
|
|
3632
|
+
exports.GetDataProtectionSettings$ = GetDataProtectionSettings$;
|
|
1331
3633
|
exports.GetDataProtectionSettingsCommand = GetDataProtectionSettingsCommand;
|
|
3634
|
+
exports.GetDataProtectionSettingsRequest$ = GetDataProtectionSettingsRequest$;
|
|
3635
|
+
exports.GetDataProtectionSettingsResponse$ = GetDataProtectionSettingsResponse$;
|
|
3636
|
+
exports.GetIdentityProvider$ = GetIdentityProvider$;
|
|
1332
3637
|
exports.GetIdentityProviderCommand = GetIdentityProviderCommand;
|
|
3638
|
+
exports.GetIdentityProviderRequest$ = GetIdentityProviderRequest$;
|
|
3639
|
+
exports.GetIdentityProviderResponse$ = GetIdentityProviderResponse$;
|
|
3640
|
+
exports.GetIpAccessSettings$ = GetIpAccessSettings$;
|
|
1333
3641
|
exports.GetIpAccessSettingsCommand = GetIpAccessSettingsCommand;
|
|
3642
|
+
exports.GetIpAccessSettingsRequest$ = GetIpAccessSettingsRequest$;
|
|
3643
|
+
exports.GetIpAccessSettingsResponse$ = GetIpAccessSettingsResponse$;
|
|
3644
|
+
exports.GetNetworkSettings$ = GetNetworkSettings$;
|
|
1334
3645
|
exports.GetNetworkSettingsCommand = GetNetworkSettingsCommand;
|
|
3646
|
+
exports.GetNetworkSettingsRequest$ = GetNetworkSettingsRequest$;
|
|
3647
|
+
exports.GetNetworkSettingsResponse$ = GetNetworkSettingsResponse$;
|
|
3648
|
+
exports.GetPortal$ = GetPortal$;
|
|
1335
3649
|
exports.GetPortalCommand = GetPortalCommand;
|
|
3650
|
+
exports.GetPortalRequest$ = GetPortalRequest$;
|
|
3651
|
+
exports.GetPortalResponse$ = GetPortalResponse$;
|
|
3652
|
+
exports.GetPortalServiceProviderMetadata$ = GetPortalServiceProviderMetadata$;
|
|
1336
3653
|
exports.GetPortalServiceProviderMetadataCommand = GetPortalServiceProviderMetadataCommand;
|
|
3654
|
+
exports.GetPortalServiceProviderMetadataRequest$ = GetPortalServiceProviderMetadataRequest$;
|
|
3655
|
+
exports.GetPortalServiceProviderMetadataResponse$ = GetPortalServiceProviderMetadataResponse$;
|
|
3656
|
+
exports.GetSession$ = GetSession$;
|
|
1337
3657
|
exports.GetSessionCommand = GetSessionCommand;
|
|
3658
|
+
exports.GetSessionLogger$ = GetSessionLogger$;
|
|
1338
3659
|
exports.GetSessionLoggerCommand = GetSessionLoggerCommand;
|
|
3660
|
+
exports.GetSessionLoggerRequest$ = GetSessionLoggerRequest$;
|
|
3661
|
+
exports.GetSessionLoggerResponse$ = GetSessionLoggerResponse$;
|
|
3662
|
+
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
3663
|
+
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
3664
|
+
exports.GetTrustStore$ = GetTrustStore$;
|
|
3665
|
+
exports.GetTrustStoreCertificate$ = GetTrustStoreCertificate$;
|
|
1339
3666
|
exports.GetTrustStoreCertificateCommand = GetTrustStoreCertificateCommand;
|
|
3667
|
+
exports.GetTrustStoreCertificateRequest$ = GetTrustStoreCertificateRequest$;
|
|
3668
|
+
exports.GetTrustStoreCertificateResponse$ = GetTrustStoreCertificateResponse$;
|
|
1340
3669
|
exports.GetTrustStoreCommand = GetTrustStoreCommand;
|
|
3670
|
+
exports.GetTrustStoreRequest$ = GetTrustStoreRequest$;
|
|
3671
|
+
exports.GetTrustStoreResponse$ = GetTrustStoreResponse$;
|
|
3672
|
+
exports.GetUserAccessLoggingSettings$ = GetUserAccessLoggingSettings$;
|
|
1341
3673
|
exports.GetUserAccessLoggingSettingsCommand = GetUserAccessLoggingSettingsCommand;
|
|
3674
|
+
exports.GetUserAccessLoggingSettingsRequest$ = GetUserAccessLoggingSettingsRequest$;
|
|
3675
|
+
exports.GetUserAccessLoggingSettingsResponse$ = GetUserAccessLoggingSettingsResponse$;
|
|
3676
|
+
exports.GetUserSettings$ = GetUserSettings$;
|
|
1342
3677
|
exports.GetUserSettingsCommand = GetUserSettingsCommand;
|
|
3678
|
+
exports.GetUserSettingsRequest$ = GetUserSettingsRequest$;
|
|
3679
|
+
exports.GetUserSettingsResponse$ = GetUserSettingsResponse$;
|
|
3680
|
+
exports.IconImageInput$ = IconImageInput$;
|
|
3681
|
+
exports.IdentityProvider$ = IdentityProvider$;
|
|
3682
|
+
exports.IdentityProviderSummary$ = IdentityProviderSummary$;
|
|
1343
3683
|
exports.IdentityProviderType = IdentityProviderType;
|
|
3684
|
+
exports.ImageMetadata$ = ImageMetadata$;
|
|
3685
|
+
exports.InlineRedactionConfiguration$ = InlineRedactionConfiguration$;
|
|
3686
|
+
exports.InlineRedactionPattern$ = InlineRedactionPattern$;
|
|
3687
|
+
exports.InternalServerException = InternalServerException;
|
|
3688
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
3689
|
+
exports.IpAccessSettings$ = IpAccessSettings$;
|
|
3690
|
+
exports.IpAccessSettingsSummary$ = IpAccessSettingsSummary$;
|
|
3691
|
+
exports.IpRule$ = IpRule$;
|
|
3692
|
+
exports.ListBrowserSettings$ = ListBrowserSettings$;
|
|
1344
3693
|
exports.ListBrowserSettingsCommand = ListBrowserSettingsCommand;
|
|
3694
|
+
exports.ListBrowserSettingsRequest$ = ListBrowserSettingsRequest$;
|
|
3695
|
+
exports.ListBrowserSettingsResponse$ = ListBrowserSettingsResponse$;
|
|
3696
|
+
exports.ListDataProtectionSettings$ = ListDataProtectionSettings$;
|
|
1345
3697
|
exports.ListDataProtectionSettingsCommand = ListDataProtectionSettingsCommand;
|
|
3698
|
+
exports.ListDataProtectionSettingsRequest$ = ListDataProtectionSettingsRequest$;
|
|
3699
|
+
exports.ListDataProtectionSettingsResponse$ = ListDataProtectionSettingsResponse$;
|
|
3700
|
+
exports.ListIdentityProviders$ = ListIdentityProviders$;
|
|
1346
3701
|
exports.ListIdentityProvidersCommand = ListIdentityProvidersCommand;
|
|
3702
|
+
exports.ListIdentityProvidersRequest$ = ListIdentityProvidersRequest$;
|
|
3703
|
+
exports.ListIdentityProvidersResponse$ = ListIdentityProvidersResponse$;
|
|
3704
|
+
exports.ListIpAccessSettings$ = ListIpAccessSettings$;
|
|
1347
3705
|
exports.ListIpAccessSettingsCommand = ListIpAccessSettingsCommand;
|
|
3706
|
+
exports.ListIpAccessSettingsRequest$ = ListIpAccessSettingsRequest$;
|
|
3707
|
+
exports.ListIpAccessSettingsResponse$ = ListIpAccessSettingsResponse$;
|
|
3708
|
+
exports.ListNetworkSettings$ = ListNetworkSettings$;
|
|
1348
3709
|
exports.ListNetworkSettingsCommand = ListNetworkSettingsCommand;
|
|
3710
|
+
exports.ListNetworkSettingsRequest$ = ListNetworkSettingsRequest$;
|
|
3711
|
+
exports.ListNetworkSettingsResponse$ = ListNetworkSettingsResponse$;
|
|
3712
|
+
exports.ListPortals$ = ListPortals$;
|
|
1349
3713
|
exports.ListPortalsCommand = ListPortalsCommand;
|
|
3714
|
+
exports.ListPortalsRequest$ = ListPortalsRequest$;
|
|
3715
|
+
exports.ListPortalsResponse$ = ListPortalsResponse$;
|
|
3716
|
+
exports.ListSessionLoggers$ = ListSessionLoggers$;
|
|
1350
3717
|
exports.ListSessionLoggersCommand = ListSessionLoggersCommand;
|
|
3718
|
+
exports.ListSessionLoggersRequest$ = ListSessionLoggersRequest$;
|
|
3719
|
+
exports.ListSessionLoggersResponse$ = ListSessionLoggersResponse$;
|
|
3720
|
+
exports.ListSessions$ = ListSessions$;
|
|
1351
3721
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
3722
|
+
exports.ListSessionsRequest$ = ListSessionsRequest$;
|
|
3723
|
+
exports.ListSessionsResponse$ = ListSessionsResponse$;
|
|
3724
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1352
3725
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3726
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3727
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3728
|
+
exports.ListTrustStoreCertificates$ = ListTrustStoreCertificates$;
|
|
1353
3729
|
exports.ListTrustStoreCertificatesCommand = ListTrustStoreCertificatesCommand;
|
|
3730
|
+
exports.ListTrustStoreCertificatesRequest$ = ListTrustStoreCertificatesRequest$;
|
|
3731
|
+
exports.ListTrustStoreCertificatesResponse$ = ListTrustStoreCertificatesResponse$;
|
|
3732
|
+
exports.ListTrustStores$ = ListTrustStores$;
|
|
1354
3733
|
exports.ListTrustStoresCommand = ListTrustStoresCommand;
|
|
3734
|
+
exports.ListTrustStoresRequest$ = ListTrustStoresRequest$;
|
|
3735
|
+
exports.ListTrustStoresResponse$ = ListTrustStoresResponse$;
|
|
3736
|
+
exports.ListUserAccessLoggingSettings$ = ListUserAccessLoggingSettings$;
|
|
1355
3737
|
exports.ListUserAccessLoggingSettingsCommand = ListUserAccessLoggingSettingsCommand;
|
|
3738
|
+
exports.ListUserAccessLoggingSettingsRequest$ = ListUserAccessLoggingSettingsRequest$;
|
|
3739
|
+
exports.ListUserAccessLoggingSettingsResponse$ = ListUserAccessLoggingSettingsResponse$;
|
|
3740
|
+
exports.ListUserSettings$ = ListUserSettings$;
|
|
1356
3741
|
exports.ListUserSettingsCommand = ListUserSettingsCommand;
|
|
3742
|
+
exports.ListUserSettingsRequest$ = ListUserSettingsRequest$;
|
|
3743
|
+
exports.ListUserSettingsResponse$ = ListUserSettingsResponse$;
|
|
1357
3744
|
exports.Locale = Locale;
|
|
3745
|
+
exports.LocalizedBrandingStrings$ = LocalizedBrandingStrings$;
|
|
3746
|
+
exports.LogConfiguration$ = LogConfiguration$;
|
|
1358
3747
|
exports.LogFileFormat = LogFileFormat;
|
|
1359
3748
|
exports.MaxDisplayResolution = MaxDisplayResolution;
|
|
1360
3749
|
exports.MimeType = MimeType;
|
|
3750
|
+
exports.NetworkSettings$ = NetworkSettings$;
|
|
3751
|
+
exports.NetworkSettingsSummary$ = NetworkSettingsSummary$;
|
|
3752
|
+
exports.Portal$ = Portal$;
|
|
1361
3753
|
exports.PortalStatus = PortalStatus;
|
|
3754
|
+
exports.PortalSummary$ = PortalSummary$;
|
|
3755
|
+
exports.RedactionPlaceHolder$ = RedactionPlaceHolder$;
|
|
1362
3756
|
exports.RedactionPlaceHolderType = RedactionPlaceHolderType;
|
|
1363
3757
|
exports.RendererType = RendererType;
|
|
3758
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3759
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3760
|
+
exports.S3LogConfiguration$ = S3LogConfiguration$;
|
|
3761
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3762
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3763
|
+
exports.Session$ = Session$;
|
|
3764
|
+
exports.SessionLogger$ = SessionLogger$;
|
|
3765
|
+
exports.SessionLoggerSummary$ = SessionLoggerSummary$;
|
|
1364
3766
|
exports.SessionSortBy = SessionSortBy;
|
|
1365
3767
|
exports.SessionStatus = SessionStatus;
|
|
3768
|
+
exports.SessionSummary$ = SessionSummary$;
|
|
3769
|
+
exports.Tag$ = Tag$;
|
|
3770
|
+
exports.TagResource$ = TagResource$;
|
|
1366
3771
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3772
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3773
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3774
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3775
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3776
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
3777
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3778
|
+
exports.ToolbarConfiguration$ = ToolbarConfiguration$;
|
|
1367
3779
|
exports.ToolbarItem = ToolbarItem;
|
|
1368
3780
|
exports.ToolbarType = ToolbarType;
|
|
3781
|
+
exports.TrustStore$ = TrustStore$;
|
|
3782
|
+
exports.TrustStoreSummary$ = TrustStoreSummary$;
|
|
3783
|
+
exports.UntagResource$ = UntagResource$;
|
|
1369
3784
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3785
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3786
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3787
|
+
exports.UpdateBrowserSettings$ = UpdateBrowserSettings$;
|
|
1370
3788
|
exports.UpdateBrowserSettingsCommand = UpdateBrowserSettingsCommand;
|
|
3789
|
+
exports.UpdateBrowserSettingsRequest$ = UpdateBrowserSettingsRequest$;
|
|
3790
|
+
exports.UpdateBrowserSettingsResponse$ = UpdateBrowserSettingsResponse$;
|
|
3791
|
+
exports.UpdateDataProtectionSettings$ = UpdateDataProtectionSettings$;
|
|
1371
3792
|
exports.UpdateDataProtectionSettingsCommand = UpdateDataProtectionSettingsCommand;
|
|
3793
|
+
exports.UpdateDataProtectionSettingsRequest$ = UpdateDataProtectionSettingsRequest$;
|
|
3794
|
+
exports.UpdateDataProtectionSettingsResponse$ = UpdateDataProtectionSettingsResponse$;
|
|
3795
|
+
exports.UpdateIdentityProvider$ = UpdateIdentityProvider$;
|
|
1372
3796
|
exports.UpdateIdentityProviderCommand = UpdateIdentityProviderCommand;
|
|
3797
|
+
exports.UpdateIdentityProviderRequest$ = UpdateIdentityProviderRequest$;
|
|
3798
|
+
exports.UpdateIdentityProviderResponse$ = UpdateIdentityProviderResponse$;
|
|
3799
|
+
exports.UpdateIpAccessSettings$ = UpdateIpAccessSettings$;
|
|
1373
3800
|
exports.UpdateIpAccessSettingsCommand = UpdateIpAccessSettingsCommand;
|
|
3801
|
+
exports.UpdateIpAccessSettingsRequest$ = UpdateIpAccessSettingsRequest$;
|
|
3802
|
+
exports.UpdateIpAccessSettingsResponse$ = UpdateIpAccessSettingsResponse$;
|
|
3803
|
+
exports.UpdateNetworkSettings$ = UpdateNetworkSettings$;
|
|
1374
3804
|
exports.UpdateNetworkSettingsCommand = UpdateNetworkSettingsCommand;
|
|
3805
|
+
exports.UpdateNetworkSettingsRequest$ = UpdateNetworkSettingsRequest$;
|
|
3806
|
+
exports.UpdateNetworkSettingsResponse$ = UpdateNetworkSettingsResponse$;
|
|
3807
|
+
exports.UpdatePortal$ = UpdatePortal$;
|
|
1375
3808
|
exports.UpdatePortalCommand = UpdatePortalCommand;
|
|
3809
|
+
exports.UpdatePortalRequest$ = UpdatePortalRequest$;
|
|
3810
|
+
exports.UpdatePortalResponse$ = UpdatePortalResponse$;
|
|
3811
|
+
exports.UpdateSessionLogger$ = UpdateSessionLogger$;
|
|
1376
3812
|
exports.UpdateSessionLoggerCommand = UpdateSessionLoggerCommand;
|
|
3813
|
+
exports.UpdateSessionLoggerRequest$ = UpdateSessionLoggerRequest$;
|
|
3814
|
+
exports.UpdateSessionLoggerResponse$ = UpdateSessionLoggerResponse$;
|
|
3815
|
+
exports.UpdateTrustStore$ = UpdateTrustStore$;
|
|
1377
3816
|
exports.UpdateTrustStoreCommand = UpdateTrustStoreCommand;
|
|
3817
|
+
exports.UpdateTrustStoreRequest$ = UpdateTrustStoreRequest$;
|
|
3818
|
+
exports.UpdateTrustStoreResponse$ = UpdateTrustStoreResponse$;
|
|
3819
|
+
exports.UpdateUserAccessLoggingSettings$ = UpdateUserAccessLoggingSettings$;
|
|
1378
3820
|
exports.UpdateUserAccessLoggingSettingsCommand = UpdateUserAccessLoggingSettingsCommand;
|
|
3821
|
+
exports.UpdateUserAccessLoggingSettingsRequest$ = UpdateUserAccessLoggingSettingsRequest$;
|
|
3822
|
+
exports.UpdateUserAccessLoggingSettingsResponse$ = UpdateUserAccessLoggingSettingsResponse$;
|
|
3823
|
+
exports.UpdateUserSettings$ = UpdateUserSettings$;
|
|
1379
3824
|
exports.UpdateUserSettingsCommand = UpdateUserSettingsCommand;
|
|
3825
|
+
exports.UpdateUserSettingsRequest$ = UpdateUserSettingsRequest$;
|
|
3826
|
+
exports.UpdateUserSettingsResponse$ = UpdateUserSettingsResponse$;
|
|
3827
|
+
exports.UserAccessLoggingSettings$ = UserAccessLoggingSettings$;
|
|
3828
|
+
exports.UserAccessLoggingSettingsSummary$ = UserAccessLoggingSettingsSummary$;
|
|
3829
|
+
exports.UserSettings$ = UserSettings$;
|
|
3830
|
+
exports.UserSettingsSummary$ = UserSettingsSummary$;
|
|
3831
|
+
exports.ValidationException = ValidationException;
|
|
3832
|
+
exports.ValidationException$ = ValidationException$;
|
|
3833
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1380
3834
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1381
3835
|
exports.VisualMode = VisualMode;
|
|
3836
|
+
exports.WallpaperImageInput$ = WallpaperImageInput$;
|
|
3837
|
+
exports.WebContentFilteringPolicy$ = WebContentFilteringPolicy$;
|
|
1382
3838
|
exports.WorkSpacesWeb = WorkSpacesWeb;
|
|
1383
3839
|
exports.WorkSpacesWebClient = WorkSpacesWebClient;
|
|
3840
|
+
exports.WorkSpacesWebServiceException = WorkSpacesWebServiceException;
|
|
3841
|
+
exports.WorkSpacesWebServiceException$ = WorkSpacesWebServiceException$;
|
|
1384
3842
|
exports._InstanceType = _InstanceType;
|
|
3843
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1385
3844
|
exports.paginateListBrowserSettings = paginateListBrowserSettings;
|
|
1386
3845
|
exports.paginateListDataProtectionSettings = paginateListDataProtectionSettings;
|
|
1387
3846
|
exports.paginateListIdentityProviders = paginateListIdentityProviders;
|