@aws-sdk/client-directory-service 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 +99 -3253
- package/dist-cjs/models/DirectoryServiceServiceException.js +12 -0
- package/dist-cjs/models/errors.js +684 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2192 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +254 -248
- package/dist-types/schemas/schemas_0.d.ts +48 -41
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +43 -41
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ 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');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var DirectoryServiceServiceException = require('./models/DirectoryServiceServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,2808 +114,6 @@ class DirectoryServiceClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class DirectoryServiceServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, DirectoryServiceServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class ClientException extends DirectoryServiceServiceException {
|
|
122
|
-
name = "ClientException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
Message;
|
|
125
|
-
RequestId;
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "ClientException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
Object.setPrototypeOf(this, ClientException.prototype);
|
|
133
|
-
this.Message = opts.Message;
|
|
134
|
-
this.RequestId = opts.RequestId;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
class DirectoryAlreadySharedException extends DirectoryServiceServiceException {
|
|
138
|
-
name = "DirectoryAlreadySharedException";
|
|
139
|
-
$fault = "client";
|
|
140
|
-
Message;
|
|
141
|
-
RequestId;
|
|
142
|
-
constructor(opts) {
|
|
143
|
-
super({
|
|
144
|
-
name: "DirectoryAlreadySharedException",
|
|
145
|
-
$fault: "client",
|
|
146
|
-
...opts,
|
|
147
|
-
});
|
|
148
|
-
Object.setPrototypeOf(this, DirectoryAlreadySharedException.prototype);
|
|
149
|
-
this.Message = opts.Message;
|
|
150
|
-
this.RequestId = opts.RequestId;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
class EntityDoesNotExistException extends DirectoryServiceServiceException {
|
|
154
|
-
name = "EntityDoesNotExistException";
|
|
155
|
-
$fault = "client";
|
|
156
|
-
Message;
|
|
157
|
-
RequestId;
|
|
158
|
-
constructor(opts) {
|
|
159
|
-
super({
|
|
160
|
-
name: "EntityDoesNotExistException",
|
|
161
|
-
$fault: "client",
|
|
162
|
-
...opts,
|
|
163
|
-
});
|
|
164
|
-
Object.setPrototypeOf(this, EntityDoesNotExistException.prototype);
|
|
165
|
-
this.Message = opts.Message;
|
|
166
|
-
this.RequestId = opts.RequestId;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
class InvalidParameterException extends DirectoryServiceServiceException {
|
|
170
|
-
name = "InvalidParameterException";
|
|
171
|
-
$fault = "client";
|
|
172
|
-
Message;
|
|
173
|
-
RequestId;
|
|
174
|
-
constructor(opts) {
|
|
175
|
-
super({
|
|
176
|
-
name: "InvalidParameterException",
|
|
177
|
-
$fault: "client",
|
|
178
|
-
...opts,
|
|
179
|
-
});
|
|
180
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
181
|
-
this.Message = opts.Message;
|
|
182
|
-
this.RequestId = opts.RequestId;
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
class ServiceException extends DirectoryServiceServiceException {
|
|
186
|
-
name = "ServiceException";
|
|
187
|
-
$fault = "server";
|
|
188
|
-
Message;
|
|
189
|
-
RequestId;
|
|
190
|
-
constructor(opts) {
|
|
191
|
-
super({
|
|
192
|
-
name: "ServiceException",
|
|
193
|
-
$fault: "server",
|
|
194
|
-
...opts,
|
|
195
|
-
});
|
|
196
|
-
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
197
|
-
this.Message = opts.Message;
|
|
198
|
-
this.RequestId = opts.RequestId;
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
class AccessDeniedException extends DirectoryServiceServiceException {
|
|
202
|
-
name = "AccessDeniedException";
|
|
203
|
-
$fault = "client";
|
|
204
|
-
Message;
|
|
205
|
-
RequestId;
|
|
206
|
-
constructor(opts) {
|
|
207
|
-
super({
|
|
208
|
-
name: "AccessDeniedException",
|
|
209
|
-
$fault: "client",
|
|
210
|
-
...opts,
|
|
211
|
-
});
|
|
212
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
213
|
-
this.Message = opts.Message;
|
|
214
|
-
this.RequestId = opts.RequestId;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
class ADAssessmentLimitExceededException extends DirectoryServiceServiceException {
|
|
218
|
-
name = "ADAssessmentLimitExceededException";
|
|
219
|
-
$fault = "client";
|
|
220
|
-
Message;
|
|
221
|
-
RequestId;
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "ADAssessmentLimitExceededException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, ADAssessmentLimitExceededException.prototype);
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
this.RequestId = opts.RequestId;
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
class DirectoryUnavailableException extends DirectoryServiceServiceException {
|
|
234
|
-
name = "DirectoryUnavailableException";
|
|
235
|
-
$fault = "client";
|
|
236
|
-
Message;
|
|
237
|
-
RequestId;
|
|
238
|
-
constructor(opts) {
|
|
239
|
-
super({
|
|
240
|
-
name: "DirectoryUnavailableException",
|
|
241
|
-
$fault: "client",
|
|
242
|
-
...opts,
|
|
243
|
-
});
|
|
244
|
-
Object.setPrototypeOf(this, DirectoryUnavailableException.prototype);
|
|
245
|
-
this.Message = opts.Message;
|
|
246
|
-
this.RequestId = opts.RequestId;
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
class EntityAlreadyExistsException extends DirectoryServiceServiceException {
|
|
250
|
-
name = "EntityAlreadyExistsException";
|
|
251
|
-
$fault = "client";
|
|
252
|
-
Message;
|
|
253
|
-
RequestId;
|
|
254
|
-
constructor(opts) {
|
|
255
|
-
super({
|
|
256
|
-
name: "EntityAlreadyExistsException",
|
|
257
|
-
$fault: "client",
|
|
258
|
-
...opts,
|
|
259
|
-
});
|
|
260
|
-
Object.setPrototypeOf(this, EntityAlreadyExistsException.prototype);
|
|
261
|
-
this.Message = opts.Message;
|
|
262
|
-
this.RequestId = opts.RequestId;
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
class IpRouteLimitExceededException extends DirectoryServiceServiceException {
|
|
266
|
-
name = "IpRouteLimitExceededException";
|
|
267
|
-
$fault = "client";
|
|
268
|
-
Message;
|
|
269
|
-
RequestId;
|
|
270
|
-
constructor(opts) {
|
|
271
|
-
super({
|
|
272
|
-
name: "IpRouteLimitExceededException",
|
|
273
|
-
$fault: "client",
|
|
274
|
-
...opts,
|
|
275
|
-
});
|
|
276
|
-
Object.setPrototypeOf(this, IpRouteLimitExceededException.prototype);
|
|
277
|
-
this.Message = opts.Message;
|
|
278
|
-
this.RequestId = opts.RequestId;
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
class DirectoryAlreadyInRegionException extends DirectoryServiceServiceException {
|
|
282
|
-
name = "DirectoryAlreadyInRegionException";
|
|
283
|
-
$fault = "client";
|
|
284
|
-
Message;
|
|
285
|
-
RequestId;
|
|
286
|
-
constructor(opts) {
|
|
287
|
-
super({
|
|
288
|
-
name: "DirectoryAlreadyInRegionException",
|
|
289
|
-
$fault: "client",
|
|
290
|
-
...opts,
|
|
291
|
-
});
|
|
292
|
-
Object.setPrototypeOf(this, DirectoryAlreadyInRegionException.prototype);
|
|
293
|
-
this.Message = opts.Message;
|
|
294
|
-
this.RequestId = opts.RequestId;
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
class DirectoryDoesNotExistException extends DirectoryServiceServiceException {
|
|
298
|
-
name = "DirectoryDoesNotExistException";
|
|
299
|
-
$fault = "client";
|
|
300
|
-
Message;
|
|
301
|
-
RequestId;
|
|
302
|
-
constructor(opts) {
|
|
303
|
-
super({
|
|
304
|
-
name: "DirectoryDoesNotExistException",
|
|
305
|
-
$fault: "client",
|
|
306
|
-
...opts,
|
|
307
|
-
});
|
|
308
|
-
Object.setPrototypeOf(this, DirectoryDoesNotExistException.prototype);
|
|
309
|
-
this.Message = opts.Message;
|
|
310
|
-
this.RequestId = opts.RequestId;
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
class RegionLimitExceededException extends DirectoryServiceServiceException {
|
|
314
|
-
name = "RegionLimitExceededException";
|
|
315
|
-
$fault = "client";
|
|
316
|
-
Message;
|
|
317
|
-
RequestId;
|
|
318
|
-
constructor(opts) {
|
|
319
|
-
super({
|
|
320
|
-
name: "RegionLimitExceededException",
|
|
321
|
-
$fault: "client",
|
|
322
|
-
...opts,
|
|
323
|
-
});
|
|
324
|
-
Object.setPrototypeOf(this, RegionLimitExceededException.prototype);
|
|
325
|
-
this.Message = opts.Message;
|
|
326
|
-
this.RequestId = opts.RequestId;
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
class UnsupportedOperationException extends DirectoryServiceServiceException {
|
|
330
|
-
name = "UnsupportedOperationException";
|
|
331
|
-
$fault = "client";
|
|
332
|
-
Message;
|
|
333
|
-
RequestId;
|
|
334
|
-
constructor(opts) {
|
|
335
|
-
super({
|
|
336
|
-
name: "UnsupportedOperationException",
|
|
337
|
-
$fault: "client",
|
|
338
|
-
...opts,
|
|
339
|
-
});
|
|
340
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
341
|
-
this.Message = opts.Message;
|
|
342
|
-
this.RequestId = opts.RequestId;
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
class TagLimitExceededException extends DirectoryServiceServiceException {
|
|
346
|
-
name = "TagLimitExceededException";
|
|
347
|
-
$fault = "client";
|
|
348
|
-
Message;
|
|
349
|
-
RequestId;
|
|
350
|
-
constructor(opts) {
|
|
351
|
-
super({
|
|
352
|
-
name: "TagLimitExceededException",
|
|
353
|
-
$fault: "client",
|
|
354
|
-
...opts,
|
|
355
|
-
});
|
|
356
|
-
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
357
|
-
this.Message = opts.Message;
|
|
358
|
-
this.RequestId = opts.RequestId;
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
class AuthenticationFailedException extends DirectoryServiceServiceException {
|
|
362
|
-
name = "AuthenticationFailedException";
|
|
363
|
-
$fault = "client";
|
|
364
|
-
Message;
|
|
365
|
-
RequestId;
|
|
366
|
-
constructor(opts) {
|
|
367
|
-
super({
|
|
368
|
-
name: "AuthenticationFailedException",
|
|
369
|
-
$fault: "client",
|
|
370
|
-
...opts,
|
|
371
|
-
});
|
|
372
|
-
Object.setPrototypeOf(this, AuthenticationFailedException.prototype);
|
|
373
|
-
this.Message = opts.Message;
|
|
374
|
-
this.RequestId = opts.RequestId;
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
class CertificateAlreadyExistsException extends DirectoryServiceServiceException {
|
|
378
|
-
name = "CertificateAlreadyExistsException";
|
|
379
|
-
$fault = "client";
|
|
380
|
-
Message;
|
|
381
|
-
RequestId;
|
|
382
|
-
constructor(opts) {
|
|
383
|
-
super({
|
|
384
|
-
name: "CertificateAlreadyExistsException",
|
|
385
|
-
$fault: "client",
|
|
386
|
-
...opts,
|
|
387
|
-
});
|
|
388
|
-
Object.setPrototypeOf(this, CertificateAlreadyExistsException.prototype);
|
|
389
|
-
this.Message = opts.Message;
|
|
390
|
-
this.RequestId = opts.RequestId;
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
class CertificateDoesNotExistException extends DirectoryServiceServiceException {
|
|
394
|
-
name = "CertificateDoesNotExistException";
|
|
395
|
-
$fault = "client";
|
|
396
|
-
Message;
|
|
397
|
-
RequestId;
|
|
398
|
-
constructor(opts) {
|
|
399
|
-
super({
|
|
400
|
-
name: "CertificateDoesNotExistException",
|
|
401
|
-
$fault: "client",
|
|
402
|
-
...opts,
|
|
403
|
-
});
|
|
404
|
-
Object.setPrototypeOf(this, CertificateDoesNotExistException.prototype);
|
|
405
|
-
this.Message = opts.Message;
|
|
406
|
-
this.RequestId = opts.RequestId;
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
|
-
class CertificateInUseException extends DirectoryServiceServiceException {
|
|
410
|
-
name = "CertificateInUseException";
|
|
411
|
-
$fault = "client";
|
|
412
|
-
Message;
|
|
413
|
-
RequestId;
|
|
414
|
-
constructor(opts) {
|
|
415
|
-
super({
|
|
416
|
-
name: "CertificateInUseException",
|
|
417
|
-
$fault: "client",
|
|
418
|
-
...opts,
|
|
419
|
-
});
|
|
420
|
-
Object.setPrototypeOf(this, CertificateInUseException.prototype);
|
|
421
|
-
this.Message = opts.Message;
|
|
422
|
-
this.RequestId = opts.RequestId;
|
|
423
|
-
}
|
|
424
|
-
}
|
|
425
|
-
class CertificateLimitExceededException extends DirectoryServiceServiceException {
|
|
426
|
-
name = "CertificateLimitExceededException";
|
|
427
|
-
$fault = "client";
|
|
428
|
-
Message;
|
|
429
|
-
RequestId;
|
|
430
|
-
constructor(opts) {
|
|
431
|
-
super({
|
|
432
|
-
name: "CertificateLimitExceededException",
|
|
433
|
-
$fault: "client",
|
|
434
|
-
...opts,
|
|
435
|
-
});
|
|
436
|
-
Object.setPrototypeOf(this, CertificateLimitExceededException.prototype);
|
|
437
|
-
this.Message = opts.Message;
|
|
438
|
-
this.RequestId = opts.RequestId;
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
class DirectoryLimitExceededException extends DirectoryServiceServiceException {
|
|
442
|
-
name = "DirectoryLimitExceededException";
|
|
443
|
-
$fault = "client";
|
|
444
|
-
Message;
|
|
445
|
-
RequestId;
|
|
446
|
-
constructor(opts) {
|
|
447
|
-
super({
|
|
448
|
-
name: "DirectoryLimitExceededException",
|
|
449
|
-
$fault: "client",
|
|
450
|
-
...opts,
|
|
451
|
-
});
|
|
452
|
-
Object.setPrototypeOf(this, DirectoryLimitExceededException.prototype);
|
|
453
|
-
this.Message = opts.Message;
|
|
454
|
-
this.RequestId = opts.RequestId;
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
class InsufficientPermissionsException extends DirectoryServiceServiceException {
|
|
458
|
-
name = "InsufficientPermissionsException";
|
|
459
|
-
$fault = "client";
|
|
460
|
-
Message;
|
|
461
|
-
RequestId;
|
|
462
|
-
constructor(opts) {
|
|
463
|
-
super({
|
|
464
|
-
name: "InsufficientPermissionsException",
|
|
465
|
-
$fault: "client",
|
|
466
|
-
...opts,
|
|
467
|
-
});
|
|
468
|
-
Object.setPrototypeOf(this, InsufficientPermissionsException.prototype);
|
|
469
|
-
this.Message = opts.Message;
|
|
470
|
-
this.RequestId = opts.RequestId;
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
class SnapshotLimitExceededException extends DirectoryServiceServiceException {
|
|
474
|
-
name = "SnapshotLimitExceededException";
|
|
475
|
-
$fault = "client";
|
|
476
|
-
Message;
|
|
477
|
-
RequestId;
|
|
478
|
-
constructor(opts) {
|
|
479
|
-
super({
|
|
480
|
-
name: "SnapshotLimitExceededException",
|
|
481
|
-
$fault: "client",
|
|
482
|
-
...opts,
|
|
483
|
-
});
|
|
484
|
-
Object.setPrototypeOf(this, SnapshotLimitExceededException.prototype);
|
|
485
|
-
this.Message = opts.Message;
|
|
486
|
-
this.RequestId = opts.RequestId;
|
|
487
|
-
}
|
|
488
|
-
}
|
|
489
|
-
class InvalidNextTokenException extends DirectoryServiceServiceException {
|
|
490
|
-
name = "InvalidNextTokenException";
|
|
491
|
-
$fault = "client";
|
|
492
|
-
Message;
|
|
493
|
-
RequestId;
|
|
494
|
-
constructor(opts) {
|
|
495
|
-
super({
|
|
496
|
-
name: "InvalidNextTokenException",
|
|
497
|
-
$fault: "client",
|
|
498
|
-
...opts,
|
|
499
|
-
});
|
|
500
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
501
|
-
this.Message = opts.Message;
|
|
502
|
-
this.RequestId = opts.RequestId;
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
class DirectoryInDesiredStateException extends DirectoryServiceServiceException {
|
|
506
|
-
name = "DirectoryInDesiredStateException";
|
|
507
|
-
$fault = "client";
|
|
508
|
-
Message;
|
|
509
|
-
RequestId;
|
|
510
|
-
constructor(opts) {
|
|
511
|
-
super({
|
|
512
|
-
name: "DirectoryInDesiredStateException",
|
|
513
|
-
$fault: "client",
|
|
514
|
-
...opts,
|
|
515
|
-
});
|
|
516
|
-
Object.setPrototypeOf(this, DirectoryInDesiredStateException.prototype);
|
|
517
|
-
this.Message = opts.Message;
|
|
518
|
-
this.RequestId = opts.RequestId;
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
class DirectoryNotSharedException extends DirectoryServiceServiceException {
|
|
522
|
-
name = "DirectoryNotSharedException";
|
|
523
|
-
$fault = "client";
|
|
524
|
-
Message;
|
|
525
|
-
RequestId;
|
|
526
|
-
constructor(opts) {
|
|
527
|
-
super({
|
|
528
|
-
name: "DirectoryNotSharedException",
|
|
529
|
-
$fault: "client",
|
|
530
|
-
...opts,
|
|
531
|
-
});
|
|
532
|
-
Object.setPrototypeOf(this, DirectoryNotSharedException.prototype);
|
|
533
|
-
this.Message = opts.Message;
|
|
534
|
-
this.RequestId = opts.RequestId;
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
class DisableAlreadyInProgressException extends DirectoryServiceServiceException {
|
|
538
|
-
name = "DisableAlreadyInProgressException";
|
|
539
|
-
$fault = "client";
|
|
540
|
-
Message;
|
|
541
|
-
RequestId;
|
|
542
|
-
constructor(opts) {
|
|
543
|
-
super({
|
|
544
|
-
name: "DisableAlreadyInProgressException",
|
|
545
|
-
$fault: "client",
|
|
546
|
-
...opts,
|
|
547
|
-
});
|
|
548
|
-
Object.setPrototypeOf(this, DisableAlreadyInProgressException.prototype);
|
|
549
|
-
this.Message = opts.Message;
|
|
550
|
-
this.RequestId = opts.RequestId;
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
class InvalidClientAuthStatusException extends DirectoryServiceServiceException {
|
|
554
|
-
name = "InvalidClientAuthStatusException";
|
|
555
|
-
$fault = "client";
|
|
556
|
-
Message;
|
|
557
|
-
RequestId;
|
|
558
|
-
constructor(opts) {
|
|
559
|
-
super({
|
|
560
|
-
name: "InvalidClientAuthStatusException",
|
|
561
|
-
$fault: "client",
|
|
562
|
-
...opts,
|
|
563
|
-
});
|
|
564
|
-
Object.setPrototypeOf(this, InvalidClientAuthStatusException.prototype);
|
|
565
|
-
this.Message = opts.Message;
|
|
566
|
-
this.RequestId = opts.RequestId;
|
|
567
|
-
}
|
|
568
|
-
}
|
|
569
|
-
class InvalidLDAPSStatusException extends DirectoryServiceServiceException {
|
|
570
|
-
name = "InvalidLDAPSStatusException";
|
|
571
|
-
$fault = "client";
|
|
572
|
-
Message;
|
|
573
|
-
RequestId;
|
|
574
|
-
constructor(opts) {
|
|
575
|
-
super({
|
|
576
|
-
name: "InvalidLDAPSStatusException",
|
|
577
|
-
$fault: "client",
|
|
578
|
-
...opts,
|
|
579
|
-
});
|
|
580
|
-
Object.setPrototypeOf(this, InvalidLDAPSStatusException.prototype);
|
|
581
|
-
this.Message = opts.Message;
|
|
582
|
-
this.RequestId = opts.RequestId;
|
|
583
|
-
}
|
|
584
|
-
}
|
|
585
|
-
class EnableAlreadyInProgressException extends DirectoryServiceServiceException {
|
|
586
|
-
name = "EnableAlreadyInProgressException";
|
|
587
|
-
$fault = "client";
|
|
588
|
-
Message;
|
|
589
|
-
RequestId;
|
|
590
|
-
constructor(opts) {
|
|
591
|
-
super({
|
|
592
|
-
name: "EnableAlreadyInProgressException",
|
|
593
|
-
$fault: "client",
|
|
594
|
-
...opts,
|
|
595
|
-
});
|
|
596
|
-
Object.setPrototypeOf(this, EnableAlreadyInProgressException.prototype);
|
|
597
|
-
this.Message = opts.Message;
|
|
598
|
-
this.RequestId = opts.RequestId;
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
class NoAvailableCertificateException extends DirectoryServiceServiceException {
|
|
602
|
-
name = "NoAvailableCertificateException";
|
|
603
|
-
$fault = "client";
|
|
604
|
-
Message;
|
|
605
|
-
RequestId;
|
|
606
|
-
constructor(opts) {
|
|
607
|
-
super({
|
|
608
|
-
name: "NoAvailableCertificateException",
|
|
609
|
-
$fault: "client",
|
|
610
|
-
...opts,
|
|
611
|
-
});
|
|
612
|
-
Object.setPrototypeOf(this, NoAvailableCertificateException.prototype);
|
|
613
|
-
this.Message = opts.Message;
|
|
614
|
-
this.RequestId = opts.RequestId;
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
class InvalidCertificateException extends DirectoryServiceServiceException {
|
|
618
|
-
name = "InvalidCertificateException";
|
|
619
|
-
$fault = "client";
|
|
620
|
-
Message;
|
|
621
|
-
RequestId;
|
|
622
|
-
constructor(opts) {
|
|
623
|
-
super({
|
|
624
|
-
name: "InvalidCertificateException",
|
|
625
|
-
$fault: "client",
|
|
626
|
-
...opts,
|
|
627
|
-
});
|
|
628
|
-
Object.setPrototypeOf(this, InvalidCertificateException.prototype);
|
|
629
|
-
this.Message = opts.Message;
|
|
630
|
-
this.RequestId = opts.RequestId;
|
|
631
|
-
}
|
|
632
|
-
}
|
|
633
|
-
class InvalidPasswordException extends DirectoryServiceServiceException {
|
|
634
|
-
name = "InvalidPasswordException";
|
|
635
|
-
$fault = "client";
|
|
636
|
-
Message;
|
|
637
|
-
RequestId;
|
|
638
|
-
constructor(opts) {
|
|
639
|
-
super({
|
|
640
|
-
name: "InvalidPasswordException",
|
|
641
|
-
$fault: "client",
|
|
642
|
-
...opts,
|
|
643
|
-
});
|
|
644
|
-
Object.setPrototypeOf(this, InvalidPasswordException.prototype);
|
|
645
|
-
this.Message = opts.Message;
|
|
646
|
-
this.RequestId = opts.RequestId;
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
class UserDoesNotExistException extends DirectoryServiceServiceException {
|
|
650
|
-
name = "UserDoesNotExistException";
|
|
651
|
-
$fault = "client";
|
|
652
|
-
Message;
|
|
653
|
-
RequestId;
|
|
654
|
-
constructor(opts) {
|
|
655
|
-
super({
|
|
656
|
-
name: "UserDoesNotExistException",
|
|
657
|
-
$fault: "client",
|
|
658
|
-
...opts,
|
|
659
|
-
});
|
|
660
|
-
Object.setPrototypeOf(this, UserDoesNotExistException.prototype);
|
|
661
|
-
this.Message = opts.Message;
|
|
662
|
-
this.RequestId = opts.RequestId;
|
|
663
|
-
}
|
|
664
|
-
}
|
|
665
|
-
class InvalidTargetException extends DirectoryServiceServiceException {
|
|
666
|
-
name = "InvalidTargetException";
|
|
667
|
-
$fault = "client";
|
|
668
|
-
Message;
|
|
669
|
-
RequestId;
|
|
670
|
-
constructor(opts) {
|
|
671
|
-
super({
|
|
672
|
-
name: "InvalidTargetException",
|
|
673
|
-
$fault: "client",
|
|
674
|
-
...opts,
|
|
675
|
-
});
|
|
676
|
-
Object.setPrototypeOf(this, InvalidTargetException.prototype);
|
|
677
|
-
this.Message = opts.Message;
|
|
678
|
-
this.RequestId = opts.RequestId;
|
|
679
|
-
}
|
|
680
|
-
}
|
|
681
|
-
class OrganizationsException extends DirectoryServiceServiceException {
|
|
682
|
-
name = "OrganizationsException";
|
|
683
|
-
$fault = "client";
|
|
684
|
-
Message;
|
|
685
|
-
RequestId;
|
|
686
|
-
constructor(opts) {
|
|
687
|
-
super({
|
|
688
|
-
name: "OrganizationsException",
|
|
689
|
-
$fault: "client",
|
|
690
|
-
...opts,
|
|
691
|
-
});
|
|
692
|
-
Object.setPrototypeOf(this, OrganizationsException.prototype);
|
|
693
|
-
this.Message = opts.Message;
|
|
694
|
-
this.RequestId = opts.RequestId;
|
|
695
|
-
}
|
|
696
|
-
}
|
|
697
|
-
class ShareLimitExceededException extends DirectoryServiceServiceException {
|
|
698
|
-
name = "ShareLimitExceededException";
|
|
699
|
-
$fault = "client";
|
|
700
|
-
Message;
|
|
701
|
-
RequestId;
|
|
702
|
-
constructor(opts) {
|
|
703
|
-
super({
|
|
704
|
-
name: "ShareLimitExceededException",
|
|
705
|
-
$fault: "client",
|
|
706
|
-
...opts,
|
|
707
|
-
});
|
|
708
|
-
Object.setPrototypeOf(this, ShareLimitExceededException.prototype);
|
|
709
|
-
this.Message = opts.Message;
|
|
710
|
-
this.RequestId = opts.RequestId;
|
|
711
|
-
}
|
|
712
|
-
}
|
|
713
|
-
class DomainControllerLimitExceededException extends DirectoryServiceServiceException {
|
|
714
|
-
name = "DomainControllerLimitExceededException";
|
|
715
|
-
$fault = "client";
|
|
716
|
-
Message;
|
|
717
|
-
RequestId;
|
|
718
|
-
constructor(opts) {
|
|
719
|
-
super({
|
|
720
|
-
name: "DomainControllerLimitExceededException",
|
|
721
|
-
$fault: "client",
|
|
722
|
-
...opts,
|
|
723
|
-
});
|
|
724
|
-
Object.setPrototypeOf(this, DomainControllerLimitExceededException.prototype);
|
|
725
|
-
this.Message = opts.Message;
|
|
726
|
-
this.RequestId = opts.RequestId;
|
|
727
|
-
}
|
|
728
|
-
}
|
|
729
|
-
class IncompatibleSettingsException extends DirectoryServiceServiceException {
|
|
730
|
-
name = "IncompatibleSettingsException";
|
|
731
|
-
$fault = "client";
|
|
732
|
-
Message;
|
|
733
|
-
RequestId;
|
|
734
|
-
constructor(opts) {
|
|
735
|
-
super({
|
|
736
|
-
name: "IncompatibleSettingsException",
|
|
737
|
-
$fault: "client",
|
|
738
|
-
...opts,
|
|
739
|
-
});
|
|
740
|
-
Object.setPrototypeOf(this, IncompatibleSettingsException.prototype);
|
|
741
|
-
this.Message = opts.Message;
|
|
742
|
-
this.RequestId = opts.RequestId;
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
class UnsupportedSettingsException extends DirectoryServiceServiceException {
|
|
746
|
-
name = "UnsupportedSettingsException";
|
|
747
|
-
$fault = "client";
|
|
748
|
-
Message;
|
|
749
|
-
RequestId;
|
|
750
|
-
constructor(opts) {
|
|
751
|
-
super({
|
|
752
|
-
name: "UnsupportedSettingsException",
|
|
753
|
-
$fault: "client",
|
|
754
|
-
...opts,
|
|
755
|
-
});
|
|
756
|
-
Object.setPrototypeOf(this, UnsupportedSettingsException.prototype);
|
|
757
|
-
this.Message = opts.Message;
|
|
758
|
-
this.RequestId = opts.RequestId;
|
|
759
|
-
}
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
const _A = "Assessment";
|
|
763
|
-
const _AC = "AssessmentConfiguration";
|
|
764
|
-
const _ADALEE = "ADAssessmentLimitExceededException";
|
|
765
|
-
const _ADE = "AccessDeniedException";
|
|
766
|
-
const _ADT = "AddedDateTime";
|
|
767
|
-
const _AFE = "AuthenticationFailedException";
|
|
768
|
-
const _AI = "AssessmentId";
|
|
769
|
-
const _AIR = "AddIpRoutes";
|
|
770
|
-
const _AIRR = "AddIpRoutesRequest";
|
|
771
|
-
const _AIRRd = "AddIpRoutesResult";
|
|
772
|
-
const _AIc = "AccountId";
|
|
773
|
-
const _AP = "AuthenticationProtocol";
|
|
774
|
-
const _AR = "AssessmentReport";
|
|
775
|
-
const _ARR = "AddRegionRequest";
|
|
776
|
-
const _ARRd = "AddRegionResult";
|
|
777
|
-
const _ARd = "AdditionalRegions";
|
|
778
|
-
const _ARdd = "AddRegion";
|
|
779
|
-
const _ARs = "AssessmentReports";
|
|
780
|
-
const _AS = "AssessmentSummary";
|
|
781
|
-
const _ASD = "AcceptSharedDirectory";
|
|
782
|
-
const _ASDR = "AcceptSharedDirectoryRequest";
|
|
783
|
-
const _ASDRc = "AcceptSharedDirectoryResult";
|
|
784
|
-
const _ATTR = "AddTagsToResource";
|
|
785
|
-
const _ATTRR = "AddTagsToResourceRequest";
|
|
786
|
-
const _ATTRRd = "AddTagsToResourceResult";
|
|
787
|
-
const _AU = "AccessUrl";
|
|
788
|
-
const _AV = "AssessmentValidation";
|
|
789
|
-
const _AVl = "AllowedValues";
|
|
790
|
-
const _AVp = "AppliedValue";
|
|
791
|
-
const _AVs = "AssessmentValidations";
|
|
792
|
-
const _AZ = "AvailabilityZones";
|
|
793
|
-
const _AZv = "AvailabilityZone";
|
|
794
|
-
const _Al = "Alias";
|
|
795
|
-
const _As = "Assessments";
|
|
796
|
-
const _At = "Attribute";
|
|
797
|
-
const _Att = "Attributes";
|
|
798
|
-
const _C = "Category";
|
|
799
|
-
const _CA = "ComputerAttributes";
|
|
800
|
-
const _CAEE = "CertificateAlreadyExistsException";
|
|
801
|
-
const _CAR = "CreateAliasRequest";
|
|
802
|
-
const _CARr = "CreateAliasResult";
|
|
803
|
-
const _CASI = "ClientAuthenticationSettingInfo";
|
|
804
|
-
const _CASIl = "ClientAuthenticationSettingsInfo";
|
|
805
|
-
const _CAr = "CreateAlias";
|
|
806
|
-
const _CC = "CreateComputer";
|
|
807
|
-
const _CCAS = "ClientCertAuthSettings";
|
|
808
|
-
const _CCF = "CreateConditionalForwarder";
|
|
809
|
-
const _CCFR = "CreateConditionalForwarderRequest";
|
|
810
|
-
const _CCFRr = "CreateConditionalForwarderResult";
|
|
811
|
-
const _CCR = "CreateComputerRequest";
|
|
812
|
-
const _CCRr = "CreateComputerResult";
|
|
813
|
-
const _CD = "CertificateData";
|
|
814
|
-
const _CDCC = "ConnectedDirectoriesCurrentCount";
|
|
815
|
-
const _CDI = "CustomerDnsIps";
|
|
816
|
-
const _CDIV = "CustomerDnsIpsV6";
|
|
817
|
-
const _CDL = "ConnectedDirectoriesLimit";
|
|
818
|
-
const _CDLR = "ConnectedDirectoriesLimitReached";
|
|
819
|
-
const _CDNEE = "CertificateDoesNotExistException";
|
|
820
|
-
const _CDR = "ConnectDirectoryRequest";
|
|
821
|
-
const _CDRo = "ConnectDirectoryResult";
|
|
822
|
-
const _CDRr = "CreateDirectoryRequest";
|
|
823
|
-
const _CDRre = "CreateDirectoryResult";
|
|
824
|
-
const _CDT = "CreatedDateTime";
|
|
825
|
-
const _CDo = "ConnectDirectory";
|
|
826
|
-
const _CDr = "CreateDirectory";
|
|
827
|
-
const _CE = "ClientException";
|
|
828
|
-
const _CEPS = "CaEnrollmentPolicyStatus";
|
|
829
|
-
const _CEPSR = "CaEnrollmentPolicyStatusReason";
|
|
830
|
-
const _CF = "ConditionalForwarder";
|
|
831
|
-
const _CFIA = "ConditionalForwarderIpAddrs";
|
|
832
|
-
const _CFIAo = "ConditionalForwarderIpv6Addrs";
|
|
833
|
-
const _CFo = "ConditionalForwarders";
|
|
834
|
-
const _CHAD = "CreateHybridAD";
|
|
835
|
-
const _CHADR = "CreateHybridADRequest";
|
|
836
|
-
const _CHADRr = "CreateHybridADResult";
|
|
837
|
-
const _CI = "CertificateId";
|
|
838
|
-
const _CIUE = "CertificateInUseException";
|
|
839
|
-
const _CIV = "ConnectIpsV6";
|
|
840
|
-
const _CIe = "CertificateInfo";
|
|
841
|
-
const _CIer = "CertificatesInfo";
|
|
842
|
-
const _CIi = "CidrIp";
|
|
843
|
-
const _CIid = "CidrIpv6";
|
|
844
|
-
const _CIidr = "CidrIps";
|
|
845
|
-
const _CIidrp = "CidrIpv6s";
|
|
846
|
-
const _CIo = "ComputerId";
|
|
847
|
-
const _CIon = "ConnectIps";
|
|
848
|
-
const _CLEE = "CertificateLimitExceededException";
|
|
849
|
-
const _CLS = "CreateLogSubscription";
|
|
850
|
-
const _CLSR = "CreateLogSubscriptionRequest";
|
|
851
|
-
const _CLSRr = "CreateLogSubscriptionResult";
|
|
852
|
-
const _CMAD = "CreateMicrosoftAD";
|
|
853
|
-
const _CMADR = "CreateMicrosoftADRequest";
|
|
854
|
-
const _CMADRr = "CreateMicrosoftADResult";
|
|
855
|
-
const _CN = "CommonName";
|
|
856
|
-
const _CNo = "ComputerName";
|
|
857
|
-
const _CODCC = "CloudOnlyDirectoriesCurrentCount";
|
|
858
|
-
const _CODL = "CloudOnlyDirectoriesLimit";
|
|
859
|
-
const _CODLR = "CloudOnlyDirectoriesLimitReached";
|
|
860
|
-
const _COMADCC = "CloudOnlyMicrosoftADCurrentCount";
|
|
861
|
-
const _COMADL = "CloudOnlyMicrosoftADLimit";
|
|
862
|
-
const _COMADLR = "CloudOnlyMicrosoftADLimitReached";
|
|
863
|
-
const _CP = "ComputerPassword";
|
|
864
|
-
const _CPo = "ConnectPassword";
|
|
865
|
-
const _CS = "ConnectSettings";
|
|
866
|
-
const _CSBSE = "CreateSnapshotBeforeSchemaExtension";
|
|
867
|
-
const _CSBU = "CreateSnapshotBeforeUpdate";
|
|
868
|
-
const _CSE = "CancelSchemaExtension";
|
|
869
|
-
const _CSER = "CancelSchemaExtensionRequest";
|
|
870
|
-
const _CSERa = "CancelSchemaExtensionResult";
|
|
871
|
-
const _CSR = "CreateSnapshotRequest";
|
|
872
|
-
const _CSRr = "CreateSnapshotResult";
|
|
873
|
-
const _CSr = "CreateSnapshot";
|
|
874
|
-
const _CT = "CreateTrust";
|
|
875
|
-
const _CTR = "CreateTrustRequest";
|
|
876
|
-
const _CTRr = "CreateTrustResult";
|
|
877
|
-
const _CUN = "CustomerUserName";
|
|
878
|
-
const _Ce = "Certificate";
|
|
879
|
-
const _Co = "Computer";
|
|
880
|
-
const _D = "Description";
|
|
881
|
-
const _DACF = "DeleteAssociatedConditionalForwarder";
|
|
882
|
-
const _DADA = "DeleteADAssessment";
|
|
883
|
-
const _DADAR = "DeleteADAssessmentRequest";
|
|
884
|
-
const _DADARe = "DeleteADAssessmentResult";
|
|
885
|
-
const _DADARes = "DescribeADAssessmentRequest";
|
|
886
|
-
const _DADAResc = "DescribeADAssessmentResult";
|
|
887
|
-
const _DADAe = "DescribeADAssessment";
|
|
888
|
-
const _DAIPE = "DisableAlreadyInProgressException";
|
|
889
|
-
const _DAIRE = "DirectoryAlreadyInRegionException";
|
|
890
|
-
const _DAS = "DataAccessStatus";
|
|
891
|
-
const _DASE = "DirectoryAlreadySharedException";
|
|
892
|
-
const _DC = "DomainControllers";
|
|
893
|
-
const _DCA = "DisableClientAuthentication";
|
|
894
|
-
const _DCAEP = "DescribeCAEnrollmentPolicy";
|
|
895
|
-
const _DCAEPR = "DescribeCAEnrollmentPolicyRequest";
|
|
896
|
-
const _DCAEPRe = "DescribeCAEnrollmentPolicyResult";
|
|
897
|
-
const _DCAEPRi = "DisableCAEnrollmentPolicyRequest";
|
|
898
|
-
const _DCAEPRis = "DisableCAEnrollmentPolicyResult";
|
|
899
|
-
const _DCAEPi = "DisableCAEnrollmentPolicy";
|
|
900
|
-
const _DCAR = "DisableClientAuthenticationRequest";
|
|
901
|
-
const _DCARi = "DisableClientAuthenticationResult";
|
|
902
|
-
const _DCAS = "DescribeClientAuthenticationSettings";
|
|
903
|
-
const _DCASR = "DescribeClientAuthenticationSettingsRequest";
|
|
904
|
-
const _DCASRe = "DescribeClientAuthenticationSettingsResult";
|
|
905
|
-
const _DCF = "DeleteConditionalForwarder";
|
|
906
|
-
const _DCFR = "DeleteConditionalForwarderRequest";
|
|
907
|
-
const _DCFRe = "DeleteConditionalForwarderResult";
|
|
908
|
-
const _DCFRes = "DescribeConditionalForwardersRequest";
|
|
909
|
-
const _DCFResc = "DescribeConditionalForwardersResult";
|
|
910
|
-
const _DCFe = "DescribeConditionalForwarders";
|
|
911
|
-
const _DCI = "DomainControllerIp";
|
|
912
|
-
const _DCIo = "DomainControllerIds";
|
|
913
|
-
const _DCIom = "DomainControllerId";
|
|
914
|
-
const _DCLEE = "DomainControllerLimitExceededException";
|
|
915
|
-
const _DCR = "DeregisterCertificateRequest";
|
|
916
|
-
const _DCRe = "DeregisterCertificateResult";
|
|
917
|
-
const _DCRes = "DescribeCertificateRequest";
|
|
918
|
-
const _DCResc = "DescribeCertificateResult";
|
|
919
|
-
const _DCS = "DirectoryConnectSettings";
|
|
920
|
-
const _DCSD = "DirectoryConnectSettingsDescription";
|
|
921
|
-
const _DCe = "DeregisterCertificate";
|
|
922
|
-
const _DCes = "DescribeCertificate";
|
|
923
|
-
const _DCo = "DomainController";
|
|
924
|
-
const _DD = "DirectoryDescriptions";
|
|
925
|
-
const _DDC = "DescribeDomainControllers";
|
|
926
|
-
const _DDCR = "DescribeDomainControllersRequest";
|
|
927
|
-
const _DDCRe = "DescribeDomainControllersResult";
|
|
928
|
-
const _DDDA = "DescribeDirectoryDataAccess";
|
|
929
|
-
const _DDDAR = "DescribeDirectoryDataAccessRequest";
|
|
930
|
-
const _DDDARe = "DescribeDirectoryDataAccessResult";
|
|
931
|
-
const _DDDARi = "DisableDirectoryDataAccessRequest";
|
|
932
|
-
const _DDDARis = "DisableDirectoryDataAccessResult";
|
|
933
|
-
const _DDDAi = "DisableDirectoryDataAccess";
|
|
934
|
-
const _DDNEE = "DirectoryDoesNotExistException";
|
|
935
|
-
const _DDR = "DeleteDirectoryRequest";
|
|
936
|
-
const _DDRe = "DeleteDirectoryResult";
|
|
937
|
-
const _DDRes = "DescribeDirectoriesRequest";
|
|
938
|
-
const _DDResc = "DescribeDirectoriesResult";
|
|
939
|
-
const _DDe = "DeleteDirectory";
|
|
940
|
-
const _DDes = "DescribeDirectories";
|
|
941
|
-
const _DDi = "DirectoryDescription";
|
|
942
|
-
const _DET = "DeregisterEventTopic";
|
|
943
|
-
const _DETR = "DeregisterEventTopicRequest";
|
|
944
|
-
const _DETRe = "DeregisterEventTopicResult";
|
|
945
|
-
const _DETRes = "DescribeEventTopicsRequest";
|
|
946
|
-
const _DETResc = "DescribeEventTopicsResult";
|
|
947
|
-
const _DETe = "DescribeEventTopics";
|
|
948
|
-
const _DHADU = "DescribeHybridADUpdate";
|
|
949
|
-
const _DHADUR = "DescribeHybridADUpdateRequest";
|
|
950
|
-
const _DHADURe = "DescribeHybridADUpdateResult";
|
|
951
|
-
const _DI = "DirectoryId";
|
|
952
|
-
const _DIA = "DnsIpAddrs";
|
|
953
|
-
const _DIAn = "DnsIpv6Addrs";
|
|
954
|
-
const _DIAns = "DnsIpAddr";
|
|
955
|
-
const _DIAnsp = "DnsIpv6Addr";
|
|
956
|
-
const _DIDSE = "DirectoryInDesiredStateException";
|
|
957
|
-
const _DIi = "DirectoryIds";
|
|
958
|
-
const _DIn = "DnsIps";
|
|
959
|
-
const _DL = "DirectoryLimits";
|
|
960
|
-
const _DLDAPS = "DisableLDAPS";
|
|
961
|
-
const _DLDAPSR = "DisableLDAPSRequest";
|
|
962
|
-
const _DLDAPSRi = "DisableLDAPSResult";
|
|
963
|
-
const _DLDAPSS = "DescribeLDAPSSettings";
|
|
964
|
-
const _DLDAPSSR = "DescribeLDAPSSettingsRequest";
|
|
965
|
-
const _DLDAPSSRe = "DescribeLDAPSSettingsResult";
|
|
966
|
-
const _DLEE = "DirectoryLimitExceededException";
|
|
967
|
-
const _DLS = "DeleteLogSubscription";
|
|
968
|
-
const _DLSR = "DeleteLogSubscriptionRequest";
|
|
969
|
-
const _DLSRe = "DeleteLogSubscriptionResult";
|
|
970
|
-
const _DLi = "DisplayLabel";
|
|
971
|
-
const _DN = "DnsName";
|
|
972
|
-
const _DNODC = "DesiredNumberOfDomainControllers";
|
|
973
|
-
const _DNSE = "DirectoryNotSharedException";
|
|
974
|
-
const _DNe = "DesiredNumber";
|
|
975
|
-
const _DR = "DescribeRegions";
|
|
976
|
-
const _DRR = "DescribeRegionsRequest";
|
|
977
|
-
const _DRRe = "DescribeRegionsResult";
|
|
978
|
-
const _DRRi = "DisableRadiusRequest";
|
|
979
|
-
const _DRRis = "DisableRadiusResult";
|
|
980
|
-
const _DRi = "DisableRadius";
|
|
981
|
-
const _DS = "DirectorySize";
|
|
982
|
-
const _DSD = "DescribeSharedDirectories";
|
|
983
|
-
const _DSDR = "DescribeSharedDirectoriesRequest";
|
|
984
|
-
const _DSDRe = "DescribeSharedDirectoriesResult";
|
|
985
|
-
const _DSR = "DeleteSnapshotRequest";
|
|
986
|
-
const _DSRe = "DeleteSnapshotResult";
|
|
987
|
-
const _DSRes = "DescribeSettingsRequest";
|
|
988
|
-
const _DSResc = "DescribeSettingsResult";
|
|
989
|
-
const _DSRescr = "DescribeSnapshotsRequest";
|
|
990
|
-
const _DSRescri = "DescribeSnapshotsResult";
|
|
991
|
-
const _DSRi = "DisableSsoRequest";
|
|
992
|
-
const _DSRis = "DisableSsoResult";
|
|
993
|
-
const _DSUS = "DirectorySizeUpdateSettings";
|
|
994
|
-
const _DSe = "DeleteSnapshot";
|
|
995
|
-
const _DSes = "DescribeSettings";
|
|
996
|
-
const _DSesc = "DescribeSnapshots";
|
|
997
|
-
const _DSi = "DisableSso";
|
|
998
|
-
const _DT = "DataType";
|
|
999
|
-
const _DTR = "DeleteTrustRequest";
|
|
1000
|
-
const _DTRe = "DeleteTrustResult";
|
|
1001
|
-
const _DTRes = "DescribeTrustsRequest";
|
|
1002
|
-
const _DTResc = "DescribeTrustsResult";
|
|
1003
|
-
const _DTe = "DeleteTrust";
|
|
1004
|
-
const _DTes = "DescribeTrusts";
|
|
1005
|
-
const _DUD = "DescribeUpdateDirectory";
|
|
1006
|
-
const _DUDR = "DescribeUpdateDirectoryRequest";
|
|
1007
|
-
const _DUDRe = "DescribeUpdateDirectoryResult";
|
|
1008
|
-
const _DUE = "DirectoryUnavailableException";
|
|
1009
|
-
const _DVS = "DirectoryVpcSettings";
|
|
1010
|
-
const _DVSD = "DirectoryVpcSettingsDescription";
|
|
1011
|
-
const _E = "Edition";
|
|
1012
|
-
const _EAEE = "EntityAlreadyExistsException";
|
|
1013
|
-
const _EAIPE = "EnableAlreadyInProgressException";
|
|
1014
|
-
const _ECA = "EnableClientAuthentication";
|
|
1015
|
-
const _ECAEP = "EnableCAEnrollmentPolicy";
|
|
1016
|
-
const _ECAEPR = "EnableCAEnrollmentPolicyRequest";
|
|
1017
|
-
const _ECAEPRn = "EnableCAEnrollmentPolicyResult";
|
|
1018
|
-
const _ECAR = "EnableClientAuthenticationRequest";
|
|
1019
|
-
const _ECARn = "EnableClientAuthenticationResult";
|
|
1020
|
-
const _EDDA = "EnableDirectoryDataAccess";
|
|
1021
|
-
const _EDDAR = "EnableDirectoryDataAccessRequest";
|
|
1022
|
-
const _EDDARn = "EnableDirectoryDataAccessResult";
|
|
1023
|
-
const _EDNEE = "EntityDoesNotExistException";
|
|
1024
|
-
const _EDT = "ExpiryDateTime";
|
|
1025
|
-
const _EDTn = "EndDateTime";
|
|
1026
|
-
const _ELDAPS = "EnableLDAPS";
|
|
1027
|
-
const _ELDAPSR = "EnableLDAPSRequest";
|
|
1028
|
-
const _ELDAPSRn = "EnableLDAPSResult";
|
|
1029
|
-
const _ER = "EnableRadius";
|
|
1030
|
-
const _ERR = "EnableRadiusRequest";
|
|
1031
|
-
const _ERRn = "EnableRadiusResult";
|
|
1032
|
-
const _ES = "EnableSso";
|
|
1033
|
-
const _ESR = "EnableSsoRequest";
|
|
1034
|
-
const _ESRn = "EnableSsoResult";
|
|
1035
|
-
const _ET = "EventTopics";
|
|
1036
|
-
const _ETv = "EventTopic";
|
|
1037
|
-
const _GDL = "GetDirectoryLimits";
|
|
1038
|
-
const _GDLR = "GetDirectoryLimitsRequest";
|
|
1039
|
-
const _GDLRe = "GetDirectoryLimitsResult";
|
|
1040
|
-
const _GSL = "GetSnapshotLimits";
|
|
1041
|
-
const _GSLR = "GetSnapshotLimitsRequest";
|
|
1042
|
-
const _GSLRe = "GetSnapshotLimitsResult";
|
|
1043
|
-
const _HAA = "HybridAdministratorAccount";
|
|
1044
|
-
const _HAAU = "HybridAdministratorAccountUpdate";
|
|
1045
|
-
const _HCIS = "HybridCustomerInstancesSettings";
|
|
1046
|
-
const _HS = "HybridSettings";
|
|
1047
|
-
const _HSD = "HybridSettingsDescription";
|
|
1048
|
-
const _HUA = "HybridUpdateActivities";
|
|
1049
|
-
const _HUIE = "HybridUpdateInfoEntry";
|
|
1050
|
-
const _HUIEy = "HybridUpdateInfoEntries";
|
|
1051
|
-
const _HUV = "HybridUpdateValue";
|
|
1052
|
-
const _I = "Id";
|
|
1053
|
-
const _IB = "InitiatedBy";
|
|
1054
|
-
const _ICASE = "InvalidClientAuthStatusException";
|
|
1055
|
-
const _ICE = "InvalidCertificateException";
|
|
1056
|
-
const _II = "InstanceIds";
|
|
1057
|
-
const _ILDAPSSE = "InvalidLDAPSStatusException";
|
|
1058
|
-
const _INTE = "InvalidNextTokenException";
|
|
1059
|
-
const _IPE = "InsufficientPermissionsException";
|
|
1060
|
-
const _IPEn = "InvalidParameterException";
|
|
1061
|
-
const _IPEnv = "InvalidPasswordException";
|
|
1062
|
-
const _IR = "IpRoutes";
|
|
1063
|
-
const _IRI = "IpRouteInfo";
|
|
1064
|
-
const _IRIp = "IpRoutesInfo";
|
|
1065
|
-
const _IRLEE = "IpRouteLimitExceededException";
|
|
1066
|
-
const _IRSM = "IpRouteStatusMsg";
|
|
1067
|
-
const _IRSR = "IpRouteStatusReason";
|
|
1068
|
-
const _IRp = "IpRoute";
|
|
1069
|
-
const _ISE = "IncompatibleSettingsException";
|
|
1070
|
-
const _ITE = "InvalidTargetException";
|
|
1071
|
-
const _K = "Key";
|
|
1072
|
-
const _L = "Limit";
|
|
1073
|
-
const _LADA = "ListADAssessments";
|
|
1074
|
-
const _LADAR = "ListADAssessmentsRequest";
|
|
1075
|
-
const _LADARi = "ListADAssessmentsResult";
|
|
1076
|
-
const _LC = "LdifContent";
|
|
1077
|
-
const _LCR = "ListCertificatesRequest";
|
|
1078
|
-
const _LCRi = "ListCertificatesResult";
|
|
1079
|
-
const _LCi = "ListCertificates";
|
|
1080
|
-
const _LDAPSS = "LDAPSStatus";
|
|
1081
|
-
const _LDAPSSI = "LDAPSSettingsInfo";
|
|
1082
|
-
const _LDAPSSIe = "LDAPSSettingInfo";
|
|
1083
|
-
const _LDAPSSR = "LDAPSStatusReason";
|
|
1084
|
-
const _LGN = "LogGroupName";
|
|
1085
|
-
const _LIR = "ListIpRoutes";
|
|
1086
|
-
const _LIRR = "ListIpRoutesRequest";
|
|
1087
|
-
const _LIRRi = "ListIpRoutesResult";
|
|
1088
|
-
const _LLS = "ListLogSubscriptions";
|
|
1089
|
-
const _LLSR = "ListLogSubscriptionsRequest";
|
|
1090
|
-
const _LLSRi = "ListLogSubscriptionsResult";
|
|
1091
|
-
const _LRDT = "LastRequestedDateTime";
|
|
1092
|
-
const _LS = "LogSubscriptions";
|
|
1093
|
-
const _LSE = "ListSchemaExtensions";
|
|
1094
|
-
const _LSER = "ListSchemaExtensionsRequest";
|
|
1095
|
-
const _LSERi = "ListSchemaExtensionsResult";
|
|
1096
|
-
const _LSo = "LogSubscription";
|
|
1097
|
-
const _LT = "LaunchTime";
|
|
1098
|
-
const _LTFR = "ListTagsForResource";
|
|
1099
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
1100
|
-
const _LTFRRi = "ListTagsForResourceResult";
|
|
1101
|
-
const _LUDT = "LastUpdateDateTime";
|
|
1102
|
-
const _LUDTa = "LastUpdatedDateTime";
|
|
1103
|
-
const _M = "Message";
|
|
1104
|
-
const _MSCC = "ManualSnapshotsCurrentCount";
|
|
1105
|
-
const _MSL = "ManualSnapshotsLimit";
|
|
1106
|
-
const _MSLR = "ManualSnapshotsLimitReached";
|
|
1107
|
-
const _N = "Notes";
|
|
1108
|
-
const _NACE = "NoAvailableCertificateException";
|
|
1109
|
-
const _NP = "NewPassword";
|
|
1110
|
-
const _NT = "NetworkType";
|
|
1111
|
-
const _NTe = "NextToken";
|
|
1112
|
-
const _NUS = "NetworkUpdateSettings";
|
|
1113
|
-
const _NV = "NewValue";
|
|
1114
|
-
const _Na = "Name";
|
|
1115
|
-
const _OAI = "OwnerAccountId";
|
|
1116
|
-
const _OCSPU = "OCSPUrl";
|
|
1117
|
-
const _ODD = "OwnerDirectoryDescription";
|
|
1118
|
-
const _ODI = "OwnerDirectoryId";
|
|
1119
|
-
const _OE = "OrganizationsException";
|
|
1120
|
-
const _OSUS = "OSUpdateSettings";
|
|
1121
|
-
const _OSV = "OSVersion";
|
|
1122
|
-
const _OUDN = "OrganizationalUnitDistinguishedName";
|
|
1123
|
-
const _OV = "OsVersion";
|
|
1124
|
-
const _P = "Password";
|
|
1125
|
-
const _PCA = "PcaConnectorArn";
|
|
1126
|
-
const _PR = "PrimaryRegion";
|
|
1127
|
-
const _PV = "PreviousValue";
|
|
1128
|
-
const _R = "Region";
|
|
1129
|
-
const _RC = "RegisterCertificate";
|
|
1130
|
-
const _RCR = "RegisterCertificateRequest";
|
|
1131
|
-
const _RCRe = "RegisterCertificateResult";
|
|
1132
|
-
const _RD = "RegionsDescription";
|
|
1133
|
-
const _RDN = "RemoteDomainName";
|
|
1134
|
-
const _RDNe = "RemoteDomainNames";
|
|
1135
|
-
const _RDS = "RequestDetailedStatus";
|
|
1136
|
-
const _RDT = "RegisteredDateTime";
|
|
1137
|
-
const _RDe = "RegionDescription";
|
|
1138
|
-
const _RET = "RegisterEventTopic";
|
|
1139
|
-
const _RETR = "RegisterEventTopicRequest";
|
|
1140
|
-
const _RETRe = "RegisterEventTopicResult";
|
|
1141
|
-
const _RFS = "RestoreFromSnapshot";
|
|
1142
|
-
const _RFSR = "RestoreFromSnapshotRequest";
|
|
1143
|
-
const _RFSRe = "RestoreFromSnapshotResult";
|
|
1144
|
-
const _RI = "RequestId";
|
|
1145
|
-
const _RIR = "RemoveIpRoutes";
|
|
1146
|
-
const _RIRR = "RemoveIpRoutesRequest";
|
|
1147
|
-
const _RIRRe = "RemoveIpRoutesResult";
|
|
1148
|
-
const _RIe = "ResourceId";
|
|
1149
|
-
const _RIeg = "RegionsInfo";
|
|
1150
|
-
const _RLEE = "RegionLimitExceededException";
|
|
1151
|
-
const _RN = "RegionName";
|
|
1152
|
-
const _RP = "RadiusPort";
|
|
1153
|
-
const _RR = "RadiusRetries";
|
|
1154
|
-
const _RRR = "RemoveRegionRequest";
|
|
1155
|
-
const _RRRe = "RemoveRegionResult";
|
|
1156
|
-
const _RRe = "RemoveRegion";
|
|
1157
|
-
const _RS = "ReplicationScope";
|
|
1158
|
-
const _RSD = "RejectSharedDirectory";
|
|
1159
|
-
const _RSDR = "RejectSharedDirectoryRequest";
|
|
1160
|
-
const _RSDRe = "RejectSharedDirectoryResult";
|
|
1161
|
-
const _RSI = "RadiusServersIpv6";
|
|
1162
|
-
const _RSM = "RequestStatusMessage";
|
|
1163
|
-
const _RSS = "RadiusSharedSecret";
|
|
1164
|
-
const _RSa = "RadiusSettings";
|
|
1165
|
-
const _RSad = "RadiusStatus";
|
|
1166
|
-
const _RSadi = "RadiusServers";
|
|
1167
|
-
const _RSe = "RequestStatus";
|
|
1168
|
-
const _RT = "ReportType";
|
|
1169
|
-
const _RTFR = "RemoveTagsFromResource";
|
|
1170
|
-
const _RTFRR = "RemoveTagsFromResourceRequest";
|
|
1171
|
-
const _RTFRRe = "RemoveTagsFromResourceResult";
|
|
1172
|
-
const _RTa = "RadiusTimeout";
|
|
1173
|
-
const _RTe = "RegionType";
|
|
1174
|
-
const _RUP = "ResetUserPassword";
|
|
1175
|
-
const _RUPR = "ResetUserPasswordRequest";
|
|
1176
|
-
const _RUPRe = "ResetUserPasswordResult";
|
|
1177
|
-
const _RV = "RequestedValue";
|
|
1178
|
-
const _S = "Status";
|
|
1179
|
-
const _SA = "SecretArn";
|
|
1180
|
-
const _SADA = "StartADAssessment";
|
|
1181
|
-
const _SADAR = "StartADAssessmentRequest";
|
|
1182
|
-
const _SADARt = "StartADAssessmentResult";
|
|
1183
|
-
const _SAI = "SharedAccountId";
|
|
1184
|
-
const _SAe = "SelectiveAuth";
|
|
1185
|
-
const _SC = "StatusCode";
|
|
1186
|
-
const _SCDT = "SubscriptionCreatedDateTime";
|
|
1187
|
-
const _SD = "SharedDirectory";
|
|
1188
|
-
const _SDI = "SharedDirectoryId";
|
|
1189
|
-
const _SDIh = "SharedDirectoryIds";
|
|
1190
|
-
const _SDR = "ShareDirectoryRequest";
|
|
1191
|
-
const _SDRh = "ShareDirectoryResult";
|
|
1192
|
-
const _SDT = "StartDateTime";
|
|
1193
|
-
const _SDh = "SharedDirectories";
|
|
1194
|
-
const _SDha = "ShareDirectory";
|
|
1195
|
-
const _SE = "SettingEntries";
|
|
1196
|
-
const _SEI = "SchemaExtensionId";
|
|
1197
|
-
const _SEIc = "SchemaExtensionsInfo";
|
|
1198
|
-
const _SEIch = "SchemaExtensionInfo";
|
|
1199
|
-
const _SES = "SchemaExtensionStatus";
|
|
1200
|
-
const _SESR = "SchemaExtensionStatusReason";
|
|
1201
|
-
const _SEe = "ServiceException";
|
|
1202
|
-
const _SEet = "SettingEntry";
|
|
1203
|
-
const _SEs = "SsoEnabled";
|
|
1204
|
-
const _SGI = "SecurityGroupIds";
|
|
1205
|
-
const _SGIe = "SecurityGroupId";
|
|
1206
|
-
const _SI = "SubnetIds";
|
|
1207
|
-
const _SIn = "SnapshotId";
|
|
1208
|
-
const _SIna = "SnapshotIds";
|
|
1209
|
-
const _SIu = "SubnetId";
|
|
1210
|
-
const _SL = "SnapshotLimits";
|
|
1211
|
-
const _SLEE = "ShareLimitExceededException";
|
|
1212
|
-
const _SLEEn = "SnapshotLimitExceededException";
|
|
1213
|
-
const _SLUDT = "StageLastUpdatedDateTime";
|
|
1214
|
-
const _SLUDTt = "StatusLastUpdatedDateTime";
|
|
1215
|
-
const _SLUDTta = "StateLastUpdatedDateTime";
|
|
1216
|
-
const _SM = "ShareMethod";
|
|
1217
|
-
const _SMDIA = "SelfManagedDnsIpAddrs";
|
|
1218
|
-
const _SMI = "SelfManagedInstances";
|
|
1219
|
-
const _SMII = "SelfManagedInstanceIds";
|
|
1220
|
-
const _SMIS = "SelfManagedInstancesSettings";
|
|
1221
|
-
const _SN = "ShortName";
|
|
1222
|
-
const _SNh = "ShareNotes";
|
|
1223
|
-
const _SR = "StatusReason";
|
|
1224
|
-
const _SRt = "StateReason";
|
|
1225
|
-
const _SRta = "StageReason";
|
|
1226
|
-
const _SS = "ShareStatus";
|
|
1227
|
-
const _SSE = "StartSchemaExtension";
|
|
1228
|
-
const _SSER = "StartSchemaExtensionRequest";
|
|
1229
|
-
const _SSERt = "StartSchemaExtensionResult";
|
|
1230
|
-
const _SSh = "SharedSecret";
|
|
1231
|
-
const _ST = "StartTime";
|
|
1232
|
-
const _STh = "ShareTarget";
|
|
1233
|
-
const _Se = "Setting";
|
|
1234
|
-
const _Set = "Settings";
|
|
1235
|
-
const _Si = "Size";
|
|
1236
|
-
const _Sn = "Snapshots";
|
|
1237
|
-
const _Sna = "Snapshot";
|
|
1238
|
-
const _St = "State";
|
|
1239
|
-
const _Sta = "Stage";
|
|
1240
|
-
const _T = "Tags";
|
|
1241
|
-
const _TA = "TopicArn";
|
|
1242
|
-
const _TD = "TrustDirection";
|
|
1243
|
-
const _TI = "TrustId";
|
|
1244
|
-
const _TIr = "TrustIds";
|
|
1245
|
-
const _TK = "TagKeys";
|
|
1246
|
-
const _TLEE = "TagLimitExceededException";
|
|
1247
|
-
const _TN = "TopicName";
|
|
1248
|
-
const _TNo = "TopicNames";
|
|
1249
|
-
const _TP = "TrustPassword";
|
|
1250
|
-
const _TS = "TrustState";
|
|
1251
|
-
const _TSR = "TrustStateReason";
|
|
1252
|
-
const _TT = "TrustType";
|
|
1253
|
-
const _Ta = "Tag";
|
|
1254
|
-
const _Tr = "Trusts";
|
|
1255
|
-
const _Tru = "Trust";
|
|
1256
|
-
const _Ty = "Type";
|
|
1257
|
-
const _UA = "UpdateActivities";
|
|
1258
|
-
const _UCF = "UpdateConditionalForwarder";
|
|
1259
|
-
const _UCFR = "UpdateConditionalForwarderRequest";
|
|
1260
|
-
const _UCFRp = "UpdateConditionalForwarderResult";
|
|
1261
|
-
const _UD = "UnshareDirectory";
|
|
1262
|
-
const _UDNEE = "UserDoesNotExistException";
|
|
1263
|
-
const _UDR = "UnshareDirectoryRequest";
|
|
1264
|
-
const _UDRn = "UnshareDirectoryResult";
|
|
1265
|
-
const _UDS = "UpdateDirectorySetup";
|
|
1266
|
-
const _UDSR = "UpdateDirectorySetupRequest";
|
|
1267
|
-
const _UDSRp = "UpdateDirectorySetupResult";
|
|
1268
|
-
const _UHAD = "UpdateHybridAD";
|
|
1269
|
-
const _UHADR = "UpdateHybridADRequest";
|
|
1270
|
-
const _UHADRp = "UpdateHybridADResult";
|
|
1271
|
-
const _UIE = "UpdateInfoEntry";
|
|
1272
|
-
const _UN = "UserName";
|
|
1273
|
-
const _UNODC = "UpdateNumberOfDomainControllers";
|
|
1274
|
-
const _UNODCR = "UpdateNumberOfDomainControllersRequest";
|
|
1275
|
-
const _UNODCRp = "UpdateNumberOfDomainControllersResult";
|
|
1276
|
-
const _UOE = "UnsupportedOperationException";
|
|
1277
|
-
const _UP = "UserPassword";
|
|
1278
|
-
const _UR = "UpdateRadius";
|
|
1279
|
-
const _URR = "UpdateRadiusRequest";
|
|
1280
|
-
const _URRp = "UpdateRadiusResult";
|
|
1281
|
-
const _US = "UpdateSettings";
|
|
1282
|
-
const _USE = "UnsupportedSettingsException";
|
|
1283
|
-
const _USGFDC = "UpdateSecurityGroupForDirectoryControllers";
|
|
1284
|
-
const _USR = "UpdateSettingsRequest";
|
|
1285
|
-
const _USRp = "UpdateSettingsResult";
|
|
1286
|
-
const _USU = "UseSameUsername";
|
|
1287
|
-
const _UT = "UpdateType";
|
|
1288
|
-
const _UTR = "UpdateTrustRequest";
|
|
1289
|
-
const _UTRp = "UpdateTrustResult";
|
|
1290
|
-
const _UTn = "UnshareTarget";
|
|
1291
|
-
const _UTp = "UpdateTrust";
|
|
1292
|
-
const _UV = "UpdateValue";
|
|
1293
|
-
const _V = "Version";
|
|
1294
|
-
const _VI = "VpcId";
|
|
1295
|
-
const _VPCS = "VPCSettings";
|
|
1296
|
-
const _VS = "VpcSettings";
|
|
1297
|
-
const _VT = "VerifyTrust";
|
|
1298
|
-
const _VTR = "VerifyTrustRequest";
|
|
1299
|
-
const _VTRe = "VerifyTrustResult";
|
|
1300
|
-
const _Va = "Validations";
|
|
1301
|
-
const _Val = "Value";
|
|
1302
|
-
const _c = "client";
|
|
1303
|
-
const _e = "error";
|
|
1304
|
-
const _s = "server";
|
|
1305
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.directoryservice";
|
|
1306
|
-
const n0 = "com.amazonaws.directoryservice";
|
|
1307
|
-
var ComputerPassword = [0, n0, _CP, 8, 0];
|
|
1308
|
-
var ConnectPassword = [0, n0, _CPo, 8, 0];
|
|
1309
|
-
var Notes = [0, n0, _N, 8, 0];
|
|
1310
|
-
var Password = [0, n0, _P, 8, 0];
|
|
1311
|
-
var RadiusSharedSecret = [0, n0, _RSS, 8, 0];
|
|
1312
|
-
var TrustPassword = [0, n0, _TP, 8, 0];
|
|
1313
|
-
var UserPassword = [0, n0, _UP, 8, 0];
|
|
1314
|
-
var AcceptSharedDirectoryRequest$ = [3, n0, _ASDR,
|
|
1315
|
-
0,
|
|
1316
|
-
[_SDI],
|
|
1317
|
-
[0], 1
|
|
1318
|
-
];
|
|
1319
|
-
var AcceptSharedDirectoryResult$ = [3, n0, _ASDRc,
|
|
1320
|
-
0,
|
|
1321
|
-
[_SD],
|
|
1322
|
-
[[() => SharedDirectory$, 0]]
|
|
1323
|
-
];
|
|
1324
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
1325
|
-
{ [_e]: _c },
|
|
1326
|
-
[_M, _RI],
|
|
1327
|
-
[0, 0]
|
|
1328
|
-
];
|
|
1329
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
1330
|
-
var ADAssessmentLimitExceededException$ = [-3, n0, _ADALEE,
|
|
1331
|
-
{ [_e]: _c },
|
|
1332
|
-
[_M, _RI],
|
|
1333
|
-
[0, 0]
|
|
1334
|
-
];
|
|
1335
|
-
schema.TypeRegistry.for(n0).registerError(ADAssessmentLimitExceededException$, ADAssessmentLimitExceededException);
|
|
1336
|
-
var AddIpRoutesRequest$ = [3, n0, _AIRR,
|
|
1337
|
-
0,
|
|
1338
|
-
[_DI, _IR, _USGFDC],
|
|
1339
|
-
[0, () => IpRoutes, 2], 2
|
|
1340
|
-
];
|
|
1341
|
-
var AddIpRoutesResult$ = [3, n0, _AIRRd,
|
|
1342
|
-
0,
|
|
1343
|
-
[],
|
|
1344
|
-
[]
|
|
1345
|
-
];
|
|
1346
|
-
var AddRegionRequest$ = [3, n0, _ARR,
|
|
1347
|
-
0,
|
|
1348
|
-
[_DI, _RN, _VPCS],
|
|
1349
|
-
[0, 0, () => DirectoryVpcSettings$], 3
|
|
1350
|
-
];
|
|
1351
|
-
var AddRegionResult$ = [3, n0, _ARRd,
|
|
1352
|
-
0,
|
|
1353
|
-
[],
|
|
1354
|
-
[]
|
|
1355
|
-
];
|
|
1356
|
-
var AddTagsToResourceRequest$ = [3, n0, _ATTRR,
|
|
1357
|
-
0,
|
|
1358
|
-
[_RIe, _T],
|
|
1359
|
-
[0, () => Tags], 2
|
|
1360
|
-
];
|
|
1361
|
-
var AddTagsToResourceResult$ = [3, n0, _ATTRRd,
|
|
1362
|
-
0,
|
|
1363
|
-
[],
|
|
1364
|
-
[]
|
|
1365
|
-
];
|
|
1366
|
-
var Assessment$ = [3, n0, _A,
|
|
1367
|
-
0,
|
|
1368
|
-
[_AI, _DI, _DN, _ST, _LUDT, _S, _SC, _SR, _CDI, _VI, _SI, _SGI, _SMII, _RT, _V],
|
|
1369
|
-
[0, 0, 0, 4, 4, 0, 0, 0, 64 | 0, 0, 64 | 0, 64 | 0, 64 | 0, 0, 0]
|
|
1370
|
-
];
|
|
1371
|
-
var AssessmentConfiguration$ = [3, n0, _AC,
|
|
1372
|
-
0,
|
|
1373
|
-
[_CDI, _DN, _VS, _II, _SGI],
|
|
1374
|
-
[64 | 0, 0, () => DirectoryVpcSettings$, 64 | 0, 64 | 0], 4
|
|
1375
|
-
];
|
|
1376
|
-
var AssessmentReport$ = [3, n0, _AR,
|
|
1377
|
-
0,
|
|
1378
|
-
[_DCI, _Va],
|
|
1379
|
-
[0, () => AssessmentValidations]
|
|
1380
|
-
];
|
|
1381
|
-
var AssessmentSummary$ = [3, n0, _AS,
|
|
1382
|
-
0,
|
|
1383
|
-
[_AI, _DI, _DN, _ST, _LUDT, _S, _CDI, _RT],
|
|
1384
|
-
[0, 0, 0, 4, 4, 0, 64 | 0, 0]
|
|
1385
|
-
];
|
|
1386
|
-
var AssessmentValidation$ = [3, n0, _AV,
|
|
1387
|
-
0,
|
|
1388
|
-
[_C, _Na, _S, _SC, _SR, _ST, _LUDT],
|
|
1389
|
-
[0, 0, 0, 0, 0, 4, 4]
|
|
1390
|
-
];
|
|
1391
|
-
var Attribute$ = [3, n0, _At,
|
|
1392
|
-
0,
|
|
1393
|
-
[_Na, _Val],
|
|
1394
|
-
[0, 0]
|
|
1395
|
-
];
|
|
1396
|
-
var AuthenticationFailedException$ = [-3, n0, _AFE,
|
|
1397
|
-
{ [_e]: _c },
|
|
1398
|
-
[_M, _RI],
|
|
1399
|
-
[0, 0]
|
|
1400
|
-
];
|
|
1401
|
-
schema.TypeRegistry.for(n0).registerError(AuthenticationFailedException$, AuthenticationFailedException);
|
|
1402
|
-
var CancelSchemaExtensionRequest$ = [3, n0, _CSER,
|
|
1403
|
-
0,
|
|
1404
|
-
[_DI, _SEI],
|
|
1405
|
-
[0, 0], 2
|
|
1406
|
-
];
|
|
1407
|
-
var CancelSchemaExtensionResult$ = [3, n0, _CSERa,
|
|
1408
|
-
0,
|
|
1409
|
-
[],
|
|
1410
|
-
[]
|
|
1411
|
-
];
|
|
1412
|
-
var Certificate$ = [3, n0, _Ce,
|
|
1413
|
-
0,
|
|
1414
|
-
[_CI, _St, _SRt, _CN, _RDT, _EDT, _Ty, _CCAS],
|
|
1415
|
-
[0, 0, 0, 0, 4, 4, 0, () => ClientCertAuthSettings$]
|
|
1416
|
-
];
|
|
1417
|
-
var CertificateAlreadyExistsException$ = [-3, n0, _CAEE,
|
|
1418
|
-
{ [_e]: _c },
|
|
1419
|
-
[_M, _RI],
|
|
1420
|
-
[0, 0]
|
|
1421
|
-
];
|
|
1422
|
-
schema.TypeRegistry.for(n0).registerError(CertificateAlreadyExistsException$, CertificateAlreadyExistsException);
|
|
1423
|
-
var CertificateDoesNotExistException$ = [-3, n0, _CDNEE,
|
|
1424
|
-
{ [_e]: _c },
|
|
1425
|
-
[_M, _RI],
|
|
1426
|
-
[0, 0]
|
|
1427
|
-
];
|
|
1428
|
-
schema.TypeRegistry.for(n0).registerError(CertificateDoesNotExistException$, CertificateDoesNotExistException);
|
|
1429
|
-
var CertificateInfo$ = [3, n0, _CIe,
|
|
1430
|
-
0,
|
|
1431
|
-
[_CI, _CN, _St, _EDT, _Ty],
|
|
1432
|
-
[0, 0, 0, 4, 0]
|
|
1433
|
-
];
|
|
1434
|
-
var CertificateInUseException$ = [-3, n0, _CIUE,
|
|
1435
|
-
{ [_e]: _c },
|
|
1436
|
-
[_M, _RI],
|
|
1437
|
-
[0, 0]
|
|
1438
|
-
];
|
|
1439
|
-
schema.TypeRegistry.for(n0).registerError(CertificateInUseException$, CertificateInUseException);
|
|
1440
|
-
var CertificateLimitExceededException$ = [-3, n0, _CLEE,
|
|
1441
|
-
{ [_e]: _c },
|
|
1442
|
-
[_M, _RI],
|
|
1443
|
-
[0, 0]
|
|
1444
|
-
];
|
|
1445
|
-
schema.TypeRegistry.for(n0).registerError(CertificateLimitExceededException$, CertificateLimitExceededException);
|
|
1446
|
-
var ClientAuthenticationSettingInfo$ = [3, n0, _CASI,
|
|
1447
|
-
0,
|
|
1448
|
-
[_Ty, _S, _LUDTa],
|
|
1449
|
-
[0, 0, 4]
|
|
1450
|
-
];
|
|
1451
|
-
var ClientCertAuthSettings$ = [3, n0, _CCAS,
|
|
1452
|
-
0,
|
|
1453
|
-
[_OCSPU],
|
|
1454
|
-
[0]
|
|
1455
|
-
];
|
|
1456
|
-
var ClientException$ = [-3, n0, _CE,
|
|
1457
|
-
{ [_e]: _c },
|
|
1458
|
-
[_M, _RI],
|
|
1459
|
-
[0, 0]
|
|
1460
|
-
];
|
|
1461
|
-
schema.TypeRegistry.for(n0).registerError(ClientException$, ClientException);
|
|
1462
|
-
var Computer$ = [3, n0, _Co,
|
|
1463
|
-
0,
|
|
1464
|
-
[_CIo, _CNo, _CA],
|
|
1465
|
-
[0, 0, () => Attributes]
|
|
1466
|
-
];
|
|
1467
|
-
var ConditionalForwarder$ = [3, n0, _CF,
|
|
1468
|
-
0,
|
|
1469
|
-
[_RDN, _DIA, _DIAn, _RS],
|
|
1470
|
-
[0, 64 | 0, 64 | 0, 0]
|
|
1471
|
-
];
|
|
1472
|
-
var ConnectDirectoryRequest$ = [3, n0, _CDR,
|
|
1473
|
-
0,
|
|
1474
|
-
[_Na, _P, _Si, _CS, _SN, _D, _T, _NT],
|
|
1475
|
-
[0, [() => ConnectPassword, 0], 0, () => DirectoryConnectSettings$, 0, 0, () => Tags, 0], 4
|
|
1476
|
-
];
|
|
1477
|
-
var ConnectDirectoryResult$ = [3, n0, _CDRo,
|
|
1478
|
-
0,
|
|
1479
|
-
[_DI],
|
|
1480
|
-
[0]
|
|
1481
|
-
];
|
|
1482
|
-
var CreateAliasRequest$ = [3, n0, _CAR,
|
|
1483
|
-
0,
|
|
1484
|
-
[_DI, _Al],
|
|
1485
|
-
[0, 0], 2
|
|
1486
|
-
];
|
|
1487
|
-
var CreateAliasResult$ = [3, n0, _CARr,
|
|
1488
|
-
0,
|
|
1489
|
-
[_DI, _Al],
|
|
1490
|
-
[0, 0]
|
|
1491
|
-
];
|
|
1492
|
-
var CreateComputerRequest$ = [3, n0, _CCR,
|
|
1493
|
-
0,
|
|
1494
|
-
[_DI, _CNo, _P, _OUDN, _CA],
|
|
1495
|
-
[0, 0, [() => ComputerPassword, 0], 0, () => Attributes], 3
|
|
1496
|
-
];
|
|
1497
|
-
var CreateComputerResult$ = [3, n0, _CCRr,
|
|
1498
|
-
0,
|
|
1499
|
-
[_Co],
|
|
1500
|
-
[() => Computer$]
|
|
1501
|
-
];
|
|
1502
|
-
var CreateConditionalForwarderRequest$ = [3, n0, _CCFR,
|
|
1503
|
-
0,
|
|
1504
|
-
[_DI, _RDN, _DIA, _DIAn],
|
|
1505
|
-
[0, 0, 64 | 0, 64 | 0], 2
|
|
1506
|
-
];
|
|
1507
|
-
var CreateConditionalForwarderResult$ = [3, n0, _CCFRr,
|
|
1508
|
-
0,
|
|
1509
|
-
[],
|
|
1510
|
-
[]
|
|
1511
|
-
];
|
|
1512
|
-
var CreateDirectoryRequest$ = [3, n0, _CDRr,
|
|
1513
|
-
0,
|
|
1514
|
-
[_Na, _P, _Si, _SN, _D, _VS, _T, _NT],
|
|
1515
|
-
[0, [() => Password, 0], 0, 0, 0, () => DirectoryVpcSettings$, () => Tags, 0], 3
|
|
1516
|
-
];
|
|
1517
|
-
var CreateDirectoryResult$ = [3, n0, _CDRre,
|
|
1518
|
-
0,
|
|
1519
|
-
[_DI],
|
|
1520
|
-
[0]
|
|
1521
|
-
];
|
|
1522
|
-
var CreateHybridADRequest$ = [3, n0, _CHADR,
|
|
1523
|
-
0,
|
|
1524
|
-
[_SA, _AI, _T],
|
|
1525
|
-
[0, 0, () => Tags], 2
|
|
1526
|
-
];
|
|
1527
|
-
var CreateHybridADResult$ = [3, n0, _CHADRr,
|
|
1528
|
-
0,
|
|
1529
|
-
[_DI],
|
|
1530
|
-
[0]
|
|
1531
|
-
];
|
|
1532
|
-
var CreateLogSubscriptionRequest$ = [3, n0, _CLSR,
|
|
1533
|
-
0,
|
|
1534
|
-
[_DI, _LGN],
|
|
1535
|
-
[0, 0], 2
|
|
1536
|
-
];
|
|
1537
|
-
var CreateLogSubscriptionResult$ = [3, n0, _CLSRr,
|
|
1538
|
-
0,
|
|
1539
|
-
[],
|
|
1540
|
-
[]
|
|
1541
|
-
];
|
|
1542
|
-
var CreateMicrosoftADRequest$ = [3, n0, _CMADR,
|
|
1543
|
-
0,
|
|
1544
|
-
[_Na, _P, _VS, _SN, _D, _E, _T, _NT],
|
|
1545
|
-
[0, [() => Password, 0], () => DirectoryVpcSettings$, 0, 0, 0, () => Tags, 0], 3
|
|
1546
|
-
];
|
|
1547
|
-
var CreateMicrosoftADResult$ = [3, n0, _CMADRr,
|
|
1548
|
-
0,
|
|
1549
|
-
[_DI],
|
|
1550
|
-
[0]
|
|
1551
|
-
];
|
|
1552
|
-
var CreateSnapshotRequest$ = [3, n0, _CSR,
|
|
1553
|
-
0,
|
|
1554
|
-
[_DI, _Na],
|
|
1555
|
-
[0, 0], 1
|
|
1556
|
-
];
|
|
1557
|
-
var CreateSnapshotResult$ = [3, n0, _CSRr,
|
|
1558
|
-
0,
|
|
1559
|
-
[_SIn],
|
|
1560
|
-
[0]
|
|
1561
|
-
];
|
|
1562
|
-
var CreateTrustRequest$ = [3, n0, _CTR,
|
|
1563
|
-
0,
|
|
1564
|
-
[_DI, _RDN, _TP, _TD, _TT, _CFIA, _CFIAo, _SAe],
|
|
1565
|
-
[0, 0, [() => TrustPassword, 0], 0, 0, 64 | 0, 64 | 0, 0], 4
|
|
1566
|
-
];
|
|
1567
|
-
var CreateTrustResult$ = [3, n0, _CTRr,
|
|
1568
|
-
0,
|
|
1569
|
-
[_TI],
|
|
1570
|
-
[0]
|
|
1571
|
-
];
|
|
1572
|
-
var DeleteADAssessmentRequest$ = [3, n0, _DADAR,
|
|
1573
|
-
0,
|
|
1574
|
-
[_AI],
|
|
1575
|
-
[0], 1
|
|
1576
|
-
];
|
|
1577
|
-
var DeleteADAssessmentResult$ = [3, n0, _DADARe,
|
|
1578
|
-
0,
|
|
1579
|
-
[_AI],
|
|
1580
|
-
[0]
|
|
1581
|
-
];
|
|
1582
|
-
var DeleteConditionalForwarderRequest$ = [3, n0, _DCFR,
|
|
1583
|
-
0,
|
|
1584
|
-
[_DI, _RDN],
|
|
1585
|
-
[0, 0], 2
|
|
1586
|
-
];
|
|
1587
|
-
var DeleteConditionalForwarderResult$ = [3, n0, _DCFRe,
|
|
1588
|
-
0,
|
|
1589
|
-
[],
|
|
1590
|
-
[]
|
|
1591
|
-
];
|
|
1592
|
-
var DeleteDirectoryRequest$ = [3, n0, _DDR,
|
|
1593
|
-
0,
|
|
1594
|
-
[_DI],
|
|
1595
|
-
[0], 1
|
|
1596
|
-
];
|
|
1597
|
-
var DeleteDirectoryResult$ = [3, n0, _DDRe,
|
|
1598
|
-
0,
|
|
1599
|
-
[_DI],
|
|
1600
|
-
[0]
|
|
1601
|
-
];
|
|
1602
|
-
var DeleteLogSubscriptionRequest$ = [3, n0, _DLSR,
|
|
1603
|
-
0,
|
|
1604
|
-
[_DI],
|
|
1605
|
-
[0], 1
|
|
1606
|
-
];
|
|
1607
|
-
var DeleteLogSubscriptionResult$ = [3, n0, _DLSRe,
|
|
1608
|
-
0,
|
|
1609
|
-
[],
|
|
1610
|
-
[]
|
|
1611
|
-
];
|
|
1612
|
-
var DeleteSnapshotRequest$ = [3, n0, _DSR,
|
|
1613
|
-
0,
|
|
1614
|
-
[_SIn],
|
|
1615
|
-
[0], 1
|
|
1616
|
-
];
|
|
1617
|
-
var DeleteSnapshotResult$ = [3, n0, _DSRe,
|
|
1618
|
-
0,
|
|
1619
|
-
[_SIn],
|
|
1620
|
-
[0]
|
|
1621
|
-
];
|
|
1622
|
-
var DeleteTrustRequest$ = [3, n0, _DTR,
|
|
1623
|
-
0,
|
|
1624
|
-
[_TI, _DACF],
|
|
1625
|
-
[0, 2], 1
|
|
1626
|
-
];
|
|
1627
|
-
var DeleteTrustResult$ = [3, n0, _DTRe,
|
|
1628
|
-
0,
|
|
1629
|
-
[_TI],
|
|
1630
|
-
[0]
|
|
1631
|
-
];
|
|
1632
|
-
var DeregisterCertificateRequest$ = [3, n0, _DCR,
|
|
1633
|
-
0,
|
|
1634
|
-
[_DI, _CI],
|
|
1635
|
-
[0, 0], 2
|
|
1636
|
-
];
|
|
1637
|
-
var DeregisterCertificateResult$ = [3, n0, _DCRe,
|
|
1638
|
-
0,
|
|
1639
|
-
[],
|
|
1640
|
-
[]
|
|
1641
|
-
];
|
|
1642
|
-
var DeregisterEventTopicRequest$ = [3, n0, _DETR,
|
|
1643
|
-
0,
|
|
1644
|
-
[_DI, _TN],
|
|
1645
|
-
[0, 0], 2
|
|
1646
|
-
];
|
|
1647
|
-
var DeregisterEventTopicResult$ = [3, n0, _DETRe,
|
|
1648
|
-
0,
|
|
1649
|
-
[],
|
|
1650
|
-
[]
|
|
1651
|
-
];
|
|
1652
|
-
var DescribeADAssessmentRequest$ = [3, n0, _DADARes,
|
|
1653
|
-
0,
|
|
1654
|
-
[_AI],
|
|
1655
|
-
[0], 1
|
|
1656
|
-
];
|
|
1657
|
-
var DescribeADAssessmentResult$ = [3, n0, _DADAResc,
|
|
1658
|
-
0,
|
|
1659
|
-
[_A, _ARs],
|
|
1660
|
-
[() => Assessment$, () => AssessmentReports]
|
|
1661
|
-
];
|
|
1662
|
-
var DescribeCAEnrollmentPolicyRequest$ = [3, n0, _DCAEPR,
|
|
1663
|
-
0,
|
|
1664
|
-
[_DI],
|
|
1665
|
-
[0], 1
|
|
1666
|
-
];
|
|
1667
|
-
var DescribeCAEnrollmentPolicyResult$ = [3, n0, _DCAEPRe,
|
|
1668
|
-
0,
|
|
1669
|
-
[_DI, _PCA, _CEPS, _LUDTa, _CEPSR],
|
|
1670
|
-
[0, 0, 0, 4, 0]
|
|
1671
|
-
];
|
|
1672
|
-
var DescribeCertificateRequest$ = [3, n0, _DCRes,
|
|
1673
|
-
0,
|
|
1674
|
-
[_DI, _CI],
|
|
1675
|
-
[0, 0], 2
|
|
1676
|
-
];
|
|
1677
|
-
var DescribeCertificateResult$ = [3, n0, _DCResc,
|
|
1678
|
-
0,
|
|
1679
|
-
[_Ce],
|
|
1680
|
-
[() => Certificate$]
|
|
1681
|
-
];
|
|
1682
|
-
var DescribeClientAuthenticationSettingsRequest$ = [3, n0, _DCASR,
|
|
1683
|
-
0,
|
|
1684
|
-
[_DI, _Ty, _NTe, _L],
|
|
1685
|
-
[0, 0, 0, 1], 1
|
|
1686
|
-
];
|
|
1687
|
-
var DescribeClientAuthenticationSettingsResult$ = [3, n0, _DCASRe,
|
|
1688
|
-
0,
|
|
1689
|
-
[_CASIl, _NTe],
|
|
1690
|
-
[() => ClientAuthenticationSettingsInfo, 0]
|
|
1691
|
-
];
|
|
1692
|
-
var DescribeConditionalForwardersRequest$ = [3, n0, _DCFRes,
|
|
1693
|
-
0,
|
|
1694
|
-
[_DI, _RDNe],
|
|
1695
|
-
[0, 64 | 0], 1
|
|
1696
|
-
];
|
|
1697
|
-
var DescribeConditionalForwardersResult$ = [3, n0, _DCFResc,
|
|
1698
|
-
0,
|
|
1699
|
-
[_CFo],
|
|
1700
|
-
[() => ConditionalForwarders]
|
|
1701
|
-
];
|
|
1702
|
-
var DescribeDirectoriesRequest$ = [3, n0, _DDRes,
|
|
1703
|
-
0,
|
|
1704
|
-
[_DIi, _NTe, _L],
|
|
1705
|
-
[64 | 0, 0, 1]
|
|
1706
|
-
];
|
|
1707
|
-
var DescribeDirectoriesResult$ = [3, n0, _DDResc,
|
|
1708
|
-
0,
|
|
1709
|
-
[_DD, _NTe],
|
|
1710
|
-
[[() => DirectoryDescriptions, 0], 0]
|
|
1711
|
-
];
|
|
1712
|
-
var DescribeDirectoryDataAccessRequest$ = [3, n0, _DDDAR,
|
|
1713
|
-
0,
|
|
1714
|
-
[_DI],
|
|
1715
|
-
[0], 1
|
|
1716
|
-
];
|
|
1717
|
-
var DescribeDirectoryDataAccessResult$ = [3, n0, _DDDARe,
|
|
1718
|
-
0,
|
|
1719
|
-
[_DAS],
|
|
1720
|
-
[0]
|
|
1721
|
-
];
|
|
1722
|
-
var DescribeDomainControllersRequest$ = [3, n0, _DDCR,
|
|
1723
|
-
0,
|
|
1724
|
-
[_DI, _DCIo, _NTe, _L],
|
|
1725
|
-
[0, 64 | 0, 0, 1], 1
|
|
1726
|
-
];
|
|
1727
|
-
var DescribeDomainControllersResult$ = [3, n0, _DDCRe,
|
|
1728
|
-
0,
|
|
1729
|
-
[_DC, _NTe],
|
|
1730
|
-
[() => DomainControllers, 0]
|
|
1731
|
-
];
|
|
1732
|
-
var DescribeEventTopicsRequest$ = [3, n0, _DETRes,
|
|
1733
|
-
0,
|
|
1734
|
-
[_DI, _TNo],
|
|
1735
|
-
[0, 64 | 0]
|
|
1736
|
-
];
|
|
1737
|
-
var DescribeEventTopicsResult$ = [3, n0, _DETResc,
|
|
1738
|
-
0,
|
|
1739
|
-
[_ET],
|
|
1740
|
-
[() => EventTopics]
|
|
1741
|
-
];
|
|
1742
|
-
var DescribeHybridADUpdateRequest$ = [3, n0, _DHADUR,
|
|
1743
|
-
0,
|
|
1744
|
-
[_DI, _UT, _NTe],
|
|
1745
|
-
[0, 0, 0], 1
|
|
1746
|
-
];
|
|
1747
|
-
var DescribeHybridADUpdateResult$ = [3, n0, _DHADURe,
|
|
1748
|
-
0,
|
|
1749
|
-
[_UA, _NTe],
|
|
1750
|
-
[() => HybridUpdateActivities$, 0]
|
|
1751
|
-
];
|
|
1752
|
-
var DescribeLDAPSSettingsRequest$ = [3, n0, _DLDAPSSR,
|
|
1753
|
-
0,
|
|
1754
|
-
[_DI, _Ty, _NTe, _L],
|
|
1755
|
-
[0, 0, 0, 1], 1
|
|
1756
|
-
];
|
|
1757
|
-
var DescribeLDAPSSettingsResult$ = [3, n0, _DLDAPSSRe,
|
|
1758
|
-
0,
|
|
1759
|
-
[_LDAPSSI, _NTe],
|
|
1760
|
-
[() => LDAPSSettingsInfo, 0]
|
|
1761
|
-
];
|
|
1762
|
-
var DescribeRegionsRequest$ = [3, n0, _DRR,
|
|
1763
|
-
0,
|
|
1764
|
-
[_DI, _RN, _NTe],
|
|
1765
|
-
[0, 0, 0], 1
|
|
1766
|
-
];
|
|
1767
|
-
var DescribeRegionsResult$ = [3, n0, _DRRe,
|
|
1768
|
-
0,
|
|
1769
|
-
[_RD, _NTe],
|
|
1770
|
-
[() => RegionsDescription, 0]
|
|
1771
|
-
];
|
|
1772
|
-
var DescribeSettingsRequest$ = [3, n0, _DSRes,
|
|
1773
|
-
0,
|
|
1774
|
-
[_DI, _S, _NTe],
|
|
1775
|
-
[0, 0, 0], 1
|
|
1776
|
-
];
|
|
1777
|
-
var DescribeSettingsResult$ = [3, n0, _DSResc,
|
|
1778
|
-
0,
|
|
1779
|
-
[_DI, _SE, _NTe],
|
|
1780
|
-
[0, () => SettingEntries, 0]
|
|
1781
|
-
];
|
|
1782
|
-
var DescribeSharedDirectoriesRequest$ = [3, n0, _DSDR,
|
|
1783
|
-
0,
|
|
1784
|
-
[_ODI, _SDIh, _NTe, _L],
|
|
1785
|
-
[0, 64 | 0, 0, 1], 1
|
|
1786
|
-
];
|
|
1787
|
-
var DescribeSharedDirectoriesResult$ = [3, n0, _DSDRe,
|
|
1788
|
-
0,
|
|
1789
|
-
[_SDh, _NTe],
|
|
1790
|
-
[[() => SharedDirectories, 0], 0]
|
|
1791
|
-
];
|
|
1792
|
-
var DescribeSnapshotsRequest$ = [3, n0, _DSRescr,
|
|
1793
|
-
0,
|
|
1794
|
-
[_DI, _SIna, _NTe, _L],
|
|
1795
|
-
[0, 64 | 0, 0, 1]
|
|
1796
|
-
];
|
|
1797
|
-
var DescribeSnapshotsResult$ = [3, n0, _DSRescri,
|
|
1798
|
-
0,
|
|
1799
|
-
[_Sn, _NTe],
|
|
1800
|
-
[() => Snapshots, 0]
|
|
1801
|
-
];
|
|
1802
|
-
var DescribeTrustsRequest$ = [3, n0, _DTRes,
|
|
1803
|
-
0,
|
|
1804
|
-
[_DI, _TIr, _NTe, _L],
|
|
1805
|
-
[0, 64 | 0, 0, 1]
|
|
1806
|
-
];
|
|
1807
|
-
var DescribeTrustsResult$ = [3, n0, _DTResc,
|
|
1808
|
-
0,
|
|
1809
|
-
[_Tr, _NTe],
|
|
1810
|
-
[() => Trusts, 0]
|
|
1811
|
-
];
|
|
1812
|
-
var DescribeUpdateDirectoryRequest$ = [3, n0, _DUDR,
|
|
1813
|
-
0,
|
|
1814
|
-
[_DI, _UT, _RN, _NTe],
|
|
1815
|
-
[0, 0, 0, 0], 2
|
|
1816
|
-
];
|
|
1817
|
-
var DescribeUpdateDirectoryResult$ = [3, n0, _DUDRe,
|
|
1818
|
-
0,
|
|
1819
|
-
[_UA, _NTe],
|
|
1820
|
-
[() => UpdateActivities, 0]
|
|
1821
|
-
];
|
|
1822
|
-
var DirectoryAlreadyInRegionException$ = [-3, n0, _DAIRE,
|
|
1823
|
-
{ [_e]: _c },
|
|
1824
|
-
[_M, _RI],
|
|
1825
|
-
[0, 0]
|
|
1826
|
-
];
|
|
1827
|
-
schema.TypeRegistry.for(n0).registerError(DirectoryAlreadyInRegionException$, DirectoryAlreadyInRegionException);
|
|
1828
|
-
var DirectoryAlreadySharedException$ = [-3, n0, _DASE,
|
|
1829
|
-
{ [_e]: _c },
|
|
1830
|
-
[_M, _RI],
|
|
1831
|
-
[0, 0]
|
|
1832
|
-
];
|
|
1833
|
-
schema.TypeRegistry.for(n0).registerError(DirectoryAlreadySharedException$, DirectoryAlreadySharedException);
|
|
1834
|
-
var DirectoryConnectSettings$ = [3, n0, _DCS,
|
|
1835
|
-
0,
|
|
1836
|
-
[_VI, _SI, _CUN, _CDI, _CDIV],
|
|
1837
|
-
[0, 64 | 0, 0, 64 | 0, 64 | 0], 3
|
|
1838
|
-
];
|
|
1839
|
-
var DirectoryConnectSettingsDescription$ = [3, n0, _DCSD,
|
|
1840
|
-
0,
|
|
1841
|
-
[_VI, _SI, _CUN, _SGIe, _AZ, _CIon, _CIV],
|
|
1842
|
-
[0, 64 | 0, 0, 0, 64 | 0, 64 | 0, 64 | 0]
|
|
1843
|
-
];
|
|
1844
|
-
var DirectoryDescription$ = [3, n0, _DDi,
|
|
1845
|
-
0,
|
|
1846
|
-
[_DI, _Na, _SN, _Si, _E, _Al, _AU, _D, _DIA, _DIAn, _Sta, _SS, _SM, _SNh, _LT, _SLUDT, _Ty, _VS, _CS, _RSa, _RSad, _SRta, _SEs, _DNODC, _ODD, _RIeg, _OV, _HS, _NT],
|
|
1847
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 0, [() => Notes, 0], 4, 4, 0, () => DirectoryVpcSettingsDescription$, () => DirectoryConnectSettingsDescription$, [() => RadiusSettings$, 0], 0, 0, 2, 1, [() => OwnerDirectoryDescription$, 0], () => RegionsInfo$, 0, () => HybridSettingsDescription$, 0]
|
|
1848
|
-
];
|
|
1849
|
-
var DirectoryDoesNotExistException$ = [-3, n0, _DDNEE,
|
|
1850
|
-
{ [_e]: _c },
|
|
1851
|
-
[_M, _RI],
|
|
1852
|
-
[0, 0]
|
|
1853
|
-
];
|
|
1854
|
-
schema.TypeRegistry.for(n0).registerError(DirectoryDoesNotExistException$, DirectoryDoesNotExistException);
|
|
1855
|
-
var DirectoryInDesiredStateException$ = [-3, n0, _DIDSE,
|
|
1856
|
-
{ [_e]: _c },
|
|
1857
|
-
[_M, _RI],
|
|
1858
|
-
[0, 0]
|
|
1859
|
-
];
|
|
1860
|
-
schema.TypeRegistry.for(n0).registerError(DirectoryInDesiredStateException$, DirectoryInDesiredStateException);
|
|
1861
|
-
var DirectoryLimitExceededException$ = [-3, n0, _DLEE,
|
|
1862
|
-
{ [_e]: _c },
|
|
1863
|
-
[_M, _RI],
|
|
1864
|
-
[0, 0]
|
|
1865
|
-
];
|
|
1866
|
-
schema.TypeRegistry.for(n0).registerError(DirectoryLimitExceededException$, DirectoryLimitExceededException);
|
|
1867
|
-
var DirectoryLimits$ = [3, n0, _DL,
|
|
1868
|
-
0,
|
|
1869
|
-
[_CODL, _CODCC, _CODLR, _COMADL, _COMADCC, _COMADLR, _CDL, _CDCC, _CDLR],
|
|
1870
|
-
[1, 1, 2, 1, 1, 2, 1, 1, 2]
|
|
1871
|
-
];
|
|
1872
|
-
var DirectoryNotSharedException$ = [-3, n0, _DNSE,
|
|
1873
|
-
{ [_e]: _c },
|
|
1874
|
-
[_M, _RI],
|
|
1875
|
-
[0, 0]
|
|
1876
|
-
];
|
|
1877
|
-
schema.TypeRegistry.for(n0).registerError(DirectoryNotSharedException$, DirectoryNotSharedException);
|
|
1878
|
-
var DirectorySizeUpdateSettings$ = [3, n0, _DSUS,
|
|
1879
|
-
0,
|
|
1880
|
-
[_DS],
|
|
1881
|
-
[0]
|
|
1882
|
-
];
|
|
1883
|
-
var DirectoryUnavailableException$ = [-3, n0, _DUE,
|
|
1884
|
-
{ [_e]: _c },
|
|
1885
|
-
[_M, _RI],
|
|
1886
|
-
[0, 0]
|
|
1887
|
-
];
|
|
1888
|
-
schema.TypeRegistry.for(n0).registerError(DirectoryUnavailableException$, DirectoryUnavailableException);
|
|
1889
|
-
var DirectoryVpcSettings$ = [3, n0, _DVS,
|
|
1890
|
-
0,
|
|
1891
|
-
[_VI, _SI],
|
|
1892
|
-
[0, 64 | 0], 2
|
|
1893
|
-
];
|
|
1894
|
-
var DirectoryVpcSettingsDescription$ = [3, n0, _DVSD,
|
|
1895
|
-
0,
|
|
1896
|
-
[_VI, _SI, _SGIe, _AZ],
|
|
1897
|
-
[0, 64 | 0, 0, 64 | 0]
|
|
1898
|
-
];
|
|
1899
|
-
var DisableAlreadyInProgressException$ = [-3, n0, _DAIPE,
|
|
1900
|
-
{ [_e]: _c },
|
|
1901
|
-
[_M, _RI],
|
|
1902
|
-
[0, 0]
|
|
1903
|
-
];
|
|
1904
|
-
schema.TypeRegistry.for(n0).registerError(DisableAlreadyInProgressException$, DisableAlreadyInProgressException);
|
|
1905
|
-
var DisableCAEnrollmentPolicyRequest$ = [3, n0, _DCAEPRi,
|
|
1906
|
-
0,
|
|
1907
|
-
[_DI],
|
|
1908
|
-
[0], 1
|
|
1909
|
-
];
|
|
1910
|
-
var DisableCAEnrollmentPolicyResult$ = [3, n0, _DCAEPRis,
|
|
1911
|
-
0,
|
|
1912
|
-
[],
|
|
1913
|
-
[]
|
|
1914
|
-
];
|
|
1915
|
-
var DisableClientAuthenticationRequest$ = [3, n0, _DCAR,
|
|
1916
|
-
0,
|
|
1917
|
-
[_DI, _Ty],
|
|
1918
|
-
[0, 0], 2
|
|
1919
|
-
];
|
|
1920
|
-
var DisableClientAuthenticationResult$ = [3, n0, _DCARi,
|
|
1921
|
-
0,
|
|
1922
|
-
[],
|
|
1923
|
-
[]
|
|
1924
|
-
];
|
|
1925
|
-
var DisableDirectoryDataAccessRequest$ = [3, n0, _DDDARi,
|
|
1926
|
-
0,
|
|
1927
|
-
[_DI],
|
|
1928
|
-
[0], 1
|
|
1929
|
-
];
|
|
1930
|
-
var DisableDirectoryDataAccessResult$ = [3, n0, _DDDARis,
|
|
1931
|
-
0,
|
|
1932
|
-
[],
|
|
1933
|
-
[]
|
|
1934
|
-
];
|
|
1935
|
-
var DisableLDAPSRequest$ = [3, n0, _DLDAPSR,
|
|
1936
|
-
0,
|
|
1937
|
-
[_DI, _Ty],
|
|
1938
|
-
[0, 0], 2
|
|
1939
|
-
];
|
|
1940
|
-
var DisableLDAPSResult$ = [3, n0, _DLDAPSRi,
|
|
1941
|
-
0,
|
|
1942
|
-
[],
|
|
1943
|
-
[]
|
|
1944
|
-
];
|
|
1945
|
-
var DisableRadiusRequest$ = [3, n0, _DRRi,
|
|
1946
|
-
0,
|
|
1947
|
-
[_DI],
|
|
1948
|
-
[0], 1
|
|
1949
|
-
];
|
|
1950
|
-
var DisableRadiusResult$ = [3, n0, _DRRis,
|
|
1951
|
-
0,
|
|
1952
|
-
[],
|
|
1953
|
-
[]
|
|
1954
|
-
];
|
|
1955
|
-
var DisableSsoRequest$ = [3, n0, _DSRi,
|
|
1956
|
-
0,
|
|
1957
|
-
[_DI, _UN, _P],
|
|
1958
|
-
[0, 0, [() => ConnectPassword, 0]], 1
|
|
1959
|
-
];
|
|
1960
|
-
var DisableSsoResult$ = [3, n0, _DSRis,
|
|
1961
|
-
0,
|
|
1962
|
-
[],
|
|
1963
|
-
[]
|
|
1964
|
-
];
|
|
1965
|
-
var DomainController$ = [3, n0, _DCo,
|
|
1966
|
-
0,
|
|
1967
|
-
[_DI, _DCIom, _DIAns, _DIAnsp, _VI, _SIu, _AZv, _S, _SR, _LT, _SLUDTt],
|
|
1968
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4]
|
|
1969
|
-
];
|
|
1970
|
-
var DomainControllerLimitExceededException$ = [-3, n0, _DCLEE,
|
|
1971
|
-
{ [_e]: _c },
|
|
1972
|
-
[_M, _RI],
|
|
1973
|
-
[0, 0]
|
|
1974
|
-
];
|
|
1975
|
-
schema.TypeRegistry.for(n0).registerError(DomainControllerLimitExceededException$, DomainControllerLimitExceededException);
|
|
1976
|
-
var EnableAlreadyInProgressException$ = [-3, n0, _EAIPE,
|
|
1977
|
-
{ [_e]: _c },
|
|
1978
|
-
[_M, _RI],
|
|
1979
|
-
[0, 0]
|
|
1980
|
-
];
|
|
1981
|
-
schema.TypeRegistry.for(n0).registerError(EnableAlreadyInProgressException$, EnableAlreadyInProgressException);
|
|
1982
|
-
var EnableCAEnrollmentPolicyRequest$ = [3, n0, _ECAEPR,
|
|
1983
|
-
0,
|
|
1984
|
-
[_DI, _PCA],
|
|
1985
|
-
[0, 0], 2
|
|
1986
|
-
];
|
|
1987
|
-
var EnableCAEnrollmentPolicyResult$ = [3, n0, _ECAEPRn,
|
|
1988
|
-
0,
|
|
1989
|
-
[],
|
|
1990
|
-
[]
|
|
1991
|
-
];
|
|
1992
|
-
var EnableClientAuthenticationRequest$ = [3, n0, _ECAR,
|
|
1993
|
-
0,
|
|
1994
|
-
[_DI, _Ty],
|
|
1995
|
-
[0, 0], 2
|
|
1996
|
-
];
|
|
1997
|
-
var EnableClientAuthenticationResult$ = [3, n0, _ECARn,
|
|
1998
|
-
0,
|
|
1999
|
-
[],
|
|
2000
|
-
[]
|
|
2001
|
-
];
|
|
2002
|
-
var EnableDirectoryDataAccessRequest$ = [3, n0, _EDDAR,
|
|
2003
|
-
0,
|
|
2004
|
-
[_DI],
|
|
2005
|
-
[0], 1
|
|
2006
|
-
];
|
|
2007
|
-
var EnableDirectoryDataAccessResult$ = [3, n0, _EDDARn,
|
|
2008
|
-
0,
|
|
2009
|
-
[],
|
|
2010
|
-
[]
|
|
2011
|
-
];
|
|
2012
|
-
var EnableLDAPSRequest$ = [3, n0, _ELDAPSR,
|
|
2013
|
-
0,
|
|
2014
|
-
[_DI, _Ty],
|
|
2015
|
-
[0, 0], 2
|
|
2016
|
-
];
|
|
2017
|
-
var EnableLDAPSResult$ = [3, n0, _ELDAPSRn,
|
|
2018
|
-
0,
|
|
2019
|
-
[],
|
|
2020
|
-
[]
|
|
2021
|
-
];
|
|
2022
|
-
var EnableRadiusRequest$ = [3, n0, _ERR,
|
|
2023
|
-
0,
|
|
2024
|
-
[_DI, _RSa],
|
|
2025
|
-
[0, [() => RadiusSettings$, 0]], 2
|
|
2026
|
-
];
|
|
2027
|
-
var EnableRadiusResult$ = [3, n0, _ERRn,
|
|
2028
|
-
0,
|
|
2029
|
-
[],
|
|
2030
|
-
[]
|
|
2031
|
-
];
|
|
2032
|
-
var EnableSsoRequest$ = [3, n0, _ESR,
|
|
2033
|
-
0,
|
|
2034
|
-
[_DI, _UN, _P],
|
|
2035
|
-
[0, 0, [() => ConnectPassword, 0]], 1
|
|
2036
|
-
];
|
|
2037
|
-
var EnableSsoResult$ = [3, n0, _ESRn,
|
|
2038
|
-
0,
|
|
2039
|
-
[],
|
|
2040
|
-
[]
|
|
2041
|
-
];
|
|
2042
|
-
var EntityAlreadyExistsException$ = [-3, n0, _EAEE,
|
|
2043
|
-
{ [_e]: _c },
|
|
2044
|
-
[_M, _RI],
|
|
2045
|
-
[0, 0]
|
|
2046
|
-
];
|
|
2047
|
-
schema.TypeRegistry.for(n0).registerError(EntityAlreadyExistsException$, EntityAlreadyExistsException);
|
|
2048
|
-
var EntityDoesNotExistException$ = [-3, n0, _EDNEE,
|
|
2049
|
-
{ [_e]: _c },
|
|
2050
|
-
[_M, _RI],
|
|
2051
|
-
[0, 0]
|
|
2052
|
-
];
|
|
2053
|
-
schema.TypeRegistry.for(n0).registerError(EntityDoesNotExistException$, EntityDoesNotExistException);
|
|
2054
|
-
var EventTopic$ = [3, n0, _ETv,
|
|
2055
|
-
0,
|
|
2056
|
-
[_DI, _TN, _TA, _CDT, _S],
|
|
2057
|
-
[0, 0, 0, 4, 0]
|
|
2058
|
-
];
|
|
2059
|
-
var GetDirectoryLimitsRequest$ = [3, n0, _GDLR,
|
|
2060
|
-
0,
|
|
2061
|
-
[],
|
|
2062
|
-
[]
|
|
2063
|
-
];
|
|
2064
|
-
var GetDirectoryLimitsResult$ = [3, n0, _GDLRe,
|
|
2065
|
-
0,
|
|
2066
|
-
[_DL],
|
|
2067
|
-
[() => DirectoryLimits$]
|
|
2068
|
-
];
|
|
2069
|
-
var GetSnapshotLimitsRequest$ = [3, n0, _GSLR,
|
|
2070
|
-
0,
|
|
2071
|
-
[_DI],
|
|
2072
|
-
[0], 1
|
|
2073
|
-
];
|
|
2074
|
-
var GetSnapshotLimitsResult$ = [3, n0, _GSLRe,
|
|
2075
|
-
0,
|
|
2076
|
-
[_SL],
|
|
2077
|
-
[() => SnapshotLimits$]
|
|
2078
|
-
];
|
|
2079
|
-
var HybridAdministratorAccountUpdate$ = [3, n0, _HAAU,
|
|
2080
|
-
0,
|
|
2081
|
-
[_SA],
|
|
2082
|
-
[0], 1
|
|
2083
|
-
];
|
|
2084
|
-
var HybridCustomerInstancesSettings$ = [3, n0, _HCIS,
|
|
2085
|
-
0,
|
|
2086
|
-
[_CDI, _II],
|
|
2087
|
-
[64 | 0, 64 | 0], 2
|
|
2088
|
-
];
|
|
2089
|
-
var HybridSettingsDescription$ = [3, n0, _HSD,
|
|
2090
|
-
0,
|
|
2091
|
-
[_SMDIA, _SMII],
|
|
2092
|
-
[64 | 0, 64 | 0]
|
|
2093
|
-
];
|
|
2094
|
-
var HybridUpdateActivities$ = [3, n0, _HUA,
|
|
2095
|
-
0,
|
|
2096
|
-
[_SMI, _HAA],
|
|
2097
|
-
[() => HybridUpdateInfoEntries, () => HybridUpdateInfoEntries]
|
|
2098
|
-
];
|
|
2099
|
-
var HybridUpdateInfoEntry$ = [3, n0, _HUIE,
|
|
2100
|
-
0,
|
|
2101
|
-
[_S, _SR, _IB, _NV, _PV, _ST, _LUDTa, _AI],
|
|
2102
|
-
[0, 0, 0, () => HybridUpdateValue$, () => HybridUpdateValue$, 4, 4, 0]
|
|
2103
|
-
];
|
|
2104
|
-
var HybridUpdateValue$ = [3, n0, _HUV,
|
|
2105
|
-
0,
|
|
2106
|
-
[_II, _DIn],
|
|
2107
|
-
[64 | 0, 64 | 0]
|
|
2108
|
-
];
|
|
2109
|
-
var IncompatibleSettingsException$ = [-3, n0, _ISE,
|
|
2110
|
-
{ [_e]: _c },
|
|
2111
|
-
[_M, _RI],
|
|
2112
|
-
[0, 0]
|
|
2113
|
-
];
|
|
2114
|
-
schema.TypeRegistry.for(n0).registerError(IncompatibleSettingsException$, IncompatibleSettingsException);
|
|
2115
|
-
var InsufficientPermissionsException$ = [-3, n0, _IPE,
|
|
2116
|
-
{ [_e]: _c },
|
|
2117
|
-
[_M, _RI],
|
|
2118
|
-
[0, 0]
|
|
2119
|
-
];
|
|
2120
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientPermissionsException$, InsufficientPermissionsException);
|
|
2121
|
-
var InvalidCertificateException$ = [-3, n0, _ICE,
|
|
2122
|
-
{ [_e]: _c },
|
|
2123
|
-
[_M, _RI],
|
|
2124
|
-
[0, 0]
|
|
2125
|
-
];
|
|
2126
|
-
schema.TypeRegistry.for(n0).registerError(InvalidCertificateException$, InvalidCertificateException);
|
|
2127
|
-
var InvalidClientAuthStatusException$ = [-3, n0, _ICASE,
|
|
2128
|
-
{ [_e]: _c },
|
|
2129
|
-
[_M, _RI],
|
|
2130
|
-
[0, 0]
|
|
2131
|
-
];
|
|
2132
|
-
schema.TypeRegistry.for(n0).registerError(InvalidClientAuthStatusException$, InvalidClientAuthStatusException);
|
|
2133
|
-
var InvalidLDAPSStatusException$ = [-3, n0, _ILDAPSSE,
|
|
2134
|
-
{ [_e]: _c },
|
|
2135
|
-
[_M, _RI],
|
|
2136
|
-
[0, 0]
|
|
2137
|
-
];
|
|
2138
|
-
schema.TypeRegistry.for(n0).registerError(InvalidLDAPSStatusException$, InvalidLDAPSStatusException);
|
|
2139
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
2140
|
-
{ [_e]: _c },
|
|
2141
|
-
[_M, _RI],
|
|
2142
|
-
[0, 0]
|
|
2143
|
-
];
|
|
2144
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
2145
|
-
var InvalidParameterException$ = [-3, n0, _IPEn,
|
|
2146
|
-
{ [_e]: _c },
|
|
2147
|
-
[_M, _RI],
|
|
2148
|
-
[0, 0]
|
|
2149
|
-
];
|
|
2150
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
2151
|
-
var InvalidPasswordException$ = [-3, n0, _IPEnv,
|
|
2152
|
-
{ [_e]: _c },
|
|
2153
|
-
[_M, _RI],
|
|
2154
|
-
[0, 0]
|
|
2155
|
-
];
|
|
2156
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPasswordException$, InvalidPasswordException);
|
|
2157
|
-
var InvalidTargetException$ = [-3, n0, _ITE,
|
|
2158
|
-
{ [_e]: _c },
|
|
2159
|
-
[_M, _RI],
|
|
2160
|
-
[0, 0]
|
|
2161
|
-
];
|
|
2162
|
-
schema.TypeRegistry.for(n0).registerError(InvalidTargetException$, InvalidTargetException);
|
|
2163
|
-
var IpRoute$ = [3, n0, _IRp,
|
|
2164
|
-
0,
|
|
2165
|
-
[_CIi, _CIid, _D],
|
|
2166
|
-
[0, 0, 0]
|
|
2167
|
-
];
|
|
2168
|
-
var IpRouteInfo$ = [3, n0, _IRI,
|
|
2169
|
-
0,
|
|
2170
|
-
[_DI, _CIi, _CIid, _IRSM, _ADT, _IRSR, _D],
|
|
2171
|
-
[0, 0, 0, 0, 4, 0, 0]
|
|
2172
|
-
];
|
|
2173
|
-
var IpRouteLimitExceededException$ = [-3, n0, _IRLEE,
|
|
2174
|
-
{ [_e]: _c },
|
|
2175
|
-
[_M, _RI],
|
|
2176
|
-
[0, 0]
|
|
2177
|
-
];
|
|
2178
|
-
schema.TypeRegistry.for(n0).registerError(IpRouteLimitExceededException$, IpRouteLimitExceededException);
|
|
2179
|
-
var LDAPSSettingInfo$ = [3, n0, _LDAPSSIe,
|
|
2180
|
-
0,
|
|
2181
|
-
[_LDAPSS, _LDAPSSR, _LUDTa],
|
|
2182
|
-
[0, 0, 4]
|
|
2183
|
-
];
|
|
2184
|
-
var ListADAssessmentsRequest$ = [3, n0, _LADAR,
|
|
2185
|
-
0,
|
|
2186
|
-
[_DI, _NTe, _L],
|
|
2187
|
-
[0, 0, 1]
|
|
2188
|
-
];
|
|
2189
|
-
var ListADAssessmentsResult$ = [3, n0, _LADARi,
|
|
2190
|
-
0,
|
|
2191
|
-
[_As, _NTe],
|
|
2192
|
-
[() => Assessments, 0]
|
|
2193
|
-
];
|
|
2194
|
-
var ListCertificatesRequest$ = [3, n0, _LCR,
|
|
2195
|
-
0,
|
|
2196
|
-
[_DI, _NTe, _L],
|
|
2197
|
-
[0, 0, 1], 1
|
|
2198
|
-
];
|
|
2199
|
-
var ListCertificatesResult$ = [3, n0, _LCRi,
|
|
2200
|
-
0,
|
|
2201
|
-
[_NTe, _CIer],
|
|
2202
|
-
[0, () => CertificatesInfo]
|
|
2203
|
-
];
|
|
2204
|
-
var ListIpRoutesRequest$ = [3, n0, _LIRR,
|
|
2205
|
-
0,
|
|
2206
|
-
[_DI, _NTe, _L],
|
|
2207
|
-
[0, 0, 1], 1
|
|
2208
|
-
];
|
|
2209
|
-
var ListIpRoutesResult$ = [3, n0, _LIRRi,
|
|
2210
|
-
0,
|
|
2211
|
-
[_IRIp, _NTe],
|
|
2212
|
-
[() => IpRoutesInfo, 0]
|
|
2213
|
-
];
|
|
2214
|
-
var ListLogSubscriptionsRequest$ = [3, n0, _LLSR,
|
|
2215
|
-
0,
|
|
2216
|
-
[_DI, _NTe, _L],
|
|
2217
|
-
[0, 0, 1]
|
|
2218
|
-
];
|
|
2219
|
-
var ListLogSubscriptionsResult$ = [3, n0, _LLSRi,
|
|
2220
|
-
0,
|
|
2221
|
-
[_LS, _NTe],
|
|
2222
|
-
[() => LogSubscriptions, 0]
|
|
2223
|
-
];
|
|
2224
|
-
var ListSchemaExtensionsRequest$ = [3, n0, _LSER,
|
|
2225
|
-
0,
|
|
2226
|
-
[_DI, _NTe, _L],
|
|
2227
|
-
[0, 0, 1], 1
|
|
2228
|
-
];
|
|
2229
|
-
var ListSchemaExtensionsResult$ = [3, n0, _LSERi,
|
|
2230
|
-
0,
|
|
2231
|
-
[_SEIc, _NTe],
|
|
2232
|
-
[() => SchemaExtensionsInfo, 0]
|
|
2233
|
-
];
|
|
2234
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2235
|
-
0,
|
|
2236
|
-
[_RIe, _NTe, _L],
|
|
2237
|
-
[0, 0, 1], 1
|
|
2238
|
-
];
|
|
2239
|
-
var ListTagsForResourceResult$ = [3, n0, _LTFRRi,
|
|
2240
|
-
0,
|
|
2241
|
-
[_T, _NTe],
|
|
2242
|
-
[() => Tags, 0]
|
|
2243
|
-
];
|
|
2244
|
-
var LogSubscription$ = [3, n0, _LSo,
|
|
2245
|
-
0,
|
|
2246
|
-
[_DI, _LGN, _SCDT],
|
|
2247
|
-
[0, 0, 4]
|
|
2248
|
-
];
|
|
2249
|
-
var NetworkUpdateSettings$ = [3, n0, _NUS,
|
|
2250
|
-
0,
|
|
2251
|
-
[_NT, _CDIV],
|
|
2252
|
-
[0, 64 | 0]
|
|
2253
|
-
];
|
|
2254
|
-
var NoAvailableCertificateException$ = [-3, n0, _NACE,
|
|
2255
|
-
{ [_e]: _c },
|
|
2256
|
-
[_M, _RI],
|
|
2257
|
-
[0, 0]
|
|
2258
|
-
];
|
|
2259
|
-
schema.TypeRegistry.for(n0).registerError(NoAvailableCertificateException$, NoAvailableCertificateException);
|
|
2260
|
-
var OrganizationsException$ = [-3, n0, _OE,
|
|
2261
|
-
{ [_e]: _c },
|
|
2262
|
-
[_M, _RI],
|
|
2263
|
-
[0, 0]
|
|
2264
|
-
];
|
|
2265
|
-
schema.TypeRegistry.for(n0).registerError(OrganizationsException$, OrganizationsException);
|
|
2266
|
-
var OSUpdateSettings$ = [3, n0, _OSUS,
|
|
2267
|
-
0,
|
|
2268
|
-
[_OSV],
|
|
2269
|
-
[0]
|
|
2270
|
-
];
|
|
2271
|
-
var OwnerDirectoryDescription$ = [3, n0, _ODD,
|
|
2272
|
-
0,
|
|
2273
|
-
[_DI, _AIc, _DIA, _DIAn, _VS, _RSa, _RSad, _NT],
|
|
2274
|
-
[0, 0, 64 | 0, 64 | 0, () => DirectoryVpcSettingsDescription$, [() => RadiusSettings$, 0], 0, 0]
|
|
2275
|
-
];
|
|
2276
|
-
var RadiusSettings$ = [3, n0, _RSa,
|
|
2277
|
-
0,
|
|
2278
|
-
[_RSadi, _RSI, _RP, _RTa, _RR, _SSh, _AP, _DLi, _USU],
|
|
2279
|
-
[64 | 0, 64 | 0, 1, 1, 1, [() => RadiusSharedSecret, 0], 0, 0, 2]
|
|
2280
|
-
];
|
|
2281
|
-
var RegionDescription$ = [3, n0, _RDe,
|
|
2282
|
-
0,
|
|
2283
|
-
[_DI, _RN, _RTe, _S, _VS, _DNODC, _LT, _SLUDTt, _LUDTa],
|
|
2284
|
-
[0, 0, 0, 0, () => DirectoryVpcSettings$, 1, 4, 4, 4]
|
|
2285
|
-
];
|
|
2286
|
-
var RegionLimitExceededException$ = [-3, n0, _RLEE,
|
|
2287
|
-
{ [_e]: _c },
|
|
2288
|
-
[_M, _RI],
|
|
2289
|
-
[0, 0]
|
|
2290
|
-
];
|
|
2291
|
-
schema.TypeRegistry.for(n0).registerError(RegionLimitExceededException$, RegionLimitExceededException);
|
|
2292
|
-
var RegionsInfo$ = [3, n0, _RIeg,
|
|
2293
|
-
0,
|
|
2294
|
-
[_PR, _ARd],
|
|
2295
|
-
[0, 64 | 0]
|
|
2296
|
-
];
|
|
2297
|
-
var RegisterCertificateRequest$ = [3, n0, _RCR,
|
|
2298
|
-
0,
|
|
2299
|
-
[_DI, _CD, _Ty, _CCAS],
|
|
2300
|
-
[0, 0, 0, () => ClientCertAuthSettings$], 2
|
|
2301
|
-
];
|
|
2302
|
-
var RegisterCertificateResult$ = [3, n0, _RCRe,
|
|
2303
|
-
0,
|
|
2304
|
-
[_CI],
|
|
2305
|
-
[0]
|
|
2306
|
-
];
|
|
2307
|
-
var RegisterEventTopicRequest$ = [3, n0, _RETR,
|
|
2308
|
-
0,
|
|
2309
|
-
[_DI, _TN],
|
|
2310
|
-
[0, 0], 2
|
|
2311
|
-
];
|
|
2312
|
-
var RegisterEventTopicResult$ = [3, n0, _RETRe,
|
|
2313
|
-
0,
|
|
2314
|
-
[],
|
|
2315
|
-
[]
|
|
2316
|
-
];
|
|
2317
|
-
var RejectSharedDirectoryRequest$ = [3, n0, _RSDR,
|
|
2318
|
-
0,
|
|
2319
|
-
[_SDI],
|
|
2320
|
-
[0], 1
|
|
2321
|
-
];
|
|
2322
|
-
var RejectSharedDirectoryResult$ = [3, n0, _RSDRe,
|
|
2323
|
-
0,
|
|
2324
|
-
[_SDI],
|
|
2325
|
-
[0]
|
|
2326
|
-
];
|
|
2327
|
-
var RemoveIpRoutesRequest$ = [3, n0, _RIRR,
|
|
2328
|
-
0,
|
|
2329
|
-
[_DI, _CIidr, _CIidrp],
|
|
2330
|
-
[0, 64 | 0, 64 | 0], 1
|
|
2331
|
-
];
|
|
2332
|
-
var RemoveIpRoutesResult$ = [3, n0, _RIRRe,
|
|
2333
|
-
0,
|
|
2334
|
-
[],
|
|
2335
|
-
[]
|
|
2336
|
-
];
|
|
2337
|
-
var RemoveRegionRequest$ = [3, n0, _RRR,
|
|
2338
|
-
0,
|
|
2339
|
-
[_DI],
|
|
2340
|
-
[0], 1
|
|
2341
|
-
];
|
|
2342
|
-
var RemoveRegionResult$ = [3, n0, _RRRe,
|
|
2343
|
-
0,
|
|
2344
|
-
[],
|
|
2345
|
-
[]
|
|
2346
|
-
];
|
|
2347
|
-
var RemoveTagsFromResourceRequest$ = [3, n0, _RTFRR,
|
|
2348
|
-
0,
|
|
2349
|
-
[_RIe, _TK],
|
|
2350
|
-
[0, 64 | 0], 2
|
|
2351
|
-
];
|
|
2352
|
-
var RemoveTagsFromResourceResult$ = [3, n0, _RTFRRe,
|
|
2353
|
-
0,
|
|
2354
|
-
[],
|
|
2355
|
-
[]
|
|
2356
|
-
];
|
|
2357
|
-
var ResetUserPasswordRequest$ = [3, n0, _RUPR,
|
|
2358
|
-
0,
|
|
2359
|
-
[_DI, _UN, _NP],
|
|
2360
|
-
[0, 0, [() => UserPassword, 0]], 3
|
|
2361
|
-
];
|
|
2362
|
-
var ResetUserPasswordResult$ = [3, n0, _RUPRe,
|
|
2363
|
-
0,
|
|
2364
|
-
[],
|
|
2365
|
-
[]
|
|
2366
|
-
];
|
|
2367
|
-
var RestoreFromSnapshotRequest$ = [3, n0, _RFSR,
|
|
2368
|
-
0,
|
|
2369
|
-
[_SIn],
|
|
2370
|
-
[0], 1
|
|
2371
|
-
];
|
|
2372
|
-
var RestoreFromSnapshotResult$ = [3, n0, _RFSRe,
|
|
2373
|
-
0,
|
|
2374
|
-
[],
|
|
2375
|
-
[]
|
|
2376
|
-
];
|
|
2377
|
-
var SchemaExtensionInfo$ = [3, n0, _SEIch,
|
|
2378
|
-
0,
|
|
2379
|
-
[_DI, _SEI, _D, _SES, _SESR, _SDT, _EDTn],
|
|
2380
|
-
[0, 0, 0, 0, 0, 4, 4]
|
|
2381
|
-
];
|
|
2382
|
-
var ServiceException$ = [-3, n0, _SEe,
|
|
2383
|
-
{ [_e]: _s },
|
|
2384
|
-
[_M, _RI],
|
|
2385
|
-
[0, 0]
|
|
2386
|
-
];
|
|
2387
|
-
schema.TypeRegistry.for(n0).registerError(ServiceException$, ServiceException);
|
|
2388
|
-
var Setting$ = [3, n0, _Se,
|
|
2389
|
-
0,
|
|
2390
|
-
[_Na, _Val],
|
|
2391
|
-
[0, 0], 2
|
|
2392
|
-
];
|
|
2393
|
-
var SettingEntry$ = [3, n0, _SEet,
|
|
2394
|
-
0,
|
|
2395
|
-
[_Ty, _Na, _AVl, _AVp, _RV, _RSe, _RDS, _RSM, _LUDTa, _LRDT, _DT],
|
|
2396
|
-
[0, 0, 0, 0, 0, 0, 128 | 0, 0, 4, 4, 0]
|
|
2397
|
-
];
|
|
2398
|
-
var SharedDirectory$ = [3, n0, _SD,
|
|
2399
|
-
0,
|
|
2400
|
-
[_OAI, _ODI, _SM, _SAI, _SDI, _SS, _SNh, _CDT, _LUDTa],
|
|
2401
|
-
[0, 0, 0, 0, 0, 0, [() => Notes, 0], 4, 4]
|
|
2402
|
-
];
|
|
2403
|
-
var ShareDirectoryRequest$ = [3, n0, _SDR,
|
|
2404
|
-
0,
|
|
2405
|
-
[_DI, _STh, _SM, _SNh],
|
|
2406
|
-
[0, () => ShareTarget$, 0, [() => Notes, 0]], 3
|
|
2407
|
-
];
|
|
2408
|
-
var ShareDirectoryResult$ = [3, n0, _SDRh,
|
|
2409
|
-
0,
|
|
2410
|
-
[_SDI],
|
|
2411
|
-
[0]
|
|
2412
|
-
];
|
|
2413
|
-
var ShareLimitExceededException$ = [-3, n0, _SLEE,
|
|
2414
|
-
{ [_e]: _c },
|
|
2415
|
-
[_M, _RI],
|
|
2416
|
-
[0, 0]
|
|
2417
|
-
];
|
|
2418
|
-
schema.TypeRegistry.for(n0).registerError(ShareLimitExceededException$, ShareLimitExceededException);
|
|
2419
|
-
var ShareTarget$ = [3, n0, _STh,
|
|
2420
|
-
0,
|
|
2421
|
-
[_I, _Ty],
|
|
2422
|
-
[0, 0], 2
|
|
2423
|
-
];
|
|
2424
|
-
var Snapshot$ = [3, n0, _Sna,
|
|
2425
|
-
0,
|
|
2426
|
-
[_DI, _SIn, _Ty, _Na, _S, _ST],
|
|
2427
|
-
[0, 0, 0, 0, 0, 4]
|
|
2428
|
-
];
|
|
2429
|
-
var SnapshotLimitExceededException$ = [-3, n0, _SLEEn,
|
|
2430
|
-
{ [_e]: _c },
|
|
2431
|
-
[_M, _RI],
|
|
2432
|
-
[0, 0]
|
|
2433
|
-
];
|
|
2434
|
-
schema.TypeRegistry.for(n0).registerError(SnapshotLimitExceededException$, SnapshotLimitExceededException);
|
|
2435
|
-
var SnapshotLimits$ = [3, n0, _SL,
|
|
2436
|
-
0,
|
|
2437
|
-
[_MSL, _MSCC, _MSLR],
|
|
2438
|
-
[1, 1, 2]
|
|
2439
|
-
];
|
|
2440
|
-
var StartADAssessmentRequest$ = [3, n0, _SADAR,
|
|
2441
|
-
0,
|
|
2442
|
-
[_AC, _DI],
|
|
2443
|
-
[() => AssessmentConfiguration$, 0]
|
|
2444
|
-
];
|
|
2445
|
-
var StartADAssessmentResult$ = [3, n0, _SADARt,
|
|
2446
|
-
0,
|
|
2447
|
-
[_AI],
|
|
2448
|
-
[0]
|
|
2449
|
-
];
|
|
2450
|
-
var StartSchemaExtensionRequest$ = [3, n0, _SSER,
|
|
2451
|
-
0,
|
|
2452
|
-
[_DI, _CSBSE, _LC, _D],
|
|
2453
|
-
[0, 2, 0, 0], 4
|
|
2454
|
-
];
|
|
2455
|
-
var StartSchemaExtensionResult$ = [3, n0, _SSERt,
|
|
2456
|
-
0,
|
|
2457
|
-
[_SEI],
|
|
2458
|
-
[0]
|
|
2459
|
-
];
|
|
2460
|
-
var Tag$ = [3, n0, _Ta,
|
|
2461
|
-
0,
|
|
2462
|
-
[_K, _Val],
|
|
2463
|
-
[0, 0], 2
|
|
2464
|
-
];
|
|
2465
|
-
var TagLimitExceededException$ = [-3, n0, _TLEE,
|
|
2466
|
-
{ [_e]: _c },
|
|
2467
|
-
[_M, _RI],
|
|
2468
|
-
[0, 0]
|
|
2469
|
-
];
|
|
2470
|
-
schema.TypeRegistry.for(n0).registerError(TagLimitExceededException$, TagLimitExceededException);
|
|
2471
|
-
var Trust$ = [3, n0, _Tru,
|
|
2472
|
-
0,
|
|
2473
|
-
[_DI, _TI, _RDN, _TT, _TD, _TS, _CDT, _LUDTa, _SLUDTta, _TSR, _SAe],
|
|
2474
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0]
|
|
2475
|
-
];
|
|
2476
|
-
var UnshareDirectoryRequest$ = [3, n0, _UDR,
|
|
2477
|
-
0,
|
|
2478
|
-
[_DI, _UTn],
|
|
2479
|
-
[0, () => UnshareTarget$], 2
|
|
2480
|
-
];
|
|
2481
|
-
var UnshareDirectoryResult$ = [3, n0, _UDRn,
|
|
2482
|
-
0,
|
|
2483
|
-
[_SDI],
|
|
2484
|
-
[0]
|
|
2485
|
-
];
|
|
2486
|
-
var UnshareTarget$ = [3, n0, _UTn,
|
|
2487
|
-
0,
|
|
2488
|
-
[_I, _Ty],
|
|
2489
|
-
[0, 0], 2
|
|
2490
|
-
];
|
|
2491
|
-
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
2492
|
-
{ [_e]: _c },
|
|
2493
|
-
[_M, _RI],
|
|
2494
|
-
[0, 0]
|
|
2495
|
-
];
|
|
2496
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
2497
|
-
var UnsupportedSettingsException$ = [-3, n0, _USE,
|
|
2498
|
-
{ [_e]: _c },
|
|
2499
|
-
[_M, _RI],
|
|
2500
|
-
[0, 0]
|
|
2501
|
-
];
|
|
2502
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedSettingsException$, UnsupportedSettingsException);
|
|
2503
|
-
var UpdateConditionalForwarderRequest$ = [3, n0, _UCFR,
|
|
2504
|
-
0,
|
|
2505
|
-
[_DI, _RDN, _DIA, _DIAn],
|
|
2506
|
-
[0, 0, 64 | 0, 64 | 0], 2
|
|
2507
|
-
];
|
|
2508
|
-
var UpdateConditionalForwarderResult$ = [3, n0, _UCFRp,
|
|
2509
|
-
0,
|
|
2510
|
-
[],
|
|
2511
|
-
[]
|
|
2512
|
-
];
|
|
2513
|
-
var UpdateDirectorySetupRequest$ = [3, n0, _UDSR,
|
|
2514
|
-
0,
|
|
2515
|
-
[_DI, _UT, _OSUS, _DSUS, _NUS, _CSBU],
|
|
2516
|
-
[0, 0, () => OSUpdateSettings$, () => DirectorySizeUpdateSettings$, () => NetworkUpdateSettings$, 2], 2
|
|
2517
|
-
];
|
|
2518
|
-
var UpdateDirectorySetupResult$ = [3, n0, _UDSRp,
|
|
2519
|
-
0,
|
|
2520
|
-
[],
|
|
2521
|
-
[]
|
|
2522
|
-
];
|
|
2523
|
-
var UpdateHybridADRequest$ = [3, n0, _UHADR,
|
|
2524
|
-
0,
|
|
2525
|
-
[_DI, _HAAU, _SMIS],
|
|
2526
|
-
[0, () => HybridAdministratorAccountUpdate$, () => HybridCustomerInstancesSettings$], 1
|
|
2527
|
-
];
|
|
2528
|
-
var UpdateHybridADResult$ = [3, n0, _UHADRp,
|
|
2529
|
-
0,
|
|
2530
|
-
[_DI, _AI],
|
|
2531
|
-
[0, 0]
|
|
2532
|
-
];
|
|
2533
|
-
var UpdateInfoEntry$ = [3, n0, _UIE,
|
|
2534
|
-
0,
|
|
2535
|
-
[_R, _S, _SR, _IB, _NV, _PV, _ST, _LUDTa],
|
|
2536
|
-
[0, 0, 0, 0, () => UpdateValue$, () => UpdateValue$, 4, 4]
|
|
2537
|
-
];
|
|
2538
|
-
var UpdateNumberOfDomainControllersRequest$ = [3, n0, _UNODCR,
|
|
2539
|
-
0,
|
|
2540
|
-
[_DI, _DNe],
|
|
2541
|
-
[0, 1], 2
|
|
2542
|
-
];
|
|
2543
|
-
var UpdateNumberOfDomainControllersResult$ = [3, n0, _UNODCRp,
|
|
2544
|
-
0,
|
|
2545
|
-
[],
|
|
2546
|
-
[]
|
|
2547
|
-
];
|
|
2548
|
-
var UpdateRadiusRequest$ = [3, n0, _URR,
|
|
2549
|
-
0,
|
|
2550
|
-
[_DI, _RSa],
|
|
2551
|
-
[0, [() => RadiusSettings$, 0]], 2
|
|
2552
|
-
];
|
|
2553
|
-
var UpdateRadiusResult$ = [3, n0, _URRp,
|
|
2554
|
-
0,
|
|
2555
|
-
[],
|
|
2556
|
-
[]
|
|
2557
|
-
];
|
|
2558
|
-
var UpdateSettingsRequest$ = [3, n0, _USR,
|
|
2559
|
-
0,
|
|
2560
|
-
[_DI, _Set],
|
|
2561
|
-
[0, () => Settings], 2
|
|
2562
|
-
];
|
|
2563
|
-
var UpdateSettingsResult$ = [3, n0, _USRp,
|
|
2564
|
-
0,
|
|
2565
|
-
[_DI],
|
|
2566
|
-
[0]
|
|
2567
|
-
];
|
|
2568
|
-
var UpdateTrustRequest$ = [3, n0, _UTR,
|
|
2569
|
-
0,
|
|
2570
|
-
[_TI, _SAe],
|
|
2571
|
-
[0, 0], 1
|
|
2572
|
-
];
|
|
2573
|
-
var UpdateTrustResult$ = [3, n0, _UTRp,
|
|
2574
|
-
0,
|
|
2575
|
-
[_RI, _TI],
|
|
2576
|
-
[0, 0]
|
|
2577
|
-
];
|
|
2578
|
-
var UpdateValue$ = [3, n0, _UV,
|
|
2579
|
-
0,
|
|
2580
|
-
[_OSUS],
|
|
2581
|
-
[() => OSUpdateSettings$]
|
|
2582
|
-
];
|
|
2583
|
-
var UserDoesNotExistException$ = [-3, n0, _UDNEE,
|
|
2584
|
-
{ [_e]: _c },
|
|
2585
|
-
[_M, _RI],
|
|
2586
|
-
[0, 0]
|
|
2587
|
-
];
|
|
2588
|
-
schema.TypeRegistry.for(n0).registerError(UserDoesNotExistException$, UserDoesNotExistException);
|
|
2589
|
-
var VerifyTrustRequest$ = [3, n0, _VTR,
|
|
2590
|
-
0,
|
|
2591
|
-
[_TI],
|
|
2592
|
-
[0], 1
|
|
2593
|
-
];
|
|
2594
|
-
var VerifyTrustResult$ = [3, n0, _VTRe,
|
|
2595
|
-
0,
|
|
2596
|
-
[_TI],
|
|
2597
|
-
[0]
|
|
2598
|
-
];
|
|
2599
|
-
var DirectoryServiceServiceException$ = [-3, _sm, "DirectoryServiceServiceException", 0, [], []];
|
|
2600
|
-
schema.TypeRegistry.for(_sm).registerError(DirectoryServiceServiceException$, DirectoryServiceServiceException);
|
|
2601
|
-
var AssessmentReports = [1, n0, _ARs,
|
|
2602
|
-
0, () => AssessmentReport$
|
|
2603
|
-
];
|
|
2604
|
-
var Assessments = [1, n0, _As,
|
|
2605
|
-
0, () => AssessmentSummary$
|
|
2606
|
-
];
|
|
2607
|
-
var AssessmentValidations = [1, n0, _AVs,
|
|
2608
|
-
0, () => AssessmentValidation$
|
|
2609
|
-
];
|
|
2610
|
-
var Attributes = [1, n0, _Att,
|
|
2611
|
-
0, () => Attribute$
|
|
2612
|
-
];
|
|
2613
|
-
var CertificatesInfo = [1, n0, _CIer,
|
|
2614
|
-
0, () => CertificateInfo$
|
|
2615
|
-
];
|
|
2616
|
-
var ClientAuthenticationSettingsInfo = [1, n0, _CASIl,
|
|
2617
|
-
0, () => ClientAuthenticationSettingInfo$
|
|
2618
|
-
];
|
|
2619
|
-
var ConditionalForwarders = [1, n0, _CFo,
|
|
2620
|
-
0, () => ConditionalForwarder$
|
|
2621
|
-
];
|
|
2622
|
-
var DirectoryDescriptions = [1, n0, _DD,
|
|
2623
|
-
0, [() => DirectoryDescription$,
|
|
2624
|
-
0]
|
|
2625
|
-
];
|
|
2626
|
-
var DomainControllers = [1, n0, _DC,
|
|
2627
|
-
0, () => DomainController$
|
|
2628
|
-
];
|
|
2629
|
-
var EventTopics = [1, n0, _ET,
|
|
2630
|
-
0, () => EventTopic$
|
|
2631
|
-
];
|
|
2632
|
-
var HybridUpdateInfoEntries = [1, n0, _HUIEy,
|
|
2633
|
-
0, () => HybridUpdateInfoEntry$
|
|
2634
|
-
];
|
|
2635
|
-
var IpRoutes = [1, n0, _IR,
|
|
2636
|
-
0, () => IpRoute$
|
|
2637
|
-
];
|
|
2638
|
-
var IpRoutesInfo = [1, n0, _IRIp,
|
|
2639
|
-
0, () => IpRouteInfo$
|
|
2640
|
-
];
|
|
2641
|
-
var LDAPSSettingsInfo = [1, n0, _LDAPSSI,
|
|
2642
|
-
0, () => LDAPSSettingInfo$
|
|
2643
|
-
];
|
|
2644
|
-
var LogSubscriptions = [1, n0, _LS,
|
|
2645
|
-
0, () => LogSubscription$
|
|
2646
|
-
];
|
|
2647
|
-
var RegionsDescription = [1, n0, _RD,
|
|
2648
|
-
0, () => RegionDescription$
|
|
2649
|
-
];
|
|
2650
|
-
var SchemaExtensionsInfo = [1, n0, _SEIc,
|
|
2651
|
-
0, () => SchemaExtensionInfo$
|
|
2652
|
-
];
|
|
2653
|
-
var SettingEntries = [1, n0, _SE,
|
|
2654
|
-
0, () => SettingEntry$
|
|
2655
|
-
];
|
|
2656
|
-
var Settings = [1, n0, _Set,
|
|
2657
|
-
0, () => Setting$
|
|
2658
|
-
];
|
|
2659
|
-
var SharedDirectories = [1, n0, _SDh,
|
|
2660
|
-
0, [() => SharedDirectory$,
|
|
2661
|
-
0]
|
|
2662
|
-
];
|
|
2663
|
-
var Snapshots = [1, n0, _Sn,
|
|
2664
|
-
0, () => Snapshot$
|
|
2665
|
-
];
|
|
2666
|
-
var Tags = [1, n0, _T,
|
|
2667
|
-
0, () => Tag$
|
|
2668
|
-
];
|
|
2669
|
-
var Trusts = [1, n0, _Tr,
|
|
2670
|
-
0, () => Trust$
|
|
2671
|
-
];
|
|
2672
|
-
var UpdateActivities = [1, n0, _UA,
|
|
2673
|
-
0, () => UpdateInfoEntry$
|
|
2674
|
-
];
|
|
2675
|
-
var AcceptSharedDirectory$ = [9, n0, _ASD,
|
|
2676
|
-
0, () => AcceptSharedDirectoryRequest$, () => AcceptSharedDirectoryResult$
|
|
2677
|
-
];
|
|
2678
|
-
var AddIpRoutes$ = [9, n0, _AIR,
|
|
2679
|
-
0, () => AddIpRoutesRequest$, () => AddIpRoutesResult$
|
|
2680
|
-
];
|
|
2681
|
-
var AddRegion$ = [9, n0, _ARdd,
|
|
2682
|
-
0, () => AddRegionRequest$, () => AddRegionResult$
|
|
2683
|
-
];
|
|
2684
|
-
var AddTagsToResource$ = [9, n0, _ATTR,
|
|
2685
|
-
0, () => AddTagsToResourceRequest$, () => AddTagsToResourceResult$
|
|
2686
|
-
];
|
|
2687
|
-
var CancelSchemaExtension$ = [9, n0, _CSE,
|
|
2688
|
-
0, () => CancelSchemaExtensionRequest$, () => CancelSchemaExtensionResult$
|
|
2689
|
-
];
|
|
2690
|
-
var ConnectDirectory$ = [9, n0, _CDo,
|
|
2691
|
-
0, () => ConnectDirectoryRequest$, () => ConnectDirectoryResult$
|
|
2692
|
-
];
|
|
2693
|
-
var CreateAlias$ = [9, n0, _CAr,
|
|
2694
|
-
0, () => CreateAliasRequest$, () => CreateAliasResult$
|
|
2695
|
-
];
|
|
2696
|
-
var CreateComputer$ = [9, n0, _CC,
|
|
2697
|
-
0, () => CreateComputerRequest$, () => CreateComputerResult$
|
|
2698
|
-
];
|
|
2699
|
-
var CreateConditionalForwarder$ = [9, n0, _CCF,
|
|
2700
|
-
0, () => CreateConditionalForwarderRequest$, () => CreateConditionalForwarderResult$
|
|
2701
|
-
];
|
|
2702
|
-
var CreateDirectory$ = [9, n0, _CDr,
|
|
2703
|
-
0, () => CreateDirectoryRequest$, () => CreateDirectoryResult$
|
|
2704
|
-
];
|
|
2705
|
-
var CreateHybridAD$ = [9, n0, _CHAD,
|
|
2706
|
-
0, () => CreateHybridADRequest$, () => CreateHybridADResult$
|
|
2707
|
-
];
|
|
2708
|
-
var CreateLogSubscription$ = [9, n0, _CLS,
|
|
2709
|
-
0, () => CreateLogSubscriptionRequest$, () => CreateLogSubscriptionResult$
|
|
2710
|
-
];
|
|
2711
|
-
var CreateMicrosoftAD$ = [9, n0, _CMAD,
|
|
2712
|
-
0, () => CreateMicrosoftADRequest$, () => CreateMicrosoftADResult$
|
|
2713
|
-
];
|
|
2714
|
-
var CreateSnapshot$ = [9, n0, _CSr,
|
|
2715
|
-
0, () => CreateSnapshotRequest$, () => CreateSnapshotResult$
|
|
2716
|
-
];
|
|
2717
|
-
var CreateTrust$ = [9, n0, _CT,
|
|
2718
|
-
0, () => CreateTrustRequest$, () => CreateTrustResult$
|
|
2719
|
-
];
|
|
2720
|
-
var DeleteADAssessment$ = [9, n0, _DADA,
|
|
2721
|
-
0, () => DeleteADAssessmentRequest$, () => DeleteADAssessmentResult$
|
|
2722
|
-
];
|
|
2723
|
-
var DeleteConditionalForwarder$ = [9, n0, _DCF,
|
|
2724
|
-
0, () => DeleteConditionalForwarderRequest$, () => DeleteConditionalForwarderResult$
|
|
2725
|
-
];
|
|
2726
|
-
var DeleteDirectory$ = [9, n0, _DDe,
|
|
2727
|
-
0, () => DeleteDirectoryRequest$, () => DeleteDirectoryResult$
|
|
2728
|
-
];
|
|
2729
|
-
var DeleteLogSubscription$ = [9, n0, _DLS,
|
|
2730
|
-
0, () => DeleteLogSubscriptionRequest$, () => DeleteLogSubscriptionResult$
|
|
2731
|
-
];
|
|
2732
|
-
var DeleteSnapshot$ = [9, n0, _DSe,
|
|
2733
|
-
0, () => DeleteSnapshotRequest$, () => DeleteSnapshotResult$
|
|
2734
|
-
];
|
|
2735
|
-
var DeleteTrust$ = [9, n0, _DTe,
|
|
2736
|
-
0, () => DeleteTrustRequest$, () => DeleteTrustResult$
|
|
2737
|
-
];
|
|
2738
|
-
var DeregisterCertificate$ = [9, n0, _DCe,
|
|
2739
|
-
0, () => DeregisterCertificateRequest$, () => DeregisterCertificateResult$
|
|
2740
|
-
];
|
|
2741
|
-
var DeregisterEventTopic$ = [9, n0, _DET,
|
|
2742
|
-
0, () => DeregisterEventTopicRequest$, () => DeregisterEventTopicResult$
|
|
2743
|
-
];
|
|
2744
|
-
var DescribeADAssessment$ = [9, n0, _DADAe,
|
|
2745
|
-
0, () => DescribeADAssessmentRequest$, () => DescribeADAssessmentResult$
|
|
2746
|
-
];
|
|
2747
|
-
var DescribeCAEnrollmentPolicy$ = [9, n0, _DCAEP,
|
|
2748
|
-
0, () => DescribeCAEnrollmentPolicyRequest$, () => DescribeCAEnrollmentPolicyResult$
|
|
2749
|
-
];
|
|
2750
|
-
var DescribeCertificate$ = [9, n0, _DCes,
|
|
2751
|
-
0, () => DescribeCertificateRequest$, () => DescribeCertificateResult$
|
|
2752
|
-
];
|
|
2753
|
-
var DescribeClientAuthenticationSettings$ = [9, n0, _DCAS,
|
|
2754
|
-
0, () => DescribeClientAuthenticationSettingsRequest$, () => DescribeClientAuthenticationSettingsResult$
|
|
2755
|
-
];
|
|
2756
|
-
var DescribeConditionalForwarders$ = [9, n0, _DCFe,
|
|
2757
|
-
0, () => DescribeConditionalForwardersRequest$, () => DescribeConditionalForwardersResult$
|
|
2758
|
-
];
|
|
2759
|
-
var DescribeDirectories$ = [9, n0, _DDes,
|
|
2760
|
-
0, () => DescribeDirectoriesRequest$, () => DescribeDirectoriesResult$
|
|
2761
|
-
];
|
|
2762
|
-
var DescribeDirectoryDataAccess$ = [9, n0, _DDDA,
|
|
2763
|
-
0, () => DescribeDirectoryDataAccessRequest$, () => DescribeDirectoryDataAccessResult$
|
|
2764
|
-
];
|
|
2765
|
-
var DescribeDomainControllers$ = [9, n0, _DDC,
|
|
2766
|
-
0, () => DescribeDomainControllersRequest$, () => DescribeDomainControllersResult$
|
|
2767
|
-
];
|
|
2768
|
-
var DescribeEventTopics$ = [9, n0, _DETe,
|
|
2769
|
-
0, () => DescribeEventTopicsRequest$, () => DescribeEventTopicsResult$
|
|
2770
|
-
];
|
|
2771
|
-
var DescribeHybridADUpdate$ = [9, n0, _DHADU,
|
|
2772
|
-
0, () => DescribeHybridADUpdateRequest$, () => DescribeHybridADUpdateResult$
|
|
2773
|
-
];
|
|
2774
|
-
var DescribeLDAPSSettings$ = [9, n0, _DLDAPSS,
|
|
2775
|
-
0, () => DescribeLDAPSSettingsRequest$, () => DescribeLDAPSSettingsResult$
|
|
2776
|
-
];
|
|
2777
|
-
var DescribeRegions$ = [9, n0, _DR,
|
|
2778
|
-
0, () => DescribeRegionsRequest$, () => DescribeRegionsResult$
|
|
2779
|
-
];
|
|
2780
|
-
var DescribeSettings$ = [9, n0, _DSes,
|
|
2781
|
-
0, () => DescribeSettingsRequest$, () => DescribeSettingsResult$
|
|
2782
|
-
];
|
|
2783
|
-
var DescribeSharedDirectories$ = [9, n0, _DSD,
|
|
2784
|
-
0, () => DescribeSharedDirectoriesRequest$, () => DescribeSharedDirectoriesResult$
|
|
2785
|
-
];
|
|
2786
|
-
var DescribeSnapshots$ = [9, n0, _DSesc,
|
|
2787
|
-
0, () => DescribeSnapshotsRequest$, () => DescribeSnapshotsResult$
|
|
2788
|
-
];
|
|
2789
|
-
var DescribeTrusts$ = [9, n0, _DTes,
|
|
2790
|
-
0, () => DescribeTrustsRequest$, () => DescribeTrustsResult$
|
|
2791
|
-
];
|
|
2792
|
-
var DescribeUpdateDirectory$ = [9, n0, _DUD,
|
|
2793
|
-
0, () => DescribeUpdateDirectoryRequest$, () => DescribeUpdateDirectoryResult$
|
|
2794
|
-
];
|
|
2795
|
-
var DisableCAEnrollmentPolicy$ = [9, n0, _DCAEPi,
|
|
2796
|
-
0, () => DisableCAEnrollmentPolicyRequest$, () => DisableCAEnrollmentPolicyResult$
|
|
2797
|
-
];
|
|
2798
|
-
var DisableClientAuthentication$ = [9, n0, _DCA,
|
|
2799
|
-
0, () => DisableClientAuthenticationRequest$, () => DisableClientAuthenticationResult$
|
|
2800
|
-
];
|
|
2801
|
-
var DisableDirectoryDataAccess$ = [9, n0, _DDDAi,
|
|
2802
|
-
0, () => DisableDirectoryDataAccessRequest$, () => DisableDirectoryDataAccessResult$
|
|
2803
|
-
];
|
|
2804
|
-
var DisableLDAPS$ = [9, n0, _DLDAPS,
|
|
2805
|
-
0, () => DisableLDAPSRequest$, () => DisableLDAPSResult$
|
|
2806
|
-
];
|
|
2807
|
-
var DisableRadius$ = [9, n0, _DRi,
|
|
2808
|
-
0, () => DisableRadiusRequest$, () => DisableRadiusResult$
|
|
2809
|
-
];
|
|
2810
|
-
var DisableSso$ = [9, n0, _DSi,
|
|
2811
|
-
0, () => DisableSsoRequest$, () => DisableSsoResult$
|
|
2812
|
-
];
|
|
2813
|
-
var EnableCAEnrollmentPolicy$ = [9, n0, _ECAEP,
|
|
2814
|
-
0, () => EnableCAEnrollmentPolicyRequest$, () => EnableCAEnrollmentPolicyResult$
|
|
2815
|
-
];
|
|
2816
|
-
var EnableClientAuthentication$ = [9, n0, _ECA,
|
|
2817
|
-
0, () => EnableClientAuthenticationRequest$, () => EnableClientAuthenticationResult$
|
|
2818
|
-
];
|
|
2819
|
-
var EnableDirectoryDataAccess$ = [9, n0, _EDDA,
|
|
2820
|
-
0, () => EnableDirectoryDataAccessRequest$, () => EnableDirectoryDataAccessResult$
|
|
2821
|
-
];
|
|
2822
|
-
var EnableLDAPS$ = [9, n0, _ELDAPS,
|
|
2823
|
-
0, () => EnableLDAPSRequest$, () => EnableLDAPSResult$
|
|
2824
|
-
];
|
|
2825
|
-
var EnableRadius$ = [9, n0, _ER,
|
|
2826
|
-
0, () => EnableRadiusRequest$, () => EnableRadiusResult$
|
|
2827
|
-
];
|
|
2828
|
-
var EnableSso$ = [9, n0, _ES,
|
|
2829
|
-
0, () => EnableSsoRequest$, () => EnableSsoResult$
|
|
2830
|
-
];
|
|
2831
|
-
var GetDirectoryLimits$ = [9, n0, _GDL,
|
|
2832
|
-
0, () => GetDirectoryLimitsRequest$, () => GetDirectoryLimitsResult$
|
|
2833
|
-
];
|
|
2834
|
-
var GetSnapshotLimits$ = [9, n0, _GSL,
|
|
2835
|
-
0, () => GetSnapshotLimitsRequest$, () => GetSnapshotLimitsResult$
|
|
2836
|
-
];
|
|
2837
|
-
var ListADAssessments$ = [9, n0, _LADA,
|
|
2838
|
-
0, () => ListADAssessmentsRequest$, () => ListADAssessmentsResult$
|
|
2839
|
-
];
|
|
2840
|
-
var ListCertificates$ = [9, n0, _LCi,
|
|
2841
|
-
0, () => ListCertificatesRequest$, () => ListCertificatesResult$
|
|
2842
|
-
];
|
|
2843
|
-
var ListIpRoutes$ = [9, n0, _LIR,
|
|
2844
|
-
0, () => ListIpRoutesRequest$, () => ListIpRoutesResult$
|
|
2845
|
-
];
|
|
2846
|
-
var ListLogSubscriptions$ = [9, n0, _LLS,
|
|
2847
|
-
0, () => ListLogSubscriptionsRequest$, () => ListLogSubscriptionsResult$
|
|
2848
|
-
];
|
|
2849
|
-
var ListSchemaExtensions$ = [9, n0, _LSE,
|
|
2850
|
-
0, () => ListSchemaExtensionsRequest$, () => ListSchemaExtensionsResult$
|
|
2851
|
-
];
|
|
2852
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2853
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResult$
|
|
2854
|
-
];
|
|
2855
|
-
var RegisterCertificate$ = [9, n0, _RC,
|
|
2856
|
-
0, () => RegisterCertificateRequest$, () => RegisterCertificateResult$
|
|
2857
|
-
];
|
|
2858
|
-
var RegisterEventTopic$ = [9, n0, _RET,
|
|
2859
|
-
0, () => RegisterEventTopicRequest$, () => RegisterEventTopicResult$
|
|
2860
|
-
];
|
|
2861
|
-
var RejectSharedDirectory$ = [9, n0, _RSD,
|
|
2862
|
-
0, () => RejectSharedDirectoryRequest$, () => RejectSharedDirectoryResult$
|
|
2863
|
-
];
|
|
2864
|
-
var RemoveIpRoutes$ = [9, n0, _RIR,
|
|
2865
|
-
0, () => RemoveIpRoutesRequest$, () => RemoveIpRoutesResult$
|
|
2866
|
-
];
|
|
2867
|
-
var RemoveRegion$ = [9, n0, _RRe,
|
|
2868
|
-
0, () => RemoveRegionRequest$, () => RemoveRegionResult$
|
|
2869
|
-
];
|
|
2870
|
-
var RemoveTagsFromResource$ = [9, n0, _RTFR,
|
|
2871
|
-
0, () => RemoveTagsFromResourceRequest$, () => RemoveTagsFromResourceResult$
|
|
2872
|
-
];
|
|
2873
|
-
var ResetUserPassword$ = [9, n0, _RUP,
|
|
2874
|
-
0, () => ResetUserPasswordRequest$, () => ResetUserPasswordResult$
|
|
2875
|
-
];
|
|
2876
|
-
var RestoreFromSnapshot$ = [9, n0, _RFS,
|
|
2877
|
-
0, () => RestoreFromSnapshotRequest$, () => RestoreFromSnapshotResult$
|
|
2878
|
-
];
|
|
2879
|
-
var ShareDirectory$ = [9, n0, _SDha,
|
|
2880
|
-
0, () => ShareDirectoryRequest$, () => ShareDirectoryResult$
|
|
2881
|
-
];
|
|
2882
|
-
var StartADAssessment$ = [9, n0, _SADA,
|
|
2883
|
-
0, () => StartADAssessmentRequest$, () => StartADAssessmentResult$
|
|
2884
|
-
];
|
|
2885
|
-
var StartSchemaExtension$ = [9, n0, _SSE,
|
|
2886
|
-
0, () => StartSchemaExtensionRequest$, () => StartSchemaExtensionResult$
|
|
2887
|
-
];
|
|
2888
|
-
var UnshareDirectory$ = [9, n0, _UD,
|
|
2889
|
-
0, () => UnshareDirectoryRequest$, () => UnshareDirectoryResult$
|
|
2890
|
-
];
|
|
2891
|
-
var UpdateConditionalForwarder$ = [9, n0, _UCF,
|
|
2892
|
-
0, () => UpdateConditionalForwarderRequest$, () => UpdateConditionalForwarderResult$
|
|
2893
|
-
];
|
|
2894
|
-
var UpdateDirectorySetup$ = [9, n0, _UDS,
|
|
2895
|
-
0, () => UpdateDirectorySetupRequest$, () => UpdateDirectorySetupResult$
|
|
2896
|
-
];
|
|
2897
|
-
var UpdateHybridAD$ = [9, n0, _UHAD,
|
|
2898
|
-
0, () => UpdateHybridADRequest$, () => UpdateHybridADResult$
|
|
2899
|
-
];
|
|
2900
|
-
var UpdateNumberOfDomainControllers$ = [9, n0, _UNODC,
|
|
2901
|
-
0, () => UpdateNumberOfDomainControllersRequest$, () => UpdateNumberOfDomainControllersResult$
|
|
2902
|
-
];
|
|
2903
|
-
var UpdateRadius$ = [9, n0, _UR,
|
|
2904
|
-
0, () => UpdateRadiusRequest$, () => UpdateRadiusResult$
|
|
2905
|
-
];
|
|
2906
|
-
var UpdateSettings$ = [9, n0, _US,
|
|
2907
|
-
0, () => UpdateSettingsRequest$, () => UpdateSettingsResult$
|
|
2908
|
-
];
|
|
2909
|
-
var UpdateTrust$ = [9, n0, _UTp,
|
|
2910
|
-
0, () => UpdateTrustRequest$, () => UpdateTrustResult$
|
|
2911
|
-
];
|
|
2912
|
-
var VerifyTrust$ = [9, n0, _VT,
|
|
2913
|
-
0, () => VerifyTrustRequest$, () => VerifyTrustResult$
|
|
2914
|
-
];
|
|
2915
|
-
|
|
2916
117
|
class AcceptSharedDirectoryCommand extends smithyClient.Command
|
|
2917
118
|
.classBuilder()
|
|
2918
119
|
.ep(commonParams)
|
|
@@ -2921,7 +122,7 @@ class AcceptSharedDirectoryCommand extends smithyClient.Command
|
|
|
2921
122
|
})
|
|
2922
123
|
.s("DirectoryService_20150416", "AcceptSharedDirectory", {})
|
|
2923
124
|
.n("DirectoryServiceClient", "AcceptSharedDirectoryCommand")
|
|
2924
|
-
.sc(AcceptSharedDirectory$)
|
|
125
|
+
.sc(schemas_0.AcceptSharedDirectory$)
|
|
2925
126
|
.build() {
|
|
2926
127
|
}
|
|
2927
128
|
|
|
@@ -2933,7 +134,7 @@ class AddIpRoutesCommand extends smithyClient.Command
|
|
|
2933
134
|
})
|
|
2934
135
|
.s("DirectoryService_20150416", "AddIpRoutes", {})
|
|
2935
136
|
.n("DirectoryServiceClient", "AddIpRoutesCommand")
|
|
2936
|
-
.sc(AddIpRoutes$)
|
|
137
|
+
.sc(schemas_0.AddIpRoutes$)
|
|
2937
138
|
.build() {
|
|
2938
139
|
}
|
|
2939
140
|
|
|
@@ -2945,7 +146,7 @@ class AddRegionCommand extends smithyClient.Command
|
|
|
2945
146
|
})
|
|
2946
147
|
.s("DirectoryService_20150416", "AddRegion", {})
|
|
2947
148
|
.n("DirectoryServiceClient", "AddRegionCommand")
|
|
2948
|
-
.sc(AddRegion$)
|
|
149
|
+
.sc(schemas_0.AddRegion$)
|
|
2949
150
|
.build() {
|
|
2950
151
|
}
|
|
2951
152
|
|
|
@@ -2957,7 +158,7 @@ class AddTagsToResourceCommand extends smithyClient.Command
|
|
|
2957
158
|
})
|
|
2958
159
|
.s("DirectoryService_20150416", "AddTagsToResource", {})
|
|
2959
160
|
.n("DirectoryServiceClient", "AddTagsToResourceCommand")
|
|
2960
|
-
.sc(AddTagsToResource$)
|
|
161
|
+
.sc(schemas_0.AddTagsToResource$)
|
|
2961
162
|
.build() {
|
|
2962
163
|
}
|
|
2963
164
|
|
|
@@ -2969,7 +170,7 @@ class CancelSchemaExtensionCommand extends smithyClient.Command
|
|
|
2969
170
|
})
|
|
2970
171
|
.s("DirectoryService_20150416", "CancelSchemaExtension", {})
|
|
2971
172
|
.n("DirectoryServiceClient", "CancelSchemaExtensionCommand")
|
|
2972
|
-
.sc(CancelSchemaExtension$)
|
|
173
|
+
.sc(schemas_0.CancelSchemaExtension$)
|
|
2973
174
|
.build() {
|
|
2974
175
|
}
|
|
2975
176
|
|
|
@@ -2981,7 +182,7 @@ class ConnectDirectoryCommand extends smithyClient.Command
|
|
|
2981
182
|
})
|
|
2982
183
|
.s("DirectoryService_20150416", "ConnectDirectory", {})
|
|
2983
184
|
.n("DirectoryServiceClient", "ConnectDirectoryCommand")
|
|
2984
|
-
.sc(ConnectDirectory$)
|
|
185
|
+
.sc(schemas_0.ConnectDirectory$)
|
|
2985
186
|
.build() {
|
|
2986
187
|
}
|
|
2987
188
|
|
|
@@ -2993,7 +194,7 @@ class CreateAliasCommand extends smithyClient.Command
|
|
|
2993
194
|
})
|
|
2994
195
|
.s("DirectoryService_20150416", "CreateAlias", {})
|
|
2995
196
|
.n("DirectoryServiceClient", "CreateAliasCommand")
|
|
2996
|
-
.sc(CreateAlias$)
|
|
197
|
+
.sc(schemas_0.CreateAlias$)
|
|
2997
198
|
.build() {
|
|
2998
199
|
}
|
|
2999
200
|
|
|
@@ -3005,7 +206,7 @@ class CreateComputerCommand extends smithyClient.Command
|
|
|
3005
206
|
})
|
|
3006
207
|
.s("DirectoryService_20150416", "CreateComputer", {})
|
|
3007
208
|
.n("DirectoryServiceClient", "CreateComputerCommand")
|
|
3008
|
-
.sc(CreateComputer$)
|
|
209
|
+
.sc(schemas_0.CreateComputer$)
|
|
3009
210
|
.build() {
|
|
3010
211
|
}
|
|
3011
212
|
|
|
@@ -3017,7 +218,7 @@ class CreateConditionalForwarderCommand extends smithyClient.Command
|
|
|
3017
218
|
})
|
|
3018
219
|
.s("DirectoryService_20150416", "CreateConditionalForwarder", {})
|
|
3019
220
|
.n("DirectoryServiceClient", "CreateConditionalForwarderCommand")
|
|
3020
|
-
.sc(CreateConditionalForwarder$)
|
|
221
|
+
.sc(schemas_0.CreateConditionalForwarder$)
|
|
3021
222
|
.build() {
|
|
3022
223
|
}
|
|
3023
224
|
|
|
@@ -3029,7 +230,7 @@ class CreateDirectoryCommand extends smithyClient.Command
|
|
|
3029
230
|
})
|
|
3030
231
|
.s("DirectoryService_20150416", "CreateDirectory", {})
|
|
3031
232
|
.n("DirectoryServiceClient", "CreateDirectoryCommand")
|
|
3032
|
-
.sc(CreateDirectory$)
|
|
233
|
+
.sc(schemas_0.CreateDirectory$)
|
|
3033
234
|
.build() {
|
|
3034
235
|
}
|
|
3035
236
|
|
|
@@ -3041,7 +242,7 @@ class CreateHybridADCommand extends smithyClient.Command
|
|
|
3041
242
|
})
|
|
3042
243
|
.s("DirectoryService_20150416", "CreateHybridAD", {})
|
|
3043
244
|
.n("DirectoryServiceClient", "CreateHybridADCommand")
|
|
3044
|
-
.sc(CreateHybridAD$)
|
|
245
|
+
.sc(schemas_0.CreateHybridAD$)
|
|
3045
246
|
.build() {
|
|
3046
247
|
}
|
|
3047
248
|
|
|
@@ -3053,7 +254,7 @@ class CreateLogSubscriptionCommand extends smithyClient.Command
|
|
|
3053
254
|
})
|
|
3054
255
|
.s("DirectoryService_20150416", "CreateLogSubscription", {})
|
|
3055
256
|
.n("DirectoryServiceClient", "CreateLogSubscriptionCommand")
|
|
3056
|
-
.sc(CreateLogSubscription$)
|
|
257
|
+
.sc(schemas_0.CreateLogSubscription$)
|
|
3057
258
|
.build() {
|
|
3058
259
|
}
|
|
3059
260
|
|
|
@@ -3065,7 +266,7 @@ class CreateMicrosoftADCommand extends smithyClient.Command
|
|
|
3065
266
|
})
|
|
3066
267
|
.s("DirectoryService_20150416", "CreateMicrosoftAD", {})
|
|
3067
268
|
.n("DirectoryServiceClient", "CreateMicrosoftADCommand")
|
|
3068
|
-
.sc(CreateMicrosoftAD$)
|
|
269
|
+
.sc(schemas_0.CreateMicrosoftAD$)
|
|
3069
270
|
.build() {
|
|
3070
271
|
}
|
|
3071
272
|
|
|
@@ -3077,7 +278,7 @@ class CreateSnapshotCommand extends smithyClient.Command
|
|
|
3077
278
|
})
|
|
3078
279
|
.s("DirectoryService_20150416", "CreateSnapshot", {})
|
|
3079
280
|
.n("DirectoryServiceClient", "CreateSnapshotCommand")
|
|
3080
|
-
.sc(CreateSnapshot$)
|
|
281
|
+
.sc(schemas_0.CreateSnapshot$)
|
|
3081
282
|
.build() {
|
|
3082
283
|
}
|
|
3083
284
|
|
|
@@ -3089,7 +290,7 @@ class CreateTrustCommand extends smithyClient.Command
|
|
|
3089
290
|
})
|
|
3090
291
|
.s("DirectoryService_20150416", "CreateTrust", {})
|
|
3091
292
|
.n("DirectoryServiceClient", "CreateTrustCommand")
|
|
3092
|
-
.sc(CreateTrust$)
|
|
293
|
+
.sc(schemas_0.CreateTrust$)
|
|
3093
294
|
.build() {
|
|
3094
295
|
}
|
|
3095
296
|
|
|
@@ -3101,7 +302,7 @@ class DeleteADAssessmentCommand extends smithyClient.Command
|
|
|
3101
302
|
})
|
|
3102
303
|
.s("DirectoryService_20150416", "DeleteADAssessment", {})
|
|
3103
304
|
.n("DirectoryServiceClient", "DeleteADAssessmentCommand")
|
|
3104
|
-
.sc(DeleteADAssessment$)
|
|
305
|
+
.sc(schemas_0.DeleteADAssessment$)
|
|
3105
306
|
.build() {
|
|
3106
307
|
}
|
|
3107
308
|
|
|
@@ -3113,7 +314,7 @@ class DeleteConditionalForwarderCommand extends smithyClient.Command
|
|
|
3113
314
|
})
|
|
3114
315
|
.s("DirectoryService_20150416", "DeleteConditionalForwarder", {})
|
|
3115
316
|
.n("DirectoryServiceClient", "DeleteConditionalForwarderCommand")
|
|
3116
|
-
.sc(DeleteConditionalForwarder$)
|
|
317
|
+
.sc(schemas_0.DeleteConditionalForwarder$)
|
|
3117
318
|
.build() {
|
|
3118
319
|
}
|
|
3119
320
|
|
|
@@ -3125,7 +326,7 @@ class DeleteDirectoryCommand extends smithyClient.Command
|
|
|
3125
326
|
})
|
|
3126
327
|
.s("DirectoryService_20150416", "DeleteDirectory", {})
|
|
3127
328
|
.n("DirectoryServiceClient", "DeleteDirectoryCommand")
|
|
3128
|
-
.sc(DeleteDirectory$)
|
|
329
|
+
.sc(schemas_0.DeleteDirectory$)
|
|
3129
330
|
.build() {
|
|
3130
331
|
}
|
|
3131
332
|
|
|
@@ -3137,7 +338,7 @@ class DeleteLogSubscriptionCommand extends smithyClient.Command
|
|
|
3137
338
|
})
|
|
3138
339
|
.s("DirectoryService_20150416", "DeleteLogSubscription", {})
|
|
3139
340
|
.n("DirectoryServiceClient", "DeleteLogSubscriptionCommand")
|
|
3140
|
-
.sc(DeleteLogSubscription$)
|
|
341
|
+
.sc(schemas_0.DeleteLogSubscription$)
|
|
3141
342
|
.build() {
|
|
3142
343
|
}
|
|
3143
344
|
|
|
@@ -3149,7 +350,7 @@ class DeleteSnapshotCommand extends smithyClient.Command
|
|
|
3149
350
|
})
|
|
3150
351
|
.s("DirectoryService_20150416", "DeleteSnapshot", {})
|
|
3151
352
|
.n("DirectoryServiceClient", "DeleteSnapshotCommand")
|
|
3152
|
-
.sc(DeleteSnapshot$)
|
|
353
|
+
.sc(schemas_0.DeleteSnapshot$)
|
|
3153
354
|
.build() {
|
|
3154
355
|
}
|
|
3155
356
|
|
|
@@ -3161,7 +362,7 @@ class DeleteTrustCommand extends smithyClient.Command
|
|
|
3161
362
|
})
|
|
3162
363
|
.s("DirectoryService_20150416", "DeleteTrust", {})
|
|
3163
364
|
.n("DirectoryServiceClient", "DeleteTrustCommand")
|
|
3164
|
-
.sc(DeleteTrust$)
|
|
365
|
+
.sc(schemas_0.DeleteTrust$)
|
|
3165
366
|
.build() {
|
|
3166
367
|
}
|
|
3167
368
|
|
|
@@ -3173,7 +374,7 @@ class DeregisterCertificateCommand extends smithyClient.Command
|
|
|
3173
374
|
})
|
|
3174
375
|
.s("DirectoryService_20150416", "DeregisterCertificate", {})
|
|
3175
376
|
.n("DirectoryServiceClient", "DeregisterCertificateCommand")
|
|
3176
|
-
.sc(DeregisterCertificate$)
|
|
377
|
+
.sc(schemas_0.DeregisterCertificate$)
|
|
3177
378
|
.build() {
|
|
3178
379
|
}
|
|
3179
380
|
|
|
@@ -3185,7 +386,7 @@ class DeregisterEventTopicCommand extends smithyClient.Command
|
|
|
3185
386
|
})
|
|
3186
387
|
.s("DirectoryService_20150416", "DeregisterEventTopic", {})
|
|
3187
388
|
.n("DirectoryServiceClient", "DeregisterEventTopicCommand")
|
|
3188
|
-
.sc(DeregisterEventTopic$)
|
|
389
|
+
.sc(schemas_0.DeregisterEventTopic$)
|
|
3189
390
|
.build() {
|
|
3190
391
|
}
|
|
3191
392
|
|
|
@@ -3197,7 +398,7 @@ class DescribeADAssessmentCommand extends smithyClient.Command
|
|
|
3197
398
|
})
|
|
3198
399
|
.s("DirectoryService_20150416", "DescribeADAssessment", {})
|
|
3199
400
|
.n("DirectoryServiceClient", "DescribeADAssessmentCommand")
|
|
3200
|
-
.sc(DescribeADAssessment$)
|
|
401
|
+
.sc(schemas_0.DescribeADAssessment$)
|
|
3201
402
|
.build() {
|
|
3202
403
|
}
|
|
3203
404
|
|
|
@@ -3209,7 +410,7 @@ class DescribeCAEnrollmentPolicyCommand extends smithyClient.Command
|
|
|
3209
410
|
})
|
|
3210
411
|
.s("DirectoryService_20150416", "DescribeCAEnrollmentPolicy", {})
|
|
3211
412
|
.n("DirectoryServiceClient", "DescribeCAEnrollmentPolicyCommand")
|
|
3212
|
-
.sc(DescribeCAEnrollmentPolicy$)
|
|
413
|
+
.sc(schemas_0.DescribeCAEnrollmentPolicy$)
|
|
3213
414
|
.build() {
|
|
3214
415
|
}
|
|
3215
416
|
|
|
@@ -3221,7 +422,7 @@ class DescribeCertificateCommand extends smithyClient.Command
|
|
|
3221
422
|
})
|
|
3222
423
|
.s("DirectoryService_20150416", "DescribeCertificate", {})
|
|
3223
424
|
.n("DirectoryServiceClient", "DescribeCertificateCommand")
|
|
3224
|
-
.sc(DescribeCertificate$)
|
|
425
|
+
.sc(schemas_0.DescribeCertificate$)
|
|
3225
426
|
.build() {
|
|
3226
427
|
}
|
|
3227
428
|
|
|
@@ -3233,7 +434,7 @@ class DescribeClientAuthenticationSettingsCommand extends smithyClient.Command
|
|
|
3233
434
|
})
|
|
3234
435
|
.s("DirectoryService_20150416", "DescribeClientAuthenticationSettings", {})
|
|
3235
436
|
.n("DirectoryServiceClient", "DescribeClientAuthenticationSettingsCommand")
|
|
3236
|
-
.sc(DescribeClientAuthenticationSettings$)
|
|
437
|
+
.sc(schemas_0.DescribeClientAuthenticationSettings$)
|
|
3237
438
|
.build() {
|
|
3238
439
|
}
|
|
3239
440
|
|
|
@@ -3245,7 +446,7 @@ class DescribeConditionalForwardersCommand extends smithyClient.Command
|
|
|
3245
446
|
})
|
|
3246
447
|
.s("DirectoryService_20150416", "DescribeConditionalForwarders", {})
|
|
3247
448
|
.n("DirectoryServiceClient", "DescribeConditionalForwardersCommand")
|
|
3248
|
-
.sc(DescribeConditionalForwarders$)
|
|
449
|
+
.sc(schemas_0.DescribeConditionalForwarders$)
|
|
3249
450
|
.build() {
|
|
3250
451
|
}
|
|
3251
452
|
|
|
@@ -3257,7 +458,7 @@ class DescribeDirectoriesCommand extends smithyClient.Command
|
|
|
3257
458
|
})
|
|
3258
459
|
.s("DirectoryService_20150416", "DescribeDirectories", {})
|
|
3259
460
|
.n("DirectoryServiceClient", "DescribeDirectoriesCommand")
|
|
3260
|
-
.sc(DescribeDirectories$)
|
|
461
|
+
.sc(schemas_0.DescribeDirectories$)
|
|
3261
462
|
.build() {
|
|
3262
463
|
}
|
|
3263
464
|
|
|
@@ -3269,7 +470,7 @@ class DescribeDirectoryDataAccessCommand extends smithyClient.Command
|
|
|
3269
470
|
})
|
|
3270
471
|
.s("DirectoryService_20150416", "DescribeDirectoryDataAccess", {})
|
|
3271
472
|
.n("DirectoryServiceClient", "DescribeDirectoryDataAccessCommand")
|
|
3272
|
-
.sc(DescribeDirectoryDataAccess$)
|
|
473
|
+
.sc(schemas_0.DescribeDirectoryDataAccess$)
|
|
3273
474
|
.build() {
|
|
3274
475
|
}
|
|
3275
476
|
|
|
@@ -3281,7 +482,7 @@ class DescribeDomainControllersCommand extends smithyClient.Command
|
|
|
3281
482
|
})
|
|
3282
483
|
.s("DirectoryService_20150416", "DescribeDomainControllers", {})
|
|
3283
484
|
.n("DirectoryServiceClient", "DescribeDomainControllersCommand")
|
|
3284
|
-
.sc(DescribeDomainControllers$)
|
|
485
|
+
.sc(schemas_0.DescribeDomainControllers$)
|
|
3285
486
|
.build() {
|
|
3286
487
|
}
|
|
3287
488
|
|
|
@@ -3293,7 +494,7 @@ class DescribeEventTopicsCommand extends smithyClient.Command
|
|
|
3293
494
|
})
|
|
3294
495
|
.s("DirectoryService_20150416", "DescribeEventTopics", {})
|
|
3295
496
|
.n("DirectoryServiceClient", "DescribeEventTopicsCommand")
|
|
3296
|
-
.sc(DescribeEventTopics$)
|
|
497
|
+
.sc(schemas_0.DescribeEventTopics$)
|
|
3297
498
|
.build() {
|
|
3298
499
|
}
|
|
3299
500
|
|
|
@@ -3305,7 +506,7 @@ class DescribeHybridADUpdateCommand extends smithyClient.Command
|
|
|
3305
506
|
})
|
|
3306
507
|
.s("DirectoryService_20150416", "DescribeHybridADUpdate", {})
|
|
3307
508
|
.n("DirectoryServiceClient", "DescribeHybridADUpdateCommand")
|
|
3308
|
-
.sc(DescribeHybridADUpdate$)
|
|
509
|
+
.sc(schemas_0.DescribeHybridADUpdate$)
|
|
3309
510
|
.build() {
|
|
3310
511
|
}
|
|
3311
512
|
|
|
@@ -3317,7 +518,7 @@ class DescribeLDAPSSettingsCommand extends smithyClient.Command
|
|
|
3317
518
|
})
|
|
3318
519
|
.s("DirectoryService_20150416", "DescribeLDAPSSettings", {})
|
|
3319
520
|
.n("DirectoryServiceClient", "DescribeLDAPSSettingsCommand")
|
|
3320
|
-
.sc(DescribeLDAPSSettings$)
|
|
521
|
+
.sc(schemas_0.DescribeLDAPSSettings$)
|
|
3321
522
|
.build() {
|
|
3322
523
|
}
|
|
3323
524
|
|
|
@@ -3329,7 +530,7 @@ class DescribeRegionsCommand extends smithyClient.Command
|
|
|
3329
530
|
})
|
|
3330
531
|
.s("DirectoryService_20150416", "DescribeRegions", {})
|
|
3331
532
|
.n("DirectoryServiceClient", "DescribeRegionsCommand")
|
|
3332
|
-
.sc(DescribeRegions$)
|
|
533
|
+
.sc(schemas_0.DescribeRegions$)
|
|
3333
534
|
.build() {
|
|
3334
535
|
}
|
|
3335
536
|
|
|
@@ -3341,7 +542,7 @@ class DescribeSettingsCommand extends smithyClient.Command
|
|
|
3341
542
|
})
|
|
3342
543
|
.s("DirectoryService_20150416", "DescribeSettings", {})
|
|
3343
544
|
.n("DirectoryServiceClient", "DescribeSettingsCommand")
|
|
3344
|
-
.sc(DescribeSettings$)
|
|
545
|
+
.sc(schemas_0.DescribeSettings$)
|
|
3345
546
|
.build() {
|
|
3346
547
|
}
|
|
3347
548
|
|
|
@@ -3353,7 +554,7 @@ class DescribeSharedDirectoriesCommand extends smithyClient.Command
|
|
|
3353
554
|
})
|
|
3354
555
|
.s("DirectoryService_20150416", "DescribeSharedDirectories", {})
|
|
3355
556
|
.n("DirectoryServiceClient", "DescribeSharedDirectoriesCommand")
|
|
3356
|
-
.sc(DescribeSharedDirectories$)
|
|
557
|
+
.sc(schemas_0.DescribeSharedDirectories$)
|
|
3357
558
|
.build() {
|
|
3358
559
|
}
|
|
3359
560
|
|
|
@@ -3365,7 +566,7 @@ class DescribeSnapshotsCommand extends smithyClient.Command
|
|
|
3365
566
|
})
|
|
3366
567
|
.s("DirectoryService_20150416", "DescribeSnapshots", {})
|
|
3367
568
|
.n("DirectoryServiceClient", "DescribeSnapshotsCommand")
|
|
3368
|
-
.sc(DescribeSnapshots$)
|
|
569
|
+
.sc(schemas_0.DescribeSnapshots$)
|
|
3369
570
|
.build() {
|
|
3370
571
|
}
|
|
3371
572
|
|
|
@@ -3377,7 +578,7 @@ class DescribeTrustsCommand extends smithyClient.Command
|
|
|
3377
578
|
})
|
|
3378
579
|
.s("DirectoryService_20150416", "DescribeTrusts", {})
|
|
3379
580
|
.n("DirectoryServiceClient", "DescribeTrustsCommand")
|
|
3380
|
-
.sc(DescribeTrusts$)
|
|
581
|
+
.sc(schemas_0.DescribeTrusts$)
|
|
3381
582
|
.build() {
|
|
3382
583
|
}
|
|
3383
584
|
|
|
@@ -3389,7 +590,7 @@ class DescribeUpdateDirectoryCommand extends smithyClient.Command
|
|
|
3389
590
|
})
|
|
3390
591
|
.s("DirectoryService_20150416", "DescribeUpdateDirectory", {})
|
|
3391
592
|
.n("DirectoryServiceClient", "DescribeUpdateDirectoryCommand")
|
|
3392
|
-
.sc(DescribeUpdateDirectory$)
|
|
593
|
+
.sc(schemas_0.DescribeUpdateDirectory$)
|
|
3393
594
|
.build() {
|
|
3394
595
|
}
|
|
3395
596
|
|
|
@@ -3401,7 +602,7 @@ class DisableCAEnrollmentPolicyCommand extends smithyClient.Command
|
|
|
3401
602
|
})
|
|
3402
603
|
.s("DirectoryService_20150416", "DisableCAEnrollmentPolicy", {})
|
|
3403
604
|
.n("DirectoryServiceClient", "DisableCAEnrollmentPolicyCommand")
|
|
3404
|
-
.sc(DisableCAEnrollmentPolicy$)
|
|
605
|
+
.sc(schemas_0.DisableCAEnrollmentPolicy$)
|
|
3405
606
|
.build() {
|
|
3406
607
|
}
|
|
3407
608
|
|
|
@@ -3413,7 +614,7 @@ class DisableClientAuthenticationCommand extends smithyClient.Command
|
|
|
3413
614
|
})
|
|
3414
615
|
.s("DirectoryService_20150416", "DisableClientAuthentication", {})
|
|
3415
616
|
.n("DirectoryServiceClient", "DisableClientAuthenticationCommand")
|
|
3416
|
-
.sc(DisableClientAuthentication$)
|
|
617
|
+
.sc(schemas_0.DisableClientAuthentication$)
|
|
3417
618
|
.build() {
|
|
3418
619
|
}
|
|
3419
620
|
|
|
@@ -3425,7 +626,7 @@ class DisableDirectoryDataAccessCommand extends smithyClient.Command
|
|
|
3425
626
|
})
|
|
3426
627
|
.s("DirectoryService_20150416", "DisableDirectoryDataAccess", {})
|
|
3427
628
|
.n("DirectoryServiceClient", "DisableDirectoryDataAccessCommand")
|
|
3428
|
-
.sc(DisableDirectoryDataAccess$)
|
|
629
|
+
.sc(schemas_0.DisableDirectoryDataAccess$)
|
|
3429
630
|
.build() {
|
|
3430
631
|
}
|
|
3431
632
|
|
|
@@ -3437,7 +638,7 @@ class DisableLDAPSCommand extends smithyClient.Command
|
|
|
3437
638
|
})
|
|
3438
639
|
.s("DirectoryService_20150416", "DisableLDAPS", {})
|
|
3439
640
|
.n("DirectoryServiceClient", "DisableLDAPSCommand")
|
|
3440
|
-
.sc(DisableLDAPS$)
|
|
641
|
+
.sc(schemas_0.DisableLDAPS$)
|
|
3441
642
|
.build() {
|
|
3442
643
|
}
|
|
3443
644
|
|
|
@@ -3449,7 +650,7 @@ class DisableRadiusCommand extends smithyClient.Command
|
|
|
3449
650
|
})
|
|
3450
651
|
.s("DirectoryService_20150416", "DisableRadius", {})
|
|
3451
652
|
.n("DirectoryServiceClient", "DisableRadiusCommand")
|
|
3452
|
-
.sc(DisableRadius$)
|
|
653
|
+
.sc(schemas_0.DisableRadius$)
|
|
3453
654
|
.build() {
|
|
3454
655
|
}
|
|
3455
656
|
|
|
@@ -3461,7 +662,7 @@ class DisableSsoCommand extends smithyClient.Command
|
|
|
3461
662
|
})
|
|
3462
663
|
.s("DirectoryService_20150416", "DisableSso", {})
|
|
3463
664
|
.n("DirectoryServiceClient", "DisableSsoCommand")
|
|
3464
|
-
.sc(DisableSso$)
|
|
665
|
+
.sc(schemas_0.DisableSso$)
|
|
3465
666
|
.build() {
|
|
3466
667
|
}
|
|
3467
668
|
|
|
@@ -3473,7 +674,7 @@ class EnableCAEnrollmentPolicyCommand extends smithyClient.Command
|
|
|
3473
674
|
})
|
|
3474
675
|
.s("DirectoryService_20150416", "EnableCAEnrollmentPolicy", {})
|
|
3475
676
|
.n("DirectoryServiceClient", "EnableCAEnrollmentPolicyCommand")
|
|
3476
|
-
.sc(EnableCAEnrollmentPolicy$)
|
|
677
|
+
.sc(schemas_0.EnableCAEnrollmentPolicy$)
|
|
3477
678
|
.build() {
|
|
3478
679
|
}
|
|
3479
680
|
|
|
@@ -3485,7 +686,7 @@ class EnableClientAuthenticationCommand extends smithyClient.Command
|
|
|
3485
686
|
})
|
|
3486
687
|
.s("DirectoryService_20150416", "EnableClientAuthentication", {})
|
|
3487
688
|
.n("DirectoryServiceClient", "EnableClientAuthenticationCommand")
|
|
3488
|
-
.sc(EnableClientAuthentication$)
|
|
689
|
+
.sc(schemas_0.EnableClientAuthentication$)
|
|
3489
690
|
.build() {
|
|
3490
691
|
}
|
|
3491
692
|
|
|
@@ -3497,7 +698,7 @@ class EnableDirectoryDataAccessCommand extends smithyClient.Command
|
|
|
3497
698
|
})
|
|
3498
699
|
.s("DirectoryService_20150416", "EnableDirectoryDataAccess", {})
|
|
3499
700
|
.n("DirectoryServiceClient", "EnableDirectoryDataAccessCommand")
|
|
3500
|
-
.sc(EnableDirectoryDataAccess$)
|
|
701
|
+
.sc(schemas_0.EnableDirectoryDataAccess$)
|
|
3501
702
|
.build() {
|
|
3502
703
|
}
|
|
3503
704
|
|
|
@@ -3509,7 +710,7 @@ class EnableLDAPSCommand extends smithyClient.Command
|
|
|
3509
710
|
})
|
|
3510
711
|
.s("DirectoryService_20150416", "EnableLDAPS", {})
|
|
3511
712
|
.n("DirectoryServiceClient", "EnableLDAPSCommand")
|
|
3512
|
-
.sc(EnableLDAPS$)
|
|
713
|
+
.sc(schemas_0.EnableLDAPS$)
|
|
3513
714
|
.build() {
|
|
3514
715
|
}
|
|
3515
716
|
|
|
@@ -3521,7 +722,7 @@ class EnableRadiusCommand extends smithyClient.Command
|
|
|
3521
722
|
})
|
|
3522
723
|
.s("DirectoryService_20150416", "EnableRadius", {})
|
|
3523
724
|
.n("DirectoryServiceClient", "EnableRadiusCommand")
|
|
3524
|
-
.sc(EnableRadius$)
|
|
725
|
+
.sc(schemas_0.EnableRadius$)
|
|
3525
726
|
.build() {
|
|
3526
727
|
}
|
|
3527
728
|
|
|
@@ -3533,7 +734,7 @@ class EnableSsoCommand extends smithyClient.Command
|
|
|
3533
734
|
})
|
|
3534
735
|
.s("DirectoryService_20150416", "EnableSso", {})
|
|
3535
736
|
.n("DirectoryServiceClient", "EnableSsoCommand")
|
|
3536
|
-
.sc(EnableSso$)
|
|
737
|
+
.sc(schemas_0.EnableSso$)
|
|
3537
738
|
.build() {
|
|
3538
739
|
}
|
|
3539
740
|
|
|
@@ -3545,7 +746,7 @@ class GetDirectoryLimitsCommand extends smithyClient.Command
|
|
|
3545
746
|
})
|
|
3546
747
|
.s("DirectoryService_20150416", "GetDirectoryLimits", {})
|
|
3547
748
|
.n("DirectoryServiceClient", "GetDirectoryLimitsCommand")
|
|
3548
|
-
.sc(GetDirectoryLimits$)
|
|
749
|
+
.sc(schemas_0.GetDirectoryLimits$)
|
|
3549
750
|
.build() {
|
|
3550
751
|
}
|
|
3551
752
|
|
|
@@ -3557,7 +758,7 @@ class GetSnapshotLimitsCommand extends smithyClient.Command
|
|
|
3557
758
|
})
|
|
3558
759
|
.s("DirectoryService_20150416", "GetSnapshotLimits", {})
|
|
3559
760
|
.n("DirectoryServiceClient", "GetSnapshotLimitsCommand")
|
|
3560
|
-
.sc(GetSnapshotLimits$)
|
|
761
|
+
.sc(schemas_0.GetSnapshotLimits$)
|
|
3561
762
|
.build() {
|
|
3562
763
|
}
|
|
3563
764
|
|
|
@@ -3569,7 +770,7 @@ class ListADAssessmentsCommand extends smithyClient.Command
|
|
|
3569
770
|
})
|
|
3570
771
|
.s("DirectoryService_20150416", "ListADAssessments", {})
|
|
3571
772
|
.n("DirectoryServiceClient", "ListADAssessmentsCommand")
|
|
3572
|
-
.sc(ListADAssessments$)
|
|
773
|
+
.sc(schemas_0.ListADAssessments$)
|
|
3573
774
|
.build() {
|
|
3574
775
|
}
|
|
3575
776
|
|
|
@@ -3581,7 +782,7 @@ class ListCertificatesCommand extends smithyClient.Command
|
|
|
3581
782
|
})
|
|
3582
783
|
.s("DirectoryService_20150416", "ListCertificates", {})
|
|
3583
784
|
.n("DirectoryServiceClient", "ListCertificatesCommand")
|
|
3584
|
-
.sc(ListCertificates$)
|
|
785
|
+
.sc(schemas_0.ListCertificates$)
|
|
3585
786
|
.build() {
|
|
3586
787
|
}
|
|
3587
788
|
|
|
@@ -3593,7 +794,7 @@ class ListIpRoutesCommand extends smithyClient.Command
|
|
|
3593
794
|
})
|
|
3594
795
|
.s("DirectoryService_20150416", "ListIpRoutes", {})
|
|
3595
796
|
.n("DirectoryServiceClient", "ListIpRoutesCommand")
|
|
3596
|
-
.sc(ListIpRoutes$)
|
|
797
|
+
.sc(schemas_0.ListIpRoutes$)
|
|
3597
798
|
.build() {
|
|
3598
799
|
}
|
|
3599
800
|
|
|
@@ -3605,7 +806,7 @@ class ListLogSubscriptionsCommand extends smithyClient.Command
|
|
|
3605
806
|
})
|
|
3606
807
|
.s("DirectoryService_20150416", "ListLogSubscriptions", {})
|
|
3607
808
|
.n("DirectoryServiceClient", "ListLogSubscriptionsCommand")
|
|
3608
|
-
.sc(ListLogSubscriptions$)
|
|
809
|
+
.sc(schemas_0.ListLogSubscriptions$)
|
|
3609
810
|
.build() {
|
|
3610
811
|
}
|
|
3611
812
|
|
|
@@ -3617,7 +818,7 @@ class ListSchemaExtensionsCommand extends smithyClient.Command
|
|
|
3617
818
|
})
|
|
3618
819
|
.s("DirectoryService_20150416", "ListSchemaExtensions", {})
|
|
3619
820
|
.n("DirectoryServiceClient", "ListSchemaExtensionsCommand")
|
|
3620
|
-
.sc(ListSchemaExtensions$)
|
|
821
|
+
.sc(schemas_0.ListSchemaExtensions$)
|
|
3621
822
|
.build() {
|
|
3622
823
|
}
|
|
3623
824
|
|
|
@@ -3629,7 +830,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3629
830
|
})
|
|
3630
831
|
.s("DirectoryService_20150416", "ListTagsForResource", {})
|
|
3631
832
|
.n("DirectoryServiceClient", "ListTagsForResourceCommand")
|
|
3632
|
-
.sc(ListTagsForResource$)
|
|
833
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3633
834
|
.build() {
|
|
3634
835
|
}
|
|
3635
836
|
|
|
@@ -3641,7 +842,7 @@ class RegisterCertificateCommand extends smithyClient.Command
|
|
|
3641
842
|
})
|
|
3642
843
|
.s("DirectoryService_20150416", "RegisterCertificate", {})
|
|
3643
844
|
.n("DirectoryServiceClient", "RegisterCertificateCommand")
|
|
3644
|
-
.sc(RegisterCertificate$)
|
|
845
|
+
.sc(schemas_0.RegisterCertificate$)
|
|
3645
846
|
.build() {
|
|
3646
847
|
}
|
|
3647
848
|
|
|
@@ -3653,7 +854,7 @@ class RegisterEventTopicCommand extends smithyClient.Command
|
|
|
3653
854
|
})
|
|
3654
855
|
.s("DirectoryService_20150416", "RegisterEventTopic", {})
|
|
3655
856
|
.n("DirectoryServiceClient", "RegisterEventTopicCommand")
|
|
3656
|
-
.sc(RegisterEventTopic$)
|
|
857
|
+
.sc(schemas_0.RegisterEventTopic$)
|
|
3657
858
|
.build() {
|
|
3658
859
|
}
|
|
3659
860
|
|
|
@@ -3665,7 +866,7 @@ class RejectSharedDirectoryCommand extends smithyClient.Command
|
|
|
3665
866
|
})
|
|
3666
867
|
.s("DirectoryService_20150416", "RejectSharedDirectory", {})
|
|
3667
868
|
.n("DirectoryServiceClient", "RejectSharedDirectoryCommand")
|
|
3668
|
-
.sc(RejectSharedDirectory$)
|
|
869
|
+
.sc(schemas_0.RejectSharedDirectory$)
|
|
3669
870
|
.build() {
|
|
3670
871
|
}
|
|
3671
872
|
|
|
@@ -3677,7 +878,7 @@ class RemoveIpRoutesCommand extends smithyClient.Command
|
|
|
3677
878
|
})
|
|
3678
879
|
.s("DirectoryService_20150416", "RemoveIpRoutes", {})
|
|
3679
880
|
.n("DirectoryServiceClient", "RemoveIpRoutesCommand")
|
|
3680
|
-
.sc(RemoveIpRoutes$)
|
|
881
|
+
.sc(schemas_0.RemoveIpRoutes$)
|
|
3681
882
|
.build() {
|
|
3682
883
|
}
|
|
3683
884
|
|
|
@@ -3689,7 +890,7 @@ class RemoveRegionCommand extends smithyClient.Command
|
|
|
3689
890
|
})
|
|
3690
891
|
.s("DirectoryService_20150416", "RemoveRegion", {})
|
|
3691
892
|
.n("DirectoryServiceClient", "RemoveRegionCommand")
|
|
3692
|
-
.sc(RemoveRegion$)
|
|
893
|
+
.sc(schemas_0.RemoveRegion$)
|
|
3693
894
|
.build() {
|
|
3694
895
|
}
|
|
3695
896
|
|
|
@@ -3701,7 +902,7 @@ class RemoveTagsFromResourceCommand extends smithyClient.Command
|
|
|
3701
902
|
})
|
|
3702
903
|
.s("DirectoryService_20150416", "RemoveTagsFromResource", {})
|
|
3703
904
|
.n("DirectoryServiceClient", "RemoveTagsFromResourceCommand")
|
|
3704
|
-
.sc(RemoveTagsFromResource$)
|
|
905
|
+
.sc(schemas_0.RemoveTagsFromResource$)
|
|
3705
906
|
.build() {
|
|
3706
907
|
}
|
|
3707
908
|
|
|
@@ -3713,7 +914,7 @@ class ResetUserPasswordCommand extends smithyClient.Command
|
|
|
3713
914
|
})
|
|
3714
915
|
.s("DirectoryService_20150416", "ResetUserPassword", {})
|
|
3715
916
|
.n("DirectoryServiceClient", "ResetUserPasswordCommand")
|
|
3716
|
-
.sc(ResetUserPassword$)
|
|
917
|
+
.sc(schemas_0.ResetUserPassword$)
|
|
3717
918
|
.build() {
|
|
3718
919
|
}
|
|
3719
920
|
|
|
@@ -3725,7 +926,7 @@ class RestoreFromSnapshotCommand extends smithyClient.Command
|
|
|
3725
926
|
})
|
|
3726
927
|
.s("DirectoryService_20150416", "RestoreFromSnapshot", {})
|
|
3727
928
|
.n("DirectoryServiceClient", "RestoreFromSnapshotCommand")
|
|
3728
|
-
.sc(RestoreFromSnapshot$)
|
|
929
|
+
.sc(schemas_0.RestoreFromSnapshot$)
|
|
3729
930
|
.build() {
|
|
3730
931
|
}
|
|
3731
932
|
|
|
@@ -3737,7 +938,7 @@ class ShareDirectoryCommand extends smithyClient.Command
|
|
|
3737
938
|
})
|
|
3738
939
|
.s("DirectoryService_20150416", "ShareDirectory", {})
|
|
3739
940
|
.n("DirectoryServiceClient", "ShareDirectoryCommand")
|
|
3740
|
-
.sc(ShareDirectory$)
|
|
941
|
+
.sc(schemas_0.ShareDirectory$)
|
|
3741
942
|
.build() {
|
|
3742
943
|
}
|
|
3743
944
|
|
|
@@ -3749,7 +950,7 @@ class StartADAssessmentCommand extends smithyClient.Command
|
|
|
3749
950
|
})
|
|
3750
951
|
.s("DirectoryService_20150416", "StartADAssessment", {})
|
|
3751
952
|
.n("DirectoryServiceClient", "StartADAssessmentCommand")
|
|
3752
|
-
.sc(StartADAssessment$)
|
|
953
|
+
.sc(schemas_0.StartADAssessment$)
|
|
3753
954
|
.build() {
|
|
3754
955
|
}
|
|
3755
956
|
|
|
@@ -3761,7 +962,7 @@ class StartSchemaExtensionCommand extends smithyClient.Command
|
|
|
3761
962
|
})
|
|
3762
963
|
.s("DirectoryService_20150416", "StartSchemaExtension", {})
|
|
3763
964
|
.n("DirectoryServiceClient", "StartSchemaExtensionCommand")
|
|
3764
|
-
.sc(StartSchemaExtension$)
|
|
965
|
+
.sc(schemas_0.StartSchemaExtension$)
|
|
3765
966
|
.build() {
|
|
3766
967
|
}
|
|
3767
968
|
|
|
@@ -3773,7 +974,7 @@ class UnshareDirectoryCommand extends smithyClient.Command
|
|
|
3773
974
|
})
|
|
3774
975
|
.s("DirectoryService_20150416", "UnshareDirectory", {})
|
|
3775
976
|
.n("DirectoryServiceClient", "UnshareDirectoryCommand")
|
|
3776
|
-
.sc(UnshareDirectory$)
|
|
977
|
+
.sc(schemas_0.UnshareDirectory$)
|
|
3777
978
|
.build() {
|
|
3778
979
|
}
|
|
3779
980
|
|
|
@@ -3785,7 +986,7 @@ class UpdateConditionalForwarderCommand extends smithyClient.Command
|
|
|
3785
986
|
})
|
|
3786
987
|
.s("DirectoryService_20150416", "UpdateConditionalForwarder", {})
|
|
3787
988
|
.n("DirectoryServiceClient", "UpdateConditionalForwarderCommand")
|
|
3788
|
-
.sc(UpdateConditionalForwarder$)
|
|
989
|
+
.sc(schemas_0.UpdateConditionalForwarder$)
|
|
3789
990
|
.build() {
|
|
3790
991
|
}
|
|
3791
992
|
|
|
@@ -3797,7 +998,7 @@ class UpdateDirectorySetupCommand extends smithyClient.Command
|
|
|
3797
998
|
})
|
|
3798
999
|
.s("DirectoryService_20150416", "UpdateDirectorySetup", {})
|
|
3799
1000
|
.n("DirectoryServiceClient", "UpdateDirectorySetupCommand")
|
|
3800
|
-
.sc(UpdateDirectorySetup$)
|
|
1001
|
+
.sc(schemas_0.UpdateDirectorySetup$)
|
|
3801
1002
|
.build() {
|
|
3802
1003
|
}
|
|
3803
1004
|
|
|
@@ -3809,7 +1010,7 @@ class UpdateHybridADCommand extends smithyClient.Command
|
|
|
3809
1010
|
})
|
|
3810
1011
|
.s("DirectoryService_20150416", "UpdateHybridAD", {})
|
|
3811
1012
|
.n("DirectoryServiceClient", "UpdateHybridADCommand")
|
|
3812
|
-
.sc(UpdateHybridAD$)
|
|
1013
|
+
.sc(schemas_0.UpdateHybridAD$)
|
|
3813
1014
|
.build() {
|
|
3814
1015
|
}
|
|
3815
1016
|
|
|
@@ -3821,7 +1022,7 @@ class UpdateNumberOfDomainControllersCommand extends smithyClient.Command
|
|
|
3821
1022
|
})
|
|
3822
1023
|
.s("DirectoryService_20150416", "UpdateNumberOfDomainControllers", {})
|
|
3823
1024
|
.n("DirectoryServiceClient", "UpdateNumberOfDomainControllersCommand")
|
|
3824
|
-
.sc(UpdateNumberOfDomainControllers$)
|
|
1025
|
+
.sc(schemas_0.UpdateNumberOfDomainControllers$)
|
|
3825
1026
|
.build() {
|
|
3826
1027
|
}
|
|
3827
1028
|
|
|
@@ -3833,7 +1034,7 @@ class UpdateRadiusCommand extends smithyClient.Command
|
|
|
3833
1034
|
})
|
|
3834
1035
|
.s("DirectoryService_20150416", "UpdateRadius", {})
|
|
3835
1036
|
.n("DirectoryServiceClient", "UpdateRadiusCommand")
|
|
3836
|
-
.sc(UpdateRadius$)
|
|
1037
|
+
.sc(schemas_0.UpdateRadius$)
|
|
3837
1038
|
.build() {
|
|
3838
1039
|
}
|
|
3839
1040
|
|
|
@@ -3845,7 +1046,7 @@ class UpdateSettingsCommand extends smithyClient.Command
|
|
|
3845
1046
|
})
|
|
3846
1047
|
.s("DirectoryService_20150416", "UpdateSettings", {})
|
|
3847
1048
|
.n("DirectoryServiceClient", "UpdateSettingsCommand")
|
|
3848
|
-
.sc(UpdateSettings$)
|
|
1049
|
+
.sc(schemas_0.UpdateSettings$)
|
|
3849
1050
|
.build() {
|
|
3850
1051
|
}
|
|
3851
1052
|
|
|
@@ -3857,7 +1058,7 @@ class UpdateTrustCommand extends smithyClient.Command
|
|
|
3857
1058
|
})
|
|
3858
1059
|
.s("DirectoryService_20150416", "UpdateTrust", {})
|
|
3859
1060
|
.n("DirectoryServiceClient", "UpdateTrustCommand")
|
|
3860
|
-
.sc(UpdateTrust$)
|
|
1061
|
+
.sc(schemas_0.UpdateTrust$)
|
|
3861
1062
|
.build() {
|
|
3862
1063
|
}
|
|
3863
1064
|
|
|
@@ -3869,7 +1070,7 @@ class VerifyTrustCommand extends smithyClient.Command
|
|
|
3869
1070
|
})
|
|
3870
1071
|
.s("DirectoryService_20150416", "VerifyTrust", {})
|
|
3871
1072
|
.n("DirectoryServiceClient", "VerifyTrustCommand")
|
|
3872
|
-
.sc(VerifyTrust$)
|
|
1073
|
+
.sc(schemas_0.VerifyTrust$)
|
|
3873
1074
|
.build() {
|
|
3874
1075
|
}
|
|
3875
1076
|
|
|
@@ -4280,494 +1481,127 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4280
1481
|
enumerable: true,
|
|
4281
1482
|
get: function () { return smithyClient.Client; }
|
|
4282
1483
|
});
|
|
4283
|
-
exports
|
|
4284
|
-
|
|
4285
|
-
|
|
1484
|
+
Object.defineProperty(exports, "DirectoryServiceServiceException", {
|
|
1485
|
+
enumerable: true,
|
|
1486
|
+
get: function () { return DirectoryServiceServiceException.DirectoryServiceServiceException; }
|
|
1487
|
+
});
|
|
4286
1488
|
exports.AcceptSharedDirectoryCommand = AcceptSharedDirectoryCommand;
|
|
4287
|
-
exports.AcceptSharedDirectoryRequest$ = AcceptSharedDirectoryRequest$;
|
|
4288
|
-
exports.AcceptSharedDirectoryResult$ = AcceptSharedDirectoryResult$;
|
|
4289
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
4290
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
4291
|
-
exports.AddIpRoutes$ = AddIpRoutes$;
|
|
4292
1489
|
exports.AddIpRoutesCommand = AddIpRoutesCommand;
|
|
4293
|
-
exports.AddIpRoutesRequest$ = AddIpRoutesRequest$;
|
|
4294
|
-
exports.AddIpRoutesResult$ = AddIpRoutesResult$;
|
|
4295
|
-
exports.AddRegion$ = AddRegion$;
|
|
4296
1490
|
exports.AddRegionCommand = AddRegionCommand;
|
|
4297
|
-
exports.AddRegionRequest$ = AddRegionRequest$;
|
|
4298
|
-
exports.AddRegionResult$ = AddRegionResult$;
|
|
4299
|
-
exports.AddTagsToResource$ = AddTagsToResource$;
|
|
4300
1491
|
exports.AddTagsToResourceCommand = AddTagsToResourceCommand;
|
|
4301
|
-
exports.AddTagsToResourceRequest$ = AddTagsToResourceRequest$;
|
|
4302
|
-
exports.AddTagsToResourceResult$ = AddTagsToResourceResult$;
|
|
4303
|
-
exports.Assessment$ = Assessment$;
|
|
4304
|
-
exports.AssessmentConfiguration$ = AssessmentConfiguration$;
|
|
4305
|
-
exports.AssessmentReport$ = AssessmentReport$;
|
|
4306
|
-
exports.AssessmentSummary$ = AssessmentSummary$;
|
|
4307
|
-
exports.AssessmentValidation$ = AssessmentValidation$;
|
|
4308
|
-
exports.Attribute$ = Attribute$;
|
|
4309
|
-
exports.AuthenticationFailedException = AuthenticationFailedException;
|
|
4310
|
-
exports.AuthenticationFailedException$ = AuthenticationFailedException$;
|
|
4311
1492
|
exports.CaEnrollmentPolicyStatus = CaEnrollmentPolicyStatus;
|
|
4312
|
-
exports.CancelSchemaExtension$ = CancelSchemaExtension$;
|
|
4313
1493
|
exports.CancelSchemaExtensionCommand = CancelSchemaExtensionCommand;
|
|
4314
|
-
exports.CancelSchemaExtensionRequest$ = CancelSchemaExtensionRequest$;
|
|
4315
|
-
exports.CancelSchemaExtensionResult$ = CancelSchemaExtensionResult$;
|
|
4316
|
-
exports.Certificate$ = Certificate$;
|
|
4317
|
-
exports.CertificateAlreadyExistsException = CertificateAlreadyExistsException;
|
|
4318
|
-
exports.CertificateAlreadyExistsException$ = CertificateAlreadyExistsException$;
|
|
4319
|
-
exports.CertificateDoesNotExistException = CertificateDoesNotExistException;
|
|
4320
|
-
exports.CertificateDoesNotExistException$ = CertificateDoesNotExistException$;
|
|
4321
|
-
exports.CertificateInUseException = CertificateInUseException;
|
|
4322
|
-
exports.CertificateInUseException$ = CertificateInUseException$;
|
|
4323
|
-
exports.CertificateInfo$ = CertificateInfo$;
|
|
4324
|
-
exports.CertificateLimitExceededException = CertificateLimitExceededException;
|
|
4325
|
-
exports.CertificateLimitExceededException$ = CertificateLimitExceededException$;
|
|
4326
1494
|
exports.CertificateState = CertificateState;
|
|
4327
1495
|
exports.CertificateType = CertificateType;
|
|
4328
|
-
exports.ClientAuthenticationSettingInfo$ = ClientAuthenticationSettingInfo$;
|
|
4329
1496
|
exports.ClientAuthenticationStatus = ClientAuthenticationStatus;
|
|
4330
1497
|
exports.ClientAuthenticationType = ClientAuthenticationType;
|
|
4331
|
-
exports.ClientCertAuthSettings$ = ClientCertAuthSettings$;
|
|
4332
|
-
exports.ClientException = ClientException;
|
|
4333
|
-
exports.ClientException$ = ClientException$;
|
|
4334
|
-
exports.Computer$ = Computer$;
|
|
4335
|
-
exports.ConditionalForwarder$ = ConditionalForwarder$;
|
|
4336
|
-
exports.ConnectDirectory$ = ConnectDirectory$;
|
|
4337
1498
|
exports.ConnectDirectoryCommand = ConnectDirectoryCommand;
|
|
4338
|
-
exports.ConnectDirectoryRequest$ = ConnectDirectoryRequest$;
|
|
4339
|
-
exports.ConnectDirectoryResult$ = ConnectDirectoryResult$;
|
|
4340
|
-
exports.CreateAlias$ = CreateAlias$;
|
|
4341
1499
|
exports.CreateAliasCommand = CreateAliasCommand;
|
|
4342
|
-
exports.CreateAliasRequest$ = CreateAliasRequest$;
|
|
4343
|
-
exports.CreateAliasResult$ = CreateAliasResult$;
|
|
4344
|
-
exports.CreateComputer$ = CreateComputer$;
|
|
4345
1500
|
exports.CreateComputerCommand = CreateComputerCommand;
|
|
4346
|
-
exports.CreateComputerRequest$ = CreateComputerRequest$;
|
|
4347
|
-
exports.CreateComputerResult$ = CreateComputerResult$;
|
|
4348
|
-
exports.CreateConditionalForwarder$ = CreateConditionalForwarder$;
|
|
4349
1501
|
exports.CreateConditionalForwarderCommand = CreateConditionalForwarderCommand;
|
|
4350
|
-
exports.CreateConditionalForwarderRequest$ = CreateConditionalForwarderRequest$;
|
|
4351
|
-
exports.CreateConditionalForwarderResult$ = CreateConditionalForwarderResult$;
|
|
4352
|
-
exports.CreateDirectory$ = CreateDirectory$;
|
|
4353
1502
|
exports.CreateDirectoryCommand = CreateDirectoryCommand;
|
|
4354
|
-
exports.CreateDirectoryRequest$ = CreateDirectoryRequest$;
|
|
4355
|
-
exports.CreateDirectoryResult$ = CreateDirectoryResult$;
|
|
4356
|
-
exports.CreateHybridAD$ = CreateHybridAD$;
|
|
4357
1503
|
exports.CreateHybridADCommand = CreateHybridADCommand;
|
|
4358
|
-
exports.CreateHybridADRequest$ = CreateHybridADRequest$;
|
|
4359
|
-
exports.CreateHybridADResult$ = CreateHybridADResult$;
|
|
4360
|
-
exports.CreateLogSubscription$ = CreateLogSubscription$;
|
|
4361
1504
|
exports.CreateLogSubscriptionCommand = CreateLogSubscriptionCommand;
|
|
4362
|
-
exports.CreateLogSubscriptionRequest$ = CreateLogSubscriptionRequest$;
|
|
4363
|
-
exports.CreateLogSubscriptionResult$ = CreateLogSubscriptionResult$;
|
|
4364
|
-
exports.CreateMicrosoftAD$ = CreateMicrosoftAD$;
|
|
4365
1505
|
exports.CreateMicrosoftADCommand = CreateMicrosoftADCommand;
|
|
4366
|
-
exports.CreateMicrosoftADRequest$ = CreateMicrosoftADRequest$;
|
|
4367
|
-
exports.CreateMicrosoftADResult$ = CreateMicrosoftADResult$;
|
|
4368
|
-
exports.CreateSnapshot$ = CreateSnapshot$;
|
|
4369
1506
|
exports.CreateSnapshotCommand = CreateSnapshotCommand;
|
|
4370
|
-
exports.CreateSnapshotRequest$ = CreateSnapshotRequest$;
|
|
4371
|
-
exports.CreateSnapshotResult$ = CreateSnapshotResult$;
|
|
4372
|
-
exports.CreateTrust$ = CreateTrust$;
|
|
4373
1507
|
exports.CreateTrustCommand = CreateTrustCommand;
|
|
4374
|
-
exports.CreateTrustRequest$ = CreateTrustRequest$;
|
|
4375
|
-
exports.CreateTrustResult$ = CreateTrustResult$;
|
|
4376
1508
|
exports.DataAccessStatus = DataAccessStatus;
|
|
4377
|
-
exports.DeleteADAssessment$ = DeleteADAssessment$;
|
|
4378
1509
|
exports.DeleteADAssessmentCommand = DeleteADAssessmentCommand;
|
|
4379
|
-
exports.DeleteADAssessmentRequest$ = DeleteADAssessmentRequest$;
|
|
4380
|
-
exports.DeleteADAssessmentResult$ = DeleteADAssessmentResult$;
|
|
4381
|
-
exports.DeleteConditionalForwarder$ = DeleteConditionalForwarder$;
|
|
4382
1510
|
exports.DeleteConditionalForwarderCommand = DeleteConditionalForwarderCommand;
|
|
4383
|
-
exports.DeleteConditionalForwarderRequest$ = DeleteConditionalForwarderRequest$;
|
|
4384
|
-
exports.DeleteConditionalForwarderResult$ = DeleteConditionalForwarderResult$;
|
|
4385
|
-
exports.DeleteDirectory$ = DeleteDirectory$;
|
|
4386
1511
|
exports.DeleteDirectoryCommand = DeleteDirectoryCommand;
|
|
4387
|
-
exports.DeleteDirectoryRequest$ = DeleteDirectoryRequest$;
|
|
4388
|
-
exports.DeleteDirectoryResult$ = DeleteDirectoryResult$;
|
|
4389
|
-
exports.DeleteLogSubscription$ = DeleteLogSubscription$;
|
|
4390
1512
|
exports.DeleteLogSubscriptionCommand = DeleteLogSubscriptionCommand;
|
|
4391
|
-
exports.DeleteLogSubscriptionRequest$ = DeleteLogSubscriptionRequest$;
|
|
4392
|
-
exports.DeleteLogSubscriptionResult$ = DeleteLogSubscriptionResult$;
|
|
4393
|
-
exports.DeleteSnapshot$ = DeleteSnapshot$;
|
|
4394
1513
|
exports.DeleteSnapshotCommand = DeleteSnapshotCommand;
|
|
4395
|
-
exports.DeleteSnapshotRequest$ = DeleteSnapshotRequest$;
|
|
4396
|
-
exports.DeleteSnapshotResult$ = DeleteSnapshotResult$;
|
|
4397
|
-
exports.DeleteTrust$ = DeleteTrust$;
|
|
4398
1514
|
exports.DeleteTrustCommand = DeleteTrustCommand;
|
|
4399
|
-
exports.DeleteTrustRequest$ = DeleteTrustRequest$;
|
|
4400
|
-
exports.DeleteTrustResult$ = DeleteTrustResult$;
|
|
4401
|
-
exports.DeregisterCertificate$ = DeregisterCertificate$;
|
|
4402
1515
|
exports.DeregisterCertificateCommand = DeregisterCertificateCommand;
|
|
4403
|
-
exports.DeregisterCertificateRequest$ = DeregisterCertificateRequest$;
|
|
4404
|
-
exports.DeregisterCertificateResult$ = DeregisterCertificateResult$;
|
|
4405
|
-
exports.DeregisterEventTopic$ = DeregisterEventTopic$;
|
|
4406
1516
|
exports.DeregisterEventTopicCommand = DeregisterEventTopicCommand;
|
|
4407
|
-
exports.DeregisterEventTopicRequest$ = DeregisterEventTopicRequest$;
|
|
4408
|
-
exports.DeregisterEventTopicResult$ = DeregisterEventTopicResult$;
|
|
4409
|
-
exports.DescribeADAssessment$ = DescribeADAssessment$;
|
|
4410
1517
|
exports.DescribeADAssessmentCommand = DescribeADAssessmentCommand;
|
|
4411
|
-
exports.DescribeADAssessmentRequest$ = DescribeADAssessmentRequest$;
|
|
4412
|
-
exports.DescribeADAssessmentResult$ = DescribeADAssessmentResult$;
|
|
4413
|
-
exports.DescribeCAEnrollmentPolicy$ = DescribeCAEnrollmentPolicy$;
|
|
4414
1518
|
exports.DescribeCAEnrollmentPolicyCommand = DescribeCAEnrollmentPolicyCommand;
|
|
4415
|
-
exports.DescribeCAEnrollmentPolicyRequest$ = DescribeCAEnrollmentPolicyRequest$;
|
|
4416
|
-
exports.DescribeCAEnrollmentPolicyResult$ = DescribeCAEnrollmentPolicyResult$;
|
|
4417
|
-
exports.DescribeCertificate$ = DescribeCertificate$;
|
|
4418
1519
|
exports.DescribeCertificateCommand = DescribeCertificateCommand;
|
|
4419
|
-
exports.DescribeCertificateRequest$ = DescribeCertificateRequest$;
|
|
4420
|
-
exports.DescribeCertificateResult$ = DescribeCertificateResult$;
|
|
4421
|
-
exports.DescribeClientAuthenticationSettings$ = DescribeClientAuthenticationSettings$;
|
|
4422
1520
|
exports.DescribeClientAuthenticationSettingsCommand = DescribeClientAuthenticationSettingsCommand;
|
|
4423
|
-
exports.DescribeClientAuthenticationSettingsRequest$ = DescribeClientAuthenticationSettingsRequest$;
|
|
4424
|
-
exports.DescribeClientAuthenticationSettingsResult$ = DescribeClientAuthenticationSettingsResult$;
|
|
4425
|
-
exports.DescribeConditionalForwarders$ = DescribeConditionalForwarders$;
|
|
4426
1521
|
exports.DescribeConditionalForwardersCommand = DescribeConditionalForwardersCommand;
|
|
4427
|
-
exports.DescribeConditionalForwardersRequest$ = DescribeConditionalForwardersRequest$;
|
|
4428
|
-
exports.DescribeConditionalForwardersResult$ = DescribeConditionalForwardersResult$;
|
|
4429
|
-
exports.DescribeDirectories$ = DescribeDirectories$;
|
|
4430
1522
|
exports.DescribeDirectoriesCommand = DescribeDirectoriesCommand;
|
|
4431
|
-
exports.DescribeDirectoriesRequest$ = DescribeDirectoriesRequest$;
|
|
4432
|
-
exports.DescribeDirectoriesResult$ = DescribeDirectoriesResult$;
|
|
4433
|
-
exports.DescribeDirectoryDataAccess$ = DescribeDirectoryDataAccess$;
|
|
4434
1523
|
exports.DescribeDirectoryDataAccessCommand = DescribeDirectoryDataAccessCommand;
|
|
4435
|
-
exports.DescribeDirectoryDataAccessRequest$ = DescribeDirectoryDataAccessRequest$;
|
|
4436
|
-
exports.DescribeDirectoryDataAccessResult$ = DescribeDirectoryDataAccessResult$;
|
|
4437
|
-
exports.DescribeDomainControllers$ = DescribeDomainControllers$;
|
|
4438
1524
|
exports.DescribeDomainControllersCommand = DescribeDomainControllersCommand;
|
|
4439
|
-
exports.DescribeDomainControllersRequest$ = DescribeDomainControllersRequest$;
|
|
4440
|
-
exports.DescribeDomainControllersResult$ = DescribeDomainControllersResult$;
|
|
4441
|
-
exports.DescribeEventTopics$ = DescribeEventTopics$;
|
|
4442
1525
|
exports.DescribeEventTopicsCommand = DescribeEventTopicsCommand;
|
|
4443
|
-
exports.DescribeEventTopicsRequest$ = DescribeEventTopicsRequest$;
|
|
4444
|
-
exports.DescribeEventTopicsResult$ = DescribeEventTopicsResult$;
|
|
4445
|
-
exports.DescribeHybridADUpdate$ = DescribeHybridADUpdate$;
|
|
4446
1526
|
exports.DescribeHybridADUpdateCommand = DescribeHybridADUpdateCommand;
|
|
4447
|
-
exports.DescribeHybridADUpdateRequest$ = DescribeHybridADUpdateRequest$;
|
|
4448
|
-
exports.DescribeHybridADUpdateResult$ = DescribeHybridADUpdateResult$;
|
|
4449
|
-
exports.DescribeLDAPSSettings$ = DescribeLDAPSSettings$;
|
|
4450
1527
|
exports.DescribeLDAPSSettingsCommand = DescribeLDAPSSettingsCommand;
|
|
4451
|
-
exports.DescribeLDAPSSettingsRequest$ = DescribeLDAPSSettingsRequest$;
|
|
4452
|
-
exports.DescribeLDAPSSettingsResult$ = DescribeLDAPSSettingsResult$;
|
|
4453
|
-
exports.DescribeRegions$ = DescribeRegions$;
|
|
4454
1528
|
exports.DescribeRegionsCommand = DescribeRegionsCommand;
|
|
4455
|
-
exports.DescribeRegionsRequest$ = DescribeRegionsRequest$;
|
|
4456
|
-
exports.DescribeRegionsResult$ = DescribeRegionsResult$;
|
|
4457
|
-
exports.DescribeSettings$ = DescribeSettings$;
|
|
4458
1529
|
exports.DescribeSettingsCommand = DescribeSettingsCommand;
|
|
4459
|
-
exports.DescribeSettingsRequest$ = DescribeSettingsRequest$;
|
|
4460
|
-
exports.DescribeSettingsResult$ = DescribeSettingsResult$;
|
|
4461
|
-
exports.DescribeSharedDirectories$ = DescribeSharedDirectories$;
|
|
4462
1530
|
exports.DescribeSharedDirectoriesCommand = DescribeSharedDirectoriesCommand;
|
|
4463
|
-
exports.DescribeSharedDirectoriesRequest$ = DescribeSharedDirectoriesRequest$;
|
|
4464
|
-
exports.DescribeSharedDirectoriesResult$ = DescribeSharedDirectoriesResult$;
|
|
4465
|
-
exports.DescribeSnapshots$ = DescribeSnapshots$;
|
|
4466
1531
|
exports.DescribeSnapshotsCommand = DescribeSnapshotsCommand;
|
|
4467
|
-
exports.DescribeSnapshotsRequest$ = DescribeSnapshotsRequest$;
|
|
4468
|
-
exports.DescribeSnapshotsResult$ = DescribeSnapshotsResult$;
|
|
4469
|
-
exports.DescribeTrusts$ = DescribeTrusts$;
|
|
4470
1532
|
exports.DescribeTrustsCommand = DescribeTrustsCommand;
|
|
4471
|
-
exports.DescribeTrustsRequest$ = DescribeTrustsRequest$;
|
|
4472
|
-
exports.DescribeTrustsResult$ = DescribeTrustsResult$;
|
|
4473
|
-
exports.DescribeUpdateDirectory$ = DescribeUpdateDirectory$;
|
|
4474
1533
|
exports.DescribeUpdateDirectoryCommand = DescribeUpdateDirectoryCommand;
|
|
4475
|
-
exports.DescribeUpdateDirectoryRequest$ = DescribeUpdateDirectoryRequest$;
|
|
4476
|
-
exports.DescribeUpdateDirectoryResult$ = DescribeUpdateDirectoryResult$;
|
|
4477
|
-
exports.DirectoryAlreadyInRegionException = DirectoryAlreadyInRegionException;
|
|
4478
|
-
exports.DirectoryAlreadyInRegionException$ = DirectoryAlreadyInRegionException$;
|
|
4479
|
-
exports.DirectoryAlreadySharedException = DirectoryAlreadySharedException;
|
|
4480
|
-
exports.DirectoryAlreadySharedException$ = DirectoryAlreadySharedException$;
|
|
4481
1534
|
exports.DirectoryConfigurationStatus = DirectoryConfigurationStatus;
|
|
4482
|
-
exports.DirectoryConnectSettings$ = DirectoryConnectSettings$;
|
|
4483
|
-
exports.DirectoryConnectSettingsDescription$ = DirectoryConnectSettingsDescription$;
|
|
4484
|
-
exports.DirectoryDescription$ = DirectoryDescription$;
|
|
4485
|
-
exports.DirectoryDoesNotExistException = DirectoryDoesNotExistException;
|
|
4486
|
-
exports.DirectoryDoesNotExistException$ = DirectoryDoesNotExistException$;
|
|
4487
1535
|
exports.DirectoryEdition = DirectoryEdition;
|
|
4488
|
-
exports.DirectoryInDesiredStateException = DirectoryInDesiredStateException;
|
|
4489
|
-
exports.DirectoryInDesiredStateException$ = DirectoryInDesiredStateException$;
|
|
4490
|
-
exports.DirectoryLimitExceededException = DirectoryLimitExceededException;
|
|
4491
|
-
exports.DirectoryLimitExceededException$ = DirectoryLimitExceededException$;
|
|
4492
|
-
exports.DirectoryLimits$ = DirectoryLimits$;
|
|
4493
|
-
exports.DirectoryNotSharedException = DirectoryNotSharedException;
|
|
4494
|
-
exports.DirectoryNotSharedException$ = DirectoryNotSharedException$;
|
|
4495
1536
|
exports.DirectoryService = DirectoryService;
|
|
4496
1537
|
exports.DirectoryServiceClient = DirectoryServiceClient;
|
|
4497
|
-
exports.DirectoryServiceServiceException = DirectoryServiceServiceException;
|
|
4498
|
-
exports.DirectoryServiceServiceException$ = DirectoryServiceServiceException$;
|
|
4499
1538
|
exports.DirectorySize = DirectorySize;
|
|
4500
|
-
exports.DirectorySizeUpdateSettings$ = DirectorySizeUpdateSettings$;
|
|
4501
1539
|
exports.DirectoryStage = DirectoryStage;
|
|
4502
1540
|
exports.DirectoryType = DirectoryType;
|
|
4503
|
-
exports.DirectoryUnavailableException = DirectoryUnavailableException;
|
|
4504
|
-
exports.DirectoryUnavailableException$ = DirectoryUnavailableException$;
|
|
4505
|
-
exports.DirectoryVpcSettings$ = DirectoryVpcSettings$;
|
|
4506
|
-
exports.DirectoryVpcSettingsDescription$ = DirectoryVpcSettingsDescription$;
|
|
4507
|
-
exports.DisableAlreadyInProgressException = DisableAlreadyInProgressException;
|
|
4508
|
-
exports.DisableAlreadyInProgressException$ = DisableAlreadyInProgressException$;
|
|
4509
|
-
exports.DisableCAEnrollmentPolicy$ = DisableCAEnrollmentPolicy$;
|
|
4510
1541
|
exports.DisableCAEnrollmentPolicyCommand = DisableCAEnrollmentPolicyCommand;
|
|
4511
|
-
exports.DisableCAEnrollmentPolicyRequest$ = DisableCAEnrollmentPolicyRequest$;
|
|
4512
|
-
exports.DisableCAEnrollmentPolicyResult$ = DisableCAEnrollmentPolicyResult$;
|
|
4513
|
-
exports.DisableClientAuthentication$ = DisableClientAuthentication$;
|
|
4514
1542
|
exports.DisableClientAuthenticationCommand = DisableClientAuthenticationCommand;
|
|
4515
|
-
exports.DisableClientAuthenticationRequest$ = DisableClientAuthenticationRequest$;
|
|
4516
|
-
exports.DisableClientAuthenticationResult$ = DisableClientAuthenticationResult$;
|
|
4517
|
-
exports.DisableDirectoryDataAccess$ = DisableDirectoryDataAccess$;
|
|
4518
1543
|
exports.DisableDirectoryDataAccessCommand = DisableDirectoryDataAccessCommand;
|
|
4519
|
-
exports.DisableDirectoryDataAccessRequest$ = DisableDirectoryDataAccessRequest$;
|
|
4520
|
-
exports.DisableDirectoryDataAccessResult$ = DisableDirectoryDataAccessResult$;
|
|
4521
|
-
exports.DisableLDAPS$ = DisableLDAPS$;
|
|
4522
1544
|
exports.DisableLDAPSCommand = DisableLDAPSCommand;
|
|
4523
|
-
exports.DisableLDAPSRequest$ = DisableLDAPSRequest$;
|
|
4524
|
-
exports.DisableLDAPSResult$ = DisableLDAPSResult$;
|
|
4525
|
-
exports.DisableRadius$ = DisableRadius$;
|
|
4526
1545
|
exports.DisableRadiusCommand = DisableRadiusCommand;
|
|
4527
|
-
exports.DisableRadiusRequest$ = DisableRadiusRequest$;
|
|
4528
|
-
exports.DisableRadiusResult$ = DisableRadiusResult$;
|
|
4529
|
-
exports.DisableSso$ = DisableSso$;
|
|
4530
1546
|
exports.DisableSsoCommand = DisableSsoCommand;
|
|
4531
|
-
exports.DisableSsoRequest$ = DisableSsoRequest$;
|
|
4532
|
-
exports.DisableSsoResult$ = DisableSsoResult$;
|
|
4533
|
-
exports.DomainController$ = DomainController$;
|
|
4534
|
-
exports.DomainControllerLimitExceededException = DomainControllerLimitExceededException;
|
|
4535
|
-
exports.DomainControllerLimitExceededException$ = DomainControllerLimitExceededException$;
|
|
4536
1547
|
exports.DomainControllerStatus = DomainControllerStatus;
|
|
4537
|
-
exports.EnableAlreadyInProgressException = EnableAlreadyInProgressException;
|
|
4538
|
-
exports.EnableAlreadyInProgressException$ = EnableAlreadyInProgressException$;
|
|
4539
|
-
exports.EnableCAEnrollmentPolicy$ = EnableCAEnrollmentPolicy$;
|
|
4540
1548
|
exports.EnableCAEnrollmentPolicyCommand = EnableCAEnrollmentPolicyCommand;
|
|
4541
|
-
exports.EnableCAEnrollmentPolicyRequest$ = EnableCAEnrollmentPolicyRequest$;
|
|
4542
|
-
exports.EnableCAEnrollmentPolicyResult$ = EnableCAEnrollmentPolicyResult$;
|
|
4543
|
-
exports.EnableClientAuthentication$ = EnableClientAuthentication$;
|
|
4544
1549
|
exports.EnableClientAuthenticationCommand = EnableClientAuthenticationCommand;
|
|
4545
|
-
exports.EnableClientAuthenticationRequest$ = EnableClientAuthenticationRequest$;
|
|
4546
|
-
exports.EnableClientAuthenticationResult$ = EnableClientAuthenticationResult$;
|
|
4547
|
-
exports.EnableDirectoryDataAccess$ = EnableDirectoryDataAccess$;
|
|
4548
1550
|
exports.EnableDirectoryDataAccessCommand = EnableDirectoryDataAccessCommand;
|
|
4549
|
-
exports.EnableDirectoryDataAccessRequest$ = EnableDirectoryDataAccessRequest$;
|
|
4550
|
-
exports.EnableDirectoryDataAccessResult$ = EnableDirectoryDataAccessResult$;
|
|
4551
|
-
exports.EnableLDAPS$ = EnableLDAPS$;
|
|
4552
1551
|
exports.EnableLDAPSCommand = EnableLDAPSCommand;
|
|
4553
|
-
exports.EnableLDAPSRequest$ = EnableLDAPSRequest$;
|
|
4554
|
-
exports.EnableLDAPSResult$ = EnableLDAPSResult$;
|
|
4555
|
-
exports.EnableRadius$ = EnableRadius$;
|
|
4556
1552
|
exports.EnableRadiusCommand = EnableRadiusCommand;
|
|
4557
|
-
exports.EnableRadiusRequest$ = EnableRadiusRequest$;
|
|
4558
|
-
exports.EnableRadiusResult$ = EnableRadiusResult$;
|
|
4559
|
-
exports.EnableSso$ = EnableSso$;
|
|
4560
1553
|
exports.EnableSsoCommand = EnableSsoCommand;
|
|
4561
|
-
exports.EnableSsoRequest$ = EnableSsoRequest$;
|
|
4562
|
-
exports.EnableSsoResult$ = EnableSsoResult$;
|
|
4563
|
-
exports.EntityAlreadyExistsException = EntityAlreadyExistsException;
|
|
4564
|
-
exports.EntityAlreadyExistsException$ = EntityAlreadyExistsException$;
|
|
4565
|
-
exports.EntityDoesNotExistException = EntityDoesNotExistException;
|
|
4566
|
-
exports.EntityDoesNotExistException$ = EntityDoesNotExistException$;
|
|
4567
|
-
exports.EventTopic$ = EventTopic$;
|
|
4568
|
-
exports.GetDirectoryLimits$ = GetDirectoryLimits$;
|
|
4569
1554
|
exports.GetDirectoryLimitsCommand = GetDirectoryLimitsCommand;
|
|
4570
|
-
exports.GetDirectoryLimitsRequest$ = GetDirectoryLimitsRequest$;
|
|
4571
|
-
exports.GetDirectoryLimitsResult$ = GetDirectoryLimitsResult$;
|
|
4572
|
-
exports.GetSnapshotLimits$ = GetSnapshotLimits$;
|
|
4573
1555
|
exports.GetSnapshotLimitsCommand = GetSnapshotLimitsCommand;
|
|
4574
|
-
exports.GetSnapshotLimitsRequest$ = GetSnapshotLimitsRequest$;
|
|
4575
|
-
exports.GetSnapshotLimitsResult$ = GetSnapshotLimitsResult$;
|
|
4576
|
-
exports.HybridAdministratorAccountUpdate$ = HybridAdministratorAccountUpdate$;
|
|
4577
|
-
exports.HybridCustomerInstancesSettings$ = HybridCustomerInstancesSettings$;
|
|
4578
|
-
exports.HybridSettingsDescription$ = HybridSettingsDescription$;
|
|
4579
|
-
exports.HybridUpdateActivities$ = HybridUpdateActivities$;
|
|
4580
|
-
exports.HybridUpdateInfoEntry$ = HybridUpdateInfoEntry$;
|
|
4581
1556
|
exports.HybridUpdateType = HybridUpdateType;
|
|
4582
|
-
exports.HybridUpdateValue$ = HybridUpdateValue$;
|
|
4583
|
-
exports.IncompatibleSettingsException = IncompatibleSettingsException;
|
|
4584
|
-
exports.IncompatibleSettingsException$ = IncompatibleSettingsException$;
|
|
4585
|
-
exports.InsufficientPermissionsException = InsufficientPermissionsException;
|
|
4586
|
-
exports.InsufficientPermissionsException$ = InsufficientPermissionsException$;
|
|
4587
|
-
exports.InvalidCertificateException = InvalidCertificateException;
|
|
4588
|
-
exports.InvalidCertificateException$ = InvalidCertificateException$;
|
|
4589
|
-
exports.InvalidClientAuthStatusException = InvalidClientAuthStatusException;
|
|
4590
|
-
exports.InvalidClientAuthStatusException$ = InvalidClientAuthStatusException$;
|
|
4591
|
-
exports.InvalidLDAPSStatusException = InvalidLDAPSStatusException;
|
|
4592
|
-
exports.InvalidLDAPSStatusException$ = InvalidLDAPSStatusException$;
|
|
4593
|
-
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
4594
|
-
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
4595
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
4596
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
4597
|
-
exports.InvalidPasswordException = InvalidPasswordException;
|
|
4598
|
-
exports.InvalidPasswordException$ = InvalidPasswordException$;
|
|
4599
|
-
exports.InvalidTargetException = InvalidTargetException;
|
|
4600
|
-
exports.InvalidTargetException$ = InvalidTargetException$;
|
|
4601
|
-
exports.IpRoute$ = IpRoute$;
|
|
4602
|
-
exports.IpRouteInfo$ = IpRouteInfo$;
|
|
4603
|
-
exports.IpRouteLimitExceededException = IpRouteLimitExceededException;
|
|
4604
|
-
exports.IpRouteLimitExceededException$ = IpRouteLimitExceededException$;
|
|
4605
1557
|
exports.IpRouteStatusMsg = IpRouteStatusMsg;
|
|
4606
|
-
exports.LDAPSSettingInfo$ = LDAPSSettingInfo$;
|
|
4607
1558
|
exports.LDAPSStatus = LDAPSStatus;
|
|
4608
1559
|
exports.LDAPSType = LDAPSType;
|
|
4609
|
-
exports.ListADAssessments$ = ListADAssessments$;
|
|
4610
1560
|
exports.ListADAssessmentsCommand = ListADAssessmentsCommand;
|
|
4611
|
-
exports.ListADAssessmentsRequest$ = ListADAssessmentsRequest$;
|
|
4612
|
-
exports.ListADAssessmentsResult$ = ListADAssessmentsResult$;
|
|
4613
|
-
exports.ListCertificates$ = ListCertificates$;
|
|
4614
1561
|
exports.ListCertificatesCommand = ListCertificatesCommand;
|
|
4615
|
-
exports.ListCertificatesRequest$ = ListCertificatesRequest$;
|
|
4616
|
-
exports.ListCertificatesResult$ = ListCertificatesResult$;
|
|
4617
|
-
exports.ListIpRoutes$ = ListIpRoutes$;
|
|
4618
1562
|
exports.ListIpRoutesCommand = ListIpRoutesCommand;
|
|
4619
|
-
exports.ListIpRoutesRequest$ = ListIpRoutesRequest$;
|
|
4620
|
-
exports.ListIpRoutesResult$ = ListIpRoutesResult$;
|
|
4621
|
-
exports.ListLogSubscriptions$ = ListLogSubscriptions$;
|
|
4622
1563
|
exports.ListLogSubscriptionsCommand = ListLogSubscriptionsCommand;
|
|
4623
|
-
exports.ListLogSubscriptionsRequest$ = ListLogSubscriptionsRequest$;
|
|
4624
|
-
exports.ListLogSubscriptionsResult$ = ListLogSubscriptionsResult$;
|
|
4625
|
-
exports.ListSchemaExtensions$ = ListSchemaExtensions$;
|
|
4626
1564
|
exports.ListSchemaExtensionsCommand = ListSchemaExtensionsCommand;
|
|
4627
|
-
exports.ListSchemaExtensionsRequest$ = ListSchemaExtensionsRequest$;
|
|
4628
|
-
exports.ListSchemaExtensionsResult$ = ListSchemaExtensionsResult$;
|
|
4629
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
4630
1565
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4631
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4632
|
-
exports.ListTagsForResourceResult$ = ListTagsForResourceResult$;
|
|
4633
|
-
exports.LogSubscription$ = LogSubscription$;
|
|
4634
1566
|
exports.NetworkType = NetworkType;
|
|
4635
|
-
exports.NetworkUpdateSettings$ = NetworkUpdateSettings$;
|
|
4636
|
-
exports.NoAvailableCertificateException = NoAvailableCertificateException;
|
|
4637
|
-
exports.NoAvailableCertificateException$ = NoAvailableCertificateException$;
|
|
4638
|
-
exports.OSUpdateSettings$ = OSUpdateSettings$;
|
|
4639
1567
|
exports.OSVersion = OSVersion;
|
|
4640
|
-
exports.OrganizationsException = OrganizationsException;
|
|
4641
|
-
exports.OrganizationsException$ = OrganizationsException$;
|
|
4642
|
-
exports.OwnerDirectoryDescription$ = OwnerDirectoryDescription$;
|
|
4643
1568
|
exports.RadiusAuthenticationProtocol = RadiusAuthenticationProtocol;
|
|
4644
|
-
exports.RadiusSettings$ = RadiusSettings$;
|
|
4645
1569
|
exports.RadiusStatus = RadiusStatus;
|
|
4646
|
-
exports.RegionDescription$ = RegionDescription$;
|
|
4647
|
-
exports.RegionLimitExceededException = RegionLimitExceededException;
|
|
4648
|
-
exports.RegionLimitExceededException$ = RegionLimitExceededException$;
|
|
4649
1570
|
exports.RegionType = RegionType;
|
|
4650
|
-
exports.RegionsInfo$ = RegionsInfo$;
|
|
4651
|
-
exports.RegisterCertificate$ = RegisterCertificate$;
|
|
4652
1571
|
exports.RegisterCertificateCommand = RegisterCertificateCommand;
|
|
4653
|
-
exports.RegisterCertificateRequest$ = RegisterCertificateRequest$;
|
|
4654
|
-
exports.RegisterCertificateResult$ = RegisterCertificateResult$;
|
|
4655
|
-
exports.RegisterEventTopic$ = RegisterEventTopic$;
|
|
4656
1572
|
exports.RegisterEventTopicCommand = RegisterEventTopicCommand;
|
|
4657
|
-
exports.RegisterEventTopicRequest$ = RegisterEventTopicRequest$;
|
|
4658
|
-
exports.RegisterEventTopicResult$ = RegisterEventTopicResult$;
|
|
4659
|
-
exports.RejectSharedDirectory$ = RejectSharedDirectory$;
|
|
4660
1573
|
exports.RejectSharedDirectoryCommand = RejectSharedDirectoryCommand;
|
|
4661
|
-
exports.RejectSharedDirectoryRequest$ = RejectSharedDirectoryRequest$;
|
|
4662
|
-
exports.RejectSharedDirectoryResult$ = RejectSharedDirectoryResult$;
|
|
4663
|
-
exports.RemoveIpRoutes$ = RemoveIpRoutes$;
|
|
4664
1574
|
exports.RemoveIpRoutesCommand = RemoveIpRoutesCommand;
|
|
4665
|
-
exports.RemoveIpRoutesRequest$ = RemoveIpRoutesRequest$;
|
|
4666
|
-
exports.RemoveIpRoutesResult$ = RemoveIpRoutesResult$;
|
|
4667
|
-
exports.RemoveRegion$ = RemoveRegion$;
|
|
4668
1575
|
exports.RemoveRegionCommand = RemoveRegionCommand;
|
|
4669
|
-
exports.RemoveRegionRequest$ = RemoveRegionRequest$;
|
|
4670
|
-
exports.RemoveRegionResult$ = RemoveRegionResult$;
|
|
4671
|
-
exports.RemoveTagsFromResource$ = RemoveTagsFromResource$;
|
|
4672
1576
|
exports.RemoveTagsFromResourceCommand = RemoveTagsFromResourceCommand;
|
|
4673
|
-
exports.RemoveTagsFromResourceRequest$ = RemoveTagsFromResourceRequest$;
|
|
4674
|
-
exports.RemoveTagsFromResourceResult$ = RemoveTagsFromResourceResult$;
|
|
4675
1577
|
exports.ReplicationScope = ReplicationScope;
|
|
4676
|
-
exports.ResetUserPassword$ = ResetUserPassword$;
|
|
4677
1578
|
exports.ResetUserPasswordCommand = ResetUserPasswordCommand;
|
|
4678
|
-
exports.ResetUserPasswordRequest$ = ResetUserPasswordRequest$;
|
|
4679
|
-
exports.ResetUserPasswordResult$ = ResetUserPasswordResult$;
|
|
4680
|
-
exports.RestoreFromSnapshot$ = RestoreFromSnapshot$;
|
|
4681
1579
|
exports.RestoreFromSnapshotCommand = RestoreFromSnapshotCommand;
|
|
4682
|
-
exports.RestoreFromSnapshotRequest$ = RestoreFromSnapshotRequest$;
|
|
4683
|
-
exports.RestoreFromSnapshotResult$ = RestoreFromSnapshotResult$;
|
|
4684
|
-
exports.SchemaExtensionInfo$ = SchemaExtensionInfo$;
|
|
4685
1580
|
exports.SchemaExtensionStatus = SchemaExtensionStatus;
|
|
4686
1581
|
exports.SelectiveAuth = SelectiveAuth;
|
|
4687
|
-
exports.ServiceException = ServiceException;
|
|
4688
|
-
exports.ServiceException$ = ServiceException$;
|
|
4689
|
-
exports.Setting$ = Setting$;
|
|
4690
|
-
exports.SettingEntry$ = SettingEntry$;
|
|
4691
|
-
exports.ShareDirectory$ = ShareDirectory$;
|
|
4692
1582
|
exports.ShareDirectoryCommand = ShareDirectoryCommand;
|
|
4693
|
-
exports.ShareDirectoryRequest$ = ShareDirectoryRequest$;
|
|
4694
|
-
exports.ShareDirectoryResult$ = ShareDirectoryResult$;
|
|
4695
|
-
exports.ShareLimitExceededException = ShareLimitExceededException;
|
|
4696
|
-
exports.ShareLimitExceededException$ = ShareLimitExceededException$;
|
|
4697
1583
|
exports.ShareMethod = ShareMethod;
|
|
4698
1584
|
exports.ShareStatus = ShareStatus;
|
|
4699
|
-
exports.ShareTarget$ = ShareTarget$;
|
|
4700
|
-
exports.SharedDirectory$ = SharedDirectory$;
|
|
4701
|
-
exports.Snapshot$ = Snapshot$;
|
|
4702
|
-
exports.SnapshotLimitExceededException = SnapshotLimitExceededException;
|
|
4703
|
-
exports.SnapshotLimitExceededException$ = SnapshotLimitExceededException$;
|
|
4704
|
-
exports.SnapshotLimits$ = SnapshotLimits$;
|
|
4705
1585
|
exports.SnapshotStatus = SnapshotStatus;
|
|
4706
1586
|
exports.SnapshotType = SnapshotType;
|
|
4707
|
-
exports.StartADAssessment$ = StartADAssessment$;
|
|
4708
1587
|
exports.StartADAssessmentCommand = StartADAssessmentCommand;
|
|
4709
|
-
exports.StartADAssessmentRequest$ = StartADAssessmentRequest$;
|
|
4710
|
-
exports.StartADAssessmentResult$ = StartADAssessmentResult$;
|
|
4711
|
-
exports.StartSchemaExtension$ = StartSchemaExtension$;
|
|
4712
1588
|
exports.StartSchemaExtensionCommand = StartSchemaExtensionCommand;
|
|
4713
|
-
exports.StartSchemaExtensionRequest$ = StartSchemaExtensionRequest$;
|
|
4714
|
-
exports.StartSchemaExtensionResult$ = StartSchemaExtensionResult$;
|
|
4715
|
-
exports.Tag$ = Tag$;
|
|
4716
|
-
exports.TagLimitExceededException = TagLimitExceededException;
|
|
4717
|
-
exports.TagLimitExceededException$ = TagLimitExceededException$;
|
|
4718
1589
|
exports.TargetType = TargetType;
|
|
4719
1590
|
exports.TopicStatus = TopicStatus;
|
|
4720
|
-
exports.Trust$ = Trust$;
|
|
4721
1591
|
exports.TrustDirection = TrustDirection;
|
|
4722
1592
|
exports.TrustState = TrustState;
|
|
4723
1593
|
exports.TrustType = TrustType;
|
|
4724
|
-
exports.UnshareDirectory$ = UnshareDirectory$;
|
|
4725
1594
|
exports.UnshareDirectoryCommand = UnshareDirectoryCommand;
|
|
4726
|
-
exports.UnshareDirectoryRequest$ = UnshareDirectoryRequest$;
|
|
4727
|
-
exports.UnshareDirectoryResult$ = UnshareDirectoryResult$;
|
|
4728
|
-
exports.UnshareTarget$ = UnshareTarget$;
|
|
4729
|
-
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
4730
|
-
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
4731
|
-
exports.UnsupportedSettingsException = UnsupportedSettingsException;
|
|
4732
|
-
exports.UnsupportedSettingsException$ = UnsupportedSettingsException$;
|
|
4733
|
-
exports.UpdateConditionalForwarder$ = UpdateConditionalForwarder$;
|
|
4734
1595
|
exports.UpdateConditionalForwarderCommand = UpdateConditionalForwarderCommand;
|
|
4735
|
-
exports.UpdateConditionalForwarderRequest$ = UpdateConditionalForwarderRequest$;
|
|
4736
|
-
exports.UpdateConditionalForwarderResult$ = UpdateConditionalForwarderResult$;
|
|
4737
|
-
exports.UpdateDirectorySetup$ = UpdateDirectorySetup$;
|
|
4738
1596
|
exports.UpdateDirectorySetupCommand = UpdateDirectorySetupCommand;
|
|
4739
|
-
exports.UpdateDirectorySetupRequest$ = UpdateDirectorySetupRequest$;
|
|
4740
|
-
exports.UpdateDirectorySetupResult$ = UpdateDirectorySetupResult$;
|
|
4741
|
-
exports.UpdateHybridAD$ = UpdateHybridAD$;
|
|
4742
1597
|
exports.UpdateHybridADCommand = UpdateHybridADCommand;
|
|
4743
|
-
exports.UpdateHybridADRequest$ = UpdateHybridADRequest$;
|
|
4744
|
-
exports.UpdateHybridADResult$ = UpdateHybridADResult$;
|
|
4745
|
-
exports.UpdateInfoEntry$ = UpdateInfoEntry$;
|
|
4746
|
-
exports.UpdateNumberOfDomainControllers$ = UpdateNumberOfDomainControllers$;
|
|
4747
1598
|
exports.UpdateNumberOfDomainControllersCommand = UpdateNumberOfDomainControllersCommand;
|
|
4748
|
-
exports.UpdateNumberOfDomainControllersRequest$ = UpdateNumberOfDomainControllersRequest$;
|
|
4749
|
-
exports.UpdateNumberOfDomainControllersResult$ = UpdateNumberOfDomainControllersResult$;
|
|
4750
|
-
exports.UpdateRadius$ = UpdateRadius$;
|
|
4751
1599
|
exports.UpdateRadiusCommand = UpdateRadiusCommand;
|
|
4752
|
-
exports.UpdateRadiusRequest$ = UpdateRadiusRequest$;
|
|
4753
|
-
exports.UpdateRadiusResult$ = UpdateRadiusResult$;
|
|
4754
|
-
exports.UpdateSettings$ = UpdateSettings$;
|
|
4755
1600
|
exports.UpdateSettingsCommand = UpdateSettingsCommand;
|
|
4756
|
-
exports.UpdateSettingsRequest$ = UpdateSettingsRequest$;
|
|
4757
|
-
exports.UpdateSettingsResult$ = UpdateSettingsResult$;
|
|
4758
1601
|
exports.UpdateStatus = UpdateStatus;
|
|
4759
|
-
exports.UpdateTrust$ = UpdateTrust$;
|
|
4760
1602
|
exports.UpdateTrustCommand = UpdateTrustCommand;
|
|
4761
|
-
exports.UpdateTrustRequest$ = UpdateTrustRequest$;
|
|
4762
|
-
exports.UpdateTrustResult$ = UpdateTrustResult$;
|
|
4763
1603
|
exports.UpdateType = UpdateType;
|
|
4764
|
-
exports.UpdateValue$ = UpdateValue$;
|
|
4765
|
-
exports.UserDoesNotExistException = UserDoesNotExistException;
|
|
4766
|
-
exports.UserDoesNotExistException$ = UserDoesNotExistException$;
|
|
4767
|
-
exports.VerifyTrust$ = VerifyTrust$;
|
|
4768
1604
|
exports.VerifyTrustCommand = VerifyTrustCommand;
|
|
4769
|
-
exports.VerifyTrustRequest$ = VerifyTrustRequest$;
|
|
4770
|
-
exports.VerifyTrustResult$ = VerifyTrustResult$;
|
|
4771
1605
|
exports.paginateDescribeClientAuthenticationSettings = paginateDescribeClientAuthenticationSettings;
|
|
4772
1606
|
exports.paginateDescribeDirectories = paginateDescribeDirectories;
|
|
4773
1607
|
exports.paginateDescribeDomainControllers = paginateDescribeDomainControllers;
|
|
@@ -4785,3 +1619,15 @@ exports.paginateListSchemaExtensions = paginateListSchemaExtensions;
|
|
|
4785
1619
|
exports.paginateListTagsForResource = paginateListTagsForResource;
|
|
4786
1620
|
exports.waitForHybridADUpdated = waitForHybridADUpdated;
|
|
4787
1621
|
exports.waitUntilHybridADUpdated = waitUntilHybridADUpdated;
|
|
1622
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1623
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1624
|
+
enumerable: true,
|
|
1625
|
+
get: function () { return schemas_0[k]; }
|
|
1626
|
+
});
|
|
1627
|
+
});
|
|
1628
|
+
Object.keys(errors).forEach(function (k) {
|
|
1629
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1630
|
+
enumerable: true,
|
|
1631
|
+
get: function () { return errors[k]; }
|
|
1632
|
+
});
|
|
1633
|
+
});
|