@aws-sdk/client-cloudformation 3.51.0 → 3.54.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/CHANGELOG.md +30 -0
- package/README.md +10 -10
- package/dist-cjs/CloudFormation.js +15 -0
- package/dist-cjs/commands/DescribeChangeSetHooksCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudFormationServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +374 -5
- package/dist-cjs/protocols/Aws_query.js +622 -1350
- package/dist-es/CloudFormation.js +15 -0
- package/dist-es/commands/DescribeChangeSetHooksCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudFormationServiceException.js +12 -0
- package/dist-es/models/models_0.js +338 -1
- package/dist-es/protocols/Aws_query.js +1166 -1418
- package/dist-types/CloudFormation.d.ts +134 -130
- package/dist-types/CloudFormationClient.d.ts +15 -14
- package/dist-types/commands/ActivateTypeCommand.d.ts +1 -2
- package/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +2 -2
- package/dist-types/commands/CancelUpdateStackCommand.d.ts +2 -1
- package/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +8 -8
- package/dist-types/commands/CreateChangeSetCommand.d.ts +6 -7
- package/dist-types/commands/CreateStackCommand.d.ts +1 -1
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +4 -4
- package/dist-types/commands/DeactivateTypeCommand.d.ts +3 -3
- package/dist-types/commands/DeleteChangeSetCommand.d.ts +2 -2
- package/dist-types/commands/DeleteStackCommand.d.ts +2 -2
- package/dist-types/commands/DeleteStackInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterTypeCommand.d.ts +3 -3
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +2 -3
- package/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +35 -0
- package/dist-types/commands/DescribePublisherCommand.d.ts +3 -4
- package/dist-types/commands/DescribeStackEventsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeStackSetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackSetOperationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStacksCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackDriftCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +7 -6
- package/dist-types/commands/ExecuteChangeSetCommand.d.ts +7 -7
- package/dist-types/commands/GetTemplateCommand.d.ts +3 -3
- package/dist-types/commands/GetTemplateSummaryCommand.d.ts +1 -1
- package/dist-types/commands/ImportStacksToStackSetCommand.d.ts +9 -6
- package/dist-types/commands/ListExportsCommand.d.ts +1 -1
- package/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +1 -1
- package/dist-types/commands/ListStackSetOperationsCommand.d.ts +1 -1
- package/dist-types/commands/ListStackSetsCommand.d.ts +2 -3
- package/dist-types/commands/PublishTypeCommand.d.ts +4 -6
- package/dist-types/commands/RecordHandlerProgressCommand.d.ts +1 -1
- package/dist-types/commands/RegisterPublisherCommand.d.ts +4 -4
- package/dist-types/commands/RegisterTypeCommand.d.ts +5 -6
- package/dist-types/commands/RollbackStackCommand.d.ts +1 -1
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/SignalResourceCommand.d.ts +2 -2
- package/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
- package/dist-types/commands/TestTypeCommand.d.ts +4 -5
- package/dist-types/commands/UpdateStackCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +6 -5
- package/dist-types/commands/UpdateStackSetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudFormationServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1165 -800
- package/dist-types/protocols/Aws_query.d.ts +3 -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 +1 -1
- package/dist-types/ts3.4/CloudFormation.d.ts +5 -0
- package/dist-types/ts3.4/CloudFormationClient.d.ts +5 -4
- package/dist-types/ts3.4/commands/DescribeChangeSetHooksCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudFormationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +228 -69
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +34 -34
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.ValidateTemplateOutput = exports.TemplateParameter = exports.ValidateTemplateInput = exports.UpdateTerminationProtectionOutput = exports.UpdateTerminationProtectionInput = exports.UpdateStackSetOutput = exports.UpdateStackSetInput = exports.UpdateStackInstancesOutput = exports.UpdateStackInstancesInput = exports.UpdateStackOutput = exports.UpdateStackInput = exports.TestTypeOutput = void 0;
|
|
3
|
+
exports.ResourceToImport = exports.Parameter = exports.ContinueUpdateRollbackOutput = exports.ContinueUpdateRollbackInput = exports.ChangeSetType = exports.ChangeSetSummary = exports.ExecutionStatus = exports.ChangeSetStatus = exports.ChangeSetNotFoundException = exports.ChangeSetHooksStatus = exports.ChangeSetHook = exports.ChangeSetHookTargetDetails = exports.HookTargetType = exports.ChangeSetHookResourceTargetDetails = exports.HookInvocationPoint = exports.HookFailureMode = exports.Change = exports.ChangeType = exports.ResourceChange = exports.Replacement = exports.ModuleInfo = exports.ResourceChangeDetail = exports.ResourceTargetDefinition = exports.RequiresRecreation = exports.ResourceAttribute = exports.EvaluationType = exports.ChangeSource = exports.ChangeAction = exports.Category = exports.Capability = exports.TokenAlreadyExistsException = exports.CancelUpdateStackInput = exports.CallAs = exports.TypeConfigurationNotFoundException = exports.BatchDescribeTypeConfigurationsOutput = exports.TypeConfigurationDetails = exports.BatchDescribeTypeConfigurationsError = exports.BatchDescribeTypeConfigurationsInput = exports.TypeConfigurationIdentifier = exports.AutoDeployment = exports.AlreadyExistsException = exports.TypeNotFoundException = exports.CFNRegistryException = exports.ActivateTypeOutput = exports.ActivateTypeInput = exports.VersionBump = exports.ThirdPartyType = exports.LoggingConfig = exports.AccountLimit = exports.AccountGateResult = void 0;
|
|
4
|
+
exports.StackDriftDetectionStatus = exports.DescribeStackDriftDetectionStatusInput = exports.DescribePublisherOutput = exports.PublisherStatus = exports.IdentityProvider = exports.DescribePublisherInput = exports.DescribeChangeSetHooksOutput = exports.DescribeChangeSetHooksInput = exports.DescribeChangeSetOutput = exports.DescribeChangeSetInput = exports.DescribeAccountLimitsOutput = exports.DescribeAccountLimitsInput = exports.DeregisterTypeOutput = exports.DeregisterTypeInput = exports.StackSetNotEmptyException = exports.DeleteStackSetOutput = exports.DeleteStackSetInput = exports.DeleteStackInstancesOutput = exports.DeleteStackInstancesInput = exports.DeleteStackInput = exports.InvalidChangeSetStatusException = exports.DeleteChangeSetOutput = exports.DeleteChangeSetInput = exports.DeactivateTypeOutput = exports.DeactivateTypeInput = exports.NameAlreadyExistsException = exports.CreateStackSetOutput = exports.CreateStackSetInput = exports.ManagedExecution = exports.CreatedButModifiedException = exports.StaleRequestException = exports.StackSetNotFoundException = exports.OperationInProgressException = exports.OperationIdAlreadyExistsException = exports.InvalidOperationException = exports.CreateStackInstancesOutput = exports.CreateStackInstancesInput = exports.StackSetOperationPreferences = exports.RegionConcurrencyType = exports.DeploymentTargets = exports.CreateStackOutput = exports.CreateStackInput = exports.OnFailure = exports.LimitExceededException = exports.InsufficientCapabilitiesException = exports.CreateChangeSetOutput = exports.CreateChangeSetInput = exports.Tag = exports.RollbackConfiguration = exports.RollbackTrigger = void 0;
|
|
5
|
+
exports.DetectStackDriftOutput = exports.DetectStackDriftInput = exports.DescribeTypeRegistrationOutput = exports.DescribeTypeRegistrationInput = exports.DescribeTypeOutput = exports.TypeTestsStatus = exports.RequiredActivatedType = exports.DescribeTypeInput = exports.OperationNotFoundException = exports.DescribeStackSetOperationOutput = exports.StackSetOperation = exports.DescribeStackSetOperationInput = exports.DescribeStackSetOutput = exports.StackSet = exports.StackSetDriftDetectionDetails = exports.StackSetDriftStatus = exports.StackSetDriftDetectionStatus = exports.DescribeStackSetInput = exports.DescribeStacksOutput = exports.Stack = exports.StackStatus = exports.Output = exports.StackDriftInformation = exports.DescribeStacksInput = exports.DescribeStackResourcesOutput = exports.StackResource = exports.DescribeStackResourcesInput = exports.DescribeStackResourceDriftsOutput = exports.StackResourceDrift = exports.PropertyDifference = exports.DifferenceType = exports.PhysicalResourceIdContextKeyValuePair = exports.DescribeStackResourceDriftsInput = exports.DescribeStackResourceOutput = exports.StackResourceDetail = exports.StackResourceDriftInformation = exports.StackResourceDriftStatus = exports.DescribeStackResourceInput = exports.StackInstanceNotFoundException = exports.DescribeStackInstanceOutput = exports.StackInstance = exports.StackInstanceComprehensiveStatus = exports.DescribeStackInstanceInput = exports.DescribeStackEventsOutput = exports.StackEvent = exports.ResourceStatus = exports.HookStatus = exports.DescribeStackEventsInput = exports.DescribeStackDriftDetectionStatusOutput = exports.StackDriftStatus = void 0;
|
|
6
|
+
exports.ListTypeRegistrationsInput = exports.ListStackSetsOutput = exports.StackSetSummary = exports.ListStackSetsInput = exports.ListStackSetOperationsOutput = exports.StackSetOperationSummary = exports.ListStackSetOperationsInput = exports.ListStackSetOperationResultsOutput = exports.StackSetOperationResultSummary = exports.ListStackSetOperationResultsInput = exports.ListStacksOutput = exports.StackSummary = exports.StackDriftInformationSummary = exports.ListStacksInput = exports.ListStackResourcesOutput = exports.StackResourceSummary = exports.StackResourceDriftInformationSummary = exports.ListStackResourcesInput = exports.ListStackInstancesOutput = exports.StackInstanceSummary = exports.ListStackInstancesInput = exports.StackInstanceFilter = exports.ListImportsOutput = exports.ListImportsInput = exports.ListExportsOutput = exports.Export = exports.ListExportsInput = exports.ListChangeSetsOutput = exports.ListChangeSetsInput = exports.StackNotFoundException = exports.ImportStacksToStackSetOutput = exports.ImportStacksToStackSetInput = exports.GetTemplateSummaryOutput = exports.ResourceIdentifierSummary = exports.ParameterDeclaration = exports.ParameterConstraints = exports.GetTemplateSummaryInput = exports.GetTemplateOutput = exports.GetTemplateInput = exports.TemplateStage = exports.GetStackPolicyOutput = exports.GetStackPolicyInput = exports.ExecuteChangeSetOutput = exports.ExecuteChangeSetInput = exports.EstimateTemplateCostOutput = exports.EstimateTemplateCostInput = exports.DetectStackSetDriftOutput = exports.DetectStackSetDriftInput = exports.DetectStackResourceDriftOutput = exports.DetectStackResourceDriftInput = void 0;
|
|
7
|
+
exports.ValidateTemplateOutput = exports.TemplateParameter = exports.ValidateTemplateInput = exports.UpdateTerminationProtectionOutput = exports.UpdateTerminationProtectionInput = exports.UpdateStackSetOutput = exports.UpdateStackSetInput = exports.UpdateStackInstancesOutput = exports.UpdateStackInstancesInput = exports.UpdateStackOutput = exports.UpdateStackInput = exports.TestTypeOutput = exports.TestTypeInput = exports.StopStackSetOperationOutput = exports.StopStackSetOperationInput = exports.SignalResourceInput = exports.ResourceSignalStatus = exports.SetTypeDefaultVersionOutput = exports.SetTypeDefaultVersionInput = exports.SetTypeConfigurationOutput = exports.SetTypeConfigurationInput = exports.SetStackPolicyInput = exports.RollbackStackOutput = exports.RollbackStackInput = exports.RegisterTypeOutput = exports.RegisterTypeInput = exports.RegisterPublisherOutput = exports.RegisterPublisherInput = exports.RecordHandlerProgressOutput = exports.RecordHandlerProgressInput = exports.HandlerErrorCode = exports.OperationStatus = exports.OperationStatusCheckFailedException = exports.InvalidStateTransitionException = exports.PublishTypeOutput = exports.PublishTypeInput = exports.ListTypeVersionsOutput = exports.TypeVersionSummary = exports.ListTypeVersionsInput = exports.ListTypesOutput = exports.TypeSummary = exports.ListTypesInput = exports.TypeFilters = exports.ListTypeRegistrationsOutput = void 0;
|
|
8
|
+
const CloudFormationServiceException_1 = require("./CloudFormationServiceException");
|
|
8
9
|
var AccountGateResult;
|
|
9
10
|
(function (AccountGateResult) {
|
|
10
11
|
AccountGateResult.filterSensitiveLog = (obj) => ({
|
|
@@ -25,6 +26,7 @@ var LoggingConfig;
|
|
|
25
26
|
})(LoggingConfig = exports.LoggingConfig || (exports.LoggingConfig = {}));
|
|
26
27
|
var ThirdPartyType;
|
|
27
28
|
(function (ThirdPartyType) {
|
|
29
|
+
ThirdPartyType["HOOK"] = "HOOK";
|
|
28
30
|
ThirdPartyType["MODULE"] = "MODULE";
|
|
29
31
|
ThirdPartyType["RESOURCE"] = "RESOURCE";
|
|
30
32
|
})(ThirdPartyType = exports.ThirdPartyType || (exports.ThirdPartyType = {}));
|
|
@@ -45,6 +47,48 @@ var ActivateTypeOutput;
|
|
|
45
47
|
...obj,
|
|
46
48
|
});
|
|
47
49
|
})(ActivateTypeOutput = exports.ActivateTypeOutput || (exports.ActivateTypeOutput = {}));
|
|
50
|
+
class CFNRegistryException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
51
|
+
constructor(opts) {
|
|
52
|
+
super({
|
|
53
|
+
name: "CFNRegistryException",
|
|
54
|
+
$fault: "client",
|
|
55
|
+
...opts,
|
|
56
|
+
});
|
|
57
|
+
this.name = "CFNRegistryException";
|
|
58
|
+
this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(this, CFNRegistryException.prototype);
|
|
60
|
+
this.Message = opts.Message;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.CFNRegistryException = CFNRegistryException;
|
|
64
|
+
class TypeNotFoundException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "TypeNotFoundException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
this.name = "TypeNotFoundException";
|
|
72
|
+
this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(this, TypeNotFoundException.prototype);
|
|
74
|
+
this.Message = opts.Message;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.TypeNotFoundException = TypeNotFoundException;
|
|
78
|
+
class AlreadyExistsException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
79
|
+
constructor(opts) {
|
|
80
|
+
super({
|
|
81
|
+
name: "AlreadyExistsException",
|
|
82
|
+
$fault: "client",
|
|
83
|
+
...opts,
|
|
84
|
+
});
|
|
85
|
+
this.name = "AlreadyExistsException";
|
|
86
|
+
this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
88
|
+
this.Message = opts.Message;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.AlreadyExistsException = AlreadyExistsException;
|
|
48
92
|
var AutoDeployment;
|
|
49
93
|
(function (AutoDeployment) {
|
|
50
94
|
AutoDeployment.filterSensitiveLog = (obj) => ({
|
|
@@ -81,6 +125,20 @@ var BatchDescribeTypeConfigurationsOutput;
|
|
|
81
125
|
...obj,
|
|
82
126
|
});
|
|
83
127
|
})(BatchDescribeTypeConfigurationsOutput = exports.BatchDescribeTypeConfigurationsOutput || (exports.BatchDescribeTypeConfigurationsOutput = {}));
|
|
128
|
+
class TypeConfigurationNotFoundException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
129
|
+
constructor(opts) {
|
|
130
|
+
super({
|
|
131
|
+
name: "TypeConfigurationNotFoundException",
|
|
132
|
+
$fault: "client",
|
|
133
|
+
...opts,
|
|
134
|
+
});
|
|
135
|
+
this.name = "TypeConfigurationNotFoundException";
|
|
136
|
+
this.$fault = "client";
|
|
137
|
+
Object.setPrototypeOf(this, TypeConfigurationNotFoundException.prototype);
|
|
138
|
+
this.Message = opts.Message;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
exports.TypeConfigurationNotFoundException = TypeConfigurationNotFoundException;
|
|
84
142
|
var CallAs;
|
|
85
143
|
(function (CallAs) {
|
|
86
144
|
CallAs["DELEGATED_ADMIN"] = "DELEGATED_ADMIN";
|
|
@@ -92,6 +150,20 @@ var CancelUpdateStackInput;
|
|
|
92
150
|
...obj,
|
|
93
151
|
});
|
|
94
152
|
})(CancelUpdateStackInput = exports.CancelUpdateStackInput || (exports.CancelUpdateStackInput = {}));
|
|
153
|
+
class TokenAlreadyExistsException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "TokenAlreadyExistsException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
this.name = "TokenAlreadyExistsException";
|
|
161
|
+
this.$fault = "client";
|
|
162
|
+
Object.setPrototypeOf(this, TokenAlreadyExistsException.prototype);
|
|
163
|
+
this.Message = opts.Message;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
exports.TokenAlreadyExistsException = TokenAlreadyExistsException;
|
|
95
167
|
var Capability;
|
|
96
168
|
(function (Capability) {
|
|
97
169
|
Capability["CAPABILITY_AUTO_EXPAND"] = "CAPABILITY_AUTO_EXPAND";
|
|
@@ -181,6 +253,57 @@ var Change;
|
|
|
181
253
|
...obj,
|
|
182
254
|
});
|
|
183
255
|
})(Change = exports.Change || (exports.Change = {}));
|
|
256
|
+
var HookFailureMode;
|
|
257
|
+
(function (HookFailureMode) {
|
|
258
|
+
HookFailureMode["FAIL"] = "FAIL";
|
|
259
|
+
HookFailureMode["WARN"] = "WARN";
|
|
260
|
+
})(HookFailureMode = exports.HookFailureMode || (exports.HookFailureMode = {}));
|
|
261
|
+
var HookInvocationPoint;
|
|
262
|
+
(function (HookInvocationPoint) {
|
|
263
|
+
HookInvocationPoint["PRE_PROVISION"] = "PRE_PROVISION";
|
|
264
|
+
})(HookInvocationPoint = exports.HookInvocationPoint || (exports.HookInvocationPoint = {}));
|
|
265
|
+
var ChangeSetHookResourceTargetDetails;
|
|
266
|
+
(function (ChangeSetHookResourceTargetDetails) {
|
|
267
|
+
ChangeSetHookResourceTargetDetails.filterSensitiveLog = (obj) => ({
|
|
268
|
+
...obj,
|
|
269
|
+
});
|
|
270
|
+
})(ChangeSetHookResourceTargetDetails = exports.ChangeSetHookResourceTargetDetails || (exports.ChangeSetHookResourceTargetDetails = {}));
|
|
271
|
+
var HookTargetType;
|
|
272
|
+
(function (HookTargetType) {
|
|
273
|
+
HookTargetType["RESOURCE"] = "RESOURCE";
|
|
274
|
+
})(HookTargetType = exports.HookTargetType || (exports.HookTargetType = {}));
|
|
275
|
+
var ChangeSetHookTargetDetails;
|
|
276
|
+
(function (ChangeSetHookTargetDetails) {
|
|
277
|
+
ChangeSetHookTargetDetails.filterSensitiveLog = (obj) => ({
|
|
278
|
+
...obj,
|
|
279
|
+
});
|
|
280
|
+
})(ChangeSetHookTargetDetails = exports.ChangeSetHookTargetDetails || (exports.ChangeSetHookTargetDetails = {}));
|
|
281
|
+
var ChangeSetHook;
|
|
282
|
+
(function (ChangeSetHook) {
|
|
283
|
+
ChangeSetHook.filterSensitiveLog = (obj) => ({
|
|
284
|
+
...obj,
|
|
285
|
+
});
|
|
286
|
+
})(ChangeSetHook = exports.ChangeSetHook || (exports.ChangeSetHook = {}));
|
|
287
|
+
var ChangeSetHooksStatus;
|
|
288
|
+
(function (ChangeSetHooksStatus) {
|
|
289
|
+
ChangeSetHooksStatus["PLANNED"] = "PLANNED";
|
|
290
|
+
ChangeSetHooksStatus["PLANNING"] = "PLANNING";
|
|
291
|
+
ChangeSetHooksStatus["UNAVAILABLE"] = "UNAVAILABLE";
|
|
292
|
+
})(ChangeSetHooksStatus = exports.ChangeSetHooksStatus || (exports.ChangeSetHooksStatus = {}));
|
|
293
|
+
class ChangeSetNotFoundException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
294
|
+
constructor(opts) {
|
|
295
|
+
super({
|
|
296
|
+
name: "ChangeSetNotFoundException",
|
|
297
|
+
$fault: "client",
|
|
298
|
+
...opts,
|
|
299
|
+
});
|
|
300
|
+
this.name = "ChangeSetNotFoundException";
|
|
301
|
+
this.$fault = "client";
|
|
302
|
+
Object.setPrototypeOf(this, ChangeSetNotFoundException.prototype);
|
|
303
|
+
this.Message = opts.Message;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
exports.ChangeSetNotFoundException = ChangeSetNotFoundException;
|
|
184
307
|
var ChangeSetStatus;
|
|
185
308
|
(function (ChangeSetStatus) {
|
|
186
309
|
ChangeSetStatus["CREATE_COMPLETE"] = "CREATE_COMPLETE";
|
|
@@ -267,6 +390,34 @@ var CreateChangeSetOutput;
|
|
|
267
390
|
...obj,
|
|
268
391
|
});
|
|
269
392
|
})(CreateChangeSetOutput = exports.CreateChangeSetOutput || (exports.CreateChangeSetOutput = {}));
|
|
393
|
+
class InsufficientCapabilitiesException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
394
|
+
constructor(opts) {
|
|
395
|
+
super({
|
|
396
|
+
name: "InsufficientCapabilitiesException",
|
|
397
|
+
$fault: "client",
|
|
398
|
+
...opts,
|
|
399
|
+
});
|
|
400
|
+
this.name = "InsufficientCapabilitiesException";
|
|
401
|
+
this.$fault = "client";
|
|
402
|
+
Object.setPrototypeOf(this, InsufficientCapabilitiesException.prototype);
|
|
403
|
+
this.Message = opts.Message;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
exports.InsufficientCapabilitiesException = InsufficientCapabilitiesException;
|
|
407
|
+
class LimitExceededException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
408
|
+
constructor(opts) {
|
|
409
|
+
super({
|
|
410
|
+
name: "LimitExceededException",
|
|
411
|
+
$fault: "client",
|
|
412
|
+
...opts,
|
|
413
|
+
});
|
|
414
|
+
this.name = "LimitExceededException";
|
|
415
|
+
this.$fault = "client";
|
|
416
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
417
|
+
this.Message = opts.Message;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
exports.LimitExceededException = LimitExceededException;
|
|
270
421
|
var OnFailure;
|
|
271
422
|
(function (OnFailure) {
|
|
272
423
|
OnFailure["DELETE"] = "DELETE";
|
|
@@ -314,6 +465,90 @@ var CreateStackInstancesOutput;
|
|
|
314
465
|
...obj,
|
|
315
466
|
});
|
|
316
467
|
})(CreateStackInstancesOutput = exports.CreateStackInstancesOutput || (exports.CreateStackInstancesOutput = {}));
|
|
468
|
+
class InvalidOperationException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
469
|
+
constructor(opts) {
|
|
470
|
+
super({
|
|
471
|
+
name: "InvalidOperationException",
|
|
472
|
+
$fault: "client",
|
|
473
|
+
...opts,
|
|
474
|
+
});
|
|
475
|
+
this.name = "InvalidOperationException";
|
|
476
|
+
this.$fault = "client";
|
|
477
|
+
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
478
|
+
this.Message = opts.Message;
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
exports.InvalidOperationException = InvalidOperationException;
|
|
482
|
+
class OperationIdAlreadyExistsException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
483
|
+
constructor(opts) {
|
|
484
|
+
super({
|
|
485
|
+
name: "OperationIdAlreadyExistsException",
|
|
486
|
+
$fault: "client",
|
|
487
|
+
...opts,
|
|
488
|
+
});
|
|
489
|
+
this.name = "OperationIdAlreadyExistsException";
|
|
490
|
+
this.$fault = "client";
|
|
491
|
+
Object.setPrototypeOf(this, OperationIdAlreadyExistsException.prototype);
|
|
492
|
+
this.Message = opts.Message;
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
exports.OperationIdAlreadyExistsException = OperationIdAlreadyExistsException;
|
|
496
|
+
class OperationInProgressException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
497
|
+
constructor(opts) {
|
|
498
|
+
super({
|
|
499
|
+
name: "OperationInProgressException",
|
|
500
|
+
$fault: "client",
|
|
501
|
+
...opts,
|
|
502
|
+
});
|
|
503
|
+
this.name = "OperationInProgressException";
|
|
504
|
+
this.$fault = "client";
|
|
505
|
+
Object.setPrototypeOf(this, OperationInProgressException.prototype);
|
|
506
|
+
this.Message = opts.Message;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
exports.OperationInProgressException = OperationInProgressException;
|
|
510
|
+
class StackSetNotFoundException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
511
|
+
constructor(opts) {
|
|
512
|
+
super({
|
|
513
|
+
name: "StackSetNotFoundException",
|
|
514
|
+
$fault: "client",
|
|
515
|
+
...opts,
|
|
516
|
+
});
|
|
517
|
+
this.name = "StackSetNotFoundException";
|
|
518
|
+
this.$fault = "client";
|
|
519
|
+
Object.setPrototypeOf(this, StackSetNotFoundException.prototype);
|
|
520
|
+
this.Message = opts.Message;
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
exports.StackSetNotFoundException = StackSetNotFoundException;
|
|
524
|
+
class StaleRequestException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
525
|
+
constructor(opts) {
|
|
526
|
+
super({
|
|
527
|
+
name: "StaleRequestException",
|
|
528
|
+
$fault: "client",
|
|
529
|
+
...opts,
|
|
530
|
+
});
|
|
531
|
+
this.name = "StaleRequestException";
|
|
532
|
+
this.$fault = "client";
|
|
533
|
+
Object.setPrototypeOf(this, StaleRequestException.prototype);
|
|
534
|
+
this.Message = opts.Message;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
exports.StaleRequestException = StaleRequestException;
|
|
538
|
+
class CreatedButModifiedException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
539
|
+
constructor(opts) {
|
|
540
|
+
super({
|
|
541
|
+
name: "CreatedButModifiedException",
|
|
542
|
+
$fault: "client",
|
|
543
|
+
...opts,
|
|
544
|
+
});
|
|
545
|
+
this.name = "CreatedButModifiedException";
|
|
546
|
+
this.$fault = "client";
|
|
547
|
+
Object.setPrototypeOf(this, CreatedButModifiedException.prototype);
|
|
548
|
+
this.Message = opts.Message;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
exports.CreatedButModifiedException = CreatedButModifiedException;
|
|
317
552
|
var ManagedExecution;
|
|
318
553
|
(function (ManagedExecution) {
|
|
319
554
|
ManagedExecution.filterSensitiveLog = (obj) => ({
|
|
@@ -332,6 +567,20 @@ var CreateStackSetOutput;
|
|
|
332
567
|
...obj,
|
|
333
568
|
});
|
|
334
569
|
})(CreateStackSetOutput = exports.CreateStackSetOutput || (exports.CreateStackSetOutput = {}));
|
|
570
|
+
class NameAlreadyExistsException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
571
|
+
constructor(opts) {
|
|
572
|
+
super({
|
|
573
|
+
name: "NameAlreadyExistsException",
|
|
574
|
+
$fault: "client",
|
|
575
|
+
...opts,
|
|
576
|
+
});
|
|
577
|
+
this.name = "NameAlreadyExistsException";
|
|
578
|
+
this.$fault = "client";
|
|
579
|
+
Object.setPrototypeOf(this, NameAlreadyExistsException.prototype);
|
|
580
|
+
this.Message = opts.Message;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
exports.NameAlreadyExistsException = NameAlreadyExistsException;
|
|
335
584
|
var DeactivateTypeInput;
|
|
336
585
|
(function (DeactivateTypeInput) {
|
|
337
586
|
DeactivateTypeInput.filterSensitiveLog = (obj) => ({
|
|
@@ -356,6 +605,20 @@ var DeleteChangeSetOutput;
|
|
|
356
605
|
...obj,
|
|
357
606
|
});
|
|
358
607
|
})(DeleteChangeSetOutput = exports.DeleteChangeSetOutput || (exports.DeleteChangeSetOutput = {}));
|
|
608
|
+
class InvalidChangeSetStatusException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
609
|
+
constructor(opts) {
|
|
610
|
+
super({
|
|
611
|
+
name: "InvalidChangeSetStatusException",
|
|
612
|
+
$fault: "client",
|
|
613
|
+
...opts,
|
|
614
|
+
});
|
|
615
|
+
this.name = "InvalidChangeSetStatusException";
|
|
616
|
+
this.$fault = "client";
|
|
617
|
+
Object.setPrototypeOf(this, InvalidChangeSetStatusException.prototype);
|
|
618
|
+
this.Message = opts.Message;
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
exports.InvalidChangeSetStatusException = InvalidChangeSetStatusException;
|
|
359
622
|
var DeleteStackInput;
|
|
360
623
|
(function (DeleteStackInput) {
|
|
361
624
|
DeleteStackInput.filterSensitiveLog = (obj) => ({
|
|
@@ -386,6 +649,20 @@ var DeleteStackSetOutput;
|
|
|
386
649
|
...obj,
|
|
387
650
|
});
|
|
388
651
|
})(DeleteStackSetOutput = exports.DeleteStackSetOutput || (exports.DeleteStackSetOutput = {}));
|
|
652
|
+
class StackSetNotEmptyException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
653
|
+
constructor(opts) {
|
|
654
|
+
super({
|
|
655
|
+
name: "StackSetNotEmptyException",
|
|
656
|
+
$fault: "client",
|
|
657
|
+
...opts,
|
|
658
|
+
});
|
|
659
|
+
this.name = "StackSetNotEmptyException";
|
|
660
|
+
this.$fault = "client";
|
|
661
|
+
Object.setPrototypeOf(this, StackSetNotEmptyException.prototype);
|
|
662
|
+
this.Message = opts.Message;
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
exports.StackSetNotEmptyException = StackSetNotEmptyException;
|
|
389
666
|
var DeregisterTypeInput;
|
|
390
667
|
(function (DeregisterTypeInput) {
|
|
391
668
|
DeregisterTypeInput.filterSensitiveLog = (obj) => ({
|
|
@@ -422,6 +699,18 @@ var DescribeChangeSetOutput;
|
|
|
422
699
|
...obj,
|
|
423
700
|
});
|
|
424
701
|
})(DescribeChangeSetOutput = exports.DescribeChangeSetOutput || (exports.DescribeChangeSetOutput = {}));
|
|
702
|
+
var DescribeChangeSetHooksInput;
|
|
703
|
+
(function (DescribeChangeSetHooksInput) {
|
|
704
|
+
DescribeChangeSetHooksInput.filterSensitiveLog = (obj) => ({
|
|
705
|
+
...obj,
|
|
706
|
+
});
|
|
707
|
+
})(DescribeChangeSetHooksInput = exports.DescribeChangeSetHooksInput || (exports.DescribeChangeSetHooksInput = {}));
|
|
708
|
+
var DescribeChangeSetHooksOutput;
|
|
709
|
+
(function (DescribeChangeSetHooksOutput) {
|
|
710
|
+
DescribeChangeSetHooksOutput.filterSensitiveLog = (obj) => ({
|
|
711
|
+
...obj,
|
|
712
|
+
});
|
|
713
|
+
})(DescribeChangeSetHooksOutput = exports.DescribeChangeSetHooksOutput || (exports.DescribeChangeSetHooksOutput = {}));
|
|
425
714
|
var DescribePublisherInput;
|
|
426
715
|
(function (DescribePublisherInput) {
|
|
427
716
|
DescribePublisherInput.filterSensitiveLog = (obj) => ({
|
|
@@ -476,6 +765,13 @@ var DescribeStackEventsInput;
|
|
|
476
765
|
...obj,
|
|
477
766
|
});
|
|
478
767
|
})(DescribeStackEventsInput = exports.DescribeStackEventsInput || (exports.DescribeStackEventsInput = {}));
|
|
768
|
+
var HookStatus;
|
|
769
|
+
(function (HookStatus) {
|
|
770
|
+
HookStatus["HOOK_COMPLETE_FAILED"] = "HOOK_COMPLETE_FAILED";
|
|
771
|
+
HookStatus["HOOK_COMPLETE_SUCCEEDED"] = "HOOK_COMPLETE_SUCCEEDED";
|
|
772
|
+
HookStatus["HOOK_FAILED"] = "HOOK_FAILED";
|
|
773
|
+
HookStatus["HOOK_IN_PROGRESS"] = "HOOK_IN_PROGRESS";
|
|
774
|
+
})(HookStatus = exports.HookStatus || (exports.HookStatus = {}));
|
|
479
775
|
var ResourceStatus;
|
|
480
776
|
(function (ResourceStatus) {
|
|
481
777
|
ResourceStatus["CREATE_COMPLETE"] = "CREATE_COMPLETE";
|
|
@@ -537,6 +833,20 @@ var DescribeStackInstanceOutput;
|
|
|
537
833
|
...obj,
|
|
538
834
|
});
|
|
539
835
|
})(DescribeStackInstanceOutput = exports.DescribeStackInstanceOutput || (exports.DescribeStackInstanceOutput = {}));
|
|
836
|
+
class StackInstanceNotFoundException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
837
|
+
constructor(opts) {
|
|
838
|
+
super({
|
|
839
|
+
name: "StackInstanceNotFoundException",
|
|
840
|
+
$fault: "client",
|
|
841
|
+
...opts,
|
|
842
|
+
});
|
|
843
|
+
this.name = "StackInstanceNotFoundException";
|
|
844
|
+
this.$fault = "client";
|
|
845
|
+
Object.setPrototypeOf(this, StackInstanceNotFoundException.prototype);
|
|
846
|
+
this.Message = opts.Message;
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
exports.StackInstanceNotFoundException = StackInstanceNotFoundException;
|
|
540
850
|
var DescribeStackResourceInput;
|
|
541
851
|
(function (DescribeStackResourceInput) {
|
|
542
852
|
DescribeStackResourceInput.filterSensitiveLog = (obj) => ({
|
|
@@ -734,6 +1044,20 @@ var DescribeStackSetOperationOutput;
|
|
|
734
1044
|
...obj,
|
|
735
1045
|
});
|
|
736
1046
|
})(DescribeStackSetOperationOutput = exports.DescribeStackSetOperationOutput || (exports.DescribeStackSetOperationOutput = {}));
|
|
1047
|
+
class OperationNotFoundException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
1048
|
+
constructor(opts) {
|
|
1049
|
+
super({
|
|
1050
|
+
name: "OperationNotFoundException",
|
|
1051
|
+
$fault: "client",
|
|
1052
|
+
...opts,
|
|
1053
|
+
});
|
|
1054
|
+
this.name = "OperationNotFoundException";
|
|
1055
|
+
this.$fault = "client";
|
|
1056
|
+
Object.setPrototypeOf(this, OperationNotFoundException.prototype);
|
|
1057
|
+
this.Message = opts.Message;
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
exports.OperationNotFoundException = OperationNotFoundException;
|
|
737
1061
|
var DescribeTypeInput;
|
|
738
1062
|
(function (DescribeTypeInput) {
|
|
739
1063
|
DescribeTypeInput.filterSensitiveLog = (obj) => ({
|
|
@@ -902,6 +1226,20 @@ var ImportStacksToStackSetOutput;
|
|
|
902
1226
|
...obj,
|
|
903
1227
|
});
|
|
904
1228
|
})(ImportStacksToStackSetOutput = exports.ImportStacksToStackSetOutput || (exports.ImportStacksToStackSetOutput = {}));
|
|
1229
|
+
class StackNotFoundException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
1230
|
+
constructor(opts) {
|
|
1231
|
+
super({
|
|
1232
|
+
name: "StackNotFoundException",
|
|
1233
|
+
$fault: "client",
|
|
1234
|
+
...opts,
|
|
1235
|
+
});
|
|
1236
|
+
this.name = "StackNotFoundException";
|
|
1237
|
+
this.$fault = "client";
|
|
1238
|
+
Object.setPrototypeOf(this, StackNotFoundException.prototype);
|
|
1239
|
+
this.Message = opts.Message;
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
exports.StackNotFoundException = StackNotFoundException;
|
|
905
1243
|
var ListChangeSetsInput;
|
|
906
1244
|
(function (ListChangeSetsInput) {
|
|
907
1245
|
ListChangeSetsInput.filterSensitiveLog = (obj) => ({
|
|
@@ -1136,6 +1474,34 @@ var PublishTypeOutput;
|
|
|
1136
1474
|
...obj,
|
|
1137
1475
|
});
|
|
1138
1476
|
})(PublishTypeOutput = exports.PublishTypeOutput || (exports.PublishTypeOutput = {}));
|
|
1477
|
+
class InvalidStateTransitionException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
1478
|
+
constructor(opts) {
|
|
1479
|
+
super({
|
|
1480
|
+
name: "InvalidStateTransitionException",
|
|
1481
|
+
$fault: "client",
|
|
1482
|
+
...opts,
|
|
1483
|
+
});
|
|
1484
|
+
this.name = "InvalidStateTransitionException";
|
|
1485
|
+
this.$fault = "client";
|
|
1486
|
+
Object.setPrototypeOf(this, InvalidStateTransitionException.prototype);
|
|
1487
|
+
this.Message = opts.Message;
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
exports.InvalidStateTransitionException = InvalidStateTransitionException;
|
|
1491
|
+
class OperationStatusCheckFailedException extends CloudFormationServiceException_1.CloudFormationServiceException {
|
|
1492
|
+
constructor(opts) {
|
|
1493
|
+
super({
|
|
1494
|
+
name: "OperationStatusCheckFailedException",
|
|
1495
|
+
$fault: "client",
|
|
1496
|
+
...opts,
|
|
1497
|
+
});
|
|
1498
|
+
this.name = "OperationStatusCheckFailedException";
|
|
1499
|
+
this.$fault = "client";
|
|
1500
|
+
Object.setPrototypeOf(this, OperationStatusCheckFailedException.prototype);
|
|
1501
|
+
this.Message = opts.Message;
|
|
1502
|
+
}
|
|
1503
|
+
}
|
|
1504
|
+
exports.OperationStatusCheckFailedException = OperationStatusCheckFailedException;
|
|
1139
1505
|
var OperationStatus;
|
|
1140
1506
|
(function (OperationStatus) {
|
|
1141
1507
|
OperationStatus["FAILED"] = "FAILED";
|
|
@@ -1148,11 +1514,13 @@ var HandlerErrorCode;
|
|
|
1148
1514
|
HandlerErrorCode["AccessDenied"] = "AccessDenied";
|
|
1149
1515
|
HandlerErrorCode["AlreadyExists"] = "AlreadyExists";
|
|
1150
1516
|
HandlerErrorCode["GeneralServiceException"] = "GeneralServiceException";
|
|
1517
|
+
HandlerErrorCode["HandlerInternalFailure"] = "HandlerInternalFailure";
|
|
1151
1518
|
HandlerErrorCode["InternalFailure"] = "InternalFailure";
|
|
1152
1519
|
HandlerErrorCode["InvalidCredentials"] = "InvalidCredentials";
|
|
1153
1520
|
HandlerErrorCode["InvalidRequest"] = "InvalidRequest";
|
|
1154
1521
|
HandlerErrorCode["InvalidTypeConfiguration"] = "InvalidTypeConfiguration";
|
|
1155
1522
|
HandlerErrorCode["NetworkFailure"] = "NetworkFailure";
|
|
1523
|
+
HandlerErrorCode["NonCompliant"] = "NonCompliant";
|
|
1156
1524
|
HandlerErrorCode["NotFound"] = "NotFound";
|
|
1157
1525
|
HandlerErrorCode["NotUpdatable"] = "NotUpdatable";
|
|
1158
1526
|
HandlerErrorCode["ResourceConflict"] = "ResourceConflict";
|
|
@@ -1160,6 +1528,7 @@ var HandlerErrorCode;
|
|
|
1160
1528
|
HandlerErrorCode["ServiceLimitExceeded"] = "ServiceLimitExceeded";
|
|
1161
1529
|
HandlerErrorCode["ServiceTimeout"] = "NotStabilized";
|
|
1162
1530
|
HandlerErrorCode["Throttling"] = "Throttling";
|
|
1531
|
+
HandlerErrorCode["Unknown"] = "Unknown";
|
|
1163
1532
|
})(HandlerErrorCode = exports.HandlerErrorCode || (exports.HandlerErrorCode = {}));
|
|
1164
1533
|
var RecordHandlerProgressInput;
|
|
1165
1534
|
(function (RecordHandlerProgressInput) {
|