@cdk8s/awscdk-resolver 0.0.467 → 0.0.469
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/.jsii +3 -3
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +239 -201
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +73 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +230 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +265 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +17 -17
- package/node_modules/@aws-sdk/core/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +8 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +8 -2
- package/node_modules/@aws-sdk/credential-provider-node/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
- package/package.json +5 -5
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { CloudFormationClient } from "./CloudFormationClient";
|
|
3
4
|
import { ActivateOrganizationsAccessCommandInput, ActivateOrganizationsAccessCommandOutput } from "./commands/ActivateOrganizationsAccessCommand";
|
|
4
5
|
import { ActivateTypeCommandInput, ActivateTypeCommandOutput } from "./commands/ActivateTypeCommand";
|
|
@@ -663,6 +664,234 @@ export interface CloudFormation {
|
|
|
663
664
|
validateTemplate(args: ValidateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<ValidateTemplateCommandOutput>;
|
|
664
665
|
validateTemplate(args: ValidateTemplateCommandInput, cb: (err: any, data?: ValidateTemplateCommandOutput) => void): void;
|
|
665
666
|
validateTemplate(args: ValidateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateTemplateCommandOutput) => void): void;
|
|
667
|
+
/**
|
|
668
|
+
* @see {@link DescribeAccountLimitsCommand}
|
|
669
|
+
* @param args - command input.
|
|
670
|
+
* @param paginationConfig - optional pagination config.
|
|
671
|
+
* @returns AsyncIterable of {@link DescribeAccountLimitsCommandOutput}.
|
|
672
|
+
*/
|
|
673
|
+
paginateDescribeAccountLimits(args?: DescribeAccountLimitsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeAccountLimitsCommandOutput>;
|
|
674
|
+
/**
|
|
675
|
+
* @see {@link DescribeChangeSetCommand}
|
|
676
|
+
* @param args - command input.
|
|
677
|
+
* @param paginationConfig - optional pagination config.
|
|
678
|
+
* @returns AsyncIterable of {@link DescribeChangeSetCommandOutput}.
|
|
679
|
+
*/
|
|
680
|
+
paginateDescribeChangeSet(args: DescribeChangeSetCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeChangeSetCommandOutput>;
|
|
681
|
+
/**
|
|
682
|
+
* @see {@link DescribeEventsCommand}
|
|
683
|
+
* @param args - command input.
|
|
684
|
+
* @param paginationConfig - optional pagination config.
|
|
685
|
+
* @returns AsyncIterable of {@link DescribeEventsCommandOutput}.
|
|
686
|
+
*/
|
|
687
|
+
paginateDescribeEvents(args?: DescribeEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeEventsCommandOutput>;
|
|
688
|
+
/**
|
|
689
|
+
* @see {@link DescribeStackEventsCommand}
|
|
690
|
+
* @param args - command input.
|
|
691
|
+
* @param paginationConfig - optional pagination config.
|
|
692
|
+
* @returns AsyncIterable of {@link DescribeStackEventsCommandOutput}.
|
|
693
|
+
*/
|
|
694
|
+
paginateDescribeStackEvents(args: DescribeStackEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeStackEventsCommandOutput>;
|
|
695
|
+
/**
|
|
696
|
+
* @see {@link DescribeStackResourceDriftsCommand}
|
|
697
|
+
* @param args - command input.
|
|
698
|
+
* @param paginationConfig - optional pagination config.
|
|
699
|
+
* @returns AsyncIterable of {@link DescribeStackResourceDriftsCommandOutput}.
|
|
700
|
+
*/
|
|
701
|
+
paginateDescribeStackResourceDrifts(args: DescribeStackResourceDriftsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeStackResourceDriftsCommandOutput>;
|
|
702
|
+
/**
|
|
703
|
+
* @see {@link DescribeStacksCommand}
|
|
704
|
+
* @param args - command input.
|
|
705
|
+
* @param paginationConfig - optional pagination config.
|
|
706
|
+
* @returns AsyncIterable of {@link DescribeStacksCommandOutput}.
|
|
707
|
+
*/
|
|
708
|
+
paginateDescribeStacks(args?: DescribeStacksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeStacksCommandOutput>;
|
|
709
|
+
/**
|
|
710
|
+
* @see {@link ListChangeSetsCommand}
|
|
711
|
+
* @param args - command input.
|
|
712
|
+
* @param paginationConfig - optional pagination config.
|
|
713
|
+
* @returns AsyncIterable of {@link ListChangeSetsCommandOutput}.
|
|
714
|
+
*/
|
|
715
|
+
paginateListChangeSets(args: ListChangeSetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChangeSetsCommandOutput>;
|
|
716
|
+
/**
|
|
717
|
+
* @see {@link ListExportsCommand}
|
|
718
|
+
* @param args - command input.
|
|
719
|
+
* @param paginationConfig - optional pagination config.
|
|
720
|
+
* @returns AsyncIterable of {@link ListExportsCommandOutput}.
|
|
721
|
+
*/
|
|
722
|
+
paginateListExports(args?: ListExportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExportsCommandOutput>;
|
|
723
|
+
/**
|
|
724
|
+
* @see {@link ListGeneratedTemplatesCommand}
|
|
725
|
+
* @param args - command input.
|
|
726
|
+
* @param paginationConfig - optional pagination config.
|
|
727
|
+
* @returns AsyncIterable of {@link ListGeneratedTemplatesCommandOutput}.
|
|
728
|
+
*/
|
|
729
|
+
paginateListGeneratedTemplates(args?: ListGeneratedTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGeneratedTemplatesCommandOutput>;
|
|
730
|
+
/**
|
|
731
|
+
* @see {@link ListImportsCommand}
|
|
732
|
+
* @param args - command input.
|
|
733
|
+
* @param paginationConfig - optional pagination config.
|
|
734
|
+
* @returns AsyncIterable of {@link ListImportsCommandOutput}.
|
|
735
|
+
*/
|
|
736
|
+
paginateListImports(args: ListImportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListImportsCommandOutput>;
|
|
737
|
+
/**
|
|
738
|
+
* @see {@link ListResourceScanRelatedResourcesCommand}
|
|
739
|
+
* @param args - command input.
|
|
740
|
+
* @param paginationConfig - optional pagination config.
|
|
741
|
+
* @returns AsyncIterable of {@link ListResourceScanRelatedResourcesCommandOutput}.
|
|
742
|
+
*/
|
|
743
|
+
paginateListResourceScanRelatedResources(args: ListResourceScanRelatedResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceScanRelatedResourcesCommandOutput>;
|
|
744
|
+
/**
|
|
745
|
+
* @see {@link ListResourceScanResourcesCommand}
|
|
746
|
+
* @param args - command input.
|
|
747
|
+
* @param paginationConfig - optional pagination config.
|
|
748
|
+
* @returns AsyncIterable of {@link ListResourceScanResourcesCommandOutput}.
|
|
749
|
+
*/
|
|
750
|
+
paginateListResourceScanResources(args: ListResourceScanResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceScanResourcesCommandOutput>;
|
|
751
|
+
/**
|
|
752
|
+
* @see {@link ListResourceScansCommand}
|
|
753
|
+
* @param args - command input.
|
|
754
|
+
* @param paginationConfig - optional pagination config.
|
|
755
|
+
* @returns AsyncIterable of {@link ListResourceScansCommandOutput}.
|
|
756
|
+
*/
|
|
757
|
+
paginateListResourceScans(args?: ListResourceScansCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceScansCommandOutput>;
|
|
758
|
+
/**
|
|
759
|
+
* @see {@link ListStackInstancesCommand}
|
|
760
|
+
* @param args - command input.
|
|
761
|
+
* @param paginationConfig - optional pagination config.
|
|
762
|
+
* @returns AsyncIterable of {@link ListStackInstancesCommandOutput}.
|
|
763
|
+
*/
|
|
764
|
+
paginateListStackInstances(args: ListStackInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStackInstancesCommandOutput>;
|
|
765
|
+
/**
|
|
766
|
+
* @see {@link ListStackRefactorActionsCommand}
|
|
767
|
+
* @param args - command input.
|
|
768
|
+
* @param paginationConfig - optional pagination config.
|
|
769
|
+
* @returns AsyncIterable of {@link ListStackRefactorActionsCommandOutput}.
|
|
770
|
+
*/
|
|
771
|
+
paginateListStackRefactorActions(args: ListStackRefactorActionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStackRefactorActionsCommandOutput>;
|
|
772
|
+
/**
|
|
773
|
+
* @see {@link ListStackRefactorsCommand}
|
|
774
|
+
* @param args - command input.
|
|
775
|
+
* @param paginationConfig - optional pagination config.
|
|
776
|
+
* @returns AsyncIterable of {@link ListStackRefactorsCommandOutput}.
|
|
777
|
+
*/
|
|
778
|
+
paginateListStackRefactors(args?: ListStackRefactorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStackRefactorsCommandOutput>;
|
|
779
|
+
/**
|
|
780
|
+
* @see {@link ListStackResourcesCommand}
|
|
781
|
+
* @param args - command input.
|
|
782
|
+
* @param paginationConfig - optional pagination config.
|
|
783
|
+
* @returns AsyncIterable of {@link ListStackResourcesCommandOutput}.
|
|
784
|
+
*/
|
|
785
|
+
paginateListStackResources(args: ListStackResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStackResourcesCommandOutput>;
|
|
786
|
+
/**
|
|
787
|
+
* @see {@link ListStacksCommand}
|
|
788
|
+
* @param args - command input.
|
|
789
|
+
* @param paginationConfig - optional pagination config.
|
|
790
|
+
* @returns AsyncIterable of {@link ListStacksCommandOutput}.
|
|
791
|
+
*/
|
|
792
|
+
paginateListStacks(args?: ListStacksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStacksCommandOutput>;
|
|
793
|
+
/**
|
|
794
|
+
* @see {@link ListStackSetOperationResultsCommand}
|
|
795
|
+
* @param args - command input.
|
|
796
|
+
* @param paginationConfig - optional pagination config.
|
|
797
|
+
* @returns AsyncIterable of {@link ListStackSetOperationResultsCommandOutput}.
|
|
798
|
+
*/
|
|
799
|
+
paginateListStackSetOperationResults(args: ListStackSetOperationResultsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStackSetOperationResultsCommandOutput>;
|
|
800
|
+
/**
|
|
801
|
+
* @see {@link ListStackSetOperationsCommand}
|
|
802
|
+
* @param args - command input.
|
|
803
|
+
* @param paginationConfig - optional pagination config.
|
|
804
|
+
* @returns AsyncIterable of {@link ListStackSetOperationsCommandOutput}.
|
|
805
|
+
*/
|
|
806
|
+
paginateListStackSetOperations(args: ListStackSetOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStackSetOperationsCommandOutput>;
|
|
807
|
+
/**
|
|
808
|
+
* @see {@link ListStackSetsCommand}
|
|
809
|
+
* @param args - command input.
|
|
810
|
+
* @param paginationConfig - optional pagination config.
|
|
811
|
+
* @returns AsyncIterable of {@link ListStackSetsCommandOutput}.
|
|
812
|
+
*/
|
|
813
|
+
paginateListStackSets(args?: ListStackSetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStackSetsCommandOutput>;
|
|
814
|
+
/**
|
|
815
|
+
* @see {@link ListTypeRegistrationsCommand}
|
|
816
|
+
* @param args - command input.
|
|
817
|
+
* @param paginationConfig - optional pagination config.
|
|
818
|
+
* @returns AsyncIterable of {@link ListTypeRegistrationsCommandOutput}.
|
|
819
|
+
*/
|
|
820
|
+
paginateListTypeRegistrations(args?: ListTypeRegistrationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTypeRegistrationsCommandOutput>;
|
|
821
|
+
/**
|
|
822
|
+
* @see {@link ListTypesCommand}
|
|
823
|
+
* @param args - command input.
|
|
824
|
+
* @param paginationConfig - optional pagination config.
|
|
825
|
+
* @returns AsyncIterable of {@link ListTypesCommandOutput}.
|
|
826
|
+
*/
|
|
827
|
+
paginateListTypes(args?: ListTypesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTypesCommandOutput>;
|
|
828
|
+
/**
|
|
829
|
+
* @see {@link ListTypeVersionsCommand}
|
|
830
|
+
* @param args - command input.
|
|
831
|
+
* @param paginationConfig - optional pagination config.
|
|
832
|
+
* @returns AsyncIterable of {@link ListTypeVersionsCommandOutput}.
|
|
833
|
+
*/
|
|
834
|
+
paginateListTypeVersions(args?: ListTypeVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTypeVersionsCommandOutput>;
|
|
835
|
+
/**
|
|
836
|
+
* @see {@link DescribeChangeSetCommand}
|
|
837
|
+
* @param args - command input.
|
|
838
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
839
|
+
*/
|
|
840
|
+
waitUntilChangeSetCreateComplete(args: DescribeChangeSetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
841
|
+
/**
|
|
842
|
+
* @see {@link DescribeStackRefactorCommand}
|
|
843
|
+
* @param args - command input.
|
|
844
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
845
|
+
*/
|
|
846
|
+
waitUntilStackRefactorCreateComplete(args: DescribeStackRefactorCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
847
|
+
/**
|
|
848
|
+
* @see {@link DescribeStackRefactorCommand}
|
|
849
|
+
* @param args - command input.
|
|
850
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
851
|
+
*/
|
|
852
|
+
waitUntilStackRefactorExecuteComplete(args: DescribeStackRefactorCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
853
|
+
/**
|
|
854
|
+
* @see {@link DescribeStacksCommand}
|
|
855
|
+
* @param args - command input.
|
|
856
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
857
|
+
*/
|
|
858
|
+
waitUntilStackCreateComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
859
|
+
/**
|
|
860
|
+
* @see {@link DescribeStacksCommand}
|
|
861
|
+
* @param args - command input.
|
|
862
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
863
|
+
*/
|
|
864
|
+
waitUntilStackDeleteComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
865
|
+
/**
|
|
866
|
+
* @see {@link DescribeStacksCommand}
|
|
867
|
+
* @param args - command input.
|
|
868
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
869
|
+
*/
|
|
870
|
+
waitUntilStackExists(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
871
|
+
/**
|
|
872
|
+
* @see {@link DescribeStacksCommand}
|
|
873
|
+
* @param args - command input.
|
|
874
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
875
|
+
*/
|
|
876
|
+
waitUntilStackImportComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
877
|
+
/**
|
|
878
|
+
* @see {@link DescribeStacksCommand}
|
|
879
|
+
* @param args - command input.
|
|
880
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
881
|
+
*/
|
|
882
|
+
waitUntilStackRollbackComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
883
|
+
/**
|
|
884
|
+
* @see {@link DescribeStacksCommand}
|
|
885
|
+
* @param args - command input.
|
|
886
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
887
|
+
*/
|
|
888
|
+
waitUntilStackUpdateComplete(args: DescribeStacksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
889
|
+
/**
|
|
890
|
+
* @see {@link DescribeTypeRegistrationCommand}
|
|
891
|
+
* @param args - command input.
|
|
892
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
893
|
+
*/
|
|
894
|
+
waitUntilTypeRegistrationComplete(args: DescribeTypeRegistrationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<CloudFormation>, "client">): Promise<WaiterResult>;
|
|
666
895
|
}
|
|
667
896
|
/**
|
|
668
897
|
* <fullname>CloudFormation</fullname>
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import { CloudFormationClient } from "./CloudFormationClient";
|
|
3
9
|
import {
|
|
4
10
|
ActivateOrganizationsAccessCommandInput,
|
|
@@ -1575,6 +1581,264 @@ export interface CloudFormation {
|
|
|
1575
1581
|
options: __HttpHandlerOptions,
|
|
1576
1582
|
cb: (err: any, data?: ValidateTemplateCommandOutput) => void
|
|
1577
1583
|
): void;
|
|
1584
|
+
paginateDescribeAccountLimits(
|
|
1585
|
+
args?: DescribeAccountLimitsCommandInput,
|
|
1586
|
+
paginationConfig?: Pick<
|
|
1587
|
+
PaginationConfiguration,
|
|
1588
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1589
|
+
>
|
|
1590
|
+
): Paginator<DescribeAccountLimitsCommandOutput>;
|
|
1591
|
+
paginateDescribeChangeSet(
|
|
1592
|
+
args: DescribeChangeSetCommandInput,
|
|
1593
|
+
paginationConfig?: Pick<
|
|
1594
|
+
PaginationConfiguration,
|
|
1595
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1596
|
+
>
|
|
1597
|
+
): Paginator<DescribeChangeSetCommandOutput>;
|
|
1598
|
+
paginateDescribeEvents(
|
|
1599
|
+
args?: DescribeEventsCommandInput,
|
|
1600
|
+
paginationConfig?: Pick<
|
|
1601
|
+
PaginationConfiguration,
|
|
1602
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1603
|
+
>
|
|
1604
|
+
): Paginator<DescribeEventsCommandOutput>;
|
|
1605
|
+
paginateDescribeStackEvents(
|
|
1606
|
+
args: DescribeStackEventsCommandInput,
|
|
1607
|
+
paginationConfig?: Pick<
|
|
1608
|
+
PaginationConfiguration,
|
|
1609
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1610
|
+
>
|
|
1611
|
+
): Paginator<DescribeStackEventsCommandOutput>;
|
|
1612
|
+
paginateDescribeStackResourceDrifts(
|
|
1613
|
+
args: DescribeStackResourceDriftsCommandInput,
|
|
1614
|
+
paginationConfig?: Pick<
|
|
1615
|
+
PaginationConfiguration,
|
|
1616
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1617
|
+
>
|
|
1618
|
+
): Paginator<DescribeStackResourceDriftsCommandOutput>;
|
|
1619
|
+
paginateDescribeStacks(
|
|
1620
|
+
args?: DescribeStacksCommandInput,
|
|
1621
|
+
paginationConfig?: Pick<
|
|
1622
|
+
PaginationConfiguration,
|
|
1623
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1624
|
+
>
|
|
1625
|
+
): Paginator<DescribeStacksCommandOutput>;
|
|
1626
|
+
paginateListChangeSets(
|
|
1627
|
+
args: ListChangeSetsCommandInput,
|
|
1628
|
+
paginationConfig?: Pick<
|
|
1629
|
+
PaginationConfiguration,
|
|
1630
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1631
|
+
>
|
|
1632
|
+
): Paginator<ListChangeSetsCommandOutput>;
|
|
1633
|
+
paginateListExports(
|
|
1634
|
+
args?: ListExportsCommandInput,
|
|
1635
|
+
paginationConfig?: Pick<
|
|
1636
|
+
PaginationConfiguration,
|
|
1637
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1638
|
+
>
|
|
1639
|
+
): Paginator<ListExportsCommandOutput>;
|
|
1640
|
+
paginateListGeneratedTemplates(
|
|
1641
|
+
args?: ListGeneratedTemplatesCommandInput,
|
|
1642
|
+
paginationConfig?: Pick<
|
|
1643
|
+
PaginationConfiguration,
|
|
1644
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1645
|
+
>
|
|
1646
|
+
): Paginator<ListGeneratedTemplatesCommandOutput>;
|
|
1647
|
+
paginateListImports(
|
|
1648
|
+
args: ListImportsCommandInput,
|
|
1649
|
+
paginationConfig?: Pick<
|
|
1650
|
+
PaginationConfiguration,
|
|
1651
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1652
|
+
>
|
|
1653
|
+
): Paginator<ListImportsCommandOutput>;
|
|
1654
|
+
paginateListResourceScanRelatedResources(
|
|
1655
|
+
args: ListResourceScanRelatedResourcesCommandInput,
|
|
1656
|
+
paginationConfig?: Pick<
|
|
1657
|
+
PaginationConfiguration,
|
|
1658
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1659
|
+
>
|
|
1660
|
+
): Paginator<ListResourceScanRelatedResourcesCommandOutput>;
|
|
1661
|
+
paginateListResourceScanResources(
|
|
1662
|
+
args: ListResourceScanResourcesCommandInput,
|
|
1663
|
+
paginationConfig?: Pick<
|
|
1664
|
+
PaginationConfiguration,
|
|
1665
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1666
|
+
>
|
|
1667
|
+
): Paginator<ListResourceScanResourcesCommandOutput>;
|
|
1668
|
+
paginateListResourceScans(
|
|
1669
|
+
args?: ListResourceScansCommandInput,
|
|
1670
|
+
paginationConfig?: Pick<
|
|
1671
|
+
PaginationConfiguration,
|
|
1672
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1673
|
+
>
|
|
1674
|
+
): Paginator<ListResourceScansCommandOutput>;
|
|
1675
|
+
paginateListStackInstances(
|
|
1676
|
+
args: ListStackInstancesCommandInput,
|
|
1677
|
+
paginationConfig?: Pick<
|
|
1678
|
+
PaginationConfiguration,
|
|
1679
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1680
|
+
>
|
|
1681
|
+
): Paginator<ListStackInstancesCommandOutput>;
|
|
1682
|
+
paginateListStackRefactorActions(
|
|
1683
|
+
args: ListStackRefactorActionsCommandInput,
|
|
1684
|
+
paginationConfig?: Pick<
|
|
1685
|
+
PaginationConfiguration,
|
|
1686
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1687
|
+
>
|
|
1688
|
+
): Paginator<ListStackRefactorActionsCommandOutput>;
|
|
1689
|
+
paginateListStackRefactors(
|
|
1690
|
+
args?: ListStackRefactorsCommandInput,
|
|
1691
|
+
paginationConfig?: Pick<
|
|
1692
|
+
PaginationConfiguration,
|
|
1693
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1694
|
+
>
|
|
1695
|
+
): Paginator<ListStackRefactorsCommandOutput>;
|
|
1696
|
+
paginateListStackResources(
|
|
1697
|
+
args: ListStackResourcesCommandInput,
|
|
1698
|
+
paginationConfig?: Pick<
|
|
1699
|
+
PaginationConfiguration,
|
|
1700
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1701
|
+
>
|
|
1702
|
+
): Paginator<ListStackResourcesCommandOutput>;
|
|
1703
|
+
paginateListStacks(
|
|
1704
|
+
args?: ListStacksCommandInput,
|
|
1705
|
+
paginationConfig?: Pick<
|
|
1706
|
+
PaginationConfiguration,
|
|
1707
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1708
|
+
>
|
|
1709
|
+
): Paginator<ListStacksCommandOutput>;
|
|
1710
|
+
paginateListStackSetOperationResults(
|
|
1711
|
+
args: ListStackSetOperationResultsCommandInput,
|
|
1712
|
+
paginationConfig?: Pick<
|
|
1713
|
+
PaginationConfiguration,
|
|
1714
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1715
|
+
>
|
|
1716
|
+
): Paginator<ListStackSetOperationResultsCommandOutput>;
|
|
1717
|
+
paginateListStackSetOperations(
|
|
1718
|
+
args: ListStackSetOperationsCommandInput,
|
|
1719
|
+
paginationConfig?: Pick<
|
|
1720
|
+
PaginationConfiguration,
|
|
1721
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1722
|
+
>
|
|
1723
|
+
): Paginator<ListStackSetOperationsCommandOutput>;
|
|
1724
|
+
paginateListStackSets(
|
|
1725
|
+
args?: ListStackSetsCommandInput,
|
|
1726
|
+
paginationConfig?: Pick<
|
|
1727
|
+
PaginationConfiguration,
|
|
1728
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1729
|
+
>
|
|
1730
|
+
): Paginator<ListStackSetsCommandOutput>;
|
|
1731
|
+
paginateListTypeRegistrations(
|
|
1732
|
+
args?: ListTypeRegistrationsCommandInput,
|
|
1733
|
+
paginationConfig?: Pick<
|
|
1734
|
+
PaginationConfiguration,
|
|
1735
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1736
|
+
>
|
|
1737
|
+
): Paginator<ListTypeRegistrationsCommandOutput>;
|
|
1738
|
+
paginateListTypes(
|
|
1739
|
+
args?: ListTypesCommandInput,
|
|
1740
|
+
paginationConfig?: Pick<
|
|
1741
|
+
PaginationConfiguration,
|
|
1742
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1743
|
+
>
|
|
1744
|
+
): Paginator<ListTypesCommandOutput>;
|
|
1745
|
+
paginateListTypeVersions(
|
|
1746
|
+
args?: ListTypeVersionsCommandInput,
|
|
1747
|
+
paginationConfig?: Pick<
|
|
1748
|
+
PaginationConfiguration,
|
|
1749
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1750
|
+
>
|
|
1751
|
+
): Paginator<ListTypeVersionsCommandOutput>;
|
|
1752
|
+
waitUntilChangeSetCreateComplete(
|
|
1753
|
+
args: DescribeChangeSetCommandInput,
|
|
1754
|
+
waiterConfig:
|
|
1755
|
+
| number
|
|
1756
|
+
| Pick<
|
|
1757
|
+
WaiterConfiguration<CloudFormation>,
|
|
1758
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1759
|
+
>
|
|
1760
|
+
): Promise<WaiterResult>;
|
|
1761
|
+
waitUntilStackRefactorCreateComplete(
|
|
1762
|
+
args: DescribeStackRefactorCommandInput,
|
|
1763
|
+
waiterConfig:
|
|
1764
|
+
| number
|
|
1765
|
+
| Pick<
|
|
1766
|
+
WaiterConfiguration<CloudFormation>,
|
|
1767
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1768
|
+
>
|
|
1769
|
+
): Promise<WaiterResult>;
|
|
1770
|
+
waitUntilStackRefactorExecuteComplete(
|
|
1771
|
+
args: DescribeStackRefactorCommandInput,
|
|
1772
|
+
waiterConfig:
|
|
1773
|
+
| number
|
|
1774
|
+
| Pick<
|
|
1775
|
+
WaiterConfiguration<CloudFormation>,
|
|
1776
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1777
|
+
>
|
|
1778
|
+
): Promise<WaiterResult>;
|
|
1779
|
+
waitUntilStackCreateComplete(
|
|
1780
|
+
args: DescribeStacksCommandInput,
|
|
1781
|
+
waiterConfig:
|
|
1782
|
+
| number
|
|
1783
|
+
| Pick<
|
|
1784
|
+
WaiterConfiguration<CloudFormation>,
|
|
1785
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1786
|
+
>
|
|
1787
|
+
): Promise<WaiterResult>;
|
|
1788
|
+
waitUntilStackDeleteComplete(
|
|
1789
|
+
args: DescribeStacksCommandInput,
|
|
1790
|
+
waiterConfig:
|
|
1791
|
+
| number
|
|
1792
|
+
| Pick<
|
|
1793
|
+
WaiterConfiguration<CloudFormation>,
|
|
1794
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1795
|
+
>
|
|
1796
|
+
): Promise<WaiterResult>;
|
|
1797
|
+
waitUntilStackExists(
|
|
1798
|
+
args: DescribeStacksCommandInput,
|
|
1799
|
+
waiterConfig:
|
|
1800
|
+
| number
|
|
1801
|
+
| Pick<
|
|
1802
|
+
WaiterConfiguration<CloudFormation>,
|
|
1803
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1804
|
+
>
|
|
1805
|
+
): Promise<WaiterResult>;
|
|
1806
|
+
waitUntilStackImportComplete(
|
|
1807
|
+
args: DescribeStacksCommandInput,
|
|
1808
|
+
waiterConfig:
|
|
1809
|
+
| number
|
|
1810
|
+
| Pick<
|
|
1811
|
+
WaiterConfiguration<CloudFormation>,
|
|
1812
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1813
|
+
>
|
|
1814
|
+
): Promise<WaiterResult>;
|
|
1815
|
+
waitUntilStackRollbackComplete(
|
|
1816
|
+
args: DescribeStacksCommandInput,
|
|
1817
|
+
waiterConfig:
|
|
1818
|
+
| number
|
|
1819
|
+
| Pick<
|
|
1820
|
+
WaiterConfiguration<CloudFormation>,
|
|
1821
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1822
|
+
>
|
|
1823
|
+
): Promise<WaiterResult>;
|
|
1824
|
+
waitUntilStackUpdateComplete(
|
|
1825
|
+
args: DescribeStacksCommandInput,
|
|
1826
|
+
waiterConfig:
|
|
1827
|
+
| number
|
|
1828
|
+
| Pick<
|
|
1829
|
+
WaiterConfiguration<CloudFormation>,
|
|
1830
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1831
|
+
>
|
|
1832
|
+
): Promise<WaiterResult>;
|
|
1833
|
+
waitUntilTypeRegistrationComplete(
|
|
1834
|
+
args: DescribeTypeRegistrationCommandInput,
|
|
1835
|
+
waiterConfig:
|
|
1836
|
+
| number
|
|
1837
|
+
| Pick<
|
|
1838
|
+
WaiterConfiguration<CloudFormation>,
|
|
1839
|
+
Exclude<keyof WaiterConfiguration<CloudFormation>, "client">
|
|
1840
|
+
>
|
|
1841
|
+
): Promise<WaiterResult>;
|
|
1578
1842
|
}
|
|
1579
1843
|
export declare class CloudFormation
|
|
1580
1844
|
extends CloudFormationClient
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudformation",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
26
|
+
"@aws-sdk/core": "^3.973.4",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
33
|
+
"@aws-sdk/types": "^3.973.1",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.6",
|
|
38
|
-
"@smithy/core": "^3.
|
|
38
|
+
"@smithy/core": "^3.22.0",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
40
40
|
"@smithy/hash-node": "^4.2.8",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.9",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.8",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.8",
|
|
48
48
|
"@smithy/node-http-handler": "^4.4.8",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.8",
|
|
50
|
-
"@smithy/smithy-client": "^4.
|
|
50
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
51
51
|
"@smithy/types": "^4.12.0",
|
|
52
52
|
"@smithy/url-parser": "^4.2.8",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
58
58
|
"@smithy/util-endpoints": "^3.2.8",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.8",
|
|
60
60
|
"@smithy/util-retry": "^4.2.8",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/core",
|
|
3
|
-
"version": "3.973.
|
|
3
|
+
"version": "3.973.4",
|
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
@@ -83,12 +83,12 @@
|
|
|
83
83
|
"dependencies": {
|
|
84
84
|
"@aws-sdk/types": "^3.973.1",
|
|
85
85
|
"@aws-sdk/xml-builder": "^3.972.2",
|
|
86
|
-
"@smithy/core": "^3.
|
|
86
|
+
"@smithy/core": "^3.22.0",
|
|
87
87
|
"@smithy/node-config-provider": "^4.3.8",
|
|
88
88
|
"@smithy/property-provider": "^4.2.8",
|
|
89
89
|
"@smithy/protocol-http": "^5.3.8",
|
|
90
90
|
"@smithy/signature-v4": "^5.3.8",
|
|
91
|
-
"@smithy/smithy-client": "^4.
|
|
91
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
92
92
|
"@smithy/types": "^4.12.0",
|
|
93
93
|
"@smithy/util-base64": "^4.3.0",
|
|
94
94
|
"@smithy/util-middleware": "^4.2.8",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-http",
|
|
3
|
-
"version": "3.972.
|
|
3
|
+
"version": "3.972.4",
|
|
4
4
|
"description": "AWS credential provider for containers and HTTP sources",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
},
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@aws-sdk/core": "^3.973.
|
|
31
|
+
"@aws-sdk/core": "^3.973.4",
|
|
32
32
|
"@aws-sdk/types": "^3.973.1",
|
|
33
33
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
34
34
|
"@smithy/node-http-handler": "^4.4.8",
|
|
35
35
|
"@smithy/property-provider": "^4.2.8",
|
|
36
36
|
"@smithy/protocol-http": "^5.3.8",
|
|
37
|
-
"@smithy/smithy-client": "^4.
|
|
37
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
38
38
|
"@smithy/types": "^4.12.0",
|
|
39
39
|
"@smithy/util-stream": "^4.5.10",
|
|
40
40
|
"tslib": "^2.6.2"
|
|
@@ -41,15 +41,21 @@ function memoizeChain(providers, treatAsExpired) {
|
|
|
41
41
|
else if (!credentials || treatAsExpired?.(credentials)) {
|
|
42
42
|
if (credentials) {
|
|
43
43
|
if (!passiveLock) {
|
|
44
|
-
passiveLock = chain(options)
|
|
44
|
+
passiveLock = chain(options)
|
|
45
|
+
.then((c) => {
|
|
45
46
|
credentials = c;
|
|
47
|
+
})
|
|
48
|
+
.finally(() => {
|
|
46
49
|
passiveLock = undefined;
|
|
47
50
|
});
|
|
48
51
|
}
|
|
49
52
|
}
|
|
50
53
|
else {
|
|
51
|
-
activeLock = chain(options)
|
|
54
|
+
activeLock = chain(options)
|
|
55
|
+
.then((c) => {
|
|
52
56
|
credentials = c;
|
|
57
|
+
})
|
|
58
|
+
.finally(() => {
|
|
53
59
|
activeLock = undefined;
|
|
54
60
|
});
|
|
55
61
|
return provider(options);
|