@aws-sdk/client-organizations 3.721.0 → 3.726.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 +571 -410
- package/dist-es/OrganizationsClient.js +1 -0
- package/dist-es/models/models_0.js +146 -94
- 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
|
@@ -290,7 +290,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
290
290
|
}, "resolveRuntimeExtensions");
|
|
291
291
|
|
|
292
292
|
// src/OrganizationsClient.ts
|
|
293
|
-
var
|
|
293
|
+
var OrganizationsClient = class extends import_smithy_client.Client {
|
|
294
|
+
static {
|
|
295
|
+
__name(this, "OrganizationsClient");
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* The resolved configuration of OrganizationsClient class. This is resolved and normalized from the {@link OrganizationsClientConfig | constructor configuration interface}.
|
|
299
|
+
*/
|
|
300
|
+
config;
|
|
294
301
|
constructor(...[configuration]) {
|
|
295
302
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
296
303
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -300,7 +307,7 @@ var _OrganizationsClient = class _OrganizationsClient extends import_smithy_clie
|
|
|
300
307
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
301
308
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
302
309
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
303
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
310
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
304
311
|
super(_config_8);
|
|
305
312
|
this.config = _config_8;
|
|
306
313
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -328,8 +335,6 @@ var _OrganizationsClient = class _OrganizationsClient extends import_smithy_clie
|
|
|
328
335
|
super.destroy();
|
|
329
336
|
}
|
|
330
337
|
};
|
|
331
|
-
__name(_OrganizationsClient, "OrganizationsClient");
|
|
332
|
-
var OrganizationsClient = _OrganizationsClient;
|
|
333
338
|
|
|
334
339
|
// src/Organizations.ts
|
|
335
340
|
|
|
@@ -344,7 +349,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
344
349
|
|
|
345
350
|
// src/models/OrganizationsServiceException.ts
|
|
346
351
|
|
|
347
|
-
var
|
|
352
|
+
var OrganizationsServiceException = class _OrganizationsServiceException extends import_smithy_client.ServiceException {
|
|
353
|
+
static {
|
|
354
|
+
__name(this, "OrganizationsServiceException");
|
|
355
|
+
}
|
|
348
356
|
/**
|
|
349
357
|
* @internal
|
|
350
358
|
*/
|
|
@@ -353,8 +361,6 @@ var _OrganizationsServiceException = class _OrganizationsServiceException extend
|
|
|
353
361
|
Object.setPrototypeOf(this, _OrganizationsServiceException.prototype);
|
|
354
362
|
}
|
|
355
363
|
};
|
|
356
|
-
__name(_OrganizationsServiceException, "OrganizationsServiceException");
|
|
357
|
-
var OrganizationsServiceException = _OrganizationsServiceException;
|
|
358
364
|
|
|
359
365
|
// src/models/models_0.ts
|
|
360
366
|
var ActionType = {
|
|
@@ -386,7 +392,13 @@ var HandshakeState = {
|
|
|
386
392
|
OPEN: "OPEN",
|
|
387
393
|
REQUESTED: "REQUESTED"
|
|
388
394
|
};
|
|
389
|
-
var
|
|
395
|
+
var AccessDeniedException = class _AccessDeniedException extends OrganizationsServiceException {
|
|
396
|
+
static {
|
|
397
|
+
__name(this, "AccessDeniedException");
|
|
398
|
+
}
|
|
399
|
+
name = "AccessDeniedException";
|
|
400
|
+
$fault = "client";
|
|
401
|
+
Message;
|
|
390
402
|
/**
|
|
391
403
|
* @internal
|
|
392
404
|
*/
|
|
@@ -396,18 +408,21 @@ var _AccessDeniedException = class _AccessDeniedException extends OrganizationsS
|
|
|
396
408
|
$fault: "client",
|
|
397
409
|
...opts
|
|
398
410
|
});
|
|
399
|
-
this.name = "AccessDeniedException";
|
|
400
|
-
this.$fault = "client";
|
|
401
411
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
402
412
|
this.Message = opts.Message;
|
|
403
413
|
}
|
|
404
414
|
};
|
|
405
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
406
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
407
415
|
var AccessDeniedForDependencyExceptionReason = {
|
|
408
416
|
ACCESS_DENIED_DURING_CREATE_SERVICE_LINKED_ROLE: "ACCESS_DENIED_DURING_CREATE_SERVICE_LINKED_ROLE"
|
|
409
417
|
};
|
|
410
|
-
var
|
|
418
|
+
var AccessDeniedForDependencyException = class _AccessDeniedForDependencyException extends OrganizationsServiceException {
|
|
419
|
+
static {
|
|
420
|
+
__name(this, "AccessDeniedForDependencyException");
|
|
421
|
+
}
|
|
422
|
+
name = "AccessDeniedForDependencyException";
|
|
423
|
+
$fault = "client";
|
|
424
|
+
Message;
|
|
425
|
+
Reason;
|
|
411
426
|
/**
|
|
412
427
|
* @internal
|
|
413
428
|
*/
|
|
@@ -417,16 +432,18 @@ var _AccessDeniedForDependencyException = class _AccessDeniedForDependencyExcept
|
|
|
417
432
|
$fault: "client",
|
|
418
433
|
...opts
|
|
419
434
|
});
|
|
420
|
-
this.name = "AccessDeniedForDependencyException";
|
|
421
|
-
this.$fault = "client";
|
|
422
435
|
Object.setPrototypeOf(this, _AccessDeniedForDependencyException.prototype);
|
|
423
436
|
this.Message = opts.Message;
|
|
424
437
|
this.Reason = opts.Reason;
|
|
425
438
|
}
|
|
426
439
|
};
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
440
|
+
var AWSOrganizationsNotInUseException = class _AWSOrganizationsNotInUseException extends OrganizationsServiceException {
|
|
441
|
+
static {
|
|
442
|
+
__name(this, "AWSOrganizationsNotInUseException");
|
|
443
|
+
}
|
|
444
|
+
name = "AWSOrganizationsNotInUseException";
|
|
445
|
+
$fault = "client";
|
|
446
|
+
Message;
|
|
430
447
|
/**
|
|
431
448
|
* @internal
|
|
432
449
|
*/
|
|
@@ -436,15 +453,17 @@ var _AWSOrganizationsNotInUseException = class _AWSOrganizationsNotInUseExceptio
|
|
|
436
453
|
$fault: "client",
|
|
437
454
|
...opts
|
|
438
455
|
});
|
|
439
|
-
this.name = "AWSOrganizationsNotInUseException";
|
|
440
|
-
this.$fault = "client";
|
|
441
456
|
Object.setPrototypeOf(this, _AWSOrganizationsNotInUseException.prototype);
|
|
442
457
|
this.Message = opts.Message;
|
|
443
458
|
}
|
|
444
459
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
460
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends OrganizationsServiceException {
|
|
461
|
+
static {
|
|
462
|
+
__name(this, "ConcurrentModificationException");
|
|
463
|
+
}
|
|
464
|
+
name = "ConcurrentModificationException";
|
|
465
|
+
$fault = "client";
|
|
466
|
+
Message;
|
|
448
467
|
/**
|
|
449
468
|
* @internal
|
|
450
469
|
*/
|
|
@@ -454,15 +473,17 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
454
473
|
$fault: "client",
|
|
455
474
|
...opts
|
|
456
475
|
});
|
|
457
|
-
this.name = "ConcurrentModificationException";
|
|
458
|
-
this.$fault = "client";
|
|
459
476
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
460
477
|
this.Message = opts.Message;
|
|
461
478
|
}
|
|
462
479
|
};
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
480
|
+
var HandshakeAlreadyInStateException = class _HandshakeAlreadyInStateException extends OrganizationsServiceException {
|
|
481
|
+
static {
|
|
482
|
+
__name(this, "HandshakeAlreadyInStateException");
|
|
483
|
+
}
|
|
484
|
+
name = "HandshakeAlreadyInStateException";
|
|
485
|
+
$fault = "client";
|
|
486
|
+
Message;
|
|
466
487
|
/**
|
|
467
488
|
* @internal
|
|
468
489
|
*/
|
|
@@ -472,14 +493,10 @@ var _HandshakeAlreadyInStateException = class _HandshakeAlreadyInStateException
|
|
|
472
493
|
$fault: "client",
|
|
473
494
|
...opts
|
|
474
495
|
});
|
|
475
|
-
this.name = "HandshakeAlreadyInStateException";
|
|
476
|
-
this.$fault = "client";
|
|
477
496
|
Object.setPrototypeOf(this, _HandshakeAlreadyInStateException.prototype);
|
|
478
497
|
this.Message = opts.Message;
|
|
479
498
|
}
|
|
480
499
|
};
|
|
481
|
-
__name(_HandshakeAlreadyInStateException, "HandshakeAlreadyInStateException");
|
|
482
|
-
var HandshakeAlreadyInStateException = _HandshakeAlreadyInStateException;
|
|
483
500
|
var HandshakeConstraintViolationExceptionReason = {
|
|
484
501
|
ACCOUNT_NUMBER_LIMIT_EXCEEDED: "ACCOUNT_NUMBER_LIMIT_EXCEEDED",
|
|
485
502
|
ALREADY_IN_AN_ORGANIZATION: "ALREADY_IN_AN_ORGANIZATION",
|
|
@@ -492,7 +509,14 @@ var HandshakeConstraintViolationExceptionReason = {
|
|
|
492
509
|
ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED: "ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED",
|
|
493
510
|
PAYMENT_INSTRUMENT_REQUIRED: "PAYMENT_INSTRUMENT_REQUIRED"
|
|
494
511
|
};
|
|
495
|
-
var
|
|
512
|
+
var HandshakeConstraintViolationException = class _HandshakeConstraintViolationException extends OrganizationsServiceException {
|
|
513
|
+
static {
|
|
514
|
+
__name(this, "HandshakeConstraintViolationException");
|
|
515
|
+
}
|
|
516
|
+
name = "HandshakeConstraintViolationException";
|
|
517
|
+
$fault = "client";
|
|
518
|
+
Message;
|
|
519
|
+
Reason;
|
|
496
520
|
/**
|
|
497
521
|
* @internal
|
|
498
522
|
*/
|
|
@@ -502,16 +526,18 @@ var _HandshakeConstraintViolationException = class _HandshakeConstraintViolation
|
|
|
502
526
|
$fault: "client",
|
|
503
527
|
...opts
|
|
504
528
|
});
|
|
505
|
-
this.name = "HandshakeConstraintViolationException";
|
|
506
|
-
this.$fault = "client";
|
|
507
529
|
Object.setPrototypeOf(this, _HandshakeConstraintViolationException.prototype);
|
|
508
530
|
this.Message = opts.Message;
|
|
509
531
|
this.Reason = opts.Reason;
|
|
510
532
|
}
|
|
511
533
|
};
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
534
|
+
var HandshakeNotFoundException = class _HandshakeNotFoundException extends OrganizationsServiceException {
|
|
535
|
+
static {
|
|
536
|
+
__name(this, "HandshakeNotFoundException");
|
|
537
|
+
}
|
|
538
|
+
name = "HandshakeNotFoundException";
|
|
539
|
+
$fault = "client";
|
|
540
|
+
Message;
|
|
515
541
|
/**
|
|
516
542
|
* @internal
|
|
517
543
|
*/
|
|
@@ -521,15 +547,17 @@ var _HandshakeNotFoundException = class _HandshakeNotFoundException extends Orga
|
|
|
521
547
|
$fault: "client",
|
|
522
548
|
...opts
|
|
523
549
|
});
|
|
524
|
-
this.name = "HandshakeNotFoundException";
|
|
525
|
-
this.$fault = "client";
|
|
526
550
|
Object.setPrototypeOf(this, _HandshakeNotFoundException.prototype);
|
|
527
551
|
this.Message = opts.Message;
|
|
528
552
|
}
|
|
529
553
|
};
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
554
|
+
var InvalidHandshakeTransitionException = class _InvalidHandshakeTransitionException extends OrganizationsServiceException {
|
|
555
|
+
static {
|
|
556
|
+
__name(this, "InvalidHandshakeTransitionException");
|
|
557
|
+
}
|
|
558
|
+
name = "InvalidHandshakeTransitionException";
|
|
559
|
+
$fault = "client";
|
|
560
|
+
Message;
|
|
533
561
|
/**
|
|
534
562
|
* @internal
|
|
535
563
|
*/
|
|
@@ -539,14 +567,10 @@ var _InvalidHandshakeTransitionException = class _InvalidHandshakeTransitionExce
|
|
|
539
567
|
$fault: "client",
|
|
540
568
|
...opts
|
|
541
569
|
});
|
|
542
|
-
this.name = "InvalidHandshakeTransitionException";
|
|
543
|
-
this.$fault = "client";
|
|
544
570
|
Object.setPrototypeOf(this, _InvalidHandshakeTransitionException.prototype);
|
|
545
571
|
this.Message = opts.Message;
|
|
546
572
|
}
|
|
547
573
|
};
|
|
548
|
-
__name(_InvalidHandshakeTransitionException, "InvalidHandshakeTransitionException");
|
|
549
|
-
var InvalidHandshakeTransitionException = _InvalidHandshakeTransitionException;
|
|
550
574
|
var InvalidInputExceptionReason = {
|
|
551
575
|
DUPLICATE_TAG_KEY: "DUPLICATE_TAG_KEY",
|
|
552
576
|
IMMUTABLE_POLICY: "IMMUTABLE_POLICY",
|
|
@@ -579,7 +603,14 @@ var InvalidInputExceptionReason = {
|
|
|
579
603
|
UNSUPPORTED_POLICY_TYPE_IN_RESOURCE_POLICY: "UNSUPPORTED_POLICY_TYPE_IN_RESOURCE_POLICY",
|
|
580
604
|
UNSUPPORTED_RESOURCE_IN_RESOURCE_POLICY: "UNSUPPORTED_RESOURCE_IN_RESOURCE_POLICY"
|
|
581
605
|
};
|
|
582
|
-
var
|
|
606
|
+
var InvalidInputException = class _InvalidInputException extends OrganizationsServiceException {
|
|
607
|
+
static {
|
|
608
|
+
__name(this, "InvalidInputException");
|
|
609
|
+
}
|
|
610
|
+
name = "InvalidInputException";
|
|
611
|
+
$fault = "client";
|
|
612
|
+
Message;
|
|
613
|
+
Reason;
|
|
583
614
|
/**
|
|
584
615
|
* @internal
|
|
585
616
|
*/
|
|
@@ -589,16 +620,18 @@ var _InvalidInputException = class _InvalidInputException extends OrganizationsS
|
|
|
589
620
|
$fault: "client",
|
|
590
621
|
...opts
|
|
591
622
|
});
|
|
592
|
-
this.name = "InvalidInputException";
|
|
593
|
-
this.$fault = "client";
|
|
594
623
|
Object.setPrototypeOf(this, _InvalidInputException.prototype);
|
|
595
624
|
this.Message = opts.Message;
|
|
596
625
|
this.Reason = opts.Reason;
|
|
597
626
|
}
|
|
598
627
|
};
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
628
|
+
var ServiceException = class _ServiceException extends OrganizationsServiceException {
|
|
629
|
+
static {
|
|
630
|
+
__name(this, "ServiceException");
|
|
631
|
+
}
|
|
632
|
+
name = "ServiceException";
|
|
633
|
+
$fault = "server";
|
|
634
|
+
Message;
|
|
602
635
|
/**
|
|
603
636
|
* @internal
|
|
604
637
|
*/
|
|
@@ -608,15 +641,18 @@ var _ServiceException = class _ServiceException extends OrganizationsServiceExce
|
|
|
608
641
|
$fault: "server",
|
|
609
642
|
...opts
|
|
610
643
|
});
|
|
611
|
-
this.name = "ServiceException";
|
|
612
|
-
this.$fault = "server";
|
|
613
644
|
Object.setPrototypeOf(this, _ServiceException.prototype);
|
|
614
645
|
this.Message = opts.Message;
|
|
615
646
|
}
|
|
616
647
|
};
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
648
|
+
var TooManyRequestsException = class _TooManyRequestsException extends OrganizationsServiceException {
|
|
649
|
+
static {
|
|
650
|
+
__name(this, "TooManyRequestsException");
|
|
651
|
+
}
|
|
652
|
+
name = "TooManyRequestsException";
|
|
653
|
+
$fault = "client";
|
|
654
|
+
Type;
|
|
655
|
+
Message;
|
|
620
656
|
/**
|
|
621
657
|
* @internal
|
|
622
658
|
*/
|
|
@@ -626,15 +662,11 @@ var _TooManyRequestsException = class _TooManyRequestsException extends Organiza
|
|
|
626
662
|
$fault: "client",
|
|
627
663
|
...opts
|
|
628
664
|
});
|
|
629
|
-
this.name = "TooManyRequestsException";
|
|
630
|
-
this.$fault = "client";
|
|
631
665
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
632
666
|
this.Type = opts.Type;
|
|
633
667
|
this.Message = opts.Message;
|
|
634
668
|
}
|
|
635
669
|
};
|
|
636
|
-
__name(_TooManyRequestsException, "TooManyRequestsException");
|
|
637
|
-
var TooManyRequestsException = _TooManyRequestsException;
|
|
638
670
|
var AccountJoinedMethod = {
|
|
639
671
|
CREATED: "CREATED",
|
|
640
672
|
INVITED: "INVITED"
|
|
@@ -644,7 +676,13 @@ var AccountStatus = {
|
|
|
644
676
|
PENDING_CLOSURE: "PENDING_CLOSURE",
|
|
645
677
|
SUSPENDED: "SUSPENDED"
|
|
646
678
|
};
|
|
647
|
-
var
|
|
679
|
+
var AccountAlreadyClosedException = class _AccountAlreadyClosedException extends OrganizationsServiceException {
|
|
680
|
+
static {
|
|
681
|
+
__name(this, "AccountAlreadyClosedException");
|
|
682
|
+
}
|
|
683
|
+
name = "AccountAlreadyClosedException";
|
|
684
|
+
$fault = "client";
|
|
685
|
+
Message;
|
|
648
686
|
/**
|
|
649
687
|
* @internal
|
|
650
688
|
*/
|
|
@@ -654,15 +692,17 @@ var _AccountAlreadyClosedException = class _AccountAlreadyClosedException extend
|
|
|
654
692
|
$fault: "client",
|
|
655
693
|
...opts
|
|
656
694
|
});
|
|
657
|
-
this.name = "AccountAlreadyClosedException";
|
|
658
|
-
this.$fault = "client";
|
|
659
695
|
Object.setPrototypeOf(this, _AccountAlreadyClosedException.prototype);
|
|
660
696
|
this.Message = opts.Message;
|
|
661
697
|
}
|
|
662
698
|
};
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
699
|
+
var AccountAlreadyRegisteredException = class _AccountAlreadyRegisteredException extends OrganizationsServiceException {
|
|
700
|
+
static {
|
|
701
|
+
__name(this, "AccountAlreadyRegisteredException");
|
|
702
|
+
}
|
|
703
|
+
name = "AccountAlreadyRegisteredException";
|
|
704
|
+
$fault = "client";
|
|
705
|
+
Message;
|
|
666
706
|
/**
|
|
667
707
|
* @internal
|
|
668
708
|
*/
|
|
@@ -672,15 +712,17 @@ var _AccountAlreadyRegisteredException = class _AccountAlreadyRegisteredExceptio
|
|
|
672
712
|
$fault: "client",
|
|
673
713
|
...opts
|
|
674
714
|
});
|
|
675
|
-
this.name = "AccountAlreadyRegisteredException";
|
|
676
|
-
this.$fault = "client";
|
|
677
715
|
Object.setPrototypeOf(this, _AccountAlreadyRegisteredException.prototype);
|
|
678
716
|
this.Message = opts.Message;
|
|
679
717
|
}
|
|
680
718
|
};
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
719
|
+
var AccountNotFoundException = class _AccountNotFoundException extends OrganizationsServiceException {
|
|
720
|
+
static {
|
|
721
|
+
__name(this, "AccountNotFoundException");
|
|
722
|
+
}
|
|
723
|
+
name = "AccountNotFoundException";
|
|
724
|
+
$fault = "client";
|
|
725
|
+
Message;
|
|
684
726
|
/**
|
|
685
727
|
* @internal
|
|
686
728
|
*/
|
|
@@ -690,15 +732,17 @@ var _AccountNotFoundException = class _AccountNotFoundException extends Organiza
|
|
|
690
732
|
$fault: "client",
|
|
691
733
|
...opts
|
|
692
734
|
});
|
|
693
|
-
this.name = "AccountNotFoundException";
|
|
694
|
-
this.$fault = "client";
|
|
695
735
|
Object.setPrototypeOf(this, _AccountNotFoundException.prototype);
|
|
696
736
|
this.Message = opts.Message;
|
|
697
737
|
}
|
|
698
738
|
};
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
739
|
+
var AccountNotRegisteredException = class _AccountNotRegisteredException extends OrganizationsServiceException {
|
|
740
|
+
static {
|
|
741
|
+
__name(this, "AccountNotRegisteredException");
|
|
742
|
+
}
|
|
743
|
+
name = "AccountNotRegisteredException";
|
|
744
|
+
$fault = "client";
|
|
745
|
+
Message;
|
|
702
746
|
/**
|
|
703
747
|
* @internal
|
|
704
748
|
*/
|
|
@@ -708,15 +752,17 @@ var _AccountNotRegisteredException = class _AccountNotRegisteredException extend
|
|
|
708
752
|
$fault: "client",
|
|
709
753
|
...opts
|
|
710
754
|
});
|
|
711
|
-
this.name = "AccountNotRegisteredException";
|
|
712
|
-
this.$fault = "client";
|
|
713
755
|
Object.setPrototypeOf(this, _AccountNotRegisteredException.prototype);
|
|
714
756
|
this.Message = opts.Message;
|
|
715
757
|
}
|
|
716
758
|
};
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
759
|
+
var AccountOwnerNotVerifiedException = class _AccountOwnerNotVerifiedException extends OrganizationsServiceException {
|
|
760
|
+
static {
|
|
761
|
+
__name(this, "AccountOwnerNotVerifiedException");
|
|
762
|
+
}
|
|
763
|
+
name = "AccountOwnerNotVerifiedException";
|
|
764
|
+
$fault = "client";
|
|
765
|
+
Message;
|
|
720
766
|
/**
|
|
721
767
|
* @internal
|
|
722
768
|
*/
|
|
@@ -726,15 +772,17 @@ var _AccountOwnerNotVerifiedException = class _AccountOwnerNotVerifiedException
|
|
|
726
772
|
$fault: "client",
|
|
727
773
|
...opts
|
|
728
774
|
});
|
|
729
|
-
this.name = "AccountOwnerNotVerifiedException";
|
|
730
|
-
this.$fault = "client";
|
|
731
775
|
Object.setPrototypeOf(this, _AccountOwnerNotVerifiedException.prototype);
|
|
732
776
|
this.Message = opts.Message;
|
|
733
777
|
}
|
|
734
778
|
};
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
779
|
+
var AlreadyInOrganizationException = class _AlreadyInOrganizationException extends OrganizationsServiceException {
|
|
780
|
+
static {
|
|
781
|
+
__name(this, "AlreadyInOrganizationException");
|
|
782
|
+
}
|
|
783
|
+
name = "AlreadyInOrganizationException";
|
|
784
|
+
$fault = "client";
|
|
785
|
+
Message;
|
|
738
786
|
/**
|
|
739
787
|
* @internal
|
|
740
788
|
*/
|
|
@@ -744,14 +792,10 @@ var _AlreadyInOrganizationException = class _AlreadyInOrganizationException exte
|
|
|
744
792
|
$fault: "client",
|
|
745
793
|
...opts
|
|
746
794
|
});
|
|
747
|
-
this.name = "AlreadyInOrganizationException";
|
|
748
|
-
this.$fault = "client";
|
|
749
795
|
Object.setPrototypeOf(this, _AlreadyInOrganizationException.prototype);
|
|
750
796
|
this.Message = opts.Message;
|
|
751
797
|
}
|
|
752
798
|
};
|
|
753
|
-
__name(_AlreadyInOrganizationException, "AlreadyInOrganizationException");
|
|
754
|
-
var AlreadyInOrganizationException = _AlreadyInOrganizationException;
|
|
755
799
|
var ConstraintViolationExceptionReason = {
|
|
756
800
|
ACCOUNT_CANNOT_LEAVE_ORGANIZATION: "ACCOUNT_CANNOT_LEAVE_ORGANIZATION",
|
|
757
801
|
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: "ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA",
|
|
@@ -790,7 +834,14 @@ var ConstraintViolationExceptionReason = {
|
|
|
790
834
|
TAG_POLICY_VIOLATION: "TAG_POLICY_VIOLATION",
|
|
791
835
|
WAIT_PERIOD_ACTIVE: "WAIT_PERIOD_ACTIVE"
|
|
792
836
|
};
|
|
793
|
-
var
|
|
837
|
+
var ConstraintViolationException = class _ConstraintViolationException extends OrganizationsServiceException {
|
|
838
|
+
static {
|
|
839
|
+
__name(this, "ConstraintViolationException");
|
|
840
|
+
}
|
|
841
|
+
name = "ConstraintViolationException";
|
|
842
|
+
$fault = "client";
|
|
843
|
+
Message;
|
|
844
|
+
Reason;
|
|
794
845
|
/**
|
|
795
846
|
* @internal
|
|
796
847
|
*/
|
|
@@ -800,16 +851,18 @@ var _ConstraintViolationException = class _ConstraintViolationException extends
|
|
|
800
851
|
$fault: "client",
|
|
801
852
|
...opts
|
|
802
853
|
});
|
|
803
|
-
this.name = "ConstraintViolationException";
|
|
804
|
-
this.$fault = "client";
|
|
805
854
|
Object.setPrototypeOf(this, _ConstraintViolationException.prototype);
|
|
806
855
|
this.Message = opts.Message;
|
|
807
856
|
this.Reason = opts.Reason;
|
|
808
857
|
}
|
|
809
858
|
};
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
859
|
+
var DuplicatePolicyAttachmentException = class _DuplicatePolicyAttachmentException extends OrganizationsServiceException {
|
|
860
|
+
static {
|
|
861
|
+
__name(this, "DuplicatePolicyAttachmentException");
|
|
862
|
+
}
|
|
863
|
+
name = "DuplicatePolicyAttachmentException";
|
|
864
|
+
$fault = "client";
|
|
865
|
+
Message;
|
|
813
866
|
/**
|
|
814
867
|
* @internal
|
|
815
868
|
*/
|
|
@@ -819,15 +872,17 @@ var _DuplicatePolicyAttachmentException = class _DuplicatePolicyAttachmentExcept
|
|
|
819
872
|
$fault: "client",
|
|
820
873
|
...opts
|
|
821
874
|
});
|
|
822
|
-
this.name = "DuplicatePolicyAttachmentException";
|
|
823
|
-
this.$fault = "client";
|
|
824
875
|
Object.setPrototypeOf(this, _DuplicatePolicyAttachmentException.prototype);
|
|
825
876
|
this.Message = opts.Message;
|
|
826
877
|
}
|
|
827
878
|
};
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
879
|
+
var PolicyChangesInProgressException = class _PolicyChangesInProgressException extends OrganizationsServiceException {
|
|
880
|
+
static {
|
|
881
|
+
__name(this, "PolicyChangesInProgressException");
|
|
882
|
+
}
|
|
883
|
+
name = "PolicyChangesInProgressException";
|
|
884
|
+
$fault = "client";
|
|
885
|
+
Message;
|
|
831
886
|
/**
|
|
832
887
|
* @internal
|
|
833
888
|
*/
|
|
@@ -837,15 +892,17 @@ var _PolicyChangesInProgressException = class _PolicyChangesInProgressException
|
|
|
837
892
|
$fault: "client",
|
|
838
893
|
...opts
|
|
839
894
|
});
|
|
840
|
-
this.name = "PolicyChangesInProgressException";
|
|
841
|
-
this.$fault = "client";
|
|
842
895
|
Object.setPrototypeOf(this, _PolicyChangesInProgressException.prototype);
|
|
843
896
|
this.Message = opts.Message;
|
|
844
897
|
}
|
|
845
898
|
};
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
899
|
+
var PolicyNotFoundException = class _PolicyNotFoundException extends OrganizationsServiceException {
|
|
900
|
+
static {
|
|
901
|
+
__name(this, "PolicyNotFoundException");
|
|
902
|
+
}
|
|
903
|
+
name = "PolicyNotFoundException";
|
|
904
|
+
$fault = "client";
|
|
905
|
+
Message;
|
|
849
906
|
/**
|
|
850
907
|
* @internal
|
|
851
908
|
*/
|
|
@@ -855,15 +912,17 @@ var _PolicyNotFoundException = class _PolicyNotFoundException extends Organizati
|
|
|
855
912
|
$fault: "client",
|
|
856
913
|
...opts
|
|
857
914
|
});
|
|
858
|
-
this.name = "PolicyNotFoundException";
|
|
859
|
-
this.$fault = "client";
|
|
860
915
|
Object.setPrototypeOf(this, _PolicyNotFoundException.prototype);
|
|
861
916
|
this.Message = opts.Message;
|
|
862
917
|
}
|
|
863
918
|
};
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
919
|
+
var PolicyTypeNotEnabledException = class _PolicyTypeNotEnabledException extends OrganizationsServiceException {
|
|
920
|
+
static {
|
|
921
|
+
__name(this, "PolicyTypeNotEnabledException");
|
|
922
|
+
}
|
|
923
|
+
name = "PolicyTypeNotEnabledException";
|
|
924
|
+
$fault = "client";
|
|
925
|
+
Message;
|
|
867
926
|
/**
|
|
868
927
|
* @internal
|
|
869
928
|
*/
|
|
@@ -873,15 +932,17 @@ var _PolicyTypeNotEnabledException = class _PolicyTypeNotEnabledException extend
|
|
|
873
932
|
$fault: "client",
|
|
874
933
|
...opts
|
|
875
934
|
});
|
|
876
|
-
this.name = "PolicyTypeNotEnabledException";
|
|
877
|
-
this.$fault = "client";
|
|
878
935
|
Object.setPrototypeOf(this, _PolicyTypeNotEnabledException.prototype);
|
|
879
936
|
this.Message = opts.Message;
|
|
880
937
|
}
|
|
881
938
|
};
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
939
|
+
var TargetNotFoundException = class _TargetNotFoundException extends OrganizationsServiceException {
|
|
940
|
+
static {
|
|
941
|
+
__name(this, "TargetNotFoundException");
|
|
942
|
+
}
|
|
943
|
+
name = "TargetNotFoundException";
|
|
944
|
+
$fault = "client";
|
|
945
|
+
Message;
|
|
885
946
|
/**
|
|
886
947
|
* @internal
|
|
887
948
|
*/
|
|
@@ -891,15 +952,17 @@ var _TargetNotFoundException = class _TargetNotFoundException extends Organizati
|
|
|
891
952
|
$fault: "client",
|
|
892
953
|
...opts
|
|
893
954
|
});
|
|
894
|
-
this.name = "TargetNotFoundException";
|
|
895
|
-
this.$fault = "client";
|
|
896
955
|
Object.setPrototypeOf(this, _TargetNotFoundException.prototype);
|
|
897
956
|
this.Message = opts.Message;
|
|
898
957
|
}
|
|
899
958
|
};
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
959
|
+
var UnsupportedAPIEndpointException = class _UnsupportedAPIEndpointException extends OrganizationsServiceException {
|
|
960
|
+
static {
|
|
961
|
+
__name(this, "UnsupportedAPIEndpointException");
|
|
962
|
+
}
|
|
963
|
+
name = "UnsupportedAPIEndpointException";
|
|
964
|
+
$fault = "client";
|
|
965
|
+
Message;
|
|
903
966
|
/**
|
|
904
967
|
* @internal
|
|
905
968
|
*/
|
|
@@ -909,15 +972,17 @@ var _UnsupportedAPIEndpointException = class _UnsupportedAPIEndpointException ex
|
|
|
909
972
|
$fault: "client",
|
|
910
973
|
...opts
|
|
911
974
|
});
|
|
912
|
-
this.name = "UnsupportedAPIEndpointException";
|
|
913
|
-
this.$fault = "client";
|
|
914
975
|
Object.setPrototypeOf(this, _UnsupportedAPIEndpointException.prototype);
|
|
915
976
|
this.Message = opts.Message;
|
|
916
977
|
}
|
|
917
978
|
};
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
979
|
+
var ConflictException = class _ConflictException extends OrganizationsServiceException {
|
|
980
|
+
static {
|
|
981
|
+
__name(this, "ConflictException");
|
|
982
|
+
}
|
|
983
|
+
name = "ConflictException";
|
|
984
|
+
$fault = "client";
|
|
985
|
+
Message;
|
|
921
986
|
/**
|
|
922
987
|
* @internal
|
|
923
988
|
*/
|
|
@@ -927,14 +992,10 @@ var _ConflictException = class _ConflictException extends OrganizationsServiceEx
|
|
|
927
992
|
$fault: "client",
|
|
928
993
|
...opts
|
|
929
994
|
});
|
|
930
|
-
this.name = "ConflictException";
|
|
931
|
-
this.$fault = "client";
|
|
932
995
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
933
996
|
this.Message = opts.Message;
|
|
934
997
|
}
|
|
935
998
|
};
|
|
936
|
-
__name(_ConflictException, "ConflictException");
|
|
937
|
-
var ConflictException = _ConflictException;
|
|
938
999
|
var IAMUserAccessToBilling = {
|
|
939
1000
|
ALLOW: "ALLOW",
|
|
940
1001
|
DENY: "DENY"
|
|
@@ -961,7 +1022,13 @@ var CreateAccountState = {
|
|
|
961
1022
|
IN_PROGRESS: "IN_PROGRESS",
|
|
962
1023
|
SUCCEEDED: "SUCCEEDED"
|
|
963
1024
|
};
|
|
964
|
-
var
|
|
1025
|
+
var FinalizingOrganizationException = class _FinalizingOrganizationException extends OrganizationsServiceException {
|
|
1026
|
+
static {
|
|
1027
|
+
__name(this, "FinalizingOrganizationException");
|
|
1028
|
+
}
|
|
1029
|
+
name = "FinalizingOrganizationException";
|
|
1030
|
+
$fault = "client";
|
|
1031
|
+
Message;
|
|
965
1032
|
/**
|
|
966
1033
|
* @internal
|
|
967
1034
|
*/
|
|
@@ -971,14 +1038,10 @@ var _FinalizingOrganizationException = class _FinalizingOrganizationException ex
|
|
|
971
1038
|
$fault: "client",
|
|
972
1039
|
...opts
|
|
973
1040
|
});
|
|
974
|
-
this.name = "FinalizingOrganizationException";
|
|
975
|
-
this.$fault = "client";
|
|
976
1041
|
Object.setPrototypeOf(this, _FinalizingOrganizationException.prototype);
|
|
977
1042
|
this.Message = opts.Message;
|
|
978
1043
|
}
|
|
979
1044
|
};
|
|
980
|
-
__name(_FinalizingOrganizationException, "FinalizingOrganizationException");
|
|
981
|
-
var FinalizingOrganizationException = _FinalizingOrganizationException;
|
|
982
1045
|
var OrganizationFeatureSet = {
|
|
983
1046
|
ALL: "ALL",
|
|
984
1047
|
CONSOLIDATED_BILLING: "CONSOLIDATED_BILLING"
|
|
@@ -997,7 +1060,13 @@ var PolicyType = {
|
|
|
997
1060
|
SERVICE_CONTROL_POLICY: "SERVICE_CONTROL_POLICY",
|
|
998
1061
|
TAG_POLICY: "TAG_POLICY"
|
|
999
1062
|
};
|
|
1000
|
-
var
|
|
1063
|
+
var DuplicateOrganizationalUnitException = class _DuplicateOrganizationalUnitException extends OrganizationsServiceException {
|
|
1064
|
+
static {
|
|
1065
|
+
__name(this, "DuplicateOrganizationalUnitException");
|
|
1066
|
+
}
|
|
1067
|
+
name = "DuplicateOrganizationalUnitException";
|
|
1068
|
+
$fault = "client";
|
|
1069
|
+
Message;
|
|
1001
1070
|
/**
|
|
1002
1071
|
* @internal
|
|
1003
1072
|
*/
|
|
@@ -1007,15 +1076,17 @@ var _DuplicateOrganizationalUnitException = class _DuplicateOrganizationalUnitEx
|
|
|
1007
1076
|
$fault: "client",
|
|
1008
1077
|
...opts
|
|
1009
1078
|
});
|
|
1010
|
-
this.name = "DuplicateOrganizationalUnitException";
|
|
1011
|
-
this.$fault = "client";
|
|
1012
1079
|
Object.setPrototypeOf(this, _DuplicateOrganizationalUnitException.prototype);
|
|
1013
1080
|
this.Message = opts.Message;
|
|
1014
1081
|
}
|
|
1015
1082
|
};
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1083
|
+
var ParentNotFoundException = class _ParentNotFoundException extends OrganizationsServiceException {
|
|
1084
|
+
static {
|
|
1085
|
+
__name(this, "ParentNotFoundException");
|
|
1086
|
+
}
|
|
1087
|
+
name = "ParentNotFoundException";
|
|
1088
|
+
$fault = "client";
|
|
1089
|
+
Message;
|
|
1019
1090
|
/**
|
|
1020
1091
|
* @internal
|
|
1021
1092
|
*/
|
|
@@ -1025,15 +1096,17 @@ var _ParentNotFoundException = class _ParentNotFoundException extends Organizati
|
|
|
1025
1096
|
$fault: "client",
|
|
1026
1097
|
...opts
|
|
1027
1098
|
});
|
|
1028
|
-
this.name = "ParentNotFoundException";
|
|
1029
|
-
this.$fault = "client";
|
|
1030
1099
|
Object.setPrototypeOf(this, _ParentNotFoundException.prototype);
|
|
1031
1100
|
this.Message = opts.Message;
|
|
1032
1101
|
}
|
|
1033
1102
|
};
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1103
|
+
var DuplicatePolicyException = class _DuplicatePolicyException extends OrganizationsServiceException {
|
|
1104
|
+
static {
|
|
1105
|
+
__name(this, "DuplicatePolicyException");
|
|
1106
|
+
}
|
|
1107
|
+
name = "DuplicatePolicyException";
|
|
1108
|
+
$fault = "client";
|
|
1109
|
+
Message;
|
|
1037
1110
|
/**
|
|
1038
1111
|
* @internal
|
|
1039
1112
|
*/
|
|
@@ -1043,15 +1116,17 @@ var _DuplicatePolicyException = class _DuplicatePolicyException extends Organiza
|
|
|
1043
1116
|
$fault: "client",
|
|
1044
1117
|
...opts
|
|
1045
1118
|
});
|
|
1046
|
-
this.name = "DuplicatePolicyException";
|
|
1047
|
-
this.$fault = "client";
|
|
1048
1119
|
Object.setPrototypeOf(this, _DuplicatePolicyException.prototype);
|
|
1049
1120
|
this.Message = opts.Message;
|
|
1050
1121
|
}
|
|
1051
1122
|
};
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1123
|
+
var MalformedPolicyDocumentException = class _MalformedPolicyDocumentException extends OrganizationsServiceException {
|
|
1124
|
+
static {
|
|
1125
|
+
__name(this, "MalformedPolicyDocumentException");
|
|
1126
|
+
}
|
|
1127
|
+
name = "MalformedPolicyDocumentException";
|
|
1128
|
+
$fault = "client";
|
|
1129
|
+
Message;
|
|
1055
1130
|
/**
|
|
1056
1131
|
* @internal
|
|
1057
1132
|
*/
|
|
@@ -1061,15 +1136,17 @@ var _MalformedPolicyDocumentException = class _MalformedPolicyDocumentException
|
|
|
1061
1136
|
$fault: "client",
|
|
1062
1137
|
...opts
|
|
1063
1138
|
});
|
|
1064
|
-
this.name = "MalformedPolicyDocumentException";
|
|
1065
|
-
this.$fault = "client";
|
|
1066
1139
|
Object.setPrototypeOf(this, _MalformedPolicyDocumentException.prototype);
|
|
1067
1140
|
this.Message = opts.Message;
|
|
1068
1141
|
}
|
|
1069
1142
|
};
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1143
|
+
var PolicyTypeNotAvailableForOrganizationException = class _PolicyTypeNotAvailableForOrganizationException extends OrganizationsServiceException {
|
|
1144
|
+
static {
|
|
1145
|
+
__name(this, "PolicyTypeNotAvailableForOrganizationException");
|
|
1146
|
+
}
|
|
1147
|
+
name = "PolicyTypeNotAvailableForOrganizationException";
|
|
1148
|
+
$fault = "client";
|
|
1149
|
+
Message;
|
|
1073
1150
|
/**
|
|
1074
1151
|
* @internal
|
|
1075
1152
|
*/
|
|
@@ -1079,15 +1156,17 @@ var _PolicyTypeNotAvailableForOrganizationException = class _PolicyTypeNotAvaila
|
|
|
1079
1156
|
$fault: "client",
|
|
1080
1157
|
...opts
|
|
1081
1158
|
});
|
|
1082
|
-
this.name = "PolicyTypeNotAvailableForOrganizationException";
|
|
1083
|
-
this.$fault = "client";
|
|
1084
1159
|
Object.setPrototypeOf(this, _PolicyTypeNotAvailableForOrganizationException.prototype);
|
|
1085
1160
|
this.Message = opts.Message;
|
|
1086
1161
|
}
|
|
1087
1162
|
};
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1163
|
+
var OrganizationNotEmptyException = class _OrganizationNotEmptyException extends OrganizationsServiceException {
|
|
1164
|
+
static {
|
|
1165
|
+
__name(this, "OrganizationNotEmptyException");
|
|
1166
|
+
}
|
|
1167
|
+
name = "OrganizationNotEmptyException";
|
|
1168
|
+
$fault = "client";
|
|
1169
|
+
Message;
|
|
1091
1170
|
/**
|
|
1092
1171
|
* @internal
|
|
1093
1172
|
*/
|
|
@@ -1097,15 +1176,17 @@ var _OrganizationNotEmptyException = class _OrganizationNotEmptyException extend
|
|
|
1097
1176
|
$fault: "client",
|
|
1098
1177
|
...opts
|
|
1099
1178
|
});
|
|
1100
|
-
this.name = "OrganizationNotEmptyException";
|
|
1101
|
-
this.$fault = "client";
|
|
1102
1179
|
Object.setPrototypeOf(this, _OrganizationNotEmptyException.prototype);
|
|
1103
1180
|
this.Message = opts.Message;
|
|
1104
1181
|
}
|
|
1105
1182
|
};
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1183
|
+
var OrganizationalUnitNotEmptyException = class _OrganizationalUnitNotEmptyException extends OrganizationsServiceException {
|
|
1184
|
+
static {
|
|
1185
|
+
__name(this, "OrganizationalUnitNotEmptyException");
|
|
1186
|
+
}
|
|
1187
|
+
name = "OrganizationalUnitNotEmptyException";
|
|
1188
|
+
$fault = "client";
|
|
1189
|
+
Message;
|
|
1109
1190
|
/**
|
|
1110
1191
|
* @internal
|
|
1111
1192
|
*/
|
|
@@ -1115,15 +1196,17 @@ var _OrganizationalUnitNotEmptyException = class _OrganizationalUnitNotEmptyExce
|
|
|
1115
1196
|
$fault: "client",
|
|
1116
1197
|
...opts
|
|
1117
1198
|
});
|
|
1118
|
-
this.name = "OrganizationalUnitNotEmptyException";
|
|
1119
|
-
this.$fault = "client";
|
|
1120
1199
|
Object.setPrototypeOf(this, _OrganizationalUnitNotEmptyException.prototype);
|
|
1121
1200
|
this.Message = opts.Message;
|
|
1122
1201
|
}
|
|
1123
1202
|
};
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1203
|
+
var OrganizationalUnitNotFoundException = class _OrganizationalUnitNotFoundException extends OrganizationsServiceException {
|
|
1204
|
+
static {
|
|
1205
|
+
__name(this, "OrganizationalUnitNotFoundException");
|
|
1206
|
+
}
|
|
1207
|
+
name = "OrganizationalUnitNotFoundException";
|
|
1208
|
+
$fault = "client";
|
|
1209
|
+
Message;
|
|
1127
1210
|
/**
|
|
1128
1211
|
* @internal
|
|
1129
1212
|
*/
|
|
@@ -1133,15 +1216,17 @@ var _OrganizationalUnitNotFoundException = class _OrganizationalUnitNotFoundExce
|
|
|
1133
1216
|
$fault: "client",
|
|
1134
1217
|
...opts
|
|
1135
1218
|
});
|
|
1136
|
-
this.name = "OrganizationalUnitNotFoundException";
|
|
1137
|
-
this.$fault = "client";
|
|
1138
1219
|
Object.setPrototypeOf(this, _OrganizationalUnitNotFoundException.prototype);
|
|
1139
1220
|
this.Message = opts.Message;
|
|
1140
1221
|
}
|
|
1141
1222
|
};
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1223
|
+
var PolicyInUseException = class _PolicyInUseException extends OrganizationsServiceException {
|
|
1224
|
+
static {
|
|
1225
|
+
__name(this, "PolicyInUseException");
|
|
1226
|
+
}
|
|
1227
|
+
name = "PolicyInUseException";
|
|
1228
|
+
$fault = "client";
|
|
1229
|
+
Message;
|
|
1145
1230
|
/**
|
|
1146
1231
|
* @internal
|
|
1147
1232
|
*/
|
|
@@ -1151,15 +1236,17 @@ var _PolicyInUseException = class _PolicyInUseException extends OrganizationsSer
|
|
|
1151
1236
|
$fault: "client",
|
|
1152
1237
|
...opts
|
|
1153
1238
|
});
|
|
1154
|
-
this.name = "PolicyInUseException";
|
|
1155
|
-
this.$fault = "client";
|
|
1156
1239
|
Object.setPrototypeOf(this, _PolicyInUseException.prototype);
|
|
1157
1240
|
this.Message = opts.Message;
|
|
1158
1241
|
}
|
|
1159
1242
|
};
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1243
|
+
var ResourcePolicyNotFoundException = class _ResourcePolicyNotFoundException extends OrganizationsServiceException {
|
|
1244
|
+
static {
|
|
1245
|
+
__name(this, "ResourcePolicyNotFoundException");
|
|
1246
|
+
}
|
|
1247
|
+
name = "ResourcePolicyNotFoundException";
|
|
1248
|
+
$fault = "client";
|
|
1249
|
+
Message;
|
|
1163
1250
|
/**
|
|
1164
1251
|
* @internal
|
|
1165
1252
|
*/
|
|
@@ -1169,15 +1256,17 @@ var _ResourcePolicyNotFoundException = class _ResourcePolicyNotFoundException ex
|
|
|
1169
1256
|
$fault: "client",
|
|
1170
1257
|
...opts
|
|
1171
1258
|
});
|
|
1172
|
-
this.name = "ResourcePolicyNotFoundException";
|
|
1173
|
-
this.$fault = "client";
|
|
1174
1259
|
Object.setPrototypeOf(this, _ResourcePolicyNotFoundException.prototype);
|
|
1175
1260
|
this.Message = opts.Message;
|
|
1176
1261
|
}
|
|
1177
1262
|
};
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1263
|
+
var CreateAccountStatusNotFoundException = class _CreateAccountStatusNotFoundException extends OrganizationsServiceException {
|
|
1264
|
+
static {
|
|
1265
|
+
__name(this, "CreateAccountStatusNotFoundException");
|
|
1266
|
+
}
|
|
1267
|
+
name = "CreateAccountStatusNotFoundException";
|
|
1268
|
+
$fault = "client";
|
|
1269
|
+
Message;
|
|
1181
1270
|
/**
|
|
1182
1271
|
* @internal
|
|
1183
1272
|
*/
|
|
@@ -1187,14 +1276,10 @@ var _CreateAccountStatusNotFoundException = class _CreateAccountStatusNotFoundEx
|
|
|
1187
1276
|
$fault: "client",
|
|
1188
1277
|
...opts
|
|
1189
1278
|
});
|
|
1190
|
-
this.name = "CreateAccountStatusNotFoundException";
|
|
1191
|
-
this.$fault = "client";
|
|
1192
1279
|
Object.setPrototypeOf(this, _CreateAccountStatusNotFoundException.prototype);
|
|
1193
1280
|
this.Message = opts.Message;
|
|
1194
1281
|
}
|
|
1195
1282
|
};
|
|
1196
|
-
__name(_CreateAccountStatusNotFoundException, "CreateAccountStatusNotFoundException");
|
|
1197
|
-
var CreateAccountStatusNotFoundException = _CreateAccountStatusNotFoundException;
|
|
1198
1283
|
var EffectivePolicyType = {
|
|
1199
1284
|
AISERVICES_OPT_OUT_POLICY: "AISERVICES_OPT_OUT_POLICY",
|
|
1200
1285
|
BACKUP_POLICY: "BACKUP_POLICY",
|
|
@@ -1202,7 +1287,13 @@ var EffectivePolicyType = {
|
|
|
1202
1287
|
DECLARATIVE_POLICY_EC2: "DECLARATIVE_POLICY_EC2",
|
|
1203
1288
|
TAG_POLICY: "TAG_POLICY"
|
|
1204
1289
|
};
|
|
1205
|
-
var
|
|
1290
|
+
var EffectivePolicyNotFoundException = class _EffectivePolicyNotFoundException extends OrganizationsServiceException {
|
|
1291
|
+
static {
|
|
1292
|
+
__name(this, "EffectivePolicyNotFoundException");
|
|
1293
|
+
}
|
|
1294
|
+
name = "EffectivePolicyNotFoundException";
|
|
1295
|
+
$fault = "client";
|
|
1296
|
+
Message;
|
|
1206
1297
|
/**
|
|
1207
1298
|
* @internal
|
|
1208
1299
|
*/
|
|
@@ -1212,15 +1303,17 @@ var _EffectivePolicyNotFoundException = class _EffectivePolicyNotFoundException
|
|
|
1212
1303
|
$fault: "client",
|
|
1213
1304
|
...opts
|
|
1214
1305
|
});
|
|
1215
|
-
this.name = "EffectivePolicyNotFoundException";
|
|
1216
|
-
this.$fault = "client";
|
|
1217
1306
|
Object.setPrototypeOf(this, _EffectivePolicyNotFoundException.prototype);
|
|
1218
1307
|
this.Message = opts.Message;
|
|
1219
1308
|
}
|
|
1220
1309
|
};
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1310
|
+
var PolicyNotAttachedException = class _PolicyNotAttachedException extends OrganizationsServiceException {
|
|
1311
|
+
static {
|
|
1312
|
+
__name(this, "PolicyNotAttachedException");
|
|
1313
|
+
}
|
|
1314
|
+
name = "PolicyNotAttachedException";
|
|
1315
|
+
$fault = "client";
|
|
1316
|
+
Message;
|
|
1224
1317
|
/**
|
|
1225
1318
|
* @internal
|
|
1226
1319
|
*/
|
|
@@ -1230,15 +1323,17 @@ var _PolicyNotAttachedException = class _PolicyNotAttachedException extends Orga
|
|
|
1230
1323
|
$fault: "client",
|
|
1231
1324
|
...opts
|
|
1232
1325
|
});
|
|
1233
|
-
this.name = "PolicyNotAttachedException";
|
|
1234
|
-
this.$fault = "client";
|
|
1235
1326
|
Object.setPrototypeOf(this, _PolicyNotAttachedException.prototype);
|
|
1236
1327
|
this.Message = opts.Message;
|
|
1237
1328
|
}
|
|
1238
1329
|
};
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1330
|
+
var RootNotFoundException = class _RootNotFoundException extends OrganizationsServiceException {
|
|
1331
|
+
static {
|
|
1332
|
+
__name(this, "RootNotFoundException");
|
|
1333
|
+
}
|
|
1334
|
+
name = "RootNotFoundException";
|
|
1335
|
+
$fault = "client";
|
|
1336
|
+
Message;
|
|
1242
1337
|
/**
|
|
1243
1338
|
* @internal
|
|
1244
1339
|
*/
|
|
@@ -1248,15 +1343,17 @@ var _RootNotFoundException = class _RootNotFoundException extends OrganizationsS
|
|
|
1248
1343
|
$fault: "client",
|
|
1249
1344
|
...opts
|
|
1250
1345
|
});
|
|
1251
|
-
this.name = "RootNotFoundException";
|
|
1252
|
-
this.$fault = "client";
|
|
1253
1346
|
Object.setPrototypeOf(this, _RootNotFoundException.prototype);
|
|
1254
1347
|
this.Message = opts.Message;
|
|
1255
1348
|
}
|
|
1256
1349
|
};
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1350
|
+
var PolicyTypeAlreadyEnabledException = class _PolicyTypeAlreadyEnabledException extends OrganizationsServiceException {
|
|
1351
|
+
static {
|
|
1352
|
+
__name(this, "PolicyTypeAlreadyEnabledException");
|
|
1353
|
+
}
|
|
1354
|
+
name = "PolicyTypeAlreadyEnabledException";
|
|
1355
|
+
$fault = "client";
|
|
1356
|
+
Message;
|
|
1260
1357
|
/**
|
|
1261
1358
|
* @internal
|
|
1262
1359
|
*/
|
|
@@ -1266,15 +1363,17 @@ var _PolicyTypeAlreadyEnabledException = class _PolicyTypeAlreadyEnabledExceptio
|
|
|
1266
1363
|
$fault: "client",
|
|
1267
1364
|
...opts
|
|
1268
1365
|
});
|
|
1269
|
-
this.name = "PolicyTypeAlreadyEnabledException";
|
|
1270
|
-
this.$fault = "client";
|
|
1271
1366
|
Object.setPrototypeOf(this, _PolicyTypeAlreadyEnabledException.prototype);
|
|
1272
1367
|
this.Message = opts.Message;
|
|
1273
1368
|
}
|
|
1274
1369
|
};
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1370
|
+
var DuplicateHandshakeException = class _DuplicateHandshakeException extends OrganizationsServiceException {
|
|
1371
|
+
static {
|
|
1372
|
+
__name(this, "DuplicateHandshakeException");
|
|
1373
|
+
}
|
|
1374
|
+
name = "DuplicateHandshakeException";
|
|
1375
|
+
$fault = "client";
|
|
1376
|
+
Message;
|
|
1278
1377
|
/**
|
|
1279
1378
|
* @internal
|
|
1280
1379
|
*/
|
|
@@ -1284,15 +1383,17 @@ var _DuplicateHandshakeException = class _DuplicateHandshakeException extends Or
|
|
|
1284
1383
|
$fault: "client",
|
|
1285
1384
|
...opts
|
|
1286
1385
|
});
|
|
1287
|
-
this.name = "DuplicateHandshakeException";
|
|
1288
|
-
this.$fault = "client";
|
|
1289
1386
|
Object.setPrototypeOf(this, _DuplicateHandshakeException.prototype);
|
|
1290
1387
|
this.Message = opts.Message;
|
|
1291
1388
|
}
|
|
1292
1389
|
};
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1390
|
+
var MasterCannotLeaveOrganizationException = class _MasterCannotLeaveOrganizationException extends OrganizationsServiceException {
|
|
1391
|
+
static {
|
|
1392
|
+
__name(this, "MasterCannotLeaveOrganizationException");
|
|
1393
|
+
}
|
|
1394
|
+
name = "MasterCannotLeaveOrganizationException";
|
|
1395
|
+
$fault = "client";
|
|
1396
|
+
Message;
|
|
1296
1397
|
/**
|
|
1297
1398
|
* @internal
|
|
1298
1399
|
*/
|
|
@@ -1302,19 +1403,21 @@ var _MasterCannotLeaveOrganizationException = class _MasterCannotLeaveOrganizati
|
|
|
1302
1403
|
$fault: "client",
|
|
1303
1404
|
...opts
|
|
1304
1405
|
});
|
|
1305
|
-
this.name = "MasterCannotLeaveOrganizationException";
|
|
1306
|
-
this.$fault = "client";
|
|
1307
1406
|
Object.setPrototypeOf(this, _MasterCannotLeaveOrganizationException.prototype);
|
|
1308
1407
|
this.Message = opts.Message;
|
|
1309
1408
|
}
|
|
1310
1409
|
};
|
|
1311
|
-
__name(_MasterCannotLeaveOrganizationException, "MasterCannotLeaveOrganizationException");
|
|
1312
|
-
var MasterCannotLeaveOrganizationException = _MasterCannotLeaveOrganizationException;
|
|
1313
1410
|
var ChildType = {
|
|
1314
1411
|
ACCOUNT: "ACCOUNT",
|
|
1315
1412
|
ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT"
|
|
1316
1413
|
};
|
|
1317
|
-
var
|
|
1414
|
+
var ChildNotFoundException = class _ChildNotFoundException extends OrganizationsServiceException {
|
|
1415
|
+
static {
|
|
1416
|
+
__name(this, "ChildNotFoundException");
|
|
1417
|
+
}
|
|
1418
|
+
name = "ChildNotFoundException";
|
|
1419
|
+
$fault = "client";
|
|
1420
|
+
Message;
|
|
1318
1421
|
/**
|
|
1319
1422
|
* @internal
|
|
1320
1423
|
*/
|
|
@@ -1324,14 +1427,10 @@ var _ChildNotFoundException = class _ChildNotFoundException extends Organization
|
|
|
1324
1427
|
$fault: "client",
|
|
1325
1428
|
...opts
|
|
1326
1429
|
});
|
|
1327
|
-
this.name = "ChildNotFoundException";
|
|
1328
|
-
this.$fault = "client";
|
|
1329
1430
|
Object.setPrototypeOf(this, _ChildNotFoundException.prototype);
|
|
1330
1431
|
this.Message = opts.Message;
|
|
1331
1432
|
}
|
|
1332
1433
|
};
|
|
1333
|
-
__name(_ChildNotFoundException, "ChildNotFoundException");
|
|
1334
|
-
var ChildNotFoundException = _ChildNotFoundException;
|
|
1335
1434
|
var ParentType = {
|
|
1336
1435
|
ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT",
|
|
1337
1436
|
ROOT: "ROOT"
|
|
@@ -1341,7 +1440,13 @@ var TargetType = {
|
|
|
1341
1440
|
ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT",
|
|
1342
1441
|
ROOT: "ROOT"
|
|
1343
1442
|
};
|
|
1344
|
-
var
|
|
1443
|
+
var DestinationParentNotFoundException = class _DestinationParentNotFoundException extends OrganizationsServiceException {
|
|
1444
|
+
static {
|
|
1445
|
+
__name(this, "DestinationParentNotFoundException");
|
|
1446
|
+
}
|
|
1447
|
+
name = "DestinationParentNotFoundException";
|
|
1448
|
+
$fault = "client";
|
|
1449
|
+
Message;
|
|
1345
1450
|
/**
|
|
1346
1451
|
* @internal
|
|
1347
1452
|
*/
|
|
@@ -1351,15 +1456,17 @@ var _DestinationParentNotFoundException = class _DestinationParentNotFoundExcept
|
|
|
1351
1456
|
$fault: "client",
|
|
1352
1457
|
...opts
|
|
1353
1458
|
});
|
|
1354
|
-
this.name = "DestinationParentNotFoundException";
|
|
1355
|
-
this.$fault = "client";
|
|
1356
1459
|
Object.setPrototypeOf(this, _DestinationParentNotFoundException.prototype);
|
|
1357
1460
|
this.Message = opts.Message;
|
|
1358
1461
|
}
|
|
1359
1462
|
};
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1463
|
+
var DuplicateAccountException = class _DuplicateAccountException extends OrganizationsServiceException {
|
|
1464
|
+
static {
|
|
1465
|
+
__name(this, "DuplicateAccountException");
|
|
1466
|
+
}
|
|
1467
|
+
name = "DuplicateAccountException";
|
|
1468
|
+
$fault = "client";
|
|
1469
|
+
Message;
|
|
1363
1470
|
/**
|
|
1364
1471
|
* @internal
|
|
1365
1472
|
*/
|
|
@@ -1369,15 +1476,17 @@ var _DuplicateAccountException = class _DuplicateAccountException extends Organi
|
|
|
1369
1476
|
$fault: "client",
|
|
1370
1477
|
...opts
|
|
1371
1478
|
});
|
|
1372
|
-
this.name = "DuplicateAccountException";
|
|
1373
|
-
this.$fault = "client";
|
|
1374
1479
|
Object.setPrototypeOf(this, _DuplicateAccountException.prototype);
|
|
1375
1480
|
this.Message = opts.Message;
|
|
1376
1481
|
}
|
|
1377
1482
|
};
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1483
|
+
var SourceParentNotFoundException = class _SourceParentNotFoundException extends OrganizationsServiceException {
|
|
1484
|
+
static {
|
|
1485
|
+
__name(this, "SourceParentNotFoundException");
|
|
1486
|
+
}
|
|
1487
|
+
name = "SourceParentNotFoundException";
|
|
1488
|
+
$fault = "client";
|
|
1489
|
+
Message;
|
|
1381
1490
|
/**
|
|
1382
1491
|
* @internal
|
|
1383
1492
|
*/
|
|
@@ -1387,14 +1496,10 @@ var _SourceParentNotFoundException = class _SourceParentNotFoundException extend
|
|
|
1387
1496
|
$fault: "client",
|
|
1388
1497
|
...opts
|
|
1389
1498
|
});
|
|
1390
|
-
this.name = "SourceParentNotFoundException";
|
|
1391
|
-
this.$fault = "client";
|
|
1392
1499
|
Object.setPrototypeOf(this, _SourceParentNotFoundException.prototype);
|
|
1393
1500
|
this.Message = opts.Message;
|
|
1394
1501
|
}
|
|
1395
1502
|
};
|
|
1396
|
-
__name(_SourceParentNotFoundException, "SourceParentNotFoundException");
|
|
1397
|
-
var SourceParentNotFoundException = _SourceParentNotFoundException;
|
|
1398
1503
|
var HandshakePartyFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1399
1504
|
...obj,
|
|
1400
1505
|
...obj.Id && { Id: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -3352,771 +3457,826 @@ function sharedHeaders(operation) {
|
|
|
3352
3457
|
__name(sharedHeaders, "sharedHeaders");
|
|
3353
3458
|
|
|
3354
3459
|
// src/commands/AcceptHandshakeCommand.ts
|
|
3355
|
-
var
|
|
3460
|
+
var AcceptHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3356
3461
|
return [
|
|
3357
3462
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3358
3463
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3359
3464
|
];
|
|
3360
3465
|
}).s("AWSOrganizationsV20161128", "AcceptHandshake", {}).n("OrganizationsClient", "AcceptHandshakeCommand").f(void 0, AcceptHandshakeResponseFilterSensitiveLog).ser(se_AcceptHandshakeCommand).de(de_AcceptHandshakeCommand).build() {
|
|
3466
|
+
static {
|
|
3467
|
+
__name(this, "AcceptHandshakeCommand");
|
|
3468
|
+
}
|
|
3361
3469
|
};
|
|
3362
|
-
__name(_AcceptHandshakeCommand, "AcceptHandshakeCommand");
|
|
3363
|
-
var AcceptHandshakeCommand = _AcceptHandshakeCommand;
|
|
3364
3470
|
|
|
3365
3471
|
// src/commands/AttachPolicyCommand.ts
|
|
3366
3472
|
|
|
3367
3473
|
|
|
3368
3474
|
|
|
3369
|
-
var
|
|
3475
|
+
var AttachPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3370
3476
|
return [
|
|
3371
3477
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3372
3478
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3373
3479
|
];
|
|
3374
3480
|
}).s("AWSOrganizationsV20161128", "AttachPolicy", {}).n("OrganizationsClient", "AttachPolicyCommand").f(void 0, void 0).ser(se_AttachPolicyCommand).de(de_AttachPolicyCommand).build() {
|
|
3481
|
+
static {
|
|
3482
|
+
__name(this, "AttachPolicyCommand");
|
|
3483
|
+
}
|
|
3375
3484
|
};
|
|
3376
|
-
__name(_AttachPolicyCommand, "AttachPolicyCommand");
|
|
3377
|
-
var AttachPolicyCommand = _AttachPolicyCommand;
|
|
3378
3485
|
|
|
3379
3486
|
// src/commands/CancelHandshakeCommand.ts
|
|
3380
3487
|
|
|
3381
3488
|
|
|
3382
3489
|
|
|
3383
|
-
var
|
|
3490
|
+
var CancelHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3384
3491
|
return [
|
|
3385
3492
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3386
3493
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3387
3494
|
];
|
|
3388
3495
|
}).s("AWSOrganizationsV20161128", "CancelHandshake", {}).n("OrganizationsClient", "CancelHandshakeCommand").f(void 0, CancelHandshakeResponseFilterSensitiveLog).ser(se_CancelHandshakeCommand).de(de_CancelHandshakeCommand).build() {
|
|
3496
|
+
static {
|
|
3497
|
+
__name(this, "CancelHandshakeCommand");
|
|
3498
|
+
}
|
|
3389
3499
|
};
|
|
3390
|
-
__name(_CancelHandshakeCommand, "CancelHandshakeCommand");
|
|
3391
|
-
var CancelHandshakeCommand = _CancelHandshakeCommand;
|
|
3392
3500
|
|
|
3393
3501
|
// src/commands/CloseAccountCommand.ts
|
|
3394
3502
|
|
|
3395
3503
|
|
|
3396
3504
|
|
|
3397
|
-
var
|
|
3505
|
+
var CloseAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3398
3506
|
return [
|
|
3399
3507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3400
3508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3401
3509
|
];
|
|
3402
3510
|
}).s("AWSOrganizationsV20161128", "CloseAccount", {}).n("OrganizationsClient", "CloseAccountCommand").f(void 0, void 0).ser(se_CloseAccountCommand).de(de_CloseAccountCommand).build() {
|
|
3511
|
+
static {
|
|
3512
|
+
__name(this, "CloseAccountCommand");
|
|
3513
|
+
}
|
|
3403
3514
|
};
|
|
3404
|
-
__name(_CloseAccountCommand, "CloseAccountCommand");
|
|
3405
|
-
var CloseAccountCommand = _CloseAccountCommand;
|
|
3406
3515
|
|
|
3407
3516
|
// src/commands/CreateAccountCommand.ts
|
|
3408
3517
|
|
|
3409
3518
|
|
|
3410
3519
|
|
|
3411
|
-
var
|
|
3520
|
+
var CreateAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3412
3521
|
return [
|
|
3413
3522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3414
3523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3415
3524
|
];
|
|
3416
3525
|
}).s("AWSOrganizationsV20161128", "CreateAccount", {}).n("OrganizationsClient", "CreateAccountCommand").f(CreateAccountRequestFilterSensitiveLog, CreateAccountResponseFilterSensitiveLog).ser(se_CreateAccountCommand).de(de_CreateAccountCommand).build() {
|
|
3526
|
+
static {
|
|
3527
|
+
__name(this, "CreateAccountCommand");
|
|
3528
|
+
}
|
|
3417
3529
|
};
|
|
3418
|
-
__name(_CreateAccountCommand, "CreateAccountCommand");
|
|
3419
|
-
var CreateAccountCommand = _CreateAccountCommand;
|
|
3420
3530
|
|
|
3421
3531
|
// src/commands/CreateGovCloudAccountCommand.ts
|
|
3422
3532
|
|
|
3423
3533
|
|
|
3424
3534
|
|
|
3425
|
-
var
|
|
3535
|
+
var CreateGovCloudAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3426
3536
|
return [
|
|
3427
3537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3428
3538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3429
3539
|
];
|
|
3430
3540
|
}).s("AWSOrganizationsV20161128", "CreateGovCloudAccount", {}).n("OrganizationsClient", "CreateGovCloudAccountCommand").f(CreateGovCloudAccountRequestFilterSensitiveLog, CreateGovCloudAccountResponseFilterSensitiveLog).ser(se_CreateGovCloudAccountCommand).de(de_CreateGovCloudAccountCommand).build() {
|
|
3541
|
+
static {
|
|
3542
|
+
__name(this, "CreateGovCloudAccountCommand");
|
|
3543
|
+
}
|
|
3431
3544
|
};
|
|
3432
|
-
__name(_CreateGovCloudAccountCommand, "CreateGovCloudAccountCommand");
|
|
3433
|
-
var CreateGovCloudAccountCommand = _CreateGovCloudAccountCommand;
|
|
3434
3545
|
|
|
3435
3546
|
// src/commands/CreateOrganizationalUnitCommand.ts
|
|
3436
3547
|
|
|
3437
3548
|
|
|
3438
3549
|
|
|
3439
|
-
var
|
|
3550
|
+
var CreateOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3440
3551
|
return [
|
|
3441
3552
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3442
3553
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3443
3554
|
];
|
|
3444
3555
|
}).s("AWSOrganizationsV20161128", "CreateOrganizationalUnit", {}).n("OrganizationsClient", "CreateOrganizationalUnitCommand").f(void 0, void 0).ser(se_CreateOrganizationalUnitCommand).de(de_CreateOrganizationalUnitCommand).build() {
|
|
3556
|
+
static {
|
|
3557
|
+
__name(this, "CreateOrganizationalUnitCommand");
|
|
3558
|
+
}
|
|
3445
3559
|
};
|
|
3446
|
-
__name(_CreateOrganizationalUnitCommand, "CreateOrganizationalUnitCommand");
|
|
3447
|
-
var CreateOrganizationalUnitCommand = _CreateOrganizationalUnitCommand;
|
|
3448
3560
|
|
|
3449
3561
|
// src/commands/CreateOrganizationCommand.ts
|
|
3450
3562
|
|
|
3451
3563
|
|
|
3452
3564
|
|
|
3453
|
-
var
|
|
3565
|
+
var CreateOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3454
3566
|
return [
|
|
3455
3567
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3456
3568
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3457
3569
|
];
|
|
3458
3570
|
}).s("AWSOrganizationsV20161128", "CreateOrganization", {}).n("OrganizationsClient", "CreateOrganizationCommand").f(void 0, CreateOrganizationResponseFilterSensitiveLog).ser(se_CreateOrganizationCommand).de(de_CreateOrganizationCommand).build() {
|
|
3571
|
+
static {
|
|
3572
|
+
__name(this, "CreateOrganizationCommand");
|
|
3573
|
+
}
|
|
3459
3574
|
};
|
|
3460
|
-
__name(_CreateOrganizationCommand, "CreateOrganizationCommand");
|
|
3461
|
-
var CreateOrganizationCommand = _CreateOrganizationCommand;
|
|
3462
3575
|
|
|
3463
3576
|
// src/commands/CreatePolicyCommand.ts
|
|
3464
3577
|
|
|
3465
3578
|
|
|
3466
3579
|
|
|
3467
|
-
var
|
|
3580
|
+
var CreatePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3468
3581
|
return [
|
|
3469
3582
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3470
3583
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3471
3584
|
];
|
|
3472
3585
|
}).s("AWSOrganizationsV20161128", "CreatePolicy", {}).n("OrganizationsClient", "CreatePolicyCommand").f(void 0, void 0).ser(se_CreatePolicyCommand).de(de_CreatePolicyCommand).build() {
|
|
3586
|
+
static {
|
|
3587
|
+
__name(this, "CreatePolicyCommand");
|
|
3588
|
+
}
|
|
3473
3589
|
};
|
|
3474
|
-
__name(_CreatePolicyCommand, "CreatePolicyCommand");
|
|
3475
|
-
var CreatePolicyCommand = _CreatePolicyCommand;
|
|
3476
3590
|
|
|
3477
3591
|
// src/commands/DeclineHandshakeCommand.ts
|
|
3478
3592
|
|
|
3479
3593
|
|
|
3480
3594
|
|
|
3481
|
-
var
|
|
3595
|
+
var DeclineHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3482
3596
|
return [
|
|
3483
3597
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3484
3598
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3485
3599
|
];
|
|
3486
3600
|
}).s("AWSOrganizationsV20161128", "DeclineHandshake", {}).n("OrganizationsClient", "DeclineHandshakeCommand").f(void 0, DeclineHandshakeResponseFilterSensitiveLog).ser(se_DeclineHandshakeCommand).de(de_DeclineHandshakeCommand).build() {
|
|
3601
|
+
static {
|
|
3602
|
+
__name(this, "DeclineHandshakeCommand");
|
|
3603
|
+
}
|
|
3487
3604
|
};
|
|
3488
|
-
__name(_DeclineHandshakeCommand, "DeclineHandshakeCommand");
|
|
3489
|
-
var DeclineHandshakeCommand = _DeclineHandshakeCommand;
|
|
3490
3605
|
|
|
3491
3606
|
// src/commands/DeleteOrganizationalUnitCommand.ts
|
|
3492
3607
|
|
|
3493
3608
|
|
|
3494
3609
|
|
|
3495
|
-
var
|
|
3610
|
+
var DeleteOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3496
3611
|
return [
|
|
3497
3612
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3498
3613
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3499
3614
|
];
|
|
3500
3615
|
}).s("AWSOrganizationsV20161128", "DeleteOrganizationalUnit", {}).n("OrganizationsClient", "DeleteOrganizationalUnitCommand").f(void 0, void 0).ser(se_DeleteOrganizationalUnitCommand).de(de_DeleteOrganizationalUnitCommand).build() {
|
|
3616
|
+
static {
|
|
3617
|
+
__name(this, "DeleteOrganizationalUnitCommand");
|
|
3618
|
+
}
|
|
3501
3619
|
};
|
|
3502
|
-
__name(_DeleteOrganizationalUnitCommand, "DeleteOrganizationalUnitCommand");
|
|
3503
|
-
var DeleteOrganizationalUnitCommand = _DeleteOrganizationalUnitCommand;
|
|
3504
3620
|
|
|
3505
3621
|
// src/commands/DeleteOrganizationCommand.ts
|
|
3506
3622
|
|
|
3507
3623
|
|
|
3508
3624
|
|
|
3509
|
-
var
|
|
3625
|
+
var DeleteOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3510
3626
|
return [
|
|
3511
3627
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3512
3628
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3513
3629
|
];
|
|
3514
3630
|
}).s("AWSOrganizationsV20161128", "DeleteOrganization", {}).n("OrganizationsClient", "DeleteOrganizationCommand").f(void 0, void 0).ser(se_DeleteOrganizationCommand).de(de_DeleteOrganizationCommand).build() {
|
|
3631
|
+
static {
|
|
3632
|
+
__name(this, "DeleteOrganizationCommand");
|
|
3633
|
+
}
|
|
3515
3634
|
};
|
|
3516
|
-
__name(_DeleteOrganizationCommand, "DeleteOrganizationCommand");
|
|
3517
|
-
var DeleteOrganizationCommand = _DeleteOrganizationCommand;
|
|
3518
3635
|
|
|
3519
3636
|
// src/commands/DeletePolicyCommand.ts
|
|
3520
3637
|
|
|
3521
3638
|
|
|
3522
3639
|
|
|
3523
|
-
var
|
|
3640
|
+
var DeletePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3524
3641
|
return [
|
|
3525
3642
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3526
3643
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3527
3644
|
];
|
|
3528
3645
|
}).s("AWSOrganizationsV20161128", "DeletePolicy", {}).n("OrganizationsClient", "DeletePolicyCommand").f(void 0, void 0).ser(se_DeletePolicyCommand).de(de_DeletePolicyCommand).build() {
|
|
3646
|
+
static {
|
|
3647
|
+
__name(this, "DeletePolicyCommand");
|
|
3648
|
+
}
|
|
3529
3649
|
};
|
|
3530
|
-
__name(_DeletePolicyCommand, "DeletePolicyCommand");
|
|
3531
|
-
var DeletePolicyCommand = _DeletePolicyCommand;
|
|
3532
3650
|
|
|
3533
3651
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
3534
3652
|
|
|
3535
3653
|
|
|
3536
3654
|
|
|
3537
|
-
var
|
|
3655
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3538
3656
|
return [
|
|
3539
3657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3540
3658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3541
3659
|
];
|
|
3542
3660
|
}).s("AWSOrganizationsV20161128", "DeleteResourcePolicy", {}).n("OrganizationsClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
3661
|
+
static {
|
|
3662
|
+
__name(this, "DeleteResourcePolicyCommand");
|
|
3663
|
+
}
|
|
3543
3664
|
};
|
|
3544
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
3545
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
3546
3665
|
|
|
3547
3666
|
// src/commands/DeregisterDelegatedAdministratorCommand.ts
|
|
3548
3667
|
|
|
3549
3668
|
|
|
3550
3669
|
|
|
3551
|
-
var
|
|
3670
|
+
var DeregisterDelegatedAdministratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3552
3671
|
return [
|
|
3553
3672
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3554
3673
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3555
3674
|
];
|
|
3556
3675
|
}).s("AWSOrganizationsV20161128", "DeregisterDelegatedAdministrator", {}).n("OrganizationsClient", "DeregisterDelegatedAdministratorCommand").f(void 0, void 0).ser(se_DeregisterDelegatedAdministratorCommand).de(de_DeregisterDelegatedAdministratorCommand).build() {
|
|
3676
|
+
static {
|
|
3677
|
+
__name(this, "DeregisterDelegatedAdministratorCommand");
|
|
3678
|
+
}
|
|
3557
3679
|
};
|
|
3558
|
-
__name(_DeregisterDelegatedAdministratorCommand, "DeregisterDelegatedAdministratorCommand");
|
|
3559
|
-
var DeregisterDelegatedAdministratorCommand = _DeregisterDelegatedAdministratorCommand;
|
|
3560
3680
|
|
|
3561
3681
|
// src/commands/DescribeAccountCommand.ts
|
|
3562
3682
|
|
|
3563
3683
|
|
|
3564
3684
|
|
|
3565
|
-
var
|
|
3685
|
+
var DescribeAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3566
3686
|
return [
|
|
3567
3687
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3568
3688
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3569
3689
|
];
|
|
3570
3690
|
}).s("AWSOrganizationsV20161128", "DescribeAccount", {}).n("OrganizationsClient", "DescribeAccountCommand").f(void 0, DescribeAccountResponseFilterSensitiveLog).ser(se_DescribeAccountCommand).de(de_DescribeAccountCommand).build() {
|
|
3691
|
+
static {
|
|
3692
|
+
__name(this, "DescribeAccountCommand");
|
|
3693
|
+
}
|
|
3571
3694
|
};
|
|
3572
|
-
__name(_DescribeAccountCommand, "DescribeAccountCommand");
|
|
3573
|
-
var DescribeAccountCommand = _DescribeAccountCommand;
|
|
3574
3695
|
|
|
3575
3696
|
// src/commands/DescribeCreateAccountStatusCommand.ts
|
|
3576
3697
|
|
|
3577
3698
|
|
|
3578
3699
|
|
|
3579
|
-
var
|
|
3700
|
+
var DescribeCreateAccountStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3580
3701
|
return [
|
|
3581
3702
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3582
3703
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3583
3704
|
];
|
|
3584
3705
|
}).s("AWSOrganizationsV20161128", "DescribeCreateAccountStatus", {}).n("OrganizationsClient", "DescribeCreateAccountStatusCommand").f(void 0, DescribeCreateAccountStatusResponseFilterSensitiveLog).ser(se_DescribeCreateAccountStatusCommand).de(de_DescribeCreateAccountStatusCommand).build() {
|
|
3706
|
+
static {
|
|
3707
|
+
__name(this, "DescribeCreateAccountStatusCommand");
|
|
3708
|
+
}
|
|
3585
3709
|
};
|
|
3586
|
-
__name(_DescribeCreateAccountStatusCommand, "DescribeCreateAccountStatusCommand");
|
|
3587
|
-
var DescribeCreateAccountStatusCommand = _DescribeCreateAccountStatusCommand;
|
|
3588
3710
|
|
|
3589
3711
|
// src/commands/DescribeEffectivePolicyCommand.ts
|
|
3590
3712
|
|
|
3591
3713
|
|
|
3592
3714
|
|
|
3593
|
-
var
|
|
3715
|
+
var DescribeEffectivePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3594
3716
|
return [
|
|
3595
3717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3596
3718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3597
3719
|
];
|
|
3598
3720
|
}).s("AWSOrganizationsV20161128", "DescribeEffectivePolicy", {}).n("OrganizationsClient", "DescribeEffectivePolicyCommand").f(void 0, void 0).ser(se_DescribeEffectivePolicyCommand).de(de_DescribeEffectivePolicyCommand).build() {
|
|
3721
|
+
static {
|
|
3722
|
+
__name(this, "DescribeEffectivePolicyCommand");
|
|
3723
|
+
}
|
|
3599
3724
|
};
|
|
3600
|
-
__name(_DescribeEffectivePolicyCommand, "DescribeEffectivePolicyCommand");
|
|
3601
|
-
var DescribeEffectivePolicyCommand = _DescribeEffectivePolicyCommand;
|
|
3602
3725
|
|
|
3603
3726
|
// src/commands/DescribeHandshakeCommand.ts
|
|
3604
3727
|
|
|
3605
3728
|
|
|
3606
3729
|
|
|
3607
|
-
var
|
|
3730
|
+
var DescribeHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3608
3731
|
return [
|
|
3609
3732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3610
3733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3611
3734
|
];
|
|
3612
3735
|
}).s("AWSOrganizationsV20161128", "DescribeHandshake", {}).n("OrganizationsClient", "DescribeHandshakeCommand").f(void 0, DescribeHandshakeResponseFilterSensitiveLog).ser(se_DescribeHandshakeCommand).de(de_DescribeHandshakeCommand).build() {
|
|
3736
|
+
static {
|
|
3737
|
+
__name(this, "DescribeHandshakeCommand");
|
|
3738
|
+
}
|
|
3613
3739
|
};
|
|
3614
|
-
__name(_DescribeHandshakeCommand, "DescribeHandshakeCommand");
|
|
3615
|
-
var DescribeHandshakeCommand = _DescribeHandshakeCommand;
|
|
3616
3740
|
|
|
3617
3741
|
// src/commands/DescribeOrganizationalUnitCommand.ts
|
|
3618
3742
|
|
|
3619
3743
|
|
|
3620
3744
|
|
|
3621
|
-
var
|
|
3745
|
+
var DescribeOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3622
3746
|
return [
|
|
3623
3747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3624
3748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3625
3749
|
];
|
|
3626
3750
|
}).s("AWSOrganizationsV20161128", "DescribeOrganizationalUnit", {}).n("OrganizationsClient", "DescribeOrganizationalUnitCommand").f(void 0, void 0).ser(se_DescribeOrganizationalUnitCommand).de(de_DescribeOrganizationalUnitCommand).build() {
|
|
3751
|
+
static {
|
|
3752
|
+
__name(this, "DescribeOrganizationalUnitCommand");
|
|
3753
|
+
}
|
|
3627
3754
|
};
|
|
3628
|
-
__name(_DescribeOrganizationalUnitCommand, "DescribeOrganizationalUnitCommand");
|
|
3629
|
-
var DescribeOrganizationalUnitCommand = _DescribeOrganizationalUnitCommand;
|
|
3630
3755
|
|
|
3631
3756
|
// src/commands/DescribeOrganizationCommand.ts
|
|
3632
3757
|
|
|
3633
3758
|
|
|
3634
3759
|
|
|
3635
|
-
var
|
|
3760
|
+
var DescribeOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3636
3761
|
return [
|
|
3637
3762
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3638
3763
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3639
3764
|
];
|
|
3640
3765
|
}).s("AWSOrganizationsV20161128", "DescribeOrganization", {}).n("OrganizationsClient", "DescribeOrganizationCommand").f(void 0, DescribeOrganizationResponseFilterSensitiveLog).ser(se_DescribeOrganizationCommand).de(de_DescribeOrganizationCommand).build() {
|
|
3766
|
+
static {
|
|
3767
|
+
__name(this, "DescribeOrganizationCommand");
|
|
3768
|
+
}
|
|
3641
3769
|
};
|
|
3642
|
-
__name(_DescribeOrganizationCommand, "DescribeOrganizationCommand");
|
|
3643
|
-
var DescribeOrganizationCommand = _DescribeOrganizationCommand;
|
|
3644
3770
|
|
|
3645
3771
|
// src/commands/DescribePolicyCommand.ts
|
|
3646
3772
|
|
|
3647
3773
|
|
|
3648
3774
|
|
|
3649
|
-
var
|
|
3775
|
+
var DescribePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3650
3776
|
return [
|
|
3651
3777
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3652
3778
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3653
3779
|
];
|
|
3654
3780
|
}).s("AWSOrganizationsV20161128", "DescribePolicy", {}).n("OrganizationsClient", "DescribePolicyCommand").f(void 0, void 0).ser(se_DescribePolicyCommand).de(de_DescribePolicyCommand).build() {
|
|
3781
|
+
static {
|
|
3782
|
+
__name(this, "DescribePolicyCommand");
|
|
3783
|
+
}
|
|
3655
3784
|
};
|
|
3656
|
-
__name(_DescribePolicyCommand, "DescribePolicyCommand");
|
|
3657
|
-
var DescribePolicyCommand = _DescribePolicyCommand;
|
|
3658
3785
|
|
|
3659
3786
|
// src/commands/DescribeResourcePolicyCommand.ts
|
|
3660
3787
|
|
|
3661
3788
|
|
|
3662
3789
|
|
|
3663
|
-
var
|
|
3790
|
+
var DescribeResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3664
3791
|
return [
|
|
3665
3792
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3666
3793
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3667
3794
|
];
|
|
3668
3795
|
}).s("AWSOrganizationsV20161128", "DescribeResourcePolicy", {}).n("OrganizationsClient", "DescribeResourcePolicyCommand").f(void 0, void 0).ser(se_DescribeResourcePolicyCommand).de(de_DescribeResourcePolicyCommand).build() {
|
|
3796
|
+
static {
|
|
3797
|
+
__name(this, "DescribeResourcePolicyCommand");
|
|
3798
|
+
}
|
|
3669
3799
|
};
|
|
3670
|
-
__name(_DescribeResourcePolicyCommand, "DescribeResourcePolicyCommand");
|
|
3671
|
-
var DescribeResourcePolicyCommand = _DescribeResourcePolicyCommand;
|
|
3672
3800
|
|
|
3673
3801
|
// src/commands/DetachPolicyCommand.ts
|
|
3674
3802
|
|
|
3675
3803
|
|
|
3676
3804
|
|
|
3677
|
-
var
|
|
3805
|
+
var DetachPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3678
3806
|
return [
|
|
3679
3807
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3680
3808
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3681
3809
|
];
|
|
3682
3810
|
}).s("AWSOrganizationsV20161128", "DetachPolicy", {}).n("OrganizationsClient", "DetachPolicyCommand").f(void 0, void 0).ser(se_DetachPolicyCommand).de(de_DetachPolicyCommand).build() {
|
|
3811
|
+
static {
|
|
3812
|
+
__name(this, "DetachPolicyCommand");
|
|
3813
|
+
}
|
|
3683
3814
|
};
|
|
3684
|
-
__name(_DetachPolicyCommand, "DetachPolicyCommand");
|
|
3685
|
-
var DetachPolicyCommand = _DetachPolicyCommand;
|
|
3686
3815
|
|
|
3687
3816
|
// src/commands/DisableAWSServiceAccessCommand.ts
|
|
3688
3817
|
|
|
3689
3818
|
|
|
3690
3819
|
|
|
3691
|
-
var
|
|
3820
|
+
var DisableAWSServiceAccessCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3692
3821
|
return [
|
|
3693
3822
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3694
3823
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3695
3824
|
];
|
|
3696
3825
|
}).s("AWSOrganizationsV20161128", "DisableAWSServiceAccess", {}).n("OrganizationsClient", "DisableAWSServiceAccessCommand").f(void 0, void 0).ser(se_DisableAWSServiceAccessCommand).de(de_DisableAWSServiceAccessCommand).build() {
|
|
3826
|
+
static {
|
|
3827
|
+
__name(this, "DisableAWSServiceAccessCommand");
|
|
3828
|
+
}
|
|
3697
3829
|
};
|
|
3698
|
-
__name(_DisableAWSServiceAccessCommand, "DisableAWSServiceAccessCommand");
|
|
3699
|
-
var DisableAWSServiceAccessCommand = _DisableAWSServiceAccessCommand;
|
|
3700
3830
|
|
|
3701
3831
|
// src/commands/DisablePolicyTypeCommand.ts
|
|
3702
3832
|
|
|
3703
3833
|
|
|
3704
3834
|
|
|
3705
|
-
var
|
|
3835
|
+
var DisablePolicyTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3706
3836
|
return [
|
|
3707
3837
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3708
3838
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3709
3839
|
];
|
|
3710
3840
|
}).s("AWSOrganizationsV20161128", "DisablePolicyType", {}).n("OrganizationsClient", "DisablePolicyTypeCommand").f(void 0, void 0).ser(se_DisablePolicyTypeCommand).de(de_DisablePolicyTypeCommand).build() {
|
|
3841
|
+
static {
|
|
3842
|
+
__name(this, "DisablePolicyTypeCommand");
|
|
3843
|
+
}
|
|
3711
3844
|
};
|
|
3712
|
-
__name(_DisablePolicyTypeCommand, "DisablePolicyTypeCommand");
|
|
3713
|
-
var DisablePolicyTypeCommand = _DisablePolicyTypeCommand;
|
|
3714
3845
|
|
|
3715
3846
|
// src/commands/EnableAllFeaturesCommand.ts
|
|
3716
3847
|
|
|
3717
3848
|
|
|
3718
3849
|
|
|
3719
|
-
var
|
|
3850
|
+
var EnableAllFeaturesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3720
3851
|
return [
|
|
3721
3852
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3722
3853
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3723
3854
|
];
|
|
3724
3855
|
}).s("AWSOrganizationsV20161128", "EnableAllFeatures", {}).n("OrganizationsClient", "EnableAllFeaturesCommand").f(void 0, EnableAllFeaturesResponseFilterSensitiveLog).ser(se_EnableAllFeaturesCommand).de(de_EnableAllFeaturesCommand).build() {
|
|
3856
|
+
static {
|
|
3857
|
+
__name(this, "EnableAllFeaturesCommand");
|
|
3858
|
+
}
|
|
3725
3859
|
};
|
|
3726
|
-
__name(_EnableAllFeaturesCommand, "EnableAllFeaturesCommand");
|
|
3727
|
-
var EnableAllFeaturesCommand = _EnableAllFeaturesCommand;
|
|
3728
3860
|
|
|
3729
3861
|
// src/commands/EnableAWSServiceAccessCommand.ts
|
|
3730
3862
|
|
|
3731
3863
|
|
|
3732
3864
|
|
|
3733
|
-
var
|
|
3865
|
+
var EnableAWSServiceAccessCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3734
3866
|
return [
|
|
3735
3867
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3736
3868
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3737
3869
|
];
|
|
3738
3870
|
}).s("AWSOrganizationsV20161128", "EnableAWSServiceAccess", {}).n("OrganizationsClient", "EnableAWSServiceAccessCommand").f(void 0, void 0).ser(se_EnableAWSServiceAccessCommand).de(de_EnableAWSServiceAccessCommand).build() {
|
|
3871
|
+
static {
|
|
3872
|
+
__name(this, "EnableAWSServiceAccessCommand");
|
|
3873
|
+
}
|
|
3739
3874
|
};
|
|
3740
|
-
__name(_EnableAWSServiceAccessCommand, "EnableAWSServiceAccessCommand");
|
|
3741
|
-
var EnableAWSServiceAccessCommand = _EnableAWSServiceAccessCommand;
|
|
3742
3875
|
|
|
3743
3876
|
// src/commands/EnablePolicyTypeCommand.ts
|
|
3744
3877
|
|
|
3745
3878
|
|
|
3746
3879
|
|
|
3747
|
-
var
|
|
3880
|
+
var EnablePolicyTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3748
3881
|
return [
|
|
3749
3882
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3750
3883
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3751
3884
|
];
|
|
3752
3885
|
}).s("AWSOrganizationsV20161128", "EnablePolicyType", {}).n("OrganizationsClient", "EnablePolicyTypeCommand").f(void 0, void 0).ser(se_EnablePolicyTypeCommand).de(de_EnablePolicyTypeCommand).build() {
|
|
3886
|
+
static {
|
|
3887
|
+
__name(this, "EnablePolicyTypeCommand");
|
|
3888
|
+
}
|
|
3753
3889
|
};
|
|
3754
|
-
__name(_EnablePolicyTypeCommand, "EnablePolicyTypeCommand");
|
|
3755
|
-
var EnablePolicyTypeCommand = _EnablePolicyTypeCommand;
|
|
3756
3890
|
|
|
3757
3891
|
// src/commands/InviteAccountToOrganizationCommand.ts
|
|
3758
3892
|
|
|
3759
3893
|
|
|
3760
3894
|
|
|
3761
|
-
var
|
|
3895
|
+
var InviteAccountToOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3762
3896
|
return [
|
|
3763
3897
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3764
3898
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3765
3899
|
];
|
|
3766
3900
|
}).s("AWSOrganizationsV20161128", "InviteAccountToOrganization", {}).n("OrganizationsClient", "InviteAccountToOrganizationCommand").f(InviteAccountToOrganizationRequestFilterSensitiveLog, InviteAccountToOrganizationResponseFilterSensitiveLog).ser(se_InviteAccountToOrganizationCommand).de(de_InviteAccountToOrganizationCommand).build() {
|
|
3901
|
+
static {
|
|
3902
|
+
__name(this, "InviteAccountToOrganizationCommand");
|
|
3903
|
+
}
|
|
3767
3904
|
};
|
|
3768
|
-
__name(_InviteAccountToOrganizationCommand, "InviteAccountToOrganizationCommand");
|
|
3769
|
-
var InviteAccountToOrganizationCommand = _InviteAccountToOrganizationCommand;
|
|
3770
3905
|
|
|
3771
3906
|
// src/commands/LeaveOrganizationCommand.ts
|
|
3772
3907
|
|
|
3773
3908
|
|
|
3774
3909
|
|
|
3775
|
-
var
|
|
3910
|
+
var LeaveOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3776
3911
|
return [
|
|
3777
3912
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3778
3913
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3779
3914
|
];
|
|
3780
3915
|
}).s("AWSOrganizationsV20161128", "LeaveOrganization", {}).n("OrganizationsClient", "LeaveOrganizationCommand").f(void 0, void 0).ser(se_LeaveOrganizationCommand).de(de_LeaveOrganizationCommand).build() {
|
|
3916
|
+
static {
|
|
3917
|
+
__name(this, "LeaveOrganizationCommand");
|
|
3918
|
+
}
|
|
3781
3919
|
};
|
|
3782
|
-
__name(_LeaveOrganizationCommand, "LeaveOrganizationCommand");
|
|
3783
|
-
var LeaveOrganizationCommand = _LeaveOrganizationCommand;
|
|
3784
3920
|
|
|
3785
3921
|
// src/commands/ListAccountsCommand.ts
|
|
3786
3922
|
|
|
3787
3923
|
|
|
3788
3924
|
|
|
3789
|
-
var
|
|
3925
|
+
var ListAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3790
3926
|
return [
|
|
3791
3927
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3792
3928
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3793
3929
|
];
|
|
3794
3930
|
}).s("AWSOrganizationsV20161128", "ListAccounts", {}).n("OrganizationsClient", "ListAccountsCommand").f(void 0, ListAccountsResponseFilterSensitiveLog).ser(se_ListAccountsCommand).de(de_ListAccountsCommand).build() {
|
|
3931
|
+
static {
|
|
3932
|
+
__name(this, "ListAccountsCommand");
|
|
3933
|
+
}
|
|
3795
3934
|
};
|
|
3796
|
-
__name(_ListAccountsCommand, "ListAccountsCommand");
|
|
3797
|
-
var ListAccountsCommand = _ListAccountsCommand;
|
|
3798
3935
|
|
|
3799
3936
|
// src/commands/ListAccountsForParentCommand.ts
|
|
3800
3937
|
|
|
3801
3938
|
|
|
3802
3939
|
|
|
3803
|
-
var
|
|
3940
|
+
var ListAccountsForParentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3804
3941
|
return [
|
|
3805
3942
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3806
3943
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3807
3944
|
];
|
|
3808
3945
|
}).s("AWSOrganizationsV20161128", "ListAccountsForParent", {}).n("OrganizationsClient", "ListAccountsForParentCommand").f(void 0, ListAccountsForParentResponseFilterSensitiveLog).ser(se_ListAccountsForParentCommand).de(de_ListAccountsForParentCommand).build() {
|
|
3946
|
+
static {
|
|
3947
|
+
__name(this, "ListAccountsForParentCommand");
|
|
3948
|
+
}
|
|
3809
3949
|
};
|
|
3810
|
-
__name(_ListAccountsForParentCommand, "ListAccountsForParentCommand");
|
|
3811
|
-
var ListAccountsForParentCommand = _ListAccountsForParentCommand;
|
|
3812
3950
|
|
|
3813
3951
|
// src/commands/ListAWSServiceAccessForOrganizationCommand.ts
|
|
3814
3952
|
|
|
3815
3953
|
|
|
3816
3954
|
|
|
3817
|
-
var
|
|
3955
|
+
var ListAWSServiceAccessForOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3818
3956
|
return [
|
|
3819
3957
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3820
3958
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3821
3959
|
];
|
|
3822
3960
|
}).s("AWSOrganizationsV20161128", "ListAWSServiceAccessForOrganization", {}).n("OrganizationsClient", "ListAWSServiceAccessForOrganizationCommand").f(void 0, void 0).ser(se_ListAWSServiceAccessForOrganizationCommand).de(de_ListAWSServiceAccessForOrganizationCommand).build() {
|
|
3961
|
+
static {
|
|
3962
|
+
__name(this, "ListAWSServiceAccessForOrganizationCommand");
|
|
3963
|
+
}
|
|
3823
3964
|
};
|
|
3824
|
-
__name(_ListAWSServiceAccessForOrganizationCommand, "ListAWSServiceAccessForOrganizationCommand");
|
|
3825
|
-
var ListAWSServiceAccessForOrganizationCommand = _ListAWSServiceAccessForOrganizationCommand;
|
|
3826
3965
|
|
|
3827
3966
|
// src/commands/ListChildrenCommand.ts
|
|
3828
3967
|
|
|
3829
3968
|
|
|
3830
3969
|
|
|
3831
|
-
var
|
|
3970
|
+
var ListChildrenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3832
3971
|
return [
|
|
3833
3972
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3834
3973
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3835
3974
|
];
|
|
3836
3975
|
}).s("AWSOrganizationsV20161128", "ListChildren", {}).n("OrganizationsClient", "ListChildrenCommand").f(void 0, void 0).ser(se_ListChildrenCommand).de(de_ListChildrenCommand).build() {
|
|
3976
|
+
static {
|
|
3977
|
+
__name(this, "ListChildrenCommand");
|
|
3978
|
+
}
|
|
3837
3979
|
};
|
|
3838
|
-
__name(_ListChildrenCommand, "ListChildrenCommand");
|
|
3839
|
-
var ListChildrenCommand = _ListChildrenCommand;
|
|
3840
3980
|
|
|
3841
3981
|
// src/commands/ListCreateAccountStatusCommand.ts
|
|
3842
3982
|
|
|
3843
3983
|
|
|
3844
3984
|
|
|
3845
|
-
var
|
|
3985
|
+
var ListCreateAccountStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3846
3986
|
return [
|
|
3847
3987
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3848
3988
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3849
3989
|
];
|
|
3850
3990
|
}).s("AWSOrganizationsV20161128", "ListCreateAccountStatus", {}).n("OrganizationsClient", "ListCreateAccountStatusCommand").f(void 0, ListCreateAccountStatusResponseFilterSensitiveLog).ser(se_ListCreateAccountStatusCommand).de(de_ListCreateAccountStatusCommand).build() {
|
|
3991
|
+
static {
|
|
3992
|
+
__name(this, "ListCreateAccountStatusCommand");
|
|
3993
|
+
}
|
|
3851
3994
|
};
|
|
3852
|
-
__name(_ListCreateAccountStatusCommand, "ListCreateAccountStatusCommand");
|
|
3853
|
-
var ListCreateAccountStatusCommand = _ListCreateAccountStatusCommand;
|
|
3854
3995
|
|
|
3855
3996
|
// src/commands/ListDelegatedAdministratorsCommand.ts
|
|
3856
3997
|
|
|
3857
3998
|
|
|
3858
3999
|
|
|
3859
|
-
var
|
|
4000
|
+
var ListDelegatedAdministratorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3860
4001
|
return [
|
|
3861
4002
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3862
4003
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3863
4004
|
];
|
|
3864
4005
|
}).s("AWSOrganizationsV20161128", "ListDelegatedAdministrators", {}).n("OrganizationsClient", "ListDelegatedAdministratorsCommand").f(void 0, ListDelegatedAdministratorsResponseFilterSensitiveLog).ser(se_ListDelegatedAdministratorsCommand).de(de_ListDelegatedAdministratorsCommand).build() {
|
|
4006
|
+
static {
|
|
4007
|
+
__name(this, "ListDelegatedAdministratorsCommand");
|
|
4008
|
+
}
|
|
3865
4009
|
};
|
|
3866
|
-
__name(_ListDelegatedAdministratorsCommand, "ListDelegatedAdministratorsCommand");
|
|
3867
|
-
var ListDelegatedAdministratorsCommand = _ListDelegatedAdministratorsCommand;
|
|
3868
4010
|
|
|
3869
4011
|
// src/commands/ListDelegatedServicesForAccountCommand.ts
|
|
3870
4012
|
|
|
3871
4013
|
|
|
3872
4014
|
|
|
3873
|
-
var
|
|
4015
|
+
var ListDelegatedServicesForAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3874
4016
|
return [
|
|
3875
4017
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3876
4018
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3877
4019
|
];
|
|
3878
4020
|
}).s("AWSOrganizationsV20161128", "ListDelegatedServicesForAccount", {}).n("OrganizationsClient", "ListDelegatedServicesForAccountCommand").f(void 0, void 0).ser(se_ListDelegatedServicesForAccountCommand).de(de_ListDelegatedServicesForAccountCommand).build() {
|
|
4021
|
+
static {
|
|
4022
|
+
__name(this, "ListDelegatedServicesForAccountCommand");
|
|
4023
|
+
}
|
|
3879
4024
|
};
|
|
3880
|
-
__name(_ListDelegatedServicesForAccountCommand, "ListDelegatedServicesForAccountCommand");
|
|
3881
|
-
var ListDelegatedServicesForAccountCommand = _ListDelegatedServicesForAccountCommand;
|
|
3882
4025
|
|
|
3883
4026
|
// src/commands/ListHandshakesForAccountCommand.ts
|
|
3884
4027
|
|
|
3885
4028
|
|
|
3886
4029
|
|
|
3887
|
-
var
|
|
4030
|
+
var ListHandshakesForAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3888
4031
|
return [
|
|
3889
4032
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3890
4033
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3891
4034
|
];
|
|
3892
4035
|
}).s("AWSOrganizationsV20161128", "ListHandshakesForAccount", {}).n("OrganizationsClient", "ListHandshakesForAccountCommand").f(void 0, ListHandshakesForAccountResponseFilterSensitiveLog).ser(se_ListHandshakesForAccountCommand).de(de_ListHandshakesForAccountCommand).build() {
|
|
4036
|
+
static {
|
|
4037
|
+
__name(this, "ListHandshakesForAccountCommand");
|
|
4038
|
+
}
|
|
3893
4039
|
};
|
|
3894
|
-
__name(_ListHandshakesForAccountCommand, "ListHandshakesForAccountCommand");
|
|
3895
|
-
var ListHandshakesForAccountCommand = _ListHandshakesForAccountCommand;
|
|
3896
4040
|
|
|
3897
4041
|
// src/commands/ListHandshakesForOrganizationCommand.ts
|
|
3898
4042
|
|
|
3899
4043
|
|
|
3900
4044
|
|
|
3901
|
-
var
|
|
4045
|
+
var ListHandshakesForOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3902
4046
|
return [
|
|
3903
4047
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3904
4048
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3905
4049
|
];
|
|
3906
4050
|
}).s("AWSOrganizationsV20161128", "ListHandshakesForOrganization", {}).n("OrganizationsClient", "ListHandshakesForOrganizationCommand").f(void 0, ListHandshakesForOrganizationResponseFilterSensitiveLog).ser(se_ListHandshakesForOrganizationCommand).de(de_ListHandshakesForOrganizationCommand).build() {
|
|
4051
|
+
static {
|
|
4052
|
+
__name(this, "ListHandshakesForOrganizationCommand");
|
|
4053
|
+
}
|
|
3907
4054
|
};
|
|
3908
|
-
__name(_ListHandshakesForOrganizationCommand, "ListHandshakesForOrganizationCommand");
|
|
3909
|
-
var ListHandshakesForOrganizationCommand = _ListHandshakesForOrganizationCommand;
|
|
3910
4055
|
|
|
3911
4056
|
// src/commands/ListOrganizationalUnitsForParentCommand.ts
|
|
3912
4057
|
|
|
3913
4058
|
|
|
3914
4059
|
|
|
3915
|
-
var
|
|
4060
|
+
var ListOrganizationalUnitsForParentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3916
4061
|
return [
|
|
3917
4062
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3918
4063
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3919
4064
|
];
|
|
3920
4065
|
}).s("AWSOrganizationsV20161128", "ListOrganizationalUnitsForParent", {}).n("OrganizationsClient", "ListOrganizationalUnitsForParentCommand").f(void 0, void 0).ser(se_ListOrganizationalUnitsForParentCommand).de(de_ListOrganizationalUnitsForParentCommand).build() {
|
|
4066
|
+
static {
|
|
4067
|
+
__name(this, "ListOrganizationalUnitsForParentCommand");
|
|
4068
|
+
}
|
|
3921
4069
|
};
|
|
3922
|
-
__name(_ListOrganizationalUnitsForParentCommand, "ListOrganizationalUnitsForParentCommand");
|
|
3923
|
-
var ListOrganizationalUnitsForParentCommand = _ListOrganizationalUnitsForParentCommand;
|
|
3924
4070
|
|
|
3925
4071
|
// src/commands/ListParentsCommand.ts
|
|
3926
4072
|
|
|
3927
4073
|
|
|
3928
4074
|
|
|
3929
|
-
var
|
|
4075
|
+
var ListParentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3930
4076
|
return [
|
|
3931
4077
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3932
4078
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3933
4079
|
];
|
|
3934
4080
|
}).s("AWSOrganizationsV20161128", "ListParents", {}).n("OrganizationsClient", "ListParentsCommand").f(void 0, void 0).ser(se_ListParentsCommand).de(de_ListParentsCommand).build() {
|
|
4081
|
+
static {
|
|
4082
|
+
__name(this, "ListParentsCommand");
|
|
4083
|
+
}
|
|
3935
4084
|
};
|
|
3936
|
-
__name(_ListParentsCommand, "ListParentsCommand");
|
|
3937
|
-
var ListParentsCommand = _ListParentsCommand;
|
|
3938
4085
|
|
|
3939
4086
|
// src/commands/ListPoliciesCommand.ts
|
|
3940
4087
|
|
|
3941
4088
|
|
|
3942
4089
|
|
|
3943
|
-
var
|
|
4090
|
+
var ListPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3944
4091
|
return [
|
|
3945
4092
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3946
4093
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3947
4094
|
];
|
|
3948
4095
|
}).s("AWSOrganizationsV20161128", "ListPolicies", {}).n("OrganizationsClient", "ListPoliciesCommand").f(void 0, void 0).ser(se_ListPoliciesCommand).de(de_ListPoliciesCommand).build() {
|
|
4096
|
+
static {
|
|
4097
|
+
__name(this, "ListPoliciesCommand");
|
|
4098
|
+
}
|
|
3949
4099
|
};
|
|
3950
|
-
__name(_ListPoliciesCommand, "ListPoliciesCommand");
|
|
3951
|
-
var ListPoliciesCommand = _ListPoliciesCommand;
|
|
3952
4100
|
|
|
3953
4101
|
// src/commands/ListPoliciesForTargetCommand.ts
|
|
3954
4102
|
|
|
3955
4103
|
|
|
3956
4104
|
|
|
3957
|
-
var
|
|
4105
|
+
var ListPoliciesForTargetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3958
4106
|
return [
|
|
3959
4107
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3960
4108
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3961
4109
|
];
|
|
3962
4110
|
}).s("AWSOrganizationsV20161128", "ListPoliciesForTarget", {}).n("OrganizationsClient", "ListPoliciesForTargetCommand").f(void 0, void 0).ser(se_ListPoliciesForTargetCommand).de(de_ListPoliciesForTargetCommand).build() {
|
|
4111
|
+
static {
|
|
4112
|
+
__name(this, "ListPoliciesForTargetCommand");
|
|
4113
|
+
}
|
|
3963
4114
|
};
|
|
3964
|
-
__name(_ListPoliciesForTargetCommand, "ListPoliciesForTargetCommand");
|
|
3965
|
-
var ListPoliciesForTargetCommand = _ListPoliciesForTargetCommand;
|
|
3966
4115
|
|
|
3967
4116
|
// src/commands/ListRootsCommand.ts
|
|
3968
4117
|
|
|
3969
4118
|
|
|
3970
4119
|
|
|
3971
|
-
var
|
|
4120
|
+
var ListRootsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3972
4121
|
return [
|
|
3973
4122
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3974
4123
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3975
4124
|
];
|
|
3976
4125
|
}).s("AWSOrganizationsV20161128", "ListRoots", {}).n("OrganizationsClient", "ListRootsCommand").f(void 0, void 0).ser(se_ListRootsCommand).de(de_ListRootsCommand).build() {
|
|
4126
|
+
static {
|
|
4127
|
+
__name(this, "ListRootsCommand");
|
|
4128
|
+
}
|
|
3977
4129
|
};
|
|
3978
|
-
__name(_ListRootsCommand, "ListRootsCommand");
|
|
3979
|
-
var ListRootsCommand = _ListRootsCommand;
|
|
3980
4130
|
|
|
3981
4131
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3982
4132
|
|
|
3983
4133
|
|
|
3984
4134
|
|
|
3985
|
-
var
|
|
4135
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3986
4136
|
return [
|
|
3987
4137
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3988
4138
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3989
4139
|
];
|
|
3990
4140
|
}).s("AWSOrganizationsV20161128", "ListTagsForResource", {}).n("OrganizationsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
4141
|
+
static {
|
|
4142
|
+
__name(this, "ListTagsForResourceCommand");
|
|
4143
|
+
}
|
|
3991
4144
|
};
|
|
3992
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3993
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3994
4145
|
|
|
3995
4146
|
// src/commands/ListTargetsForPolicyCommand.ts
|
|
3996
4147
|
|
|
3997
4148
|
|
|
3998
4149
|
|
|
3999
|
-
var
|
|
4150
|
+
var ListTargetsForPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4000
4151
|
return [
|
|
4001
4152
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4002
4153
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4003
4154
|
];
|
|
4004
4155
|
}).s("AWSOrganizationsV20161128", "ListTargetsForPolicy", {}).n("OrganizationsClient", "ListTargetsForPolicyCommand").f(void 0, void 0).ser(se_ListTargetsForPolicyCommand).de(de_ListTargetsForPolicyCommand).build() {
|
|
4156
|
+
static {
|
|
4157
|
+
__name(this, "ListTargetsForPolicyCommand");
|
|
4158
|
+
}
|
|
4005
4159
|
};
|
|
4006
|
-
__name(_ListTargetsForPolicyCommand, "ListTargetsForPolicyCommand");
|
|
4007
|
-
var ListTargetsForPolicyCommand = _ListTargetsForPolicyCommand;
|
|
4008
4160
|
|
|
4009
4161
|
// src/commands/MoveAccountCommand.ts
|
|
4010
4162
|
|
|
4011
4163
|
|
|
4012
4164
|
|
|
4013
|
-
var
|
|
4165
|
+
var MoveAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4014
4166
|
return [
|
|
4015
4167
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4016
4168
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4017
4169
|
];
|
|
4018
4170
|
}).s("AWSOrganizationsV20161128", "MoveAccount", {}).n("OrganizationsClient", "MoveAccountCommand").f(void 0, void 0).ser(se_MoveAccountCommand).de(de_MoveAccountCommand).build() {
|
|
4171
|
+
static {
|
|
4172
|
+
__name(this, "MoveAccountCommand");
|
|
4173
|
+
}
|
|
4019
4174
|
};
|
|
4020
|
-
__name(_MoveAccountCommand, "MoveAccountCommand");
|
|
4021
|
-
var MoveAccountCommand = _MoveAccountCommand;
|
|
4022
4175
|
|
|
4023
4176
|
// src/commands/PutResourcePolicyCommand.ts
|
|
4024
4177
|
|
|
4025
4178
|
|
|
4026
4179
|
|
|
4027
|
-
var
|
|
4180
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4028
4181
|
return [
|
|
4029
4182
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4030
4183
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4031
4184
|
];
|
|
4032
4185
|
}).s("AWSOrganizationsV20161128", "PutResourcePolicy", {}).n("OrganizationsClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
4186
|
+
static {
|
|
4187
|
+
__name(this, "PutResourcePolicyCommand");
|
|
4188
|
+
}
|
|
4033
4189
|
};
|
|
4034
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
4035
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
4036
4190
|
|
|
4037
4191
|
// src/commands/RegisterDelegatedAdministratorCommand.ts
|
|
4038
4192
|
|
|
4039
4193
|
|
|
4040
4194
|
|
|
4041
|
-
var
|
|
4195
|
+
var RegisterDelegatedAdministratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4042
4196
|
return [
|
|
4043
4197
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4044
4198
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4045
4199
|
];
|
|
4046
4200
|
}).s("AWSOrganizationsV20161128", "RegisterDelegatedAdministrator", {}).n("OrganizationsClient", "RegisterDelegatedAdministratorCommand").f(void 0, void 0).ser(se_RegisterDelegatedAdministratorCommand).de(de_RegisterDelegatedAdministratorCommand).build() {
|
|
4201
|
+
static {
|
|
4202
|
+
__name(this, "RegisterDelegatedAdministratorCommand");
|
|
4203
|
+
}
|
|
4047
4204
|
};
|
|
4048
|
-
__name(_RegisterDelegatedAdministratorCommand, "RegisterDelegatedAdministratorCommand");
|
|
4049
|
-
var RegisterDelegatedAdministratorCommand = _RegisterDelegatedAdministratorCommand;
|
|
4050
4205
|
|
|
4051
4206
|
// src/commands/RemoveAccountFromOrganizationCommand.ts
|
|
4052
4207
|
|
|
4053
4208
|
|
|
4054
4209
|
|
|
4055
|
-
var
|
|
4210
|
+
var RemoveAccountFromOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4056
4211
|
return [
|
|
4057
4212
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4058
4213
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4059
4214
|
];
|
|
4060
4215
|
}).s("AWSOrganizationsV20161128", "RemoveAccountFromOrganization", {}).n("OrganizationsClient", "RemoveAccountFromOrganizationCommand").f(void 0, void 0).ser(se_RemoveAccountFromOrganizationCommand).de(de_RemoveAccountFromOrganizationCommand).build() {
|
|
4216
|
+
static {
|
|
4217
|
+
__name(this, "RemoveAccountFromOrganizationCommand");
|
|
4218
|
+
}
|
|
4061
4219
|
};
|
|
4062
|
-
__name(_RemoveAccountFromOrganizationCommand, "RemoveAccountFromOrganizationCommand");
|
|
4063
|
-
var RemoveAccountFromOrganizationCommand = _RemoveAccountFromOrganizationCommand;
|
|
4064
4220
|
|
|
4065
4221
|
// src/commands/TagResourceCommand.ts
|
|
4066
4222
|
|
|
4067
4223
|
|
|
4068
4224
|
|
|
4069
|
-
var
|
|
4225
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4070
4226
|
return [
|
|
4071
4227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4072
4228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4073
4229
|
];
|
|
4074
4230
|
}).s("AWSOrganizationsV20161128", "TagResource", {}).n("OrganizationsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4231
|
+
static {
|
|
4232
|
+
__name(this, "TagResourceCommand");
|
|
4233
|
+
}
|
|
4075
4234
|
};
|
|
4076
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4077
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4078
4235
|
|
|
4079
4236
|
// src/commands/UntagResourceCommand.ts
|
|
4080
4237
|
|
|
4081
4238
|
|
|
4082
4239
|
|
|
4083
|
-
var
|
|
4240
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4084
4241
|
return [
|
|
4085
4242
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4086
4243
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4087
4244
|
];
|
|
4088
4245
|
}).s("AWSOrganizationsV20161128", "UntagResource", {}).n("OrganizationsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4246
|
+
static {
|
|
4247
|
+
__name(this, "UntagResourceCommand");
|
|
4248
|
+
}
|
|
4089
4249
|
};
|
|
4090
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4091
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4092
4250
|
|
|
4093
4251
|
// src/commands/UpdateOrganizationalUnitCommand.ts
|
|
4094
4252
|
|
|
4095
4253
|
|
|
4096
4254
|
|
|
4097
|
-
var
|
|
4255
|
+
var UpdateOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4098
4256
|
return [
|
|
4099
4257
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4100
4258
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4101
4259
|
];
|
|
4102
4260
|
}).s("AWSOrganizationsV20161128", "UpdateOrganizationalUnit", {}).n("OrganizationsClient", "UpdateOrganizationalUnitCommand").f(void 0, void 0).ser(se_UpdateOrganizationalUnitCommand).de(de_UpdateOrganizationalUnitCommand).build() {
|
|
4261
|
+
static {
|
|
4262
|
+
__name(this, "UpdateOrganizationalUnitCommand");
|
|
4263
|
+
}
|
|
4103
4264
|
};
|
|
4104
|
-
__name(_UpdateOrganizationalUnitCommand, "UpdateOrganizationalUnitCommand");
|
|
4105
|
-
var UpdateOrganizationalUnitCommand = _UpdateOrganizationalUnitCommand;
|
|
4106
4265
|
|
|
4107
4266
|
// src/commands/UpdatePolicyCommand.ts
|
|
4108
4267
|
|
|
4109
4268
|
|
|
4110
4269
|
|
|
4111
|
-
var
|
|
4270
|
+
var UpdatePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4112
4271
|
return [
|
|
4113
4272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4114
4273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4115
4274
|
];
|
|
4116
4275
|
}).s("AWSOrganizationsV20161128", "UpdatePolicy", {}).n("OrganizationsClient", "UpdatePolicyCommand").f(void 0, void 0).ser(se_UpdatePolicyCommand).de(de_UpdatePolicyCommand).build() {
|
|
4276
|
+
static {
|
|
4277
|
+
__name(this, "UpdatePolicyCommand");
|
|
4278
|
+
}
|
|
4117
4279
|
};
|
|
4118
|
-
__name(_UpdatePolicyCommand, "UpdatePolicyCommand");
|
|
4119
|
-
var UpdatePolicyCommand = _UpdatePolicyCommand;
|
|
4120
4280
|
|
|
4121
4281
|
// src/Organizations.ts
|
|
4122
4282
|
var commands = {
|
|
@@ -4176,10 +4336,11 @@ var commands = {
|
|
|
4176
4336
|
UpdateOrganizationalUnitCommand,
|
|
4177
4337
|
UpdatePolicyCommand
|
|
4178
4338
|
};
|
|
4179
|
-
var
|
|
4339
|
+
var Organizations = class extends OrganizationsClient {
|
|
4340
|
+
static {
|
|
4341
|
+
__name(this, "Organizations");
|
|
4342
|
+
}
|
|
4180
4343
|
};
|
|
4181
|
-
__name(_Organizations, "Organizations");
|
|
4182
|
-
var Organizations = _Organizations;
|
|
4183
4344
|
(0, import_smithy_client.createAggregatedClient)(commands, Organizations);
|
|
4184
4345
|
|
|
4185
4346
|
// src/pagination/ListAWSServiceAccessForOrganizationPaginator.ts
|