@aws-sdk/client-workspaces-web 3.986.0 → 3.988.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 +94 -2362
- package/dist-cjs/models/WorkSpacesWebServiceException.js +12 -0
- package/dist-cjs/models/errors.js +138 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1890 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +64 -58
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var WorkSpacesWebServiceException = require('./models/WorkSpacesWebServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,2005 +113,6 @@ class WorkSpacesWebClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class WorkSpacesWebServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, WorkSpacesWebServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends WorkSpacesWebServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends WorkSpacesWebServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
resourceId;
|
|
136
|
-
resourceType;
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
this.resourceId = opts.resourceId;
|
|
145
|
-
this.resourceType = opts.resourceType;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends WorkSpacesWebServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
retryAfterSeconds;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "InternalServerException",
|
|
155
|
-
$fault: "server",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ResourceNotFoundException extends WorkSpacesWebServiceException {
|
|
163
|
-
name = "ResourceNotFoundException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
resourceId;
|
|
166
|
-
resourceType;
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "ResourceNotFoundException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
174
|
-
this.resourceId = opts.resourceId;
|
|
175
|
-
this.resourceType = opts.resourceType;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
class ThrottlingException extends WorkSpacesWebServiceException {
|
|
179
|
-
name = "ThrottlingException";
|
|
180
|
-
$fault = "client";
|
|
181
|
-
serviceCode;
|
|
182
|
-
quotaCode;
|
|
183
|
-
retryAfterSeconds;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ThrottlingException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
191
|
-
this.serviceCode = opts.serviceCode;
|
|
192
|
-
this.quotaCode = opts.quotaCode;
|
|
193
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
class ValidationException extends WorkSpacesWebServiceException {
|
|
197
|
-
name = "ValidationException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
reason;
|
|
200
|
-
fieldList;
|
|
201
|
-
constructor(opts) {
|
|
202
|
-
super({
|
|
203
|
-
name: "ValidationException",
|
|
204
|
-
$fault: "client",
|
|
205
|
-
...opts,
|
|
206
|
-
});
|
|
207
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
208
|
-
this.reason = opts.reason;
|
|
209
|
-
this.fieldList = opts.fieldList;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
class ServiceQuotaExceededException extends WorkSpacesWebServiceException {
|
|
213
|
-
name = "ServiceQuotaExceededException";
|
|
214
|
-
$fault = "client";
|
|
215
|
-
resourceId;
|
|
216
|
-
resourceType;
|
|
217
|
-
serviceCode;
|
|
218
|
-
quotaCode;
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "ServiceQuotaExceededException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
226
|
-
this.resourceId = opts.resourceId;
|
|
227
|
-
this.resourceType = opts.resourceType;
|
|
228
|
-
this.serviceCode = opts.serviceCode;
|
|
229
|
-
this.quotaCode = opts.quotaCode;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class TooManyTagsException extends WorkSpacesWebServiceException {
|
|
233
|
-
name = "TooManyTagsException";
|
|
234
|
-
$fault = "client";
|
|
235
|
-
resourceName;
|
|
236
|
-
constructor(opts) {
|
|
237
|
-
super({
|
|
238
|
-
name: "TooManyTagsException",
|
|
239
|
-
$fault: "client",
|
|
240
|
-
...opts,
|
|
241
|
-
});
|
|
242
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
243
|
-
this.resourceName = opts.resourceName;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
const _ABS = "AssociateBrowserSettings";
|
|
248
|
-
const _ABSR = "AssociateBrowserSettingsRequest";
|
|
249
|
-
const _ABSRs = "AssociateBrowserSettingsResponse";
|
|
250
|
-
const _ADE = "AccessDeniedException";
|
|
251
|
-
const _ADPS = "AssociateDataProtectionSettings";
|
|
252
|
-
const _ADPSR = "AssociateDataProtectionSettingsRequest";
|
|
253
|
-
const _ADPSRs = "AssociateDataProtectionSettingsResponse";
|
|
254
|
-
const _AIAS = "AssociateIpAccessSettings";
|
|
255
|
-
const _AIASR = "AssociateIpAccessSettingsRequest";
|
|
256
|
-
const _AIASRs = "AssociateIpAccessSettingsResponse";
|
|
257
|
-
const _ANS = "AssociateNetworkSettings";
|
|
258
|
-
const _ANSR = "AssociateNetworkSettingsRequest";
|
|
259
|
-
const _ANSRs = "AssociateNetworkSettingsResponse";
|
|
260
|
-
const _ASL = "AssociateSessionLogger";
|
|
261
|
-
const _ASLR = "AssociateSessionLoggerRequest";
|
|
262
|
-
const _ASLRs = "AssociateSessionLoggerResponse";
|
|
263
|
-
const _ATS = "AssociateTrustStore";
|
|
264
|
-
const _ATSR = "AssociateTrustStoreRequest";
|
|
265
|
-
const _ATSRs = "AssociateTrustStoreResponse";
|
|
266
|
-
const _AUALS = "AssociateUserAccessLoggingSettings";
|
|
267
|
-
const _AUALSR = "AssociateUserAccessLoggingSettingsRequest";
|
|
268
|
-
const _AUALSRs = "AssociateUserAccessLoggingSettingsResponse";
|
|
269
|
-
const _AUS = "AssociateUserSettings";
|
|
270
|
-
const _AUSR = "AssociateUserSettingsRequest";
|
|
271
|
-
const _AUSRs = "AssociateUserSettingsResponse";
|
|
272
|
-
const _BC = "BrandingConfiguration";
|
|
273
|
-
const _BCCI = "BrandingConfigurationCreateInput";
|
|
274
|
-
const _BCUI = "BrandingConfigurationUpdateInput";
|
|
275
|
-
const _BIPI = "BuiltInPatternId";
|
|
276
|
-
const _BP = "BrowserPolicy";
|
|
277
|
-
const _BS = "BrowserSettings";
|
|
278
|
-
const _BSL = "BrowserSettingsList";
|
|
279
|
-
const _BSS = "BrowserSettingsSummary";
|
|
280
|
-
const _C = "Certificate";
|
|
281
|
-
const _CBS = "CreateBrowserSettings";
|
|
282
|
-
const _CBSR = "CreateBrowserSettingsRequest";
|
|
283
|
-
const _CBSRr = "CreateBrowserSettingsResponse";
|
|
284
|
-
const _CD = "CookieDomain";
|
|
285
|
-
const _CDPS = "CreateDataProtectionSettings";
|
|
286
|
-
const _CDPSR = "CreateDataProtectionSettingsRequest";
|
|
287
|
-
const _CDPSRr = "CreateDataProtectionSettingsResponse";
|
|
288
|
-
const _CE = "ConflictException";
|
|
289
|
-
const _CIAS = "CreateIpAccessSettings";
|
|
290
|
-
const _CIASR = "CreateIpAccessSettingsRequest";
|
|
291
|
-
const _CIASRr = "CreateIpAccessSettingsResponse";
|
|
292
|
-
const _CIP = "CreateIdentityProvider";
|
|
293
|
-
const _CIPR = "CreateIdentityProviderRequest";
|
|
294
|
-
const _CIPRr = "CreateIdentityProviderResponse";
|
|
295
|
-
const _CN = "CookieName";
|
|
296
|
-
const _CNS = "CreateNetworkSettings";
|
|
297
|
-
const _CNSR = "CreateNetworkSettingsRequest";
|
|
298
|
-
const _CNSRr = "CreateNetworkSettingsResponse";
|
|
299
|
-
const _CP = "CookiePath";
|
|
300
|
-
const _CPR = "CreatePortalRequest";
|
|
301
|
-
const _CPRr = "CreatePortalResponse";
|
|
302
|
-
const _CPr = "CreatePortal";
|
|
303
|
-
const _CPu = "CustomPattern";
|
|
304
|
-
const _CS = "CertificateSummary";
|
|
305
|
-
const _CSC = "CookieSynchronizationConfiguration";
|
|
306
|
-
const _CSL = "CertificateSummaryList";
|
|
307
|
-
const _CSLR = "CreateSessionLoggerRequest";
|
|
308
|
-
const _CSLRr = "CreateSessionLoggerResponse";
|
|
309
|
-
const _CSLr = "CreateSessionLogger";
|
|
310
|
-
const _CSo = "CookieSpecification";
|
|
311
|
-
const _CSoo = "CookieSpecifications";
|
|
312
|
-
const _CTS = "CreateTrustStore";
|
|
313
|
-
const _CTSR = "CreateTrustStoreRequest";
|
|
314
|
-
const _CTSRr = "CreateTrustStoreResponse";
|
|
315
|
-
const _CUALS = "CreateUserAccessLoggingSettings";
|
|
316
|
-
const _CUALSR = "CreateUserAccessLoggingSettingsRequest";
|
|
317
|
-
const _CUALSRr = "CreateUserAccessLoggingSettingsResponse";
|
|
318
|
-
const _CUS = "CreateUserSettings";
|
|
319
|
-
const _CUSR = "CreateUserSettingsRequest";
|
|
320
|
-
const _CUSRr = "CreateUserSettingsResponse";
|
|
321
|
-
const _D = "Description";
|
|
322
|
-
const _DBS = "DeleteBrowserSettings";
|
|
323
|
-
const _DBSR = "DeleteBrowserSettingsRequest";
|
|
324
|
-
const _DBSRe = "DeleteBrowserSettingsResponse";
|
|
325
|
-
const _DBSRi = "DisassociateBrowserSettingsRequest";
|
|
326
|
-
const _DBSRis = "DisassociateBrowserSettingsResponse";
|
|
327
|
-
const _DBSi = "DisassociateBrowserSettings";
|
|
328
|
-
const _DDPS = "DeleteDataProtectionSettings";
|
|
329
|
-
const _DDPSR = "DeleteDataProtectionSettingsRequest";
|
|
330
|
-
const _DDPSRe = "DeleteDataProtectionSettingsResponse";
|
|
331
|
-
const _DDPSRi = "DisassociateDataProtectionSettingsRequest";
|
|
332
|
-
const _DDPSRis = "DisassociateDataProtectionSettingsResponse";
|
|
333
|
-
const _DDPSi = "DisassociateDataProtectionSettings";
|
|
334
|
-
const _DIAS = "DeleteIpAccessSettings";
|
|
335
|
-
const _DIASR = "DeleteIpAccessSettingsRequest";
|
|
336
|
-
const _DIASRe = "DeleteIpAccessSettingsResponse";
|
|
337
|
-
const _DIASRi = "DisassociateIpAccessSettingsRequest";
|
|
338
|
-
const _DIASRis = "DisassociateIpAccessSettingsResponse";
|
|
339
|
-
const _DIASi = "DisassociateIpAccessSettings";
|
|
340
|
-
const _DIP = "DeleteIdentityProvider";
|
|
341
|
-
const _DIPR = "DeleteIdentityProviderRequest";
|
|
342
|
-
const _DIPRe = "DeleteIdentityProviderResponse";
|
|
343
|
-
const _DN = "DisplayName";
|
|
344
|
-
const _DNS = "DisplayNameSafe";
|
|
345
|
-
const _DNSR = "DeleteNetworkSettingsRequest";
|
|
346
|
-
const _DNSRe = "DeleteNetworkSettingsResponse";
|
|
347
|
-
const _DNSRi = "DisassociateNetworkSettingsRequest";
|
|
348
|
-
const _DNSRis = "DisassociateNetworkSettingsResponse";
|
|
349
|
-
const _DNSe = "DeleteNetworkSettings";
|
|
350
|
-
const _DNSi = "DisassociateNetworkSettings";
|
|
351
|
-
const _DP = "DeletePortal";
|
|
352
|
-
const _DPR = "DeletePortalRequest";
|
|
353
|
-
const _DPRe = "DeletePortalResponse";
|
|
354
|
-
const _DPS = "DataProtectionSettings";
|
|
355
|
-
const _DPSL = "DataProtectionSettingsList";
|
|
356
|
-
const _DPSS = "DataProtectionSettingsSummary";
|
|
357
|
-
const _DS = "DescriptionSafe";
|
|
358
|
-
const _DSL = "DeleteSessionLogger";
|
|
359
|
-
const _DSLR = "DeleteSessionLoggerRequest";
|
|
360
|
-
const _DSLRe = "DeleteSessionLoggerResponse";
|
|
361
|
-
const _DSLRi = "DisassociateSessionLoggerRequest";
|
|
362
|
-
const _DSLRis = "DisassociateSessionLoggerResponse";
|
|
363
|
-
const _DSLi = "DisassociateSessionLogger";
|
|
364
|
-
const _DTS = "DeleteTrustStore";
|
|
365
|
-
const _DTSR = "DeleteTrustStoreRequest";
|
|
366
|
-
const _DTSRe = "DeleteTrustStoreResponse";
|
|
367
|
-
const _DTSRi = "DisassociateTrustStoreRequest";
|
|
368
|
-
const _DTSRis = "DisassociateTrustStoreResponse";
|
|
369
|
-
const _DTSi = "DisassociateTrustStore";
|
|
370
|
-
const _DUALS = "DeleteUserAccessLoggingSettings";
|
|
371
|
-
const _DUALSR = "DeleteUserAccessLoggingSettingsRequest";
|
|
372
|
-
const _DUALSRe = "DeleteUserAccessLoggingSettingsResponse";
|
|
373
|
-
const _DUALSRi = "DisassociateUserAccessLoggingSettingsRequest";
|
|
374
|
-
const _DUALSRis = "DisassociateUserAccessLoggingSettingsResponse";
|
|
375
|
-
const _DUALSi = "DisassociateUserAccessLoggingSettings";
|
|
376
|
-
const _DUS = "DeleteUserSettings";
|
|
377
|
-
const _DUSR = "DeleteUserSettingsRequest";
|
|
378
|
-
const _DUSRe = "DeleteUserSettingsResponse";
|
|
379
|
-
const _DUSRi = "DisassociateUserSettingsRequest";
|
|
380
|
-
const _DUSRis = "DisassociateUserSettingsResponse";
|
|
381
|
-
const _DUSi = "DisassociateUserSettings";
|
|
382
|
-
const _EF = "EventFilter";
|
|
383
|
-
const _ES = "ExpireSession";
|
|
384
|
-
const _ESR = "ExpireSessionRequest";
|
|
385
|
-
const _ESRx = "ExpireSessionResponse";
|
|
386
|
-
const _GBS = "GetBrowserSettings";
|
|
387
|
-
const _GBSR = "GetBrowserSettingsRequest";
|
|
388
|
-
const _GBSRe = "GetBrowserSettingsResponse";
|
|
389
|
-
const _GDPS = "GetDataProtectionSettings";
|
|
390
|
-
const _GDPSR = "GetDataProtectionSettingsRequest";
|
|
391
|
-
const _GDPSRe = "GetDataProtectionSettingsResponse";
|
|
392
|
-
const _GIAS = "GetIpAccessSettings";
|
|
393
|
-
const _GIASR = "GetIpAccessSettingsRequest";
|
|
394
|
-
const _GIASRe = "GetIpAccessSettingsResponse";
|
|
395
|
-
const _GIP = "GetIdentityProvider";
|
|
396
|
-
const _GIPR = "GetIdentityProviderRequest";
|
|
397
|
-
const _GIPRe = "GetIdentityProviderResponse";
|
|
398
|
-
const _GIRU = "GlobalInlineRedactionUrls";
|
|
399
|
-
const _GNS = "GetNetworkSettings";
|
|
400
|
-
const _GNSR = "GetNetworkSettingsRequest";
|
|
401
|
-
const _GNSRe = "GetNetworkSettingsResponse";
|
|
402
|
-
const _GP = "GetPortal";
|
|
403
|
-
const _GPR = "GetPortalRequest";
|
|
404
|
-
const _GPRe = "GetPortalResponse";
|
|
405
|
-
const _GPSPM = "GetPortalServiceProviderMetadata";
|
|
406
|
-
const _GPSPMR = "GetPortalServiceProviderMetadataRequest";
|
|
407
|
-
const _GPSPMRe = "GetPortalServiceProviderMetadataResponse";
|
|
408
|
-
const _GS = "GetSession";
|
|
409
|
-
const _GSL = "GetSessionLogger";
|
|
410
|
-
const _GSLR = "GetSessionLoggerRequest";
|
|
411
|
-
const _GSLRe = "GetSessionLoggerResponse";
|
|
412
|
-
const _GSR = "GetSessionRequest";
|
|
413
|
-
const _GSRe = "GetSessionResponse";
|
|
414
|
-
const _GTS = "GetTrustStore";
|
|
415
|
-
const _GTSC = "GetTrustStoreCertificate";
|
|
416
|
-
const _GTSCR = "GetTrustStoreCertificateRequest";
|
|
417
|
-
const _GTSCRe = "GetTrustStoreCertificateResponse";
|
|
418
|
-
const _GTSR = "GetTrustStoreRequest";
|
|
419
|
-
const _GTSRe = "GetTrustStoreResponse";
|
|
420
|
-
const _GUALS = "GetUserAccessLoggingSettings";
|
|
421
|
-
const _GUALSR = "GetUserAccessLoggingSettingsRequest";
|
|
422
|
-
const _GUALSRe = "GetUserAccessLoggingSettingsResponse";
|
|
423
|
-
const _GUS = "GetUserSettings";
|
|
424
|
-
const _GUSR = "GetUserSettingsRequest";
|
|
425
|
-
const _GUSRe = "GetUserSettingsResponse";
|
|
426
|
-
const _IA = "IpAddress";
|
|
427
|
-
const _IAL = "IpAddressList";
|
|
428
|
-
const _IAS = "IpAccessSettings";
|
|
429
|
-
const _IASL = "IpAccessSettingsList";
|
|
430
|
-
const _IASS = "IpAccessSettingsSummary";
|
|
431
|
-
const _II = "IconImage";
|
|
432
|
-
const _III = "IconImageInput";
|
|
433
|
-
const _IM = "ImageMetadata";
|
|
434
|
-
const _IP = "IdentityProvider";
|
|
435
|
-
const _IPD = "IdentityProviderDetails";
|
|
436
|
-
const _IPL = "IdentityProviderList";
|
|
437
|
-
const _IPN = "IdentityProviderName";
|
|
438
|
-
const _IPS = "IdentityProviderSummary";
|
|
439
|
-
const _IR = "IpRange";
|
|
440
|
-
const _IRC = "InlineRedactionConfiguration";
|
|
441
|
-
const _IRL = "IpRuleList";
|
|
442
|
-
const _IRP = "InlineRedactionPattern";
|
|
443
|
-
const _IRPn = "InlineRedactionPatterns";
|
|
444
|
-
const _IRU = "InlineRedactionUrl";
|
|
445
|
-
const _IRUn = "InlineRedactionUrls";
|
|
446
|
-
const _IRp = "IpRule";
|
|
447
|
-
const _ISE = "InternalServerException";
|
|
448
|
-
const _K = "Key";
|
|
449
|
-
const _LBS = "LocalizedBrandingStrings";
|
|
450
|
-
const _LBSM = "LocalizedBrandingStringMap";
|
|
451
|
-
const _LBSR = "ListBrowserSettingsRequest";
|
|
452
|
-
const _LBSRi = "ListBrowserSettingsResponse";
|
|
453
|
-
const _LBSi = "ListBrowserSettings";
|
|
454
|
-
const _LC = "LogConfiguration";
|
|
455
|
-
const _LDPS = "ListDataProtectionSettings";
|
|
456
|
-
const _LDPSR = "ListDataProtectionSettingsRequest";
|
|
457
|
-
const _LDPSRi = "ListDataProtectionSettingsResponse";
|
|
458
|
-
const _LIAS = "ListIpAccessSettings";
|
|
459
|
-
const _LIASR = "ListIpAccessSettingsRequest";
|
|
460
|
-
const _LIASRi = "ListIpAccessSettingsResponse";
|
|
461
|
-
const _LIP = "ListIdentityProviders";
|
|
462
|
-
const _LIPR = "ListIdentityProvidersRequest";
|
|
463
|
-
const _LIPRi = "ListIdentityProvidersResponse";
|
|
464
|
-
const _LNS = "ListNetworkSettings";
|
|
465
|
-
const _LNSR = "ListNetworkSettingsRequest";
|
|
466
|
-
const _LNSRi = "ListNetworkSettingsResponse";
|
|
467
|
-
const _LP = "ListPortals";
|
|
468
|
-
const _LPR = "ListPortalsRequest";
|
|
469
|
-
const _LPRi = "ListPortalsResponse";
|
|
470
|
-
const _LS = "ListSessions";
|
|
471
|
-
const _LSL = "ListSessionLoggers";
|
|
472
|
-
const _LSLR = "ListSessionLoggersRequest";
|
|
473
|
-
const _LSLRi = "ListSessionLoggersResponse";
|
|
474
|
-
const _LSR = "ListSessionsRequest";
|
|
475
|
-
const _LSRi = "ListSessionsResponse";
|
|
476
|
-
const _LTFR = "ListTagsForResource";
|
|
477
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
478
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
479
|
-
const _LTS = "ListTrustStores";
|
|
480
|
-
const _LTSC = "ListTrustStoreCertificates";
|
|
481
|
-
const _LTSCR = "ListTrustStoreCertificatesRequest";
|
|
482
|
-
const _LTSCRi = "ListTrustStoreCertificatesResponse";
|
|
483
|
-
const _LTSR = "ListTrustStoresRequest";
|
|
484
|
-
const _LTSRi = "ListTrustStoresResponse";
|
|
485
|
-
const _LUALS = "ListUserAccessLoggingSettings";
|
|
486
|
-
const _LUALSR = "ListUserAccessLoggingSettingsRequest";
|
|
487
|
-
const _LUALSRi = "ListUserAccessLoggingSettingsResponse";
|
|
488
|
-
const _LUS = "ListUserSettings";
|
|
489
|
-
const _LUSR = "ListUserSettingsRequest";
|
|
490
|
-
const _LUSRi = "ListUserSettingsResponse";
|
|
491
|
-
const _M = "Markdown";
|
|
492
|
-
const _NS = "NetworkSettings";
|
|
493
|
-
const _NSL = "NetworkSettingsList";
|
|
494
|
-
const _NSS = "NetworkSettingsSummary";
|
|
495
|
-
const _P = "Portal";
|
|
496
|
-
const _PL = "PortalList";
|
|
497
|
-
const _PN = "PatternName";
|
|
498
|
-
const _PS = "PortalSummary";
|
|
499
|
-
const _R = "Regex";
|
|
500
|
-
const _RA = "Retry-After";
|
|
501
|
-
const _RNFE = "ResourceNotFoundException";
|
|
502
|
-
const _RPH = "RedactionPlaceHolder";
|
|
503
|
-
const _RPHT = "RedactionPlaceHolderText";
|
|
504
|
-
const _S = "Session";
|
|
505
|
-
const _SB = "S3Bucket";
|
|
506
|
-
const _SKP = "S3KeyPrefix";
|
|
507
|
-
const _SL = "SessionLogger";
|
|
508
|
-
const _SLC = "S3LogConfiguration";
|
|
509
|
-
const _SLL = "SessionLoggerList";
|
|
510
|
-
const _SLS = "SessionLoggerSummary";
|
|
511
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
512
|
-
const _SS = "SessionSummary";
|
|
513
|
-
const _SSL = "SessionSummaryList";
|
|
514
|
-
const _T = "Tag";
|
|
515
|
-
const _TC = "ToolbarConfiguration";
|
|
516
|
-
const _TE = "ThrottlingException";
|
|
517
|
-
const _TK = "TagKey";
|
|
518
|
-
const _TKL = "TagKeyList";
|
|
519
|
-
const _TL = "TagList";
|
|
520
|
-
const _TMTE = "TooManyTagsException";
|
|
521
|
-
const _TR = "TagResource";
|
|
522
|
-
const _TRR = "TagResourceRequest";
|
|
523
|
-
const _TRRa = "TagResourceResponse";
|
|
524
|
-
const _TS = "TrustStore";
|
|
525
|
-
const _TSS = "TrustStoreSummary";
|
|
526
|
-
const _TSSL = "TrustStoreSummaryList";
|
|
527
|
-
const _TV = "TagValue";
|
|
528
|
-
const _U = "Username";
|
|
529
|
-
const _UALS = "UserAccessLoggingSettings";
|
|
530
|
-
const _UALSL = "UserAccessLoggingSettingsList";
|
|
531
|
-
const _UALSS = "UserAccessLoggingSettingsSummary";
|
|
532
|
-
const _UBS = "UpdateBrowserSettings";
|
|
533
|
-
const _UBSR = "UpdateBrowserSettingsRequest";
|
|
534
|
-
const _UBSRp = "UpdateBrowserSettingsResponse";
|
|
535
|
-
const _UDPS = "UpdateDataProtectionSettings";
|
|
536
|
-
const _UDPSR = "UpdateDataProtectionSettingsRequest";
|
|
537
|
-
const _UDPSRp = "UpdateDataProtectionSettingsResponse";
|
|
538
|
-
const _UIAS = "UpdateIpAccessSettings";
|
|
539
|
-
const _UIASR = "UpdateIpAccessSettingsRequest";
|
|
540
|
-
const _UIASRp = "UpdateIpAccessSettingsResponse";
|
|
541
|
-
const _UIP = "UpdateIdentityProvider";
|
|
542
|
-
const _UIPR = "UpdateIdentityProviderRequest";
|
|
543
|
-
const _UIPRp = "UpdateIdentityProviderResponse";
|
|
544
|
-
const _UNS = "UpdateNetworkSettings";
|
|
545
|
-
const _UNSR = "UpdateNetworkSettingsRequest";
|
|
546
|
-
const _UNSRp = "UpdateNetworkSettingsResponse";
|
|
547
|
-
const _UP = "UrlPattern";
|
|
548
|
-
const _UPL = "UrlPatternList";
|
|
549
|
-
const _UPR = "UpdatePortalRequest";
|
|
550
|
-
const _UPRp = "UpdatePortalResponse";
|
|
551
|
-
const _UPp = "UpdatePortal";
|
|
552
|
-
const _UR = "UntagResource";
|
|
553
|
-
const _URR = "UntagResourceRequest";
|
|
554
|
-
const _URRn = "UntagResourceResponse";
|
|
555
|
-
const _US = "UserSettings";
|
|
556
|
-
const _USL = "UserSettingsList";
|
|
557
|
-
const _USLR = "UpdateSessionLoggerRequest";
|
|
558
|
-
const _USLRp = "UpdateSessionLoggerResponse";
|
|
559
|
-
const _USLp = "UpdateSessionLogger";
|
|
560
|
-
const _USS = "UserSettingsSummary";
|
|
561
|
-
const _UTS = "UpdateTrustStore";
|
|
562
|
-
const _UTSR = "UpdateTrustStoreRequest";
|
|
563
|
-
const _UTSRp = "UpdateTrustStoreResponse";
|
|
564
|
-
const _UUALS = "UpdateUserAccessLoggingSettings";
|
|
565
|
-
const _UUALSR = "UpdateUserAccessLoggingSettingsRequest";
|
|
566
|
-
const _UUALSRp = "UpdateUserAccessLoggingSettingsResponse";
|
|
567
|
-
const _UUS = "UpdateUserSettings";
|
|
568
|
-
const _UUSR = "UpdateUserSettingsRequest";
|
|
569
|
-
const _UUSRp = "UpdateUserSettingsResponse";
|
|
570
|
-
const _V = "Value";
|
|
571
|
-
const _VE = "ValidationException";
|
|
572
|
-
const _VEF = "ValidationExceptionField";
|
|
573
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
574
|
-
const _WCFP = "WebContentFilteringPolicy";
|
|
575
|
-
const _WI = "WallpaperImage";
|
|
576
|
-
const _WII = "WallpaperImageInput";
|
|
577
|
-
const _a = "allowlist";
|
|
578
|
-
const _aEC = "additionalEncryptionContext";
|
|
579
|
-
const _aPA = "associatedPortalArns";
|
|
580
|
-
const _aT = "authenticationType";
|
|
581
|
-
const _aU = "allowedUrls";
|
|
582
|
-
const _al = "all";
|
|
583
|
-
const _b = "body";
|
|
584
|
-
const _bC = "brandingConfiguration";
|
|
585
|
-
const _bCI = "brandingConfigurationInput";
|
|
586
|
-
const _bCl = "blockedCategories";
|
|
587
|
-
const _bIPI = "builtInPatternId";
|
|
588
|
-
const _bO = "bucketOwner";
|
|
589
|
-
const _bP = "browserPolicy";
|
|
590
|
-
const _bS = "browserSettings";
|
|
591
|
-
const _bSA = "browserSettingsArn";
|
|
592
|
-
const _bT = "browserType";
|
|
593
|
-
const _bTT = "browserTabTitle";
|
|
594
|
-
const _bU = "blockedUrls";
|
|
595
|
-
const _bl = "blocklist";
|
|
596
|
-
const _blo = "blob";
|
|
597
|
-
const _bu = "bucket";
|
|
598
|
-
const _c = "client";
|
|
599
|
-
const _cA = "copyAllowed";
|
|
600
|
-
const _cBT = "contactButtonText";
|
|
601
|
-
const _cD = "creationDate";
|
|
602
|
-
const _cIA = "clientIpAddresses";
|
|
603
|
-
const _cL = "certificateList";
|
|
604
|
-
const _cLo = "confidenceLevel";
|
|
605
|
-
const _cLon = "contactLink";
|
|
606
|
-
const _cMK = "customerManagedKey";
|
|
607
|
-
const _cP = "customPattern";
|
|
608
|
-
const _cSC = "cookieSynchronizationConfiguration";
|
|
609
|
-
const _cT = "colorTheme";
|
|
610
|
-
const _cTA = "certificatesToAdd";
|
|
611
|
-
const _cTD = "certificatesToDelete";
|
|
612
|
-
const _cTl = "clientToken";
|
|
613
|
-
const _ce = "certificate";
|
|
614
|
-
const _d = "domain";
|
|
615
|
-
const _dA = "downloadAllowed";
|
|
616
|
-
const _dLA = "deepLinkAllowed";
|
|
617
|
-
const _dN = "displayName";
|
|
618
|
-
const _dPS = "dataProtectionSettings";
|
|
619
|
-
const _dPSA = "dataProtectionSettingsArn";
|
|
620
|
-
const _dTIM = "disconnectTimeoutInMinutes";
|
|
621
|
-
const _de = "description";
|
|
622
|
-
const _e = "error";
|
|
623
|
-
const _eF = "eventFilter";
|
|
624
|
-
const _eT = "endTime";
|
|
625
|
-
const _eU = "enforcedUrls";
|
|
626
|
-
const _eUx = "exemptUrls";
|
|
627
|
-
const _f = "favicon";
|
|
628
|
-
const _fE = "fileExtension";
|
|
629
|
-
const _fL = "fieldList";
|
|
630
|
-
const _fS = "folderStructure";
|
|
631
|
-
const _gCL = "globalConfidenceLevel";
|
|
632
|
-
const _gEU = "globalEnforcedUrls";
|
|
633
|
-
const _gEUl = "globalExemptUrls";
|
|
634
|
-
const _h = "http";
|
|
635
|
-
const _hE = "httpError";
|
|
636
|
-
const _hH = "httpHeader";
|
|
637
|
-
const _hQ = "httpQuery";
|
|
638
|
-
const _hTI = "hiddenToolbarItems";
|
|
639
|
-
const _i = "image/*";
|
|
640
|
-
const _iAS = "ipAccessSettings";
|
|
641
|
-
const _iASA = "ipAccessSettingsArn";
|
|
642
|
-
const _iDTIM = "idleDisconnectTimeoutInMinutes";
|
|
643
|
-
const _iP = "identityProvider";
|
|
644
|
-
const _iPA = "identityProviderArn";
|
|
645
|
-
const _iPD = "identityProviderDetails";
|
|
646
|
-
const _iPN = "identityProviderName";
|
|
647
|
-
const _iPT = "identityProviderType";
|
|
648
|
-
const _iPd = "identityProviders";
|
|
649
|
-
const _iR = "ipRules";
|
|
650
|
-
const _iRC = "inlineRedactionConfiguration";
|
|
651
|
-
const _iRP = "inlineRedactionPatterns";
|
|
652
|
-
const _iRp = "ipRange";
|
|
653
|
-
const _iT = "instanceType";
|
|
654
|
-
const _in = "include";
|
|
655
|
-
const _is = "issuer";
|
|
656
|
-
const _kP = "keyPrefix";
|
|
657
|
-
const _kR = "keywordRegex";
|
|
658
|
-
const _kSA = "kinesisStreamArn";
|
|
659
|
-
const _l = "logo";
|
|
660
|
-
const _lBT = "loginButtonText";
|
|
661
|
-
const _lC = "logConfiguration";
|
|
662
|
-
const _lD = "loginDescription";
|
|
663
|
-
const _lFF = "logFileFormat";
|
|
664
|
-
const _lS = "localizedStrings";
|
|
665
|
-
const _lT = "loginTitle";
|
|
666
|
-
const _lTo = "loadingText";
|
|
667
|
-
const _lUT = "lastUploadTimestamp";
|
|
668
|
-
const _m = "message";
|
|
669
|
-
const _mCS = "maxConcurrentSessions";
|
|
670
|
-
const _mDR = "maxDisplayResolution";
|
|
671
|
-
const _mR = "maxResults";
|
|
672
|
-
const _mT = "mediaType";
|
|
673
|
-
const _mTi = "mimeType";
|
|
674
|
-
const _n = "name";
|
|
675
|
-
const _nS = "networkSettings";
|
|
676
|
-
const _nSA = "networkSettingsArn";
|
|
677
|
-
const _nT = "nextToken";
|
|
678
|
-
const _nVA = "notValidAfter";
|
|
679
|
-
const _nVB = "notValidBefore";
|
|
680
|
-
const _p = "path";
|
|
681
|
-
const _pA = "portalArn";
|
|
682
|
-
const _pAa = "pasteAllowed";
|
|
683
|
-
const _pAr = "printAllowed";
|
|
684
|
-
const _pCD = "portalCustomDomain";
|
|
685
|
-
const _pD = "patternDescription";
|
|
686
|
-
const _pE = "portalEndpoint";
|
|
687
|
-
const _pI = "portalId";
|
|
688
|
-
const _pN = "patternName";
|
|
689
|
-
const _pR = "patternRegex";
|
|
690
|
-
const _pS = "portalStatus";
|
|
691
|
-
const _po = "portal";
|
|
692
|
-
const _por = "portals";
|
|
693
|
-
const _qC = "quotaCode";
|
|
694
|
-
const _r = "reason";
|
|
695
|
-
const _rA = "resourceArn";
|
|
696
|
-
const _rAS = "retryAfterSeconds";
|
|
697
|
-
const _rI = "resourceId";
|
|
698
|
-
const _rN = "resourceName";
|
|
699
|
-
const _rPH = "redactionPlaceHolder";
|
|
700
|
-
const _rPHT = "redactionPlaceHolderType";
|
|
701
|
-
const _rPHTe = "redactionPlaceHolderText";
|
|
702
|
-
const _rT = "resourceType";
|
|
703
|
-
const _rTe = "rendererType";
|
|
704
|
-
const _s = "sensitive";
|
|
705
|
-
const _sB = "sortBy";
|
|
706
|
-
const _sC = "serviceCode";
|
|
707
|
-
const _sGI = "securityGroupIds";
|
|
708
|
-
const _sI = "subnetIds";
|
|
709
|
-
const _sIe = "sessionId";
|
|
710
|
-
const _sL = "sessionLogger";
|
|
711
|
-
const _sLA = "sessionLoggerArn";
|
|
712
|
-
const _sLe = "sessionLoggers";
|
|
713
|
-
const _sPSM = "serviceProviderSamlMetadata";
|
|
714
|
-
const _sR = "statusReason";
|
|
715
|
-
const _sT = "startTime";
|
|
716
|
-
const _sU = "s3Uri";
|
|
717
|
-
const _s_ = "s3";
|
|
718
|
-
const _se = "session";
|
|
719
|
-
const _ser = "server";
|
|
720
|
-
const _ses = "sessions";
|
|
721
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.workspacesweb";
|
|
722
|
-
const _st = "status";
|
|
723
|
-
const _su = "subject";
|
|
724
|
-
const _t = "text/markdown";
|
|
725
|
-
const _tC = "toolbarConfiguration";
|
|
726
|
-
const _tK = "tagKeys";
|
|
727
|
-
const _tOS = "termsOfService";
|
|
728
|
-
const _tS = "trustStore";
|
|
729
|
-
const _tSA = "trustStoreArn";
|
|
730
|
-
const _tSr = "trustStores";
|
|
731
|
-
const _tT = "toolbarType";
|
|
732
|
-
const _ta = "tags";
|
|
733
|
-
const _th = "thumbprint";
|
|
734
|
-
const _u = "username";
|
|
735
|
-
const _uA = "uploadAllowed";
|
|
736
|
-
const _uALS = "userAccessLoggingSettings";
|
|
737
|
-
const _uALSA = "userAccessLoggingSettingsArn";
|
|
738
|
-
const _uS = "userSettings";
|
|
739
|
-
const _uSA = "userSettingsArn";
|
|
740
|
-
const _vI = "vpcId";
|
|
741
|
-
const _vM = "visualMode";
|
|
742
|
-
const _w = "wallpaper";
|
|
743
|
-
const _wAA = "webAuthnAllowed";
|
|
744
|
-
const _wCFP = "webContentFilteringPolicy";
|
|
745
|
-
const _wT = "welcomeText";
|
|
746
|
-
const n0 = "com.amazonaws.workspacesweb";
|
|
747
|
-
var BrowserPolicy = [0, n0, _BP, 8, 0];
|
|
748
|
-
var BuiltInPatternId = [0, n0, _BIPI, 8, 0];
|
|
749
|
-
var CookieDomain = [0, n0, _CD, 8, 0];
|
|
750
|
-
var CookieName = [0, n0, _CN, 8, 0];
|
|
751
|
-
var CookiePath = [0, n0, _CP, 8, 0];
|
|
752
|
-
var Description = [0, n0, _D, 8, 0];
|
|
753
|
-
var DescriptionSafe = [0, n0, _DS, 8, 0];
|
|
754
|
-
var DisplayName = [0, n0, _DN, 8, 0];
|
|
755
|
-
var DisplayNameSafe = [0, n0, _DNS, 8, 0];
|
|
756
|
-
var IconImage = [0, n0, _II, { [_mT]: _i }, 21];
|
|
757
|
-
var IdentityProviderName = [0, n0, _IPN, 8, 0];
|
|
758
|
-
var InlineRedactionUrl = [0, n0, _IRU, 8, 0];
|
|
759
|
-
var IpAddress = [0, n0, _IA, 8, 0];
|
|
760
|
-
var IpRange = [0, n0, _IR, 8, 0];
|
|
761
|
-
var Markdown = [0, n0, _M, { [_mT]: _t, [_s]: 1 }, 0];
|
|
762
|
-
var PatternName = [0, n0, _PN, 8, 0];
|
|
763
|
-
var RedactionPlaceHolderText = [0, n0, _RPHT, 8, 0];
|
|
764
|
-
var Regex = [0, n0, _R, 8, 0];
|
|
765
|
-
var S3Bucket = [0, n0, _SB, 8, 0];
|
|
766
|
-
var S3KeyPrefix = [0, n0, _SKP, 8, 0];
|
|
767
|
-
var TagKey = [0, n0, _TK, 8, 0];
|
|
768
|
-
var TagValue = [0, n0, _TV, 8, 0];
|
|
769
|
-
var UrlPattern = [0, n0, _UP, 8, 0];
|
|
770
|
-
var Username = [0, n0, _U, 8, 0];
|
|
771
|
-
var WallpaperImage = [0, n0, _WI, { [_mT]: _i }, 21];
|
|
772
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
773
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
774
|
-
[_m],
|
|
775
|
-
[0]
|
|
776
|
-
];
|
|
777
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
778
|
-
var AssociateBrowserSettingsRequest$ = [3, n0, _ABSR,
|
|
779
|
-
0,
|
|
780
|
-
[_pA, _bSA],
|
|
781
|
-
[[0, 1], [0, { [_hQ]: _bSA }]], 2
|
|
782
|
-
];
|
|
783
|
-
var AssociateBrowserSettingsResponse$ = [3, n0, _ABSRs,
|
|
784
|
-
0,
|
|
785
|
-
[_pA, _bSA],
|
|
786
|
-
[0, 0], 2
|
|
787
|
-
];
|
|
788
|
-
var AssociateDataProtectionSettingsRequest$ = [3, n0, _ADPSR,
|
|
789
|
-
0,
|
|
790
|
-
[_pA, _dPSA],
|
|
791
|
-
[[0, 1], [0, { [_hQ]: _dPSA }]], 2
|
|
792
|
-
];
|
|
793
|
-
var AssociateDataProtectionSettingsResponse$ = [3, n0, _ADPSRs,
|
|
794
|
-
0,
|
|
795
|
-
[_pA, _dPSA],
|
|
796
|
-
[0, 0], 2
|
|
797
|
-
];
|
|
798
|
-
var AssociateIpAccessSettingsRequest$ = [3, n0, _AIASR,
|
|
799
|
-
0,
|
|
800
|
-
[_pA, _iASA],
|
|
801
|
-
[[0, 1], [0, { [_hQ]: _iASA }]], 2
|
|
802
|
-
];
|
|
803
|
-
var AssociateIpAccessSettingsResponse$ = [3, n0, _AIASRs,
|
|
804
|
-
0,
|
|
805
|
-
[_pA, _iASA],
|
|
806
|
-
[0, 0], 2
|
|
807
|
-
];
|
|
808
|
-
var AssociateNetworkSettingsRequest$ = [3, n0, _ANSR,
|
|
809
|
-
0,
|
|
810
|
-
[_pA, _nSA],
|
|
811
|
-
[[0, 1], [0, { [_hQ]: _nSA }]], 2
|
|
812
|
-
];
|
|
813
|
-
var AssociateNetworkSettingsResponse$ = [3, n0, _ANSRs,
|
|
814
|
-
0,
|
|
815
|
-
[_pA, _nSA],
|
|
816
|
-
[0, 0], 2
|
|
817
|
-
];
|
|
818
|
-
var AssociateSessionLoggerRequest$ = [3, n0, _ASLR,
|
|
819
|
-
0,
|
|
820
|
-
[_pA, _sLA],
|
|
821
|
-
[[0, 1], [0, { [_hQ]: _sLA }]], 2
|
|
822
|
-
];
|
|
823
|
-
var AssociateSessionLoggerResponse$ = [3, n0, _ASLRs,
|
|
824
|
-
0,
|
|
825
|
-
[_pA, _sLA],
|
|
826
|
-
[0, 0], 2
|
|
827
|
-
];
|
|
828
|
-
var AssociateTrustStoreRequest$ = [3, n0, _ATSR,
|
|
829
|
-
0,
|
|
830
|
-
[_pA, _tSA],
|
|
831
|
-
[[0, 1], [0, { [_hQ]: _tSA }]], 2
|
|
832
|
-
];
|
|
833
|
-
var AssociateTrustStoreResponse$ = [3, n0, _ATSRs,
|
|
834
|
-
0,
|
|
835
|
-
[_pA, _tSA],
|
|
836
|
-
[0, 0], 2
|
|
837
|
-
];
|
|
838
|
-
var AssociateUserAccessLoggingSettingsRequest$ = [3, n0, _AUALSR,
|
|
839
|
-
0,
|
|
840
|
-
[_pA, _uALSA],
|
|
841
|
-
[[0, 1], [0, { [_hQ]: _uALSA }]], 2
|
|
842
|
-
];
|
|
843
|
-
var AssociateUserAccessLoggingSettingsResponse$ = [3, n0, _AUALSRs,
|
|
844
|
-
0,
|
|
845
|
-
[_pA, _uALSA],
|
|
846
|
-
[0, 0], 2
|
|
847
|
-
];
|
|
848
|
-
var AssociateUserSettingsRequest$ = [3, n0, _AUSR,
|
|
849
|
-
0,
|
|
850
|
-
[_pA, _uSA],
|
|
851
|
-
[[0, 1], [0, { [_hQ]: _uSA }]], 2
|
|
852
|
-
];
|
|
853
|
-
var AssociateUserSettingsResponse$ = [3, n0, _AUSRs,
|
|
854
|
-
0,
|
|
855
|
-
[_pA, _uSA],
|
|
856
|
-
[0, 0], 2
|
|
857
|
-
];
|
|
858
|
-
var BrandingConfiguration$ = [3, n0, _BC,
|
|
859
|
-
0,
|
|
860
|
-
[_l, _w, _f, _lS, _cT, _tOS],
|
|
861
|
-
[() => ImageMetadata$, () => ImageMetadata$, () => ImageMetadata$, () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]], 5
|
|
862
|
-
];
|
|
863
|
-
var BrandingConfigurationCreateInput$ = [3, n0, _BCCI,
|
|
864
|
-
0,
|
|
865
|
-
[_l, _w, _f, _lS, _cT, _tOS],
|
|
866
|
-
[[() => IconImageInput$, 0], [() => WallpaperImageInput$, 0], [() => IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]], 5
|
|
867
|
-
];
|
|
868
|
-
var BrandingConfigurationUpdateInput$ = [3, n0, _BCUI,
|
|
869
|
-
0,
|
|
870
|
-
[_l, _w, _f, _lS, _cT, _tOS],
|
|
871
|
-
[[() => IconImageInput$, 0], [() => WallpaperImageInput$, 0], [() => IconImageInput$, 0], () => LocalizedBrandingStringMap, 0, [() => Markdown, 0]]
|
|
872
|
-
];
|
|
873
|
-
var BrowserSettings$ = [3, n0, _BS,
|
|
874
|
-
0,
|
|
875
|
-
[_bSA, _aPA, _bP, _cMK, _aEC, _wCFP],
|
|
876
|
-
[0, 64 | 0, [() => BrowserPolicy, 0], 0, 128 | 0, [() => WebContentFilteringPolicy$, 0]], 1
|
|
877
|
-
];
|
|
878
|
-
var BrowserSettingsSummary$ = [3, n0, _BSS,
|
|
879
|
-
0,
|
|
880
|
-
[_bSA],
|
|
881
|
-
[0], 1
|
|
882
|
-
];
|
|
883
|
-
var Certificate$ = [3, n0, _C,
|
|
884
|
-
0,
|
|
885
|
-
[_th, _su, _is, _nVB, _nVA, _b],
|
|
886
|
-
[0, 0, 0, 4, 4, 21]
|
|
887
|
-
];
|
|
888
|
-
var CertificateSummary$ = [3, n0, _CS,
|
|
889
|
-
0,
|
|
890
|
-
[_th, _su, _is, _nVB, _nVA],
|
|
891
|
-
[0, 0, 0, 4, 4]
|
|
892
|
-
];
|
|
893
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
894
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
895
|
-
[_m, _rI, _rT],
|
|
896
|
-
[0, 0, 0]
|
|
897
|
-
];
|
|
898
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
899
|
-
var CookieSpecification$ = [3, n0, _CSo,
|
|
900
|
-
0,
|
|
901
|
-
[_d, _n, _p],
|
|
902
|
-
[[() => CookieDomain, 0], [() => CookieName, 0], [() => CookiePath, 0]], 1
|
|
903
|
-
];
|
|
904
|
-
var CookieSynchronizationConfiguration$ = [3, n0, _CSC,
|
|
905
|
-
8,
|
|
906
|
-
[_a, _bl],
|
|
907
|
-
[[() => CookieSpecifications, 0], [() => CookieSpecifications, 0]], 1
|
|
908
|
-
];
|
|
909
|
-
var CreateBrowserSettingsRequest$ = [3, n0, _CBSR,
|
|
910
|
-
0,
|
|
911
|
-
[_ta, _cMK, _aEC, _bP, _cTl, _wCFP],
|
|
912
|
-
[[() => TagList, 0], 0, 128 | 0, [() => BrowserPolicy, 0], [0, 4], [() => WebContentFilteringPolicy$, 0]]
|
|
913
|
-
];
|
|
914
|
-
var CreateBrowserSettingsResponse$ = [3, n0, _CBSRr,
|
|
915
|
-
0,
|
|
916
|
-
[_bSA],
|
|
917
|
-
[0], 1
|
|
918
|
-
];
|
|
919
|
-
var CreateDataProtectionSettingsRequest$ = [3, n0, _CDPSR,
|
|
920
|
-
0,
|
|
921
|
-
[_dN, _de, _ta, _cMK, _aEC, _iRC, _cTl],
|
|
922
|
-
[[() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], [() => TagList, 0], 0, 128 | 0, [() => InlineRedactionConfiguration$, 0], [0, 4]]
|
|
923
|
-
];
|
|
924
|
-
var CreateDataProtectionSettingsResponse$ = [3, n0, _CDPSRr,
|
|
925
|
-
0,
|
|
926
|
-
[_dPSA],
|
|
927
|
-
[0], 1
|
|
928
|
-
];
|
|
929
|
-
var CreateIdentityProviderRequest$ = [3, n0, _CIPR,
|
|
930
|
-
0,
|
|
931
|
-
[_pA, _iPN, _iPT, _iPD, _cTl, _ta],
|
|
932
|
-
[0, [() => IdentityProviderName, 0], 0, [() => IdentityProviderDetails, 0], [0, 4], [() => TagList, 0]], 4
|
|
933
|
-
];
|
|
934
|
-
var CreateIdentityProviderResponse$ = [3, n0, _CIPRr,
|
|
935
|
-
0,
|
|
936
|
-
[_iPA],
|
|
937
|
-
[0], 1
|
|
938
|
-
];
|
|
939
|
-
var CreateIpAccessSettingsRequest$ = [3, n0, _CIASR,
|
|
940
|
-
0,
|
|
941
|
-
[_iR, _dN, _de, _ta, _cMK, _aEC, _cTl],
|
|
942
|
-
[[() => IpRuleList, 0], [() => DisplayName, 0], [() => Description, 0], [() => TagList, 0], 0, 128 | 0, [0, 4]], 1
|
|
943
|
-
];
|
|
944
|
-
var CreateIpAccessSettingsResponse$ = [3, n0, _CIASRr,
|
|
945
|
-
0,
|
|
946
|
-
[_iASA],
|
|
947
|
-
[0], 1
|
|
948
|
-
];
|
|
949
|
-
var CreateNetworkSettingsRequest$ = [3, n0, _CNSR,
|
|
950
|
-
0,
|
|
951
|
-
[_vI, _sI, _sGI, _ta, _cTl],
|
|
952
|
-
[0, 64 | 0, 64 | 0, [() => TagList, 0], [0, 4]], 3
|
|
953
|
-
];
|
|
954
|
-
var CreateNetworkSettingsResponse$ = [3, n0, _CNSRr,
|
|
955
|
-
0,
|
|
956
|
-
[_nSA],
|
|
957
|
-
[0], 1
|
|
958
|
-
];
|
|
959
|
-
var CreatePortalRequest$ = [3, n0, _CPR,
|
|
960
|
-
0,
|
|
961
|
-
[_dN, _ta, _cMK, _aEC, _cTl, _aT, _iT, _mCS, _pCD],
|
|
962
|
-
[[() => DisplayName, 0], [() => TagList, 0], 0, 128 | 0, [0, 4], 0, 0, 1, 0]
|
|
963
|
-
];
|
|
964
|
-
var CreatePortalResponse$ = [3, n0, _CPRr,
|
|
965
|
-
0,
|
|
966
|
-
[_pA, _pE],
|
|
967
|
-
[0, 0], 2
|
|
968
|
-
];
|
|
969
|
-
var CreateSessionLoggerRequest$ = [3, n0, _CSLR,
|
|
970
|
-
0,
|
|
971
|
-
[_eF, _lC, _dN, _cMK, _aEC, _ta, _cTl],
|
|
972
|
-
[() => EventFilter$, [() => LogConfiguration$, 0], [() => DisplayNameSafe, 0], 0, 128 | 0, [() => TagList, 0], [0, 4]], 2
|
|
973
|
-
];
|
|
974
|
-
var CreateSessionLoggerResponse$ = [3, n0, _CSLRr,
|
|
975
|
-
0,
|
|
976
|
-
[_sLA],
|
|
977
|
-
[0], 1
|
|
978
|
-
];
|
|
979
|
-
var CreateTrustStoreRequest$ = [3, n0, _CTSR,
|
|
980
|
-
0,
|
|
981
|
-
[_cL, _ta, _cTl],
|
|
982
|
-
[64 | 21, [() => TagList, 0], [0, 4]], 1
|
|
983
|
-
];
|
|
984
|
-
var CreateTrustStoreResponse$ = [3, n0, _CTSRr,
|
|
985
|
-
0,
|
|
986
|
-
[_tSA],
|
|
987
|
-
[0], 1
|
|
988
|
-
];
|
|
989
|
-
var CreateUserAccessLoggingSettingsRequest$ = [3, n0, _CUALSR,
|
|
990
|
-
0,
|
|
991
|
-
[_kSA, _ta, _cTl],
|
|
992
|
-
[0, [() => TagList, 0], [0, 4]], 1
|
|
993
|
-
];
|
|
994
|
-
var CreateUserAccessLoggingSettingsResponse$ = [3, n0, _CUALSRr,
|
|
995
|
-
0,
|
|
996
|
-
[_uALSA],
|
|
997
|
-
[0], 1
|
|
998
|
-
];
|
|
999
|
-
var CreateUserSettingsRequest$ = [3, n0, _CUSR,
|
|
1000
|
-
0,
|
|
1001
|
-
[_cA, _pAa, _dA, _uA, _pAr, _ta, _dTIM, _iDTIM, _cTl, _cSC, _cMK, _aEC, _dLA, _tC, _bCI, _wAA],
|
|
1002
|
-
[0, 0, 0, 0, 0, [() => TagList, 0], 1, 1, [0, 4], [() => CookieSynchronizationConfiguration$, 0], 0, 128 | 0, 0, () => ToolbarConfiguration$, [() => BrandingConfigurationCreateInput$, 0], 0], 5
|
|
1003
|
-
];
|
|
1004
|
-
var CreateUserSettingsResponse$ = [3, n0, _CUSRr,
|
|
1005
|
-
0,
|
|
1006
|
-
[_uSA],
|
|
1007
|
-
[0], 1
|
|
1008
|
-
];
|
|
1009
|
-
var CustomPattern$ = [3, n0, _CPu,
|
|
1010
|
-
0,
|
|
1011
|
-
[_pN, _pR, _pD, _kR],
|
|
1012
|
-
[[() => PatternName, 0], [() => Regex, 0], [() => DescriptionSafe, 0], [() => Regex, 0]], 2
|
|
1013
|
-
];
|
|
1014
|
-
var DataProtectionSettings$ = [3, n0, _DPS,
|
|
1015
|
-
0,
|
|
1016
|
-
[_dPSA, _iRC, _aPA, _dN, _de, _cD, _cMK, _aEC],
|
|
1017
|
-
[0, [() => InlineRedactionConfiguration$, 0], 64 | 0, [() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], 4, 0, 128 | 0], 1
|
|
1018
|
-
];
|
|
1019
|
-
var DataProtectionSettingsSummary$ = [3, n0, _DPSS,
|
|
1020
|
-
0,
|
|
1021
|
-
[_dPSA, _dN, _de, _cD],
|
|
1022
|
-
[0, [() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], 4], 1
|
|
1023
|
-
];
|
|
1024
|
-
var DeleteBrowserSettingsRequest$ = [3, n0, _DBSR,
|
|
1025
|
-
0,
|
|
1026
|
-
[_bSA],
|
|
1027
|
-
[[0, 1]], 1
|
|
1028
|
-
];
|
|
1029
|
-
var DeleteBrowserSettingsResponse$ = [3, n0, _DBSRe,
|
|
1030
|
-
0,
|
|
1031
|
-
[],
|
|
1032
|
-
[]
|
|
1033
|
-
];
|
|
1034
|
-
var DeleteDataProtectionSettingsRequest$ = [3, n0, _DDPSR,
|
|
1035
|
-
0,
|
|
1036
|
-
[_dPSA],
|
|
1037
|
-
[[0, 1]], 1
|
|
1038
|
-
];
|
|
1039
|
-
var DeleteDataProtectionSettingsResponse$ = [3, n0, _DDPSRe,
|
|
1040
|
-
0,
|
|
1041
|
-
[],
|
|
1042
|
-
[]
|
|
1043
|
-
];
|
|
1044
|
-
var DeleteIdentityProviderRequest$ = [3, n0, _DIPR,
|
|
1045
|
-
0,
|
|
1046
|
-
[_iPA],
|
|
1047
|
-
[[0, 1]], 1
|
|
1048
|
-
];
|
|
1049
|
-
var DeleteIdentityProviderResponse$ = [3, n0, _DIPRe,
|
|
1050
|
-
0,
|
|
1051
|
-
[],
|
|
1052
|
-
[]
|
|
1053
|
-
];
|
|
1054
|
-
var DeleteIpAccessSettingsRequest$ = [3, n0, _DIASR,
|
|
1055
|
-
0,
|
|
1056
|
-
[_iASA],
|
|
1057
|
-
[[0, 1]], 1
|
|
1058
|
-
];
|
|
1059
|
-
var DeleteIpAccessSettingsResponse$ = [3, n0, _DIASRe,
|
|
1060
|
-
0,
|
|
1061
|
-
[],
|
|
1062
|
-
[]
|
|
1063
|
-
];
|
|
1064
|
-
var DeleteNetworkSettingsRequest$ = [3, n0, _DNSR,
|
|
1065
|
-
0,
|
|
1066
|
-
[_nSA],
|
|
1067
|
-
[[0, 1]], 1
|
|
1068
|
-
];
|
|
1069
|
-
var DeleteNetworkSettingsResponse$ = [3, n0, _DNSRe,
|
|
1070
|
-
0,
|
|
1071
|
-
[],
|
|
1072
|
-
[]
|
|
1073
|
-
];
|
|
1074
|
-
var DeletePortalRequest$ = [3, n0, _DPR,
|
|
1075
|
-
0,
|
|
1076
|
-
[_pA],
|
|
1077
|
-
[[0, 1]], 1
|
|
1078
|
-
];
|
|
1079
|
-
var DeletePortalResponse$ = [3, n0, _DPRe,
|
|
1080
|
-
0,
|
|
1081
|
-
[],
|
|
1082
|
-
[]
|
|
1083
|
-
];
|
|
1084
|
-
var DeleteSessionLoggerRequest$ = [3, n0, _DSLR,
|
|
1085
|
-
0,
|
|
1086
|
-
[_sLA],
|
|
1087
|
-
[[0, 1]], 1
|
|
1088
|
-
];
|
|
1089
|
-
var DeleteSessionLoggerResponse$ = [3, n0, _DSLRe,
|
|
1090
|
-
0,
|
|
1091
|
-
[],
|
|
1092
|
-
[]
|
|
1093
|
-
];
|
|
1094
|
-
var DeleteTrustStoreRequest$ = [3, n0, _DTSR,
|
|
1095
|
-
0,
|
|
1096
|
-
[_tSA],
|
|
1097
|
-
[[0, 1]], 1
|
|
1098
|
-
];
|
|
1099
|
-
var DeleteTrustStoreResponse$ = [3, n0, _DTSRe,
|
|
1100
|
-
0,
|
|
1101
|
-
[],
|
|
1102
|
-
[]
|
|
1103
|
-
];
|
|
1104
|
-
var DeleteUserAccessLoggingSettingsRequest$ = [3, n0, _DUALSR,
|
|
1105
|
-
0,
|
|
1106
|
-
[_uALSA],
|
|
1107
|
-
[[0, 1]], 1
|
|
1108
|
-
];
|
|
1109
|
-
var DeleteUserAccessLoggingSettingsResponse$ = [3, n0, _DUALSRe,
|
|
1110
|
-
0,
|
|
1111
|
-
[],
|
|
1112
|
-
[]
|
|
1113
|
-
];
|
|
1114
|
-
var DeleteUserSettingsRequest$ = [3, n0, _DUSR,
|
|
1115
|
-
0,
|
|
1116
|
-
[_uSA],
|
|
1117
|
-
[[0, 1]], 1
|
|
1118
|
-
];
|
|
1119
|
-
var DeleteUserSettingsResponse$ = [3, n0, _DUSRe,
|
|
1120
|
-
0,
|
|
1121
|
-
[],
|
|
1122
|
-
[]
|
|
1123
|
-
];
|
|
1124
|
-
var DisassociateBrowserSettingsRequest$ = [3, n0, _DBSRi,
|
|
1125
|
-
0,
|
|
1126
|
-
[_pA],
|
|
1127
|
-
[[0, 1]], 1
|
|
1128
|
-
];
|
|
1129
|
-
var DisassociateBrowserSettingsResponse$ = [3, n0, _DBSRis,
|
|
1130
|
-
0,
|
|
1131
|
-
[],
|
|
1132
|
-
[]
|
|
1133
|
-
];
|
|
1134
|
-
var DisassociateDataProtectionSettingsRequest$ = [3, n0, _DDPSRi,
|
|
1135
|
-
0,
|
|
1136
|
-
[_pA],
|
|
1137
|
-
[[0, 1]], 1
|
|
1138
|
-
];
|
|
1139
|
-
var DisassociateDataProtectionSettingsResponse$ = [3, n0, _DDPSRis,
|
|
1140
|
-
0,
|
|
1141
|
-
[],
|
|
1142
|
-
[]
|
|
1143
|
-
];
|
|
1144
|
-
var DisassociateIpAccessSettingsRequest$ = [3, n0, _DIASRi,
|
|
1145
|
-
0,
|
|
1146
|
-
[_pA],
|
|
1147
|
-
[[0, 1]], 1
|
|
1148
|
-
];
|
|
1149
|
-
var DisassociateIpAccessSettingsResponse$ = [3, n0, _DIASRis,
|
|
1150
|
-
0,
|
|
1151
|
-
[],
|
|
1152
|
-
[]
|
|
1153
|
-
];
|
|
1154
|
-
var DisassociateNetworkSettingsRequest$ = [3, n0, _DNSRi,
|
|
1155
|
-
0,
|
|
1156
|
-
[_pA],
|
|
1157
|
-
[[0, 1]], 1
|
|
1158
|
-
];
|
|
1159
|
-
var DisassociateNetworkSettingsResponse$ = [3, n0, _DNSRis,
|
|
1160
|
-
0,
|
|
1161
|
-
[],
|
|
1162
|
-
[]
|
|
1163
|
-
];
|
|
1164
|
-
var DisassociateSessionLoggerRequest$ = [3, n0, _DSLRi,
|
|
1165
|
-
0,
|
|
1166
|
-
[_pA],
|
|
1167
|
-
[[0, 1]], 1
|
|
1168
|
-
];
|
|
1169
|
-
var DisassociateSessionLoggerResponse$ = [3, n0, _DSLRis,
|
|
1170
|
-
0,
|
|
1171
|
-
[],
|
|
1172
|
-
[]
|
|
1173
|
-
];
|
|
1174
|
-
var DisassociateTrustStoreRequest$ = [3, n0, _DTSRi,
|
|
1175
|
-
0,
|
|
1176
|
-
[_pA],
|
|
1177
|
-
[[0, 1]], 1
|
|
1178
|
-
];
|
|
1179
|
-
var DisassociateTrustStoreResponse$ = [3, n0, _DTSRis,
|
|
1180
|
-
0,
|
|
1181
|
-
[],
|
|
1182
|
-
[]
|
|
1183
|
-
];
|
|
1184
|
-
var DisassociateUserAccessLoggingSettingsRequest$ = [3, n0, _DUALSRi,
|
|
1185
|
-
0,
|
|
1186
|
-
[_pA],
|
|
1187
|
-
[[0, 1]], 1
|
|
1188
|
-
];
|
|
1189
|
-
var DisassociateUserAccessLoggingSettingsResponse$ = [3, n0, _DUALSRis,
|
|
1190
|
-
0,
|
|
1191
|
-
[],
|
|
1192
|
-
[]
|
|
1193
|
-
];
|
|
1194
|
-
var DisassociateUserSettingsRequest$ = [3, n0, _DUSRi,
|
|
1195
|
-
0,
|
|
1196
|
-
[_pA],
|
|
1197
|
-
[[0, 1]], 1
|
|
1198
|
-
];
|
|
1199
|
-
var DisassociateUserSettingsResponse$ = [3, n0, _DUSRis,
|
|
1200
|
-
0,
|
|
1201
|
-
[],
|
|
1202
|
-
[]
|
|
1203
|
-
];
|
|
1204
|
-
var ExpireSessionRequest$ = [3, n0, _ESR,
|
|
1205
|
-
0,
|
|
1206
|
-
[_pI, _sIe],
|
|
1207
|
-
[[0, 1], [0, 1]], 2
|
|
1208
|
-
];
|
|
1209
|
-
var ExpireSessionResponse$ = [3, n0, _ESRx,
|
|
1210
|
-
0,
|
|
1211
|
-
[],
|
|
1212
|
-
[]
|
|
1213
|
-
];
|
|
1214
|
-
var GetBrowserSettingsRequest$ = [3, n0, _GBSR,
|
|
1215
|
-
0,
|
|
1216
|
-
[_bSA],
|
|
1217
|
-
[[0, 1]], 1
|
|
1218
|
-
];
|
|
1219
|
-
var GetBrowserSettingsResponse$ = [3, n0, _GBSRe,
|
|
1220
|
-
0,
|
|
1221
|
-
[_bS],
|
|
1222
|
-
[[() => BrowserSettings$, 0]]
|
|
1223
|
-
];
|
|
1224
|
-
var GetDataProtectionSettingsRequest$ = [3, n0, _GDPSR,
|
|
1225
|
-
0,
|
|
1226
|
-
[_dPSA],
|
|
1227
|
-
[[0, 1]], 1
|
|
1228
|
-
];
|
|
1229
|
-
var GetDataProtectionSettingsResponse$ = [3, n0, _GDPSRe,
|
|
1230
|
-
0,
|
|
1231
|
-
[_dPS],
|
|
1232
|
-
[[() => DataProtectionSettings$, 0]]
|
|
1233
|
-
];
|
|
1234
|
-
var GetIdentityProviderRequest$ = [3, n0, _GIPR,
|
|
1235
|
-
0,
|
|
1236
|
-
[_iPA],
|
|
1237
|
-
[[0, 1]], 1
|
|
1238
|
-
];
|
|
1239
|
-
var GetIdentityProviderResponse$ = [3, n0, _GIPRe,
|
|
1240
|
-
0,
|
|
1241
|
-
[_iP],
|
|
1242
|
-
[[() => IdentityProvider$, 0]]
|
|
1243
|
-
];
|
|
1244
|
-
var GetIpAccessSettingsRequest$ = [3, n0, _GIASR,
|
|
1245
|
-
0,
|
|
1246
|
-
[_iASA],
|
|
1247
|
-
[[0, 1]], 1
|
|
1248
|
-
];
|
|
1249
|
-
var GetIpAccessSettingsResponse$ = [3, n0, _GIASRe,
|
|
1250
|
-
0,
|
|
1251
|
-
[_iAS],
|
|
1252
|
-
[[() => IpAccessSettings$, 0]]
|
|
1253
|
-
];
|
|
1254
|
-
var GetNetworkSettingsRequest$ = [3, n0, _GNSR,
|
|
1255
|
-
0,
|
|
1256
|
-
[_nSA],
|
|
1257
|
-
[[0, 1]], 1
|
|
1258
|
-
];
|
|
1259
|
-
var GetNetworkSettingsResponse$ = [3, n0, _GNSRe,
|
|
1260
|
-
0,
|
|
1261
|
-
[_nS],
|
|
1262
|
-
[() => NetworkSettings$]
|
|
1263
|
-
];
|
|
1264
|
-
var GetPortalRequest$ = [3, n0, _GPR,
|
|
1265
|
-
0,
|
|
1266
|
-
[_pA],
|
|
1267
|
-
[[0, 1]], 1
|
|
1268
|
-
];
|
|
1269
|
-
var GetPortalResponse$ = [3, n0, _GPRe,
|
|
1270
|
-
0,
|
|
1271
|
-
[_po],
|
|
1272
|
-
[[() => Portal$, 0]]
|
|
1273
|
-
];
|
|
1274
|
-
var GetPortalServiceProviderMetadataRequest$ = [3, n0, _GPSPMR,
|
|
1275
|
-
0,
|
|
1276
|
-
[_pA],
|
|
1277
|
-
[[0, 1]], 1
|
|
1278
|
-
];
|
|
1279
|
-
var GetPortalServiceProviderMetadataResponse$ = [3, n0, _GPSPMRe,
|
|
1280
|
-
0,
|
|
1281
|
-
[_pA, _sPSM],
|
|
1282
|
-
[0, 0], 1
|
|
1283
|
-
];
|
|
1284
|
-
var GetSessionLoggerRequest$ = [3, n0, _GSLR,
|
|
1285
|
-
0,
|
|
1286
|
-
[_sLA],
|
|
1287
|
-
[[0, 1]], 1
|
|
1288
|
-
];
|
|
1289
|
-
var GetSessionLoggerResponse$ = [3, n0, _GSLRe,
|
|
1290
|
-
0,
|
|
1291
|
-
[_sL],
|
|
1292
|
-
[[() => SessionLogger$, 0]]
|
|
1293
|
-
];
|
|
1294
|
-
var GetSessionRequest$ = [3, n0, _GSR,
|
|
1295
|
-
0,
|
|
1296
|
-
[_pI, _sIe],
|
|
1297
|
-
[[0, 1], [0, 1]], 2
|
|
1298
|
-
];
|
|
1299
|
-
var GetSessionResponse$ = [3, n0, _GSRe,
|
|
1300
|
-
0,
|
|
1301
|
-
[_se],
|
|
1302
|
-
[[() => Session$, 0]]
|
|
1303
|
-
];
|
|
1304
|
-
var GetTrustStoreCertificateRequest$ = [3, n0, _GTSCR,
|
|
1305
|
-
0,
|
|
1306
|
-
[_tSA, _th],
|
|
1307
|
-
[[0, 1], [0, { [_hQ]: _th }]], 2
|
|
1308
|
-
];
|
|
1309
|
-
var GetTrustStoreCertificateResponse$ = [3, n0, _GTSCRe,
|
|
1310
|
-
0,
|
|
1311
|
-
[_tSA, _ce],
|
|
1312
|
-
[0, () => Certificate$], 1
|
|
1313
|
-
];
|
|
1314
|
-
var GetTrustStoreRequest$ = [3, n0, _GTSR,
|
|
1315
|
-
0,
|
|
1316
|
-
[_tSA],
|
|
1317
|
-
[[0, 1]], 1
|
|
1318
|
-
];
|
|
1319
|
-
var GetTrustStoreResponse$ = [3, n0, _GTSRe,
|
|
1320
|
-
0,
|
|
1321
|
-
[_tS],
|
|
1322
|
-
[() => TrustStore$]
|
|
1323
|
-
];
|
|
1324
|
-
var GetUserAccessLoggingSettingsRequest$ = [3, n0, _GUALSR,
|
|
1325
|
-
0,
|
|
1326
|
-
[_uALSA],
|
|
1327
|
-
[[0, 1]], 1
|
|
1328
|
-
];
|
|
1329
|
-
var GetUserAccessLoggingSettingsResponse$ = [3, n0, _GUALSRe,
|
|
1330
|
-
0,
|
|
1331
|
-
[_uALS],
|
|
1332
|
-
[() => UserAccessLoggingSettings$]
|
|
1333
|
-
];
|
|
1334
|
-
var GetUserSettingsRequest$ = [3, n0, _GUSR,
|
|
1335
|
-
0,
|
|
1336
|
-
[_uSA],
|
|
1337
|
-
[[0, 1]], 1
|
|
1338
|
-
];
|
|
1339
|
-
var GetUserSettingsResponse$ = [3, n0, _GUSRe,
|
|
1340
|
-
0,
|
|
1341
|
-
[_uS],
|
|
1342
|
-
[[() => UserSettings$, 0]]
|
|
1343
|
-
];
|
|
1344
|
-
var IdentityProvider$ = [3, n0, _IP,
|
|
1345
|
-
0,
|
|
1346
|
-
[_iPA, _iPN, _iPT, _iPD],
|
|
1347
|
-
[0, [() => IdentityProviderName, 0], 0, [() => IdentityProviderDetails, 0]], 1
|
|
1348
|
-
];
|
|
1349
|
-
var IdentityProviderSummary$ = [3, n0, _IPS,
|
|
1350
|
-
0,
|
|
1351
|
-
[_iPA, _iPN, _iPT],
|
|
1352
|
-
[0, [() => IdentityProviderName, 0], 0], 1
|
|
1353
|
-
];
|
|
1354
|
-
var ImageMetadata$ = [3, n0, _IM,
|
|
1355
|
-
0,
|
|
1356
|
-
[_mTi, _fE, _lUT],
|
|
1357
|
-
[0, 0, 4], 3
|
|
1358
|
-
];
|
|
1359
|
-
var InlineRedactionConfiguration$ = [3, n0, _IRC,
|
|
1360
|
-
0,
|
|
1361
|
-
[_iRP, _gEU, _gEUl, _gCL],
|
|
1362
|
-
[[() => InlineRedactionPatterns, 0], [() => GlobalInlineRedactionUrls, 0], [() => GlobalInlineRedactionUrls, 0], 1], 1
|
|
1363
|
-
];
|
|
1364
|
-
var InlineRedactionPattern$ = [3, n0, _IRP,
|
|
1365
|
-
0,
|
|
1366
|
-
[_rPH, _bIPI, _cP, _eU, _eUx, _cLo],
|
|
1367
|
-
[[() => RedactionPlaceHolder$, 0], [() => BuiltInPatternId, 0], [() => CustomPattern$, 0], [() => InlineRedactionUrls, 0], [() => InlineRedactionUrls, 0], 1], 1
|
|
1368
|
-
];
|
|
1369
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1370
|
-
{ [_e]: _ser, [_hE]: 500 },
|
|
1371
|
-
[_m, _rAS],
|
|
1372
|
-
[0, [1, { [_hH]: _RA }]]
|
|
1373
|
-
];
|
|
1374
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1375
|
-
var IpAccessSettings$ = [3, n0, _IAS,
|
|
1376
|
-
0,
|
|
1377
|
-
[_iASA, _aPA, _iR, _dN, _de, _cD, _cMK, _aEC],
|
|
1378
|
-
[0, 64 | 0, [() => IpRuleList, 0], [() => DisplayName, 0], [() => Description, 0], 4, 0, 128 | 0], 1
|
|
1379
|
-
];
|
|
1380
|
-
var IpAccessSettingsSummary$ = [3, n0, _IASS,
|
|
1381
|
-
0,
|
|
1382
|
-
[_iASA, _dN, _de, _cD],
|
|
1383
|
-
[0, [() => DisplayName, 0], [() => Description, 0], 4], 1
|
|
1384
|
-
];
|
|
1385
|
-
var IpRule$ = [3, n0, _IRp,
|
|
1386
|
-
0,
|
|
1387
|
-
[_iRp, _de],
|
|
1388
|
-
[[() => IpRange, 0], [() => Description, 0]], 1
|
|
1389
|
-
];
|
|
1390
|
-
var ListBrowserSettingsRequest$ = [3, n0, _LBSR,
|
|
1391
|
-
0,
|
|
1392
|
-
[_nT, _mR],
|
|
1393
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1394
|
-
];
|
|
1395
|
-
var ListBrowserSettingsResponse$ = [3, n0, _LBSRi,
|
|
1396
|
-
0,
|
|
1397
|
-
[_bS, _nT],
|
|
1398
|
-
[() => BrowserSettingsList, 0]
|
|
1399
|
-
];
|
|
1400
|
-
var ListDataProtectionSettingsRequest$ = [3, n0, _LDPSR,
|
|
1401
|
-
0,
|
|
1402
|
-
[_nT, _mR],
|
|
1403
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1404
|
-
];
|
|
1405
|
-
var ListDataProtectionSettingsResponse$ = [3, n0, _LDPSRi,
|
|
1406
|
-
0,
|
|
1407
|
-
[_dPS, _nT],
|
|
1408
|
-
[[() => DataProtectionSettingsList, 0], 0]
|
|
1409
|
-
];
|
|
1410
|
-
var ListIdentityProvidersRequest$ = [3, n0, _LIPR,
|
|
1411
|
-
0,
|
|
1412
|
-
[_pA, _nT, _mR],
|
|
1413
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1414
|
-
];
|
|
1415
|
-
var ListIdentityProvidersResponse$ = [3, n0, _LIPRi,
|
|
1416
|
-
0,
|
|
1417
|
-
[_nT, _iPd],
|
|
1418
|
-
[0, [() => IdentityProviderList, 0]]
|
|
1419
|
-
];
|
|
1420
|
-
var ListIpAccessSettingsRequest$ = [3, n0, _LIASR,
|
|
1421
|
-
0,
|
|
1422
|
-
[_nT, _mR],
|
|
1423
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1424
|
-
];
|
|
1425
|
-
var ListIpAccessSettingsResponse$ = [3, n0, _LIASRi,
|
|
1426
|
-
0,
|
|
1427
|
-
[_iAS, _nT],
|
|
1428
|
-
[[() => IpAccessSettingsList, 0], 0]
|
|
1429
|
-
];
|
|
1430
|
-
var ListNetworkSettingsRequest$ = [3, n0, _LNSR,
|
|
1431
|
-
0,
|
|
1432
|
-
[_nT, _mR],
|
|
1433
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1434
|
-
];
|
|
1435
|
-
var ListNetworkSettingsResponse$ = [3, n0, _LNSRi,
|
|
1436
|
-
0,
|
|
1437
|
-
[_nS, _nT],
|
|
1438
|
-
[() => NetworkSettingsList, 0]
|
|
1439
|
-
];
|
|
1440
|
-
var ListPortalsRequest$ = [3, n0, _LPR,
|
|
1441
|
-
0,
|
|
1442
|
-
[_nT, _mR],
|
|
1443
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1444
|
-
];
|
|
1445
|
-
var ListPortalsResponse$ = [3, n0, _LPRi,
|
|
1446
|
-
0,
|
|
1447
|
-
[_por, _nT],
|
|
1448
|
-
[[() => PortalList, 0], 0]
|
|
1449
|
-
];
|
|
1450
|
-
var ListSessionLoggersRequest$ = [3, n0, _LSLR,
|
|
1451
|
-
0,
|
|
1452
|
-
[_nT, _mR],
|
|
1453
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1454
|
-
];
|
|
1455
|
-
var ListSessionLoggersResponse$ = [3, n0, _LSLRi,
|
|
1456
|
-
0,
|
|
1457
|
-
[_sLe, _nT],
|
|
1458
|
-
[[() => SessionLoggerList, 0], 0]
|
|
1459
|
-
];
|
|
1460
|
-
var ListSessionsRequest$ = [3, n0, _LSR,
|
|
1461
|
-
0,
|
|
1462
|
-
[_pI, _u, _sIe, _sB, _st, _mR, _nT],
|
|
1463
|
-
[[0, 1], [() => Username, { [_hQ]: _u }], [0, { [_hQ]: _sIe }], [0, { [_hQ]: _sB }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
1464
|
-
];
|
|
1465
|
-
var ListSessionsResponse$ = [3, n0, _LSRi,
|
|
1466
|
-
0,
|
|
1467
|
-
[_ses, _nT],
|
|
1468
|
-
[[() => SessionSummaryList, 0], 0], 1
|
|
1469
|
-
];
|
|
1470
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1471
|
-
0,
|
|
1472
|
-
[_rA],
|
|
1473
|
-
[[0, 1]], 1
|
|
1474
|
-
];
|
|
1475
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1476
|
-
0,
|
|
1477
|
-
[_ta],
|
|
1478
|
-
[[() => TagList, 0]]
|
|
1479
|
-
];
|
|
1480
|
-
var ListTrustStoreCertificatesRequest$ = [3, n0, _LTSCR,
|
|
1481
|
-
0,
|
|
1482
|
-
[_tSA, _nT, _mR],
|
|
1483
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1484
|
-
];
|
|
1485
|
-
var ListTrustStoreCertificatesResponse$ = [3, n0, _LTSCRi,
|
|
1486
|
-
0,
|
|
1487
|
-
[_tSA, _cL, _nT],
|
|
1488
|
-
[0, () => CertificateSummaryList, 0], 1
|
|
1489
|
-
];
|
|
1490
|
-
var ListTrustStoresRequest$ = [3, n0, _LTSR,
|
|
1491
|
-
0,
|
|
1492
|
-
[_nT, _mR],
|
|
1493
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1494
|
-
];
|
|
1495
|
-
var ListTrustStoresResponse$ = [3, n0, _LTSRi,
|
|
1496
|
-
0,
|
|
1497
|
-
[_tSr, _nT],
|
|
1498
|
-
[() => TrustStoreSummaryList, 0]
|
|
1499
|
-
];
|
|
1500
|
-
var ListUserAccessLoggingSettingsRequest$ = [3, n0, _LUALSR,
|
|
1501
|
-
0,
|
|
1502
|
-
[_nT, _mR],
|
|
1503
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1504
|
-
];
|
|
1505
|
-
var ListUserAccessLoggingSettingsResponse$ = [3, n0, _LUALSRi,
|
|
1506
|
-
0,
|
|
1507
|
-
[_uALS, _nT],
|
|
1508
|
-
[() => UserAccessLoggingSettingsList, 0]
|
|
1509
|
-
];
|
|
1510
|
-
var ListUserSettingsRequest$ = [3, n0, _LUSR,
|
|
1511
|
-
0,
|
|
1512
|
-
[_nT, _mR],
|
|
1513
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1514
|
-
];
|
|
1515
|
-
var ListUserSettingsResponse$ = [3, n0, _LUSRi,
|
|
1516
|
-
0,
|
|
1517
|
-
[_uS, _nT],
|
|
1518
|
-
[[() => UserSettingsList, 0], 0]
|
|
1519
|
-
];
|
|
1520
|
-
var LocalizedBrandingStrings$ = [3, n0, _LBS,
|
|
1521
|
-
0,
|
|
1522
|
-
[_bTT, _wT, _lT, _lD, _lBT, _cLon, _cBT, _lTo],
|
|
1523
|
-
[0, 0, 0, 0, 0, 0, 0, 0], 2
|
|
1524
|
-
];
|
|
1525
|
-
var LogConfiguration$ = [3, n0, _LC,
|
|
1526
|
-
0,
|
|
1527
|
-
[_s_],
|
|
1528
|
-
[[() => S3LogConfiguration$, 0]]
|
|
1529
|
-
];
|
|
1530
|
-
var NetworkSettings$ = [3, n0, _NS,
|
|
1531
|
-
0,
|
|
1532
|
-
[_nSA, _aPA, _vI, _sI, _sGI],
|
|
1533
|
-
[0, 64 | 0, 0, 64 | 0, 64 | 0], 1
|
|
1534
|
-
];
|
|
1535
|
-
var NetworkSettingsSummary$ = [3, n0, _NSS,
|
|
1536
|
-
0,
|
|
1537
|
-
[_nSA, _vI],
|
|
1538
|
-
[0, 0], 1
|
|
1539
|
-
];
|
|
1540
|
-
var Portal$ = [3, n0, _P,
|
|
1541
|
-
0,
|
|
1542
|
-
[_pA, _rTe, _bT, _pS, _pE, _dN, _cD, _bSA, _dPSA, _uSA, _nSA, _sLA, _tSA, _sR, _uALSA, _aT, _iASA, _cMK, _aEC, _iT, _mCS, _pCD],
|
|
1543
|
-
[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
|
|
1544
|
-
];
|
|
1545
|
-
var PortalSummary$ = [3, n0, _PS,
|
|
1546
|
-
0,
|
|
1547
|
-
[_pA, _rTe, _bT, _pS, _pE, _dN, _cD, _bSA, _dPSA, _uSA, _nSA, _sLA, _tSA, _uALSA, _aT, _iASA, _iT, _mCS, _pCD],
|
|
1548
|
-
[0, 0, 0, 0, 0, [() => DisplayName, 0], 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], 1
|
|
1549
|
-
];
|
|
1550
|
-
var RedactionPlaceHolder$ = [3, n0, _RPH,
|
|
1551
|
-
0,
|
|
1552
|
-
[_rPHT, _rPHTe],
|
|
1553
|
-
[0, [() => RedactionPlaceHolderText, 0]], 1
|
|
1554
|
-
];
|
|
1555
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1556
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1557
|
-
[_m, _rI, _rT],
|
|
1558
|
-
[0, 0, 0]
|
|
1559
|
-
];
|
|
1560
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1561
|
-
var S3LogConfiguration$ = [3, n0, _SLC,
|
|
1562
|
-
0,
|
|
1563
|
-
[_bu, _lFF, _fS, _kP, _bO],
|
|
1564
|
-
[[() => S3Bucket, 0], 0, 0, [() => S3KeyPrefix, 0], 0], 3
|
|
1565
|
-
];
|
|
1566
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1567
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1568
|
-
[_m, _rI, _rT, _sC, _qC],
|
|
1569
|
-
[0, 0, 0, 0, 0]
|
|
1570
|
-
];
|
|
1571
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1572
|
-
var Session$ = [3, n0, _S,
|
|
1573
|
-
0,
|
|
1574
|
-
[_pA, _sIe, _u, _cIA, _st, _sT, _eT],
|
|
1575
|
-
[0, 0, [() => Username, 0], [() => IpAddressList, 0], 0, 4, 4]
|
|
1576
|
-
];
|
|
1577
|
-
var SessionLogger$ = [3, n0, _SL,
|
|
1578
|
-
0,
|
|
1579
|
-
[_sLA, _eF, _lC, _cMK, _aEC, _aPA, _dN, _cD],
|
|
1580
|
-
[0, () => EventFilter$, [() => LogConfiguration$, 0], 0, 128 | 0, 64 | 0, [() => DisplayNameSafe, 0], 4], 1
|
|
1581
|
-
];
|
|
1582
|
-
var SessionLoggerSummary$ = [3, n0, _SLS,
|
|
1583
|
-
0,
|
|
1584
|
-
[_sLA, _lC, _dN, _cD],
|
|
1585
|
-
[0, [() => LogConfiguration$, 0], [() => DisplayNameSafe, 0], 4], 1
|
|
1586
|
-
];
|
|
1587
|
-
var SessionSummary$ = [3, n0, _SS,
|
|
1588
|
-
0,
|
|
1589
|
-
[_pA, _sIe, _u, _st, _sT, _eT],
|
|
1590
|
-
[0, 0, [() => Username, 0], 0, 4, 4]
|
|
1591
|
-
];
|
|
1592
|
-
var Tag$ = [3, n0, _T,
|
|
1593
|
-
8,
|
|
1594
|
-
[_K, _V],
|
|
1595
|
-
[[() => TagKey, 0], [() => TagValue, 0]], 2
|
|
1596
|
-
];
|
|
1597
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1598
|
-
0,
|
|
1599
|
-
[_rA, _ta, _cTl],
|
|
1600
|
-
[[0, 1], [() => TagList, 0], [0, 4]], 2
|
|
1601
|
-
];
|
|
1602
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1603
|
-
0,
|
|
1604
|
-
[],
|
|
1605
|
-
[]
|
|
1606
|
-
];
|
|
1607
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1608
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1609
|
-
[_m, _sC, _qC, _rAS],
|
|
1610
|
-
[0, 0, 0, [1, { [_hH]: _RA }]]
|
|
1611
|
-
];
|
|
1612
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1613
|
-
var ToolbarConfiguration$ = [3, n0, _TC,
|
|
1614
|
-
0,
|
|
1615
|
-
[_tT, _vM, _hTI, _mDR],
|
|
1616
|
-
[0, 0, 64 | 0, 0]
|
|
1617
|
-
];
|
|
1618
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1619
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1620
|
-
[_m, _rN],
|
|
1621
|
-
[0, 0]
|
|
1622
|
-
];
|
|
1623
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1624
|
-
var TrustStore$ = [3, n0, _TS,
|
|
1625
|
-
0,
|
|
1626
|
-
[_tSA, _aPA],
|
|
1627
|
-
[0, 64 | 0], 1
|
|
1628
|
-
];
|
|
1629
|
-
var TrustStoreSummary$ = [3, n0, _TSS,
|
|
1630
|
-
0,
|
|
1631
|
-
[_tSA],
|
|
1632
|
-
[0]
|
|
1633
|
-
];
|
|
1634
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1635
|
-
0,
|
|
1636
|
-
[_rA, _tK],
|
|
1637
|
-
[[0, 1], [() => TagKeyList, { [_hQ]: _tK }]], 2
|
|
1638
|
-
];
|
|
1639
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1640
|
-
0,
|
|
1641
|
-
[],
|
|
1642
|
-
[]
|
|
1643
|
-
];
|
|
1644
|
-
var UpdateBrowserSettingsRequest$ = [3, n0, _UBSR,
|
|
1645
|
-
0,
|
|
1646
|
-
[_bSA, _bP, _cTl, _wCFP],
|
|
1647
|
-
[[0, 1], [() => BrowserPolicy, 0], [0, 4], [() => WebContentFilteringPolicy$, 0]], 1
|
|
1648
|
-
];
|
|
1649
|
-
var UpdateBrowserSettingsResponse$ = [3, n0, _UBSRp,
|
|
1650
|
-
0,
|
|
1651
|
-
[_bS],
|
|
1652
|
-
[[() => BrowserSettings$, 0]], 1
|
|
1653
|
-
];
|
|
1654
|
-
var UpdateDataProtectionSettingsRequest$ = [3, n0, _UDPSR,
|
|
1655
|
-
0,
|
|
1656
|
-
[_dPSA, _iRC, _dN, _de, _cTl],
|
|
1657
|
-
[[0, 1], [() => InlineRedactionConfiguration$, 0], [() => DisplayNameSafe, 0], [() => DescriptionSafe, 0], [0, 4]], 1
|
|
1658
|
-
];
|
|
1659
|
-
var UpdateDataProtectionSettingsResponse$ = [3, n0, _UDPSRp,
|
|
1660
|
-
0,
|
|
1661
|
-
[_dPS],
|
|
1662
|
-
[[() => DataProtectionSettings$, 0]], 1
|
|
1663
|
-
];
|
|
1664
|
-
var UpdateIdentityProviderRequest$ = [3, n0, _UIPR,
|
|
1665
|
-
0,
|
|
1666
|
-
[_iPA, _iPN, _iPT, _iPD, _cTl],
|
|
1667
|
-
[[0, 1], [() => IdentityProviderName, 0], 0, [() => IdentityProviderDetails, 0], [0, 4]], 1
|
|
1668
|
-
];
|
|
1669
|
-
var UpdateIdentityProviderResponse$ = [3, n0, _UIPRp,
|
|
1670
|
-
0,
|
|
1671
|
-
[_iP],
|
|
1672
|
-
[[() => IdentityProvider$, 0]], 1
|
|
1673
|
-
];
|
|
1674
|
-
var UpdateIpAccessSettingsRequest$ = [3, n0, _UIASR,
|
|
1675
|
-
0,
|
|
1676
|
-
[_iASA, _dN, _de, _iR, _cTl],
|
|
1677
|
-
[[0, 1], [() => DisplayName, 0], [() => Description, 0], [() => IpRuleList, 0], [0, 4]], 1
|
|
1678
|
-
];
|
|
1679
|
-
var UpdateIpAccessSettingsResponse$ = [3, n0, _UIASRp,
|
|
1680
|
-
0,
|
|
1681
|
-
[_iAS],
|
|
1682
|
-
[[() => IpAccessSettings$, 0]], 1
|
|
1683
|
-
];
|
|
1684
|
-
var UpdateNetworkSettingsRequest$ = [3, n0, _UNSR,
|
|
1685
|
-
0,
|
|
1686
|
-
[_nSA, _vI, _sI, _sGI, _cTl],
|
|
1687
|
-
[[0, 1], 0, 64 | 0, 64 | 0, [0, 4]], 1
|
|
1688
|
-
];
|
|
1689
|
-
var UpdateNetworkSettingsResponse$ = [3, n0, _UNSRp,
|
|
1690
|
-
0,
|
|
1691
|
-
[_nS],
|
|
1692
|
-
[() => NetworkSettings$], 1
|
|
1693
|
-
];
|
|
1694
|
-
var UpdatePortalRequest$ = [3, n0, _UPR,
|
|
1695
|
-
0,
|
|
1696
|
-
[_pA, _dN, _aT, _iT, _mCS, _pCD],
|
|
1697
|
-
[[0, 1], [() => DisplayName, 0], 0, 0, 1, 0], 1
|
|
1698
|
-
];
|
|
1699
|
-
var UpdatePortalResponse$ = [3, n0, _UPRp,
|
|
1700
|
-
0,
|
|
1701
|
-
[_po],
|
|
1702
|
-
[[() => Portal$, 0]]
|
|
1703
|
-
];
|
|
1704
|
-
var UpdateSessionLoggerRequest$ = [3, n0, _USLR,
|
|
1705
|
-
0,
|
|
1706
|
-
[_sLA, _eF, _lC, _dN],
|
|
1707
|
-
[[0, 1], () => EventFilter$, [() => LogConfiguration$, 0], [() => DisplayNameSafe, 0]], 1
|
|
1708
|
-
];
|
|
1709
|
-
var UpdateSessionLoggerResponse$ = [3, n0, _USLRp,
|
|
1710
|
-
0,
|
|
1711
|
-
[_sL],
|
|
1712
|
-
[[() => SessionLogger$, 0]], 1
|
|
1713
|
-
];
|
|
1714
|
-
var UpdateTrustStoreRequest$ = [3, n0, _UTSR,
|
|
1715
|
-
0,
|
|
1716
|
-
[_tSA, _cTA, _cTD, _cTl],
|
|
1717
|
-
[[0, 1], 64 | 21, 64 | 0, [0, 4]], 1
|
|
1718
|
-
];
|
|
1719
|
-
var UpdateTrustStoreResponse$ = [3, n0, _UTSRp,
|
|
1720
|
-
0,
|
|
1721
|
-
[_tSA],
|
|
1722
|
-
[0], 1
|
|
1723
|
-
];
|
|
1724
|
-
var UpdateUserAccessLoggingSettingsRequest$ = [3, n0, _UUALSR,
|
|
1725
|
-
0,
|
|
1726
|
-
[_uALSA, _kSA, _cTl],
|
|
1727
|
-
[[0, 1], 0, [0, 4]], 1
|
|
1728
|
-
];
|
|
1729
|
-
var UpdateUserAccessLoggingSettingsResponse$ = [3, n0, _UUALSRp,
|
|
1730
|
-
0,
|
|
1731
|
-
[_uALS],
|
|
1732
|
-
[() => UserAccessLoggingSettings$], 1
|
|
1733
|
-
];
|
|
1734
|
-
var UpdateUserSettingsRequest$ = [3, n0, _UUSR,
|
|
1735
|
-
0,
|
|
1736
|
-
[_uSA, _cA, _pAa, _dA, _uA, _pAr, _dTIM, _iDTIM, _cTl, _cSC, _dLA, _tC, _bCI, _wAA],
|
|
1737
|
-
[[0, 1], 0, 0, 0, 0, 0, 1, 1, [0, 4], [() => CookieSynchronizationConfiguration$, 0], 0, () => ToolbarConfiguration$, [() => BrandingConfigurationUpdateInput$, 0], 0], 1
|
|
1738
|
-
];
|
|
1739
|
-
var UpdateUserSettingsResponse$ = [3, n0, _UUSRp,
|
|
1740
|
-
0,
|
|
1741
|
-
[_uS],
|
|
1742
|
-
[[() => UserSettings$, 0]], 1
|
|
1743
|
-
];
|
|
1744
|
-
var UserAccessLoggingSettings$ = [3, n0, _UALS,
|
|
1745
|
-
0,
|
|
1746
|
-
[_uALSA, _aPA, _kSA],
|
|
1747
|
-
[0, 64 | 0, 0], 1
|
|
1748
|
-
];
|
|
1749
|
-
var UserAccessLoggingSettingsSummary$ = [3, n0, _UALSS,
|
|
1750
|
-
0,
|
|
1751
|
-
[_uALSA, _kSA],
|
|
1752
|
-
[0, 0], 1
|
|
1753
|
-
];
|
|
1754
|
-
var UserSettings$ = [3, n0, _US,
|
|
1755
|
-
0,
|
|
1756
|
-
[_uSA, _aPA, _cA, _pAa, _dA, _uA, _pAr, _dTIM, _iDTIM, _cSC, _cMK, _aEC, _dLA, _tC, _bC, _wAA],
|
|
1757
|
-
[0, 64 | 0, 0, 0, 0, 0, 0, 1, 1, [() => CookieSynchronizationConfiguration$, 0], 0, 128 | 0, 0, () => ToolbarConfiguration$, [() => BrandingConfiguration$, 0], 0], 1
|
|
1758
|
-
];
|
|
1759
|
-
var UserSettingsSummary$ = [3, n0, _USS,
|
|
1760
|
-
0,
|
|
1761
|
-
[_uSA, _cA, _pAa, _dA, _uA, _pAr, _dTIM, _iDTIM, _cSC, _dLA, _tC, _bC, _wAA],
|
|
1762
|
-
[0, 0, 0, 0, 0, 0, 1, 1, [() => CookieSynchronizationConfiguration$, 0], 0, () => ToolbarConfiguration$, [() => BrandingConfiguration$, 0], 0], 1
|
|
1763
|
-
];
|
|
1764
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1765
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1766
|
-
[_m, _r, _fL],
|
|
1767
|
-
[0, 0, () => ValidationExceptionFieldList]
|
|
1768
|
-
];
|
|
1769
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1770
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1771
|
-
0,
|
|
1772
|
-
[_n, _m],
|
|
1773
|
-
[0, 0], 2
|
|
1774
|
-
];
|
|
1775
|
-
var WebContentFilteringPolicy$ = [3, n0, _WCFP,
|
|
1776
|
-
0,
|
|
1777
|
-
[_bCl, _aU, _bU],
|
|
1778
|
-
[64 | 0, [() => UrlPatternList, 0], [() => UrlPatternList, 0]]
|
|
1779
|
-
];
|
|
1780
|
-
var __Unit = "unit";
|
|
1781
|
-
var WorkSpacesWebServiceException$ = [-3, _sm, "WorkSpacesWebServiceException", 0, [], []];
|
|
1782
|
-
schema.TypeRegistry.for(_sm).registerError(WorkSpacesWebServiceException$, WorkSpacesWebServiceException);
|
|
1783
|
-
var BrowserSettingsList = [1, n0, _BSL,
|
|
1784
|
-
0, () => BrowserSettingsSummary$
|
|
1785
|
-
];
|
|
1786
|
-
var CertificateSummaryList = [1, n0, _CSL,
|
|
1787
|
-
0, () => CertificateSummary$
|
|
1788
|
-
];
|
|
1789
|
-
var CookieSpecifications = [1, n0, _CSoo,
|
|
1790
|
-
0, [() => CookieSpecification$,
|
|
1791
|
-
0]
|
|
1792
|
-
];
|
|
1793
|
-
var DataProtectionSettingsList = [1, n0, _DPSL,
|
|
1794
|
-
0, [() => DataProtectionSettingsSummary$,
|
|
1795
|
-
0]
|
|
1796
|
-
];
|
|
1797
|
-
var GlobalInlineRedactionUrls = [1, n0, _GIRU,
|
|
1798
|
-
0, [() => InlineRedactionUrl,
|
|
1799
|
-
0]
|
|
1800
|
-
];
|
|
1801
|
-
var IdentityProviderList = [1, n0, _IPL,
|
|
1802
|
-
0, [() => IdentityProviderSummary$,
|
|
1803
|
-
0]
|
|
1804
|
-
];
|
|
1805
|
-
var InlineRedactionPatterns = [1, n0, _IRPn,
|
|
1806
|
-
0, [() => InlineRedactionPattern$,
|
|
1807
|
-
0]
|
|
1808
|
-
];
|
|
1809
|
-
var InlineRedactionUrls = [1, n0, _IRUn,
|
|
1810
|
-
0, [() => InlineRedactionUrl,
|
|
1811
|
-
0]
|
|
1812
|
-
];
|
|
1813
|
-
var IpAccessSettingsList = [1, n0, _IASL,
|
|
1814
|
-
0, [() => IpAccessSettingsSummary$,
|
|
1815
|
-
0]
|
|
1816
|
-
];
|
|
1817
|
-
var IpAddressList = [1, n0, _IAL,
|
|
1818
|
-
0, [() => IpAddress,
|
|
1819
|
-
0]
|
|
1820
|
-
];
|
|
1821
|
-
var IpRuleList = [1, n0, _IRL,
|
|
1822
|
-
8, [() => IpRule$,
|
|
1823
|
-
0]
|
|
1824
|
-
];
|
|
1825
|
-
var NetworkSettingsList = [1, n0, _NSL,
|
|
1826
|
-
0, () => NetworkSettingsSummary$
|
|
1827
|
-
];
|
|
1828
|
-
var PortalList = [1, n0, _PL,
|
|
1829
|
-
0, [() => PortalSummary$,
|
|
1830
|
-
0]
|
|
1831
|
-
];
|
|
1832
|
-
var SessionLoggerList = [1, n0, _SLL,
|
|
1833
|
-
0, [() => SessionLoggerSummary$,
|
|
1834
|
-
0]
|
|
1835
|
-
];
|
|
1836
|
-
var SessionSummaryList = [1, n0, _SSL,
|
|
1837
|
-
0, [() => SessionSummary$,
|
|
1838
|
-
0]
|
|
1839
|
-
];
|
|
1840
|
-
var TagKeyList = [1, n0, _TKL,
|
|
1841
|
-
0, [() => TagKey,
|
|
1842
|
-
0]
|
|
1843
|
-
];
|
|
1844
|
-
var TagList = [1, n0, _TL,
|
|
1845
|
-
0, [() => Tag$,
|
|
1846
|
-
0]
|
|
1847
|
-
];
|
|
1848
|
-
var TrustStoreSummaryList = [1, n0, _TSSL,
|
|
1849
|
-
0, () => TrustStoreSummary$
|
|
1850
|
-
];
|
|
1851
|
-
var UrlPatternList = [1, n0, _UPL,
|
|
1852
|
-
0, [() => UrlPattern,
|
|
1853
|
-
0]
|
|
1854
|
-
];
|
|
1855
|
-
var UserAccessLoggingSettingsList = [1, n0, _UALSL,
|
|
1856
|
-
0, () => UserAccessLoggingSettingsSummary$
|
|
1857
|
-
];
|
|
1858
|
-
var UserSettingsList = [1, n0, _USL,
|
|
1859
|
-
0, [() => UserSettingsSummary$,
|
|
1860
|
-
0]
|
|
1861
|
-
];
|
|
1862
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1863
|
-
0, () => ValidationExceptionField$
|
|
1864
|
-
];
|
|
1865
|
-
var IdentityProviderDetails = [2, n0, _IPD,
|
|
1866
|
-
8, 0, 0
|
|
1867
|
-
];
|
|
1868
|
-
var LocalizedBrandingStringMap = [2, n0, _LBSM,
|
|
1869
|
-
0, 0, () => LocalizedBrandingStrings$
|
|
1870
|
-
];
|
|
1871
|
-
var EventFilter$ = [4, n0, _EF,
|
|
1872
|
-
0,
|
|
1873
|
-
[_al, _in],
|
|
1874
|
-
[() => __Unit, 64 | 0]
|
|
1875
|
-
];
|
|
1876
|
-
var IconImageInput$ = [4, n0, _III,
|
|
1877
|
-
0,
|
|
1878
|
-
[_blo, _sU],
|
|
1879
|
-
[[() => IconImage, 0], 0]
|
|
1880
|
-
];
|
|
1881
|
-
var WallpaperImageInput$ = [4, n0, _WII,
|
|
1882
|
-
0,
|
|
1883
|
-
[_blo, _sU],
|
|
1884
|
-
[[() => WallpaperImage, 0], 0]
|
|
1885
|
-
];
|
|
1886
|
-
var AssociateBrowserSettings$ = [9, n0, _ABS,
|
|
1887
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/browserSettings", 200] }, () => AssociateBrowserSettingsRequest$, () => AssociateBrowserSettingsResponse$
|
|
1888
|
-
];
|
|
1889
|
-
var AssociateDataProtectionSettings$ = [9, n0, _ADPS,
|
|
1890
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/dataProtectionSettings", 200] }, () => AssociateDataProtectionSettingsRequest$, () => AssociateDataProtectionSettingsResponse$
|
|
1891
|
-
];
|
|
1892
|
-
var AssociateIpAccessSettings$ = [9, n0, _AIAS,
|
|
1893
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/ipAccessSettings", 200] }, () => AssociateIpAccessSettingsRequest$, () => AssociateIpAccessSettingsResponse$
|
|
1894
|
-
];
|
|
1895
|
-
var AssociateNetworkSettings$ = [9, n0, _ANS,
|
|
1896
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/networkSettings", 200] }, () => AssociateNetworkSettingsRequest$, () => AssociateNetworkSettingsResponse$
|
|
1897
|
-
];
|
|
1898
|
-
var AssociateSessionLogger$ = [9, n0, _ASL,
|
|
1899
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/sessionLogger", 200] }, () => AssociateSessionLoggerRequest$, () => AssociateSessionLoggerResponse$
|
|
1900
|
-
];
|
|
1901
|
-
var AssociateTrustStore$ = [9, n0, _ATS,
|
|
1902
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/trustStores", 200] }, () => AssociateTrustStoreRequest$, () => AssociateTrustStoreResponse$
|
|
1903
|
-
];
|
|
1904
|
-
var AssociateUserAccessLoggingSettings$ = [9, n0, _AUALS,
|
|
1905
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/userAccessLoggingSettings", 200] }, () => AssociateUserAccessLoggingSettingsRequest$, () => AssociateUserAccessLoggingSettingsResponse$
|
|
1906
|
-
];
|
|
1907
|
-
var AssociateUserSettings$ = [9, n0, _AUS,
|
|
1908
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}/userSettings", 200] }, () => AssociateUserSettingsRequest$, () => AssociateUserSettingsResponse$
|
|
1909
|
-
];
|
|
1910
|
-
var CreateBrowserSettings$ = [9, n0, _CBS,
|
|
1911
|
-
{ [_h]: ["POST", "/browserSettings", 200] }, () => CreateBrowserSettingsRequest$, () => CreateBrowserSettingsResponse$
|
|
1912
|
-
];
|
|
1913
|
-
var CreateDataProtectionSettings$ = [9, n0, _CDPS,
|
|
1914
|
-
{ [_h]: ["POST", "/dataProtectionSettings", 200] }, () => CreateDataProtectionSettingsRequest$, () => CreateDataProtectionSettingsResponse$
|
|
1915
|
-
];
|
|
1916
|
-
var CreateIdentityProvider$ = [9, n0, _CIP,
|
|
1917
|
-
{ [_h]: ["POST", "/identityProviders", 200] }, () => CreateIdentityProviderRequest$, () => CreateIdentityProviderResponse$
|
|
1918
|
-
];
|
|
1919
|
-
var CreateIpAccessSettings$ = [9, n0, _CIAS,
|
|
1920
|
-
{ [_h]: ["POST", "/ipAccessSettings", 200] }, () => CreateIpAccessSettingsRequest$, () => CreateIpAccessSettingsResponse$
|
|
1921
|
-
];
|
|
1922
|
-
var CreateNetworkSettings$ = [9, n0, _CNS,
|
|
1923
|
-
{ [_h]: ["POST", "/networkSettings", 200] }, () => CreateNetworkSettingsRequest$, () => CreateNetworkSettingsResponse$
|
|
1924
|
-
];
|
|
1925
|
-
var CreatePortal$ = [9, n0, _CPr,
|
|
1926
|
-
{ [_h]: ["POST", "/portals", 200] }, () => CreatePortalRequest$, () => CreatePortalResponse$
|
|
1927
|
-
];
|
|
1928
|
-
var CreateSessionLogger$ = [9, n0, _CSLr,
|
|
1929
|
-
{ [_h]: ["POST", "/sessionLoggers", 200] }, () => CreateSessionLoggerRequest$, () => CreateSessionLoggerResponse$
|
|
1930
|
-
];
|
|
1931
|
-
var CreateTrustStore$ = [9, n0, _CTS,
|
|
1932
|
-
{ [_h]: ["POST", "/trustStores", 200] }, () => CreateTrustStoreRequest$, () => CreateTrustStoreResponse$
|
|
1933
|
-
];
|
|
1934
|
-
var CreateUserAccessLoggingSettings$ = [9, n0, _CUALS,
|
|
1935
|
-
{ [_h]: ["POST", "/userAccessLoggingSettings", 200] }, () => CreateUserAccessLoggingSettingsRequest$, () => CreateUserAccessLoggingSettingsResponse$
|
|
1936
|
-
];
|
|
1937
|
-
var CreateUserSettings$ = [9, n0, _CUS,
|
|
1938
|
-
{ [_h]: ["POST", "/userSettings", 200] }, () => CreateUserSettingsRequest$, () => CreateUserSettingsResponse$
|
|
1939
|
-
];
|
|
1940
|
-
var DeleteBrowserSettings$ = [9, n0, _DBS,
|
|
1941
|
-
{ [_h]: ["DELETE", "/browserSettings/{browserSettingsArn+}", 200] }, () => DeleteBrowserSettingsRequest$, () => DeleteBrowserSettingsResponse$
|
|
1942
|
-
];
|
|
1943
|
-
var DeleteDataProtectionSettings$ = [9, n0, _DDPS,
|
|
1944
|
-
{ [_h]: ["DELETE", "/dataProtectionSettings/{dataProtectionSettingsArn+}", 200] }, () => DeleteDataProtectionSettingsRequest$, () => DeleteDataProtectionSettingsResponse$
|
|
1945
|
-
];
|
|
1946
|
-
var DeleteIdentityProvider$ = [9, n0, _DIP,
|
|
1947
|
-
{ [_h]: ["DELETE", "/identityProviders/{identityProviderArn+}", 200] }, () => DeleteIdentityProviderRequest$, () => DeleteIdentityProviderResponse$
|
|
1948
|
-
];
|
|
1949
|
-
var DeleteIpAccessSettings$ = [9, n0, _DIAS,
|
|
1950
|
-
{ [_h]: ["DELETE", "/ipAccessSettings/{ipAccessSettingsArn+}", 200] }, () => DeleteIpAccessSettingsRequest$, () => DeleteIpAccessSettingsResponse$
|
|
1951
|
-
];
|
|
1952
|
-
var DeleteNetworkSettings$ = [9, n0, _DNSe,
|
|
1953
|
-
{ [_h]: ["DELETE", "/networkSettings/{networkSettingsArn+}", 200] }, () => DeleteNetworkSettingsRequest$, () => DeleteNetworkSettingsResponse$
|
|
1954
|
-
];
|
|
1955
|
-
var DeletePortal$ = [9, n0, _DP,
|
|
1956
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}", 200] }, () => DeletePortalRequest$, () => DeletePortalResponse$
|
|
1957
|
-
];
|
|
1958
|
-
var DeleteSessionLogger$ = [9, n0, _DSL,
|
|
1959
|
-
{ [_h]: ["DELETE", "/sessionLoggers/{sessionLoggerArn+}", 200] }, () => DeleteSessionLoggerRequest$, () => DeleteSessionLoggerResponse$
|
|
1960
|
-
];
|
|
1961
|
-
var DeleteTrustStore$ = [9, n0, _DTS,
|
|
1962
|
-
{ [_h]: ["DELETE", "/trustStores/{trustStoreArn+}", 200] }, () => DeleteTrustStoreRequest$, () => DeleteTrustStoreResponse$
|
|
1963
|
-
];
|
|
1964
|
-
var DeleteUserAccessLoggingSettings$ = [9, n0, _DUALS,
|
|
1965
|
-
{ [_h]: ["DELETE", "/userAccessLoggingSettings/{userAccessLoggingSettingsArn+}", 200] }, () => DeleteUserAccessLoggingSettingsRequest$, () => DeleteUserAccessLoggingSettingsResponse$
|
|
1966
|
-
];
|
|
1967
|
-
var DeleteUserSettings$ = [9, n0, _DUS,
|
|
1968
|
-
{ [_h]: ["DELETE", "/userSettings/{userSettingsArn+}", 200] }, () => DeleteUserSettingsRequest$, () => DeleteUserSettingsResponse$
|
|
1969
|
-
];
|
|
1970
|
-
var DisassociateBrowserSettings$ = [9, n0, _DBSi,
|
|
1971
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/browserSettings", 200] }, () => DisassociateBrowserSettingsRequest$, () => DisassociateBrowserSettingsResponse$
|
|
1972
|
-
];
|
|
1973
|
-
var DisassociateDataProtectionSettings$ = [9, n0, _DDPSi,
|
|
1974
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/dataProtectionSettings", 200] }, () => DisassociateDataProtectionSettingsRequest$, () => DisassociateDataProtectionSettingsResponse$
|
|
1975
|
-
];
|
|
1976
|
-
var DisassociateIpAccessSettings$ = [9, n0, _DIASi,
|
|
1977
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/ipAccessSettings", 200] }, () => DisassociateIpAccessSettingsRequest$, () => DisassociateIpAccessSettingsResponse$
|
|
1978
|
-
];
|
|
1979
|
-
var DisassociateNetworkSettings$ = [9, n0, _DNSi,
|
|
1980
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/networkSettings", 200] }, () => DisassociateNetworkSettingsRequest$, () => DisassociateNetworkSettingsResponse$
|
|
1981
|
-
];
|
|
1982
|
-
var DisassociateSessionLogger$ = [9, n0, _DSLi,
|
|
1983
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/sessionLogger", 200] }, () => DisassociateSessionLoggerRequest$, () => DisassociateSessionLoggerResponse$
|
|
1984
|
-
];
|
|
1985
|
-
var DisassociateTrustStore$ = [9, n0, _DTSi,
|
|
1986
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/trustStores", 200] }, () => DisassociateTrustStoreRequest$, () => DisassociateTrustStoreResponse$
|
|
1987
|
-
];
|
|
1988
|
-
var DisassociateUserAccessLoggingSettings$ = [9, n0, _DUALSi,
|
|
1989
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/userAccessLoggingSettings", 200] }, () => DisassociateUserAccessLoggingSettingsRequest$, () => DisassociateUserAccessLoggingSettingsResponse$
|
|
1990
|
-
];
|
|
1991
|
-
var DisassociateUserSettings$ = [9, n0, _DUSi,
|
|
1992
|
-
{ [_h]: ["DELETE", "/portals/{portalArn+}/userSettings", 200] }, () => DisassociateUserSettingsRequest$, () => DisassociateUserSettingsResponse$
|
|
1993
|
-
];
|
|
1994
|
-
var ExpireSession$ = [9, n0, _ES,
|
|
1995
|
-
{ [_h]: ["DELETE", "/portals/{portalId}/sessions/{sessionId}", 200] }, () => ExpireSessionRequest$, () => ExpireSessionResponse$
|
|
1996
|
-
];
|
|
1997
|
-
var GetBrowserSettings$ = [9, n0, _GBS,
|
|
1998
|
-
{ [_h]: ["GET", "/browserSettings/{browserSettingsArn+}", 200] }, () => GetBrowserSettingsRequest$, () => GetBrowserSettingsResponse$
|
|
1999
|
-
];
|
|
2000
|
-
var GetDataProtectionSettings$ = [9, n0, _GDPS,
|
|
2001
|
-
{ [_h]: ["GET", "/dataProtectionSettings/{dataProtectionSettingsArn+}", 200] }, () => GetDataProtectionSettingsRequest$, () => GetDataProtectionSettingsResponse$
|
|
2002
|
-
];
|
|
2003
|
-
var GetIdentityProvider$ = [9, n0, _GIP,
|
|
2004
|
-
{ [_h]: ["GET", "/identityProviders/{identityProviderArn+}", 200] }, () => GetIdentityProviderRequest$, () => GetIdentityProviderResponse$
|
|
2005
|
-
];
|
|
2006
|
-
var GetIpAccessSettings$ = [9, n0, _GIAS,
|
|
2007
|
-
{ [_h]: ["GET", "/ipAccessSettings/{ipAccessSettingsArn+}", 200] }, () => GetIpAccessSettingsRequest$, () => GetIpAccessSettingsResponse$
|
|
2008
|
-
];
|
|
2009
|
-
var GetNetworkSettings$ = [9, n0, _GNS,
|
|
2010
|
-
{ [_h]: ["GET", "/networkSettings/{networkSettingsArn+}", 200] }, () => GetNetworkSettingsRequest$, () => GetNetworkSettingsResponse$
|
|
2011
|
-
];
|
|
2012
|
-
var GetPortal$ = [9, n0, _GP,
|
|
2013
|
-
{ [_h]: ["GET", "/portals/{portalArn+}", 200] }, () => GetPortalRequest$, () => GetPortalResponse$
|
|
2014
|
-
];
|
|
2015
|
-
var GetPortalServiceProviderMetadata$ = [9, n0, _GPSPM,
|
|
2016
|
-
{ [_h]: ["GET", "/portalIdp/{portalArn+}", 200] }, () => GetPortalServiceProviderMetadataRequest$, () => GetPortalServiceProviderMetadataResponse$
|
|
2017
|
-
];
|
|
2018
|
-
var GetSession$ = [9, n0, _GS,
|
|
2019
|
-
{ [_h]: ["GET", "/portals/{portalId}/sessions/{sessionId}", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
|
|
2020
|
-
];
|
|
2021
|
-
var GetSessionLogger$ = [9, n0, _GSL,
|
|
2022
|
-
{ [_h]: ["GET", "/sessionLoggers/{sessionLoggerArn+}", 200] }, () => GetSessionLoggerRequest$, () => GetSessionLoggerResponse$
|
|
2023
|
-
];
|
|
2024
|
-
var GetTrustStore$ = [9, n0, _GTS,
|
|
2025
|
-
{ [_h]: ["GET", "/trustStores/{trustStoreArn+}", 200] }, () => GetTrustStoreRequest$, () => GetTrustStoreResponse$
|
|
2026
|
-
];
|
|
2027
|
-
var GetTrustStoreCertificate$ = [9, n0, _GTSC,
|
|
2028
|
-
{ [_h]: ["GET", "/trustStores/{trustStoreArn+}/certificate", 200] }, () => GetTrustStoreCertificateRequest$, () => GetTrustStoreCertificateResponse$
|
|
2029
|
-
];
|
|
2030
|
-
var GetUserAccessLoggingSettings$ = [9, n0, _GUALS,
|
|
2031
|
-
{ [_h]: ["GET", "/userAccessLoggingSettings/{userAccessLoggingSettingsArn+}", 200] }, () => GetUserAccessLoggingSettingsRequest$, () => GetUserAccessLoggingSettingsResponse$
|
|
2032
|
-
];
|
|
2033
|
-
var GetUserSettings$ = [9, n0, _GUS,
|
|
2034
|
-
{ [_h]: ["GET", "/userSettings/{userSettingsArn+}", 200] }, () => GetUserSettingsRequest$, () => GetUserSettingsResponse$
|
|
2035
|
-
];
|
|
2036
|
-
var ListBrowserSettings$ = [9, n0, _LBSi,
|
|
2037
|
-
{ [_h]: ["GET", "/browserSettings", 200] }, () => ListBrowserSettingsRequest$, () => ListBrowserSettingsResponse$
|
|
2038
|
-
];
|
|
2039
|
-
var ListDataProtectionSettings$ = [9, n0, _LDPS,
|
|
2040
|
-
{ [_h]: ["GET", "/dataProtectionSettings", 200] }, () => ListDataProtectionSettingsRequest$, () => ListDataProtectionSettingsResponse$
|
|
2041
|
-
];
|
|
2042
|
-
var ListIdentityProviders$ = [9, n0, _LIP,
|
|
2043
|
-
{ [_h]: ["GET", "/portals/{portalArn+}/identityProviders", 200] }, () => ListIdentityProvidersRequest$, () => ListIdentityProvidersResponse$
|
|
2044
|
-
];
|
|
2045
|
-
var ListIpAccessSettings$ = [9, n0, _LIAS,
|
|
2046
|
-
{ [_h]: ["GET", "/ipAccessSettings", 200] }, () => ListIpAccessSettingsRequest$, () => ListIpAccessSettingsResponse$
|
|
2047
|
-
];
|
|
2048
|
-
var ListNetworkSettings$ = [9, n0, _LNS,
|
|
2049
|
-
{ [_h]: ["GET", "/networkSettings", 200] }, () => ListNetworkSettingsRequest$, () => ListNetworkSettingsResponse$
|
|
2050
|
-
];
|
|
2051
|
-
var ListPortals$ = [9, n0, _LP,
|
|
2052
|
-
{ [_h]: ["GET", "/portals", 200] }, () => ListPortalsRequest$, () => ListPortalsResponse$
|
|
2053
|
-
];
|
|
2054
|
-
var ListSessionLoggers$ = [9, n0, _LSL,
|
|
2055
|
-
{ [_h]: ["GET", "/sessionLoggers", 200] }, () => ListSessionLoggersRequest$, () => ListSessionLoggersResponse$
|
|
2056
|
-
];
|
|
2057
|
-
var ListSessions$ = [9, n0, _LS,
|
|
2058
|
-
{ [_h]: ["GET", "/portals/{portalId}/sessions", 200] }, () => ListSessionsRequest$, () => ListSessionsResponse$
|
|
2059
|
-
];
|
|
2060
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2061
|
-
{ [_h]: ["GET", "/tags/{resourceArn+}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2062
|
-
];
|
|
2063
|
-
var ListTrustStoreCertificates$ = [9, n0, _LTSC,
|
|
2064
|
-
{ [_h]: ["GET", "/trustStores/{trustStoreArn+}/certificates", 200] }, () => ListTrustStoreCertificatesRequest$, () => ListTrustStoreCertificatesResponse$
|
|
2065
|
-
];
|
|
2066
|
-
var ListTrustStores$ = [9, n0, _LTS,
|
|
2067
|
-
{ [_h]: ["GET", "/trustStores", 200] }, () => ListTrustStoresRequest$, () => ListTrustStoresResponse$
|
|
2068
|
-
];
|
|
2069
|
-
var ListUserAccessLoggingSettings$ = [9, n0, _LUALS,
|
|
2070
|
-
{ [_h]: ["GET", "/userAccessLoggingSettings", 200] }, () => ListUserAccessLoggingSettingsRequest$, () => ListUserAccessLoggingSettingsResponse$
|
|
2071
|
-
];
|
|
2072
|
-
var ListUserSettings$ = [9, n0, _LUS,
|
|
2073
|
-
{ [_h]: ["GET", "/userSettings", 200] }, () => ListUserSettingsRequest$, () => ListUserSettingsResponse$
|
|
2074
|
-
];
|
|
2075
|
-
var TagResource$ = [9, n0, _TR,
|
|
2076
|
-
{ [_h]: ["POST", "/tags/{resourceArn+}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2077
|
-
];
|
|
2078
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2079
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn+}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2080
|
-
];
|
|
2081
|
-
var UpdateBrowserSettings$ = [9, n0, _UBS,
|
|
2082
|
-
{ [_h]: ["PATCH", "/browserSettings/{browserSettingsArn+}", 200] }, () => UpdateBrowserSettingsRequest$, () => UpdateBrowserSettingsResponse$
|
|
2083
|
-
];
|
|
2084
|
-
var UpdateDataProtectionSettings$ = [9, n0, _UDPS,
|
|
2085
|
-
{ [_h]: ["PATCH", "/dataProtectionSettings/{dataProtectionSettingsArn+}", 200] }, () => UpdateDataProtectionSettingsRequest$, () => UpdateDataProtectionSettingsResponse$
|
|
2086
|
-
];
|
|
2087
|
-
var UpdateIdentityProvider$ = [9, n0, _UIP,
|
|
2088
|
-
{ [_h]: ["PATCH", "/identityProviders/{identityProviderArn+}", 200] }, () => UpdateIdentityProviderRequest$, () => UpdateIdentityProviderResponse$
|
|
2089
|
-
];
|
|
2090
|
-
var UpdateIpAccessSettings$ = [9, n0, _UIAS,
|
|
2091
|
-
{ [_h]: ["PATCH", "/ipAccessSettings/{ipAccessSettingsArn+}", 200] }, () => UpdateIpAccessSettingsRequest$, () => UpdateIpAccessSettingsResponse$
|
|
2092
|
-
];
|
|
2093
|
-
var UpdateNetworkSettings$ = [9, n0, _UNS,
|
|
2094
|
-
{ [_h]: ["PATCH", "/networkSettings/{networkSettingsArn+}", 200] }, () => UpdateNetworkSettingsRequest$, () => UpdateNetworkSettingsResponse$
|
|
2095
|
-
];
|
|
2096
|
-
var UpdatePortal$ = [9, n0, _UPp,
|
|
2097
|
-
{ [_h]: ["PUT", "/portals/{portalArn+}", 200] }, () => UpdatePortalRequest$, () => UpdatePortalResponse$
|
|
2098
|
-
];
|
|
2099
|
-
var UpdateSessionLogger$ = [9, n0, _USLp,
|
|
2100
|
-
{ [_h]: ["POST", "/sessionLoggers/{sessionLoggerArn+}", 200] }, () => UpdateSessionLoggerRequest$, () => UpdateSessionLoggerResponse$
|
|
2101
|
-
];
|
|
2102
|
-
var UpdateTrustStore$ = [9, n0, _UTS,
|
|
2103
|
-
{ [_h]: ["PATCH", "/trustStores/{trustStoreArn+}", 200] }, () => UpdateTrustStoreRequest$, () => UpdateTrustStoreResponse$
|
|
2104
|
-
];
|
|
2105
|
-
var UpdateUserAccessLoggingSettings$ = [9, n0, _UUALS,
|
|
2106
|
-
{ [_h]: ["PATCH", "/userAccessLoggingSettings/{userAccessLoggingSettingsArn+}", 200] }, () => UpdateUserAccessLoggingSettingsRequest$, () => UpdateUserAccessLoggingSettingsResponse$
|
|
2107
|
-
];
|
|
2108
|
-
var UpdateUserSettings$ = [9, n0, _UUS,
|
|
2109
|
-
{ [_h]: ["PATCH", "/userSettings/{userSettingsArn+}", 200] }, () => UpdateUserSettingsRequest$, () => UpdateUserSettingsResponse$
|
|
2110
|
-
];
|
|
2111
|
-
|
|
2112
116
|
class AssociateBrowserSettingsCommand extends smithyClient.Command
|
|
2113
117
|
.classBuilder()
|
|
2114
118
|
.ep(commonParams)
|
|
@@ -2117,7 +121,7 @@ class AssociateBrowserSettingsCommand extends smithyClient.Command
|
|
|
2117
121
|
})
|
|
2118
122
|
.s("AWSErmineControlPlaneService", "AssociateBrowserSettings", {})
|
|
2119
123
|
.n("WorkSpacesWebClient", "AssociateBrowserSettingsCommand")
|
|
2120
|
-
.sc(AssociateBrowserSettings$)
|
|
124
|
+
.sc(schemas_0.AssociateBrowserSettings$)
|
|
2121
125
|
.build() {
|
|
2122
126
|
}
|
|
2123
127
|
|
|
@@ -2129,7 +133,7 @@ class AssociateDataProtectionSettingsCommand extends smithyClient.Command
|
|
|
2129
133
|
})
|
|
2130
134
|
.s("AWSErmineControlPlaneService", "AssociateDataProtectionSettings", {})
|
|
2131
135
|
.n("WorkSpacesWebClient", "AssociateDataProtectionSettingsCommand")
|
|
2132
|
-
.sc(AssociateDataProtectionSettings$)
|
|
136
|
+
.sc(schemas_0.AssociateDataProtectionSettings$)
|
|
2133
137
|
.build() {
|
|
2134
138
|
}
|
|
2135
139
|
|
|
@@ -2141,7 +145,7 @@ class AssociateIpAccessSettingsCommand extends smithyClient.Command
|
|
|
2141
145
|
})
|
|
2142
146
|
.s("AWSErmineControlPlaneService", "AssociateIpAccessSettings", {})
|
|
2143
147
|
.n("WorkSpacesWebClient", "AssociateIpAccessSettingsCommand")
|
|
2144
|
-
.sc(AssociateIpAccessSettings$)
|
|
148
|
+
.sc(schemas_0.AssociateIpAccessSettings$)
|
|
2145
149
|
.build() {
|
|
2146
150
|
}
|
|
2147
151
|
|
|
@@ -2153,7 +157,7 @@ class AssociateNetworkSettingsCommand extends smithyClient.Command
|
|
|
2153
157
|
})
|
|
2154
158
|
.s("AWSErmineControlPlaneService", "AssociateNetworkSettings", {})
|
|
2155
159
|
.n("WorkSpacesWebClient", "AssociateNetworkSettingsCommand")
|
|
2156
|
-
.sc(AssociateNetworkSettings$)
|
|
160
|
+
.sc(schemas_0.AssociateNetworkSettings$)
|
|
2157
161
|
.build() {
|
|
2158
162
|
}
|
|
2159
163
|
|
|
@@ -2165,7 +169,7 @@ class AssociateSessionLoggerCommand extends smithyClient.Command
|
|
|
2165
169
|
})
|
|
2166
170
|
.s("AWSErmineControlPlaneService", "AssociateSessionLogger", {})
|
|
2167
171
|
.n("WorkSpacesWebClient", "AssociateSessionLoggerCommand")
|
|
2168
|
-
.sc(AssociateSessionLogger$)
|
|
172
|
+
.sc(schemas_0.AssociateSessionLogger$)
|
|
2169
173
|
.build() {
|
|
2170
174
|
}
|
|
2171
175
|
|
|
@@ -2177,7 +181,7 @@ class AssociateTrustStoreCommand extends smithyClient.Command
|
|
|
2177
181
|
})
|
|
2178
182
|
.s("AWSErmineControlPlaneService", "AssociateTrustStore", {})
|
|
2179
183
|
.n("WorkSpacesWebClient", "AssociateTrustStoreCommand")
|
|
2180
|
-
.sc(AssociateTrustStore$)
|
|
184
|
+
.sc(schemas_0.AssociateTrustStore$)
|
|
2181
185
|
.build() {
|
|
2182
186
|
}
|
|
2183
187
|
|
|
@@ -2189,7 +193,7 @@ class AssociateUserAccessLoggingSettingsCommand extends smithyClient.Command
|
|
|
2189
193
|
})
|
|
2190
194
|
.s("AWSErmineControlPlaneService", "AssociateUserAccessLoggingSettings", {})
|
|
2191
195
|
.n("WorkSpacesWebClient", "AssociateUserAccessLoggingSettingsCommand")
|
|
2192
|
-
.sc(AssociateUserAccessLoggingSettings$)
|
|
196
|
+
.sc(schemas_0.AssociateUserAccessLoggingSettings$)
|
|
2193
197
|
.build() {
|
|
2194
198
|
}
|
|
2195
199
|
|
|
@@ -2201,7 +205,7 @@ class AssociateUserSettingsCommand extends smithyClient.Command
|
|
|
2201
205
|
})
|
|
2202
206
|
.s("AWSErmineControlPlaneService", "AssociateUserSettings", {})
|
|
2203
207
|
.n("WorkSpacesWebClient", "AssociateUserSettingsCommand")
|
|
2204
|
-
.sc(AssociateUserSettings$)
|
|
208
|
+
.sc(schemas_0.AssociateUserSettings$)
|
|
2205
209
|
.build() {
|
|
2206
210
|
}
|
|
2207
211
|
|
|
@@ -2213,7 +217,7 @@ class CreateBrowserSettingsCommand extends smithyClient.Command
|
|
|
2213
217
|
})
|
|
2214
218
|
.s("AWSErmineControlPlaneService", "CreateBrowserSettings", {})
|
|
2215
219
|
.n("WorkSpacesWebClient", "CreateBrowserSettingsCommand")
|
|
2216
|
-
.sc(CreateBrowserSettings$)
|
|
220
|
+
.sc(schemas_0.CreateBrowserSettings$)
|
|
2217
221
|
.build() {
|
|
2218
222
|
}
|
|
2219
223
|
|
|
@@ -2225,7 +229,7 @@ class CreateDataProtectionSettingsCommand extends smithyClient.Command
|
|
|
2225
229
|
})
|
|
2226
230
|
.s("AWSErmineControlPlaneService", "CreateDataProtectionSettings", {})
|
|
2227
231
|
.n("WorkSpacesWebClient", "CreateDataProtectionSettingsCommand")
|
|
2228
|
-
.sc(CreateDataProtectionSettings$)
|
|
232
|
+
.sc(schemas_0.CreateDataProtectionSettings$)
|
|
2229
233
|
.build() {
|
|
2230
234
|
}
|
|
2231
235
|
|
|
@@ -2237,7 +241,7 @@ class CreateIdentityProviderCommand extends smithyClient.Command
|
|
|
2237
241
|
})
|
|
2238
242
|
.s("AWSErmineControlPlaneService", "CreateIdentityProvider", {})
|
|
2239
243
|
.n("WorkSpacesWebClient", "CreateIdentityProviderCommand")
|
|
2240
|
-
.sc(CreateIdentityProvider$)
|
|
244
|
+
.sc(schemas_0.CreateIdentityProvider$)
|
|
2241
245
|
.build() {
|
|
2242
246
|
}
|
|
2243
247
|
|
|
@@ -2249,7 +253,7 @@ class CreateIpAccessSettingsCommand extends smithyClient.Command
|
|
|
2249
253
|
})
|
|
2250
254
|
.s("AWSErmineControlPlaneService", "CreateIpAccessSettings", {})
|
|
2251
255
|
.n("WorkSpacesWebClient", "CreateIpAccessSettingsCommand")
|
|
2252
|
-
.sc(CreateIpAccessSettings$)
|
|
256
|
+
.sc(schemas_0.CreateIpAccessSettings$)
|
|
2253
257
|
.build() {
|
|
2254
258
|
}
|
|
2255
259
|
|
|
@@ -2261,7 +265,7 @@ class CreateNetworkSettingsCommand extends smithyClient.Command
|
|
|
2261
265
|
})
|
|
2262
266
|
.s("AWSErmineControlPlaneService", "CreateNetworkSettings", {})
|
|
2263
267
|
.n("WorkSpacesWebClient", "CreateNetworkSettingsCommand")
|
|
2264
|
-
.sc(CreateNetworkSettings$)
|
|
268
|
+
.sc(schemas_0.CreateNetworkSettings$)
|
|
2265
269
|
.build() {
|
|
2266
270
|
}
|
|
2267
271
|
|
|
@@ -2273,7 +277,7 @@ class CreatePortalCommand extends smithyClient.Command
|
|
|
2273
277
|
})
|
|
2274
278
|
.s("AWSErmineControlPlaneService", "CreatePortal", {})
|
|
2275
279
|
.n("WorkSpacesWebClient", "CreatePortalCommand")
|
|
2276
|
-
.sc(CreatePortal$)
|
|
280
|
+
.sc(schemas_0.CreatePortal$)
|
|
2277
281
|
.build() {
|
|
2278
282
|
}
|
|
2279
283
|
|
|
@@ -2285,7 +289,7 @@ class CreateSessionLoggerCommand extends smithyClient.Command
|
|
|
2285
289
|
})
|
|
2286
290
|
.s("AWSErmineControlPlaneService", "CreateSessionLogger", {})
|
|
2287
291
|
.n("WorkSpacesWebClient", "CreateSessionLoggerCommand")
|
|
2288
|
-
.sc(CreateSessionLogger$)
|
|
292
|
+
.sc(schemas_0.CreateSessionLogger$)
|
|
2289
293
|
.build() {
|
|
2290
294
|
}
|
|
2291
295
|
|
|
@@ -2297,7 +301,7 @@ class CreateTrustStoreCommand extends smithyClient.Command
|
|
|
2297
301
|
})
|
|
2298
302
|
.s("AWSErmineControlPlaneService", "CreateTrustStore", {})
|
|
2299
303
|
.n("WorkSpacesWebClient", "CreateTrustStoreCommand")
|
|
2300
|
-
.sc(CreateTrustStore$)
|
|
304
|
+
.sc(schemas_0.CreateTrustStore$)
|
|
2301
305
|
.build() {
|
|
2302
306
|
}
|
|
2303
307
|
|
|
@@ -2309,7 +313,7 @@ class CreateUserAccessLoggingSettingsCommand extends smithyClient.Command
|
|
|
2309
313
|
})
|
|
2310
314
|
.s("AWSErmineControlPlaneService", "CreateUserAccessLoggingSettings", {})
|
|
2311
315
|
.n("WorkSpacesWebClient", "CreateUserAccessLoggingSettingsCommand")
|
|
2312
|
-
.sc(CreateUserAccessLoggingSettings$)
|
|
316
|
+
.sc(schemas_0.CreateUserAccessLoggingSettings$)
|
|
2313
317
|
.build() {
|
|
2314
318
|
}
|
|
2315
319
|
|
|
@@ -2321,7 +325,7 @@ class CreateUserSettingsCommand extends smithyClient.Command
|
|
|
2321
325
|
})
|
|
2322
326
|
.s("AWSErmineControlPlaneService", "CreateUserSettings", {})
|
|
2323
327
|
.n("WorkSpacesWebClient", "CreateUserSettingsCommand")
|
|
2324
|
-
.sc(CreateUserSettings$)
|
|
328
|
+
.sc(schemas_0.CreateUserSettings$)
|
|
2325
329
|
.build() {
|
|
2326
330
|
}
|
|
2327
331
|
|
|
@@ -2333,7 +337,7 @@ class DeleteBrowserSettingsCommand extends smithyClient.Command
|
|
|
2333
337
|
})
|
|
2334
338
|
.s("AWSErmineControlPlaneService", "DeleteBrowserSettings", {})
|
|
2335
339
|
.n("WorkSpacesWebClient", "DeleteBrowserSettingsCommand")
|
|
2336
|
-
.sc(DeleteBrowserSettings$)
|
|
340
|
+
.sc(schemas_0.DeleteBrowserSettings$)
|
|
2337
341
|
.build() {
|
|
2338
342
|
}
|
|
2339
343
|
|
|
@@ -2345,7 +349,7 @@ class DeleteDataProtectionSettingsCommand extends smithyClient.Command
|
|
|
2345
349
|
})
|
|
2346
350
|
.s("AWSErmineControlPlaneService", "DeleteDataProtectionSettings", {})
|
|
2347
351
|
.n("WorkSpacesWebClient", "DeleteDataProtectionSettingsCommand")
|
|
2348
|
-
.sc(DeleteDataProtectionSettings$)
|
|
352
|
+
.sc(schemas_0.DeleteDataProtectionSettings$)
|
|
2349
353
|
.build() {
|
|
2350
354
|
}
|
|
2351
355
|
|
|
@@ -2357,7 +361,7 @@ class DeleteIdentityProviderCommand extends smithyClient.Command
|
|
|
2357
361
|
})
|
|
2358
362
|
.s("AWSErmineControlPlaneService", "DeleteIdentityProvider", {})
|
|
2359
363
|
.n("WorkSpacesWebClient", "DeleteIdentityProviderCommand")
|
|
2360
|
-
.sc(DeleteIdentityProvider$)
|
|
364
|
+
.sc(schemas_0.DeleteIdentityProvider$)
|
|
2361
365
|
.build() {
|
|
2362
366
|
}
|
|
2363
367
|
|
|
@@ -2369,7 +373,7 @@ class DeleteIpAccessSettingsCommand extends smithyClient.Command
|
|
|
2369
373
|
})
|
|
2370
374
|
.s("AWSErmineControlPlaneService", "DeleteIpAccessSettings", {})
|
|
2371
375
|
.n("WorkSpacesWebClient", "DeleteIpAccessSettingsCommand")
|
|
2372
|
-
.sc(DeleteIpAccessSettings$)
|
|
376
|
+
.sc(schemas_0.DeleteIpAccessSettings$)
|
|
2373
377
|
.build() {
|
|
2374
378
|
}
|
|
2375
379
|
|
|
@@ -2381,7 +385,7 @@ class DeleteNetworkSettingsCommand extends smithyClient.Command
|
|
|
2381
385
|
})
|
|
2382
386
|
.s("AWSErmineControlPlaneService", "DeleteNetworkSettings", {})
|
|
2383
387
|
.n("WorkSpacesWebClient", "DeleteNetworkSettingsCommand")
|
|
2384
|
-
.sc(DeleteNetworkSettings$)
|
|
388
|
+
.sc(schemas_0.DeleteNetworkSettings$)
|
|
2385
389
|
.build() {
|
|
2386
390
|
}
|
|
2387
391
|
|
|
@@ -2393,7 +397,7 @@ class DeletePortalCommand extends smithyClient.Command
|
|
|
2393
397
|
})
|
|
2394
398
|
.s("AWSErmineControlPlaneService", "DeletePortal", {})
|
|
2395
399
|
.n("WorkSpacesWebClient", "DeletePortalCommand")
|
|
2396
|
-
.sc(DeletePortal$)
|
|
400
|
+
.sc(schemas_0.DeletePortal$)
|
|
2397
401
|
.build() {
|
|
2398
402
|
}
|
|
2399
403
|
|
|
@@ -2405,7 +409,7 @@ class DeleteSessionLoggerCommand extends smithyClient.Command
|
|
|
2405
409
|
})
|
|
2406
410
|
.s("AWSErmineControlPlaneService", "DeleteSessionLogger", {})
|
|
2407
411
|
.n("WorkSpacesWebClient", "DeleteSessionLoggerCommand")
|
|
2408
|
-
.sc(DeleteSessionLogger$)
|
|
412
|
+
.sc(schemas_0.DeleteSessionLogger$)
|
|
2409
413
|
.build() {
|
|
2410
414
|
}
|
|
2411
415
|
|
|
@@ -2417,7 +421,7 @@ class DeleteTrustStoreCommand extends smithyClient.Command
|
|
|
2417
421
|
})
|
|
2418
422
|
.s("AWSErmineControlPlaneService", "DeleteTrustStore", {})
|
|
2419
423
|
.n("WorkSpacesWebClient", "DeleteTrustStoreCommand")
|
|
2420
|
-
.sc(DeleteTrustStore$)
|
|
424
|
+
.sc(schemas_0.DeleteTrustStore$)
|
|
2421
425
|
.build() {
|
|
2422
426
|
}
|
|
2423
427
|
|
|
@@ -2429,7 +433,7 @@ class DeleteUserAccessLoggingSettingsCommand extends smithyClient.Command
|
|
|
2429
433
|
})
|
|
2430
434
|
.s("AWSErmineControlPlaneService", "DeleteUserAccessLoggingSettings", {})
|
|
2431
435
|
.n("WorkSpacesWebClient", "DeleteUserAccessLoggingSettingsCommand")
|
|
2432
|
-
.sc(DeleteUserAccessLoggingSettings$)
|
|
436
|
+
.sc(schemas_0.DeleteUserAccessLoggingSettings$)
|
|
2433
437
|
.build() {
|
|
2434
438
|
}
|
|
2435
439
|
|
|
@@ -2441,7 +445,7 @@ class DeleteUserSettingsCommand extends smithyClient.Command
|
|
|
2441
445
|
})
|
|
2442
446
|
.s("AWSErmineControlPlaneService", "DeleteUserSettings", {})
|
|
2443
447
|
.n("WorkSpacesWebClient", "DeleteUserSettingsCommand")
|
|
2444
|
-
.sc(DeleteUserSettings$)
|
|
448
|
+
.sc(schemas_0.DeleteUserSettings$)
|
|
2445
449
|
.build() {
|
|
2446
450
|
}
|
|
2447
451
|
|
|
@@ -2453,7 +457,7 @@ class DisassociateBrowserSettingsCommand extends smithyClient.Command
|
|
|
2453
457
|
})
|
|
2454
458
|
.s("AWSErmineControlPlaneService", "DisassociateBrowserSettings", {})
|
|
2455
459
|
.n("WorkSpacesWebClient", "DisassociateBrowserSettingsCommand")
|
|
2456
|
-
.sc(DisassociateBrowserSettings$)
|
|
460
|
+
.sc(schemas_0.DisassociateBrowserSettings$)
|
|
2457
461
|
.build() {
|
|
2458
462
|
}
|
|
2459
463
|
|
|
@@ -2465,7 +469,7 @@ class DisassociateDataProtectionSettingsCommand extends smithyClient.Command
|
|
|
2465
469
|
})
|
|
2466
470
|
.s("AWSErmineControlPlaneService", "DisassociateDataProtectionSettings", {})
|
|
2467
471
|
.n("WorkSpacesWebClient", "DisassociateDataProtectionSettingsCommand")
|
|
2468
|
-
.sc(DisassociateDataProtectionSettings$)
|
|
472
|
+
.sc(schemas_0.DisassociateDataProtectionSettings$)
|
|
2469
473
|
.build() {
|
|
2470
474
|
}
|
|
2471
475
|
|
|
@@ -2477,7 +481,7 @@ class DisassociateIpAccessSettingsCommand extends smithyClient.Command
|
|
|
2477
481
|
})
|
|
2478
482
|
.s("AWSErmineControlPlaneService", "DisassociateIpAccessSettings", {})
|
|
2479
483
|
.n("WorkSpacesWebClient", "DisassociateIpAccessSettingsCommand")
|
|
2480
|
-
.sc(DisassociateIpAccessSettings$)
|
|
484
|
+
.sc(schemas_0.DisassociateIpAccessSettings$)
|
|
2481
485
|
.build() {
|
|
2482
486
|
}
|
|
2483
487
|
|
|
@@ -2489,7 +493,7 @@ class DisassociateNetworkSettingsCommand extends smithyClient.Command
|
|
|
2489
493
|
})
|
|
2490
494
|
.s("AWSErmineControlPlaneService", "DisassociateNetworkSettings", {})
|
|
2491
495
|
.n("WorkSpacesWebClient", "DisassociateNetworkSettingsCommand")
|
|
2492
|
-
.sc(DisassociateNetworkSettings$)
|
|
496
|
+
.sc(schemas_0.DisassociateNetworkSettings$)
|
|
2493
497
|
.build() {
|
|
2494
498
|
}
|
|
2495
499
|
|
|
@@ -2501,7 +505,7 @@ class DisassociateSessionLoggerCommand extends smithyClient.Command
|
|
|
2501
505
|
})
|
|
2502
506
|
.s("AWSErmineControlPlaneService", "DisassociateSessionLogger", {})
|
|
2503
507
|
.n("WorkSpacesWebClient", "DisassociateSessionLoggerCommand")
|
|
2504
|
-
.sc(DisassociateSessionLogger$)
|
|
508
|
+
.sc(schemas_0.DisassociateSessionLogger$)
|
|
2505
509
|
.build() {
|
|
2506
510
|
}
|
|
2507
511
|
|
|
@@ -2513,7 +517,7 @@ class DisassociateTrustStoreCommand extends smithyClient.Command
|
|
|
2513
517
|
})
|
|
2514
518
|
.s("AWSErmineControlPlaneService", "DisassociateTrustStore", {})
|
|
2515
519
|
.n("WorkSpacesWebClient", "DisassociateTrustStoreCommand")
|
|
2516
|
-
.sc(DisassociateTrustStore$)
|
|
520
|
+
.sc(schemas_0.DisassociateTrustStore$)
|
|
2517
521
|
.build() {
|
|
2518
522
|
}
|
|
2519
523
|
|
|
@@ -2525,7 +529,7 @@ class DisassociateUserAccessLoggingSettingsCommand extends smithyClient.Command
|
|
|
2525
529
|
})
|
|
2526
530
|
.s("AWSErmineControlPlaneService", "DisassociateUserAccessLoggingSettings", {})
|
|
2527
531
|
.n("WorkSpacesWebClient", "DisassociateUserAccessLoggingSettingsCommand")
|
|
2528
|
-
.sc(DisassociateUserAccessLoggingSettings$)
|
|
532
|
+
.sc(schemas_0.DisassociateUserAccessLoggingSettings$)
|
|
2529
533
|
.build() {
|
|
2530
534
|
}
|
|
2531
535
|
|
|
@@ -2537,7 +541,7 @@ class DisassociateUserSettingsCommand extends smithyClient.Command
|
|
|
2537
541
|
})
|
|
2538
542
|
.s("AWSErmineControlPlaneService", "DisassociateUserSettings", {})
|
|
2539
543
|
.n("WorkSpacesWebClient", "DisassociateUserSettingsCommand")
|
|
2540
|
-
.sc(DisassociateUserSettings$)
|
|
544
|
+
.sc(schemas_0.DisassociateUserSettings$)
|
|
2541
545
|
.build() {
|
|
2542
546
|
}
|
|
2543
547
|
|
|
@@ -2549,7 +553,7 @@ class ExpireSessionCommand extends smithyClient.Command
|
|
|
2549
553
|
})
|
|
2550
554
|
.s("AWSErmineControlPlaneService", "ExpireSession", {})
|
|
2551
555
|
.n("WorkSpacesWebClient", "ExpireSessionCommand")
|
|
2552
|
-
.sc(ExpireSession$)
|
|
556
|
+
.sc(schemas_0.ExpireSession$)
|
|
2553
557
|
.build() {
|
|
2554
558
|
}
|
|
2555
559
|
|
|
@@ -2561,7 +565,7 @@ class GetBrowserSettingsCommand extends smithyClient.Command
|
|
|
2561
565
|
})
|
|
2562
566
|
.s("AWSErmineControlPlaneService", "GetBrowserSettings", {})
|
|
2563
567
|
.n("WorkSpacesWebClient", "GetBrowserSettingsCommand")
|
|
2564
|
-
.sc(GetBrowserSettings$)
|
|
568
|
+
.sc(schemas_0.GetBrowserSettings$)
|
|
2565
569
|
.build() {
|
|
2566
570
|
}
|
|
2567
571
|
|
|
@@ -2573,7 +577,7 @@ class GetDataProtectionSettingsCommand extends smithyClient.Command
|
|
|
2573
577
|
})
|
|
2574
578
|
.s("AWSErmineControlPlaneService", "GetDataProtectionSettings", {})
|
|
2575
579
|
.n("WorkSpacesWebClient", "GetDataProtectionSettingsCommand")
|
|
2576
|
-
.sc(GetDataProtectionSettings$)
|
|
580
|
+
.sc(schemas_0.GetDataProtectionSettings$)
|
|
2577
581
|
.build() {
|
|
2578
582
|
}
|
|
2579
583
|
|
|
@@ -2585,7 +589,7 @@ class GetIdentityProviderCommand extends smithyClient.Command
|
|
|
2585
589
|
})
|
|
2586
590
|
.s("AWSErmineControlPlaneService", "GetIdentityProvider", {})
|
|
2587
591
|
.n("WorkSpacesWebClient", "GetIdentityProviderCommand")
|
|
2588
|
-
.sc(GetIdentityProvider$)
|
|
592
|
+
.sc(schemas_0.GetIdentityProvider$)
|
|
2589
593
|
.build() {
|
|
2590
594
|
}
|
|
2591
595
|
|
|
@@ -2597,7 +601,7 @@ class GetIpAccessSettingsCommand extends smithyClient.Command
|
|
|
2597
601
|
})
|
|
2598
602
|
.s("AWSErmineControlPlaneService", "GetIpAccessSettings", {})
|
|
2599
603
|
.n("WorkSpacesWebClient", "GetIpAccessSettingsCommand")
|
|
2600
|
-
.sc(GetIpAccessSettings$)
|
|
604
|
+
.sc(schemas_0.GetIpAccessSettings$)
|
|
2601
605
|
.build() {
|
|
2602
606
|
}
|
|
2603
607
|
|
|
@@ -2609,7 +613,7 @@ class GetNetworkSettingsCommand extends smithyClient.Command
|
|
|
2609
613
|
})
|
|
2610
614
|
.s("AWSErmineControlPlaneService", "GetNetworkSettings", {})
|
|
2611
615
|
.n("WorkSpacesWebClient", "GetNetworkSettingsCommand")
|
|
2612
|
-
.sc(GetNetworkSettings$)
|
|
616
|
+
.sc(schemas_0.GetNetworkSettings$)
|
|
2613
617
|
.build() {
|
|
2614
618
|
}
|
|
2615
619
|
|
|
@@ -2621,7 +625,7 @@ class GetPortalCommand extends smithyClient.Command
|
|
|
2621
625
|
})
|
|
2622
626
|
.s("AWSErmineControlPlaneService", "GetPortal", {})
|
|
2623
627
|
.n("WorkSpacesWebClient", "GetPortalCommand")
|
|
2624
|
-
.sc(GetPortal$)
|
|
628
|
+
.sc(schemas_0.GetPortal$)
|
|
2625
629
|
.build() {
|
|
2626
630
|
}
|
|
2627
631
|
|
|
@@ -2633,7 +637,7 @@ class GetPortalServiceProviderMetadataCommand extends smithyClient.Command
|
|
|
2633
637
|
})
|
|
2634
638
|
.s("AWSErmineControlPlaneService", "GetPortalServiceProviderMetadata", {})
|
|
2635
639
|
.n("WorkSpacesWebClient", "GetPortalServiceProviderMetadataCommand")
|
|
2636
|
-
.sc(GetPortalServiceProviderMetadata$)
|
|
640
|
+
.sc(schemas_0.GetPortalServiceProviderMetadata$)
|
|
2637
641
|
.build() {
|
|
2638
642
|
}
|
|
2639
643
|
|
|
@@ -2645,7 +649,7 @@ class GetSessionCommand extends smithyClient.Command
|
|
|
2645
649
|
})
|
|
2646
650
|
.s("AWSErmineControlPlaneService", "GetSession", {})
|
|
2647
651
|
.n("WorkSpacesWebClient", "GetSessionCommand")
|
|
2648
|
-
.sc(GetSession$)
|
|
652
|
+
.sc(schemas_0.GetSession$)
|
|
2649
653
|
.build() {
|
|
2650
654
|
}
|
|
2651
655
|
|
|
@@ -2657,7 +661,7 @@ class GetSessionLoggerCommand extends smithyClient.Command
|
|
|
2657
661
|
})
|
|
2658
662
|
.s("AWSErmineControlPlaneService", "GetSessionLogger", {})
|
|
2659
663
|
.n("WorkSpacesWebClient", "GetSessionLoggerCommand")
|
|
2660
|
-
.sc(GetSessionLogger$)
|
|
664
|
+
.sc(schemas_0.GetSessionLogger$)
|
|
2661
665
|
.build() {
|
|
2662
666
|
}
|
|
2663
667
|
|
|
@@ -2669,7 +673,7 @@ class GetTrustStoreCertificateCommand extends smithyClient.Command
|
|
|
2669
673
|
})
|
|
2670
674
|
.s("AWSErmineControlPlaneService", "GetTrustStoreCertificate", {})
|
|
2671
675
|
.n("WorkSpacesWebClient", "GetTrustStoreCertificateCommand")
|
|
2672
|
-
.sc(GetTrustStoreCertificate$)
|
|
676
|
+
.sc(schemas_0.GetTrustStoreCertificate$)
|
|
2673
677
|
.build() {
|
|
2674
678
|
}
|
|
2675
679
|
|
|
@@ -2681,7 +685,7 @@ class GetTrustStoreCommand extends smithyClient.Command
|
|
|
2681
685
|
})
|
|
2682
686
|
.s("AWSErmineControlPlaneService", "GetTrustStore", {})
|
|
2683
687
|
.n("WorkSpacesWebClient", "GetTrustStoreCommand")
|
|
2684
|
-
.sc(GetTrustStore$)
|
|
688
|
+
.sc(schemas_0.GetTrustStore$)
|
|
2685
689
|
.build() {
|
|
2686
690
|
}
|
|
2687
691
|
|
|
@@ -2693,7 +697,7 @@ class GetUserAccessLoggingSettingsCommand extends smithyClient.Command
|
|
|
2693
697
|
})
|
|
2694
698
|
.s("AWSErmineControlPlaneService", "GetUserAccessLoggingSettings", {})
|
|
2695
699
|
.n("WorkSpacesWebClient", "GetUserAccessLoggingSettingsCommand")
|
|
2696
|
-
.sc(GetUserAccessLoggingSettings$)
|
|
700
|
+
.sc(schemas_0.GetUserAccessLoggingSettings$)
|
|
2697
701
|
.build() {
|
|
2698
702
|
}
|
|
2699
703
|
|
|
@@ -2705,7 +709,7 @@ class GetUserSettingsCommand extends smithyClient.Command
|
|
|
2705
709
|
})
|
|
2706
710
|
.s("AWSErmineControlPlaneService", "GetUserSettings", {})
|
|
2707
711
|
.n("WorkSpacesWebClient", "GetUserSettingsCommand")
|
|
2708
|
-
.sc(GetUserSettings$)
|
|
712
|
+
.sc(schemas_0.GetUserSettings$)
|
|
2709
713
|
.build() {
|
|
2710
714
|
}
|
|
2711
715
|
|
|
@@ -2717,7 +721,7 @@ class ListBrowserSettingsCommand extends smithyClient.Command
|
|
|
2717
721
|
})
|
|
2718
722
|
.s("AWSErmineControlPlaneService", "ListBrowserSettings", {})
|
|
2719
723
|
.n("WorkSpacesWebClient", "ListBrowserSettingsCommand")
|
|
2720
|
-
.sc(ListBrowserSettings$)
|
|
724
|
+
.sc(schemas_0.ListBrowserSettings$)
|
|
2721
725
|
.build() {
|
|
2722
726
|
}
|
|
2723
727
|
|
|
@@ -2729,7 +733,7 @@ class ListDataProtectionSettingsCommand extends smithyClient.Command
|
|
|
2729
733
|
})
|
|
2730
734
|
.s("AWSErmineControlPlaneService", "ListDataProtectionSettings", {})
|
|
2731
735
|
.n("WorkSpacesWebClient", "ListDataProtectionSettingsCommand")
|
|
2732
|
-
.sc(ListDataProtectionSettings$)
|
|
736
|
+
.sc(schemas_0.ListDataProtectionSettings$)
|
|
2733
737
|
.build() {
|
|
2734
738
|
}
|
|
2735
739
|
|
|
@@ -2741,7 +745,7 @@ class ListIdentityProvidersCommand extends smithyClient.Command
|
|
|
2741
745
|
})
|
|
2742
746
|
.s("AWSErmineControlPlaneService", "ListIdentityProviders", {})
|
|
2743
747
|
.n("WorkSpacesWebClient", "ListIdentityProvidersCommand")
|
|
2744
|
-
.sc(ListIdentityProviders$)
|
|
748
|
+
.sc(schemas_0.ListIdentityProviders$)
|
|
2745
749
|
.build() {
|
|
2746
750
|
}
|
|
2747
751
|
|
|
@@ -2753,7 +757,7 @@ class ListIpAccessSettingsCommand extends smithyClient.Command
|
|
|
2753
757
|
})
|
|
2754
758
|
.s("AWSErmineControlPlaneService", "ListIpAccessSettings", {})
|
|
2755
759
|
.n("WorkSpacesWebClient", "ListIpAccessSettingsCommand")
|
|
2756
|
-
.sc(ListIpAccessSettings$)
|
|
760
|
+
.sc(schemas_0.ListIpAccessSettings$)
|
|
2757
761
|
.build() {
|
|
2758
762
|
}
|
|
2759
763
|
|
|
@@ -2765,7 +769,7 @@ class ListNetworkSettingsCommand extends smithyClient.Command
|
|
|
2765
769
|
})
|
|
2766
770
|
.s("AWSErmineControlPlaneService", "ListNetworkSettings", {})
|
|
2767
771
|
.n("WorkSpacesWebClient", "ListNetworkSettingsCommand")
|
|
2768
|
-
.sc(ListNetworkSettings$)
|
|
772
|
+
.sc(schemas_0.ListNetworkSettings$)
|
|
2769
773
|
.build() {
|
|
2770
774
|
}
|
|
2771
775
|
|
|
@@ -2777,7 +781,7 @@ class ListPortalsCommand extends smithyClient.Command
|
|
|
2777
781
|
})
|
|
2778
782
|
.s("AWSErmineControlPlaneService", "ListPortals", {})
|
|
2779
783
|
.n("WorkSpacesWebClient", "ListPortalsCommand")
|
|
2780
|
-
.sc(ListPortals$)
|
|
784
|
+
.sc(schemas_0.ListPortals$)
|
|
2781
785
|
.build() {
|
|
2782
786
|
}
|
|
2783
787
|
|
|
@@ -2789,7 +793,7 @@ class ListSessionLoggersCommand extends smithyClient.Command
|
|
|
2789
793
|
})
|
|
2790
794
|
.s("AWSErmineControlPlaneService", "ListSessionLoggers", {})
|
|
2791
795
|
.n("WorkSpacesWebClient", "ListSessionLoggersCommand")
|
|
2792
|
-
.sc(ListSessionLoggers$)
|
|
796
|
+
.sc(schemas_0.ListSessionLoggers$)
|
|
2793
797
|
.build() {
|
|
2794
798
|
}
|
|
2795
799
|
|
|
@@ -2801,7 +805,7 @@ class ListSessionsCommand extends smithyClient.Command
|
|
|
2801
805
|
})
|
|
2802
806
|
.s("AWSErmineControlPlaneService", "ListSessions", {})
|
|
2803
807
|
.n("WorkSpacesWebClient", "ListSessionsCommand")
|
|
2804
|
-
.sc(ListSessions$)
|
|
808
|
+
.sc(schemas_0.ListSessions$)
|
|
2805
809
|
.build() {
|
|
2806
810
|
}
|
|
2807
811
|
|
|
@@ -2813,7 +817,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2813
817
|
})
|
|
2814
818
|
.s("AWSErmineControlPlaneService", "ListTagsForResource", {})
|
|
2815
819
|
.n("WorkSpacesWebClient", "ListTagsForResourceCommand")
|
|
2816
|
-
.sc(ListTagsForResource$)
|
|
820
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2817
821
|
.build() {
|
|
2818
822
|
}
|
|
2819
823
|
|
|
@@ -2825,7 +829,7 @@ class ListTrustStoreCertificatesCommand extends smithyClient.Command
|
|
|
2825
829
|
})
|
|
2826
830
|
.s("AWSErmineControlPlaneService", "ListTrustStoreCertificates", {})
|
|
2827
831
|
.n("WorkSpacesWebClient", "ListTrustStoreCertificatesCommand")
|
|
2828
|
-
.sc(ListTrustStoreCertificates$)
|
|
832
|
+
.sc(schemas_0.ListTrustStoreCertificates$)
|
|
2829
833
|
.build() {
|
|
2830
834
|
}
|
|
2831
835
|
|
|
@@ -2837,7 +841,7 @@ class ListTrustStoresCommand extends smithyClient.Command
|
|
|
2837
841
|
})
|
|
2838
842
|
.s("AWSErmineControlPlaneService", "ListTrustStores", {})
|
|
2839
843
|
.n("WorkSpacesWebClient", "ListTrustStoresCommand")
|
|
2840
|
-
.sc(ListTrustStores$)
|
|
844
|
+
.sc(schemas_0.ListTrustStores$)
|
|
2841
845
|
.build() {
|
|
2842
846
|
}
|
|
2843
847
|
|
|
@@ -2849,7 +853,7 @@ class ListUserAccessLoggingSettingsCommand extends smithyClient.Command
|
|
|
2849
853
|
})
|
|
2850
854
|
.s("AWSErmineControlPlaneService", "ListUserAccessLoggingSettings", {})
|
|
2851
855
|
.n("WorkSpacesWebClient", "ListUserAccessLoggingSettingsCommand")
|
|
2852
|
-
.sc(ListUserAccessLoggingSettings$)
|
|
856
|
+
.sc(schemas_0.ListUserAccessLoggingSettings$)
|
|
2853
857
|
.build() {
|
|
2854
858
|
}
|
|
2855
859
|
|
|
@@ -2861,7 +865,7 @@ class ListUserSettingsCommand extends smithyClient.Command
|
|
|
2861
865
|
})
|
|
2862
866
|
.s("AWSErmineControlPlaneService", "ListUserSettings", {})
|
|
2863
867
|
.n("WorkSpacesWebClient", "ListUserSettingsCommand")
|
|
2864
|
-
.sc(ListUserSettings$)
|
|
868
|
+
.sc(schemas_0.ListUserSettings$)
|
|
2865
869
|
.build() {
|
|
2866
870
|
}
|
|
2867
871
|
|
|
@@ -2873,7 +877,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2873
877
|
})
|
|
2874
878
|
.s("AWSErmineControlPlaneService", "TagResource", {})
|
|
2875
879
|
.n("WorkSpacesWebClient", "TagResourceCommand")
|
|
2876
|
-
.sc(TagResource$)
|
|
880
|
+
.sc(schemas_0.TagResource$)
|
|
2877
881
|
.build() {
|
|
2878
882
|
}
|
|
2879
883
|
|
|
@@ -2885,7 +889,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2885
889
|
})
|
|
2886
890
|
.s("AWSErmineControlPlaneService", "UntagResource", {})
|
|
2887
891
|
.n("WorkSpacesWebClient", "UntagResourceCommand")
|
|
2888
|
-
.sc(UntagResource$)
|
|
892
|
+
.sc(schemas_0.UntagResource$)
|
|
2889
893
|
.build() {
|
|
2890
894
|
}
|
|
2891
895
|
|
|
@@ -2897,7 +901,7 @@ class UpdateBrowserSettingsCommand extends smithyClient.Command
|
|
|
2897
901
|
})
|
|
2898
902
|
.s("AWSErmineControlPlaneService", "UpdateBrowserSettings", {})
|
|
2899
903
|
.n("WorkSpacesWebClient", "UpdateBrowserSettingsCommand")
|
|
2900
|
-
.sc(UpdateBrowserSettings$)
|
|
904
|
+
.sc(schemas_0.UpdateBrowserSettings$)
|
|
2901
905
|
.build() {
|
|
2902
906
|
}
|
|
2903
907
|
|
|
@@ -2909,7 +913,7 @@ class UpdateDataProtectionSettingsCommand extends smithyClient.Command
|
|
|
2909
913
|
})
|
|
2910
914
|
.s("AWSErmineControlPlaneService", "UpdateDataProtectionSettings", {})
|
|
2911
915
|
.n("WorkSpacesWebClient", "UpdateDataProtectionSettingsCommand")
|
|
2912
|
-
.sc(UpdateDataProtectionSettings$)
|
|
916
|
+
.sc(schemas_0.UpdateDataProtectionSettings$)
|
|
2913
917
|
.build() {
|
|
2914
918
|
}
|
|
2915
919
|
|
|
@@ -2921,7 +925,7 @@ class UpdateIdentityProviderCommand extends smithyClient.Command
|
|
|
2921
925
|
})
|
|
2922
926
|
.s("AWSErmineControlPlaneService", "UpdateIdentityProvider", {})
|
|
2923
927
|
.n("WorkSpacesWebClient", "UpdateIdentityProviderCommand")
|
|
2924
|
-
.sc(UpdateIdentityProvider$)
|
|
928
|
+
.sc(schemas_0.UpdateIdentityProvider$)
|
|
2925
929
|
.build() {
|
|
2926
930
|
}
|
|
2927
931
|
|
|
@@ -2933,7 +937,7 @@ class UpdateIpAccessSettingsCommand extends smithyClient.Command
|
|
|
2933
937
|
})
|
|
2934
938
|
.s("AWSErmineControlPlaneService", "UpdateIpAccessSettings", {})
|
|
2935
939
|
.n("WorkSpacesWebClient", "UpdateIpAccessSettingsCommand")
|
|
2936
|
-
.sc(UpdateIpAccessSettings$)
|
|
940
|
+
.sc(schemas_0.UpdateIpAccessSettings$)
|
|
2937
941
|
.build() {
|
|
2938
942
|
}
|
|
2939
943
|
|
|
@@ -2945,7 +949,7 @@ class UpdateNetworkSettingsCommand extends smithyClient.Command
|
|
|
2945
949
|
})
|
|
2946
950
|
.s("AWSErmineControlPlaneService", "UpdateNetworkSettings", {})
|
|
2947
951
|
.n("WorkSpacesWebClient", "UpdateNetworkSettingsCommand")
|
|
2948
|
-
.sc(UpdateNetworkSettings$)
|
|
952
|
+
.sc(schemas_0.UpdateNetworkSettings$)
|
|
2949
953
|
.build() {
|
|
2950
954
|
}
|
|
2951
955
|
|
|
@@ -2957,7 +961,7 @@ class UpdatePortalCommand extends smithyClient.Command
|
|
|
2957
961
|
})
|
|
2958
962
|
.s("AWSErmineControlPlaneService", "UpdatePortal", {})
|
|
2959
963
|
.n("WorkSpacesWebClient", "UpdatePortalCommand")
|
|
2960
|
-
.sc(UpdatePortal$)
|
|
964
|
+
.sc(schemas_0.UpdatePortal$)
|
|
2961
965
|
.build() {
|
|
2962
966
|
}
|
|
2963
967
|
|
|
@@ -2969,7 +973,7 @@ class UpdateSessionLoggerCommand extends smithyClient.Command
|
|
|
2969
973
|
})
|
|
2970
974
|
.s("AWSErmineControlPlaneService", "UpdateSessionLogger", {})
|
|
2971
975
|
.n("WorkSpacesWebClient", "UpdateSessionLoggerCommand")
|
|
2972
|
-
.sc(UpdateSessionLogger$)
|
|
976
|
+
.sc(schemas_0.UpdateSessionLogger$)
|
|
2973
977
|
.build() {
|
|
2974
978
|
}
|
|
2975
979
|
|
|
@@ -2981,7 +985,7 @@ class UpdateTrustStoreCommand extends smithyClient.Command
|
|
|
2981
985
|
})
|
|
2982
986
|
.s("AWSErmineControlPlaneService", "UpdateTrustStore", {})
|
|
2983
987
|
.n("WorkSpacesWebClient", "UpdateTrustStoreCommand")
|
|
2984
|
-
.sc(UpdateTrustStore$)
|
|
988
|
+
.sc(schemas_0.UpdateTrustStore$)
|
|
2985
989
|
.build() {
|
|
2986
990
|
}
|
|
2987
991
|
|
|
@@ -2993,7 +997,7 @@ class UpdateUserAccessLoggingSettingsCommand extends smithyClient.Command
|
|
|
2993
997
|
})
|
|
2994
998
|
.s("AWSErmineControlPlaneService", "UpdateUserAccessLoggingSettings", {})
|
|
2995
999
|
.n("WorkSpacesWebClient", "UpdateUserAccessLoggingSettingsCommand")
|
|
2996
|
-
.sc(UpdateUserAccessLoggingSettings$)
|
|
1000
|
+
.sc(schemas_0.UpdateUserAccessLoggingSettings$)
|
|
2997
1001
|
.build() {
|
|
2998
1002
|
}
|
|
2999
1003
|
|
|
@@ -3005,7 +1009,7 @@ class UpdateUserSettingsCommand extends smithyClient.Command
|
|
|
3005
1009
|
})
|
|
3006
1010
|
.s("AWSErmineControlPlaneService", "UpdateUserSettings", {})
|
|
3007
1011
|
.n("WorkSpacesWebClient", "UpdateUserSettingsCommand")
|
|
3008
|
-
.sc(UpdateUserSettings$)
|
|
1012
|
+
.sc(schemas_0.UpdateUserSettings$)
|
|
3009
1013
|
.build() {
|
|
3010
1014
|
}
|
|
3011
1015
|
|
|
@@ -3289,392 +1293,108 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3289
1293
|
enumerable: true,
|
|
3290
1294
|
get: function () { return smithyClient.Client; }
|
|
3291
1295
|
});
|
|
3292
|
-
exports
|
|
3293
|
-
|
|
3294
|
-
|
|
1296
|
+
Object.defineProperty(exports, "WorkSpacesWebServiceException", {
|
|
1297
|
+
enumerable: true,
|
|
1298
|
+
get: function () { return WorkSpacesWebServiceException.WorkSpacesWebServiceException; }
|
|
1299
|
+
});
|
|
3295
1300
|
exports.AssociateBrowserSettingsCommand = AssociateBrowserSettingsCommand;
|
|
3296
|
-
exports.AssociateBrowserSettingsRequest$ = AssociateBrowserSettingsRequest$;
|
|
3297
|
-
exports.AssociateBrowserSettingsResponse$ = AssociateBrowserSettingsResponse$;
|
|
3298
|
-
exports.AssociateDataProtectionSettings$ = AssociateDataProtectionSettings$;
|
|
3299
1301
|
exports.AssociateDataProtectionSettingsCommand = AssociateDataProtectionSettingsCommand;
|
|
3300
|
-
exports.AssociateDataProtectionSettingsRequest$ = AssociateDataProtectionSettingsRequest$;
|
|
3301
|
-
exports.AssociateDataProtectionSettingsResponse$ = AssociateDataProtectionSettingsResponse$;
|
|
3302
|
-
exports.AssociateIpAccessSettings$ = AssociateIpAccessSettings$;
|
|
3303
1302
|
exports.AssociateIpAccessSettingsCommand = AssociateIpAccessSettingsCommand;
|
|
3304
|
-
exports.AssociateIpAccessSettingsRequest$ = AssociateIpAccessSettingsRequest$;
|
|
3305
|
-
exports.AssociateIpAccessSettingsResponse$ = AssociateIpAccessSettingsResponse$;
|
|
3306
|
-
exports.AssociateNetworkSettings$ = AssociateNetworkSettings$;
|
|
3307
1303
|
exports.AssociateNetworkSettingsCommand = AssociateNetworkSettingsCommand;
|
|
3308
|
-
exports.AssociateNetworkSettingsRequest$ = AssociateNetworkSettingsRequest$;
|
|
3309
|
-
exports.AssociateNetworkSettingsResponse$ = AssociateNetworkSettingsResponse$;
|
|
3310
|
-
exports.AssociateSessionLogger$ = AssociateSessionLogger$;
|
|
3311
1304
|
exports.AssociateSessionLoggerCommand = AssociateSessionLoggerCommand;
|
|
3312
|
-
exports.AssociateSessionLoggerRequest$ = AssociateSessionLoggerRequest$;
|
|
3313
|
-
exports.AssociateSessionLoggerResponse$ = AssociateSessionLoggerResponse$;
|
|
3314
|
-
exports.AssociateTrustStore$ = AssociateTrustStore$;
|
|
3315
1305
|
exports.AssociateTrustStoreCommand = AssociateTrustStoreCommand;
|
|
3316
|
-
exports.AssociateTrustStoreRequest$ = AssociateTrustStoreRequest$;
|
|
3317
|
-
exports.AssociateTrustStoreResponse$ = AssociateTrustStoreResponse$;
|
|
3318
|
-
exports.AssociateUserAccessLoggingSettings$ = AssociateUserAccessLoggingSettings$;
|
|
3319
1306
|
exports.AssociateUserAccessLoggingSettingsCommand = AssociateUserAccessLoggingSettingsCommand;
|
|
3320
|
-
exports.AssociateUserAccessLoggingSettingsRequest$ = AssociateUserAccessLoggingSettingsRequest$;
|
|
3321
|
-
exports.AssociateUserAccessLoggingSettingsResponse$ = AssociateUserAccessLoggingSettingsResponse$;
|
|
3322
|
-
exports.AssociateUserSettings$ = AssociateUserSettings$;
|
|
3323
1307
|
exports.AssociateUserSettingsCommand = AssociateUserSettingsCommand;
|
|
3324
|
-
exports.AssociateUserSettingsRequest$ = AssociateUserSettingsRequest$;
|
|
3325
|
-
exports.AssociateUserSettingsResponse$ = AssociateUserSettingsResponse$;
|
|
3326
1308
|
exports.AuthenticationType = AuthenticationType;
|
|
3327
|
-
exports.BrandingConfiguration$ = BrandingConfiguration$;
|
|
3328
|
-
exports.BrandingConfigurationCreateInput$ = BrandingConfigurationCreateInput$;
|
|
3329
|
-
exports.BrandingConfigurationUpdateInput$ = BrandingConfigurationUpdateInput$;
|
|
3330
|
-
exports.BrowserSettings$ = BrowserSettings$;
|
|
3331
|
-
exports.BrowserSettingsSummary$ = BrowserSettingsSummary$;
|
|
3332
1309
|
exports.BrowserType = BrowserType;
|
|
3333
1310
|
exports.Category = Category;
|
|
3334
|
-
exports.Certificate$ = Certificate$;
|
|
3335
|
-
exports.CertificateSummary$ = CertificateSummary$;
|
|
3336
1311
|
exports.ColorTheme = ColorTheme;
|
|
3337
|
-
exports.ConflictException = ConflictException;
|
|
3338
|
-
exports.ConflictException$ = ConflictException$;
|
|
3339
|
-
exports.CookieSpecification$ = CookieSpecification$;
|
|
3340
|
-
exports.CookieSynchronizationConfiguration$ = CookieSynchronizationConfiguration$;
|
|
3341
|
-
exports.CreateBrowserSettings$ = CreateBrowserSettings$;
|
|
3342
1312
|
exports.CreateBrowserSettingsCommand = CreateBrowserSettingsCommand;
|
|
3343
|
-
exports.CreateBrowserSettingsRequest$ = CreateBrowserSettingsRequest$;
|
|
3344
|
-
exports.CreateBrowserSettingsResponse$ = CreateBrowserSettingsResponse$;
|
|
3345
|
-
exports.CreateDataProtectionSettings$ = CreateDataProtectionSettings$;
|
|
3346
1313
|
exports.CreateDataProtectionSettingsCommand = CreateDataProtectionSettingsCommand;
|
|
3347
|
-
exports.CreateDataProtectionSettingsRequest$ = CreateDataProtectionSettingsRequest$;
|
|
3348
|
-
exports.CreateDataProtectionSettingsResponse$ = CreateDataProtectionSettingsResponse$;
|
|
3349
|
-
exports.CreateIdentityProvider$ = CreateIdentityProvider$;
|
|
3350
1314
|
exports.CreateIdentityProviderCommand = CreateIdentityProviderCommand;
|
|
3351
|
-
exports.CreateIdentityProviderRequest$ = CreateIdentityProviderRequest$;
|
|
3352
|
-
exports.CreateIdentityProviderResponse$ = CreateIdentityProviderResponse$;
|
|
3353
|
-
exports.CreateIpAccessSettings$ = CreateIpAccessSettings$;
|
|
3354
1315
|
exports.CreateIpAccessSettingsCommand = CreateIpAccessSettingsCommand;
|
|
3355
|
-
exports.CreateIpAccessSettingsRequest$ = CreateIpAccessSettingsRequest$;
|
|
3356
|
-
exports.CreateIpAccessSettingsResponse$ = CreateIpAccessSettingsResponse$;
|
|
3357
|
-
exports.CreateNetworkSettings$ = CreateNetworkSettings$;
|
|
3358
1316
|
exports.CreateNetworkSettingsCommand = CreateNetworkSettingsCommand;
|
|
3359
|
-
exports.CreateNetworkSettingsRequest$ = CreateNetworkSettingsRequest$;
|
|
3360
|
-
exports.CreateNetworkSettingsResponse$ = CreateNetworkSettingsResponse$;
|
|
3361
|
-
exports.CreatePortal$ = CreatePortal$;
|
|
3362
1317
|
exports.CreatePortalCommand = CreatePortalCommand;
|
|
3363
|
-
exports.CreatePortalRequest$ = CreatePortalRequest$;
|
|
3364
|
-
exports.CreatePortalResponse$ = CreatePortalResponse$;
|
|
3365
|
-
exports.CreateSessionLogger$ = CreateSessionLogger$;
|
|
3366
1318
|
exports.CreateSessionLoggerCommand = CreateSessionLoggerCommand;
|
|
3367
|
-
exports.CreateSessionLoggerRequest$ = CreateSessionLoggerRequest$;
|
|
3368
|
-
exports.CreateSessionLoggerResponse$ = CreateSessionLoggerResponse$;
|
|
3369
|
-
exports.CreateTrustStore$ = CreateTrustStore$;
|
|
3370
1319
|
exports.CreateTrustStoreCommand = CreateTrustStoreCommand;
|
|
3371
|
-
exports.CreateTrustStoreRequest$ = CreateTrustStoreRequest$;
|
|
3372
|
-
exports.CreateTrustStoreResponse$ = CreateTrustStoreResponse$;
|
|
3373
|
-
exports.CreateUserAccessLoggingSettings$ = CreateUserAccessLoggingSettings$;
|
|
3374
1320
|
exports.CreateUserAccessLoggingSettingsCommand = CreateUserAccessLoggingSettingsCommand;
|
|
3375
|
-
exports.CreateUserAccessLoggingSettingsRequest$ = CreateUserAccessLoggingSettingsRequest$;
|
|
3376
|
-
exports.CreateUserAccessLoggingSettingsResponse$ = CreateUserAccessLoggingSettingsResponse$;
|
|
3377
|
-
exports.CreateUserSettings$ = CreateUserSettings$;
|
|
3378
1321
|
exports.CreateUserSettingsCommand = CreateUserSettingsCommand;
|
|
3379
|
-
exports.CreateUserSettingsRequest$ = CreateUserSettingsRequest$;
|
|
3380
|
-
exports.CreateUserSettingsResponse$ = CreateUserSettingsResponse$;
|
|
3381
|
-
exports.CustomPattern$ = CustomPattern$;
|
|
3382
|
-
exports.DataProtectionSettings$ = DataProtectionSettings$;
|
|
3383
|
-
exports.DataProtectionSettingsSummary$ = DataProtectionSettingsSummary$;
|
|
3384
|
-
exports.DeleteBrowserSettings$ = DeleteBrowserSettings$;
|
|
3385
1322
|
exports.DeleteBrowserSettingsCommand = DeleteBrowserSettingsCommand;
|
|
3386
|
-
exports.DeleteBrowserSettingsRequest$ = DeleteBrowserSettingsRequest$;
|
|
3387
|
-
exports.DeleteBrowserSettingsResponse$ = DeleteBrowserSettingsResponse$;
|
|
3388
|
-
exports.DeleteDataProtectionSettings$ = DeleteDataProtectionSettings$;
|
|
3389
1323
|
exports.DeleteDataProtectionSettingsCommand = DeleteDataProtectionSettingsCommand;
|
|
3390
|
-
exports.DeleteDataProtectionSettingsRequest$ = DeleteDataProtectionSettingsRequest$;
|
|
3391
|
-
exports.DeleteDataProtectionSettingsResponse$ = DeleteDataProtectionSettingsResponse$;
|
|
3392
|
-
exports.DeleteIdentityProvider$ = DeleteIdentityProvider$;
|
|
3393
1324
|
exports.DeleteIdentityProviderCommand = DeleteIdentityProviderCommand;
|
|
3394
|
-
exports.DeleteIdentityProviderRequest$ = DeleteIdentityProviderRequest$;
|
|
3395
|
-
exports.DeleteIdentityProviderResponse$ = DeleteIdentityProviderResponse$;
|
|
3396
|
-
exports.DeleteIpAccessSettings$ = DeleteIpAccessSettings$;
|
|
3397
1325
|
exports.DeleteIpAccessSettingsCommand = DeleteIpAccessSettingsCommand;
|
|
3398
|
-
exports.DeleteIpAccessSettingsRequest$ = DeleteIpAccessSettingsRequest$;
|
|
3399
|
-
exports.DeleteIpAccessSettingsResponse$ = DeleteIpAccessSettingsResponse$;
|
|
3400
|
-
exports.DeleteNetworkSettings$ = DeleteNetworkSettings$;
|
|
3401
1326
|
exports.DeleteNetworkSettingsCommand = DeleteNetworkSettingsCommand;
|
|
3402
|
-
exports.DeleteNetworkSettingsRequest$ = DeleteNetworkSettingsRequest$;
|
|
3403
|
-
exports.DeleteNetworkSettingsResponse$ = DeleteNetworkSettingsResponse$;
|
|
3404
|
-
exports.DeletePortal$ = DeletePortal$;
|
|
3405
1327
|
exports.DeletePortalCommand = DeletePortalCommand;
|
|
3406
|
-
exports.DeletePortalRequest$ = DeletePortalRequest$;
|
|
3407
|
-
exports.DeletePortalResponse$ = DeletePortalResponse$;
|
|
3408
|
-
exports.DeleteSessionLogger$ = DeleteSessionLogger$;
|
|
3409
1328
|
exports.DeleteSessionLoggerCommand = DeleteSessionLoggerCommand;
|
|
3410
|
-
exports.DeleteSessionLoggerRequest$ = DeleteSessionLoggerRequest$;
|
|
3411
|
-
exports.DeleteSessionLoggerResponse$ = DeleteSessionLoggerResponse$;
|
|
3412
|
-
exports.DeleteTrustStore$ = DeleteTrustStore$;
|
|
3413
1329
|
exports.DeleteTrustStoreCommand = DeleteTrustStoreCommand;
|
|
3414
|
-
exports.DeleteTrustStoreRequest$ = DeleteTrustStoreRequest$;
|
|
3415
|
-
exports.DeleteTrustStoreResponse$ = DeleteTrustStoreResponse$;
|
|
3416
|
-
exports.DeleteUserAccessLoggingSettings$ = DeleteUserAccessLoggingSettings$;
|
|
3417
1330
|
exports.DeleteUserAccessLoggingSettingsCommand = DeleteUserAccessLoggingSettingsCommand;
|
|
3418
|
-
exports.DeleteUserAccessLoggingSettingsRequest$ = DeleteUserAccessLoggingSettingsRequest$;
|
|
3419
|
-
exports.DeleteUserAccessLoggingSettingsResponse$ = DeleteUserAccessLoggingSettingsResponse$;
|
|
3420
|
-
exports.DeleteUserSettings$ = DeleteUserSettings$;
|
|
3421
1331
|
exports.DeleteUserSettingsCommand = DeleteUserSettingsCommand;
|
|
3422
|
-
exports.DeleteUserSettingsRequest$ = DeleteUserSettingsRequest$;
|
|
3423
|
-
exports.DeleteUserSettingsResponse$ = DeleteUserSettingsResponse$;
|
|
3424
|
-
exports.DisassociateBrowserSettings$ = DisassociateBrowserSettings$;
|
|
3425
1332
|
exports.DisassociateBrowserSettingsCommand = DisassociateBrowserSettingsCommand;
|
|
3426
|
-
exports.DisassociateBrowserSettingsRequest$ = DisassociateBrowserSettingsRequest$;
|
|
3427
|
-
exports.DisassociateBrowserSettingsResponse$ = DisassociateBrowserSettingsResponse$;
|
|
3428
|
-
exports.DisassociateDataProtectionSettings$ = DisassociateDataProtectionSettings$;
|
|
3429
1333
|
exports.DisassociateDataProtectionSettingsCommand = DisassociateDataProtectionSettingsCommand;
|
|
3430
|
-
exports.DisassociateDataProtectionSettingsRequest$ = DisassociateDataProtectionSettingsRequest$;
|
|
3431
|
-
exports.DisassociateDataProtectionSettingsResponse$ = DisassociateDataProtectionSettingsResponse$;
|
|
3432
|
-
exports.DisassociateIpAccessSettings$ = DisassociateIpAccessSettings$;
|
|
3433
1334
|
exports.DisassociateIpAccessSettingsCommand = DisassociateIpAccessSettingsCommand;
|
|
3434
|
-
exports.DisassociateIpAccessSettingsRequest$ = DisassociateIpAccessSettingsRequest$;
|
|
3435
|
-
exports.DisassociateIpAccessSettingsResponse$ = DisassociateIpAccessSettingsResponse$;
|
|
3436
|
-
exports.DisassociateNetworkSettings$ = DisassociateNetworkSettings$;
|
|
3437
1335
|
exports.DisassociateNetworkSettingsCommand = DisassociateNetworkSettingsCommand;
|
|
3438
|
-
exports.DisassociateNetworkSettingsRequest$ = DisassociateNetworkSettingsRequest$;
|
|
3439
|
-
exports.DisassociateNetworkSettingsResponse$ = DisassociateNetworkSettingsResponse$;
|
|
3440
|
-
exports.DisassociateSessionLogger$ = DisassociateSessionLogger$;
|
|
3441
1336
|
exports.DisassociateSessionLoggerCommand = DisassociateSessionLoggerCommand;
|
|
3442
|
-
exports.DisassociateSessionLoggerRequest$ = DisassociateSessionLoggerRequest$;
|
|
3443
|
-
exports.DisassociateSessionLoggerResponse$ = DisassociateSessionLoggerResponse$;
|
|
3444
|
-
exports.DisassociateTrustStore$ = DisassociateTrustStore$;
|
|
3445
1337
|
exports.DisassociateTrustStoreCommand = DisassociateTrustStoreCommand;
|
|
3446
|
-
exports.DisassociateTrustStoreRequest$ = DisassociateTrustStoreRequest$;
|
|
3447
|
-
exports.DisassociateTrustStoreResponse$ = DisassociateTrustStoreResponse$;
|
|
3448
|
-
exports.DisassociateUserAccessLoggingSettings$ = DisassociateUserAccessLoggingSettings$;
|
|
3449
1338
|
exports.DisassociateUserAccessLoggingSettingsCommand = DisassociateUserAccessLoggingSettingsCommand;
|
|
3450
|
-
exports.DisassociateUserAccessLoggingSettingsRequest$ = DisassociateUserAccessLoggingSettingsRequest$;
|
|
3451
|
-
exports.DisassociateUserAccessLoggingSettingsResponse$ = DisassociateUserAccessLoggingSettingsResponse$;
|
|
3452
|
-
exports.DisassociateUserSettings$ = DisassociateUserSettings$;
|
|
3453
1339
|
exports.DisassociateUserSettingsCommand = DisassociateUserSettingsCommand;
|
|
3454
|
-
exports.DisassociateUserSettingsRequest$ = DisassociateUserSettingsRequest$;
|
|
3455
|
-
exports.DisassociateUserSettingsResponse$ = DisassociateUserSettingsResponse$;
|
|
3456
1340
|
exports.EnabledType = EnabledType;
|
|
3457
1341
|
exports.Event = Event;
|
|
3458
|
-
exports.EventFilter$ = EventFilter$;
|
|
3459
|
-
exports.ExpireSession$ = ExpireSession$;
|
|
3460
1342
|
exports.ExpireSessionCommand = ExpireSessionCommand;
|
|
3461
|
-
exports.ExpireSessionRequest$ = ExpireSessionRequest$;
|
|
3462
|
-
exports.ExpireSessionResponse$ = ExpireSessionResponse$;
|
|
3463
1343
|
exports.FolderStructure = FolderStructure;
|
|
3464
|
-
exports.GetBrowserSettings$ = GetBrowserSettings$;
|
|
3465
1344
|
exports.GetBrowserSettingsCommand = GetBrowserSettingsCommand;
|
|
3466
|
-
exports.GetBrowserSettingsRequest$ = GetBrowserSettingsRequest$;
|
|
3467
|
-
exports.GetBrowserSettingsResponse$ = GetBrowserSettingsResponse$;
|
|
3468
|
-
exports.GetDataProtectionSettings$ = GetDataProtectionSettings$;
|
|
3469
1345
|
exports.GetDataProtectionSettingsCommand = GetDataProtectionSettingsCommand;
|
|
3470
|
-
exports.GetDataProtectionSettingsRequest$ = GetDataProtectionSettingsRequest$;
|
|
3471
|
-
exports.GetDataProtectionSettingsResponse$ = GetDataProtectionSettingsResponse$;
|
|
3472
|
-
exports.GetIdentityProvider$ = GetIdentityProvider$;
|
|
3473
1346
|
exports.GetIdentityProviderCommand = GetIdentityProviderCommand;
|
|
3474
|
-
exports.GetIdentityProviderRequest$ = GetIdentityProviderRequest$;
|
|
3475
|
-
exports.GetIdentityProviderResponse$ = GetIdentityProviderResponse$;
|
|
3476
|
-
exports.GetIpAccessSettings$ = GetIpAccessSettings$;
|
|
3477
1347
|
exports.GetIpAccessSettingsCommand = GetIpAccessSettingsCommand;
|
|
3478
|
-
exports.GetIpAccessSettingsRequest$ = GetIpAccessSettingsRequest$;
|
|
3479
|
-
exports.GetIpAccessSettingsResponse$ = GetIpAccessSettingsResponse$;
|
|
3480
|
-
exports.GetNetworkSettings$ = GetNetworkSettings$;
|
|
3481
1348
|
exports.GetNetworkSettingsCommand = GetNetworkSettingsCommand;
|
|
3482
|
-
exports.GetNetworkSettingsRequest$ = GetNetworkSettingsRequest$;
|
|
3483
|
-
exports.GetNetworkSettingsResponse$ = GetNetworkSettingsResponse$;
|
|
3484
|
-
exports.GetPortal$ = GetPortal$;
|
|
3485
1349
|
exports.GetPortalCommand = GetPortalCommand;
|
|
3486
|
-
exports.GetPortalRequest$ = GetPortalRequest$;
|
|
3487
|
-
exports.GetPortalResponse$ = GetPortalResponse$;
|
|
3488
|
-
exports.GetPortalServiceProviderMetadata$ = GetPortalServiceProviderMetadata$;
|
|
3489
1350
|
exports.GetPortalServiceProviderMetadataCommand = GetPortalServiceProviderMetadataCommand;
|
|
3490
|
-
exports.GetPortalServiceProviderMetadataRequest$ = GetPortalServiceProviderMetadataRequest$;
|
|
3491
|
-
exports.GetPortalServiceProviderMetadataResponse$ = GetPortalServiceProviderMetadataResponse$;
|
|
3492
|
-
exports.GetSession$ = GetSession$;
|
|
3493
1351
|
exports.GetSessionCommand = GetSessionCommand;
|
|
3494
|
-
exports.GetSessionLogger$ = GetSessionLogger$;
|
|
3495
1352
|
exports.GetSessionLoggerCommand = GetSessionLoggerCommand;
|
|
3496
|
-
exports.GetSessionLoggerRequest$ = GetSessionLoggerRequest$;
|
|
3497
|
-
exports.GetSessionLoggerResponse$ = GetSessionLoggerResponse$;
|
|
3498
|
-
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
3499
|
-
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
3500
|
-
exports.GetTrustStore$ = GetTrustStore$;
|
|
3501
|
-
exports.GetTrustStoreCertificate$ = GetTrustStoreCertificate$;
|
|
3502
1353
|
exports.GetTrustStoreCertificateCommand = GetTrustStoreCertificateCommand;
|
|
3503
|
-
exports.GetTrustStoreCertificateRequest$ = GetTrustStoreCertificateRequest$;
|
|
3504
|
-
exports.GetTrustStoreCertificateResponse$ = GetTrustStoreCertificateResponse$;
|
|
3505
1354
|
exports.GetTrustStoreCommand = GetTrustStoreCommand;
|
|
3506
|
-
exports.GetTrustStoreRequest$ = GetTrustStoreRequest$;
|
|
3507
|
-
exports.GetTrustStoreResponse$ = GetTrustStoreResponse$;
|
|
3508
|
-
exports.GetUserAccessLoggingSettings$ = GetUserAccessLoggingSettings$;
|
|
3509
1355
|
exports.GetUserAccessLoggingSettingsCommand = GetUserAccessLoggingSettingsCommand;
|
|
3510
|
-
exports.GetUserAccessLoggingSettingsRequest$ = GetUserAccessLoggingSettingsRequest$;
|
|
3511
|
-
exports.GetUserAccessLoggingSettingsResponse$ = GetUserAccessLoggingSettingsResponse$;
|
|
3512
|
-
exports.GetUserSettings$ = GetUserSettings$;
|
|
3513
1356
|
exports.GetUserSettingsCommand = GetUserSettingsCommand;
|
|
3514
|
-
exports.GetUserSettingsRequest$ = GetUserSettingsRequest$;
|
|
3515
|
-
exports.GetUserSettingsResponse$ = GetUserSettingsResponse$;
|
|
3516
|
-
exports.IconImageInput$ = IconImageInput$;
|
|
3517
|
-
exports.IdentityProvider$ = IdentityProvider$;
|
|
3518
|
-
exports.IdentityProviderSummary$ = IdentityProviderSummary$;
|
|
3519
1357
|
exports.IdentityProviderType = IdentityProviderType;
|
|
3520
|
-
exports.ImageMetadata$ = ImageMetadata$;
|
|
3521
|
-
exports.InlineRedactionConfiguration$ = InlineRedactionConfiguration$;
|
|
3522
|
-
exports.InlineRedactionPattern$ = InlineRedactionPattern$;
|
|
3523
|
-
exports.InternalServerException = InternalServerException;
|
|
3524
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
3525
|
-
exports.IpAccessSettings$ = IpAccessSettings$;
|
|
3526
|
-
exports.IpAccessSettingsSummary$ = IpAccessSettingsSummary$;
|
|
3527
|
-
exports.IpRule$ = IpRule$;
|
|
3528
|
-
exports.ListBrowserSettings$ = ListBrowserSettings$;
|
|
3529
1358
|
exports.ListBrowserSettingsCommand = ListBrowserSettingsCommand;
|
|
3530
|
-
exports.ListBrowserSettingsRequest$ = ListBrowserSettingsRequest$;
|
|
3531
|
-
exports.ListBrowserSettingsResponse$ = ListBrowserSettingsResponse$;
|
|
3532
|
-
exports.ListDataProtectionSettings$ = ListDataProtectionSettings$;
|
|
3533
1359
|
exports.ListDataProtectionSettingsCommand = ListDataProtectionSettingsCommand;
|
|
3534
|
-
exports.ListDataProtectionSettingsRequest$ = ListDataProtectionSettingsRequest$;
|
|
3535
|
-
exports.ListDataProtectionSettingsResponse$ = ListDataProtectionSettingsResponse$;
|
|
3536
|
-
exports.ListIdentityProviders$ = ListIdentityProviders$;
|
|
3537
1360
|
exports.ListIdentityProvidersCommand = ListIdentityProvidersCommand;
|
|
3538
|
-
exports.ListIdentityProvidersRequest$ = ListIdentityProvidersRequest$;
|
|
3539
|
-
exports.ListIdentityProvidersResponse$ = ListIdentityProvidersResponse$;
|
|
3540
|
-
exports.ListIpAccessSettings$ = ListIpAccessSettings$;
|
|
3541
1361
|
exports.ListIpAccessSettingsCommand = ListIpAccessSettingsCommand;
|
|
3542
|
-
exports.ListIpAccessSettingsRequest$ = ListIpAccessSettingsRequest$;
|
|
3543
|
-
exports.ListIpAccessSettingsResponse$ = ListIpAccessSettingsResponse$;
|
|
3544
|
-
exports.ListNetworkSettings$ = ListNetworkSettings$;
|
|
3545
1362
|
exports.ListNetworkSettingsCommand = ListNetworkSettingsCommand;
|
|
3546
|
-
exports.ListNetworkSettingsRequest$ = ListNetworkSettingsRequest$;
|
|
3547
|
-
exports.ListNetworkSettingsResponse$ = ListNetworkSettingsResponse$;
|
|
3548
|
-
exports.ListPortals$ = ListPortals$;
|
|
3549
1363
|
exports.ListPortalsCommand = ListPortalsCommand;
|
|
3550
|
-
exports.ListPortalsRequest$ = ListPortalsRequest$;
|
|
3551
|
-
exports.ListPortalsResponse$ = ListPortalsResponse$;
|
|
3552
|
-
exports.ListSessionLoggers$ = ListSessionLoggers$;
|
|
3553
1364
|
exports.ListSessionLoggersCommand = ListSessionLoggersCommand;
|
|
3554
|
-
exports.ListSessionLoggersRequest$ = ListSessionLoggersRequest$;
|
|
3555
|
-
exports.ListSessionLoggersResponse$ = ListSessionLoggersResponse$;
|
|
3556
|
-
exports.ListSessions$ = ListSessions$;
|
|
3557
1365
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
3558
|
-
exports.ListSessionsRequest$ = ListSessionsRequest$;
|
|
3559
|
-
exports.ListSessionsResponse$ = ListSessionsResponse$;
|
|
3560
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3561
1366
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3562
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3563
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3564
|
-
exports.ListTrustStoreCertificates$ = ListTrustStoreCertificates$;
|
|
3565
1367
|
exports.ListTrustStoreCertificatesCommand = ListTrustStoreCertificatesCommand;
|
|
3566
|
-
exports.ListTrustStoreCertificatesRequest$ = ListTrustStoreCertificatesRequest$;
|
|
3567
|
-
exports.ListTrustStoreCertificatesResponse$ = ListTrustStoreCertificatesResponse$;
|
|
3568
|
-
exports.ListTrustStores$ = ListTrustStores$;
|
|
3569
1368
|
exports.ListTrustStoresCommand = ListTrustStoresCommand;
|
|
3570
|
-
exports.ListTrustStoresRequest$ = ListTrustStoresRequest$;
|
|
3571
|
-
exports.ListTrustStoresResponse$ = ListTrustStoresResponse$;
|
|
3572
|
-
exports.ListUserAccessLoggingSettings$ = ListUserAccessLoggingSettings$;
|
|
3573
1369
|
exports.ListUserAccessLoggingSettingsCommand = ListUserAccessLoggingSettingsCommand;
|
|
3574
|
-
exports.ListUserAccessLoggingSettingsRequest$ = ListUserAccessLoggingSettingsRequest$;
|
|
3575
|
-
exports.ListUserAccessLoggingSettingsResponse$ = ListUserAccessLoggingSettingsResponse$;
|
|
3576
|
-
exports.ListUserSettings$ = ListUserSettings$;
|
|
3577
1370
|
exports.ListUserSettingsCommand = ListUserSettingsCommand;
|
|
3578
|
-
exports.ListUserSettingsRequest$ = ListUserSettingsRequest$;
|
|
3579
|
-
exports.ListUserSettingsResponse$ = ListUserSettingsResponse$;
|
|
3580
1371
|
exports.Locale = Locale;
|
|
3581
|
-
exports.LocalizedBrandingStrings$ = LocalizedBrandingStrings$;
|
|
3582
|
-
exports.LogConfiguration$ = LogConfiguration$;
|
|
3583
1372
|
exports.LogFileFormat = LogFileFormat;
|
|
3584
1373
|
exports.MaxDisplayResolution = MaxDisplayResolution;
|
|
3585
1374
|
exports.MimeType = MimeType;
|
|
3586
|
-
exports.NetworkSettings$ = NetworkSettings$;
|
|
3587
|
-
exports.NetworkSettingsSummary$ = NetworkSettingsSummary$;
|
|
3588
|
-
exports.Portal$ = Portal$;
|
|
3589
1375
|
exports.PortalStatus = PortalStatus;
|
|
3590
|
-
exports.PortalSummary$ = PortalSummary$;
|
|
3591
|
-
exports.RedactionPlaceHolder$ = RedactionPlaceHolder$;
|
|
3592
1376
|
exports.RedactionPlaceHolderType = RedactionPlaceHolderType;
|
|
3593
1377
|
exports.RendererType = RendererType;
|
|
3594
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3595
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3596
|
-
exports.S3LogConfiguration$ = S3LogConfiguration$;
|
|
3597
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3598
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3599
|
-
exports.Session$ = Session$;
|
|
3600
|
-
exports.SessionLogger$ = SessionLogger$;
|
|
3601
|
-
exports.SessionLoggerSummary$ = SessionLoggerSummary$;
|
|
3602
1378
|
exports.SessionSortBy = SessionSortBy;
|
|
3603
1379
|
exports.SessionStatus = SessionStatus;
|
|
3604
|
-
exports.SessionSummary$ = SessionSummary$;
|
|
3605
|
-
exports.Tag$ = Tag$;
|
|
3606
|
-
exports.TagResource$ = TagResource$;
|
|
3607
1380
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3608
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3609
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3610
|
-
exports.ThrottlingException = ThrottlingException;
|
|
3611
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
3612
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
3613
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3614
|
-
exports.ToolbarConfiguration$ = ToolbarConfiguration$;
|
|
3615
1381
|
exports.ToolbarItem = ToolbarItem;
|
|
3616
1382
|
exports.ToolbarType = ToolbarType;
|
|
3617
|
-
exports.TrustStore$ = TrustStore$;
|
|
3618
|
-
exports.TrustStoreSummary$ = TrustStoreSummary$;
|
|
3619
|
-
exports.UntagResource$ = UntagResource$;
|
|
3620
1383
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3621
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3622
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3623
|
-
exports.UpdateBrowserSettings$ = UpdateBrowserSettings$;
|
|
3624
1384
|
exports.UpdateBrowserSettingsCommand = UpdateBrowserSettingsCommand;
|
|
3625
|
-
exports.UpdateBrowserSettingsRequest$ = UpdateBrowserSettingsRequest$;
|
|
3626
|
-
exports.UpdateBrowserSettingsResponse$ = UpdateBrowserSettingsResponse$;
|
|
3627
|
-
exports.UpdateDataProtectionSettings$ = UpdateDataProtectionSettings$;
|
|
3628
1385
|
exports.UpdateDataProtectionSettingsCommand = UpdateDataProtectionSettingsCommand;
|
|
3629
|
-
exports.UpdateDataProtectionSettingsRequest$ = UpdateDataProtectionSettingsRequest$;
|
|
3630
|
-
exports.UpdateDataProtectionSettingsResponse$ = UpdateDataProtectionSettingsResponse$;
|
|
3631
|
-
exports.UpdateIdentityProvider$ = UpdateIdentityProvider$;
|
|
3632
1386
|
exports.UpdateIdentityProviderCommand = UpdateIdentityProviderCommand;
|
|
3633
|
-
exports.UpdateIdentityProviderRequest$ = UpdateIdentityProviderRequest$;
|
|
3634
|
-
exports.UpdateIdentityProviderResponse$ = UpdateIdentityProviderResponse$;
|
|
3635
|
-
exports.UpdateIpAccessSettings$ = UpdateIpAccessSettings$;
|
|
3636
1387
|
exports.UpdateIpAccessSettingsCommand = UpdateIpAccessSettingsCommand;
|
|
3637
|
-
exports.UpdateIpAccessSettingsRequest$ = UpdateIpAccessSettingsRequest$;
|
|
3638
|
-
exports.UpdateIpAccessSettingsResponse$ = UpdateIpAccessSettingsResponse$;
|
|
3639
|
-
exports.UpdateNetworkSettings$ = UpdateNetworkSettings$;
|
|
3640
1388
|
exports.UpdateNetworkSettingsCommand = UpdateNetworkSettingsCommand;
|
|
3641
|
-
exports.UpdateNetworkSettingsRequest$ = UpdateNetworkSettingsRequest$;
|
|
3642
|
-
exports.UpdateNetworkSettingsResponse$ = UpdateNetworkSettingsResponse$;
|
|
3643
|
-
exports.UpdatePortal$ = UpdatePortal$;
|
|
3644
1389
|
exports.UpdatePortalCommand = UpdatePortalCommand;
|
|
3645
|
-
exports.UpdatePortalRequest$ = UpdatePortalRequest$;
|
|
3646
|
-
exports.UpdatePortalResponse$ = UpdatePortalResponse$;
|
|
3647
|
-
exports.UpdateSessionLogger$ = UpdateSessionLogger$;
|
|
3648
1390
|
exports.UpdateSessionLoggerCommand = UpdateSessionLoggerCommand;
|
|
3649
|
-
exports.UpdateSessionLoggerRequest$ = UpdateSessionLoggerRequest$;
|
|
3650
|
-
exports.UpdateSessionLoggerResponse$ = UpdateSessionLoggerResponse$;
|
|
3651
|
-
exports.UpdateTrustStore$ = UpdateTrustStore$;
|
|
3652
1391
|
exports.UpdateTrustStoreCommand = UpdateTrustStoreCommand;
|
|
3653
|
-
exports.UpdateTrustStoreRequest$ = UpdateTrustStoreRequest$;
|
|
3654
|
-
exports.UpdateTrustStoreResponse$ = UpdateTrustStoreResponse$;
|
|
3655
|
-
exports.UpdateUserAccessLoggingSettings$ = UpdateUserAccessLoggingSettings$;
|
|
3656
1392
|
exports.UpdateUserAccessLoggingSettingsCommand = UpdateUserAccessLoggingSettingsCommand;
|
|
3657
|
-
exports.UpdateUserAccessLoggingSettingsRequest$ = UpdateUserAccessLoggingSettingsRequest$;
|
|
3658
|
-
exports.UpdateUserAccessLoggingSettingsResponse$ = UpdateUserAccessLoggingSettingsResponse$;
|
|
3659
|
-
exports.UpdateUserSettings$ = UpdateUserSettings$;
|
|
3660
1393
|
exports.UpdateUserSettingsCommand = UpdateUserSettingsCommand;
|
|
3661
|
-
exports.UpdateUserSettingsRequest$ = UpdateUserSettingsRequest$;
|
|
3662
|
-
exports.UpdateUserSettingsResponse$ = UpdateUserSettingsResponse$;
|
|
3663
|
-
exports.UserAccessLoggingSettings$ = UserAccessLoggingSettings$;
|
|
3664
|
-
exports.UserAccessLoggingSettingsSummary$ = UserAccessLoggingSettingsSummary$;
|
|
3665
|
-
exports.UserSettings$ = UserSettings$;
|
|
3666
|
-
exports.UserSettingsSummary$ = UserSettingsSummary$;
|
|
3667
|
-
exports.ValidationException = ValidationException;
|
|
3668
|
-
exports.ValidationException$ = ValidationException$;
|
|
3669
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
3670
1394
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
3671
1395
|
exports.VisualMode = VisualMode;
|
|
3672
|
-
exports.WallpaperImageInput$ = WallpaperImageInput$;
|
|
3673
|
-
exports.WebContentFilteringPolicy$ = WebContentFilteringPolicy$;
|
|
3674
1396
|
exports.WorkSpacesWeb = WorkSpacesWeb;
|
|
3675
1397
|
exports.WorkSpacesWebClient = WorkSpacesWebClient;
|
|
3676
|
-
exports.WorkSpacesWebServiceException = WorkSpacesWebServiceException;
|
|
3677
|
-
exports.WorkSpacesWebServiceException$ = WorkSpacesWebServiceException$;
|
|
3678
1398
|
exports._InstanceType = _InstanceType;
|
|
3679
1399
|
exports.paginateListBrowserSettings = paginateListBrowserSettings;
|
|
3680
1400
|
exports.paginateListDataProtectionSettings = paginateListDataProtectionSettings;
|
|
@@ -3688,3 +1408,15 @@ exports.paginateListTrustStoreCertificates = paginateListTrustStoreCertificates;
|
|
|
3688
1408
|
exports.paginateListTrustStores = paginateListTrustStores;
|
|
3689
1409
|
exports.paginateListUserAccessLoggingSettings = paginateListUserAccessLoggingSettings;
|
|
3690
1410
|
exports.paginateListUserSettings = paginateListUserSettings;
|
|
1411
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1412
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1413
|
+
enumerable: true,
|
|
1414
|
+
get: function () { return schemas_0[k]; }
|
|
1415
|
+
});
|
|
1416
|
+
});
|
|
1417
|
+
Object.keys(errors).forEach(function (k) {
|
|
1418
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1419
|
+
enumerable: true,
|
|
1420
|
+
get: function () { return errors[k]; }
|
|
1421
|
+
});
|
|
1422
|
+
});
|