@aws-sdk/client-cloudtrail 3.716.0 → 3.723.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 +1176 -603
- package/dist-es/CloudTrailClient.js +1 -0
- package/dist-es/models/models_0.js +255 -170
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -293,7 +293,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
293
293
|
}, "resolveRuntimeExtensions");
|
|
294
294
|
|
|
295
295
|
// src/CloudTrailClient.ts
|
|
296
|
-
var
|
|
296
|
+
var CloudTrailClient = class extends import_smithy_client.Client {
|
|
297
|
+
static {
|
|
298
|
+
__name(this, "CloudTrailClient");
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* The resolved configuration of CloudTrailClient class. This is resolved and normalized from the {@link CloudTrailClientConfig | constructor configuration interface}.
|
|
302
|
+
*/
|
|
303
|
+
config;
|
|
297
304
|
constructor(...[configuration]) {
|
|
298
305
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
299
306
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -303,7 +310,7 @@ var _CloudTrailClient = class _CloudTrailClient extends import_smithy_client.Cli
|
|
|
303
310
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
304
311
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
305
312
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
306
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
313
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
307
314
|
super(_config_8);
|
|
308
315
|
this.config = _config_8;
|
|
309
316
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -331,8 +338,6 @@ var _CloudTrailClient = class _CloudTrailClient extends import_smithy_client.Cli
|
|
|
331
338
|
super.destroy();
|
|
332
339
|
}
|
|
333
340
|
};
|
|
334
|
-
__name(_CloudTrailClient, "CloudTrailClient");
|
|
335
|
-
var CloudTrailClient = _CloudTrailClient;
|
|
336
341
|
|
|
337
342
|
// src/CloudTrail.ts
|
|
338
343
|
|
|
@@ -349,7 +354,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
349
354
|
|
|
350
355
|
// src/models/CloudTrailServiceException.ts
|
|
351
356
|
|
|
352
|
-
var
|
|
357
|
+
var CloudTrailServiceException = class _CloudTrailServiceException extends import_smithy_client.ServiceException {
|
|
358
|
+
static {
|
|
359
|
+
__name(this, "CloudTrailServiceException");
|
|
360
|
+
}
|
|
353
361
|
/**
|
|
354
362
|
* @internal
|
|
355
363
|
*/
|
|
@@ -358,11 +366,19 @@ var _CloudTrailServiceException = class _CloudTrailServiceException extends impo
|
|
|
358
366
|
Object.setPrototypeOf(this, _CloudTrailServiceException.prototype);
|
|
359
367
|
}
|
|
360
368
|
};
|
|
361
|
-
__name(_CloudTrailServiceException, "CloudTrailServiceException");
|
|
362
|
-
var CloudTrailServiceException = _CloudTrailServiceException;
|
|
363
369
|
|
|
364
370
|
// src/models/models_0.ts
|
|
365
|
-
var
|
|
371
|
+
var AccessDeniedException = class _AccessDeniedException extends CloudTrailServiceException {
|
|
372
|
+
static {
|
|
373
|
+
__name(this, "AccessDeniedException");
|
|
374
|
+
}
|
|
375
|
+
name = "AccessDeniedException";
|
|
376
|
+
$fault = "client";
|
|
377
|
+
/**
|
|
378
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
Message;
|
|
366
382
|
/**
|
|
367
383
|
* @internal
|
|
368
384
|
*/
|
|
@@ -372,15 +388,21 @@ var _AccessDeniedException = class _AccessDeniedException extends CloudTrailServ
|
|
|
372
388
|
$fault: "client",
|
|
373
389
|
...opts
|
|
374
390
|
});
|
|
375
|
-
this.name = "AccessDeniedException";
|
|
376
|
-
this.$fault = "client";
|
|
377
391
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
378
392
|
this.Message = opts.Message;
|
|
379
393
|
}
|
|
380
394
|
};
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
395
|
+
var AccountHasOngoingImportException = class _AccountHasOngoingImportException extends CloudTrailServiceException {
|
|
396
|
+
static {
|
|
397
|
+
__name(this, "AccountHasOngoingImportException");
|
|
398
|
+
}
|
|
399
|
+
name = "AccountHasOngoingImportException";
|
|
400
|
+
$fault = "client";
|
|
401
|
+
/**
|
|
402
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
403
|
+
* @public
|
|
404
|
+
*/
|
|
405
|
+
Message;
|
|
384
406
|
/**
|
|
385
407
|
* @internal
|
|
386
408
|
*/
|
|
@@ -390,15 +412,21 @@ var _AccountHasOngoingImportException = class _AccountHasOngoingImportException
|
|
|
390
412
|
$fault: "client",
|
|
391
413
|
...opts
|
|
392
414
|
});
|
|
393
|
-
this.name = "AccountHasOngoingImportException";
|
|
394
|
-
this.$fault = "client";
|
|
395
415
|
Object.setPrototypeOf(this, _AccountHasOngoingImportException.prototype);
|
|
396
416
|
this.Message = opts.Message;
|
|
397
417
|
}
|
|
398
418
|
};
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
419
|
+
var AccountNotFoundException = class _AccountNotFoundException extends CloudTrailServiceException {
|
|
420
|
+
static {
|
|
421
|
+
__name(this, "AccountNotFoundException");
|
|
422
|
+
}
|
|
423
|
+
name = "AccountNotFoundException";
|
|
424
|
+
$fault = "client";
|
|
425
|
+
/**
|
|
426
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
427
|
+
* @public
|
|
428
|
+
*/
|
|
429
|
+
Message;
|
|
402
430
|
/**
|
|
403
431
|
* @internal
|
|
404
432
|
*/
|
|
@@ -408,15 +436,21 @@ var _AccountNotFoundException = class _AccountNotFoundException extends CloudTra
|
|
|
408
436
|
$fault: "client",
|
|
409
437
|
...opts
|
|
410
438
|
});
|
|
411
|
-
this.name = "AccountNotFoundException";
|
|
412
|
-
this.$fault = "client";
|
|
413
439
|
Object.setPrototypeOf(this, _AccountNotFoundException.prototype);
|
|
414
440
|
this.Message = opts.Message;
|
|
415
441
|
}
|
|
416
442
|
};
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
443
|
+
var AccountNotRegisteredException = class _AccountNotRegisteredException extends CloudTrailServiceException {
|
|
444
|
+
static {
|
|
445
|
+
__name(this, "AccountNotRegisteredException");
|
|
446
|
+
}
|
|
447
|
+
name = "AccountNotRegisteredException";
|
|
448
|
+
$fault = "client";
|
|
449
|
+
/**
|
|
450
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
Message;
|
|
420
454
|
/**
|
|
421
455
|
* @internal
|
|
422
456
|
*/
|
|
@@ -426,15 +460,21 @@ var _AccountNotRegisteredException = class _AccountNotRegisteredException extend
|
|
|
426
460
|
$fault: "client",
|
|
427
461
|
...opts
|
|
428
462
|
});
|
|
429
|
-
this.name = "AccountNotRegisteredException";
|
|
430
|
-
this.$fault = "client";
|
|
431
463
|
Object.setPrototypeOf(this, _AccountNotRegisteredException.prototype);
|
|
432
464
|
this.Message = opts.Message;
|
|
433
465
|
}
|
|
434
466
|
};
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
467
|
+
var AccountRegisteredException = class _AccountRegisteredException extends CloudTrailServiceException {
|
|
468
|
+
static {
|
|
469
|
+
__name(this, "AccountRegisteredException");
|
|
470
|
+
}
|
|
471
|
+
name = "AccountRegisteredException";
|
|
472
|
+
$fault = "client";
|
|
473
|
+
/**
|
|
474
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
475
|
+
* @public
|
|
476
|
+
*/
|
|
477
|
+
Message;
|
|
438
478
|
/**
|
|
439
479
|
* @internal
|
|
440
480
|
*/
|
|
@@ -444,15 +484,21 @@ var _AccountRegisteredException = class _AccountRegisteredException extends Clou
|
|
|
444
484
|
$fault: "client",
|
|
445
485
|
...opts
|
|
446
486
|
});
|
|
447
|
-
this.name = "AccountRegisteredException";
|
|
448
|
-
this.$fault = "client";
|
|
449
487
|
Object.setPrototypeOf(this, _AccountRegisteredException.prototype);
|
|
450
488
|
this.Message = opts.Message;
|
|
451
489
|
}
|
|
452
490
|
};
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
491
|
+
var ChannelARNInvalidException = class _ChannelARNInvalidException extends CloudTrailServiceException {
|
|
492
|
+
static {
|
|
493
|
+
__name(this, "ChannelARNInvalidException");
|
|
494
|
+
}
|
|
495
|
+
name = "ChannelARNInvalidException";
|
|
496
|
+
$fault = "client";
|
|
497
|
+
/**
|
|
498
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
501
|
+
Message;
|
|
456
502
|
/**
|
|
457
503
|
* @internal
|
|
458
504
|
*/
|
|
@@ -462,15 +508,21 @@ var _ChannelARNInvalidException = class _ChannelARNInvalidException extends Clou
|
|
|
462
508
|
$fault: "client",
|
|
463
509
|
...opts
|
|
464
510
|
});
|
|
465
|
-
this.name = "ChannelARNInvalidException";
|
|
466
|
-
this.$fault = "client";
|
|
467
511
|
Object.setPrototypeOf(this, _ChannelARNInvalidException.prototype);
|
|
468
512
|
this.Message = opts.Message;
|
|
469
513
|
}
|
|
470
514
|
};
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
515
|
+
var ChannelNotFoundException = class _ChannelNotFoundException extends CloudTrailServiceException {
|
|
516
|
+
static {
|
|
517
|
+
__name(this, "ChannelNotFoundException");
|
|
518
|
+
}
|
|
519
|
+
name = "ChannelNotFoundException";
|
|
520
|
+
$fault = "client";
|
|
521
|
+
/**
|
|
522
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
523
|
+
* @public
|
|
524
|
+
*/
|
|
525
|
+
Message;
|
|
474
526
|
/**
|
|
475
527
|
* @internal
|
|
476
528
|
*/
|
|
@@ -480,15 +532,21 @@ var _ChannelNotFoundException = class _ChannelNotFoundException extends CloudTra
|
|
|
480
532
|
$fault: "client",
|
|
481
533
|
...opts
|
|
482
534
|
});
|
|
483
|
-
this.name = "ChannelNotFoundException";
|
|
484
|
-
this.$fault = "client";
|
|
485
535
|
Object.setPrototypeOf(this, _ChannelNotFoundException.prototype);
|
|
486
536
|
this.Message = opts.Message;
|
|
487
537
|
}
|
|
488
538
|
};
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
539
|
+
var CloudTrailARNInvalidException = class _CloudTrailARNInvalidException extends CloudTrailServiceException {
|
|
540
|
+
static {
|
|
541
|
+
__name(this, "CloudTrailARNInvalidException");
|
|
542
|
+
}
|
|
543
|
+
name = "CloudTrailARNInvalidException";
|
|
544
|
+
$fault = "client";
|
|
545
|
+
/**
|
|
546
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
547
|
+
* @public
|
|
548
|
+
*/
|
|
549
|
+
Message;
|
|
492
550
|
/**
|
|
493
551
|
* @internal
|
|
494
552
|
*/
|
|
@@ -498,15 +556,21 @@ var _CloudTrailARNInvalidException = class _CloudTrailARNInvalidException extend
|
|
|
498
556
|
$fault: "client",
|
|
499
557
|
...opts
|
|
500
558
|
});
|
|
501
|
-
this.name = "CloudTrailARNInvalidException";
|
|
502
|
-
this.$fault = "client";
|
|
503
559
|
Object.setPrototypeOf(this, _CloudTrailARNInvalidException.prototype);
|
|
504
560
|
this.Message = opts.Message;
|
|
505
561
|
}
|
|
506
562
|
};
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
563
|
+
var ConflictException = class _ConflictException extends CloudTrailServiceException {
|
|
564
|
+
static {
|
|
565
|
+
__name(this, "ConflictException");
|
|
566
|
+
}
|
|
567
|
+
name = "ConflictException";
|
|
568
|
+
$fault = "client";
|
|
569
|
+
/**
|
|
570
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
571
|
+
* @public
|
|
572
|
+
*/
|
|
573
|
+
Message;
|
|
510
574
|
/**
|
|
511
575
|
* @internal
|
|
512
576
|
*/
|
|
@@ -516,15 +580,21 @@ var _ConflictException = class _ConflictException extends CloudTrailServiceExcep
|
|
|
516
580
|
$fault: "client",
|
|
517
581
|
...opts
|
|
518
582
|
});
|
|
519
|
-
this.name = "ConflictException";
|
|
520
|
-
this.$fault = "client";
|
|
521
583
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
522
584
|
this.Message = opts.Message;
|
|
523
585
|
}
|
|
524
586
|
};
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
587
|
+
var EventDataStoreARNInvalidException = class _EventDataStoreARNInvalidException extends CloudTrailServiceException {
|
|
588
|
+
static {
|
|
589
|
+
__name(this, "EventDataStoreARNInvalidException");
|
|
590
|
+
}
|
|
591
|
+
name = "EventDataStoreARNInvalidException";
|
|
592
|
+
$fault = "client";
|
|
593
|
+
/**
|
|
594
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
595
|
+
* @public
|
|
596
|
+
*/
|
|
597
|
+
Message;
|
|
528
598
|
/**
|
|
529
599
|
* @internal
|
|
530
600
|
*/
|
|
@@ -534,15 +604,21 @@ var _EventDataStoreARNInvalidException = class _EventDataStoreARNInvalidExceptio
|
|
|
534
604
|
$fault: "client",
|
|
535
605
|
...opts
|
|
536
606
|
});
|
|
537
|
-
this.name = "EventDataStoreARNInvalidException";
|
|
538
|
-
this.$fault = "client";
|
|
539
607
|
Object.setPrototypeOf(this, _EventDataStoreARNInvalidException.prototype);
|
|
540
608
|
this.Message = opts.Message;
|
|
541
609
|
}
|
|
542
610
|
};
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
611
|
+
var EventDataStoreNotFoundException = class _EventDataStoreNotFoundException extends CloudTrailServiceException {
|
|
612
|
+
static {
|
|
613
|
+
__name(this, "EventDataStoreNotFoundException");
|
|
614
|
+
}
|
|
615
|
+
name = "EventDataStoreNotFoundException";
|
|
616
|
+
$fault = "client";
|
|
617
|
+
/**
|
|
618
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
Message;
|
|
546
622
|
/**
|
|
547
623
|
* @internal
|
|
548
624
|
*/
|
|
@@ -552,15 +628,21 @@ var _EventDataStoreNotFoundException = class _EventDataStoreNotFoundException ex
|
|
|
552
628
|
$fault: "client",
|
|
553
629
|
...opts
|
|
554
630
|
});
|
|
555
|
-
this.name = "EventDataStoreNotFoundException";
|
|
556
|
-
this.$fault = "client";
|
|
557
631
|
Object.setPrototypeOf(this, _EventDataStoreNotFoundException.prototype);
|
|
558
632
|
this.Message = opts.Message;
|
|
559
633
|
}
|
|
560
634
|
};
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
635
|
+
var InactiveEventDataStoreException = class _InactiveEventDataStoreException extends CloudTrailServiceException {
|
|
636
|
+
static {
|
|
637
|
+
__name(this, "InactiveEventDataStoreException");
|
|
638
|
+
}
|
|
639
|
+
name = "InactiveEventDataStoreException";
|
|
640
|
+
$fault = "client";
|
|
641
|
+
/**
|
|
642
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
643
|
+
* @public
|
|
644
|
+
*/
|
|
645
|
+
Message;
|
|
564
646
|
/**
|
|
565
647
|
* @internal
|
|
566
648
|
*/
|
|
@@ -570,15 +652,21 @@ var _InactiveEventDataStoreException = class _InactiveEventDataStoreException ex
|
|
|
570
652
|
$fault: "client",
|
|
571
653
|
...opts
|
|
572
654
|
});
|
|
573
|
-
this.name = "InactiveEventDataStoreException";
|
|
574
|
-
this.$fault = "client";
|
|
575
655
|
Object.setPrototypeOf(this, _InactiveEventDataStoreException.prototype);
|
|
576
656
|
this.Message = opts.Message;
|
|
577
657
|
}
|
|
578
658
|
};
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
659
|
+
var InvalidTagParameterException = class _InvalidTagParameterException extends CloudTrailServiceException {
|
|
660
|
+
static {
|
|
661
|
+
__name(this, "InvalidTagParameterException");
|
|
662
|
+
}
|
|
663
|
+
name = "InvalidTagParameterException";
|
|
664
|
+
$fault = "client";
|
|
665
|
+
/**
|
|
666
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
667
|
+
* @public
|
|
668
|
+
*/
|
|
669
|
+
Message;
|
|
582
670
|
/**
|
|
583
671
|
* @internal
|
|
584
672
|
*/
|
|
@@ -588,15 +676,21 @@ var _InvalidTagParameterException = class _InvalidTagParameterException extends
|
|
|
588
676
|
$fault: "client",
|
|
589
677
|
...opts
|
|
590
678
|
});
|
|
591
|
-
this.name = "InvalidTagParameterException";
|
|
592
|
-
this.$fault = "client";
|
|
593
679
|
Object.setPrototypeOf(this, _InvalidTagParameterException.prototype);
|
|
594
680
|
this.Message = opts.Message;
|
|
595
681
|
}
|
|
596
682
|
};
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
683
|
+
var InvalidTrailNameException = class _InvalidTrailNameException extends CloudTrailServiceException {
|
|
684
|
+
static {
|
|
685
|
+
__name(this, "InvalidTrailNameException");
|
|
686
|
+
}
|
|
687
|
+
name = "InvalidTrailNameException";
|
|
688
|
+
$fault = "client";
|
|
689
|
+
/**
|
|
690
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
691
|
+
* @public
|
|
692
|
+
*/
|
|
693
|
+
Message;
|
|
600
694
|
/**
|
|
601
695
|
* @internal
|
|
602
696
|
*/
|
|
@@ -606,15 +700,21 @@ var _InvalidTrailNameException = class _InvalidTrailNameException extends CloudT
|
|
|
606
700
|
$fault: "client",
|
|
607
701
|
...opts
|
|
608
702
|
});
|
|
609
|
-
this.name = "InvalidTrailNameException";
|
|
610
|
-
this.$fault = "client";
|
|
611
703
|
Object.setPrototypeOf(this, _InvalidTrailNameException.prototype);
|
|
612
704
|
this.Message = opts.Message;
|
|
613
705
|
}
|
|
614
706
|
};
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
707
|
+
var NoManagementAccountSLRExistsException = class _NoManagementAccountSLRExistsException extends CloudTrailServiceException {
|
|
708
|
+
static {
|
|
709
|
+
__name(this, "NoManagementAccountSLRExistsException");
|
|
710
|
+
}
|
|
711
|
+
name = "NoManagementAccountSLRExistsException";
|
|
712
|
+
$fault = "client";
|
|
713
|
+
/**
|
|
714
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
715
|
+
* @public
|
|
716
|
+
*/
|
|
717
|
+
Message;
|
|
618
718
|
/**
|
|
619
719
|
* @internal
|
|
620
720
|
*/
|
|
@@ -624,15 +724,21 @@ var _NoManagementAccountSLRExistsException = class _NoManagementAccountSLRExists
|
|
|
624
724
|
$fault: "client",
|
|
625
725
|
...opts
|
|
626
726
|
});
|
|
627
|
-
this.name = "NoManagementAccountSLRExistsException";
|
|
628
|
-
this.$fault = "client";
|
|
629
727
|
Object.setPrototypeOf(this, _NoManagementAccountSLRExistsException.prototype);
|
|
630
728
|
this.Message = opts.Message;
|
|
631
729
|
}
|
|
632
730
|
};
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
731
|
+
var NotOrganizationMasterAccountException = class _NotOrganizationMasterAccountException extends CloudTrailServiceException {
|
|
732
|
+
static {
|
|
733
|
+
__name(this, "NotOrganizationMasterAccountException");
|
|
734
|
+
}
|
|
735
|
+
name = "NotOrganizationMasterAccountException";
|
|
736
|
+
$fault = "client";
|
|
737
|
+
/**
|
|
738
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
739
|
+
* @public
|
|
740
|
+
*/
|
|
741
|
+
Message;
|
|
636
742
|
/**
|
|
637
743
|
* @internal
|
|
638
744
|
*/
|
|
@@ -642,15 +748,21 @@ var _NotOrganizationMasterAccountException = class _NotOrganizationMasterAccount
|
|
|
642
748
|
$fault: "client",
|
|
643
749
|
...opts
|
|
644
750
|
});
|
|
645
|
-
this.name = "NotOrganizationMasterAccountException";
|
|
646
|
-
this.$fault = "client";
|
|
647
751
|
Object.setPrototypeOf(this, _NotOrganizationMasterAccountException.prototype);
|
|
648
752
|
this.Message = opts.Message;
|
|
649
753
|
}
|
|
650
754
|
};
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
755
|
+
var OperationNotPermittedException = class _OperationNotPermittedException extends CloudTrailServiceException {
|
|
756
|
+
static {
|
|
757
|
+
__name(this, "OperationNotPermittedException");
|
|
758
|
+
}
|
|
759
|
+
name = "OperationNotPermittedException";
|
|
760
|
+
$fault = "client";
|
|
761
|
+
/**
|
|
762
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
763
|
+
* @public
|
|
764
|
+
*/
|
|
765
|
+
Message;
|
|
654
766
|
/**
|
|
655
767
|
* @internal
|
|
656
768
|
*/
|
|
@@ -660,15 +772,21 @@ var _OperationNotPermittedException = class _OperationNotPermittedException exte
|
|
|
660
772
|
$fault: "client",
|
|
661
773
|
...opts
|
|
662
774
|
});
|
|
663
|
-
this.name = "OperationNotPermittedException";
|
|
664
|
-
this.$fault = "client";
|
|
665
775
|
Object.setPrototypeOf(this, _OperationNotPermittedException.prototype);
|
|
666
776
|
this.Message = opts.Message;
|
|
667
777
|
}
|
|
668
778
|
};
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
779
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends CloudTrailServiceException {
|
|
780
|
+
static {
|
|
781
|
+
__name(this, "ResourceNotFoundException");
|
|
782
|
+
}
|
|
783
|
+
name = "ResourceNotFoundException";
|
|
784
|
+
$fault = "client";
|
|
785
|
+
/**
|
|
786
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
787
|
+
* @public
|
|
788
|
+
*/
|
|
789
|
+
Message;
|
|
672
790
|
/**
|
|
673
791
|
* @internal
|
|
674
792
|
*/
|
|
@@ -678,15 +796,21 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends CloudT
|
|
|
678
796
|
$fault: "client",
|
|
679
797
|
...opts
|
|
680
798
|
});
|
|
681
|
-
this.name = "ResourceNotFoundException";
|
|
682
|
-
this.$fault = "client";
|
|
683
799
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
684
800
|
this.Message = opts.Message;
|
|
685
801
|
}
|
|
686
802
|
};
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
803
|
+
var ResourceTypeNotSupportedException = class _ResourceTypeNotSupportedException extends CloudTrailServiceException {
|
|
804
|
+
static {
|
|
805
|
+
__name(this, "ResourceTypeNotSupportedException");
|
|
806
|
+
}
|
|
807
|
+
name = "ResourceTypeNotSupportedException";
|
|
808
|
+
$fault = "client";
|
|
809
|
+
/**
|
|
810
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
811
|
+
* @public
|
|
812
|
+
*/
|
|
813
|
+
Message;
|
|
690
814
|
/**
|
|
691
815
|
* @internal
|
|
692
816
|
*/
|
|
@@ -696,15 +820,21 @@ var _ResourceTypeNotSupportedException = class _ResourceTypeNotSupportedExceptio
|
|
|
696
820
|
$fault: "client",
|
|
697
821
|
...opts
|
|
698
822
|
});
|
|
699
|
-
this.name = "ResourceTypeNotSupportedException";
|
|
700
|
-
this.$fault = "client";
|
|
701
823
|
Object.setPrototypeOf(this, _ResourceTypeNotSupportedException.prototype);
|
|
702
824
|
this.Message = opts.Message;
|
|
703
825
|
}
|
|
704
826
|
};
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
827
|
+
var TagsLimitExceededException = class _TagsLimitExceededException extends CloudTrailServiceException {
|
|
828
|
+
static {
|
|
829
|
+
__name(this, "TagsLimitExceededException");
|
|
830
|
+
}
|
|
831
|
+
name = "TagsLimitExceededException";
|
|
832
|
+
$fault = "client";
|
|
833
|
+
/**
|
|
834
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
835
|
+
* @public
|
|
836
|
+
*/
|
|
837
|
+
Message;
|
|
708
838
|
/**
|
|
709
839
|
* @internal
|
|
710
840
|
*/
|
|
@@ -714,15 +844,21 @@ var _TagsLimitExceededException = class _TagsLimitExceededException extends Clou
|
|
|
714
844
|
$fault: "client",
|
|
715
845
|
...opts
|
|
716
846
|
});
|
|
717
|
-
this.name = "TagsLimitExceededException";
|
|
718
|
-
this.$fault = "client";
|
|
719
847
|
Object.setPrototypeOf(this, _TagsLimitExceededException.prototype);
|
|
720
848
|
this.Message = opts.Message;
|
|
721
849
|
}
|
|
722
850
|
};
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
851
|
+
var UnsupportedOperationException = class _UnsupportedOperationException extends CloudTrailServiceException {
|
|
852
|
+
static {
|
|
853
|
+
__name(this, "UnsupportedOperationException");
|
|
854
|
+
}
|
|
855
|
+
name = "UnsupportedOperationException";
|
|
856
|
+
$fault = "client";
|
|
857
|
+
/**
|
|
858
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
859
|
+
* @public
|
|
860
|
+
*/
|
|
861
|
+
Message;
|
|
726
862
|
/**
|
|
727
863
|
* @internal
|
|
728
864
|
*/
|
|
@@ -732,14 +868,10 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
|
|
|
732
868
|
$fault: "client",
|
|
733
869
|
...opts
|
|
734
870
|
});
|
|
735
|
-
this.name = "UnsupportedOperationException";
|
|
736
|
-
this.$fault = "client";
|
|
737
871
|
Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
|
|
738
872
|
this.Message = opts.Message;
|
|
739
873
|
}
|
|
740
874
|
};
|
|
741
|
-
__name(_UnsupportedOperationException, "UnsupportedOperationException");
|
|
742
|
-
var UnsupportedOperationException = _UnsupportedOperationException;
|
|
743
875
|
var BillingMode = {
|
|
744
876
|
EXTENDABLE_RETENTION_PRICING: "EXTENDABLE_RETENTION_PRICING",
|
|
745
877
|
FIXED_RETENTION_PRICING: "FIXED_RETENTION_PRICING"
|
|
@@ -752,7 +884,17 @@ var QueryStatus = {
|
|
|
752
884
|
RUNNING: "RUNNING",
|
|
753
885
|
TIMED_OUT: "TIMED_OUT"
|
|
754
886
|
};
|
|
755
|
-
var
|
|
887
|
+
var InactiveQueryException = class _InactiveQueryException extends CloudTrailServiceException {
|
|
888
|
+
static {
|
|
889
|
+
__name(this, "InactiveQueryException");
|
|
890
|
+
}
|
|
891
|
+
name = "InactiveQueryException";
|
|
892
|
+
$fault = "client";
|
|
893
|
+
/**
|
|
894
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
895
|
+
* @public
|
|
896
|
+
*/
|
|
897
|
+
Message;
|
|
756
898
|
/**
|
|
757
899
|
* @internal
|
|
758
900
|
*/
|
|
@@ -762,15 +904,21 @@ var _InactiveQueryException = class _InactiveQueryException extends CloudTrailSe
|
|
|
762
904
|
$fault: "client",
|
|
763
905
|
...opts
|
|
764
906
|
});
|
|
765
|
-
this.name = "InactiveQueryException";
|
|
766
|
-
this.$fault = "client";
|
|
767
907
|
Object.setPrototypeOf(this, _InactiveQueryException.prototype);
|
|
768
908
|
this.Message = opts.Message;
|
|
769
909
|
}
|
|
770
910
|
};
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
911
|
+
var InvalidParameterException = class _InvalidParameterException extends CloudTrailServiceException {
|
|
912
|
+
static {
|
|
913
|
+
__name(this, "InvalidParameterException");
|
|
914
|
+
}
|
|
915
|
+
name = "InvalidParameterException";
|
|
916
|
+
$fault = "client";
|
|
917
|
+
/**
|
|
918
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
Message;
|
|
774
922
|
/**
|
|
775
923
|
* @internal
|
|
776
924
|
*/
|
|
@@ -780,15 +928,21 @@ var _InvalidParameterException = class _InvalidParameterException extends CloudT
|
|
|
780
928
|
$fault: "client",
|
|
781
929
|
...opts
|
|
782
930
|
});
|
|
783
|
-
this.name = "InvalidParameterException";
|
|
784
|
-
this.$fault = "client";
|
|
785
931
|
Object.setPrototypeOf(this, _InvalidParameterException.prototype);
|
|
786
932
|
this.Message = opts.Message;
|
|
787
933
|
}
|
|
788
934
|
};
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
935
|
+
var QueryIdNotFoundException = class _QueryIdNotFoundException extends CloudTrailServiceException {
|
|
936
|
+
static {
|
|
937
|
+
__name(this, "QueryIdNotFoundException");
|
|
938
|
+
}
|
|
939
|
+
name = "QueryIdNotFoundException";
|
|
940
|
+
$fault = "client";
|
|
941
|
+
/**
|
|
942
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
943
|
+
* @public
|
|
944
|
+
*/
|
|
945
|
+
Message;
|
|
792
946
|
/**
|
|
793
947
|
* @internal
|
|
794
948
|
*/
|
|
@@ -798,15 +952,21 @@ var _QueryIdNotFoundException = class _QueryIdNotFoundException extends CloudTra
|
|
|
798
952
|
$fault: "client",
|
|
799
953
|
...opts
|
|
800
954
|
});
|
|
801
|
-
this.name = "QueryIdNotFoundException";
|
|
802
|
-
this.$fault = "client";
|
|
803
955
|
Object.setPrototypeOf(this, _QueryIdNotFoundException.prototype);
|
|
804
956
|
this.Message = opts.Message;
|
|
805
957
|
}
|
|
806
958
|
};
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
959
|
+
var CannotDelegateManagementAccountException = class _CannotDelegateManagementAccountException extends CloudTrailServiceException {
|
|
960
|
+
static {
|
|
961
|
+
__name(this, "CannotDelegateManagementAccountException");
|
|
962
|
+
}
|
|
963
|
+
name = "CannotDelegateManagementAccountException";
|
|
964
|
+
$fault = "client";
|
|
965
|
+
/**
|
|
966
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
967
|
+
* @public
|
|
968
|
+
*/
|
|
969
|
+
Message;
|
|
810
970
|
/**
|
|
811
971
|
* @internal
|
|
812
972
|
*/
|
|
@@ -816,15 +976,21 @@ var _CannotDelegateManagementAccountException = class _CannotDelegateManagementA
|
|
|
816
976
|
$fault: "client",
|
|
817
977
|
...opts
|
|
818
978
|
});
|
|
819
|
-
this.name = "CannotDelegateManagementAccountException";
|
|
820
|
-
this.$fault = "client";
|
|
821
979
|
Object.setPrototypeOf(this, _CannotDelegateManagementAccountException.prototype);
|
|
822
980
|
this.Message = opts.Message;
|
|
823
981
|
}
|
|
824
982
|
};
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
983
|
+
var ChannelAlreadyExistsException = class _ChannelAlreadyExistsException extends CloudTrailServiceException {
|
|
984
|
+
static {
|
|
985
|
+
__name(this, "ChannelAlreadyExistsException");
|
|
986
|
+
}
|
|
987
|
+
name = "ChannelAlreadyExistsException";
|
|
988
|
+
$fault = "client";
|
|
989
|
+
/**
|
|
990
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
991
|
+
* @public
|
|
992
|
+
*/
|
|
993
|
+
Message;
|
|
828
994
|
/**
|
|
829
995
|
* @internal
|
|
830
996
|
*/
|
|
@@ -834,15 +1000,21 @@ var _ChannelAlreadyExistsException = class _ChannelAlreadyExistsException extend
|
|
|
834
1000
|
$fault: "client",
|
|
835
1001
|
...opts
|
|
836
1002
|
});
|
|
837
|
-
this.name = "ChannelAlreadyExistsException";
|
|
838
|
-
this.$fault = "client";
|
|
839
1003
|
Object.setPrototypeOf(this, _ChannelAlreadyExistsException.prototype);
|
|
840
1004
|
this.Message = opts.Message;
|
|
841
1005
|
}
|
|
842
1006
|
};
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
1007
|
+
var ChannelExistsForEDSException = class _ChannelExistsForEDSException extends CloudTrailServiceException {
|
|
1008
|
+
static {
|
|
1009
|
+
__name(this, "ChannelExistsForEDSException");
|
|
1010
|
+
}
|
|
1011
|
+
name = "ChannelExistsForEDSException";
|
|
1012
|
+
$fault = "client";
|
|
1013
|
+
/**
|
|
1014
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1015
|
+
* @public
|
|
1016
|
+
*/
|
|
1017
|
+
Message;
|
|
846
1018
|
/**
|
|
847
1019
|
* @internal
|
|
848
1020
|
*/
|
|
@@ -852,15 +1024,21 @@ var _ChannelExistsForEDSException = class _ChannelExistsForEDSException extends
|
|
|
852
1024
|
$fault: "client",
|
|
853
1025
|
...opts
|
|
854
1026
|
});
|
|
855
|
-
this.name = "ChannelExistsForEDSException";
|
|
856
|
-
this.$fault = "client";
|
|
857
1027
|
Object.setPrototypeOf(this, _ChannelExistsForEDSException.prototype);
|
|
858
1028
|
this.Message = opts.Message;
|
|
859
1029
|
}
|
|
860
1030
|
};
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
1031
|
+
var ChannelMaxLimitExceededException = class _ChannelMaxLimitExceededException extends CloudTrailServiceException {
|
|
1032
|
+
static {
|
|
1033
|
+
__name(this, "ChannelMaxLimitExceededException");
|
|
1034
|
+
}
|
|
1035
|
+
name = "ChannelMaxLimitExceededException";
|
|
1036
|
+
$fault = "client";
|
|
1037
|
+
/**
|
|
1038
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1039
|
+
* @public
|
|
1040
|
+
*/
|
|
1041
|
+
Message;
|
|
864
1042
|
/**
|
|
865
1043
|
* @internal
|
|
866
1044
|
*/
|
|
@@ -870,19 +1048,25 @@ var _ChannelMaxLimitExceededException = class _ChannelMaxLimitExceededException
|
|
|
870
1048
|
$fault: "client",
|
|
871
1049
|
...opts
|
|
872
1050
|
});
|
|
873
|
-
this.name = "ChannelMaxLimitExceededException";
|
|
874
|
-
this.$fault = "client";
|
|
875
1051
|
Object.setPrototypeOf(this, _ChannelMaxLimitExceededException.prototype);
|
|
876
1052
|
this.Message = opts.Message;
|
|
877
1053
|
}
|
|
878
1054
|
};
|
|
879
|
-
__name(_ChannelMaxLimitExceededException, "ChannelMaxLimitExceededException");
|
|
880
|
-
var ChannelMaxLimitExceededException = _ChannelMaxLimitExceededException;
|
|
881
1055
|
var DestinationType = {
|
|
882
1056
|
AWS_SERVICE: "AWS_SERVICE",
|
|
883
1057
|
EVENT_DATA_STORE: "EVENT_DATA_STORE"
|
|
884
1058
|
};
|
|
885
|
-
var
|
|
1059
|
+
var InvalidEventDataStoreCategoryException = class _InvalidEventDataStoreCategoryException extends CloudTrailServiceException {
|
|
1060
|
+
static {
|
|
1061
|
+
__name(this, "InvalidEventDataStoreCategoryException");
|
|
1062
|
+
}
|
|
1063
|
+
name = "InvalidEventDataStoreCategoryException";
|
|
1064
|
+
$fault = "client";
|
|
1065
|
+
/**
|
|
1066
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1067
|
+
* @public
|
|
1068
|
+
*/
|
|
1069
|
+
Message;
|
|
886
1070
|
/**
|
|
887
1071
|
* @internal
|
|
888
1072
|
*/
|
|
@@ -892,15 +1076,21 @@ var _InvalidEventDataStoreCategoryException = class _InvalidEventDataStoreCatego
|
|
|
892
1076
|
$fault: "client",
|
|
893
1077
|
...opts
|
|
894
1078
|
});
|
|
895
|
-
this.name = "InvalidEventDataStoreCategoryException";
|
|
896
|
-
this.$fault = "client";
|
|
897
1079
|
Object.setPrototypeOf(this, _InvalidEventDataStoreCategoryException.prototype);
|
|
898
1080
|
this.Message = opts.Message;
|
|
899
1081
|
}
|
|
900
1082
|
};
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
1083
|
+
var InvalidSourceException = class _InvalidSourceException extends CloudTrailServiceException {
|
|
1084
|
+
static {
|
|
1085
|
+
__name(this, "InvalidSourceException");
|
|
1086
|
+
}
|
|
1087
|
+
name = "InvalidSourceException";
|
|
1088
|
+
$fault = "client";
|
|
1089
|
+
/**
|
|
1090
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1091
|
+
* @public
|
|
1092
|
+
*/
|
|
1093
|
+
Message;
|
|
904
1094
|
/**
|
|
905
1095
|
* @internal
|
|
906
1096
|
*/
|
|
@@ -910,14 +1100,10 @@ var _InvalidSourceException = class _InvalidSourceException extends CloudTrailSe
|
|
|
910
1100
|
$fault: "client",
|
|
911
1101
|
...opts
|
|
912
1102
|
});
|
|
913
|
-
this.name = "InvalidSourceException";
|
|
914
|
-
this.$fault = "client";
|
|
915
1103
|
Object.setPrototypeOf(this, _InvalidSourceException.prototype);
|
|
916
1104
|
this.Message = opts.Message;
|
|
917
1105
|
}
|
|
918
1106
|
};
|
|
919
|
-
__name(_InvalidSourceException, "InvalidSourceException");
|
|
920
|
-
var InvalidSourceException = _InvalidSourceException;
|
|
921
1107
|
var RefreshScheduleFrequencyUnit = {
|
|
922
1108
|
DAYS: "DAYS",
|
|
923
1109
|
HOURS: "HOURS"
|
|
@@ -930,7 +1116,17 @@ var DashboardType = {
|
|
|
930
1116
|
CUSTOM: "CUSTOM",
|
|
931
1117
|
MANAGED: "MANAGED"
|
|
932
1118
|
};
|
|
933
|
-
var
|
|
1119
|
+
var InsufficientEncryptionPolicyException = class _InsufficientEncryptionPolicyException extends CloudTrailServiceException {
|
|
1120
|
+
static {
|
|
1121
|
+
__name(this, "InsufficientEncryptionPolicyException");
|
|
1122
|
+
}
|
|
1123
|
+
name = "InsufficientEncryptionPolicyException";
|
|
1124
|
+
$fault = "client";
|
|
1125
|
+
/**
|
|
1126
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1127
|
+
* @public
|
|
1128
|
+
*/
|
|
1129
|
+
Message;
|
|
934
1130
|
/**
|
|
935
1131
|
* @internal
|
|
936
1132
|
*/
|
|
@@ -940,15 +1136,21 @@ var _InsufficientEncryptionPolicyException = class _InsufficientEncryptionPolicy
|
|
|
940
1136
|
$fault: "client",
|
|
941
1137
|
...opts
|
|
942
1138
|
});
|
|
943
|
-
this.name = "InsufficientEncryptionPolicyException";
|
|
944
|
-
this.$fault = "client";
|
|
945
1139
|
Object.setPrototypeOf(this, _InsufficientEncryptionPolicyException.prototype);
|
|
946
1140
|
this.Message = opts.Message;
|
|
947
1141
|
}
|
|
948
1142
|
};
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
1143
|
+
var InvalidQueryStatementException = class _InvalidQueryStatementException extends CloudTrailServiceException {
|
|
1144
|
+
static {
|
|
1145
|
+
__name(this, "InvalidQueryStatementException");
|
|
1146
|
+
}
|
|
1147
|
+
name = "InvalidQueryStatementException";
|
|
1148
|
+
$fault = "client";
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1151
|
+
* @public
|
|
1152
|
+
*/
|
|
1153
|
+
Message;
|
|
952
1154
|
/**
|
|
953
1155
|
* @internal
|
|
954
1156
|
*/
|
|
@@ -958,15 +1160,21 @@ var _InvalidQueryStatementException = class _InvalidQueryStatementException exte
|
|
|
958
1160
|
$fault: "client",
|
|
959
1161
|
...opts
|
|
960
1162
|
});
|
|
961
|
-
this.name = "InvalidQueryStatementException";
|
|
962
|
-
this.$fault = "client";
|
|
963
1163
|
Object.setPrototypeOf(this, _InvalidQueryStatementException.prototype);
|
|
964
1164
|
this.Message = opts.Message;
|
|
965
1165
|
}
|
|
966
1166
|
};
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
1167
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CloudTrailServiceException {
|
|
1168
|
+
static {
|
|
1169
|
+
__name(this, "ServiceQuotaExceededException");
|
|
1170
|
+
}
|
|
1171
|
+
name = "ServiceQuotaExceededException";
|
|
1172
|
+
$fault = "client";
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1175
|
+
* @public
|
|
1176
|
+
*/
|
|
1177
|
+
Message;
|
|
970
1178
|
/**
|
|
971
1179
|
* @internal
|
|
972
1180
|
*/
|
|
@@ -976,15 +1184,21 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
976
1184
|
$fault: "client",
|
|
977
1185
|
...opts
|
|
978
1186
|
});
|
|
979
|
-
this.name = "ServiceQuotaExceededException";
|
|
980
|
-
this.$fault = "client";
|
|
981
1187
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
982
1188
|
this.Message = opts.Message;
|
|
983
1189
|
}
|
|
984
1190
|
};
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
1191
|
+
var CloudTrailAccessNotEnabledException = class _CloudTrailAccessNotEnabledException extends CloudTrailServiceException {
|
|
1192
|
+
static {
|
|
1193
|
+
__name(this, "CloudTrailAccessNotEnabledException");
|
|
1194
|
+
}
|
|
1195
|
+
name = "CloudTrailAccessNotEnabledException";
|
|
1196
|
+
$fault = "client";
|
|
1197
|
+
/**
|
|
1198
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1199
|
+
* @public
|
|
1200
|
+
*/
|
|
1201
|
+
Message;
|
|
988
1202
|
/**
|
|
989
1203
|
* @internal
|
|
990
1204
|
*/
|
|
@@ -994,14 +1208,10 @@ var _CloudTrailAccessNotEnabledException = class _CloudTrailAccessNotEnabledExce
|
|
|
994
1208
|
$fault: "client",
|
|
995
1209
|
...opts
|
|
996
1210
|
});
|
|
997
|
-
this.name = "CloudTrailAccessNotEnabledException";
|
|
998
|
-
this.$fault = "client";
|
|
999
1211
|
Object.setPrototypeOf(this, _CloudTrailAccessNotEnabledException.prototype);
|
|
1000
1212
|
this.Message = opts.Message;
|
|
1001
1213
|
}
|
|
1002
1214
|
};
|
|
1003
|
-
__name(_CloudTrailAccessNotEnabledException, "CloudTrailAccessNotEnabledException");
|
|
1004
|
-
var CloudTrailAccessNotEnabledException = _CloudTrailAccessNotEnabledException;
|
|
1005
1215
|
var EventDataStoreStatus = {
|
|
1006
1216
|
CREATED: "CREATED",
|
|
1007
1217
|
ENABLED: "ENABLED",
|
|
@@ -1010,7 +1220,17 @@ var EventDataStoreStatus = {
|
|
|
1010
1220
|
STOPPED_INGESTION: "STOPPED_INGESTION",
|
|
1011
1221
|
STOPPING_INGESTION: "STOPPING_INGESTION"
|
|
1012
1222
|
};
|
|
1013
|
-
var
|
|
1223
|
+
var EventDataStoreAlreadyExistsException = class _EventDataStoreAlreadyExistsException extends CloudTrailServiceException {
|
|
1224
|
+
static {
|
|
1225
|
+
__name(this, "EventDataStoreAlreadyExistsException");
|
|
1226
|
+
}
|
|
1227
|
+
name = "EventDataStoreAlreadyExistsException";
|
|
1228
|
+
$fault = "client";
|
|
1229
|
+
/**
|
|
1230
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1231
|
+
* @public
|
|
1232
|
+
*/
|
|
1233
|
+
Message;
|
|
1014
1234
|
/**
|
|
1015
1235
|
* @internal
|
|
1016
1236
|
*/
|
|
@@ -1020,15 +1240,21 @@ var _EventDataStoreAlreadyExistsException = class _EventDataStoreAlreadyExistsEx
|
|
|
1020
1240
|
$fault: "client",
|
|
1021
1241
|
...opts
|
|
1022
1242
|
});
|
|
1023
|
-
this.name = "EventDataStoreAlreadyExistsException";
|
|
1024
|
-
this.$fault = "client";
|
|
1025
1243
|
Object.setPrototypeOf(this, _EventDataStoreAlreadyExistsException.prototype);
|
|
1026
1244
|
this.Message = opts.Message;
|
|
1027
1245
|
}
|
|
1028
1246
|
};
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1247
|
+
var EventDataStoreMaxLimitExceededException = class _EventDataStoreMaxLimitExceededException extends CloudTrailServiceException {
|
|
1248
|
+
static {
|
|
1249
|
+
__name(this, "EventDataStoreMaxLimitExceededException");
|
|
1250
|
+
}
|
|
1251
|
+
name = "EventDataStoreMaxLimitExceededException";
|
|
1252
|
+
$fault = "client";
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1255
|
+
* @public
|
|
1256
|
+
*/
|
|
1257
|
+
Message;
|
|
1032
1258
|
/**
|
|
1033
1259
|
* @internal
|
|
1034
1260
|
*/
|
|
@@ -1038,15 +1264,21 @@ var _EventDataStoreMaxLimitExceededException = class _EventDataStoreMaxLimitExce
|
|
|
1038
1264
|
$fault: "client",
|
|
1039
1265
|
...opts
|
|
1040
1266
|
});
|
|
1041
|
-
this.name = "EventDataStoreMaxLimitExceededException";
|
|
1042
|
-
this.$fault = "client";
|
|
1043
1267
|
Object.setPrototypeOf(this, _EventDataStoreMaxLimitExceededException.prototype);
|
|
1044
1268
|
this.Message = opts.Message;
|
|
1045
1269
|
}
|
|
1046
1270
|
};
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1271
|
+
var InsufficientDependencyServiceAccessPermissionException = class _InsufficientDependencyServiceAccessPermissionException extends CloudTrailServiceException {
|
|
1272
|
+
static {
|
|
1273
|
+
__name(this, "InsufficientDependencyServiceAccessPermissionException");
|
|
1274
|
+
}
|
|
1275
|
+
name = "InsufficientDependencyServiceAccessPermissionException";
|
|
1276
|
+
$fault = "client";
|
|
1277
|
+
/**
|
|
1278
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1281
|
+
Message;
|
|
1050
1282
|
/**
|
|
1051
1283
|
* @internal
|
|
1052
1284
|
*/
|
|
@@ -1056,15 +1288,21 @@ var _InsufficientDependencyServiceAccessPermissionException = class _Insufficien
|
|
|
1056
1288
|
$fault: "client",
|
|
1057
1289
|
...opts
|
|
1058
1290
|
});
|
|
1059
|
-
this.name = "InsufficientDependencyServiceAccessPermissionException";
|
|
1060
|
-
this.$fault = "client";
|
|
1061
1291
|
Object.setPrototypeOf(this, _InsufficientDependencyServiceAccessPermissionException.prototype);
|
|
1062
1292
|
this.Message = opts.Message;
|
|
1063
1293
|
}
|
|
1064
1294
|
};
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1295
|
+
var InvalidEventSelectorsException = class _InvalidEventSelectorsException extends CloudTrailServiceException {
|
|
1296
|
+
static {
|
|
1297
|
+
__name(this, "InvalidEventSelectorsException");
|
|
1298
|
+
}
|
|
1299
|
+
name = "InvalidEventSelectorsException";
|
|
1300
|
+
$fault = "client";
|
|
1301
|
+
/**
|
|
1302
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1303
|
+
* @public
|
|
1304
|
+
*/
|
|
1305
|
+
Message;
|
|
1068
1306
|
/**
|
|
1069
1307
|
* @internal
|
|
1070
1308
|
*/
|
|
@@ -1074,15 +1312,21 @@ var _InvalidEventSelectorsException = class _InvalidEventSelectorsException exte
|
|
|
1074
1312
|
$fault: "client",
|
|
1075
1313
|
...opts
|
|
1076
1314
|
});
|
|
1077
|
-
this.name = "InvalidEventSelectorsException";
|
|
1078
|
-
this.$fault = "client";
|
|
1079
1315
|
Object.setPrototypeOf(this, _InvalidEventSelectorsException.prototype);
|
|
1080
1316
|
this.Message = opts.Message;
|
|
1081
1317
|
}
|
|
1082
1318
|
};
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1319
|
+
var InvalidKmsKeyIdException = class _InvalidKmsKeyIdException extends CloudTrailServiceException {
|
|
1320
|
+
static {
|
|
1321
|
+
__name(this, "InvalidKmsKeyIdException");
|
|
1322
|
+
}
|
|
1323
|
+
name = "InvalidKmsKeyIdException";
|
|
1324
|
+
$fault = "client";
|
|
1325
|
+
/**
|
|
1326
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1327
|
+
* @public
|
|
1328
|
+
*/
|
|
1329
|
+
Message;
|
|
1086
1330
|
/**
|
|
1087
1331
|
* @internal
|
|
1088
1332
|
*/
|
|
@@ -1092,15 +1336,21 @@ var _InvalidKmsKeyIdException = class _InvalidKmsKeyIdException extends CloudTra
|
|
|
1092
1336
|
$fault: "client",
|
|
1093
1337
|
...opts
|
|
1094
1338
|
});
|
|
1095
|
-
this.name = "InvalidKmsKeyIdException";
|
|
1096
|
-
this.$fault = "client";
|
|
1097
1339
|
Object.setPrototypeOf(this, _InvalidKmsKeyIdException.prototype);
|
|
1098
1340
|
this.Message = opts.Message;
|
|
1099
1341
|
}
|
|
1100
1342
|
};
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1343
|
+
var KmsException = class _KmsException extends CloudTrailServiceException {
|
|
1344
|
+
static {
|
|
1345
|
+
__name(this, "KmsException");
|
|
1346
|
+
}
|
|
1347
|
+
name = "KmsException";
|
|
1348
|
+
$fault = "client";
|
|
1349
|
+
/**
|
|
1350
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1351
|
+
* @public
|
|
1352
|
+
*/
|
|
1353
|
+
Message;
|
|
1104
1354
|
/**
|
|
1105
1355
|
* @internal
|
|
1106
1356
|
*/
|
|
@@ -1110,15 +1360,21 @@ var _KmsException = class _KmsException extends CloudTrailServiceException {
|
|
|
1110
1360
|
$fault: "client",
|
|
1111
1361
|
...opts
|
|
1112
1362
|
});
|
|
1113
|
-
this.name = "KmsException";
|
|
1114
|
-
this.$fault = "client";
|
|
1115
1363
|
Object.setPrototypeOf(this, _KmsException.prototype);
|
|
1116
1364
|
this.Message = opts.Message;
|
|
1117
1365
|
}
|
|
1118
1366
|
};
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1367
|
+
var KmsKeyNotFoundException = class _KmsKeyNotFoundException extends CloudTrailServiceException {
|
|
1368
|
+
static {
|
|
1369
|
+
__name(this, "KmsKeyNotFoundException");
|
|
1370
|
+
}
|
|
1371
|
+
name = "KmsKeyNotFoundException";
|
|
1372
|
+
$fault = "client";
|
|
1373
|
+
/**
|
|
1374
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1375
|
+
* @public
|
|
1376
|
+
*/
|
|
1377
|
+
Message;
|
|
1122
1378
|
/**
|
|
1123
1379
|
* @internal
|
|
1124
1380
|
*/
|
|
@@ -1128,15 +1384,21 @@ var _KmsKeyNotFoundException = class _KmsKeyNotFoundException extends CloudTrail
|
|
|
1128
1384
|
$fault: "client",
|
|
1129
1385
|
...opts
|
|
1130
1386
|
});
|
|
1131
|
-
this.name = "KmsKeyNotFoundException";
|
|
1132
|
-
this.$fault = "client";
|
|
1133
1387
|
Object.setPrototypeOf(this, _KmsKeyNotFoundException.prototype);
|
|
1134
1388
|
this.Message = opts.Message;
|
|
1135
1389
|
}
|
|
1136
1390
|
};
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1391
|
+
var OrganizationNotInAllFeaturesModeException = class _OrganizationNotInAllFeaturesModeException extends CloudTrailServiceException {
|
|
1392
|
+
static {
|
|
1393
|
+
__name(this, "OrganizationNotInAllFeaturesModeException");
|
|
1394
|
+
}
|
|
1395
|
+
name = "OrganizationNotInAllFeaturesModeException";
|
|
1396
|
+
$fault = "client";
|
|
1397
|
+
/**
|
|
1398
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1399
|
+
* @public
|
|
1400
|
+
*/
|
|
1401
|
+
Message;
|
|
1140
1402
|
/**
|
|
1141
1403
|
* @internal
|
|
1142
1404
|
*/
|
|
@@ -1146,15 +1408,21 @@ var _OrganizationNotInAllFeaturesModeException = class _OrganizationNotInAllFeat
|
|
|
1146
1408
|
$fault: "client",
|
|
1147
1409
|
...opts
|
|
1148
1410
|
});
|
|
1149
|
-
this.name = "OrganizationNotInAllFeaturesModeException";
|
|
1150
|
-
this.$fault = "client";
|
|
1151
1411
|
Object.setPrototypeOf(this, _OrganizationNotInAllFeaturesModeException.prototype);
|
|
1152
1412
|
this.Message = opts.Message;
|
|
1153
1413
|
}
|
|
1154
1414
|
};
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1415
|
+
var OrganizationsNotInUseException = class _OrganizationsNotInUseException extends CloudTrailServiceException {
|
|
1416
|
+
static {
|
|
1417
|
+
__name(this, "OrganizationsNotInUseException");
|
|
1418
|
+
}
|
|
1419
|
+
name = "OrganizationsNotInUseException";
|
|
1420
|
+
$fault = "client";
|
|
1421
|
+
/**
|
|
1422
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1423
|
+
* @public
|
|
1424
|
+
*/
|
|
1425
|
+
Message;
|
|
1158
1426
|
/**
|
|
1159
1427
|
* @internal
|
|
1160
1428
|
*/
|
|
@@ -1164,15 +1432,21 @@ var _OrganizationsNotInUseException = class _OrganizationsNotInUseException exte
|
|
|
1164
1432
|
$fault: "client",
|
|
1165
1433
|
...opts
|
|
1166
1434
|
});
|
|
1167
|
-
this.name = "OrganizationsNotInUseException";
|
|
1168
|
-
this.$fault = "client";
|
|
1169
1435
|
Object.setPrototypeOf(this, _OrganizationsNotInUseException.prototype);
|
|
1170
1436
|
this.Message = opts.Message;
|
|
1171
1437
|
}
|
|
1172
1438
|
};
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1439
|
+
var CloudTrailInvalidClientTokenIdException = class _CloudTrailInvalidClientTokenIdException extends CloudTrailServiceException {
|
|
1440
|
+
static {
|
|
1441
|
+
__name(this, "CloudTrailInvalidClientTokenIdException");
|
|
1442
|
+
}
|
|
1443
|
+
name = "CloudTrailInvalidClientTokenIdException";
|
|
1444
|
+
$fault = "client";
|
|
1445
|
+
/**
|
|
1446
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1447
|
+
* @public
|
|
1448
|
+
*/
|
|
1449
|
+
Message;
|
|
1176
1450
|
/**
|
|
1177
1451
|
* @internal
|
|
1178
1452
|
*/
|
|
@@ -1182,15 +1456,21 @@ var _CloudTrailInvalidClientTokenIdException = class _CloudTrailInvalidClientTok
|
|
|
1182
1456
|
$fault: "client",
|
|
1183
1457
|
...opts
|
|
1184
1458
|
});
|
|
1185
|
-
this.name = "CloudTrailInvalidClientTokenIdException";
|
|
1186
|
-
this.$fault = "client";
|
|
1187
1459
|
Object.setPrototypeOf(this, _CloudTrailInvalidClientTokenIdException.prototype);
|
|
1188
1460
|
this.Message = opts.Message;
|
|
1189
1461
|
}
|
|
1190
1462
|
};
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1463
|
+
var CloudWatchLogsDeliveryUnavailableException = class _CloudWatchLogsDeliveryUnavailableException extends CloudTrailServiceException {
|
|
1464
|
+
static {
|
|
1465
|
+
__name(this, "CloudWatchLogsDeliveryUnavailableException");
|
|
1466
|
+
}
|
|
1467
|
+
name = "CloudWatchLogsDeliveryUnavailableException";
|
|
1468
|
+
$fault = "client";
|
|
1469
|
+
/**
|
|
1470
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1471
|
+
* @public
|
|
1472
|
+
*/
|
|
1473
|
+
Message;
|
|
1194
1474
|
/**
|
|
1195
1475
|
* @internal
|
|
1196
1476
|
*/
|
|
@@ -1200,15 +1480,21 @@ var _CloudWatchLogsDeliveryUnavailableException = class _CloudWatchLogsDeliveryU
|
|
|
1200
1480
|
$fault: "client",
|
|
1201
1481
|
...opts
|
|
1202
1482
|
});
|
|
1203
|
-
this.name = "CloudWatchLogsDeliveryUnavailableException";
|
|
1204
|
-
this.$fault = "client";
|
|
1205
1483
|
Object.setPrototypeOf(this, _CloudWatchLogsDeliveryUnavailableException.prototype);
|
|
1206
1484
|
this.Message = opts.Message;
|
|
1207
1485
|
}
|
|
1208
1486
|
};
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1487
|
+
var InsufficientS3BucketPolicyException = class _InsufficientS3BucketPolicyException extends CloudTrailServiceException {
|
|
1488
|
+
static {
|
|
1489
|
+
__name(this, "InsufficientS3BucketPolicyException");
|
|
1490
|
+
}
|
|
1491
|
+
name = "InsufficientS3BucketPolicyException";
|
|
1492
|
+
$fault = "client";
|
|
1493
|
+
/**
|
|
1494
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1495
|
+
* @public
|
|
1496
|
+
*/
|
|
1497
|
+
Message;
|
|
1212
1498
|
/**
|
|
1213
1499
|
* @internal
|
|
1214
1500
|
*/
|
|
@@ -1218,15 +1504,21 @@ var _InsufficientS3BucketPolicyException = class _InsufficientS3BucketPolicyExce
|
|
|
1218
1504
|
$fault: "client",
|
|
1219
1505
|
...opts
|
|
1220
1506
|
});
|
|
1221
|
-
this.name = "InsufficientS3BucketPolicyException";
|
|
1222
|
-
this.$fault = "client";
|
|
1223
1507
|
Object.setPrototypeOf(this, _InsufficientS3BucketPolicyException.prototype);
|
|
1224
1508
|
this.Message = opts.Message;
|
|
1225
1509
|
}
|
|
1226
1510
|
};
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1511
|
+
var InsufficientSnsTopicPolicyException = class _InsufficientSnsTopicPolicyException extends CloudTrailServiceException {
|
|
1512
|
+
static {
|
|
1513
|
+
__name(this, "InsufficientSnsTopicPolicyException");
|
|
1514
|
+
}
|
|
1515
|
+
name = "InsufficientSnsTopicPolicyException";
|
|
1516
|
+
$fault = "client";
|
|
1517
|
+
/**
|
|
1518
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1519
|
+
* @public
|
|
1520
|
+
*/
|
|
1521
|
+
Message;
|
|
1230
1522
|
/**
|
|
1231
1523
|
* @internal
|
|
1232
1524
|
*/
|
|
@@ -1236,15 +1528,21 @@ var _InsufficientSnsTopicPolicyException = class _InsufficientSnsTopicPolicyExce
|
|
|
1236
1528
|
$fault: "client",
|
|
1237
1529
|
...opts
|
|
1238
1530
|
});
|
|
1239
|
-
this.name = "InsufficientSnsTopicPolicyException";
|
|
1240
|
-
this.$fault = "client";
|
|
1241
1531
|
Object.setPrototypeOf(this, _InsufficientSnsTopicPolicyException.prototype);
|
|
1242
1532
|
this.Message = opts.Message;
|
|
1243
1533
|
}
|
|
1244
1534
|
};
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1535
|
+
var InvalidCloudWatchLogsLogGroupArnException = class _InvalidCloudWatchLogsLogGroupArnException extends CloudTrailServiceException {
|
|
1536
|
+
static {
|
|
1537
|
+
__name(this, "InvalidCloudWatchLogsLogGroupArnException");
|
|
1538
|
+
}
|
|
1539
|
+
name = "InvalidCloudWatchLogsLogGroupArnException";
|
|
1540
|
+
$fault = "client";
|
|
1541
|
+
/**
|
|
1542
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1543
|
+
* @public
|
|
1544
|
+
*/
|
|
1545
|
+
Message;
|
|
1248
1546
|
/**
|
|
1249
1547
|
* @internal
|
|
1250
1548
|
*/
|
|
@@ -1254,15 +1552,21 @@ var _InvalidCloudWatchLogsLogGroupArnException = class _InvalidCloudWatchLogsLog
|
|
|
1254
1552
|
$fault: "client",
|
|
1255
1553
|
...opts
|
|
1256
1554
|
});
|
|
1257
|
-
this.name = "InvalidCloudWatchLogsLogGroupArnException";
|
|
1258
|
-
this.$fault = "client";
|
|
1259
1555
|
Object.setPrototypeOf(this, _InvalidCloudWatchLogsLogGroupArnException.prototype);
|
|
1260
1556
|
this.Message = opts.Message;
|
|
1261
1557
|
}
|
|
1262
1558
|
};
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1559
|
+
var InvalidCloudWatchLogsRoleArnException = class _InvalidCloudWatchLogsRoleArnException extends CloudTrailServiceException {
|
|
1560
|
+
static {
|
|
1561
|
+
__name(this, "InvalidCloudWatchLogsRoleArnException");
|
|
1562
|
+
}
|
|
1563
|
+
name = "InvalidCloudWatchLogsRoleArnException";
|
|
1564
|
+
$fault = "client";
|
|
1565
|
+
/**
|
|
1566
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1567
|
+
* @public
|
|
1568
|
+
*/
|
|
1569
|
+
Message;
|
|
1266
1570
|
/**
|
|
1267
1571
|
* @internal
|
|
1268
1572
|
*/
|
|
@@ -1272,15 +1576,21 @@ var _InvalidCloudWatchLogsRoleArnException = class _InvalidCloudWatchLogsRoleArn
|
|
|
1272
1576
|
$fault: "client",
|
|
1273
1577
|
...opts
|
|
1274
1578
|
});
|
|
1275
|
-
this.name = "InvalidCloudWatchLogsRoleArnException";
|
|
1276
|
-
this.$fault = "client";
|
|
1277
1579
|
Object.setPrototypeOf(this, _InvalidCloudWatchLogsRoleArnException.prototype);
|
|
1278
1580
|
this.Message = opts.Message;
|
|
1279
1581
|
}
|
|
1280
1582
|
};
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1583
|
+
var InvalidParameterCombinationException = class _InvalidParameterCombinationException extends CloudTrailServiceException {
|
|
1584
|
+
static {
|
|
1585
|
+
__name(this, "InvalidParameterCombinationException");
|
|
1586
|
+
}
|
|
1587
|
+
name = "InvalidParameterCombinationException";
|
|
1588
|
+
$fault = "client";
|
|
1589
|
+
/**
|
|
1590
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1591
|
+
* @public
|
|
1592
|
+
*/
|
|
1593
|
+
Message;
|
|
1284
1594
|
/**
|
|
1285
1595
|
* @internal
|
|
1286
1596
|
*/
|
|
@@ -1290,15 +1600,21 @@ var _InvalidParameterCombinationException = class _InvalidParameterCombinationEx
|
|
|
1290
1600
|
$fault: "client",
|
|
1291
1601
|
...opts
|
|
1292
1602
|
});
|
|
1293
|
-
this.name = "InvalidParameterCombinationException";
|
|
1294
|
-
this.$fault = "client";
|
|
1295
1603
|
Object.setPrototypeOf(this, _InvalidParameterCombinationException.prototype);
|
|
1296
1604
|
this.Message = opts.Message;
|
|
1297
1605
|
}
|
|
1298
1606
|
};
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1607
|
+
var InvalidS3BucketNameException = class _InvalidS3BucketNameException extends CloudTrailServiceException {
|
|
1608
|
+
static {
|
|
1609
|
+
__name(this, "InvalidS3BucketNameException");
|
|
1610
|
+
}
|
|
1611
|
+
name = "InvalidS3BucketNameException";
|
|
1612
|
+
$fault = "client";
|
|
1613
|
+
/**
|
|
1614
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1615
|
+
* @public
|
|
1616
|
+
*/
|
|
1617
|
+
Message;
|
|
1302
1618
|
/**
|
|
1303
1619
|
* @internal
|
|
1304
1620
|
*/
|
|
@@ -1308,15 +1624,21 @@ var _InvalidS3BucketNameException = class _InvalidS3BucketNameException extends
|
|
|
1308
1624
|
$fault: "client",
|
|
1309
1625
|
...opts
|
|
1310
1626
|
});
|
|
1311
|
-
this.name = "InvalidS3BucketNameException";
|
|
1312
|
-
this.$fault = "client";
|
|
1313
1627
|
Object.setPrototypeOf(this, _InvalidS3BucketNameException.prototype);
|
|
1314
1628
|
this.Message = opts.Message;
|
|
1315
1629
|
}
|
|
1316
1630
|
};
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1631
|
+
var InvalidS3PrefixException = class _InvalidS3PrefixException extends CloudTrailServiceException {
|
|
1632
|
+
static {
|
|
1633
|
+
__name(this, "InvalidS3PrefixException");
|
|
1634
|
+
}
|
|
1635
|
+
name = "InvalidS3PrefixException";
|
|
1636
|
+
$fault = "client";
|
|
1637
|
+
/**
|
|
1638
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1639
|
+
* @public
|
|
1640
|
+
*/
|
|
1641
|
+
Message;
|
|
1320
1642
|
/**
|
|
1321
1643
|
* @internal
|
|
1322
1644
|
*/
|
|
@@ -1326,15 +1648,21 @@ var _InvalidS3PrefixException = class _InvalidS3PrefixException extends CloudTra
|
|
|
1326
1648
|
$fault: "client",
|
|
1327
1649
|
...opts
|
|
1328
1650
|
});
|
|
1329
|
-
this.name = "InvalidS3PrefixException";
|
|
1330
|
-
this.$fault = "client";
|
|
1331
1651
|
Object.setPrototypeOf(this, _InvalidS3PrefixException.prototype);
|
|
1332
1652
|
this.Message = opts.Message;
|
|
1333
1653
|
}
|
|
1334
1654
|
};
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1655
|
+
var InvalidSnsTopicNameException = class _InvalidSnsTopicNameException extends CloudTrailServiceException {
|
|
1656
|
+
static {
|
|
1657
|
+
__name(this, "InvalidSnsTopicNameException");
|
|
1658
|
+
}
|
|
1659
|
+
name = "InvalidSnsTopicNameException";
|
|
1660
|
+
$fault = "client";
|
|
1661
|
+
/**
|
|
1662
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1663
|
+
* @public
|
|
1664
|
+
*/
|
|
1665
|
+
Message;
|
|
1338
1666
|
/**
|
|
1339
1667
|
* @internal
|
|
1340
1668
|
*/
|
|
@@ -1344,15 +1672,21 @@ var _InvalidSnsTopicNameException = class _InvalidSnsTopicNameException extends
|
|
|
1344
1672
|
$fault: "client",
|
|
1345
1673
|
...opts
|
|
1346
1674
|
});
|
|
1347
|
-
this.name = "InvalidSnsTopicNameException";
|
|
1348
|
-
this.$fault = "client";
|
|
1349
1675
|
Object.setPrototypeOf(this, _InvalidSnsTopicNameException.prototype);
|
|
1350
1676
|
this.Message = opts.Message;
|
|
1351
1677
|
}
|
|
1352
1678
|
};
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1679
|
+
var KmsKeyDisabledException = class _KmsKeyDisabledException extends CloudTrailServiceException {
|
|
1680
|
+
static {
|
|
1681
|
+
__name(this, "KmsKeyDisabledException");
|
|
1682
|
+
}
|
|
1683
|
+
name = "KmsKeyDisabledException";
|
|
1684
|
+
$fault = "client";
|
|
1685
|
+
/**
|
|
1686
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1687
|
+
* @public
|
|
1688
|
+
*/
|
|
1689
|
+
Message;
|
|
1356
1690
|
/**
|
|
1357
1691
|
* @internal
|
|
1358
1692
|
*/
|
|
@@ -1362,15 +1696,21 @@ var _KmsKeyDisabledException = class _KmsKeyDisabledException extends CloudTrail
|
|
|
1362
1696
|
$fault: "client",
|
|
1363
1697
|
...opts
|
|
1364
1698
|
});
|
|
1365
|
-
this.name = "KmsKeyDisabledException";
|
|
1366
|
-
this.$fault = "client";
|
|
1367
1699
|
Object.setPrototypeOf(this, _KmsKeyDisabledException.prototype);
|
|
1368
1700
|
this.Message = opts.Message;
|
|
1369
1701
|
}
|
|
1370
1702
|
};
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1703
|
+
var MaximumNumberOfTrailsExceededException = class _MaximumNumberOfTrailsExceededException extends CloudTrailServiceException {
|
|
1704
|
+
static {
|
|
1705
|
+
__name(this, "MaximumNumberOfTrailsExceededException");
|
|
1706
|
+
}
|
|
1707
|
+
name = "MaximumNumberOfTrailsExceededException";
|
|
1708
|
+
$fault = "client";
|
|
1709
|
+
/**
|
|
1710
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1711
|
+
* @public
|
|
1712
|
+
*/
|
|
1713
|
+
Message;
|
|
1374
1714
|
/**
|
|
1375
1715
|
* @internal
|
|
1376
1716
|
*/
|
|
@@ -1380,15 +1720,21 @@ var _MaximumNumberOfTrailsExceededException = class _MaximumNumberOfTrailsExceed
|
|
|
1380
1720
|
$fault: "client",
|
|
1381
1721
|
...opts
|
|
1382
1722
|
});
|
|
1383
|
-
this.name = "MaximumNumberOfTrailsExceededException";
|
|
1384
|
-
this.$fault = "client";
|
|
1385
1723
|
Object.setPrototypeOf(this, _MaximumNumberOfTrailsExceededException.prototype);
|
|
1386
1724
|
this.Message = opts.Message;
|
|
1387
1725
|
}
|
|
1388
1726
|
};
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1727
|
+
var S3BucketDoesNotExistException = class _S3BucketDoesNotExistException extends CloudTrailServiceException {
|
|
1728
|
+
static {
|
|
1729
|
+
__name(this, "S3BucketDoesNotExistException");
|
|
1730
|
+
}
|
|
1731
|
+
name = "S3BucketDoesNotExistException";
|
|
1732
|
+
$fault = "client";
|
|
1733
|
+
/**
|
|
1734
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1735
|
+
* @public
|
|
1736
|
+
*/
|
|
1737
|
+
Message;
|
|
1392
1738
|
/**
|
|
1393
1739
|
* @internal
|
|
1394
1740
|
*/
|
|
@@ -1398,15 +1744,21 @@ var _S3BucketDoesNotExistException = class _S3BucketDoesNotExistException extend
|
|
|
1398
1744
|
$fault: "client",
|
|
1399
1745
|
...opts
|
|
1400
1746
|
});
|
|
1401
|
-
this.name = "S3BucketDoesNotExistException";
|
|
1402
|
-
this.$fault = "client";
|
|
1403
1747
|
Object.setPrototypeOf(this, _S3BucketDoesNotExistException.prototype);
|
|
1404
1748
|
this.Message = opts.Message;
|
|
1405
1749
|
}
|
|
1406
1750
|
};
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1751
|
+
var ThrottlingException = class _ThrottlingException extends CloudTrailServiceException {
|
|
1752
|
+
static {
|
|
1753
|
+
__name(this, "ThrottlingException");
|
|
1754
|
+
}
|
|
1755
|
+
name = "ThrottlingException";
|
|
1756
|
+
$fault = "client";
|
|
1757
|
+
/**
|
|
1758
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1759
|
+
* @public
|
|
1760
|
+
*/
|
|
1761
|
+
Message;
|
|
1410
1762
|
/**
|
|
1411
1763
|
* @internal
|
|
1412
1764
|
*/
|
|
@@ -1416,15 +1768,21 @@ var _ThrottlingException = class _ThrottlingException extends CloudTrailServiceE
|
|
|
1416
1768
|
$fault: "client",
|
|
1417
1769
|
...opts
|
|
1418
1770
|
});
|
|
1419
|
-
this.name = "ThrottlingException";
|
|
1420
|
-
this.$fault = "client";
|
|
1421
1771
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
1422
1772
|
this.Message = opts.Message;
|
|
1423
1773
|
}
|
|
1424
1774
|
};
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1775
|
+
var TrailAlreadyExistsException = class _TrailAlreadyExistsException extends CloudTrailServiceException {
|
|
1776
|
+
static {
|
|
1777
|
+
__name(this, "TrailAlreadyExistsException");
|
|
1778
|
+
}
|
|
1779
|
+
name = "TrailAlreadyExistsException";
|
|
1780
|
+
$fault = "client";
|
|
1781
|
+
/**
|
|
1782
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1783
|
+
* @public
|
|
1784
|
+
*/
|
|
1785
|
+
Message;
|
|
1428
1786
|
/**
|
|
1429
1787
|
* @internal
|
|
1430
1788
|
*/
|
|
@@ -1434,15 +1792,21 @@ var _TrailAlreadyExistsException = class _TrailAlreadyExistsException extends Cl
|
|
|
1434
1792
|
$fault: "client",
|
|
1435
1793
|
...opts
|
|
1436
1794
|
});
|
|
1437
|
-
this.name = "TrailAlreadyExistsException";
|
|
1438
|
-
this.$fault = "client";
|
|
1439
1795
|
Object.setPrototypeOf(this, _TrailAlreadyExistsException.prototype);
|
|
1440
1796
|
this.Message = opts.Message;
|
|
1441
1797
|
}
|
|
1442
1798
|
};
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1799
|
+
var TrailNotProvidedException = class _TrailNotProvidedException extends CloudTrailServiceException {
|
|
1800
|
+
static {
|
|
1801
|
+
__name(this, "TrailNotProvidedException");
|
|
1802
|
+
}
|
|
1803
|
+
name = "TrailNotProvidedException";
|
|
1804
|
+
$fault = "client";
|
|
1805
|
+
/**
|
|
1806
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1807
|
+
* @public
|
|
1808
|
+
*/
|
|
1809
|
+
Message;
|
|
1446
1810
|
/**
|
|
1447
1811
|
* @internal
|
|
1448
1812
|
*/
|
|
@@ -1452,15 +1816,21 @@ var _TrailNotProvidedException = class _TrailNotProvidedException extends CloudT
|
|
|
1452
1816
|
$fault: "client",
|
|
1453
1817
|
...opts
|
|
1454
1818
|
});
|
|
1455
|
-
this.name = "TrailNotProvidedException";
|
|
1456
|
-
this.$fault = "client";
|
|
1457
1819
|
Object.setPrototypeOf(this, _TrailNotProvidedException.prototype);
|
|
1458
1820
|
this.Message = opts.Message;
|
|
1459
1821
|
}
|
|
1460
1822
|
};
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1823
|
+
var EventDataStoreFederationEnabledException = class _EventDataStoreFederationEnabledException extends CloudTrailServiceException {
|
|
1824
|
+
static {
|
|
1825
|
+
__name(this, "EventDataStoreFederationEnabledException");
|
|
1826
|
+
}
|
|
1827
|
+
name = "EventDataStoreFederationEnabledException";
|
|
1828
|
+
$fault = "client";
|
|
1829
|
+
/**
|
|
1830
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1831
|
+
* @public
|
|
1832
|
+
*/
|
|
1833
|
+
Message;
|
|
1464
1834
|
/**
|
|
1465
1835
|
* @internal
|
|
1466
1836
|
*/
|
|
@@ -1470,15 +1840,21 @@ var _EventDataStoreFederationEnabledException = class _EventDataStoreFederationE
|
|
|
1470
1840
|
$fault: "client",
|
|
1471
1841
|
...opts
|
|
1472
1842
|
});
|
|
1473
|
-
this.name = "EventDataStoreFederationEnabledException";
|
|
1474
|
-
this.$fault = "client";
|
|
1475
1843
|
Object.setPrototypeOf(this, _EventDataStoreFederationEnabledException.prototype);
|
|
1476
1844
|
this.Message = opts.Message;
|
|
1477
1845
|
}
|
|
1478
1846
|
};
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1847
|
+
var EventDataStoreHasOngoingImportException = class _EventDataStoreHasOngoingImportException extends CloudTrailServiceException {
|
|
1848
|
+
static {
|
|
1849
|
+
__name(this, "EventDataStoreHasOngoingImportException");
|
|
1850
|
+
}
|
|
1851
|
+
name = "EventDataStoreHasOngoingImportException";
|
|
1852
|
+
$fault = "client";
|
|
1853
|
+
/**
|
|
1854
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1855
|
+
* @public
|
|
1856
|
+
*/
|
|
1857
|
+
Message;
|
|
1482
1858
|
/**
|
|
1483
1859
|
* @internal
|
|
1484
1860
|
*/
|
|
@@ -1488,15 +1864,21 @@ var _EventDataStoreHasOngoingImportException = class _EventDataStoreHasOngoingIm
|
|
|
1488
1864
|
$fault: "client",
|
|
1489
1865
|
...opts
|
|
1490
1866
|
});
|
|
1491
|
-
this.name = "EventDataStoreHasOngoingImportException";
|
|
1492
|
-
this.$fault = "client";
|
|
1493
1867
|
Object.setPrototypeOf(this, _EventDataStoreHasOngoingImportException.prototype);
|
|
1494
1868
|
this.Message = opts.Message;
|
|
1495
1869
|
}
|
|
1496
1870
|
};
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1871
|
+
var EventDataStoreTerminationProtectedException = class _EventDataStoreTerminationProtectedException extends CloudTrailServiceException {
|
|
1872
|
+
static {
|
|
1873
|
+
__name(this, "EventDataStoreTerminationProtectedException");
|
|
1874
|
+
}
|
|
1875
|
+
name = "EventDataStoreTerminationProtectedException";
|
|
1876
|
+
$fault = "client";
|
|
1877
|
+
/**
|
|
1878
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1881
|
+
Message;
|
|
1500
1882
|
/**
|
|
1501
1883
|
* @internal
|
|
1502
1884
|
*/
|
|
@@ -1506,15 +1888,21 @@ var _EventDataStoreTerminationProtectedException = class _EventDataStoreTerminat
|
|
|
1506
1888
|
$fault: "client",
|
|
1507
1889
|
...opts
|
|
1508
1890
|
});
|
|
1509
|
-
this.name = "EventDataStoreTerminationProtectedException";
|
|
1510
|
-
this.$fault = "client";
|
|
1511
1891
|
Object.setPrototypeOf(this, _EventDataStoreTerminationProtectedException.prototype);
|
|
1512
1892
|
this.Message = opts.Message;
|
|
1513
1893
|
}
|
|
1514
1894
|
};
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1895
|
+
var ResourceARNNotValidException = class _ResourceARNNotValidException extends CloudTrailServiceException {
|
|
1896
|
+
static {
|
|
1897
|
+
__name(this, "ResourceARNNotValidException");
|
|
1898
|
+
}
|
|
1899
|
+
name = "ResourceARNNotValidException";
|
|
1900
|
+
$fault = "client";
|
|
1901
|
+
/**
|
|
1902
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1903
|
+
* @public
|
|
1904
|
+
*/
|
|
1905
|
+
Message;
|
|
1518
1906
|
/**
|
|
1519
1907
|
* @internal
|
|
1520
1908
|
*/
|
|
@@ -1524,15 +1912,21 @@ var _ResourceARNNotValidException = class _ResourceARNNotValidException extends
|
|
|
1524
1912
|
$fault: "client",
|
|
1525
1913
|
...opts
|
|
1526
1914
|
});
|
|
1527
|
-
this.name = "ResourceARNNotValidException";
|
|
1528
|
-
this.$fault = "client";
|
|
1529
1915
|
Object.setPrototypeOf(this, _ResourceARNNotValidException.prototype);
|
|
1530
1916
|
this.Message = opts.Message;
|
|
1531
1917
|
}
|
|
1532
1918
|
};
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1919
|
+
var ResourcePolicyNotFoundException = class _ResourcePolicyNotFoundException extends CloudTrailServiceException {
|
|
1920
|
+
static {
|
|
1921
|
+
__name(this, "ResourcePolicyNotFoundException");
|
|
1922
|
+
}
|
|
1923
|
+
name = "ResourcePolicyNotFoundException";
|
|
1924
|
+
$fault = "client";
|
|
1925
|
+
/**
|
|
1926
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1927
|
+
* @public
|
|
1928
|
+
*/
|
|
1929
|
+
Message;
|
|
1536
1930
|
/**
|
|
1537
1931
|
* @internal
|
|
1538
1932
|
*/
|
|
@@ -1542,15 +1936,21 @@ var _ResourcePolicyNotFoundException = class _ResourcePolicyNotFoundException ex
|
|
|
1542
1936
|
$fault: "client",
|
|
1543
1937
|
...opts
|
|
1544
1938
|
});
|
|
1545
|
-
this.name = "ResourcePolicyNotFoundException";
|
|
1546
|
-
this.$fault = "client";
|
|
1547
1939
|
Object.setPrototypeOf(this, _ResourcePolicyNotFoundException.prototype);
|
|
1548
1940
|
this.Message = opts.Message;
|
|
1549
1941
|
}
|
|
1550
1942
|
};
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1943
|
+
var InvalidHomeRegionException = class _InvalidHomeRegionException extends CloudTrailServiceException {
|
|
1944
|
+
static {
|
|
1945
|
+
__name(this, "InvalidHomeRegionException");
|
|
1946
|
+
}
|
|
1947
|
+
name = "InvalidHomeRegionException";
|
|
1948
|
+
$fault = "client";
|
|
1949
|
+
/**
|
|
1950
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1951
|
+
* @public
|
|
1952
|
+
*/
|
|
1953
|
+
Message;
|
|
1554
1954
|
/**
|
|
1555
1955
|
* @internal
|
|
1556
1956
|
*/
|
|
@@ -1560,15 +1960,21 @@ var _InvalidHomeRegionException = class _InvalidHomeRegionException extends Clou
|
|
|
1560
1960
|
$fault: "client",
|
|
1561
1961
|
...opts
|
|
1562
1962
|
});
|
|
1563
|
-
this.name = "InvalidHomeRegionException";
|
|
1564
|
-
this.$fault = "client";
|
|
1565
1963
|
Object.setPrototypeOf(this, _InvalidHomeRegionException.prototype);
|
|
1566
1964
|
this.Message = opts.Message;
|
|
1567
1965
|
}
|
|
1568
1966
|
};
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1967
|
+
var TrailNotFoundException = class _TrailNotFoundException extends CloudTrailServiceException {
|
|
1968
|
+
static {
|
|
1969
|
+
__name(this, "TrailNotFoundException");
|
|
1970
|
+
}
|
|
1971
|
+
name = "TrailNotFoundException";
|
|
1972
|
+
$fault = "client";
|
|
1973
|
+
/**
|
|
1974
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1975
|
+
* @public
|
|
1976
|
+
*/
|
|
1977
|
+
Message;
|
|
1572
1978
|
/**
|
|
1573
1979
|
* @internal
|
|
1574
1980
|
*/
|
|
@@ -1578,15 +1984,21 @@ var _TrailNotFoundException = class _TrailNotFoundException extends CloudTrailSe
|
|
|
1578
1984
|
$fault: "client",
|
|
1579
1985
|
...opts
|
|
1580
1986
|
});
|
|
1581
|
-
this.name = "TrailNotFoundException";
|
|
1582
|
-
this.$fault = "client";
|
|
1583
1987
|
Object.setPrototypeOf(this, _TrailNotFoundException.prototype);
|
|
1584
1988
|
this.Message = opts.Message;
|
|
1585
1989
|
}
|
|
1586
1990
|
};
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1991
|
+
var NotOrganizationManagementAccountException = class _NotOrganizationManagementAccountException extends CloudTrailServiceException {
|
|
1992
|
+
static {
|
|
1993
|
+
__name(this, "NotOrganizationManagementAccountException");
|
|
1994
|
+
}
|
|
1995
|
+
name = "NotOrganizationManagementAccountException";
|
|
1996
|
+
$fault = "client";
|
|
1997
|
+
/**
|
|
1998
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
1999
|
+
* @public
|
|
2000
|
+
*/
|
|
2001
|
+
Message;
|
|
1590
2002
|
/**
|
|
1591
2003
|
* @internal
|
|
1592
2004
|
*/
|
|
@@ -1596,14 +2008,10 @@ var _NotOrganizationManagementAccountException = class _NotOrganizationManagemen
|
|
|
1596
2008
|
$fault: "client",
|
|
1597
2009
|
...opts
|
|
1598
2010
|
});
|
|
1599
|
-
this.name = "NotOrganizationManagementAccountException";
|
|
1600
|
-
this.$fault = "client";
|
|
1601
2011
|
Object.setPrototypeOf(this, _NotOrganizationManagementAccountException.prototype);
|
|
1602
2012
|
this.Message = opts.Message;
|
|
1603
2013
|
}
|
|
1604
2014
|
};
|
|
1605
|
-
__name(_NotOrganizationManagementAccountException, "NotOrganizationManagementAccountException");
|
|
1606
|
-
var NotOrganizationManagementAccountException = _NotOrganizationManagementAccountException;
|
|
1607
2015
|
var DeliveryStatus = {
|
|
1608
2016
|
ACCESS_DENIED: "ACCESS_DENIED",
|
|
1609
2017
|
ACCESS_DENIED_SIGNING_FILE: "ACCESS_DENIED_SIGNING_FILE",
|
|
@@ -1615,7 +2023,17 @@ var DeliveryStatus = {
|
|
|
1615
2023
|
SUCCESS: "SUCCESS",
|
|
1616
2024
|
UNKNOWN: "UNKNOWN"
|
|
1617
2025
|
};
|
|
1618
|
-
var
|
|
2026
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends CloudTrailServiceException {
|
|
2027
|
+
static {
|
|
2028
|
+
__name(this, "ConcurrentModificationException");
|
|
2029
|
+
}
|
|
2030
|
+
name = "ConcurrentModificationException";
|
|
2031
|
+
$fault = "client";
|
|
2032
|
+
/**
|
|
2033
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2034
|
+
* @public
|
|
2035
|
+
*/
|
|
2036
|
+
Message;
|
|
1619
2037
|
/**
|
|
1620
2038
|
* @internal
|
|
1621
2039
|
*/
|
|
@@ -1625,21 +2043,27 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
1625
2043
|
$fault: "client",
|
|
1626
2044
|
...opts
|
|
1627
2045
|
});
|
|
1628
|
-
this.name = "ConcurrentModificationException";
|
|
1629
|
-
this.$fault = "client";
|
|
1630
2046
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
1631
2047
|
this.Message = opts.Message;
|
|
1632
2048
|
}
|
|
1633
2049
|
};
|
|
1634
|
-
__name(_ConcurrentModificationException, "ConcurrentModificationException");
|
|
1635
|
-
var ConcurrentModificationException = _ConcurrentModificationException;
|
|
1636
2050
|
var FederationStatus = {
|
|
1637
2051
|
DISABLED: "DISABLED",
|
|
1638
2052
|
DISABLING: "DISABLING",
|
|
1639
2053
|
ENABLED: "ENABLED",
|
|
1640
2054
|
ENABLING: "ENABLING"
|
|
1641
2055
|
};
|
|
1642
|
-
var
|
|
2056
|
+
var GenerateResponseException = class _GenerateResponseException extends CloudTrailServiceException {
|
|
2057
|
+
static {
|
|
2058
|
+
__name(this, "GenerateResponseException");
|
|
2059
|
+
}
|
|
2060
|
+
name = "GenerateResponseException";
|
|
2061
|
+
$fault = "client";
|
|
2062
|
+
/**
|
|
2063
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2064
|
+
* @public
|
|
2065
|
+
*/
|
|
2066
|
+
Message;
|
|
1643
2067
|
/**
|
|
1644
2068
|
* @internal
|
|
1645
2069
|
*/
|
|
@@ -1649,14 +2073,10 @@ var _GenerateResponseException = class _GenerateResponseException extends CloudT
|
|
|
1649
2073
|
$fault: "client",
|
|
1650
2074
|
...opts
|
|
1651
2075
|
});
|
|
1652
|
-
this.name = "GenerateResponseException";
|
|
1653
|
-
this.$fault = "client";
|
|
1654
2076
|
Object.setPrototypeOf(this, _GenerateResponseException.prototype);
|
|
1655
2077
|
this.Message = opts.Message;
|
|
1656
2078
|
}
|
|
1657
2079
|
};
|
|
1658
|
-
__name(_GenerateResponseException, "GenerateResponseException");
|
|
1659
|
-
var GenerateResponseException = _GenerateResponseException;
|
|
1660
2080
|
var DashboardStatus = {
|
|
1661
2081
|
CREATED: "CREATED",
|
|
1662
2082
|
CREATING: "CREATING",
|
|
@@ -1676,7 +2096,17 @@ var ImportStatus = {
|
|
|
1676
2096
|
IN_PROGRESS: "IN_PROGRESS",
|
|
1677
2097
|
STOPPED: "STOPPED"
|
|
1678
2098
|
};
|
|
1679
|
-
var
|
|
2099
|
+
var ImportNotFoundException = class _ImportNotFoundException extends CloudTrailServiceException {
|
|
2100
|
+
static {
|
|
2101
|
+
__name(this, "ImportNotFoundException");
|
|
2102
|
+
}
|
|
2103
|
+
name = "ImportNotFoundException";
|
|
2104
|
+
$fault = "client";
|
|
2105
|
+
/**
|
|
2106
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2107
|
+
* @public
|
|
2108
|
+
*/
|
|
2109
|
+
Message;
|
|
1680
2110
|
/**
|
|
1681
2111
|
* @internal
|
|
1682
2112
|
*/
|
|
@@ -1686,19 +2116,25 @@ var _ImportNotFoundException = class _ImportNotFoundException extends CloudTrail
|
|
|
1686
2116
|
$fault: "client",
|
|
1687
2117
|
...opts
|
|
1688
2118
|
});
|
|
1689
|
-
this.name = "ImportNotFoundException";
|
|
1690
|
-
this.$fault = "client";
|
|
1691
2119
|
Object.setPrototypeOf(this, _ImportNotFoundException.prototype);
|
|
1692
2120
|
this.Message = opts.Message;
|
|
1693
2121
|
}
|
|
1694
2122
|
};
|
|
1695
|
-
__name(_ImportNotFoundException, "ImportNotFoundException");
|
|
1696
|
-
var ImportNotFoundException = _ImportNotFoundException;
|
|
1697
2123
|
var InsightType = {
|
|
1698
2124
|
ApiCallRateInsight: "ApiCallRateInsight",
|
|
1699
2125
|
ApiErrorRateInsight: "ApiErrorRateInsight"
|
|
1700
2126
|
};
|
|
1701
|
-
var
|
|
2127
|
+
var InsightNotEnabledException = class _InsightNotEnabledException extends CloudTrailServiceException {
|
|
2128
|
+
static {
|
|
2129
|
+
__name(this, "InsightNotEnabledException");
|
|
2130
|
+
}
|
|
2131
|
+
name = "InsightNotEnabledException";
|
|
2132
|
+
$fault = "client";
|
|
2133
|
+
/**
|
|
2134
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2135
|
+
* @public
|
|
2136
|
+
*/
|
|
2137
|
+
Message;
|
|
1702
2138
|
/**
|
|
1703
2139
|
* @internal
|
|
1704
2140
|
*/
|
|
@@ -1708,15 +2144,21 @@ var _InsightNotEnabledException = class _InsightNotEnabledException extends Clou
|
|
|
1708
2144
|
$fault: "client",
|
|
1709
2145
|
...opts
|
|
1710
2146
|
});
|
|
1711
|
-
this.name = "InsightNotEnabledException";
|
|
1712
|
-
this.$fault = "client";
|
|
1713
2147
|
Object.setPrototypeOf(this, _InsightNotEnabledException.prototype);
|
|
1714
2148
|
this.Message = opts.Message;
|
|
1715
2149
|
}
|
|
1716
2150
|
};
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
2151
|
+
var InvalidMaxResultsException = class _InvalidMaxResultsException extends CloudTrailServiceException {
|
|
2152
|
+
static {
|
|
2153
|
+
__name(this, "InvalidMaxResultsException");
|
|
2154
|
+
}
|
|
2155
|
+
name = "InvalidMaxResultsException";
|
|
2156
|
+
$fault = "client";
|
|
2157
|
+
/**
|
|
2158
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2159
|
+
* @public
|
|
2160
|
+
*/
|
|
2161
|
+
Message;
|
|
1720
2162
|
/**
|
|
1721
2163
|
* @internal
|
|
1722
2164
|
*/
|
|
@@ -1726,15 +2168,21 @@ var _InvalidMaxResultsException = class _InvalidMaxResultsException extends Clou
|
|
|
1726
2168
|
$fault: "client",
|
|
1727
2169
|
...opts
|
|
1728
2170
|
});
|
|
1729
|
-
this.name = "InvalidMaxResultsException";
|
|
1730
|
-
this.$fault = "client";
|
|
1731
2171
|
Object.setPrototypeOf(this, _InvalidMaxResultsException.prototype);
|
|
1732
2172
|
this.Message = opts.Message;
|
|
1733
2173
|
}
|
|
1734
2174
|
};
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
2175
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends CloudTrailServiceException {
|
|
2176
|
+
static {
|
|
2177
|
+
__name(this, "InvalidNextTokenException");
|
|
2178
|
+
}
|
|
2179
|
+
name = "InvalidNextTokenException";
|
|
2180
|
+
$fault = "client";
|
|
2181
|
+
/**
|
|
2182
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2183
|
+
* @public
|
|
2184
|
+
*/
|
|
2185
|
+
Message;
|
|
1738
2186
|
/**
|
|
1739
2187
|
* @internal
|
|
1740
2188
|
*/
|
|
@@ -1744,14 +2192,10 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends CloudT
|
|
|
1744
2192
|
$fault: "client",
|
|
1745
2193
|
...opts
|
|
1746
2194
|
});
|
|
1747
|
-
this.name = "InvalidNextTokenException";
|
|
1748
|
-
this.$fault = "client";
|
|
1749
2195
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
1750
2196
|
this.Message = opts.Message;
|
|
1751
2197
|
}
|
|
1752
2198
|
};
|
|
1753
|
-
__name(_InvalidNextTokenException, "InvalidNextTokenException");
|
|
1754
|
-
var InvalidNextTokenException = _InvalidNextTokenException;
|
|
1755
2199
|
var ImportFailureStatus = {
|
|
1756
2200
|
FAILED: "FAILED",
|
|
1757
2201
|
RETRY: "RETRY",
|
|
@@ -1761,7 +2205,17 @@ var InsightsMetricDataType = {
|
|
|
1761
2205
|
FILL_WITH_ZEROS: "FillWithZeros",
|
|
1762
2206
|
NON_ZERO_DATA: "NonZeroData"
|
|
1763
2207
|
};
|
|
1764
|
-
var
|
|
2208
|
+
var InvalidTimeRangeException = class _InvalidTimeRangeException extends CloudTrailServiceException {
|
|
2209
|
+
static {
|
|
2210
|
+
__name(this, "InvalidTimeRangeException");
|
|
2211
|
+
}
|
|
2212
|
+
name = "InvalidTimeRangeException";
|
|
2213
|
+
$fault = "client";
|
|
2214
|
+
/**
|
|
2215
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2216
|
+
* @public
|
|
2217
|
+
*/
|
|
2218
|
+
Message;
|
|
1765
2219
|
/**
|
|
1766
2220
|
* @internal
|
|
1767
2221
|
*/
|
|
@@ -1771,15 +2225,21 @@ var _InvalidTimeRangeException = class _InvalidTimeRangeException extends CloudT
|
|
|
1771
2225
|
$fault: "client",
|
|
1772
2226
|
...opts
|
|
1773
2227
|
});
|
|
1774
|
-
this.name = "InvalidTimeRangeException";
|
|
1775
|
-
this.$fault = "client";
|
|
1776
2228
|
Object.setPrototypeOf(this, _InvalidTimeRangeException.prototype);
|
|
1777
2229
|
this.Message = opts.Message;
|
|
1778
2230
|
}
|
|
1779
2231
|
};
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
2232
|
+
var InvalidTokenException = class _InvalidTokenException extends CloudTrailServiceException {
|
|
2233
|
+
static {
|
|
2234
|
+
__name(this, "InvalidTokenException");
|
|
2235
|
+
}
|
|
2236
|
+
name = "InvalidTokenException";
|
|
2237
|
+
$fault = "client";
|
|
2238
|
+
/**
|
|
2239
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2240
|
+
* @public
|
|
2241
|
+
*/
|
|
2242
|
+
Message;
|
|
1783
2243
|
/**
|
|
1784
2244
|
* @internal
|
|
1785
2245
|
*/
|
|
@@ -1789,15 +2249,21 @@ var _InvalidTokenException = class _InvalidTokenException extends CloudTrailServ
|
|
|
1789
2249
|
$fault: "client",
|
|
1790
2250
|
...opts
|
|
1791
2251
|
});
|
|
1792
|
-
this.name = "InvalidTokenException";
|
|
1793
|
-
this.$fault = "client";
|
|
1794
2252
|
Object.setPrototypeOf(this, _InvalidTokenException.prototype);
|
|
1795
2253
|
this.Message = opts.Message;
|
|
1796
2254
|
}
|
|
1797
2255
|
};
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
2256
|
+
var InvalidDateRangeException = class _InvalidDateRangeException extends CloudTrailServiceException {
|
|
2257
|
+
static {
|
|
2258
|
+
__name(this, "InvalidDateRangeException");
|
|
2259
|
+
}
|
|
2260
|
+
name = "InvalidDateRangeException";
|
|
2261
|
+
$fault = "client";
|
|
2262
|
+
/**
|
|
2263
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2264
|
+
* @public
|
|
2265
|
+
*/
|
|
2266
|
+
Message;
|
|
1801
2267
|
/**
|
|
1802
2268
|
* @internal
|
|
1803
2269
|
*/
|
|
@@ -1807,15 +2273,21 @@ var _InvalidDateRangeException = class _InvalidDateRangeException extends CloudT
|
|
|
1807
2273
|
$fault: "client",
|
|
1808
2274
|
...opts
|
|
1809
2275
|
});
|
|
1810
|
-
this.name = "InvalidDateRangeException";
|
|
1811
|
-
this.$fault = "client";
|
|
1812
2276
|
Object.setPrototypeOf(this, _InvalidDateRangeException.prototype);
|
|
1813
2277
|
this.Message = opts.Message;
|
|
1814
2278
|
}
|
|
1815
2279
|
};
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
2280
|
+
var InvalidQueryStatusException = class _InvalidQueryStatusException extends CloudTrailServiceException {
|
|
2281
|
+
static {
|
|
2282
|
+
__name(this, "InvalidQueryStatusException");
|
|
2283
|
+
}
|
|
2284
|
+
name = "InvalidQueryStatusException";
|
|
2285
|
+
$fault = "client";
|
|
2286
|
+
/**
|
|
2287
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2288
|
+
* @public
|
|
2289
|
+
*/
|
|
2290
|
+
Message;
|
|
1819
2291
|
/**
|
|
1820
2292
|
* @internal
|
|
1821
2293
|
*/
|
|
@@ -1825,15 +2297,21 @@ var _InvalidQueryStatusException = class _InvalidQueryStatusException extends Cl
|
|
|
1825
2297
|
$fault: "client",
|
|
1826
2298
|
...opts
|
|
1827
2299
|
});
|
|
1828
|
-
this.name = "InvalidQueryStatusException";
|
|
1829
|
-
this.$fault = "client";
|
|
1830
2300
|
Object.setPrototypeOf(this, _InvalidQueryStatusException.prototype);
|
|
1831
2301
|
this.Message = opts.Message;
|
|
1832
2302
|
}
|
|
1833
2303
|
};
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
2304
|
+
var InvalidEventCategoryException = class _InvalidEventCategoryException extends CloudTrailServiceException {
|
|
2305
|
+
static {
|
|
2306
|
+
__name(this, "InvalidEventCategoryException");
|
|
2307
|
+
}
|
|
2308
|
+
name = "InvalidEventCategoryException";
|
|
2309
|
+
$fault = "client";
|
|
2310
|
+
/**
|
|
2311
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2312
|
+
* @public
|
|
2313
|
+
*/
|
|
2314
|
+
Message;
|
|
1837
2315
|
/**
|
|
1838
2316
|
* @internal
|
|
1839
2317
|
*/
|
|
@@ -1843,15 +2321,21 @@ var _InvalidEventCategoryException = class _InvalidEventCategoryException extend
|
|
|
1843
2321
|
$fault: "client",
|
|
1844
2322
|
...opts
|
|
1845
2323
|
});
|
|
1846
|
-
this.name = "InvalidEventCategoryException";
|
|
1847
|
-
this.$fault = "client";
|
|
1848
2324
|
Object.setPrototypeOf(this, _InvalidEventCategoryException.prototype);
|
|
1849
2325
|
this.Message = opts.Message;
|
|
1850
2326
|
}
|
|
1851
2327
|
};
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
2328
|
+
var InvalidLookupAttributesException = class _InvalidLookupAttributesException extends CloudTrailServiceException {
|
|
2329
|
+
static {
|
|
2330
|
+
__name(this, "InvalidLookupAttributesException");
|
|
2331
|
+
}
|
|
2332
|
+
name = "InvalidLookupAttributesException";
|
|
2333
|
+
$fault = "client";
|
|
2334
|
+
/**
|
|
2335
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2336
|
+
* @public
|
|
2337
|
+
*/
|
|
2338
|
+
Message;
|
|
1855
2339
|
/**
|
|
1856
2340
|
* @internal
|
|
1857
2341
|
*/
|
|
@@ -1861,14 +2345,10 @@ var _InvalidLookupAttributesException = class _InvalidLookupAttributesException
|
|
|
1861
2345
|
$fault: "client",
|
|
1862
2346
|
...opts
|
|
1863
2347
|
});
|
|
1864
|
-
this.name = "InvalidLookupAttributesException";
|
|
1865
|
-
this.$fault = "client";
|
|
1866
2348
|
Object.setPrototypeOf(this, _InvalidLookupAttributesException.prototype);
|
|
1867
2349
|
this.Message = opts.Message;
|
|
1868
2350
|
}
|
|
1869
2351
|
};
|
|
1870
|
-
__name(_InvalidLookupAttributesException, "InvalidLookupAttributesException");
|
|
1871
|
-
var InvalidLookupAttributesException = _InvalidLookupAttributesException;
|
|
1872
2352
|
var EventCategory = {
|
|
1873
2353
|
Insight: "insight"
|
|
1874
2354
|
};
|
|
@@ -1882,7 +2362,17 @@ var LookupAttributeKey = {
|
|
|
1882
2362
|
RESOURCE_TYPE: "ResourceType",
|
|
1883
2363
|
USERNAME: "Username"
|
|
1884
2364
|
};
|
|
1885
|
-
var
|
|
2365
|
+
var InvalidInsightSelectorsException = class _InvalidInsightSelectorsException extends CloudTrailServiceException {
|
|
2366
|
+
static {
|
|
2367
|
+
__name(this, "InvalidInsightSelectorsException");
|
|
2368
|
+
}
|
|
2369
|
+
name = "InvalidInsightSelectorsException";
|
|
2370
|
+
$fault = "client";
|
|
2371
|
+
/**
|
|
2372
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2373
|
+
* @public
|
|
2374
|
+
*/
|
|
2375
|
+
Message;
|
|
1886
2376
|
/**
|
|
1887
2377
|
* @internal
|
|
1888
2378
|
*/
|
|
@@ -1892,15 +2382,21 @@ var _InvalidInsightSelectorsException = class _InvalidInsightSelectorsException
|
|
|
1892
2382
|
$fault: "client",
|
|
1893
2383
|
...opts
|
|
1894
2384
|
});
|
|
1895
|
-
this.name = "InvalidInsightSelectorsException";
|
|
1896
|
-
this.$fault = "client";
|
|
1897
2385
|
Object.setPrototypeOf(this, _InvalidInsightSelectorsException.prototype);
|
|
1898
2386
|
this.Message = opts.Message;
|
|
1899
2387
|
}
|
|
1900
2388
|
};
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
2389
|
+
var ResourcePolicyNotValidException = class _ResourcePolicyNotValidException extends CloudTrailServiceException {
|
|
2390
|
+
static {
|
|
2391
|
+
__name(this, "ResourcePolicyNotValidException");
|
|
2392
|
+
}
|
|
2393
|
+
name = "ResourcePolicyNotValidException";
|
|
2394
|
+
$fault = "client";
|
|
2395
|
+
/**
|
|
2396
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2397
|
+
* @public
|
|
2398
|
+
*/
|
|
2399
|
+
Message;
|
|
1904
2400
|
/**
|
|
1905
2401
|
* @internal
|
|
1906
2402
|
*/
|
|
@@ -1910,15 +2406,21 @@ var _ResourcePolicyNotValidException = class _ResourcePolicyNotValidException ex
|
|
|
1910
2406
|
$fault: "client",
|
|
1911
2407
|
...opts
|
|
1912
2408
|
});
|
|
1913
|
-
this.name = "ResourcePolicyNotValidException";
|
|
1914
|
-
this.$fault = "client";
|
|
1915
2409
|
Object.setPrototypeOf(this, _ResourcePolicyNotValidException.prototype);
|
|
1916
2410
|
this.Message = opts.Message;
|
|
1917
2411
|
}
|
|
1918
2412
|
};
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
2413
|
+
var DelegatedAdminAccountLimitExceededException = class _DelegatedAdminAccountLimitExceededException extends CloudTrailServiceException {
|
|
2414
|
+
static {
|
|
2415
|
+
__name(this, "DelegatedAdminAccountLimitExceededException");
|
|
2416
|
+
}
|
|
2417
|
+
name = "DelegatedAdminAccountLimitExceededException";
|
|
2418
|
+
$fault = "client";
|
|
2419
|
+
/**
|
|
2420
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2421
|
+
* @public
|
|
2422
|
+
*/
|
|
2423
|
+
Message;
|
|
1922
2424
|
/**
|
|
1923
2425
|
* @internal
|
|
1924
2426
|
*/
|
|
@@ -1928,15 +2430,21 @@ var _DelegatedAdminAccountLimitExceededException = class _DelegatedAdminAccountL
|
|
|
1928
2430
|
$fault: "client",
|
|
1929
2431
|
...opts
|
|
1930
2432
|
});
|
|
1931
|
-
this.name = "DelegatedAdminAccountLimitExceededException";
|
|
1932
|
-
this.$fault = "client";
|
|
1933
2433
|
Object.setPrototypeOf(this, _DelegatedAdminAccountLimitExceededException.prototype);
|
|
1934
2434
|
this.Message = opts.Message;
|
|
1935
2435
|
}
|
|
1936
2436
|
};
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
2437
|
+
var InvalidEventDataStoreStatusException = class _InvalidEventDataStoreStatusException extends CloudTrailServiceException {
|
|
2438
|
+
static {
|
|
2439
|
+
__name(this, "InvalidEventDataStoreStatusException");
|
|
2440
|
+
}
|
|
2441
|
+
name = "InvalidEventDataStoreStatusException";
|
|
2442
|
+
$fault = "client";
|
|
2443
|
+
/**
|
|
2444
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2445
|
+
* @public
|
|
2446
|
+
*/
|
|
2447
|
+
Message;
|
|
1940
2448
|
/**
|
|
1941
2449
|
* @internal
|
|
1942
2450
|
*/
|
|
@@ -1946,15 +2454,21 @@ var _InvalidEventDataStoreStatusException = class _InvalidEventDataStoreStatusEx
|
|
|
1946
2454
|
$fault: "client",
|
|
1947
2455
|
...opts
|
|
1948
2456
|
});
|
|
1949
|
-
this.name = "InvalidEventDataStoreStatusException";
|
|
1950
|
-
this.$fault = "client";
|
|
1951
2457
|
Object.setPrototypeOf(this, _InvalidEventDataStoreStatusException.prototype);
|
|
1952
2458
|
this.Message = opts.Message;
|
|
1953
2459
|
}
|
|
1954
2460
|
};
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
2461
|
+
var InvalidImportSourceException = class _InvalidImportSourceException extends CloudTrailServiceException {
|
|
2462
|
+
static {
|
|
2463
|
+
__name(this, "InvalidImportSourceException");
|
|
2464
|
+
}
|
|
2465
|
+
name = "InvalidImportSourceException";
|
|
2466
|
+
$fault = "client";
|
|
2467
|
+
/**
|
|
2468
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2469
|
+
* @public
|
|
2470
|
+
*/
|
|
2471
|
+
Message;
|
|
1958
2472
|
/**
|
|
1959
2473
|
* @internal
|
|
1960
2474
|
*/
|
|
@@ -1964,15 +2478,21 @@ var _InvalidImportSourceException = class _InvalidImportSourceException extends
|
|
|
1964
2478
|
$fault: "client",
|
|
1965
2479
|
...opts
|
|
1966
2480
|
});
|
|
1967
|
-
this.name = "InvalidImportSourceException";
|
|
1968
|
-
this.$fault = "client";
|
|
1969
2481
|
Object.setPrototypeOf(this, _InvalidImportSourceException.prototype);
|
|
1970
2482
|
this.Message = opts.Message;
|
|
1971
2483
|
}
|
|
1972
2484
|
};
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
2485
|
+
var MaxConcurrentQueriesException = class _MaxConcurrentQueriesException extends CloudTrailServiceException {
|
|
2486
|
+
static {
|
|
2487
|
+
__name(this, "MaxConcurrentQueriesException");
|
|
2488
|
+
}
|
|
2489
|
+
name = "MaxConcurrentQueriesException";
|
|
2490
|
+
$fault = "client";
|
|
2491
|
+
/**
|
|
2492
|
+
* <p>Brief description of the exception returned by the request.</p>
|
|
2493
|
+
* @public
|
|
2494
|
+
*/
|
|
2495
|
+
Message;
|
|
1976
2496
|
/**
|
|
1977
2497
|
* @internal
|
|
1978
2498
|
*/
|
|
@@ -1982,14 +2502,10 @@ var _MaxConcurrentQueriesException = class _MaxConcurrentQueriesException extend
|
|
|
1982
2502
|
$fault: "client",
|
|
1983
2503
|
...opts
|
|
1984
2504
|
});
|
|
1985
|
-
this.name = "MaxConcurrentQueriesException";
|
|
1986
|
-
this.$fault = "client";
|
|
1987
2505
|
Object.setPrototypeOf(this, _MaxConcurrentQueriesException.prototype);
|
|
1988
2506
|
this.Message = opts.Message;
|
|
1989
2507
|
}
|
|
1990
2508
|
};
|
|
1991
|
-
__name(_MaxConcurrentQueriesException, "MaxConcurrentQueriesException");
|
|
1992
|
-
var MaxConcurrentQueriesException = _MaxConcurrentQueriesException;
|
|
1993
2509
|
|
|
1994
2510
|
// src/protocols/Aws_json1_1.ts
|
|
1995
2511
|
var se_AddTagsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -4527,785 +5043,841 @@ function sharedHeaders(operation) {
|
|
|
4527
5043
|
__name(sharedHeaders, "sharedHeaders");
|
|
4528
5044
|
|
|
4529
5045
|
// src/commands/AddTagsCommand.ts
|
|
4530
|
-
var
|
|
5046
|
+
var AddTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4531
5047
|
return [
|
|
4532
5048
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4533
5049
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4534
5050
|
];
|
|
4535
5051
|
}).s("CloudTrail_20131101", "AddTags", {}).n("CloudTrailClient", "AddTagsCommand").f(void 0, void 0).ser(se_AddTagsCommand).de(de_AddTagsCommand).build() {
|
|
5052
|
+
static {
|
|
5053
|
+
__name(this, "AddTagsCommand");
|
|
5054
|
+
}
|
|
4536
5055
|
};
|
|
4537
|
-
__name(_AddTagsCommand, "AddTagsCommand");
|
|
4538
|
-
var AddTagsCommand = _AddTagsCommand;
|
|
4539
5056
|
|
|
4540
5057
|
// src/commands/CancelQueryCommand.ts
|
|
4541
5058
|
|
|
4542
5059
|
|
|
4543
5060
|
|
|
4544
|
-
var
|
|
5061
|
+
var CancelQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4545
5062
|
return [
|
|
4546
5063
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4547
5064
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4548
5065
|
];
|
|
4549
5066
|
}).s("CloudTrail_20131101", "CancelQuery", {}).n("CloudTrailClient", "CancelQueryCommand").f(void 0, void 0).ser(se_CancelQueryCommand).de(de_CancelQueryCommand).build() {
|
|
5067
|
+
static {
|
|
5068
|
+
__name(this, "CancelQueryCommand");
|
|
5069
|
+
}
|
|
4550
5070
|
};
|
|
4551
|
-
__name(_CancelQueryCommand, "CancelQueryCommand");
|
|
4552
|
-
var CancelQueryCommand = _CancelQueryCommand;
|
|
4553
5071
|
|
|
4554
5072
|
// src/commands/CreateChannelCommand.ts
|
|
4555
5073
|
|
|
4556
5074
|
|
|
4557
5075
|
|
|
4558
|
-
var
|
|
5076
|
+
var CreateChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4559
5077
|
return [
|
|
4560
5078
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4561
5079
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4562
5080
|
];
|
|
4563
5081
|
}).s("CloudTrail_20131101", "CreateChannel", {}).n("CloudTrailClient", "CreateChannelCommand").f(void 0, void 0).ser(se_CreateChannelCommand).de(de_CreateChannelCommand).build() {
|
|
5082
|
+
static {
|
|
5083
|
+
__name(this, "CreateChannelCommand");
|
|
5084
|
+
}
|
|
4564
5085
|
};
|
|
4565
|
-
__name(_CreateChannelCommand, "CreateChannelCommand");
|
|
4566
|
-
var CreateChannelCommand = _CreateChannelCommand;
|
|
4567
5086
|
|
|
4568
5087
|
// src/commands/CreateDashboardCommand.ts
|
|
4569
5088
|
|
|
4570
5089
|
|
|
4571
5090
|
|
|
4572
|
-
var
|
|
5091
|
+
var CreateDashboardCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4573
5092
|
return [
|
|
4574
5093
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4575
5094
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4576
5095
|
];
|
|
4577
5096
|
}).s("CloudTrail_20131101", "CreateDashboard", {}).n("CloudTrailClient", "CreateDashboardCommand").f(void 0, void 0).ser(se_CreateDashboardCommand).de(de_CreateDashboardCommand).build() {
|
|
5097
|
+
static {
|
|
5098
|
+
__name(this, "CreateDashboardCommand");
|
|
5099
|
+
}
|
|
4578
5100
|
};
|
|
4579
|
-
__name(_CreateDashboardCommand, "CreateDashboardCommand");
|
|
4580
|
-
var CreateDashboardCommand = _CreateDashboardCommand;
|
|
4581
5101
|
|
|
4582
5102
|
// src/commands/CreateEventDataStoreCommand.ts
|
|
4583
5103
|
|
|
4584
5104
|
|
|
4585
5105
|
|
|
4586
|
-
var
|
|
5106
|
+
var CreateEventDataStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4587
5107
|
return [
|
|
4588
5108
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4589
5109
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4590
5110
|
];
|
|
4591
5111
|
}).s("CloudTrail_20131101", "CreateEventDataStore", {}).n("CloudTrailClient", "CreateEventDataStoreCommand").f(void 0, void 0).ser(se_CreateEventDataStoreCommand).de(de_CreateEventDataStoreCommand).build() {
|
|
5112
|
+
static {
|
|
5113
|
+
__name(this, "CreateEventDataStoreCommand");
|
|
5114
|
+
}
|
|
4592
5115
|
};
|
|
4593
|
-
__name(_CreateEventDataStoreCommand, "CreateEventDataStoreCommand");
|
|
4594
|
-
var CreateEventDataStoreCommand = _CreateEventDataStoreCommand;
|
|
4595
5116
|
|
|
4596
5117
|
// src/commands/CreateTrailCommand.ts
|
|
4597
5118
|
|
|
4598
5119
|
|
|
4599
5120
|
|
|
4600
|
-
var
|
|
5121
|
+
var CreateTrailCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4601
5122
|
return [
|
|
4602
5123
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4603
5124
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4604
5125
|
];
|
|
4605
5126
|
}).s("CloudTrail_20131101", "CreateTrail", {}).n("CloudTrailClient", "CreateTrailCommand").f(void 0, void 0).ser(se_CreateTrailCommand).de(de_CreateTrailCommand).build() {
|
|
5127
|
+
static {
|
|
5128
|
+
__name(this, "CreateTrailCommand");
|
|
5129
|
+
}
|
|
4606
5130
|
};
|
|
4607
|
-
__name(_CreateTrailCommand, "CreateTrailCommand");
|
|
4608
|
-
var CreateTrailCommand = _CreateTrailCommand;
|
|
4609
5131
|
|
|
4610
5132
|
// src/commands/DeleteChannelCommand.ts
|
|
4611
5133
|
|
|
4612
5134
|
|
|
4613
5135
|
|
|
4614
|
-
var
|
|
5136
|
+
var DeleteChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4615
5137
|
return [
|
|
4616
5138
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4617
5139
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4618
5140
|
];
|
|
4619
5141
|
}).s("CloudTrail_20131101", "DeleteChannel", {}).n("CloudTrailClient", "DeleteChannelCommand").f(void 0, void 0).ser(se_DeleteChannelCommand).de(de_DeleteChannelCommand).build() {
|
|
5142
|
+
static {
|
|
5143
|
+
__name(this, "DeleteChannelCommand");
|
|
5144
|
+
}
|
|
4620
5145
|
};
|
|
4621
|
-
__name(_DeleteChannelCommand, "DeleteChannelCommand");
|
|
4622
|
-
var DeleteChannelCommand = _DeleteChannelCommand;
|
|
4623
5146
|
|
|
4624
5147
|
// src/commands/DeleteDashboardCommand.ts
|
|
4625
5148
|
|
|
4626
5149
|
|
|
4627
5150
|
|
|
4628
|
-
var
|
|
5151
|
+
var DeleteDashboardCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4629
5152
|
return [
|
|
4630
5153
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4631
5154
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4632
5155
|
];
|
|
4633
5156
|
}).s("CloudTrail_20131101", "DeleteDashboard", {}).n("CloudTrailClient", "DeleteDashboardCommand").f(void 0, void 0).ser(se_DeleteDashboardCommand).de(de_DeleteDashboardCommand).build() {
|
|
5157
|
+
static {
|
|
5158
|
+
__name(this, "DeleteDashboardCommand");
|
|
5159
|
+
}
|
|
4634
5160
|
};
|
|
4635
|
-
__name(_DeleteDashboardCommand, "DeleteDashboardCommand");
|
|
4636
|
-
var DeleteDashboardCommand = _DeleteDashboardCommand;
|
|
4637
5161
|
|
|
4638
5162
|
// src/commands/DeleteEventDataStoreCommand.ts
|
|
4639
5163
|
|
|
4640
5164
|
|
|
4641
5165
|
|
|
4642
|
-
var
|
|
5166
|
+
var DeleteEventDataStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4643
5167
|
return [
|
|
4644
5168
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4645
5169
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4646
5170
|
];
|
|
4647
5171
|
}).s("CloudTrail_20131101", "DeleteEventDataStore", {}).n("CloudTrailClient", "DeleteEventDataStoreCommand").f(void 0, void 0).ser(se_DeleteEventDataStoreCommand).de(de_DeleteEventDataStoreCommand).build() {
|
|
5172
|
+
static {
|
|
5173
|
+
__name(this, "DeleteEventDataStoreCommand");
|
|
5174
|
+
}
|
|
4648
5175
|
};
|
|
4649
|
-
__name(_DeleteEventDataStoreCommand, "DeleteEventDataStoreCommand");
|
|
4650
|
-
var DeleteEventDataStoreCommand = _DeleteEventDataStoreCommand;
|
|
4651
5176
|
|
|
4652
5177
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
4653
5178
|
|
|
4654
5179
|
|
|
4655
5180
|
|
|
4656
|
-
var
|
|
5181
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4657
5182
|
return [
|
|
4658
5183
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4659
5184
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4660
5185
|
];
|
|
4661
5186
|
}).s("CloudTrail_20131101", "DeleteResourcePolicy", {}).n("CloudTrailClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
5187
|
+
static {
|
|
5188
|
+
__name(this, "DeleteResourcePolicyCommand");
|
|
5189
|
+
}
|
|
4662
5190
|
};
|
|
4663
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
4664
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
4665
5191
|
|
|
4666
5192
|
// src/commands/DeleteTrailCommand.ts
|
|
4667
5193
|
|
|
4668
5194
|
|
|
4669
5195
|
|
|
4670
|
-
var
|
|
5196
|
+
var DeleteTrailCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4671
5197
|
return [
|
|
4672
5198
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4673
5199
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4674
5200
|
];
|
|
4675
5201
|
}).s("CloudTrail_20131101", "DeleteTrail", {}).n("CloudTrailClient", "DeleteTrailCommand").f(void 0, void 0).ser(se_DeleteTrailCommand).de(de_DeleteTrailCommand).build() {
|
|
5202
|
+
static {
|
|
5203
|
+
__name(this, "DeleteTrailCommand");
|
|
5204
|
+
}
|
|
4676
5205
|
};
|
|
4677
|
-
__name(_DeleteTrailCommand, "DeleteTrailCommand");
|
|
4678
|
-
var DeleteTrailCommand = _DeleteTrailCommand;
|
|
4679
5206
|
|
|
4680
5207
|
// src/commands/DeregisterOrganizationDelegatedAdminCommand.ts
|
|
4681
5208
|
|
|
4682
5209
|
|
|
4683
5210
|
|
|
4684
|
-
var
|
|
5211
|
+
var DeregisterOrganizationDelegatedAdminCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4685
5212
|
return [
|
|
4686
5213
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4687
5214
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4688
5215
|
];
|
|
4689
5216
|
}).s("CloudTrail_20131101", "DeregisterOrganizationDelegatedAdmin", {}).n("CloudTrailClient", "DeregisterOrganizationDelegatedAdminCommand").f(void 0, void 0).ser(se_DeregisterOrganizationDelegatedAdminCommand).de(de_DeregisterOrganizationDelegatedAdminCommand).build() {
|
|
5217
|
+
static {
|
|
5218
|
+
__name(this, "DeregisterOrganizationDelegatedAdminCommand");
|
|
5219
|
+
}
|
|
4690
5220
|
};
|
|
4691
|
-
__name(_DeregisterOrganizationDelegatedAdminCommand, "DeregisterOrganizationDelegatedAdminCommand");
|
|
4692
|
-
var DeregisterOrganizationDelegatedAdminCommand = _DeregisterOrganizationDelegatedAdminCommand;
|
|
4693
5221
|
|
|
4694
5222
|
// src/commands/DescribeQueryCommand.ts
|
|
4695
5223
|
|
|
4696
5224
|
|
|
4697
5225
|
|
|
4698
|
-
var
|
|
5226
|
+
var DescribeQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4699
5227
|
return [
|
|
4700
5228
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4701
5229
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4702
5230
|
];
|
|
4703
5231
|
}).s("CloudTrail_20131101", "DescribeQuery", {}).n("CloudTrailClient", "DescribeQueryCommand").f(void 0, void 0).ser(se_DescribeQueryCommand).de(de_DescribeQueryCommand).build() {
|
|
5232
|
+
static {
|
|
5233
|
+
__name(this, "DescribeQueryCommand");
|
|
5234
|
+
}
|
|
4704
5235
|
};
|
|
4705
|
-
__name(_DescribeQueryCommand, "DescribeQueryCommand");
|
|
4706
|
-
var DescribeQueryCommand = _DescribeQueryCommand;
|
|
4707
5236
|
|
|
4708
5237
|
// src/commands/DescribeTrailsCommand.ts
|
|
4709
5238
|
|
|
4710
5239
|
|
|
4711
5240
|
|
|
4712
|
-
var
|
|
5241
|
+
var DescribeTrailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4713
5242
|
return [
|
|
4714
5243
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4715
5244
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4716
5245
|
];
|
|
4717
5246
|
}).s("CloudTrail_20131101", "DescribeTrails", {}).n("CloudTrailClient", "DescribeTrailsCommand").f(void 0, void 0).ser(se_DescribeTrailsCommand).de(de_DescribeTrailsCommand).build() {
|
|
5247
|
+
static {
|
|
5248
|
+
__name(this, "DescribeTrailsCommand");
|
|
5249
|
+
}
|
|
4718
5250
|
};
|
|
4719
|
-
__name(_DescribeTrailsCommand, "DescribeTrailsCommand");
|
|
4720
|
-
var DescribeTrailsCommand = _DescribeTrailsCommand;
|
|
4721
5251
|
|
|
4722
5252
|
// src/commands/DisableFederationCommand.ts
|
|
4723
5253
|
|
|
4724
5254
|
|
|
4725
5255
|
|
|
4726
|
-
var
|
|
5256
|
+
var DisableFederationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4727
5257
|
return [
|
|
4728
5258
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4729
5259
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4730
5260
|
];
|
|
4731
5261
|
}).s("CloudTrail_20131101", "DisableFederation", {}).n("CloudTrailClient", "DisableFederationCommand").f(void 0, void 0).ser(se_DisableFederationCommand).de(de_DisableFederationCommand).build() {
|
|
5262
|
+
static {
|
|
5263
|
+
__name(this, "DisableFederationCommand");
|
|
5264
|
+
}
|
|
4732
5265
|
};
|
|
4733
|
-
__name(_DisableFederationCommand, "DisableFederationCommand");
|
|
4734
|
-
var DisableFederationCommand = _DisableFederationCommand;
|
|
4735
5266
|
|
|
4736
5267
|
// src/commands/EnableFederationCommand.ts
|
|
4737
5268
|
|
|
4738
5269
|
|
|
4739
5270
|
|
|
4740
|
-
var
|
|
5271
|
+
var EnableFederationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4741
5272
|
return [
|
|
4742
5273
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4743
5274
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4744
5275
|
];
|
|
4745
5276
|
}).s("CloudTrail_20131101", "EnableFederation", {}).n("CloudTrailClient", "EnableFederationCommand").f(void 0, void 0).ser(se_EnableFederationCommand).de(de_EnableFederationCommand).build() {
|
|
5277
|
+
static {
|
|
5278
|
+
__name(this, "EnableFederationCommand");
|
|
5279
|
+
}
|
|
4746
5280
|
};
|
|
4747
|
-
__name(_EnableFederationCommand, "EnableFederationCommand");
|
|
4748
|
-
var EnableFederationCommand = _EnableFederationCommand;
|
|
4749
5281
|
|
|
4750
5282
|
// src/commands/GenerateQueryCommand.ts
|
|
4751
5283
|
|
|
4752
5284
|
|
|
4753
5285
|
|
|
4754
|
-
var
|
|
5286
|
+
var GenerateQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4755
5287
|
return [
|
|
4756
5288
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4757
5289
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4758
5290
|
];
|
|
4759
5291
|
}).s("CloudTrail_20131101", "GenerateQuery", {}).n("CloudTrailClient", "GenerateQueryCommand").f(void 0, void 0).ser(se_GenerateQueryCommand).de(de_GenerateQueryCommand).build() {
|
|
5292
|
+
static {
|
|
5293
|
+
__name(this, "GenerateQueryCommand");
|
|
5294
|
+
}
|
|
4760
5295
|
};
|
|
4761
|
-
__name(_GenerateQueryCommand, "GenerateQueryCommand");
|
|
4762
|
-
var GenerateQueryCommand = _GenerateQueryCommand;
|
|
4763
5296
|
|
|
4764
5297
|
// src/commands/GetChannelCommand.ts
|
|
4765
5298
|
|
|
4766
5299
|
|
|
4767
5300
|
|
|
4768
|
-
var
|
|
5301
|
+
var GetChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4769
5302
|
return [
|
|
4770
5303
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4771
5304
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4772
5305
|
];
|
|
4773
5306
|
}).s("CloudTrail_20131101", "GetChannel", {}).n("CloudTrailClient", "GetChannelCommand").f(void 0, void 0).ser(se_GetChannelCommand).de(de_GetChannelCommand).build() {
|
|
5307
|
+
static {
|
|
5308
|
+
__name(this, "GetChannelCommand");
|
|
5309
|
+
}
|
|
4774
5310
|
};
|
|
4775
|
-
__name(_GetChannelCommand, "GetChannelCommand");
|
|
4776
|
-
var GetChannelCommand = _GetChannelCommand;
|
|
4777
5311
|
|
|
4778
5312
|
// src/commands/GetDashboardCommand.ts
|
|
4779
5313
|
|
|
4780
5314
|
|
|
4781
5315
|
|
|
4782
|
-
var
|
|
5316
|
+
var GetDashboardCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4783
5317
|
return [
|
|
4784
5318
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4785
5319
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4786
5320
|
];
|
|
4787
5321
|
}).s("CloudTrail_20131101", "GetDashboard", {}).n("CloudTrailClient", "GetDashboardCommand").f(void 0, void 0).ser(se_GetDashboardCommand).de(de_GetDashboardCommand).build() {
|
|
5322
|
+
static {
|
|
5323
|
+
__name(this, "GetDashboardCommand");
|
|
5324
|
+
}
|
|
4788
5325
|
};
|
|
4789
|
-
__name(_GetDashboardCommand, "GetDashboardCommand");
|
|
4790
|
-
var GetDashboardCommand = _GetDashboardCommand;
|
|
4791
5326
|
|
|
4792
5327
|
// src/commands/GetEventDataStoreCommand.ts
|
|
4793
5328
|
|
|
4794
5329
|
|
|
4795
5330
|
|
|
4796
|
-
var
|
|
5331
|
+
var GetEventDataStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4797
5332
|
return [
|
|
4798
5333
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4799
5334
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4800
5335
|
];
|
|
4801
5336
|
}).s("CloudTrail_20131101", "GetEventDataStore", {}).n("CloudTrailClient", "GetEventDataStoreCommand").f(void 0, void 0).ser(se_GetEventDataStoreCommand).de(de_GetEventDataStoreCommand).build() {
|
|
5337
|
+
static {
|
|
5338
|
+
__name(this, "GetEventDataStoreCommand");
|
|
5339
|
+
}
|
|
4802
5340
|
};
|
|
4803
|
-
__name(_GetEventDataStoreCommand, "GetEventDataStoreCommand");
|
|
4804
|
-
var GetEventDataStoreCommand = _GetEventDataStoreCommand;
|
|
4805
5341
|
|
|
4806
5342
|
// src/commands/GetEventSelectorsCommand.ts
|
|
4807
5343
|
|
|
4808
5344
|
|
|
4809
5345
|
|
|
4810
|
-
var
|
|
5346
|
+
var GetEventSelectorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4811
5347
|
return [
|
|
4812
5348
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4813
5349
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4814
5350
|
];
|
|
4815
5351
|
}).s("CloudTrail_20131101", "GetEventSelectors", {}).n("CloudTrailClient", "GetEventSelectorsCommand").f(void 0, void 0).ser(se_GetEventSelectorsCommand).de(de_GetEventSelectorsCommand).build() {
|
|
5352
|
+
static {
|
|
5353
|
+
__name(this, "GetEventSelectorsCommand");
|
|
5354
|
+
}
|
|
4816
5355
|
};
|
|
4817
|
-
__name(_GetEventSelectorsCommand, "GetEventSelectorsCommand");
|
|
4818
|
-
var GetEventSelectorsCommand = _GetEventSelectorsCommand;
|
|
4819
5356
|
|
|
4820
5357
|
// src/commands/GetImportCommand.ts
|
|
4821
5358
|
|
|
4822
5359
|
|
|
4823
5360
|
|
|
4824
|
-
var
|
|
5361
|
+
var GetImportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4825
5362
|
return [
|
|
4826
5363
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4827
5364
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4828
5365
|
];
|
|
4829
5366
|
}).s("CloudTrail_20131101", "GetImport", {}).n("CloudTrailClient", "GetImportCommand").f(void 0, void 0).ser(se_GetImportCommand).de(de_GetImportCommand).build() {
|
|
5367
|
+
static {
|
|
5368
|
+
__name(this, "GetImportCommand");
|
|
5369
|
+
}
|
|
4830
5370
|
};
|
|
4831
|
-
__name(_GetImportCommand, "GetImportCommand");
|
|
4832
|
-
var GetImportCommand = _GetImportCommand;
|
|
4833
5371
|
|
|
4834
5372
|
// src/commands/GetInsightSelectorsCommand.ts
|
|
4835
5373
|
|
|
4836
5374
|
|
|
4837
5375
|
|
|
4838
|
-
var
|
|
5376
|
+
var GetInsightSelectorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4839
5377
|
return [
|
|
4840
5378
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4841
5379
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4842
5380
|
];
|
|
4843
5381
|
}).s("CloudTrail_20131101", "GetInsightSelectors", {}).n("CloudTrailClient", "GetInsightSelectorsCommand").f(void 0, void 0).ser(se_GetInsightSelectorsCommand).de(de_GetInsightSelectorsCommand).build() {
|
|
5382
|
+
static {
|
|
5383
|
+
__name(this, "GetInsightSelectorsCommand");
|
|
5384
|
+
}
|
|
4844
5385
|
};
|
|
4845
|
-
__name(_GetInsightSelectorsCommand, "GetInsightSelectorsCommand");
|
|
4846
|
-
var GetInsightSelectorsCommand = _GetInsightSelectorsCommand;
|
|
4847
5386
|
|
|
4848
5387
|
// src/commands/GetQueryResultsCommand.ts
|
|
4849
5388
|
|
|
4850
5389
|
|
|
4851
5390
|
|
|
4852
|
-
var
|
|
5391
|
+
var GetQueryResultsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4853
5392
|
return [
|
|
4854
5393
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4855
5394
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4856
5395
|
];
|
|
4857
5396
|
}).s("CloudTrail_20131101", "GetQueryResults", {}).n("CloudTrailClient", "GetQueryResultsCommand").f(void 0, void 0).ser(se_GetQueryResultsCommand).de(de_GetQueryResultsCommand).build() {
|
|
5397
|
+
static {
|
|
5398
|
+
__name(this, "GetQueryResultsCommand");
|
|
5399
|
+
}
|
|
4858
5400
|
};
|
|
4859
|
-
__name(_GetQueryResultsCommand, "GetQueryResultsCommand");
|
|
4860
|
-
var GetQueryResultsCommand = _GetQueryResultsCommand;
|
|
4861
5401
|
|
|
4862
5402
|
// src/commands/GetResourcePolicyCommand.ts
|
|
4863
5403
|
|
|
4864
5404
|
|
|
4865
5405
|
|
|
4866
|
-
var
|
|
5406
|
+
var GetResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4867
5407
|
return [
|
|
4868
5408
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4869
5409
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4870
5410
|
];
|
|
4871
5411
|
}).s("CloudTrail_20131101", "GetResourcePolicy", {}).n("CloudTrailClient", "GetResourcePolicyCommand").f(void 0, void 0).ser(se_GetResourcePolicyCommand).de(de_GetResourcePolicyCommand).build() {
|
|
5412
|
+
static {
|
|
5413
|
+
__name(this, "GetResourcePolicyCommand");
|
|
5414
|
+
}
|
|
4872
5415
|
};
|
|
4873
|
-
__name(_GetResourcePolicyCommand, "GetResourcePolicyCommand");
|
|
4874
|
-
var GetResourcePolicyCommand = _GetResourcePolicyCommand;
|
|
4875
5416
|
|
|
4876
5417
|
// src/commands/GetTrailCommand.ts
|
|
4877
5418
|
|
|
4878
5419
|
|
|
4879
5420
|
|
|
4880
|
-
var
|
|
5421
|
+
var GetTrailCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4881
5422
|
return [
|
|
4882
5423
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4883
5424
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4884
5425
|
];
|
|
4885
5426
|
}).s("CloudTrail_20131101", "GetTrail", {}).n("CloudTrailClient", "GetTrailCommand").f(void 0, void 0).ser(se_GetTrailCommand).de(de_GetTrailCommand).build() {
|
|
5427
|
+
static {
|
|
5428
|
+
__name(this, "GetTrailCommand");
|
|
5429
|
+
}
|
|
4886
5430
|
};
|
|
4887
|
-
__name(_GetTrailCommand, "GetTrailCommand");
|
|
4888
|
-
var GetTrailCommand = _GetTrailCommand;
|
|
4889
5431
|
|
|
4890
5432
|
// src/commands/GetTrailStatusCommand.ts
|
|
4891
5433
|
|
|
4892
5434
|
|
|
4893
5435
|
|
|
4894
|
-
var
|
|
5436
|
+
var GetTrailStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4895
5437
|
return [
|
|
4896
5438
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4897
5439
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4898
5440
|
];
|
|
4899
5441
|
}).s("CloudTrail_20131101", "GetTrailStatus", {}).n("CloudTrailClient", "GetTrailStatusCommand").f(void 0, void 0).ser(se_GetTrailStatusCommand).de(de_GetTrailStatusCommand).build() {
|
|
5442
|
+
static {
|
|
5443
|
+
__name(this, "GetTrailStatusCommand");
|
|
5444
|
+
}
|
|
4900
5445
|
};
|
|
4901
|
-
__name(_GetTrailStatusCommand, "GetTrailStatusCommand");
|
|
4902
|
-
var GetTrailStatusCommand = _GetTrailStatusCommand;
|
|
4903
5446
|
|
|
4904
5447
|
// src/commands/ListChannelsCommand.ts
|
|
4905
5448
|
|
|
4906
5449
|
|
|
4907
5450
|
|
|
4908
|
-
var
|
|
5451
|
+
var ListChannelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4909
5452
|
return [
|
|
4910
5453
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4911
5454
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4912
5455
|
];
|
|
4913
5456
|
}).s("CloudTrail_20131101", "ListChannels", {}).n("CloudTrailClient", "ListChannelsCommand").f(void 0, void 0).ser(se_ListChannelsCommand).de(de_ListChannelsCommand).build() {
|
|
5457
|
+
static {
|
|
5458
|
+
__name(this, "ListChannelsCommand");
|
|
5459
|
+
}
|
|
4914
5460
|
};
|
|
4915
|
-
__name(_ListChannelsCommand, "ListChannelsCommand");
|
|
4916
|
-
var ListChannelsCommand = _ListChannelsCommand;
|
|
4917
5461
|
|
|
4918
5462
|
// src/commands/ListDashboardsCommand.ts
|
|
4919
5463
|
|
|
4920
5464
|
|
|
4921
5465
|
|
|
4922
|
-
var
|
|
5466
|
+
var ListDashboardsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4923
5467
|
return [
|
|
4924
5468
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4925
5469
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4926
5470
|
];
|
|
4927
5471
|
}).s("CloudTrail_20131101", "ListDashboards", {}).n("CloudTrailClient", "ListDashboardsCommand").f(void 0, void 0).ser(se_ListDashboardsCommand).de(de_ListDashboardsCommand).build() {
|
|
5472
|
+
static {
|
|
5473
|
+
__name(this, "ListDashboardsCommand");
|
|
5474
|
+
}
|
|
4928
5475
|
};
|
|
4929
|
-
__name(_ListDashboardsCommand, "ListDashboardsCommand");
|
|
4930
|
-
var ListDashboardsCommand = _ListDashboardsCommand;
|
|
4931
5476
|
|
|
4932
5477
|
// src/commands/ListEventDataStoresCommand.ts
|
|
4933
5478
|
|
|
4934
5479
|
|
|
4935
5480
|
|
|
4936
|
-
var
|
|
5481
|
+
var ListEventDataStoresCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4937
5482
|
return [
|
|
4938
5483
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4939
5484
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4940
5485
|
];
|
|
4941
5486
|
}).s("CloudTrail_20131101", "ListEventDataStores", {}).n("CloudTrailClient", "ListEventDataStoresCommand").f(void 0, void 0).ser(se_ListEventDataStoresCommand).de(de_ListEventDataStoresCommand).build() {
|
|
5487
|
+
static {
|
|
5488
|
+
__name(this, "ListEventDataStoresCommand");
|
|
5489
|
+
}
|
|
4942
5490
|
};
|
|
4943
|
-
__name(_ListEventDataStoresCommand, "ListEventDataStoresCommand");
|
|
4944
|
-
var ListEventDataStoresCommand = _ListEventDataStoresCommand;
|
|
4945
5491
|
|
|
4946
5492
|
// src/commands/ListImportFailuresCommand.ts
|
|
4947
5493
|
|
|
4948
5494
|
|
|
4949
5495
|
|
|
4950
|
-
var
|
|
5496
|
+
var ListImportFailuresCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4951
5497
|
return [
|
|
4952
5498
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4953
5499
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4954
5500
|
];
|
|
4955
5501
|
}).s("CloudTrail_20131101", "ListImportFailures", {}).n("CloudTrailClient", "ListImportFailuresCommand").f(void 0, void 0).ser(se_ListImportFailuresCommand).de(de_ListImportFailuresCommand).build() {
|
|
5502
|
+
static {
|
|
5503
|
+
__name(this, "ListImportFailuresCommand");
|
|
5504
|
+
}
|
|
4956
5505
|
};
|
|
4957
|
-
__name(_ListImportFailuresCommand, "ListImportFailuresCommand");
|
|
4958
|
-
var ListImportFailuresCommand = _ListImportFailuresCommand;
|
|
4959
5506
|
|
|
4960
5507
|
// src/commands/ListImportsCommand.ts
|
|
4961
5508
|
|
|
4962
5509
|
|
|
4963
5510
|
|
|
4964
|
-
var
|
|
5511
|
+
var ListImportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4965
5512
|
return [
|
|
4966
5513
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4967
5514
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4968
5515
|
];
|
|
4969
5516
|
}).s("CloudTrail_20131101", "ListImports", {}).n("CloudTrailClient", "ListImportsCommand").f(void 0, void 0).ser(se_ListImportsCommand).de(de_ListImportsCommand).build() {
|
|
5517
|
+
static {
|
|
5518
|
+
__name(this, "ListImportsCommand");
|
|
5519
|
+
}
|
|
4970
5520
|
};
|
|
4971
|
-
__name(_ListImportsCommand, "ListImportsCommand");
|
|
4972
|
-
var ListImportsCommand = _ListImportsCommand;
|
|
4973
5521
|
|
|
4974
5522
|
// src/commands/ListInsightsMetricDataCommand.ts
|
|
4975
5523
|
|
|
4976
5524
|
|
|
4977
5525
|
|
|
4978
|
-
var
|
|
5526
|
+
var ListInsightsMetricDataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4979
5527
|
return [
|
|
4980
5528
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4981
5529
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4982
5530
|
];
|
|
4983
5531
|
}).s("CloudTrail_20131101", "ListInsightsMetricData", {}).n("CloudTrailClient", "ListInsightsMetricDataCommand").f(void 0, void 0).ser(se_ListInsightsMetricDataCommand).de(de_ListInsightsMetricDataCommand).build() {
|
|
5532
|
+
static {
|
|
5533
|
+
__name(this, "ListInsightsMetricDataCommand");
|
|
5534
|
+
}
|
|
4984
5535
|
};
|
|
4985
|
-
__name(_ListInsightsMetricDataCommand, "ListInsightsMetricDataCommand");
|
|
4986
|
-
var ListInsightsMetricDataCommand = _ListInsightsMetricDataCommand;
|
|
4987
5536
|
|
|
4988
5537
|
// src/commands/ListPublicKeysCommand.ts
|
|
4989
5538
|
|
|
4990
5539
|
|
|
4991
5540
|
|
|
4992
|
-
var
|
|
5541
|
+
var ListPublicKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4993
5542
|
return [
|
|
4994
5543
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4995
5544
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4996
5545
|
];
|
|
4997
5546
|
}).s("CloudTrail_20131101", "ListPublicKeys", {}).n("CloudTrailClient", "ListPublicKeysCommand").f(void 0, void 0).ser(se_ListPublicKeysCommand).de(de_ListPublicKeysCommand).build() {
|
|
5547
|
+
static {
|
|
5548
|
+
__name(this, "ListPublicKeysCommand");
|
|
5549
|
+
}
|
|
4998
5550
|
};
|
|
4999
|
-
__name(_ListPublicKeysCommand, "ListPublicKeysCommand");
|
|
5000
|
-
var ListPublicKeysCommand = _ListPublicKeysCommand;
|
|
5001
5551
|
|
|
5002
5552
|
// src/commands/ListQueriesCommand.ts
|
|
5003
5553
|
|
|
5004
5554
|
|
|
5005
5555
|
|
|
5006
|
-
var
|
|
5556
|
+
var ListQueriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5007
5557
|
return [
|
|
5008
5558
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5009
5559
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5010
5560
|
];
|
|
5011
5561
|
}).s("CloudTrail_20131101", "ListQueries", {}).n("CloudTrailClient", "ListQueriesCommand").f(void 0, void 0).ser(se_ListQueriesCommand).de(de_ListQueriesCommand).build() {
|
|
5562
|
+
static {
|
|
5563
|
+
__name(this, "ListQueriesCommand");
|
|
5564
|
+
}
|
|
5012
5565
|
};
|
|
5013
|
-
__name(_ListQueriesCommand, "ListQueriesCommand");
|
|
5014
|
-
var ListQueriesCommand = _ListQueriesCommand;
|
|
5015
5566
|
|
|
5016
5567
|
// src/commands/ListTagsCommand.ts
|
|
5017
5568
|
|
|
5018
5569
|
|
|
5019
5570
|
|
|
5020
|
-
var
|
|
5571
|
+
var ListTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5021
5572
|
return [
|
|
5022
5573
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5023
5574
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5024
5575
|
];
|
|
5025
5576
|
}).s("CloudTrail_20131101", "ListTags", {}).n("CloudTrailClient", "ListTagsCommand").f(void 0, void 0).ser(se_ListTagsCommand).de(de_ListTagsCommand).build() {
|
|
5577
|
+
static {
|
|
5578
|
+
__name(this, "ListTagsCommand");
|
|
5579
|
+
}
|
|
5026
5580
|
};
|
|
5027
|
-
__name(_ListTagsCommand, "ListTagsCommand");
|
|
5028
|
-
var ListTagsCommand = _ListTagsCommand;
|
|
5029
5581
|
|
|
5030
5582
|
// src/commands/ListTrailsCommand.ts
|
|
5031
5583
|
|
|
5032
5584
|
|
|
5033
5585
|
|
|
5034
|
-
var
|
|
5586
|
+
var ListTrailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5035
5587
|
return [
|
|
5036
5588
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5037
5589
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5038
5590
|
];
|
|
5039
5591
|
}).s("CloudTrail_20131101", "ListTrails", {}).n("CloudTrailClient", "ListTrailsCommand").f(void 0, void 0).ser(se_ListTrailsCommand).de(de_ListTrailsCommand).build() {
|
|
5592
|
+
static {
|
|
5593
|
+
__name(this, "ListTrailsCommand");
|
|
5594
|
+
}
|
|
5040
5595
|
};
|
|
5041
|
-
__name(_ListTrailsCommand, "ListTrailsCommand");
|
|
5042
|
-
var ListTrailsCommand = _ListTrailsCommand;
|
|
5043
5596
|
|
|
5044
5597
|
// src/commands/LookupEventsCommand.ts
|
|
5045
5598
|
|
|
5046
5599
|
|
|
5047
5600
|
|
|
5048
|
-
var
|
|
5601
|
+
var LookupEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5049
5602
|
return [
|
|
5050
5603
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5051
5604
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5052
5605
|
];
|
|
5053
5606
|
}).s("CloudTrail_20131101", "LookupEvents", {}).n("CloudTrailClient", "LookupEventsCommand").f(void 0, void 0).ser(se_LookupEventsCommand).de(de_LookupEventsCommand).build() {
|
|
5607
|
+
static {
|
|
5608
|
+
__name(this, "LookupEventsCommand");
|
|
5609
|
+
}
|
|
5054
5610
|
};
|
|
5055
|
-
__name(_LookupEventsCommand, "LookupEventsCommand");
|
|
5056
|
-
var LookupEventsCommand = _LookupEventsCommand;
|
|
5057
5611
|
|
|
5058
5612
|
// src/commands/PutEventSelectorsCommand.ts
|
|
5059
5613
|
|
|
5060
5614
|
|
|
5061
5615
|
|
|
5062
|
-
var
|
|
5616
|
+
var PutEventSelectorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5063
5617
|
return [
|
|
5064
5618
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5065
5619
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5066
5620
|
];
|
|
5067
5621
|
}).s("CloudTrail_20131101", "PutEventSelectors", {}).n("CloudTrailClient", "PutEventSelectorsCommand").f(void 0, void 0).ser(se_PutEventSelectorsCommand).de(de_PutEventSelectorsCommand).build() {
|
|
5622
|
+
static {
|
|
5623
|
+
__name(this, "PutEventSelectorsCommand");
|
|
5624
|
+
}
|
|
5068
5625
|
};
|
|
5069
|
-
__name(_PutEventSelectorsCommand, "PutEventSelectorsCommand");
|
|
5070
|
-
var PutEventSelectorsCommand = _PutEventSelectorsCommand;
|
|
5071
5626
|
|
|
5072
5627
|
// src/commands/PutInsightSelectorsCommand.ts
|
|
5073
5628
|
|
|
5074
5629
|
|
|
5075
5630
|
|
|
5076
|
-
var
|
|
5631
|
+
var PutInsightSelectorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5077
5632
|
return [
|
|
5078
5633
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5079
5634
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5080
5635
|
];
|
|
5081
5636
|
}).s("CloudTrail_20131101", "PutInsightSelectors", {}).n("CloudTrailClient", "PutInsightSelectorsCommand").f(void 0, void 0).ser(se_PutInsightSelectorsCommand).de(de_PutInsightSelectorsCommand).build() {
|
|
5637
|
+
static {
|
|
5638
|
+
__name(this, "PutInsightSelectorsCommand");
|
|
5639
|
+
}
|
|
5082
5640
|
};
|
|
5083
|
-
__name(_PutInsightSelectorsCommand, "PutInsightSelectorsCommand");
|
|
5084
|
-
var PutInsightSelectorsCommand = _PutInsightSelectorsCommand;
|
|
5085
5641
|
|
|
5086
5642
|
// src/commands/PutResourcePolicyCommand.ts
|
|
5087
5643
|
|
|
5088
5644
|
|
|
5089
5645
|
|
|
5090
|
-
var
|
|
5646
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5091
5647
|
return [
|
|
5092
5648
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5093
5649
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5094
5650
|
];
|
|
5095
5651
|
}).s("CloudTrail_20131101", "PutResourcePolicy", {}).n("CloudTrailClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
5652
|
+
static {
|
|
5653
|
+
__name(this, "PutResourcePolicyCommand");
|
|
5654
|
+
}
|
|
5096
5655
|
};
|
|
5097
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
5098
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
5099
5656
|
|
|
5100
5657
|
// src/commands/RegisterOrganizationDelegatedAdminCommand.ts
|
|
5101
5658
|
|
|
5102
5659
|
|
|
5103
5660
|
|
|
5104
|
-
var
|
|
5661
|
+
var RegisterOrganizationDelegatedAdminCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5105
5662
|
return [
|
|
5106
5663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5107
5664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5108
5665
|
];
|
|
5109
5666
|
}).s("CloudTrail_20131101", "RegisterOrganizationDelegatedAdmin", {}).n("CloudTrailClient", "RegisterOrganizationDelegatedAdminCommand").f(void 0, void 0).ser(se_RegisterOrganizationDelegatedAdminCommand).de(de_RegisterOrganizationDelegatedAdminCommand).build() {
|
|
5667
|
+
static {
|
|
5668
|
+
__name(this, "RegisterOrganizationDelegatedAdminCommand");
|
|
5669
|
+
}
|
|
5110
5670
|
};
|
|
5111
|
-
__name(_RegisterOrganizationDelegatedAdminCommand, "RegisterOrganizationDelegatedAdminCommand");
|
|
5112
|
-
var RegisterOrganizationDelegatedAdminCommand = _RegisterOrganizationDelegatedAdminCommand;
|
|
5113
5671
|
|
|
5114
5672
|
// src/commands/RemoveTagsCommand.ts
|
|
5115
5673
|
|
|
5116
5674
|
|
|
5117
5675
|
|
|
5118
|
-
var
|
|
5676
|
+
var RemoveTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5119
5677
|
return [
|
|
5120
5678
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5121
5679
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5122
5680
|
];
|
|
5123
5681
|
}).s("CloudTrail_20131101", "RemoveTags", {}).n("CloudTrailClient", "RemoveTagsCommand").f(void 0, void 0).ser(se_RemoveTagsCommand).de(de_RemoveTagsCommand).build() {
|
|
5682
|
+
static {
|
|
5683
|
+
__name(this, "RemoveTagsCommand");
|
|
5684
|
+
}
|
|
5124
5685
|
};
|
|
5125
|
-
__name(_RemoveTagsCommand, "RemoveTagsCommand");
|
|
5126
|
-
var RemoveTagsCommand = _RemoveTagsCommand;
|
|
5127
5686
|
|
|
5128
5687
|
// src/commands/RestoreEventDataStoreCommand.ts
|
|
5129
5688
|
|
|
5130
5689
|
|
|
5131
5690
|
|
|
5132
|
-
var
|
|
5691
|
+
var RestoreEventDataStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5133
5692
|
return [
|
|
5134
5693
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5135
5694
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5136
5695
|
];
|
|
5137
5696
|
}).s("CloudTrail_20131101", "RestoreEventDataStore", {}).n("CloudTrailClient", "RestoreEventDataStoreCommand").f(void 0, void 0).ser(se_RestoreEventDataStoreCommand).de(de_RestoreEventDataStoreCommand).build() {
|
|
5697
|
+
static {
|
|
5698
|
+
__name(this, "RestoreEventDataStoreCommand");
|
|
5699
|
+
}
|
|
5138
5700
|
};
|
|
5139
|
-
__name(_RestoreEventDataStoreCommand, "RestoreEventDataStoreCommand");
|
|
5140
|
-
var RestoreEventDataStoreCommand = _RestoreEventDataStoreCommand;
|
|
5141
5701
|
|
|
5142
5702
|
// src/commands/StartDashboardRefreshCommand.ts
|
|
5143
5703
|
|
|
5144
5704
|
|
|
5145
5705
|
|
|
5146
|
-
var
|
|
5706
|
+
var StartDashboardRefreshCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5147
5707
|
return [
|
|
5148
5708
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5149
5709
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5150
5710
|
];
|
|
5151
5711
|
}).s("CloudTrail_20131101", "StartDashboardRefresh", {}).n("CloudTrailClient", "StartDashboardRefreshCommand").f(void 0, void 0).ser(se_StartDashboardRefreshCommand).de(de_StartDashboardRefreshCommand).build() {
|
|
5712
|
+
static {
|
|
5713
|
+
__name(this, "StartDashboardRefreshCommand");
|
|
5714
|
+
}
|
|
5152
5715
|
};
|
|
5153
|
-
__name(_StartDashboardRefreshCommand, "StartDashboardRefreshCommand");
|
|
5154
|
-
var StartDashboardRefreshCommand = _StartDashboardRefreshCommand;
|
|
5155
5716
|
|
|
5156
5717
|
// src/commands/StartEventDataStoreIngestionCommand.ts
|
|
5157
5718
|
|
|
5158
5719
|
|
|
5159
5720
|
|
|
5160
|
-
var
|
|
5721
|
+
var StartEventDataStoreIngestionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5161
5722
|
return [
|
|
5162
5723
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5163
5724
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5164
5725
|
];
|
|
5165
5726
|
}).s("CloudTrail_20131101", "StartEventDataStoreIngestion", {}).n("CloudTrailClient", "StartEventDataStoreIngestionCommand").f(void 0, void 0).ser(se_StartEventDataStoreIngestionCommand).de(de_StartEventDataStoreIngestionCommand).build() {
|
|
5727
|
+
static {
|
|
5728
|
+
__name(this, "StartEventDataStoreIngestionCommand");
|
|
5729
|
+
}
|
|
5166
5730
|
};
|
|
5167
|
-
__name(_StartEventDataStoreIngestionCommand, "StartEventDataStoreIngestionCommand");
|
|
5168
|
-
var StartEventDataStoreIngestionCommand = _StartEventDataStoreIngestionCommand;
|
|
5169
5731
|
|
|
5170
5732
|
// src/commands/StartImportCommand.ts
|
|
5171
5733
|
|
|
5172
5734
|
|
|
5173
5735
|
|
|
5174
|
-
var
|
|
5736
|
+
var StartImportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5175
5737
|
return [
|
|
5176
5738
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5177
5739
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5178
5740
|
];
|
|
5179
5741
|
}).s("CloudTrail_20131101", "StartImport", {}).n("CloudTrailClient", "StartImportCommand").f(void 0, void 0).ser(se_StartImportCommand).de(de_StartImportCommand).build() {
|
|
5742
|
+
static {
|
|
5743
|
+
__name(this, "StartImportCommand");
|
|
5744
|
+
}
|
|
5180
5745
|
};
|
|
5181
|
-
__name(_StartImportCommand, "StartImportCommand");
|
|
5182
|
-
var StartImportCommand = _StartImportCommand;
|
|
5183
5746
|
|
|
5184
5747
|
// src/commands/StartLoggingCommand.ts
|
|
5185
5748
|
|
|
5186
5749
|
|
|
5187
5750
|
|
|
5188
|
-
var
|
|
5751
|
+
var StartLoggingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5189
5752
|
return [
|
|
5190
5753
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5191
5754
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5192
5755
|
];
|
|
5193
5756
|
}).s("CloudTrail_20131101", "StartLogging", {}).n("CloudTrailClient", "StartLoggingCommand").f(void 0, void 0).ser(se_StartLoggingCommand).de(de_StartLoggingCommand).build() {
|
|
5757
|
+
static {
|
|
5758
|
+
__name(this, "StartLoggingCommand");
|
|
5759
|
+
}
|
|
5194
5760
|
};
|
|
5195
|
-
__name(_StartLoggingCommand, "StartLoggingCommand");
|
|
5196
|
-
var StartLoggingCommand = _StartLoggingCommand;
|
|
5197
5761
|
|
|
5198
5762
|
// src/commands/StartQueryCommand.ts
|
|
5199
5763
|
|
|
5200
5764
|
|
|
5201
5765
|
|
|
5202
|
-
var
|
|
5766
|
+
var StartQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5203
5767
|
return [
|
|
5204
5768
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5205
5769
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5206
5770
|
];
|
|
5207
5771
|
}).s("CloudTrail_20131101", "StartQuery", {}).n("CloudTrailClient", "StartQueryCommand").f(void 0, void 0).ser(se_StartQueryCommand).de(de_StartQueryCommand).build() {
|
|
5772
|
+
static {
|
|
5773
|
+
__name(this, "StartQueryCommand");
|
|
5774
|
+
}
|
|
5208
5775
|
};
|
|
5209
|
-
__name(_StartQueryCommand, "StartQueryCommand");
|
|
5210
|
-
var StartQueryCommand = _StartQueryCommand;
|
|
5211
5776
|
|
|
5212
5777
|
// src/commands/StopEventDataStoreIngestionCommand.ts
|
|
5213
5778
|
|
|
5214
5779
|
|
|
5215
5780
|
|
|
5216
|
-
var
|
|
5781
|
+
var StopEventDataStoreIngestionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5217
5782
|
return [
|
|
5218
5783
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5219
5784
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5220
5785
|
];
|
|
5221
5786
|
}).s("CloudTrail_20131101", "StopEventDataStoreIngestion", {}).n("CloudTrailClient", "StopEventDataStoreIngestionCommand").f(void 0, void 0).ser(se_StopEventDataStoreIngestionCommand).de(de_StopEventDataStoreIngestionCommand).build() {
|
|
5787
|
+
static {
|
|
5788
|
+
__name(this, "StopEventDataStoreIngestionCommand");
|
|
5789
|
+
}
|
|
5222
5790
|
};
|
|
5223
|
-
__name(_StopEventDataStoreIngestionCommand, "StopEventDataStoreIngestionCommand");
|
|
5224
|
-
var StopEventDataStoreIngestionCommand = _StopEventDataStoreIngestionCommand;
|
|
5225
5791
|
|
|
5226
5792
|
// src/commands/StopImportCommand.ts
|
|
5227
5793
|
|
|
5228
5794
|
|
|
5229
5795
|
|
|
5230
|
-
var
|
|
5796
|
+
var StopImportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5231
5797
|
return [
|
|
5232
5798
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5233
5799
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5234
5800
|
];
|
|
5235
5801
|
}).s("CloudTrail_20131101", "StopImport", {}).n("CloudTrailClient", "StopImportCommand").f(void 0, void 0).ser(se_StopImportCommand).de(de_StopImportCommand).build() {
|
|
5802
|
+
static {
|
|
5803
|
+
__name(this, "StopImportCommand");
|
|
5804
|
+
}
|
|
5236
5805
|
};
|
|
5237
|
-
__name(_StopImportCommand, "StopImportCommand");
|
|
5238
|
-
var StopImportCommand = _StopImportCommand;
|
|
5239
5806
|
|
|
5240
5807
|
// src/commands/StopLoggingCommand.ts
|
|
5241
5808
|
|
|
5242
5809
|
|
|
5243
5810
|
|
|
5244
|
-
var
|
|
5811
|
+
var StopLoggingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5245
5812
|
return [
|
|
5246
5813
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5247
5814
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5248
5815
|
];
|
|
5249
5816
|
}).s("CloudTrail_20131101", "StopLogging", {}).n("CloudTrailClient", "StopLoggingCommand").f(void 0, void 0).ser(se_StopLoggingCommand).de(de_StopLoggingCommand).build() {
|
|
5817
|
+
static {
|
|
5818
|
+
__name(this, "StopLoggingCommand");
|
|
5819
|
+
}
|
|
5250
5820
|
};
|
|
5251
|
-
__name(_StopLoggingCommand, "StopLoggingCommand");
|
|
5252
|
-
var StopLoggingCommand = _StopLoggingCommand;
|
|
5253
5821
|
|
|
5254
5822
|
// src/commands/UpdateChannelCommand.ts
|
|
5255
5823
|
|
|
5256
5824
|
|
|
5257
5825
|
|
|
5258
|
-
var
|
|
5826
|
+
var UpdateChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5259
5827
|
return [
|
|
5260
5828
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5261
5829
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5262
5830
|
];
|
|
5263
5831
|
}).s("CloudTrail_20131101", "UpdateChannel", {}).n("CloudTrailClient", "UpdateChannelCommand").f(void 0, void 0).ser(se_UpdateChannelCommand).de(de_UpdateChannelCommand).build() {
|
|
5832
|
+
static {
|
|
5833
|
+
__name(this, "UpdateChannelCommand");
|
|
5834
|
+
}
|
|
5264
5835
|
};
|
|
5265
|
-
__name(_UpdateChannelCommand, "UpdateChannelCommand");
|
|
5266
|
-
var UpdateChannelCommand = _UpdateChannelCommand;
|
|
5267
5836
|
|
|
5268
5837
|
// src/commands/UpdateDashboardCommand.ts
|
|
5269
5838
|
|
|
5270
5839
|
|
|
5271
5840
|
|
|
5272
|
-
var
|
|
5841
|
+
var UpdateDashboardCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5273
5842
|
return [
|
|
5274
5843
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5275
5844
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5276
5845
|
];
|
|
5277
5846
|
}).s("CloudTrail_20131101", "UpdateDashboard", {}).n("CloudTrailClient", "UpdateDashboardCommand").f(void 0, void 0).ser(se_UpdateDashboardCommand).de(de_UpdateDashboardCommand).build() {
|
|
5847
|
+
static {
|
|
5848
|
+
__name(this, "UpdateDashboardCommand");
|
|
5849
|
+
}
|
|
5278
5850
|
};
|
|
5279
|
-
__name(_UpdateDashboardCommand, "UpdateDashboardCommand");
|
|
5280
|
-
var UpdateDashboardCommand = _UpdateDashboardCommand;
|
|
5281
5851
|
|
|
5282
5852
|
// src/commands/UpdateEventDataStoreCommand.ts
|
|
5283
5853
|
|
|
5284
5854
|
|
|
5285
5855
|
|
|
5286
|
-
var
|
|
5856
|
+
var UpdateEventDataStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5287
5857
|
return [
|
|
5288
5858
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5289
5859
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5290
5860
|
];
|
|
5291
5861
|
}).s("CloudTrail_20131101", "UpdateEventDataStore", {}).n("CloudTrailClient", "UpdateEventDataStoreCommand").f(void 0, void 0).ser(se_UpdateEventDataStoreCommand).de(de_UpdateEventDataStoreCommand).build() {
|
|
5862
|
+
static {
|
|
5863
|
+
__name(this, "UpdateEventDataStoreCommand");
|
|
5864
|
+
}
|
|
5292
5865
|
};
|
|
5293
|
-
__name(_UpdateEventDataStoreCommand, "UpdateEventDataStoreCommand");
|
|
5294
|
-
var UpdateEventDataStoreCommand = _UpdateEventDataStoreCommand;
|
|
5295
5866
|
|
|
5296
5867
|
// src/commands/UpdateTrailCommand.ts
|
|
5297
5868
|
|
|
5298
5869
|
|
|
5299
5870
|
|
|
5300
|
-
var
|
|
5871
|
+
var UpdateTrailCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5301
5872
|
return [
|
|
5302
5873
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5303
5874
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5304
5875
|
];
|
|
5305
5876
|
}).s("CloudTrail_20131101", "UpdateTrail", {}).n("CloudTrailClient", "UpdateTrailCommand").f(void 0, void 0).ser(se_UpdateTrailCommand).de(de_UpdateTrailCommand).build() {
|
|
5877
|
+
static {
|
|
5878
|
+
__name(this, "UpdateTrailCommand");
|
|
5879
|
+
}
|
|
5306
5880
|
};
|
|
5307
|
-
__name(_UpdateTrailCommand, "UpdateTrailCommand");
|
|
5308
|
-
var UpdateTrailCommand = _UpdateTrailCommand;
|
|
5309
5881
|
|
|
5310
5882
|
// src/CloudTrail.ts
|
|
5311
5883
|
var commands = {
|
|
@@ -5366,10 +5938,11 @@ var commands = {
|
|
|
5366
5938
|
UpdateEventDataStoreCommand,
|
|
5367
5939
|
UpdateTrailCommand
|
|
5368
5940
|
};
|
|
5369
|
-
var
|
|
5941
|
+
var CloudTrail = class extends CloudTrailClient {
|
|
5942
|
+
static {
|
|
5943
|
+
__name(this, "CloudTrail");
|
|
5944
|
+
}
|
|
5370
5945
|
};
|
|
5371
|
-
__name(_CloudTrail, "CloudTrail");
|
|
5372
|
-
var CloudTrail = _CloudTrail;
|
|
5373
5946
|
(0, import_smithy_client.createAggregatedClient)(commands, CloudTrail);
|
|
5374
5947
|
|
|
5375
5948
|
// src/pagination/GetQueryResultsPaginator.ts
|