@aws-sdk/client-cloudformation 3.686.0 → 3.691.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.
|
@@ -17,20 +17,20 @@ import {
|
|
|
17
17
|
ThirdPartyType,
|
|
18
18
|
} from "./models_0";
|
|
19
19
|
export interface SetTypeConfigurationInput {
|
|
20
|
-
TypeArn?: string;
|
|
20
|
+
TypeArn?: string | undefined;
|
|
21
21
|
Configuration: string | undefined;
|
|
22
|
-
ConfigurationAlias?: string;
|
|
23
|
-
TypeName?: string;
|
|
24
|
-
Type?: ThirdPartyType;
|
|
22
|
+
ConfigurationAlias?: string | undefined;
|
|
23
|
+
TypeName?: string | undefined;
|
|
24
|
+
Type?: ThirdPartyType | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface SetTypeConfigurationOutput {
|
|
27
|
-
ConfigurationArn?: string;
|
|
27
|
+
ConfigurationArn?: string | undefined;
|
|
28
28
|
}
|
|
29
29
|
export interface SetTypeDefaultVersionInput {
|
|
30
|
-
Arn?: string;
|
|
31
|
-
Type?: RegistryType;
|
|
32
|
-
TypeName?: string;
|
|
33
|
-
VersionId?: string;
|
|
30
|
+
Arn?: string | undefined;
|
|
31
|
+
Type?: RegistryType | undefined;
|
|
32
|
+
TypeName?: string | undefined;
|
|
33
|
+
VersionId?: string | undefined;
|
|
34
34
|
}
|
|
35
35
|
export interface SetTypeDefaultVersionOutput {}
|
|
36
36
|
export declare const ResourceSignalStatus: {
|
|
@@ -48,7 +48,7 @@ export interface SignalResourceInput {
|
|
|
48
48
|
export declare class ResourceScanLimitExceededException extends __BaseException {
|
|
49
49
|
readonly name: "ResourceScanLimitExceededException";
|
|
50
50
|
readonly $fault: "client";
|
|
51
|
-
Message?: string;
|
|
51
|
+
Message?: string | undefined;
|
|
52
52
|
constructor(
|
|
53
53
|
opts: __ExceptionOptionType<
|
|
54
54
|
ResourceScanLimitExceededException,
|
|
@@ -57,119 +57,119 @@ export declare class ResourceScanLimitExceededException extends __BaseException
|
|
|
57
57
|
);
|
|
58
58
|
}
|
|
59
59
|
export interface StartResourceScanInput {
|
|
60
|
-
ClientRequestToken?: string;
|
|
60
|
+
ClientRequestToken?: string | undefined;
|
|
61
61
|
}
|
|
62
62
|
export interface StartResourceScanOutput {
|
|
63
|
-
ResourceScanId?: string;
|
|
63
|
+
ResourceScanId?: string | undefined;
|
|
64
64
|
}
|
|
65
65
|
export interface StopStackSetOperationInput {
|
|
66
66
|
StackSetName: string | undefined;
|
|
67
67
|
OperationId: string | undefined;
|
|
68
|
-
CallAs?: CallAs;
|
|
68
|
+
CallAs?: CallAs | undefined;
|
|
69
69
|
}
|
|
70
70
|
export interface StopStackSetOperationOutput {}
|
|
71
71
|
export interface TestTypeInput {
|
|
72
|
-
Arn?: string;
|
|
73
|
-
Type?: ThirdPartyType;
|
|
74
|
-
TypeName?: string;
|
|
75
|
-
VersionId?: string;
|
|
76
|
-
LogDeliveryBucket?: string;
|
|
72
|
+
Arn?: string | undefined;
|
|
73
|
+
Type?: ThirdPartyType | undefined;
|
|
74
|
+
TypeName?: string | undefined;
|
|
75
|
+
VersionId?: string | undefined;
|
|
76
|
+
LogDeliveryBucket?: string | undefined;
|
|
77
77
|
}
|
|
78
78
|
export interface TestTypeOutput {
|
|
79
|
-
TypeVersionArn?: string;
|
|
79
|
+
TypeVersionArn?: string | undefined;
|
|
80
80
|
}
|
|
81
81
|
export interface UpdateGeneratedTemplateInput {
|
|
82
82
|
GeneratedTemplateName: string | undefined;
|
|
83
|
-
NewGeneratedTemplateName?: string;
|
|
84
|
-
AddResources?: ResourceDefinition[];
|
|
85
|
-
RemoveResources?: string[];
|
|
86
|
-
RefreshAllResources?: boolean;
|
|
87
|
-
TemplateConfiguration?: TemplateConfiguration;
|
|
83
|
+
NewGeneratedTemplateName?: string | undefined;
|
|
84
|
+
AddResources?: ResourceDefinition[] | undefined;
|
|
85
|
+
RemoveResources?: string[] | undefined;
|
|
86
|
+
RefreshAllResources?: boolean | undefined;
|
|
87
|
+
TemplateConfiguration?: TemplateConfiguration | undefined;
|
|
88
88
|
}
|
|
89
89
|
export interface UpdateGeneratedTemplateOutput {
|
|
90
|
-
GeneratedTemplateId?: string;
|
|
90
|
+
GeneratedTemplateId?: string | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface UpdateStackInput {
|
|
93
93
|
StackName: string | undefined;
|
|
94
|
-
TemplateBody?: string;
|
|
95
|
-
TemplateURL?: string;
|
|
96
|
-
UsePreviousTemplate?: boolean;
|
|
97
|
-
StackPolicyDuringUpdateBody?: string;
|
|
98
|
-
StackPolicyDuringUpdateURL?: string;
|
|
99
|
-
Parameters?: Parameter[];
|
|
100
|
-
Capabilities?: Capability[];
|
|
101
|
-
ResourceTypes?: string[];
|
|
102
|
-
RoleARN?: string;
|
|
103
|
-
RollbackConfiguration?: RollbackConfiguration;
|
|
104
|
-
StackPolicyBody?: string;
|
|
105
|
-
StackPolicyURL?: string;
|
|
106
|
-
NotificationARNs?: string[];
|
|
107
|
-
Tags?: Tag[];
|
|
108
|
-
DisableRollback?: boolean;
|
|
109
|
-
ClientRequestToken?: string;
|
|
110
|
-
RetainExceptOnCreate?: boolean;
|
|
94
|
+
TemplateBody?: string | undefined;
|
|
95
|
+
TemplateURL?: string | undefined;
|
|
96
|
+
UsePreviousTemplate?: boolean | undefined;
|
|
97
|
+
StackPolicyDuringUpdateBody?: string | undefined;
|
|
98
|
+
StackPolicyDuringUpdateURL?: string | undefined;
|
|
99
|
+
Parameters?: Parameter[] | undefined;
|
|
100
|
+
Capabilities?: Capability[] | undefined;
|
|
101
|
+
ResourceTypes?: string[] | undefined;
|
|
102
|
+
RoleARN?: string | undefined;
|
|
103
|
+
RollbackConfiguration?: RollbackConfiguration | undefined;
|
|
104
|
+
StackPolicyBody?: string | undefined;
|
|
105
|
+
StackPolicyURL?: string | undefined;
|
|
106
|
+
NotificationARNs?: string[] | undefined;
|
|
107
|
+
Tags?: Tag[] | undefined;
|
|
108
|
+
DisableRollback?: boolean | undefined;
|
|
109
|
+
ClientRequestToken?: string | undefined;
|
|
110
|
+
RetainExceptOnCreate?: boolean | undefined;
|
|
111
111
|
}
|
|
112
112
|
export interface UpdateStackOutput {
|
|
113
|
-
StackId?: string;
|
|
113
|
+
StackId?: string | undefined;
|
|
114
114
|
}
|
|
115
115
|
export interface UpdateStackInstancesInput {
|
|
116
116
|
StackSetName: string | undefined;
|
|
117
|
-
Accounts?: string[];
|
|
118
|
-
DeploymentTargets?: DeploymentTargets;
|
|
117
|
+
Accounts?: string[] | undefined;
|
|
118
|
+
DeploymentTargets?: DeploymentTargets | undefined;
|
|
119
119
|
Regions: string[] | undefined;
|
|
120
|
-
ParameterOverrides?: Parameter[];
|
|
121
|
-
OperationPreferences?: StackSetOperationPreferences;
|
|
122
|
-
OperationId?: string;
|
|
123
|
-
CallAs?: CallAs;
|
|
120
|
+
ParameterOverrides?: Parameter[] | undefined;
|
|
121
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
|
122
|
+
OperationId?: string | undefined;
|
|
123
|
+
CallAs?: CallAs | undefined;
|
|
124
124
|
}
|
|
125
125
|
export interface UpdateStackInstancesOutput {
|
|
126
|
-
OperationId?: string;
|
|
126
|
+
OperationId?: string | undefined;
|
|
127
127
|
}
|
|
128
128
|
export interface UpdateStackSetInput {
|
|
129
129
|
StackSetName: string | undefined;
|
|
130
|
-
Description?: string;
|
|
131
|
-
TemplateBody?: string;
|
|
132
|
-
TemplateURL?: string;
|
|
133
|
-
UsePreviousTemplate?: boolean;
|
|
134
|
-
Parameters?: Parameter[];
|
|
135
|
-
Capabilities?: Capability[];
|
|
136
|
-
Tags?: Tag[];
|
|
137
|
-
OperationPreferences?: StackSetOperationPreferences;
|
|
138
|
-
AdministrationRoleARN?: string;
|
|
139
|
-
ExecutionRoleName?: string;
|
|
140
|
-
DeploymentTargets?: DeploymentTargets;
|
|
141
|
-
PermissionModel?: PermissionModels;
|
|
142
|
-
AutoDeployment?: AutoDeployment;
|
|
143
|
-
OperationId?: string;
|
|
144
|
-
Accounts?: string[];
|
|
145
|
-
Regions?: string[];
|
|
146
|
-
CallAs?: CallAs;
|
|
147
|
-
ManagedExecution?: ManagedExecution;
|
|
130
|
+
Description?: string | undefined;
|
|
131
|
+
TemplateBody?: string | undefined;
|
|
132
|
+
TemplateURL?: string | undefined;
|
|
133
|
+
UsePreviousTemplate?: boolean | undefined;
|
|
134
|
+
Parameters?: Parameter[] | undefined;
|
|
135
|
+
Capabilities?: Capability[] | undefined;
|
|
136
|
+
Tags?: Tag[] | undefined;
|
|
137
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
|
138
|
+
AdministrationRoleARN?: string | undefined;
|
|
139
|
+
ExecutionRoleName?: string | undefined;
|
|
140
|
+
DeploymentTargets?: DeploymentTargets | undefined;
|
|
141
|
+
PermissionModel?: PermissionModels | undefined;
|
|
142
|
+
AutoDeployment?: AutoDeployment | undefined;
|
|
143
|
+
OperationId?: string | undefined;
|
|
144
|
+
Accounts?: string[] | undefined;
|
|
145
|
+
Regions?: string[] | undefined;
|
|
146
|
+
CallAs?: CallAs | undefined;
|
|
147
|
+
ManagedExecution?: ManagedExecution | undefined;
|
|
148
148
|
}
|
|
149
149
|
export interface UpdateStackSetOutput {
|
|
150
|
-
OperationId?: string;
|
|
150
|
+
OperationId?: string | undefined;
|
|
151
151
|
}
|
|
152
152
|
export interface UpdateTerminationProtectionInput {
|
|
153
153
|
EnableTerminationProtection: boolean | undefined;
|
|
154
154
|
StackName: string | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface UpdateTerminationProtectionOutput {
|
|
157
|
-
StackId?: string;
|
|
157
|
+
StackId?: string | undefined;
|
|
158
158
|
}
|
|
159
159
|
export interface ValidateTemplateInput {
|
|
160
|
-
TemplateBody?: string;
|
|
161
|
-
TemplateURL?: string;
|
|
160
|
+
TemplateBody?: string | undefined;
|
|
161
|
+
TemplateURL?: string | undefined;
|
|
162
162
|
}
|
|
163
163
|
export interface TemplateParameter {
|
|
164
|
-
ParameterKey?: string;
|
|
165
|
-
DefaultValue?: string;
|
|
166
|
-
NoEcho?: boolean;
|
|
167
|
-
Description?: string;
|
|
164
|
+
ParameterKey?: string | undefined;
|
|
165
|
+
DefaultValue?: string | undefined;
|
|
166
|
+
NoEcho?: boolean | undefined;
|
|
167
|
+
Description?: string | undefined;
|
|
168
168
|
}
|
|
169
169
|
export interface ValidateTemplateOutput {
|
|
170
|
-
Parameters?: TemplateParameter[];
|
|
171
|
-
Description?: string;
|
|
172
|
-
Capabilities?: Capability[];
|
|
173
|
-
CapabilitiesReason?: string;
|
|
174
|
-
DeclaredTransforms?: string[];
|
|
170
|
+
Parameters?: TemplateParameter[] | undefined;
|
|
171
|
+
Description?: string | undefined;
|
|
172
|
+
Capabilities?: Capability[] | undefined;
|
|
173
|
+
CapabilitiesReason?: string | undefined;
|
|
174
|
+
DeclaredTransforms?: string[] | undefined;
|
|
175
175
|
}
|
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.691.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",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|