@aws-sdk/client-cloudformation 3.535.0 → 3.537.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/README.md +8 -0
- package/dist-cjs/index.js +91 -2
- package/dist-es/CloudFormation.js +2 -0
- package/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +0 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_query.js +73 -0
- package/dist-types/CloudFormation.d.ts +7 -0
- package/dist-types/CloudFormationClient.d.ts +3 -2
- package/dist-types/commands/ActivateTypeCommand.d.ts +3 -3
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterTypeCommand.d.ts +1 -3
- package/dist-types/commands/DescribePublisherCommand.d.ts +1 -3
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +2 -2
- package/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +73 -0
- package/dist-types/commands/PublishTypeCommand.d.ts +1 -3
- package/dist-types/commands/RegisterTypeCommand.d.ts +3 -7
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +2 -4
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +2 -1
- package/dist-types/commands/SignalResourceCommand.d.ts +1 -1
- package/dist-types/commands/TestTypeCommand.d.ts +2 -6
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +3 -9
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +257 -347
- package/dist-types/models/models_1.d.ts +99 -89
- package/dist-types/protocols/Aws_query.d.ts +9 -0
- package/dist-types/ts3.4/CloudFormation.d.ts +23 -0
- package/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -13
- package/dist-types/ts3.4/models/models_1.d.ts +13 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1721,6 +1721,20 @@ export interface ListStacksOutput {
|
|
|
1721
1721
|
StackSummaries?: StackSummary[];
|
|
1722
1722
|
NextToken?: string;
|
|
1723
1723
|
}
|
|
1724
|
+
export interface ListStackSetAutoDeploymentTargetsInput {
|
|
1725
|
+
StackSetName: string | undefined;
|
|
1726
|
+
NextToken?: string;
|
|
1727
|
+
MaxResults?: number;
|
|
1728
|
+
CallAs?: CallAs;
|
|
1729
|
+
}
|
|
1730
|
+
export interface StackSetAutoDeploymentTargetSummary {
|
|
1731
|
+
OrganizationalUnitId?: string;
|
|
1732
|
+
Regions?: string[];
|
|
1733
|
+
}
|
|
1734
|
+
export interface ListStackSetAutoDeploymentTargetsOutput {
|
|
1735
|
+
Summaries?: StackSetAutoDeploymentTargetSummary[];
|
|
1736
|
+
NextToken?: string;
|
|
1737
|
+
}
|
|
1724
1738
|
export declare const OperationResultFilterName: {
|
|
1725
1739
|
readonly OPERATION_RESULT_STATUS: "OPERATION_RESULT_STATUS";
|
|
1726
1740
|
};
|
|
@@ -1988,16 +2002,3 @@ export interface SetTypeDefaultVersionInput {
|
|
|
1988
2002
|
TypeName?: string;
|
|
1989
2003
|
VersionId?: string;
|
|
1990
2004
|
}
|
|
1991
|
-
export interface SetTypeDefaultVersionOutput {}
|
|
1992
|
-
export declare const ResourceSignalStatus: {
|
|
1993
|
-
readonly FAILURE: "FAILURE";
|
|
1994
|
-
readonly SUCCESS: "SUCCESS";
|
|
1995
|
-
};
|
|
1996
|
-
export type ResourceSignalStatus =
|
|
1997
|
-
(typeof ResourceSignalStatus)[keyof typeof ResourceSignalStatus];
|
|
1998
|
-
export interface SignalResourceInput {
|
|
1999
|
-
StackName: string | undefined;
|
|
2000
|
-
LogicalResourceId: string | undefined;
|
|
2001
|
-
UniqueId: string | undefined;
|
|
2002
|
-
Status: ResourceSignalStatus | undefined;
|
|
2003
|
-
}
|
|
@@ -15,6 +15,19 @@ import {
|
|
|
15
15
|
TemplateConfiguration,
|
|
16
16
|
ThirdPartyType,
|
|
17
17
|
} from "./models_0";
|
|
18
|
+
export interface SetTypeDefaultVersionOutput {}
|
|
19
|
+
export declare const ResourceSignalStatus: {
|
|
20
|
+
readonly FAILURE: "FAILURE";
|
|
21
|
+
readonly SUCCESS: "SUCCESS";
|
|
22
|
+
};
|
|
23
|
+
export type ResourceSignalStatus =
|
|
24
|
+
(typeof ResourceSignalStatus)[keyof typeof ResourceSignalStatus];
|
|
25
|
+
export interface SignalResourceInput {
|
|
26
|
+
StackName: string | undefined;
|
|
27
|
+
LogicalResourceId: string | undefined;
|
|
28
|
+
UniqueId: string | undefined;
|
|
29
|
+
Status: ResourceSignalStatus | undefined;
|
|
30
|
+
}
|
|
18
31
|
export declare class ResourceScanLimitExceededException extends __BaseException {
|
|
19
32
|
readonly name: "ResourceScanLimitExceededException";
|
|
20
33
|
readonly $fault: "client";
|
|
@@ -231,6 +231,10 @@ import {
|
|
|
231
231
|
ListStacksCommandInput,
|
|
232
232
|
ListStacksCommandOutput,
|
|
233
233
|
} from "../commands/ListStacksCommand";
|
|
234
|
+
import {
|
|
235
|
+
ListStackSetAutoDeploymentTargetsCommandInput,
|
|
236
|
+
ListStackSetAutoDeploymentTargetsCommandOutput,
|
|
237
|
+
} from "../commands/ListStackSetAutoDeploymentTargetsCommand";
|
|
234
238
|
import {
|
|
235
239
|
ListStackSetOperationResultsCommandInput,
|
|
236
240
|
ListStackSetOperationResultsCommandOutput,
|
|
@@ -555,6 +559,10 @@ export declare const se_ListStacksCommand: (
|
|
|
555
559
|
input: ListStacksCommandInput,
|
|
556
560
|
context: __SerdeContext
|
|
557
561
|
) => Promise<__HttpRequest>;
|
|
562
|
+
export declare const se_ListStackSetAutoDeploymentTargetsCommand: (
|
|
563
|
+
input: ListStackSetAutoDeploymentTargetsCommandInput,
|
|
564
|
+
context: __SerdeContext
|
|
565
|
+
) => Promise<__HttpRequest>;
|
|
558
566
|
export declare const se_ListStackSetOperationResultsCommand: (
|
|
559
567
|
input: ListStackSetOperationResultsCommandInput,
|
|
560
568
|
context: __SerdeContext
|
|
@@ -879,6 +887,10 @@ export declare const de_ListStacksCommand: (
|
|
|
879
887
|
output: __HttpResponse,
|
|
880
888
|
context: __SerdeContext
|
|
881
889
|
) => Promise<ListStacksCommandOutput>;
|
|
890
|
+
export declare const de_ListStackSetAutoDeploymentTargetsCommand: (
|
|
891
|
+
output: __HttpResponse,
|
|
892
|
+
context: __SerdeContext
|
|
893
|
+
) => Promise<ListStackSetAutoDeploymentTargetsCommandOutput>;
|
|
882
894
|
export declare const de_ListStackSetOperationResultsCommand: (
|
|
883
895
|
output: __HttpResponse,
|
|
884
896
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -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.537.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudformation",
|