@aws-sdk/client-organizations 3.716.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +572 -410
- package/dist-es/OrganizationsClient.js +1 -0
- package/dist-es/models/models_0.js +147 -94
- package/dist-types/commands/AttachPolicyCommand.d.ts +5 -0
- package/dist-types/commands/CloseAccountCommand.d.ts +5 -0
- package/dist-types/commands/CreateAccountCommand.d.ts +5 -0
- package/dist-types/commands/CreateGovCloudAccountCommand.d.ts +5 -0
- package/dist-types/commands/CreateOrganizationCommand.d.ts +5 -0
- package/dist-types/commands/CreateOrganizationalUnitCommand.d.ts +5 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +5 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +5 -0
- package/dist-types/commands/DeregisterDelegatedAdministratorCommand.d.ts +5 -0
- package/dist-types/commands/DescribeEffectivePolicyCommand.d.ts +5 -0
- package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +5 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +5 -0
- package/dist-types/commands/DisableAWSServiceAccessCommand.d.ts +5 -0
- package/dist-types/commands/DisablePolicyTypeCommand.d.ts +5 -0
- package/dist-types/commands/EnableAWSServiceAccessCommand.d.ts +5 -0
- package/dist-types/commands/EnableAllFeaturesCommand.d.ts +200 -0
- package/dist-types/commands/EnablePolicyTypeCommand.d.ts +5 -0
- package/dist-types/commands/InviteAccountToOrganizationCommand.d.ts +5 -0
- package/dist-types/commands/LeaveOrganizationCommand.d.ts +5 -0
- package/dist-types/commands/ListAWSServiceAccessForOrganizationCommand.d.ts +5 -0
- package/dist-types/commands/ListDelegatedAdministratorsCommand.d.ts +5 -0
- package/dist-types/commands/ListDelegatedServicesForAccountCommand.d.ts +5 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +5 -0
- package/dist-types/commands/RegisterDelegatedAdministratorCommand.d.ts +5 -0
- package/dist-types/commands/RemoveAccountFromOrganizationCommand.d.ts +5 -0
- package/dist-types/commands/TagResourceCommand.d.ts +5 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +5 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +6 -0
- 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/models/models_0.d.ts +1 -0
- 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",
|
|
@@ -759,6 +803,7 @@ var ConstraintViolationExceptionReason = {
|
|
|
759
803
|
ACCOUNT_CREATION_NOT_COMPLETE: "ACCOUNT_CREATION_NOT_COMPLETE",
|
|
760
804
|
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: "ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED",
|
|
761
805
|
ACCOUNT_NUMBER_LIMIT_EXCEEDED: "ACCOUNT_NUMBER_LIMIT_EXCEEDED",
|
|
806
|
+
ALL_FEATURES_MIGRATION_ORGANIZATION_SIZE_LIMIT_EXCEEDED: "ALL_FEATURES_MIGRATION_ORGANIZATION_SIZE_LIMIT_EXCEEDED",
|
|
762
807
|
CANNOT_CLOSE_MANAGEMENT_ACCOUNT: "CANNOT_CLOSE_MANAGEMENT_ACCOUNT",
|
|
763
808
|
CANNOT_REGISTER_MASTER_AS_DELEGATED_ADMINISTRATOR: "CANNOT_REGISTER_MASTER_AS_DELEGATED_ADMINISTRATOR",
|
|
764
809
|
CANNOT_REGISTER_SUSPENDED_ACCOUNT_AS_DELEGATED_ADMINISTRATOR: "CANNOT_REGISTER_SUSPENDED_ACCOUNT_AS_DELEGATED_ADMINISTRATOR",
|
|
@@ -789,7 +834,14 @@ var ConstraintViolationExceptionReason = {
|
|
|
789
834
|
TAG_POLICY_VIOLATION: "TAG_POLICY_VIOLATION",
|
|
790
835
|
WAIT_PERIOD_ACTIVE: "WAIT_PERIOD_ACTIVE"
|
|
791
836
|
};
|
|
792
|
-
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;
|
|
793
845
|
/**
|
|
794
846
|
* @internal
|
|
795
847
|
*/
|
|
@@ -799,16 +851,18 @@ var _ConstraintViolationException = class _ConstraintViolationException extends
|
|
|
799
851
|
$fault: "client",
|
|
800
852
|
...opts
|
|
801
853
|
});
|
|
802
|
-
this.name = "ConstraintViolationException";
|
|
803
|
-
this.$fault = "client";
|
|
804
854
|
Object.setPrototypeOf(this, _ConstraintViolationException.prototype);
|
|
805
855
|
this.Message = opts.Message;
|
|
806
856
|
this.Reason = opts.Reason;
|
|
807
857
|
}
|
|
808
858
|
};
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
859
|
+
var DuplicatePolicyAttachmentException = class _DuplicatePolicyAttachmentException extends OrganizationsServiceException {
|
|
860
|
+
static {
|
|
861
|
+
__name(this, "DuplicatePolicyAttachmentException");
|
|
862
|
+
}
|
|
863
|
+
name = "DuplicatePolicyAttachmentException";
|
|
864
|
+
$fault = "client";
|
|
865
|
+
Message;
|
|
812
866
|
/**
|
|
813
867
|
* @internal
|
|
814
868
|
*/
|
|
@@ -818,15 +872,17 @@ var _DuplicatePolicyAttachmentException = class _DuplicatePolicyAttachmentExcept
|
|
|
818
872
|
$fault: "client",
|
|
819
873
|
...opts
|
|
820
874
|
});
|
|
821
|
-
this.name = "DuplicatePolicyAttachmentException";
|
|
822
|
-
this.$fault = "client";
|
|
823
875
|
Object.setPrototypeOf(this, _DuplicatePolicyAttachmentException.prototype);
|
|
824
876
|
this.Message = opts.Message;
|
|
825
877
|
}
|
|
826
878
|
};
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
879
|
+
var PolicyChangesInProgressException = class _PolicyChangesInProgressException extends OrganizationsServiceException {
|
|
880
|
+
static {
|
|
881
|
+
__name(this, "PolicyChangesInProgressException");
|
|
882
|
+
}
|
|
883
|
+
name = "PolicyChangesInProgressException";
|
|
884
|
+
$fault = "client";
|
|
885
|
+
Message;
|
|
830
886
|
/**
|
|
831
887
|
* @internal
|
|
832
888
|
*/
|
|
@@ -836,15 +892,17 @@ var _PolicyChangesInProgressException = class _PolicyChangesInProgressException
|
|
|
836
892
|
$fault: "client",
|
|
837
893
|
...opts
|
|
838
894
|
});
|
|
839
|
-
this.name = "PolicyChangesInProgressException";
|
|
840
|
-
this.$fault = "client";
|
|
841
895
|
Object.setPrototypeOf(this, _PolicyChangesInProgressException.prototype);
|
|
842
896
|
this.Message = opts.Message;
|
|
843
897
|
}
|
|
844
898
|
};
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
899
|
+
var PolicyNotFoundException = class _PolicyNotFoundException extends OrganizationsServiceException {
|
|
900
|
+
static {
|
|
901
|
+
__name(this, "PolicyNotFoundException");
|
|
902
|
+
}
|
|
903
|
+
name = "PolicyNotFoundException";
|
|
904
|
+
$fault = "client";
|
|
905
|
+
Message;
|
|
848
906
|
/**
|
|
849
907
|
* @internal
|
|
850
908
|
*/
|
|
@@ -854,15 +912,17 @@ var _PolicyNotFoundException = class _PolicyNotFoundException extends Organizati
|
|
|
854
912
|
$fault: "client",
|
|
855
913
|
...opts
|
|
856
914
|
});
|
|
857
|
-
this.name = "PolicyNotFoundException";
|
|
858
|
-
this.$fault = "client";
|
|
859
915
|
Object.setPrototypeOf(this, _PolicyNotFoundException.prototype);
|
|
860
916
|
this.Message = opts.Message;
|
|
861
917
|
}
|
|
862
918
|
};
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
919
|
+
var PolicyTypeNotEnabledException = class _PolicyTypeNotEnabledException extends OrganizationsServiceException {
|
|
920
|
+
static {
|
|
921
|
+
__name(this, "PolicyTypeNotEnabledException");
|
|
922
|
+
}
|
|
923
|
+
name = "PolicyTypeNotEnabledException";
|
|
924
|
+
$fault = "client";
|
|
925
|
+
Message;
|
|
866
926
|
/**
|
|
867
927
|
* @internal
|
|
868
928
|
*/
|
|
@@ -872,15 +932,17 @@ var _PolicyTypeNotEnabledException = class _PolicyTypeNotEnabledException extend
|
|
|
872
932
|
$fault: "client",
|
|
873
933
|
...opts
|
|
874
934
|
});
|
|
875
|
-
this.name = "PolicyTypeNotEnabledException";
|
|
876
|
-
this.$fault = "client";
|
|
877
935
|
Object.setPrototypeOf(this, _PolicyTypeNotEnabledException.prototype);
|
|
878
936
|
this.Message = opts.Message;
|
|
879
937
|
}
|
|
880
938
|
};
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
939
|
+
var TargetNotFoundException = class _TargetNotFoundException extends OrganizationsServiceException {
|
|
940
|
+
static {
|
|
941
|
+
__name(this, "TargetNotFoundException");
|
|
942
|
+
}
|
|
943
|
+
name = "TargetNotFoundException";
|
|
944
|
+
$fault = "client";
|
|
945
|
+
Message;
|
|
884
946
|
/**
|
|
885
947
|
* @internal
|
|
886
948
|
*/
|
|
@@ -890,15 +952,17 @@ var _TargetNotFoundException = class _TargetNotFoundException extends Organizati
|
|
|
890
952
|
$fault: "client",
|
|
891
953
|
...opts
|
|
892
954
|
});
|
|
893
|
-
this.name = "TargetNotFoundException";
|
|
894
|
-
this.$fault = "client";
|
|
895
955
|
Object.setPrototypeOf(this, _TargetNotFoundException.prototype);
|
|
896
956
|
this.Message = opts.Message;
|
|
897
957
|
}
|
|
898
958
|
};
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
959
|
+
var UnsupportedAPIEndpointException = class _UnsupportedAPIEndpointException extends OrganizationsServiceException {
|
|
960
|
+
static {
|
|
961
|
+
__name(this, "UnsupportedAPIEndpointException");
|
|
962
|
+
}
|
|
963
|
+
name = "UnsupportedAPIEndpointException";
|
|
964
|
+
$fault = "client";
|
|
965
|
+
Message;
|
|
902
966
|
/**
|
|
903
967
|
* @internal
|
|
904
968
|
*/
|
|
@@ -908,15 +972,17 @@ var _UnsupportedAPIEndpointException = class _UnsupportedAPIEndpointException ex
|
|
|
908
972
|
$fault: "client",
|
|
909
973
|
...opts
|
|
910
974
|
});
|
|
911
|
-
this.name = "UnsupportedAPIEndpointException";
|
|
912
|
-
this.$fault = "client";
|
|
913
975
|
Object.setPrototypeOf(this, _UnsupportedAPIEndpointException.prototype);
|
|
914
976
|
this.Message = opts.Message;
|
|
915
977
|
}
|
|
916
978
|
};
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
979
|
+
var ConflictException = class _ConflictException extends OrganizationsServiceException {
|
|
980
|
+
static {
|
|
981
|
+
__name(this, "ConflictException");
|
|
982
|
+
}
|
|
983
|
+
name = "ConflictException";
|
|
984
|
+
$fault = "client";
|
|
985
|
+
Message;
|
|
920
986
|
/**
|
|
921
987
|
* @internal
|
|
922
988
|
*/
|
|
@@ -926,14 +992,10 @@ var _ConflictException = class _ConflictException extends OrganizationsServiceEx
|
|
|
926
992
|
$fault: "client",
|
|
927
993
|
...opts
|
|
928
994
|
});
|
|
929
|
-
this.name = "ConflictException";
|
|
930
|
-
this.$fault = "client";
|
|
931
995
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
932
996
|
this.Message = opts.Message;
|
|
933
997
|
}
|
|
934
998
|
};
|
|
935
|
-
__name(_ConflictException, "ConflictException");
|
|
936
|
-
var ConflictException = _ConflictException;
|
|
937
999
|
var IAMUserAccessToBilling = {
|
|
938
1000
|
ALLOW: "ALLOW",
|
|
939
1001
|
DENY: "DENY"
|
|
@@ -960,7 +1022,13 @@ var CreateAccountState = {
|
|
|
960
1022
|
IN_PROGRESS: "IN_PROGRESS",
|
|
961
1023
|
SUCCEEDED: "SUCCEEDED"
|
|
962
1024
|
};
|
|
963
|
-
var
|
|
1025
|
+
var FinalizingOrganizationException = class _FinalizingOrganizationException extends OrganizationsServiceException {
|
|
1026
|
+
static {
|
|
1027
|
+
__name(this, "FinalizingOrganizationException");
|
|
1028
|
+
}
|
|
1029
|
+
name = "FinalizingOrganizationException";
|
|
1030
|
+
$fault = "client";
|
|
1031
|
+
Message;
|
|
964
1032
|
/**
|
|
965
1033
|
* @internal
|
|
966
1034
|
*/
|
|
@@ -970,14 +1038,10 @@ var _FinalizingOrganizationException = class _FinalizingOrganizationException ex
|
|
|
970
1038
|
$fault: "client",
|
|
971
1039
|
...opts
|
|
972
1040
|
});
|
|
973
|
-
this.name = "FinalizingOrganizationException";
|
|
974
|
-
this.$fault = "client";
|
|
975
1041
|
Object.setPrototypeOf(this, _FinalizingOrganizationException.prototype);
|
|
976
1042
|
this.Message = opts.Message;
|
|
977
1043
|
}
|
|
978
1044
|
};
|
|
979
|
-
__name(_FinalizingOrganizationException, "FinalizingOrganizationException");
|
|
980
|
-
var FinalizingOrganizationException = _FinalizingOrganizationException;
|
|
981
1045
|
var OrganizationFeatureSet = {
|
|
982
1046
|
ALL: "ALL",
|
|
983
1047
|
CONSOLIDATED_BILLING: "CONSOLIDATED_BILLING"
|
|
@@ -996,7 +1060,13 @@ var PolicyType = {
|
|
|
996
1060
|
SERVICE_CONTROL_POLICY: "SERVICE_CONTROL_POLICY",
|
|
997
1061
|
TAG_POLICY: "TAG_POLICY"
|
|
998
1062
|
};
|
|
999
|
-
var
|
|
1063
|
+
var DuplicateOrganizationalUnitException = class _DuplicateOrganizationalUnitException extends OrganizationsServiceException {
|
|
1064
|
+
static {
|
|
1065
|
+
__name(this, "DuplicateOrganizationalUnitException");
|
|
1066
|
+
}
|
|
1067
|
+
name = "DuplicateOrganizationalUnitException";
|
|
1068
|
+
$fault = "client";
|
|
1069
|
+
Message;
|
|
1000
1070
|
/**
|
|
1001
1071
|
* @internal
|
|
1002
1072
|
*/
|
|
@@ -1006,15 +1076,17 @@ var _DuplicateOrganizationalUnitException = class _DuplicateOrganizationalUnitEx
|
|
|
1006
1076
|
$fault: "client",
|
|
1007
1077
|
...opts
|
|
1008
1078
|
});
|
|
1009
|
-
this.name = "DuplicateOrganizationalUnitException";
|
|
1010
|
-
this.$fault = "client";
|
|
1011
1079
|
Object.setPrototypeOf(this, _DuplicateOrganizationalUnitException.prototype);
|
|
1012
1080
|
this.Message = opts.Message;
|
|
1013
1081
|
}
|
|
1014
1082
|
};
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1083
|
+
var ParentNotFoundException = class _ParentNotFoundException extends OrganizationsServiceException {
|
|
1084
|
+
static {
|
|
1085
|
+
__name(this, "ParentNotFoundException");
|
|
1086
|
+
}
|
|
1087
|
+
name = "ParentNotFoundException";
|
|
1088
|
+
$fault = "client";
|
|
1089
|
+
Message;
|
|
1018
1090
|
/**
|
|
1019
1091
|
* @internal
|
|
1020
1092
|
*/
|
|
@@ -1024,15 +1096,17 @@ var _ParentNotFoundException = class _ParentNotFoundException extends Organizati
|
|
|
1024
1096
|
$fault: "client",
|
|
1025
1097
|
...opts
|
|
1026
1098
|
});
|
|
1027
|
-
this.name = "ParentNotFoundException";
|
|
1028
|
-
this.$fault = "client";
|
|
1029
1099
|
Object.setPrototypeOf(this, _ParentNotFoundException.prototype);
|
|
1030
1100
|
this.Message = opts.Message;
|
|
1031
1101
|
}
|
|
1032
1102
|
};
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1103
|
+
var DuplicatePolicyException = class _DuplicatePolicyException extends OrganizationsServiceException {
|
|
1104
|
+
static {
|
|
1105
|
+
__name(this, "DuplicatePolicyException");
|
|
1106
|
+
}
|
|
1107
|
+
name = "DuplicatePolicyException";
|
|
1108
|
+
$fault = "client";
|
|
1109
|
+
Message;
|
|
1036
1110
|
/**
|
|
1037
1111
|
* @internal
|
|
1038
1112
|
*/
|
|
@@ -1042,15 +1116,17 @@ var _DuplicatePolicyException = class _DuplicatePolicyException extends Organiza
|
|
|
1042
1116
|
$fault: "client",
|
|
1043
1117
|
...opts
|
|
1044
1118
|
});
|
|
1045
|
-
this.name = "DuplicatePolicyException";
|
|
1046
|
-
this.$fault = "client";
|
|
1047
1119
|
Object.setPrototypeOf(this, _DuplicatePolicyException.prototype);
|
|
1048
1120
|
this.Message = opts.Message;
|
|
1049
1121
|
}
|
|
1050
1122
|
};
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1123
|
+
var MalformedPolicyDocumentException = class _MalformedPolicyDocumentException extends OrganizationsServiceException {
|
|
1124
|
+
static {
|
|
1125
|
+
__name(this, "MalformedPolicyDocumentException");
|
|
1126
|
+
}
|
|
1127
|
+
name = "MalformedPolicyDocumentException";
|
|
1128
|
+
$fault = "client";
|
|
1129
|
+
Message;
|
|
1054
1130
|
/**
|
|
1055
1131
|
* @internal
|
|
1056
1132
|
*/
|
|
@@ -1060,15 +1136,17 @@ var _MalformedPolicyDocumentException = class _MalformedPolicyDocumentException
|
|
|
1060
1136
|
$fault: "client",
|
|
1061
1137
|
...opts
|
|
1062
1138
|
});
|
|
1063
|
-
this.name = "MalformedPolicyDocumentException";
|
|
1064
|
-
this.$fault = "client";
|
|
1065
1139
|
Object.setPrototypeOf(this, _MalformedPolicyDocumentException.prototype);
|
|
1066
1140
|
this.Message = opts.Message;
|
|
1067
1141
|
}
|
|
1068
1142
|
};
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1143
|
+
var PolicyTypeNotAvailableForOrganizationException = class _PolicyTypeNotAvailableForOrganizationException extends OrganizationsServiceException {
|
|
1144
|
+
static {
|
|
1145
|
+
__name(this, "PolicyTypeNotAvailableForOrganizationException");
|
|
1146
|
+
}
|
|
1147
|
+
name = "PolicyTypeNotAvailableForOrganizationException";
|
|
1148
|
+
$fault = "client";
|
|
1149
|
+
Message;
|
|
1072
1150
|
/**
|
|
1073
1151
|
* @internal
|
|
1074
1152
|
*/
|
|
@@ -1078,15 +1156,17 @@ var _PolicyTypeNotAvailableForOrganizationException = class _PolicyTypeNotAvaila
|
|
|
1078
1156
|
$fault: "client",
|
|
1079
1157
|
...opts
|
|
1080
1158
|
});
|
|
1081
|
-
this.name = "PolicyTypeNotAvailableForOrganizationException";
|
|
1082
|
-
this.$fault = "client";
|
|
1083
1159
|
Object.setPrototypeOf(this, _PolicyTypeNotAvailableForOrganizationException.prototype);
|
|
1084
1160
|
this.Message = opts.Message;
|
|
1085
1161
|
}
|
|
1086
1162
|
};
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1163
|
+
var OrganizationNotEmptyException = class _OrganizationNotEmptyException extends OrganizationsServiceException {
|
|
1164
|
+
static {
|
|
1165
|
+
__name(this, "OrganizationNotEmptyException");
|
|
1166
|
+
}
|
|
1167
|
+
name = "OrganizationNotEmptyException";
|
|
1168
|
+
$fault = "client";
|
|
1169
|
+
Message;
|
|
1090
1170
|
/**
|
|
1091
1171
|
* @internal
|
|
1092
1172
|
*/
|
|
@@ -1096,15 +1176,17 @@ var _OrganizationNotEmptyException = class _OrganizationNotEmptyException extend
|
|
|
1096
1176
|
$fault: "client",
|
|
1097
1177
|
...opts
|
|
1098
1178
|
});
|
|
1099
|
-
this.name = "OrganizationNotEmptyException";
|
|
1100
|
-
this.$fault = "client";
|
|
1101
1179
|
Object.setPrototypeOf(this, _OrganizationNotEmptyException.prototype);
|
|
1102
1180
|
this.Message = opts.Message;
|
|
1103
1181
|
}
|
|
1104
1182
|
};
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1183
|
+
var OrganizationalUnitNotEmptyException = class _OrganizationalUnitNotEmptyException extends OrganizationsServiceException {
|
|
1184
|
+
static {
|
|
1185
|
+
__name(this, "OrganizationalUnitNotEmptyException");
|
|
1186
|
+
}
|
|
1187
|
+
name = "OrganizationalUnitNotEmptyException";
|
|
1188
|
+
$fault = "client";
|
|
1189
|
+
Message;
|
|
1108
1190
|
/**
|
|
1109
1191
|
* @internal
|
|
1110
1192
|
*/
|
|
@@ -1114,15 +1196,17 @@ var _OrganizationalUnitNotEmptyException = class _OrganizationalUnitNotEmptyExce
|
|
|
1114
1196
|
$fault: "client",
|
|
1115
1197
|
...opts
|
|
1116
1198
|
});
|
|
1117
|
-
this.name = "OrganizationalUnitNotEmptyException";
|
|
1118
|
-
this.$fault = "client";
|
|
1119
1199
|
Object.setPrototypeOf(this, _OrganizationalUnitNotEmptyException.prototype);
|
|
1120
1200
|
this.Message = opts.Message;
|
|
1121
1201
|
}
|
|
1122
1202
|
};
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1203
|
+
var OrganizationalUnitNotFoundException = class _OrganizationalUnitNotFoundException extends OrganizationsServiceException {
|
|
1204
|
+
static {
|
|
1205
|
+
__name(this, "OrganizationalUnitNotFoundException");
|
|
1206
|
+
}
|
|
1207
|
+
name = "OrganizationalUnitNotFoundException";
|
|
1208
|
+
$fault = "client";
|
|
1209
|
+
Message;
|
|
1126
1210
|
/**
|
|
1127
1211
|
* @internal
|
|
1128
1212
|
*/
|
|
@@ -1132,15 +1216,17 @@ var _OrganizationalUnitNotFoundException = class _OrganizationalUnitNotFoundExce
|
|
|
1132
1216
|
$fault: "client",
|
|
1133
1217
|
...opts
|
|
1134
1218
|
});
|
|
1135
|
-
this.name = "OrganizationalUnitNotFoundException";
|
|
1136
|
-
this.$fault = "client";
|
|
1137
1219
|
Object.setPrototypeOf(this, _OrganizationalUnitNotFoundException.prototype);
|
|
1138
1220
|
this.Message = opts.Message;
|
|
1139
1221
|
}
|
|
1140
1222
|
};
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1223
|
+
var PolicyInUseException = class _PolicyInUseException extends OrganizationsServiceException {
|
|
1224
|
+
static {
|
|
1225
|
+
__name(this, "PolicyInUseException");
|
|
1226
|
+
}
|
|
1227
|
+
name = "PolicyInUseException";
|
|
1228
|
+
$fault = "client";
|
|
1229
|
+
Message;
|
|
1144
1230
|
/**
|
|
1145
1231
|
* @internal
|
|
1146
1232
|
*/
|
|
@@ -1150,15 +1236,17 @@ var _PolicyInUseException = class _PolicyInUseException extends OrganizationsSer
|
|
|
1150
1236
|
$fault: "client",
|
|
1151
1237
|
...opts
|
|
1152
1238
|
});
|
|
1153
|
-
this.name = "PolicyInUseException";
|
|
1154
|
-
this.$fault = "client";
|
|
1155
1239
|
Object.setPrototypeOf(this, _PolicyInUseException.prototype);
|
|
1156
1240
|
this.Message = opts.Message;
|
|
1157
1241
|
}
|
|
1158
1242
|
};
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1243
|
+
var ResourcePolicyNotFoundException = class _ResourcePolicyNotFoundException extends OrganizationsServiceException {
|
|
1244
|
+
static {
|
|
1245
|
+
__name(this, "ResourcePolicyNotFoundException");
|
|
1246
|
+
}
|
|
1247
|
+
name = "ResourcePolicyNotFoundException";
|
|
1248
|
+
$fault = "client";
|
|
1249
|
+
Message;
|
|
1162
1250
|
/**
|
|
1163
1251
|
* @internal
|
|
1164
1252
|
*/
|
|
@@ -1168,15 +1256,17 @@ var _ResourcePolicyNotFoundException = class _ResourcePolicyNotFoundException ex
|
|
|
1168
1256
|
$fault: "client",
|
|
1169
1257
|
...opts
|
|
1170
1258
|
});
|
|
1171
|
-
this.name = "ResourcePolicyNotFoundException";
|
|
1172
|
-
this.$fault = "client";
|
|
1173
1259
|
Object.setPrototypeOf(this, _ResourcePolicyNotFoundException.prototype);
|
|
1174
1260
|
this.Message = opts.Message;
|
|
1175
1261
|
}
|
|
1176
1262
|
};
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1263
|
+
var CreateAccountStatusNotFoundException = class _CreateAccountStatusNotFoundException extends OrganizationsServiceException {
|
|
1264
|
+
static {
|
|
1265
|
+
__name(this, "CreateAccountStatusNotFoundException");
|
|
1266
|
+
}
|
|
1267
|
+
name = "CreateAccountStatusNotFoundException";
|
|
1268
|
+
$fault = "client";
|
|
1269
|
+
Message;
|
|
1180
1270
|
/**
|
|
1181
1271
|
* @internal
|
|
1182
1272
|
*/
|
|
@@ -1186,14 +1276,10 @@ var _CreateAccountStatusNotFoundException = class _CreateAccountStatusNotFoundEx
|
|
|
1186
1276
|
$fault: "client",
|
|
1187
1277
|
...opts
|
|
1188
1278
|
});
|
|
1189
|
-
this.name = "CreateAccountStatusNotFoundException";
|
|
1190
|
-
this.$fault = "client";
|
|
1191
1279
|
Object.setPrototypeOf(this, _CreateAccountStatusNotFoundException.prototype);
|
|
1192
1280
|
this.Message = opts.Message;
|
|
1193
1281
|
}
|
|
1194
1282
|
};
|
|
1195
|
-
__name(_CreateAccountStatusNotFoundException, "CreateAccountStatusNotFoundException");
|
|
1196
|
-
var CreateAccountStatusNotFoundException = _CreateAccountStatusNotFoundException;
|
|
1197
1283
|
var EffectivePolicyType = {
|
|
1198
1284
|
AISERVICES_OPT_OUT_POLICY: "AISERVICES_OPT_OUT_POLICY",
|
|
1199
1285
|
BACKUP_POLICY: "BACKUP_POLICY",
|
|
@@ -1201,7 +1287,13 @@ var EffectivePolicyType = {
|
|
|
1201
1287
|
DECLARATIVE_POLICY_EC2: "DECLARATIVE_POLICY_EC2",
|
|
1202
1288
|
TAG_POLICY: "TAG_POLICY"
|
|
1203
1289
|
};
|
|
1204
|
-
var
|
|
1290
|
+
var EffectivePolicyNotFoundException = class _EffectivePolicyNotFoundException extends OrganizationsServiceException {
|
|
1291
|
+
static {
|
|
1292
|
+
__name(this, "EffectivePolicyNotFoundException");
|
|
1293
|
+
}
|
|
1294
|
+
name = "EffectivePolicyNotFoundException";
|
|
1295
|
+
$fault = "client";
|
|
1296
|
+
Message;
|
|
1205
1297
|
/**
|
|
1206
1298
|
* @internal
|
|
1207
1299
|
*/
|
|
@@ -1211,15 +1303,17 @@ var _EffectivePolicyNotFoundException = class _EffectivePolicyNotFoundException
|
|
|
1211
1303
|
$fault: "client",
|
|
1212
1304
|
...opts
|
|
1213
1305
|
});
|
|
1214
|
-
this.name = "EffectivePolicyNotFoundException";
|
|
1215
|
-
this.$fault = "client";
|
|
1216
1306
|
Object.setPrototypeOf(this, _EffectivePolicyNotFoundException.prototype);
|
|
1217
1307
|
this.Message = opts.Message;
|
|
1218
1308
|
}
|
|
1219
1309
|
};
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1310
|
+
var PolicyNotAttachedException = class _PolicyNotAttachedException extends OrganizationsServiceException {
|
|
1311
|
+
static {
|
|
1312
|
+
__name(this, "PolicyNotAttachedException");
|
|
1313
|
+
}
|
|
1314
|
+
name = "PolicyNotAttachedException";
|
|
1315
|
+
$fault = "client";
|
|
1316
|
+
Message;
|
|
1223
1317
|
/**
|
|
1224
1318
|
* @internal
|
|
1225
1319
|
*/
|
|
@@ -1229,15 +1323,17 @@ var _PolicyNotAttachedException = class _PolicyNotAttachedException extends Orga
|
|
|
1229
1323
|
$fault: "client",
|
|
1230
1324
|
...opts
|
|
1231
1325
|
});
|
|
1232
|
-
this.name = "PolicyNotAttachedException";
|
|
1233
|
-
this.$fault = "client";
|
|
1234
1326
|
Object.setPrototypeOf(this, _PolicyNotAttachedException.prototype);
|
|
1235
1327
|
this.Message = opts.Message;
|
|
1236
1328
|
}
|
|
1237
1329
|
};
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1330
|
+
var RootNotFoundException = class _RootNotFoundException extends OrganizationsServiceException {
|
|
1331
|
+
static {
|
|
1332
|
+
__name(this, "RootNotFoundException");
|
|
1333
|
+
}
|
|
1334
|
+
name = "RootNotFoundException";
|
|
1335
|
+
$fault = "client";
|
|
1336
|
+
Message;
|
|
1241
1337
|
/**
|
|
1242
1338
|
* @internal
|
|
1243
1339
|
*/
|
|
@@ -1247,15 +1343,17 @@ var _RootNotFoundException = class _RootNotFoundException extends OrganizationsS
|
|
|
1247
1343
|
$fault: "client",
|
|
1248
1344
|
...opts
|
|
1249
1345
|
});
|
|
1250
|
-
this.name = "RootNotFoundException";
|
|
1251
|
-
this.$fault = "client";
|
|
1252
1346
|
Object.setPrototypeOf(this, _RootNotFoundException.prototype);
|
|
1253
1347
|
this.Message = opts.Message;
|
|
1254
1348
|
}
|
|
1255
1349
|
};
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1350
|
+
var PolicyTypeAlreadyEnabledException = class _PolicyTypeAlreadyEnabledException extends OrganizationsServiceException {
|
|
1351
|
+
static {
|
|
1352
|
+
__name(this, "PolicyTypeAlreadyEnabledException");
|
|
1353
|
+
}
|
|
1354
|
+
name = "PolicyTypeAlreadyEnabledException";
|
|
1355
|
+
$fault = "client";
|
|
1356
|
+
Message;
|
|
1259
1357
|
/**
|
|
1260
1358
|
* @internal
|
|
1261
1359
|
*/
|
|
@@ -1265,15 +1363,17 @@ var _PolicyTypeAlreadyEnabledException = class _PolicyTypeAlreadyEnabledExceptio
|
|
|
1265
1363
|
$fault: "client",
|
|
1266
1364
|
...opts
|
|
1267
1365
|
});
|
|
1268
|
-
this.name = "PolicyTypeAlreadyEnabledException";
|
|
1269
|
-
this.$fault = "client";
|
|
1270
1366
|
Object.setPrototypeOf(this, _PolicyTypeAlreadyEnabledException.prototype);
|
|
1271
1367
|
this.Message = opts.Message;
|
|
1272
1368
|
}
|
|
1273
1369
|
};
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1370
|
+
var DuplicateHandshakeException = class _DuplicateHandshakeException extends OrganizationsServiceException {
|
|
1371
|
+
static {
|
|
1372
|
+
__name(this, "DuplicateHandshakeException");
|
|
1373
|
+
}
|
|
1374
|
+
name = "DuplicateHandshakeException";
|
|
1375
|
+
$fault = "client";
|
|
1376
|
+
Message;
|
|
1277
1377
|
/**
|
|
1278
1378
|
* @internal
|
|
1279
1379
|
*/
|
|
@@ -1283,15 +1383,17 @@ var _DuplicateHandshakeException = class _DuplicateHandshakeException extends Or
|
|
|
1283
1383
|
$fault: "client",
|
|
1284
1384
|
...opts
|
|
1285
1385
|
});
|
|
1286
|
-
this.name = "DuplicateHandshakeException";
|
|
1287
|
-
this.$fault = "client";
|
|
1288
1386
|
Object.setPrototypeOf(this, _DuplicateHandshakeException.prototype);
|
|
1289
1387
|
this.Message = opts.Message;
|
|
1290
1388
|
}
|
|
1291
1389
|
};
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1390
|
+
var MasterCannotLeaveOrganizationException = class _MasterCannotLeaveOrganizationException extends OrganizationsServiceException {
|
|
1391
|
+
static {
|
|
1392
|
+
__name(this, "MasterCannotLeaveOrganizationException");
|
|
1393
|
+
}
|
|
1394
|
+
name = "MasterCannotLeaveOrganizationException";
|
|
1395
|
+
$fault = "client";
|
|
1396
|
+
Message;
|
|
1295
1397
|
/**
|
|
1296
1398
|
* @internal
|
|
1297
1399
|
*/
|
|
@@ -1301,19 +1403,21 @@ var _MasterCannotLeaveOrganizationException = class _MasterCannotLeaveOrganizati
|
|
|
1301
1403
|
$fault: "client",
|
|
1302
1404
|
...opts
|
|
1303
1405
|
});
|
|
1304
|
-
this.name = "MasterCannotLeaveOrganizationException";
|
|
1305
|
-
this.$fault = "client";
|
|
1306
1406
|
Object.setPrototypeOf(this, _MasterCannotLeaveOrganizationException.prototype);
|
|
1307
1407
|
this.Message = opts.Message;
|
|
1308
1408
|
}
|
|
1309
1409
|
};
|
|
1310
|
-
__name(_MasterCannotLeaveOrganizationException, "MasterCannotLeaveOrganizationException");
|
|
1311
|
-
var MasterCannotLeaveOrganizationException = _MasterCannotLeaveOrganizationException;
|
|
1312
1410
|
var ChildType = {
|
|
1313
1411
|
ACCOUNT: "ACCOUNT",
|
|
1314
1412
|
ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT"
|
|
1315
1413
|
};
|
|
1316
|
-
var
|
|
1414
|
+
var ChildNotFoundException = class _ChildNotFoundException extends OrganizationsServiceException {
|
|
1415
|
+
static {
|
|
1416
|
+
__name(this, "ChildNotFoundException");
|
|
1417
|
+
}
|
|
1418
|
+
name = "ChildNotFoundException";
|
|
1419
|
+
$fault = "client";
|
|
1420
|
+
Message;
|
|
1317
1421
|
/**
|
|
1318
1422
|
* @internal
|
|
1319
1423
|
*/
|
|
@@ -1323,14 +1427,10 @@ var _ChildNotFoundException = class _ChildNotFoundException extends Organization
|
|
|
1323
1427
|
$fault: "client",
|
|
1324
1428
|
...opts
|
|
1325
1429
|
});
|
|
1326
|
-
this.name = "ChildNotFoundException";
|
|
1327
|
-
this.$fault = "client";
|
|
1328
1430
|
Object.setPrototypeOf(this, _ChildNotFoundException.prototype);
|
|
1329
1431
|
this.Message = opts.Message;
|
|
1330
1432
|
}
|
|
1331
1433
|
};
|
|
1332
|
-
__name(_ChildNotFoundException, "ChildNotFoundException");
|
|
1333
|
-
var ChildNotFoundException = _ChildNotFoundException;
|
|
1334
1434
|
var ParentType = {
|
|
1335
1435
|
ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT",
|
|
1336
1436
|
ROOT: "ROOT"
|
|
@@ -1340,7 +1440,13 @@ var TargetType = {
|
|
|
1340
1440
|
ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT",
|
|
1341
1441
|
ROOT: "ROOT"
|
|
1342
1442
|
};
|
|
1343
|
-
var
|
|
1443
|
+
var DestinationParentNotFoundException = class _DestinationParentNotFoundException extends OrganizationsServiceException {
|
|
1444
|
+
static {
|
|
1445
|
+
__name(this, "DestinationParentNotFoundException");
|
|
1446
|
+
}
|
|
1447
|
+
name = "DestinationParentNotFoundException";
|
|
1448
|
+
$fault = "client";
|
|
1449
|
+
Message;
|
|
1344
1450
|
/**
|
|
1345
1451
|
* @internal
|
|
1346
1452
|
*/
|
|
@@ -1350,15 +1456,17 @@ var _DestinationParentNotFoundException = class _DestinationParentNotFoundExcept
|
|
|
1350
1456
|
$fault: "client",
|
|
1351
1457
|
...opts
|
|
1352
1458
|
});
|
|
1353
|
-
this.name = "DestinationParentNotFoundException";
|
|
1354
|
-
this.$fault = "client";
|
|
1355
1459
|
Object.setPrototypeOf(this, _DestinationParentNotFoundException.prototype);
|
|
1356
1460
|
this.Message = opts.Message;
|
|
1357
1461
|
}
|
|
1358
1462
|
};
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1463
|
+
var DuplicateAccountException = class _DuplicateAccountException extends OrganizationsServiceException {
|
|
1464
|
+
static {
|
|
1465
|
+
__name(this, "DuplicateAccountException");
|
|
1466
|
+
}
|
|
1467
|
+
name = "DuplicateAccountException";
|
|
1468
|
+
$fault = "client";
|
|
1469
|
+
Message;
|
|
1362
1470
|
/**
|
|
1363
1471
|
* @internal
|
|
1364
1472
|
*/
|
|
@@ -1368,15 +1476,17 @@ var _DuplicateAccountException = class _DuplicateAccountException extends Organi
|
|
|
1368
1476
|
$fault: "client",
|
|
1369
1477
|
...opts
|
|
1370
1478
|
});
|
|
1371
|
-
this.name = "DuplicateAccountException";
|
|
1372
|
-
this.$fault = "client";
|
|
1373
1479
|
Object.setPrototypeOf(this, _DuplicateAccountException.prototype);
|
|
1374
1480
|
this.Message = opts.Message;
|
|
1375
1481
|
}
|
|
1376
1482
|
};
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1483
|
+
var SourceParentNotFoundException = class _SourceParentNotFoundException extends OrganizationsServiceException {
|
|
1484
|
+
static {
|
|
1485
|
+
__name(this, "SourceParentNotFoundException");
|
|
1486
|
+
}
|
|
1487
|
+
name = "SourceParentNotFoundException";
|
|
1488
|
+
$fault = "client";
|
|
1489
|
+
Message;
|
|
1380
1490
|
/**
|
|
1381
1491
|
* @internal
|
|
1382
1492
|
*/
|
|
@@ -1386,14 +1496,10 @@ var _SourceParentNotFoundException = class _SourceParentNotFoundException extend
|
|
|
1386
1496
|
$fault: "client",
|
|
1387
1497
|
...opts
|
|
1388
1498
|
});
|
|
1389
|
-
this.name = "SourceParentNotFoundException";
|
|
1390
|
-
this.$fault = "client";
|
|
1391
1499
|
Object.setPrototypeOf(this, _SourceParentNotFoundException.prototype);
|
|
1392
1500
|
this.Message = opts.Message;
|
|
1393
1501
|
}
|
|
1394
1502
|
};
|
|
1395
|
-
__name(_SourceParentNotFoundException, "SourceParentNotFoundException");
|
|
1396
|
-
var SourceParentNotFoundException = _SourceParentNotFoundException;
|
|
1397
1503
|
var HandshakePartyFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1398
1504
|
...obj,
|
|
1399
1505
|
...obj.Id && { Id: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -3351,771 +3457,826 @@ function sharedHeaders(operation) {
|
|
|
3351
3457
|
__name(sharedHeaders, "sharedHeaders");
|
|
3352
3458
|
|
|
3353
3459
|
// src/commands/AcceptHandshakeCommand.ts
|
|
3354
|
-
var
|
|
3460
|
+
var AcceptHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3355
3461
|
return [
|
|
3356
3462
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3357
3463
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3358
3464
|
];
|
|
3359
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
|
+
}
|
|
3360
3469
|
};
|
|
3361
|
-
__name(_AcceptHandshakeCommand, "AcceptHandshakeCommand");
|
|
3362
|
-
var AcceptHandshakeCommand = _AcceptHandshakeCommand;
|
|
3363
3470
|
|
|
3364
3471
|
// src/commands/AttachPolicyCommand.ts
|
|
3365
3472
|
|
|
3366
3473
|
|
|
3367
3474
|
|
|
3368
|
-
var
|
|
3475
|
+
var AttachPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3369
3476
|
return [
|
|
3370
3477
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3371
3478
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3372
3479
|
];
|
|
3373
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
|
+
}
|
|
3374
3484
|
};
|
|
3375
|
-
__name(_AttachPolicyCommand, "AttachPolicyCommand");
|
|
3376
|
-
var AttachPolicyCommand = _AttachPolicyCommand;
|
|
3377
3485
|
|
|
3378
3486
|
// src/commands/CancelHandshakeCommand.ts
|
|
3379
3487
|
|
|
3380
3488
|
|
|
3381
3489
|
|
|
3382
|
-
var
|
|
3490
|
+
var CancelHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3383
3491
|
return [
|
|
3384
3492
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3385
3493
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3386
3494
|
];
|
|
3387
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
|
+
}
|
|
3388
3499
|
};
|
|
3389
|
-
__name(_CancelHandshakeCommand, "CancelHandshakeCommand");
|
|
3390
|
-
var CancelHandshakeCommand = _CancelHandshakeCommand;
|
|
3391
3500
|
|
|
3392
3501
|
// src/commands/CloseAccountCommand.ts
|
|
3393
3502
|
|
|
3394
3503
|
|
|
3395
3504
|
|
|
3396
|
-
var
|
|
3505
|
+
var CloseAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3397
3506
|
return [
|
|
3398
3507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3399
3508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3400
3509
|
];
|
|
3401
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
|
+
}
|
|
3402
3514
|
};
|
|
3403
|
-
__name(_CloseAccountCommand, "CloseAccountCommand");
|
|
3404
|
-
var CloseAccountCommand = _CloseAccountCommand;
|
|
3405
3515
|
|
|
3406
3516
|
// src/commands/CreateAccountCommand.ts
|
|
3407
3517
|
|
|
3408
3518
|
|
|
3409
3519
|
|
|
3410
|
-
var
|
|
3520
|
+
var CreateAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3411
3521
|
return [
|
|
3412
3522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3413
3523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3414
3524
|
];
|
|
3415
3525
|
}).s("AWSOrganizationsV20161128", "CreateAccount", {}).n("OrganizationsClient", "CreateAccountCommand").f(CreateAccountRequestFilterSensitiveLog, CreateAccountResponseFilterSensitiveLog).ser(se_CreateAccountCommand).de(de_CreateAccountCommand).build() {
|
|
3526
|
+
static {
|
|
3527
|
+
__name(this, "CreateAccountCommand");
|
|
3528
|
+
}
|
|
3416
3529
|
};
|
|
3417
|
-
__name(_CreateAccountCommand, "CreateAccountCommand");
|
|
3418
|
-
var CreateAccountCommand = _CreateAccountCommand;
|
|
3419
3530
|
|
|
3420
3531
|
// src/commands/CreateGovCloudAccountCommand.ts
|
|
3421
3532
|
|
|
3422
3533
|
|
|
3423
3534
|
|
|
3424
|
-
var
|
|
3535
|
+
var CreateGovCloudAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3425
3536
|
return [
|
|
3426
3537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3427
3538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3428
3539
|
];
|
|
3429
3540
|
}).s("AWSOrganizationsV20161128", "CreateGovCloudAccount", {}).n("OrganizationsClient", "CreateGovCloudAccountCommand").f(CreateGovCloudAccountRequestFilterSensitiveLog, CreateGovCloudAccountResponseFilterSensitiveLog).ser(se_CreateGovCloudAccountCommand).de(de_CreateGovCloudAccountCommand).build() {
|
|
3541
|
+
static {
|
|
3542
|
+
__name(this, "CreateGovCloudAccountCommand");
|
|
3543
|
+
}
|
|
3430
3544
|
};
|
|
3431
|
-
__name(_CreateGovCloudAccountCommand, "CreateGovCloudAccountCommand");
|
|
3432
|
-
var CreateGovCloudAccountCommand = _CreateGovCloudAccountCommand;
|
|
3433
3545
|
|
|
3434
3546
|
// src/commands/CreateOrganizationalUnitCommand.ts
|
|
3435
3547
|
|
|
3436
3548
|
|
|
3437
3549
|
|
|
3438
|
-
var
|
|
3550
|
+
var CreateOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3439
3551
|
return [
|
|
3440
3552
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3441
3553
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3442
3554
|
];
|
|
3443
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
|
+
}
|
|
3444
3559
|
};
|
|
3445
|
-
__name(_CreateOrganizationalUnitCommand, "CreateOrganizationalUnitCommand");
|
|
3446
|
-
var CreateOrganizationalUnitCommand = _CreateOrganizationalUnitCommand;
|
|
3447
3560
|
|
|
3448
3561
|
// src/commands/CreateOrganizationCommand.ts
|
|
3449
3562
|
|
|
3450
3563
|
|
|
3451
3564
|
|
|
3452
|
-
var
|
|
3565
|
+
var CreateOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3453
3566
|
return [
|
|
3454
3567
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3455
3568
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3456
3569
|
];
|
|
3457
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
|
+
}
|
|
3458
3574
|
};
|
|
3459
|
-
__name(_CreateOrganizationCommand, "CreateOrganizationCommand");
|
|
3460
|
-
var CreateOrganizationCommand = _CreateOrganizationCommand;
|
|
3461
3575
|
|
|
3462
3576
|
// src/commands/CreatePolicyCommand.ts
|
|
3463
3577
|
|
|
3464
3578
|
|
|
3465
3579
|
|
|
3466
|
-
var
|
|
3580
|
+
var CreatePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3467
3581
|
return [
|
|
3468
3582
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3469
3583
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3470
3584
|
];
|
|
3471
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
|
+
}
|
|
3472
3589
|
};
|
|
3473
|
-
__name(_CreatePolicyCommand, "CreatePolicyCommand");
|
|
3474
|
-
var CreatePolicyCommand = _CreatePolicyCommand;
|
|
3475
3590
|
|
|
3476
3591
|
// src/commands/DeclineHandshakeCommand.ts
|
|
3477
3592
|
|
|
3478
3593
|
|
|
3479
3594
|
|
|
3480
|
-
var
|
|
3595
|
+
var DeclineHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3481
3596
|
return [
|
|
3482
3597
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3483
3598
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3484
3599
|
];
|
|
3485
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
|
+
}
|
|
3486
3604
|
};
|
|
3487
|
-
__name(_DeclineHandshakeCommand, "DeclineHandshakeCommand");
|
|
3488
|
-
var DeclineHandshakeCommand = _DeclineHandshakeCommand;
|
|
3489
3605
|
|
|
3490
3606
|
// src/commands/DeleteOrganizationalUnitCommand.ts
|
|
3491
3607
|
|
|
3492
3608
|
|
|
3493
3609
|
|
|
3494
|
-
var
|
|
3610
|
+
var DeleteOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3495
3611
|
return [
|
|
3496
3612
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3497
3613
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3498
3614
|
];
|
|
3499
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
|
+
}
|
|
3500
3619
|
};
|
|
3501
|
-
__name(_DeleteOrganizationalUnitCommand, "DeleteOrganizationalUnitCommand");
|
|
3502
|
-
var DeleteOrganizationalUnitCommand = _DeleteOrganizationalUnitCommand;
|
|
3503
3620
|
|
|
3504
3621
|
// src/commands/DeleteOrganizationCommand.ts
|
|
3505
3622
|
|
|
3506
3623
|
|
|
3507
3624
|
|
|
3508
|
-
var
|
|
3625
|
+
var DeleteOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3509
3626
|
return [
|
|
3510
3627
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3511
3628
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3512
3629
|
];
|
|
3513
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
|
+
}
|
|
3514
3634
|
};
|
|
3515
|
-
__name(_DeleteOrganizationCommand, "DeleteOrganizationCommand");
|
|
3516
|
-
var DeleteOrganizationCommand = _DeleteOrganizationCommand;
|
|
3517
3635
|
|
|
3518
3636
|
// src/commands/DeletePolicyCommand.ts
|
|
3519
3637
|
|
|
3520
3638
|
|
|
3521
3639
|
|
|
3522
|
-
var
|
|
3640
|
+
var DeletePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3523
3641
|
return [
|
|
3524
3642
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3525
3643
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3526
3644
|
];
|
|
3527
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
|
+
}
|
|
3528
3649
|
};
|
|
3529
|
-
__name(_DeletePolicyCommand, "DeletePolicyCommand");
|
|
3530
|
-
var DeletePolicyCommand = _DeletePolicyCommand;
|
|
3531
3650
|
|
|
3532
3651
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
3533
3652
|
|
|
3534
3653
|
|
|
3535
3654
|
|
|
3536
|
-
var
|
|
3655
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3537
3656
|
return [
|
|
3538
3657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3539
3658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3540
3659
|
];
|
|
3541
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
|
+
}
|
|
3542
3664
|
};
|
|
3543
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
3544
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
3545
3665
|
|
|
3546
3666
|
// src/commands/DeregisterDelegatedAdministratorCommand.ts
|
|
3547
3667
|
|
|
3548
3668
|
|
|
3549
3669
|
|
|
3550
|
-
var
|
|
3670
|
+
var DeregisterDelegatedAdministratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3551
3671
|
return [
|
|
3552
3672
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3553
3673
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3554
3674
|
];
|
|
3555
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
|
+
}
|
|
3556
3679
|
};
|
|
3557
|
-
__name(_DeregisterDelegatedAdministratorCommand, "DeregisterDelegatedAdministratorCommand");
|
|
3558
|
-
var DeregisterDelegatedAdministratorCommand = _DeregisterDelegatedAdministratorCommand;
|
|
3559
3680
|
|
|
3560
3681
|
// src/commands/DescribeAccountCommand.ts
|
|
3561
3682
|
|
|
3562
3683
|
|
|
3563
3684
|
|
|
3564
|
-
var
|
|
3685
|
+
var DescribeAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3565
3686
|
return [
|
|
3566
3687
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3567
3688
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3568
3689
|
];
|
|
3569
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
|
+
}
|
|
3570
3694
|
};
|
|
3571
|
-
__name(_DescribeAccountCommand, "DescribeAccountCommand");
|
|
3572
|
-
var DescribeAccountCommand = _DescribeAccountCommand;
|
|
3573
3695
|
|
|
3574
3696
|
// src/commands/DescribeCreateAccountStatusCommand.ts
|
|
3575
3697
|
|
|
3576
3698
|
|
|
3577
3699
|
|
|
3578
|
-
var
|
|
3700
|
+
var DescribeCreateAccountStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3579
3701
|
return [
|
|
3580
3702
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3581
3703
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3582
3704
|
];
|
|
3583
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
|
+
}
|
|
3584
3709
|
};
|
|
3585
|
-
__name(_DescribeCreateAccountStatusCommand, "DescribeCreateAccountStatusCommand");
|
|
3586
|
-
var DescribeCreateAccountStatusCommand = _DescribeCreateAccountStatusCommand;
|
|
3587
3710
|
|
|
3588
3711
|
// src/commands/DescribeEffectivePolicyCommand.ts
|
|
3589
3712
|
|
|
3590
3713
|
|
|
3591
3714
|
|
|
3592
|
-
var
|
|
3715
|
+
var DescribeEffectivePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3593
3716
|
return [
|
|
3594
3717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3595
3718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3596
3719
|
];
|
|
3597
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
|
+
}
|
|
3598
3724
|
};
|
|
3599
|
-
__name(_DescribeEffectivePolicyCommand, "DescribeEffectivePolicyCommand");
|
|
3600
|
-
var DescribeEffectivePolicyCommand = _DescribeEffectivePolicyCommand;
|
|
3601
3725
|
|
|
3602
3726
|
// src/commands/DescribeHandshakeCommand.ts
|
|
3603
3727
|
|
|
3604
3728
|
|
|
3605
3729
|
|
|
3606
|
-
var
|
|
3730
|
+
var DescribeHandshakeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3607
3731
|
return [
|
|
3608
3732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3609
3733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3610
3734
|
];
|
|
3611
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
|
+
}
|
|
3612
3739
|
};
|
|
3613
|
-
__name(_DescribeHandshakeCommand, "DescribeHandshakeCommand");
|
|
3614
|
-
var DescribeHandshakeCommand = _DescribeHandshakeCommand;
|
|
3615
3740
|
|
|
3616
3741
|
// src/commands/DescribeOrganizationalUnitCommand.ts
|
|
3617
3742
|
|
|
3618
3743
|
|
|
3619
3744
|
|
|
3620
|
-
var
|
|
3745
|
+
var DescribeOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3621
3746
|
return [
|
|
3622
3747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3623
3748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3624
3749
|
];
|
|
3625
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
|
+
}
|
|
3626
3754
|
};
|
|
3627
|
-
__name(_DescribeOrganizationalUnitCommand, "DescribeOrganizationalUnitCommand");
|
|
3628
|
-
var DescribeOrganizationalUnitCommand = _DescribeOrganizationalUnitCommand;
|
|
3629
3755
|
|
|
3630
3756
|
// src/commands/DescribeOrganizationCommand.ts
|
|
3631
3757
|
|
|
3632
3758
|
|
|
3633
3759
|
|
|
3634
|
-
var
|
|
3760
|
+
var DescribeOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3635
3761
|
return [
|
|
3636
3762
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3637
3763
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3638
3764
|
];
|
|
3639
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
|
+
}
|
|
3640
3769
|
};
|
|
3641
|
-
__name(_DescribeOrganizationCommand, "DescribeOrganizationCommand");
|
|
3642
|
-
var DescribeOrganizationCommand = _DescribeOrganizationCommand;
|
|
3643
3770
|
|
|
3644
3771
|
// src/commands/DescribePolicyCommand.ts
|
|
3645
3772
|
|
|
3646
3773
|
|
|
3647
3774
|
|
|
3648
|
-
var
|
|
3775
|
+
var DescribePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3649
3776
|
return [
|
|
3650
3777
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3651
3778
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3652
3779
|
];
|
|
3653
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
|
+
}
|
|
3654
3784
|
};
|
|
3655
|
-
__name(_DescribePolicyCommand, "DescribePolicyCommand");
|
|
3656
|
-
var DescribePolicyCommand = _DescribePolicyCommand;
|
|
3657
3785
|
|
|
3658
3786
|
// src/commands/DescribeResourcePolicyCommand.ts
|
|
3659
3787
|
|
|
3660
3788
|
|
|
3661
3789
|
|
|
3662
|
-
var
|
|
3790
|
+
var DescribeResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3663
3791
|
return [
|
|
3664
3792
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3665
3793
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3666
3794
|
];
|
|
3667
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
|
+
}
|
|
3668
3799
|
};
|
|
3669
|
-
__name(_DescribeResourcePolicyCommand, "DescribeResourcePolicyCommand");
|
|
3670
|
-
var DescribeResourcePolicyCommand = _DescribeResourcePolicyCommand;
|
|
3671
3800
|
|
|
3672
3801
|
// src/commands/DetachPolicyCommand.ts
|
|
3673
3802
|
|
|
3674
3803
|
|
|
3675
3804
|
|
|
3676
|
-
var
|
|
3805
|
+
var DetachPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3677
3806
|
return [
|
|
3678
3807
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3679
3808
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3680
3809
|
];
|
|
3681
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
|
+
}
|
|
3682
3814
|
};
|
|
3683
|
-
__name(_DetachPolicyCommand, "DetachPolicyCommand");
|
|
3684
|
-
var DetachPolicyCommand = _DetachPolicyCommand;
|
|
3685
3815
|
|
|
3686
3816
|
// src/commands/DisableAWSServiceAccessCommand.ts
|
|
3687
3817
|
|
|
3688
3818
|
|
|
3689
3819
|
|
|
3690
|
-
var
|
|
3820
|
+
var DisableAWSServiceAccessCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3691
3821
|
return [
|
|
3692
3822
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3693
3823
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3694
3824
|
];
|
|
3695
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
|
+
}
|
|
3696
3829
|
};
|
|
3697
|
-
__name(_DisableAWSServiceAccessCommand, "DisableAWSServiceAccessCommand");
|
|
3698
|
-
var DisableAWSServiceAccessCommand = _DisableAWSServiceAccessCommand;
|
|
3699
3830
|
|
|
3700
3831
|
// src/commands/DisablePolicyTypeCommand.ts
|
|
3701
3832
|
|
|
3702
3833
|
|
|
3703
3834
|
|
|
3704
|
-
var
|
|
3835
|
+
var DisablePolicyTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3705
3836
|
return [
|
|
3706
3837
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3707
3838
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3708
3839
|
];
|
|
3709
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
|
+
}
|
|
3710
3844
|
};
|
|
3711
|
-
__name(_DisablePolicyTypeCommand, "DisablePolicyTypeCommand");
|
|
3712
|
-
var DisablePolicyTypeCommand = _DisablePolicyTypeCommand;
|
|
3713
3845
|
|
|
3714
3846
|
// src/commands/EnableAllFeaturesCommand.ts
|
|
3715
3847
|
|
|
3716
3848
|
|
|
3717
3849
|
|
|
3718
|
-
var
|
|
3850
|
+
var EnableAllFeaturesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3719
3851
|
return [
|
|
3720
3852
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3721
3853
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3722
3854
|
];
|
|
3723
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
|
+
}
|
|
3724
3859
|
};
|
|
3725
|
-
__name(_EnableAllFeaturesCommand, "EnableAllFeaturesCommand");
|
|
3726
|
-
var EnableAllFeaturesCommand = _EnableAllFeaturesCommand;
|
|
3727
3860
|
|
|
3728
3861
|
// src/commands/EnableAWSServiceAccessCommand.ts
|
|
3729
3862
|
|
|
3730
3863
|
|
|
3731
3864
|
|
|
3732
|
-
var
|
|
3865
|
+
var EnableAWSServiceAccessCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3733
3866
|
return [
|
|
3734
3867
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3735
3868
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3736
3869
|
];
|
|
3737
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
|
+
}
|
|
3738
3874
|
};
|
|
3739
|
-
__name(_EnableAWSServiceAccessCommand, "EnableAWSServiceAccessCommand");
|
|
3740
|
-
var EnableAWSServiceAccessCommand = _EnableAWSServiceAccessCommand;
|
|
3741
3875
|
|
|
3742
3876
|
// src/commands/EnablePolicyTypeCommand.ts
|
|
3743
3877
|
|
|
3744
3878
|
|
|
3745
3879
|
|
|
3746
|
-
var
|
|
3880
|
+
var EnablePolicyTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3747
3881
|
return [
|
|
3748
3882
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3749
3883
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3750
3884
|
];
|
|
3751
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
|
+
}
|
|
3752
3889
|
};
|
|
3753
|
-
__name(_EnablePolicyTypeCommand, "EnablePolicyTypeCommand");
|
|
3754
|
-
var EnablePolicyTypeCommand = _EnablePolicyTypeCommand;
|
|
3755
3890
|
|
|
3756
3891
|
// src/commands/InviteAccountToOrganizationCommand.ts
|
|
3757
3892
|
|
|
3758
3893
|
|
|
3759
3894
|
|
|
3760
|
-
var
|
|
3895
|
+
var InviteAccountToOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3761
3896
|
return [
|
|
3762
3897
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3763
3898
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3764
3899
|
];
|
|
3765
3900
|
}).s("AWSOrganizationsV20161128", "InviteAccountToOrganization", {}).n("OrganizationsClient", "InviteAccountToOrganizationCommand").f(InviteAccountToOrganizationRequestFilterSensitiveLog, InviteAccountToOrganizationResponseFilterSensitiveLog).ser(se_InviteAccountToOrganizationCommand).de(de_InviteAccountToOrganizationCommand).build() {
|
|
3901
|
+
static {
|
|
3902
|
+
__name(this, "InviteAccountToOrganizationCommand");
|
|
3903
|
+
}
|
|
3766
3904
|
};
|
|
3767
|
-
__name(_InviteAccountToOrganizationCommand, "InviteAccountToOrganizationCommand");
|
|
3768
|
-
var InviteAccountToOrganizationCommand = _InviteAccountToOrganizationCommand;
|
|
3769
3905
|
|
|
3770
3906
|
// src/commands/LeaveOrganizationCommand.ts
|
|
3771
3907
|
|
|
3772
3908
|
|
|
3773
3909
|
|
|
3774
|
-
var
|
|
3910
|
+
var LeaveOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3775
3911
|
return [
|
|
3776
3912
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3777
3913
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3778
3914
|
];
|
|
3779
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
|
+
}
|
|
3780
3919
|
};
|
|
3781
|
-
__name(_LeaveOrganizationCommand, "LeaveOrganizationCommand");
|
|
3782
|
-
var LeaveOrganizationCommand = _LeaveOrganizationCommand;
|
|
3783
3920
|
|
|
3784
3921
|
// src/commands/ListAccountsCommand.ts
|
|
3785
3922
|
|
|
3786
3923
|
|
|
3787
3924
|
|
|
3788
|
-
var
|
|
3925
|
+
var ListAccountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3789
3926
|
return [
|
|
3790
3927
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3791
3928
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3792
3929
|
];
|
|
3793
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
|
+
}
|
|
3794
3934
|
};
|
|
3795
|
-
__name(_ListAccountsCommand, "ListAccountsCommand");
|
|
3796
|
-
var ListAccountsCommand = _ListAccountsCommand;
|
|
3797
3935
|
|
|
3798
3936
|
// src/commands/ListAccountsForParentCommand.ts
|
|
3799
3937
|
|
|
3800
3938
|
|
|
3801
3939
|
|
|
3802
|
-
var
|
|
3940
|
+
var ListAccountsForParentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3803
3941
|
return [
|
|
3804
3942
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3805
3943
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3806
3944
|
];
|
|
3807
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
|
+
}
|
|
3808
3949
|
};
|
|
3809
|
-
__name(_ListAccountsForParentCommand, "ListAccountsForParentCommand");
|
|
3810
|
-
var ListAccountsForParentCommand = _ListAccountsForParentCommand;
|
|
3811
3950
|
|
|
3812
3951
|
// src/commands/ListAWSServiceAccessForOrganizationCommand.ts
|
|
3813
3952
|
|
|
3814
3953
|
|
|
3815
3954
|
|
|
3816
|
-
var
|
|
3955
|
+
var ListAWSServiceAccessForOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3817
3956
|
return [
|
|
3818
3957
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3819
3958
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3820
3959
|
];
|
|
3821
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
|
+
}
|
|
3822
3964
|
};
|
|
3823
|
-
__name(_ListAWSServiceAccessForOrganizationCommand, "ListAWSServiceAccessForOrganizationCommand");
|
|
3824
|
-
var ListAWSServiceAccessForOrganizationCommand = _ListAWSServiceAccessForOrganizationCommand;
|
|
3825
3965
|
|
|
3826
3966
|
// src/commands/ListChildrenCommand.ts
|
|
3827
3967
|
|
|
3828
3968
|
|
|
3829
3969
|
|
|
3830
|
-
var
|
|
3970
|
+
var ListChildrenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3831
3971
|
return [
|
|
3832
3972
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3833
3973
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3834
3974
|
];
|
|
3835
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
|
+
}
|
|
3836
3979
|
};
|
|
3837
|
-
__name(_ListChildrenCommand, "ListChildrenCommand");
|
|
3838
|
-
var ListChildrenCommand = _ListChildrenCommand;
|
|
3839
3980
|
|
|
3840
3981
|
// src/commands/ListCreateAccountStatusCommand.ts
|
|
3841
3982
|
|
|
3842
3983
|
|
|
3843
3984
|
|
|
3844
|
-
var
|
|
3985
|
+
var ListCreateAccountStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3845
3986
|
return [
|
|
3846
3987
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3847
3988
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3848
3989
|
];
|
|
3849
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
|
+
}
|
|
3850
3994
|
};
|
|
3851
|
-
__name(_ListCreateAccountStatusCommand, "ListCreateAccountStatusCommand");
|
|
3852
|
-
var ListCreateAccountStatusCommand = _ListCreateAccountStatusCommand;
|
|
3853
3995
|
|
|
3854
3996
|
// src/commands/ListDelegatedAdministratorsCommand.ts
|
|
3855
3997
|
|
|
3856
3998
|
|
|
3857
3999
|
|
|
3858
|
-
var
|
|
4000
|
+
var ListDelegatedAdministratorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3859
4001
|
return [
|
|
3860
4002
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3861
4003
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3862
4004
|
];
|
|
3863
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
|
+
}
|
|
3864
4009
|
};
|
|
3865
|
-
__name(_ListDelegatedAdministratorsCommand, "ListDelegatedAdministratorsCommand");
|
|
3866
|
-
var ListDelegatedAdministratorsCommand = _ListDelegatedAdministratorsCommand;
|
|
3867
4010
|
|
|
3868
4011
|
// src/commands/ListDelegatedServicesForAccountCommand.ts
|
|
3869
4012
|
|
|
3870
4013
|
|
|
3871
4014
|
|
|
3872
|
-
var
|
|
4015
|
+
var ListDelegatedServicesForAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3873
4016
|
return [
|
|
3874
4017
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3875
4018
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3876
4019
|
];
|
|
3877
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
|
+
}
|
|
3878
4024
|
};
|
|
3879
|
-
__name(_ListDelegatedServicesForAccountCommand, "ListDelegatedServicesForAccountCommand");
|
|
3880
|
-
var ListDelegatedServicesForAccountCommand = _ListDelegatedServicesForAccountCommand;
|
|
3881
4025
|
|
|
3882
4026
|
// src/commands/ListHandshakesForAccountCommand.ts
|
|
3883
4027
|
|
|
3884
4028
|
|
|
3885
4029
|
|
|
3886
|
-
var
|
|
4030
|
+
var ListHandshakesForAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3887
4031
|
return [
|
|
3888
4032
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3889
4033
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3890
4034
|
];
|
|
3891
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
|
+
}
|
|
3892
4039
|
};
|
|
3893
|
-
__name(_ListHandshakesForAccountCommand, "ListHandshakesForAccountCommand");
|
|
3894
|
-
var ListHandshakesForAccountCommand = _ListHandshakesForAccountCommand;
|
|
3895
4040
|
|
|
3896
4041
|
// src/commands/ListHandshakesForOrganizationCommand.ts
|
|
3897
4042
|
|
|
3898
4043
|
|
|
3899
4044
|
|
|
3900
|
-
var
|
|
4045
|
+
var ListHandshakesForOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3901
4046
|
return [
|
|
3902
4047
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3903
4048
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3904
4049
|
];
|
|
3905
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
|
+
}
|
|
3906
4054
|
};
|
|
3907
|
-
__name(_ListHandshakesForOrganizationCommand, "ListHandshakesForOrganizationCommand");
|
|
3908
|
-
var ListHandshakesForOrganizationCommand = _ListHandshakesForOrganizationCommand;
|
|
3909
4055
|
|
|
3910
4056
|
// src/commands/ListOrganizationalUnitsForParentCommand.ts
|
|
3911
4057
|
|
|
3912
4058
|
|
|
3913
4059
|
|
|
3914
|
-
var
|
|
4060
|
+
var ListOrganizationalUnitsForParentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3915
4061
|
return [
|
|
3916
4062
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3917
4063
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3918
4064
|
];
|
|
3919
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
|
+
}
|
|
3920
4069
|
};
|
|
3921
|
-
__name(_ListOrganizationalUnitsForParentCommand, "ListOrganizationalUnitsForParentCommand");
|
|
3922
|
-
var ListOrganizationalUnitsForParentCommand = _ListOrganizationalUnitsForParentCommand;
|
|
3923
4070
|
|
|
3924
4071
|
// src/commands/ListParentsCommand.ts
|
|
3925
4072
|
|
|
3926
4073
|
|
|
3927
4074
|
|
|
3928
|
-
var
|
|
4075
|
+
var ListParentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3929
4076
|
return [
|
|
3930
4077
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3931
4078
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3932
4079
|
];
|
|
3933
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
|
+
}
|
|
3934
4084
|
};
|
|
3935
|
-
__name(_ListParentsCommand, "ListParentsCommand");
|
|
3936
|
-
var ListParentsCommand = _ListParentsCommand;
|
|
3937
4085
|
|
|
3938
4086
|
// src/commands/ListPoliciesCommand.ts
|
|
3939
4087
|
|
|
3940
4088
|
|
|
3941
4089
|
|
|
3942
|
-
var
|
|
4090
|
+
var ListPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3943
4091
|
return [
|
|
3944
4092
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3945
4093
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3946
4094
|
];
|
|
3947
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
|
+
}
|
|
3948
4099
|
};
|
|
3949
|
-
__name(_ListPoliciesCommand, "ListPoliciesCommand");
|
|
3950
|
-
var ListPoliciesCommand = _ListPoliciesCommand;
|
|
3951
4100
|
|
|
3952
4101
|
// src/commands/ListPoliciesForTargetCommand.ts
|
|
3953
4102
|
|
|
3954
4103
|
|
|
3955
4104
|
|
|
3956
|
-
var
|
|
4105
|
+
var ListPoliciesForTargetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3957
4106
|
return [
|
|
3958
4107
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3959
4108
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3960
4109
|
];
|
|
3961
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
|
+
}
|
|
3962
4114
|
};
|
|
3963
|
-
__name(_ListPoliciesForTargetCommand, "ListPoliciesForTargetCommand");
|
|
3964
|
-
var ListPoliciesForTargetCommand = _ListPoliciesForTargetCommand;
|
|
3965
4115
|
|
|
3966
4116
|
// src/commands/ListRootsCommand.ts
|
|
3967
4117
|
|
|
3968
4118
|
|
|
3969
4119
|
|
|
3970
|
-
var
|
|
4120
|
+
var ListRootsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3971
4121
|
return [
|
|
3972
4122
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3973
4123
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3974
4124
|
];
|
|
3975
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
|
+
}
|
|
3976
4129
|
};
|
|
3977
|
-
__name(_ListRootsCommand, "ListRootsCommand");
|
|
3978
|
-
var ListRootsCommand = _ListRootsCommand;
|
|
3979
4130
|
|
|
3980
4131
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3981
4132
|
|
|
3982
4133
|
|
|
3983
4134
|
|
|
3984
|
-
var
|
|
4135
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3985
4136
|
return [
|
|
3986
4137
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3987
4138
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3988
4139
|
];
|
|
3989
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
|
+
}
|
|
3990
4144
|
};
|
|
3991
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3992
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3993
4145
|
|
|
3994
4146
|
// src/commands/ListTargetsForPolicyCommand.ts
|
|
3995
4147
|
|
|
3996
4148
|
|
|
3997
4149
|
|
|
3998
|
-
var
|
|
4150
|
+
var ListTargetsForPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3999
4151
|
return [
|
|
4000
4152
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4001
4153
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4002
4154
|
];
|
|
4003
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
|
+
}
|
|
4004
4159
|
};
|
|
4005
|
-
__name(_ListTargetsForPolicyCommand, "ListTargetsForPolicyCommand");
|
|
4006
|
-
var ListTargetsForPolicyCommand = _ListTargetsForPolicyCommand;
|
|
4007
4160
|
|
|
4008
4161
|
// src/commands/MoveAccountCommand.ts
|
|
4009
4162
|
|
|
4010
4163
|
|
|
4011
4164
|
|
|
4012
|
-
var
|
|
4165
|
+
var MoveAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4013
4166
|
return [
|
|
4014
4167
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4015
4168
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4016
4169
|
];
|
|
4017
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
|
+
}
|
|
4018
4174
|
};
|
|
4019
|
-
__name(_MoveAccountCommand, "MoveAccountCommand");
|
|
4020
|
-
var MoveAccountCommand = _MoveAccountCommand;
|
|
4021
4175
|
|
|
4022
4176
|
// src/commands/PutResourcePolicyCommand.ts
|
|
4023
4177
|
|
|
4024
4178
|
|
|
4025
4179
|
|
|
4026
|
-
var
|
|
4180
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4027
4181
|
return [
|
|
4028
4182
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4029
4183
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4030
4184
|
];
|
|
4031
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
|
+
}
|
|
4032
4189
|
};
|
|
4033
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
4034
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
4035
4190
|
|
|
4036
4191
|
// src/commands/RegisterDelegatedAdministratorCommand.ts
|
|
4037
4192
|
|
|
4038
4193
|
|
|
4039
4194
|
|
|
4040
|
-
var
|
|
4195
|
+
var RegisterDelegatedAdministratorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4041
4196
|
return [
|
|
4042
4197
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4043
4198
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4044
4199
|
];
|
|
4045
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
|
+
}
|
|
4046
4204
|
};
|
|
4047
|
-
__name(_RegisterDelegatedAdministratorCommand, "RegisterDelegatedAdministratorCommand");
|
|
4048
|
-
var RegisterDelegatedAdministratorCommand = _RegisterDelegatedAdministratorCommand;
|
|
4049
4205
|
|
|
4050
4206
|
// src/commands/RemoveAccountFromOrganizationCommand.ts
|
|
4051
4207
|
|
|
4052
4208
|
|
|
4053
4209
|
|
|
4054
|
-
var
|
|
4210
|
+
var RemoveAccountFromOrganizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4055
4211
|
return [
|
|
4056
4212
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4057
4213
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4058
4214
|
];
|
|
4059
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
|
+
}
|
|
4060
4219
|
};
|
|
4061
|
-
__name(_RemoveAccountFromOrganizationCommand, "RemoveAccountFromOrganizationCommand");
|
|
4062
|
-
var RemoveAccountFromOrganizationCommand = _RemoveAccountFromOrganizationCommand;
|
|
4063
4220
|
|
|
4064
4221
|
// src/commands/TagResourceCommand.ts
|
|
4065
4222
|
|
|
4066
4223
|
|
|
4067
4224
|
|
|
4068
|
-
var
|
|
4225
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4069
4226
|
return [
|
|
4070
4227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4071
4228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4072
4229
|
];
|
|
4073
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
|
+
}
|
|
4074
4234
|
};
|
|
4075
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4076
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4077
4235
|
|
|
4078
4236
|
// src/commands/UntagResourceCommand.ts
|
|
4079
4237
|
|
|
4080
4238
|
|
|
4081
4239
|
|
|
4082
|
-
var
|
|
4240
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4083
4241
|
return [
|
|
4084
4242
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4085
4243
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4086
4244
|
];
|
|
4087
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
|
+
}
|
|
4088
4249
|
};
|
|
4089
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4090
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4091
4250
|
|
|
4092
4251
|
// src/commands/UpdateOrganizationalUnitCommand.ts
|
|
4093
4252
|
|
|
4094
4253
|
|
|
4095
4254
|
|
|
4096
|
-
var
|
|
4255
|
+
var UpdateOrganizationalUnitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4097
4256
|
return [
|
|
4098
4257
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4099
4258
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4100
4259
|
];
|
|
4101
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
|
+
}
|
|
4102
4264
|
};
|
|
4103
|
-
__name(_UpdateOrganizationalUnitCommand, "UpdateOrganizationalUnitCommand");
|
|
4104
|
-
var UpdateOrganizationalUnitCommand = _UpdateOrganizationalUnitCommand;
|
|
4105
4265
|
|
|
4106
4266
|
// src/commands/UpdatePolicyCommand.ts
|
|
4107
4267
|
|
|
4108
4268
|
|
|
4109
4269
|
|
|
4110
|
-
var
|
|
4270
|
+
var UpdatePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4111
4271
|
return [
|
|
4112
4272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4113
4273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4114
4274
|
];
|
|
4115
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
|
+
}
|
|
4116
4279
|
};
|
|
4117
|
-
__name(_UpdatePolicyCommand, "UpdatePolicyCommand");
|
|
4118
|
-
var UpdatePolicyCommand = _UpdatePolicyCommand;
|
|
4119
4280
|
|
|
4120
4281
|
// src/Organizations.ts
|
|
4121
4282
|
var commands = {
|
|
@@ -4175,10 +4336,11 @@ var commands = {
|
|
|
4175
4336
|
UpdateOrganizationalUnitCommand,
|
|
4176
4337
|
UpdatePolicyCommand
|
|
4177
4338
|
};
|
|
4178
|
-
var
|
|
4339
|
+
var Organizations = class extends OrganizationsClient {
|
|
4340
|
+
static {
|
|
4341
|
+
__name(this, "Organizations");
|
|
4342
|
+
}
|
|
4179
4343
|
};
|
|
4180
|
-
__name(_Organizations, "Organizations");
|
|
4181
|
-
var Organizations = _Organizations;
|
|
4182
4344
|
(0, import_smithy_client.createAggregatedClient)(commands, Organizations);
|
|
4183
4345
|
|
|
4184
4346
|
// src/pagination/ListAWSServiceAccessForOrganizationPaginator.ts
|