@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
|
@@ -16,6 +16,7 @@ import { DeleteStackSetCommand, } from "./commands/DeleteStackSetCommand";
|
|
|
16
16
|
import { DeregisterTypeCommand, } from "./commands/DeregisterTypeCommand";
|
|
17
17
|
import { DescribeAccountLimitsCommand, } from "./commands/DescribeAccountLimitsCommand";
|
|
18
18
|
import { DescribeChangeSetCommand, } from "./commands/DescribeChangeSetCommand";
|
|
19
|
+
import { DescribeChangeSetHooksCommand, } from "./commands/DescribeChangeSetHooksCommand";
|
|
19
20
|
import { DescribePublisherCommand, } from "./commands/DescribePublisherCommand";
|
|
20
21
|
import { DescribeStackDriftDetectionStatusCommand, } from "./commands/DescribeStackDriftDetectionStatusCommand";
|
|
21
22
|
import { DescribeStackEventsCommand, } from "./commands/DescribeStackEventsCommand";
|
|
@@ -294,6 +295,20 @@ var CloudFormation = (function (_super) {
|
|
|
294
295
|
return this.send(command, optionsOrCb);
|
|
295
296
|
}
|
|
296
297
|
};
|
|
298
|
+
CloudFormation.prototype.describeChangeSetHooks = function (args, optionsOrCb, cb) {
|
|
299
|
+
var command = new DescribeChangeSetHooksCommand(args);
|
|
300
|
+
if (typeof optionsOrCb === "function") {
|
|
301
|
+
this.send(command, optionsOrCb);
|
|
302
|
+
}
|
|
303
|
+
else if (typeof cb === "function") {
|
|
304
|
+
if (typeof optionsOrCb !== "object")
|
|
305
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
306
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
307
|
+
}
|
|
308
|
+
else {
|
|
309
|
+
return this.send(command, optionsOrCb);
|
|
310
|
+
}
|
|
311
|
+
};
|
|
297
312
|
CloudFormation.prototype.describePublisher = function (args, optionsOrCb, cb) {
|
|
298
313
|
var command = new DescribePublisherCommand(args);
|
|
299
314
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DescribeChangeSetHooksInput, DescribeChangeSetHooksOutput } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_queryDescribeChangeSetHooksCommand, serializeAws_queryDescribeChangeSetHooksCommand, } from "../protocols/Aws_query";
|
|
6
|
+
var DescribeChangeSetHooksCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeChangeSetHooksCommand, _super);
|
|
8
|
+
function DescribeChangeSetHooksCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DescribeChangeSetHooksCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "CloudFormationClient";
|
|
18
|
+
var commandName = "DescribeChangeSetHooksCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DescribeChangeSetHooksInput.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeChangeSetHooksOutput.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeChangeSetHooksCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_queryDescribeChangeSetHooksCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DescribeChangeSetHooksCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_queryDescribeChangeSetHooksCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DescribeChangeSetHooksCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeChangeSetHooksCommand };
|
|
@@ -14,6 +14,7 @@ export * from "./DeleteStackSetCommand";
|
|
|
14
14
|
export * from "./DeregisterTypeCommand";
|
|
15
15
|
export * from "./DescribeAccountLimitsCommand";
|
|
16
16
|
export * from "./DescribeChangeSetCommand";
|
|
17
|
+
export * from "./DescribeChangeSetHooksCommand";
|
|
17
18
|
export * from "./DescribePublisherCommand";
|
|
18
19
|
export * from "./DescribeStackDriftDetectionStatusCommand";
|
|
19
20
|
export * from "./DescribeStackEventsCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var CloudFormationServiceException = (function (_super) {
|
|
4
|
+
__extends(CloudFormationServiceException, _super);
|
|
5
|
+
function CloudFormationServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CloudFormationServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CloudFormationServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CloudFormationServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CloudFormationServiceException as __BaseException } from "./CloudFormationServiceException";
|
|
2
3
|
export var AccountGateResult;
|
|
3
4
|
(function (AccountGateResult) {
|
|
4
5
|
AccountGateResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -13,6 +14,7 @@ export var LoggingConfig;
|
|
|
13
14
|
})(LoggingConfig || (LoggingConfig = {}));
|
|
14
15
|
export var ThirdPartyType;
|
|
15
16
|
(function (ThirdPartyType) {
|
|
17
|
+
ThirdPartyType["HOOK"] = "HOOK";
|
|
16
18
|
ThirdPartyType["MODULE"] = "MODULE";
|
|
17
19
|
ThirdPartyType["RESOURCE"] = "RESOURCE";
|
|
18
20
|
})(ThirdPartyType || (ThirdPartyType = {}));
|
|
@@ -29,6 +31,45 @@ export var ActivateTypeOutput;
|
|
|
29
31
|
(function (ActivateTypeOutput) {
|
|
30
32
|
ActivateTypeOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
31
33
|
})(ActivateTypeOutput || (ActivateTypeOutput = {}));
|
|
34
|
+
var CFNRegistryException = (function (_super) {
|
|
35
|
+
__extends(CFNRegistryException, _super);
|
|
36
|
+
function CFNRegistryException(opts) {
|
|
37
|
+
var _this = _super.call(this, __assign({ name: "CFNRegistryException", $fault: "client" }, opts)) || this;
|
|
38
|
+
_this.name = "CFNRegistryException";
|
|
39
|
+
_this.$fault = "client";
|
|
40
|
+
Object.setPrototypeOf(_this, CFNRegistryException.prototype);
|
|
41
|
+
_this.Message = opts.Message;
|
|
42
|
+
return _this;
|
|
43
|
+
}
|
|
44
|
+
return CFNRegistryException;
|
|
45
|
+
}(__BaseException));
|
|
46
|
+
export { CFNRegistryException };
|
|
47
|
+
var TypeNotFoundException = (function (_super) {
|
|
48
|
+
__extends(TypeNotFoundException, _super);
|
|
49
|
+
function TypeNotFoundException(opts) {
|
|
50
|
+
var _this = _super.call(this, __assign({ name: "TypeNotFoundException", $fault: "client" }, opts)) || this;
|
|
51
|
+
_this.name = "TypeNotFoundException";
|
|
52
|
+
_this.$fault = "client";
|
|
53
|
+
Object.setPrototypeOf(_this, TypeNotFoundException.prototype);
|
|
54
|
+
_this.Message = opts.Message;
|
|
55
|
+
return _this;
|
|
56
|
+
}
|
|
57
|
+
return TypeNotFoundException;
|
|
58
|
+
}(__BaseException));
|
|
59
|
+
export { TypeNotFoundException };
|
|
60
|
+
var AlreadyExistsException = (function (_super) {
|
|
61
|
+
__extends(AlreadyExistsException, _super);
|
|
62
|
+
function AlreadyExistsException(opts) {
|
|
63
|
+
var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
64
|
+
_this.name = "AlreadyExistsException";
|
|
65
|
+
_this.$fault = "client";
|
|
66
|
+
Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
|
|
67
|
+
_this.Message = opts.Message;
|
|
68
|
+
return _this;
|
|
69
|
+
}
|
|
70
|
+
return AlreadyExistsException;
|
|
71
|
+
}(__BaseException));
|
|
72
|
+
export { AlreadyExistsException };
|
|
32
73
|
export var AutoDeployment;
|
|
33
74
|
(function (AutoDeployment) {
|
|
34
75
|
AutoDeployment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -53,6 +94,19 @@ export var BatchDescribeTypeConfigurationsOutput;
|
|
|
53
94
|
(function (BatchDescribeTypeConfigurationsOutput) {
|
|
54
95
|
BatchDescribeTypeConfigurationsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
55
96
|
})(BatchDescribeTypeConfigurationsOutput || (BatchDescribeTypeConfigurationsOutput = {}));
|
|
97
|
+
var TypeConfigurationNotFoundException = (function (_super) {
|
|
98
|
+
__extends(TypeConfigurationNotFoundException, _super);
|
|
99
|
+
function TypeConfigurationNotFoundException(opts) {
|
|
100
|
+
var _this = _super.call(this, __assign({ name: "TypeConfigurationNotFoundException", $fault: "client" }, opts)) || this;
|
|
101
|
+
_this.name = "TypeConfigurationNotFoundException";
|
|
102
|
+
_this.$fault = "client";
|
|
103
|
+
Object.setPrototypeOf(_this, TypeConfigurationNotFoundException.prototype);
|
|
104
|
+
_this.Message = opts.Message;
|
|
105
|
+
return _this;
|
|
106
|
+
}
|
|
107
|
+
return TypeConfigurationNotFoundException;
|
|
108
|
+
}(__BaseException));
|
|
109
|
+
export { TypeConfigurationNotFoundException };
|
|
56
110
|
export var CallAs;
|
|
57
111
|
(function (CallAs) {
|
|
58
112
|
CallAs["DELEGATED_ADMIN"] = "DELEGATED_ADMIN";
|
|
@@ -62,6 +116,19 @@ export var CancelUpdateStackInput;
|
|
|
62
116
|
(function (CancelUpdateStackInput) {
|
|
63
117
|
CancelUpdateStackInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
64
118
|
})(CancelUpdateStackInput || (CancelUpdateStackInput = {}));
|
|
119
|
+
var TokenAlreadyExistsException = (function (_super) {
|
|
120
|
+
__extends(TokenAlreadyExistsException, _super);
|
|
121
|
+
function TokenAlreadyExistsException(opts) {
|
|
122
|
+
var _this = _super.call(this, __assign({ name: "TokenAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
123
|
+
_this.name = "TokenAlreadyExistsException";
|
|
124
|
+
_this.$fault = "client";
|
|
125
|
+
Object.setPrototypeOf(_this, TokenAlreadyExistsException.prototype);
|
|
126
|
+
_this.Message = opts.Message;
|
|
127
|
+
return _this;
|
|
128
|
+
}
|
|
129
|
+
return TokenAlreadyExistsException;
|
|
130
|
+
}(__BaseException));
|
|
131
|
+
export { TokenAlreadyExistsException };
|
|
65
132
|
export var Capability;
|
|
66
133
|
(function (Capability) {
|
|
67
134
|
Capability["CAPABILITY_AUTO_EXPAND"] = "CAPABILITY_AUTO_EXPAND";
|
|
@@ -141,6 +208,50 @@ export var Change;
|
|
|
141
208
|
(function (Change) {
|
|
142
209
|
Change.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
210
|
})(Change || (Change = {}));
|
|
211
|
+
export var HookFailureMode;
|
|
212
|
+
(function (HookFailureMode) {
|
|
213
|
+
HookFailureMode["FAIL"] = "FAIL";
|
|
214
|
+
HookFailureMode["WARN"] = "WARN";
|
|
215
|
+
})(HookFailureMode || (HookFailureMode = {}));
|
|
216
|
+
export var HookInvocationPoint;
|
|
217
|
+
(function (HookInvocationPoint) {
|
|
218
|
+
HookInvocationPoint["PRE_PROVISION"] = "PRE_PROVISION";
|
|
219
|
+
})(HookInvocationPoint || (HookInvocationPoint = {}));
|
|
220
|
+
export var ChangeSetHookResourceTargetDetails;
|
|
221
|
+
(function (ChangeSetHookResourceTargetDetails) {
|
|
222
|
+
ChangeSetHookResourceTargetDetails.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
})(ChangeSetHookResourceTargetDetails || (ChangeSetHookResourceTargetDetails = {}));
|
|
224
|
+
export var HookTargetType;
|
|
225
|
+
(function (HookTargetType) {
|
|
226
|
+
HookTargetType["RESOURCE"] = "RESOURCE";
|
|
227
|
+
})(HookTargetType || (HookTargetType = {}));
|
|
228
|
+
export var ChangeSetHookTargetDetails;
|
|
229
|
+
(function (ChangeSetHookTargetDetails) {
|
|
230
|
+
ChangeSetHookTargetDetails.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
})(ChangeSetHookTargetDetails || (ChangeSetHookTargetDetails = {}));
|
|
232
|
+
export var ChangeSetHook;
|
|
233
|
+
(function (ChangeSetHook) {
|
|
234
|
+
ChangeSetHook.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
})(ChangeSetHook || (ChangeSetHook = {}));
|
|
236
|
+
export var ChangeSetHooksStatus;
|
|
237
|
+
(function (ChangeSetHooksStatus) {
|
|
238
|
+
ChangeSetHooksStatus["PLANNED"] = "PLANNED";
|
|
239
|
+
ChangeSetHooksStatus["PLANNING"] = "PLANNING";
|
|
240
|
+
ChangeSetHooksStatus["UNAVAILABLE"] = "UNAVAILABLE";
|
|
241
|
+
})(ChangeSetHooksStatus || (ChangeSetHooksStatus = {}));
|
|
242
|
+
var ChangeSetNotFoundException = (function (_super) {
|
|
243
|
+
__extends(ChangeSetNotFoundException, _super);
|
|
244
|
+
function ChangeSetNotFoundException(opts) {
|
|
245
|
+
var _this = _super.call(this, __assign({ name: "ChangeSetNotFoundException", $fault: "client" }, opts)) || this;
|
|
246
|
+
_this.name = "ChangeSetNotFoundException";
|
|
247
|
+
_this.$fault = "client";
|
|
248
|
+
Object.setPrototypeOf(_this, ChangeSetNotFoundException.prototype);
|
|
249
|
+
_this.Message = opts.Message;
|
|
250
|
+
return _this;
|
|
251
|
+
}
|
|
252
|
+
return ChangeSetNotFoundException;
|
|
253
|
+
}(__BaseException));
|
|
254
|
+
export { ChangeSetNotFoundException };
|
|
144
255
|
export var ChangeSetStatus;
|
|
145
256
|
(function (ChangeSetStatus) {
|
|
146
257
|
ChangeSetStatus["CREATE_COMPLETE"] = "CREATE_COMPLETE";
|
|
@@ -207,6 +318,32 @@ export var CreateChangeSetOutput;
|
|
|
207
318
|
(function (CreateChangeSetOutput) {
|
|
208
319
|
CreateChangeSetOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
320
|
})(CreateChangeSetOutput || (CreateChangeSetOutput = {}));
|
|
321
|
+
var InsufficientCapabilitiesException = (function (_super) {
|
|
322
|
+
__extends(InsufficientCapabilitiesException, _super);
|
|
323
|
+
function InsufficientCapabilitiesException(opts) {
|
|
324
|
+
var _this = _super.call(this, __assign({ name: "InsufficientCapabilitiesException", $fault: "client" }, opts)) || this;
|
|
325
|
+
_this.name = "InsufficientCapabilitiesException";
|
|
326
|
+
_this.$fault = "client";
|
|
327
|
+
Object.setPrototypeOf(_this, InsufficientCapabilitiesException.prototype);
|
|
328
|
+
_this.Message = opts.Message;
|
|
329
|
+
return _this;
|
|
330
|
+
}
|
|
331
|
+
return InsufficientCapabilitiesException;
|
|
332
|
+
}(__BaseException));
|
|
333
|
+
export { InsufficientCapabilitiesException };
|
|
334
|
+
var LimitExceededException = (function (_super) {
|
|
335
|
+
__extends(LimitExceededException, _super);
|
|
336
|
+
function LimitExceededException(opts) {
|
|
337
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
338
|
+
_this.name = "LimitExceededException";
|
|
339
|
+
_this.$fault = "client";
|
|
340
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
341
|
+
_this.Message = opts.Message;
|
|
342
|
+
return _this;
|
|
343
|
+
}
|
|
344
|
+
return LimitExceededException;
|
|
345
|
+
}(__BaseException));
|
|
346
|
+
export { LimitExceededException };
|
|
210
347
|
export var OnFailure;
|
|
211
348
|
(function (OnFailure) {
|
|
212
349
|
OnFailure["DELETE"] = "DELETE";
|
|
@@ -242,6 +379,84 @@ export var CreateStackInstancesOutput;
|
|
|
242
379
|
(function (CreateStackInstancesOutput) {
|
|
243
380
|
CreateStackInstancesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
381
|
})(CreateStackInstancesOutput || (CreateStackInstancesOutput = {}));
|
|
382
|
+
var InvalidOperationException = (function (_super) {
|
|
383
|
+
__extends(InvalidOperationException, _super);
|
|
384
|
+
function InvalidOperationException(opts) {
|
|
385
|
+
var _this = _super.call(this, __assign({ name: "InvalidOperationException", $fault: "client" }, opts)) || this;
|
|
386
|
+
_this.name = "InvalidOperationException";
|
|
387
|
+
_this.$fault = "client";
|
|
388
|
+
Object.setPrototypeOf(_this, InvalidOperationException.prototype);
|
|
389
|
+
_this.Message = opts.Message;
|
|
390
|
+
return _this;
|
|
391
|
+
}
|
|
392
|
+
return InvalidOperationException;
|
|
393
|
+
}(__BaseException));
|
|
394
|
+
export { InvalidOperationException };
|
|
395
|
+
var OperationIdAlreadyExistsException = (function (_super) {
|
|
396
|
+
__extends(OperationIdAlreadyExistsException, _super);
|
|
397
|
+
function OperationIdAlreadyExistsException(opts) {
|
|
398
|
+
var _this = _super.call(this, __assign({ name: "OperationIdAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
399
|
+
_this.name = "OperationIdAlreadyExistsException";
|
|
400
|
+
_this.$fault = "client";
|
|
401
|
+
Object.setPrototypeOf(_this, OperationIdAlreadyExistsException.prototype);
|
|
402
|
+
_this.Message = opts.Message;
|
|
403
|
+
return _this;
|
|
404
|
+
}
|
|
405
|
+
return OperationIdAlreadyExistsException;
|
|
406
|
+
}(__BaseException));
|
|
407
|
+
export { OperationIdAlreadyExistsException };
|
|
408
|
+
var OperationInProgressException = (function (_super) {
|
|
409
|
+
__extends(OperationInProgressException, _super);
|
|
410
|
+
function OperationInProgressException(opts) {
|
|
411
|
+
var _this = _super.call(this, __assign({ name: "OperationInProgressException", $fault: "client" }, opts)) || this;
|
|
412
|
+
_this.name = "OperationInProgressException";
|
|
413
|
+
_this.$fault = "client";
|
|
414
|
+
Object.setPrototypeOf(_this, OperationInProgressException.prototype);
|
|
415
|
+
_this.Message = opts.Message;
|
|
416
|
+
return _this;
|
|
417
|
+
}
|
|
418
|
+
return OperationInProgressException;
|
|
419
|
+
}(__BaseException));
|
|
420
|
+
export { OperationInProgressException };
|
|
421
|
+
var StackSetNotFoundException = (function (_super) {
|
|
422
|
+
__extends(StackSetNotFoundException, _super);
|
|
423
|
+
function StackSetNotFoundException(opts) {
|
|
424
|
+
var _this = _super.call(this, __assign({ name: "StackSetNotFoundException", $fault: "client" }, opts)) || this;
|
|
425
|
+
_this.name = "StackSetNotFoundException";
|
|
426
|
+
_this.$fault = "client";
|
|
427
|
+
Object.setPrototypeOf(_this, StackSetNotFoundException.prototype);
|
|
428
|
+
_this.Message = opts.Message;
|
|
429
|
+
return _this;
|
|
430
|
+
}
|
|
431
|
+
return StackSetNotFoundException;
|
|
432
|
+
}(__BaseException));
|
|
433
|
+
export { StackSetNotFoundException };
|
|
434
|
+
var StaleRequestException = (function (_super) {
|
|
435
|
+
__extends(StaleRequestException, _super);
|
|
436
|
+
function StaleRequestException(opts) {
|
|
437
|
+
var _this = _super.call(this, __assign({ name: "StaleRequestException", $fault: "client" }, opts)) || this;
|
|
438
|
+
_this.name = "StaleRequestException";
|
|
439
|
+
_this.$fault = "client";
|
|
440
|
+
Object.setPrototypeOf(_this, StaleRequestException.prototype);
|
|
441
|
+
_this.Message = opts.Message;
|
|
442
|
+
return _this;
|
|
443
|
+
}
|
|
444
|
+
return StaleRequestException;
|
|
445
|
+
}(__BaseException));
|
|
446
|
+
export { StaleRequestException };
|
|
447
|
+
var CreatedButModifiedException = (function (_super) {
|
|
448
|
+
__extends(CreatedButModifiedException, _super);
|
|
449
|
+
function CreatedButModifiedException(opts) {
|
|
450
|
+
var _this = _super.call(this, __assign({ name: "CreatedButModifiedException", $fault: "client" }, opts)) || this;
|
|
451
|
+
_this.name = "CreatedButModifiedException";
|
|
452
|
+
_this.$fault = "client";
|
|
453
|
+
Object.setPrototypeOf(_this, CreatedButModifiedException.prototype);
|
|
454
|
+
_this.Message = opts.Message;
|
|
455
|
+
return _this;
|
|
456
|
+
}
|
|
457
|
+
return CreatedButModifiedException;
|
|
458
|
+
}(__BaseException));
|
|
459
|
+
export { CreatedButModifiedException };
|
|
245
460
|
export var ManagedExecution;
|
|
246
461
|
(function (ManagedExecution) {
|
|
247
462
|
ManagedExecution.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -254,6 +469,19 @@ export var CreateStackSetOutput;
|
|
|
254
469
|
(function (CreateStackSetOutput) {
|
|
255
470
|
CreateStackSetOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
471
|
})(CreateStackSetOutput || (CreateStackSetOutput = {}));
|
|
472
|
+
var NameAlreadyExistsException = (function (_super) {
|
|
473
|
+
__extends(NameAlreadyExistsException, _super);
|
|
474
|
+
function NameAlreadyExistsException(opts) {
|
|
475
|
+
var _this = _super.call(this, __assign({ name: "NameAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
476
|
+
_this.name = "NameAlreadyExistsException";
|
|
477
|
+
_this.$fault = "client";
|
|
478
|
+
Object.setPrototypeOf(_this, NameAlreadyExistsException.prototype);
|
|
479
|
+
_this.Message = opts.Message;
|
|
480
|
+
return _this;
|
|
481
|
+
}
|
|
482
|
+
return NameAlreadyExistsException;
|
|
483
|
+
}(__BaseException));
|
|
484
|
+
export { NameAlreadyExistsException };
|
|
257
485
|
export var DeactivateTypeInput;
|
|
258
486
|
(function (DeactivateTypeInput) {
|
|
259
487
|
DeactivateTypeInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -270,6 +498,19 @@ export var DeleteChangeSetOutput;
|
|
|
270
498
|
(function (DeleteChangeSetOutput) {
|
|
271
499
|
DeleteChangeSetOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
500
|
})(DeleteChangeSetOutput || (DeleteChangeSetOutput = {}));
|
|
501
|
+
var InvalidChangeSetStatusException = (function (_super) {
|
|
502
|
+
__extends(InvalidChangeSetStatusException, _super);
|
|
503
|
+
function InvalidChangeSetStatusException(opts) {
|
|
504
|
+
var _this = _super.call(this, __assign({ name: "InvalidChangeSetStatusException", $fault: "client" }, opts)) || this;
|
|
505
|
+
_this.name = "InvalidChangeSetStatusException";
|
|
506
|
+
_this.$fault = "client";
|
|
507
|
+
Object.setPrototypeOf(_this, InvalidChangeSetStatusException.prototype);
|
|
508
|
+
_this.Message = opts.Message;
|
|
509
|
+
return _this;
|
|
510
|
+
}
|
|
511
|
+
return InvalidChangeSetStatusException;
|
|
512
|
+
}(__BaseException));
|
|
513
|
+
export { InvalidChangeSetStatusException };
|
|
273
514
|
export var DeleteStackInput;
|
|
274
515
|
(function (DeleteStackInput) {
|
|
275
516
|
DeleteStackInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -290,6 +531,19 @@ export var DeleteStackSetOutput;
|
|
|
290
531
|
(function (DeleteStackSetOutput) {
|
|
291
532
|
DeleteStackSetOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
533
|
})(DeleteStackSetOutput || (DeleteStackSetOutput = {}));
|
|
534
|
+
var StackSetNotEmptyException = (function (_super) {
|
|
535
|
+
__extends(StackSetNotEmptyException, _super);
|
|
536
|
+
function StackSetNotEmptyException(opts) {
|
|
537
|
+
var _this = _super.call(this, __assign({ name: "StackSetNotEmptyException", $fault: "client" }, opts)) || this;
|
|
538
|
+
_this.name = "StackSetNotEmptyException";
|
|
539
|
+
_this.$fault = "client";
|
|
540
|
+
Object.setPrototypeOf(_this, StackSetNotEmptyException.prototype);
|
|
541
|
+
_this.Message = opts.Message;
|
|
542
|
+
return _this;
|
|
543
|
+
}
|
|
544
|
+
return StackSetNotEmptyException;
|
|
545
|
+
}(__BaseException));
|
|
546
|
+
export { StackSetNotEmptyException };
|
|
293
547
|
export var DeregisterTypeInput;
|
|
294
548
|
(function (DeregisterTypeInput) {
|
|
295
549
|
DeregisterTypeInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -314,6 +568,14 @@ export var DescribeChangeSetOutput;
|
|
|
314
568
|
(function (DescribeChangeSetOutput) {
|
|
315
569
|
DescribeChangeSetOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
570
|
})(DescribeChangeSetOutput || (DescribeChangeSetOutput = {}));
|
|
571
|
+
export var DescribeChangeSetHooksInput;
|
|
572
|
+
(function (DescribeChangeSetHooksInput) {
|
|
573
|
+
DescribeChangeSetHooksInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
574
|
+
})(DescribeChangeSetHooksInput || (DescribeChangeSetHooksInput = {}));
|
|
575
|
+
export var DescribeChangeSetHooksOutput;
|
|
576
|
+
(function (DescribeChangeSetHooksOutput) {
|
|
577
|
+
DescribeChangeSetHooksOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
578
|
+
})(DescribeChangeSetHooksOutput || (DescribeChangeSetHooksOutput = {}));
|
|
317
579
|
export var DescribePublisherInput;
|
|
318
580
|
(function (DescribePublisherInput) {
|
|
319
581
|
DescribePublisherInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -358,6 +620,13 @@ export var DescribeStackEventsInput;
|
|
|
358
620
|
(function (DescribeStackEventsInput) {
|
|
359
621
|
DescribeStackEventsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
622
|
})(DescribeStackEventsInput || (DescribeStackEventsInput = {}));
|
|
623
|
+
export var HookStatus;
|
|
624
|
+
(function (HookStatus) {
|
|
625
|
+
HookStatus["HOOK_COMPLETE_FAILED"] = "HOOK_COMPLETE_FAILED";
|
|
626
|
+
HookStatus["HOOK_COMPLETE_SUCCEEDED"] = "HOOK_COMPLETE_SUCCEEDED";
|
|
627
|
+
HookStatus["HOOK_FAILED"] = "HOOK_FAILED";
|
|
628
|
+
HookStatus["HOOK_IN_PROGRESS"] = "HOOK_IN_PROGRESS";
|
|
629
|
+
})(HookStatus || (HookStatus = {}));
|
|
361
630
|
export var ResourceStatus;
|
|
362
631
|
(function (ResourceStatus) {
|
|
363
632
|
ResourceStatus["CREATE_COMPLETE"] = "CREATE_COMPLETE";
|
|
@@ -407,6 +676,19 @@ export var DescribeStackInstanceOutput;
|
|
|
407
676
|
(function (DescribeStackInstanceOutput) {
|
|
408
677
|
DescribeStackInstanceOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
678
|
})(DescribeStackInstanceOutput || (DescribeStackInstanceOutput = {}));
|
|
679
|
+
var StackInstanceNotFoundException = (function (_super) {
|
|
680
|
+
__extends(StackInstanceNotFoundException, _super);
|
|
681
|
+
function StackInstanceNotFoundException(opts) {
|
|
682
|
+
var _this = _super.call(this, __assign({ name: "StackInstanceNotFoundException", $fault: "client" }, opts)) || this;
|
|
683
|
+
_this.name = "StackInstanceNotFoundException";
|
|
684
|
+
_this.$fault = "client";
|
|
685
|
+
Object.setPrototypeOf(_this, StackInstanceNotFoundException.prototype);
|
|
686
|
+
_this.Message = opts.Message;
|
|
687
|
+
return _this;
|
|
688
|
+
}
|
|
689
|
+
return StackInstanceNotFoundException;
|
|
690
|
+
}(__BaseException));
|
|
691
|
+
export { StackInstanceNotFoundException };
|
|
410
692
|
export var DescribeStackResourceInput;
|
|
411
693
|
(function (DescribeStackResourceInput) {
|
|
412
694
|
DescribeStackResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -556,6 +838,19 @@ export var DescribeStackSetOperationOutput;
|
|
|
556
838
|
(function (DescribeStackSetOperationOutput) {
|
|
557
839
|
DescribeStackSetOperationOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
558
840
|
})(DescribeStackSetOperationOutput || (DescribeStackSetOperationOutput = {}));
|
|
841
|
+
var OperationNotFoundException = (function (_super) {
|
|
842
|
+
__extends(OperationNotFoundException, _super);
|
|
843
|
+
function OperationNotFoundException(opts) {
|
|
844
|
+
var _this = _super.call(this, __assign({ name: "OperationNotFoundException", $fault: "client" }, opts)) || this;
|
|
845
|
+
_this.name = "OperationNotFoundException";
|
|
846
|
+
_this.$fault = "client";
|
|
847
|
+
Object.setPrototypeOf(_this, OperationNotFoundException.prototype);
|
|
848
|
+
_this.Message = opts.Message;
|
|
849
|
+
return _this;
|
|
850
|
+
}
|
|
851
|
+
return OperationNotFoundException;
|
|
852
|
+
}(__BaseException));
|
|
853
|
+
export { OperationNotFoundException };
|
|
559
854
|
export var DescribeTypeInput;
|
|
560
855
|
(function (DescribeTypeInput) {
|
|
561
856
|
DescribeTypeInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -672,6 +967,19 @@ export var ImportStacksToStackSetOutput;
|
|
|
672
967
|
(function (ImportStacksToStackSetOutput) {
|
|
673
968
|
ImportStacksToStackSetOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
674
969
|
})(ImportStacksToStackSetOutput || (ImportStacksToStackSetOutput = {}));
|
|
970
|
+
var StackNotFoundException = (function (_super) {
|
|
971
|
+
__extends(StackNotFoundException, _super);
|
|
972
|
+
function StackNotFoundException(opts) {
|
|
973
|
+
var _this = _super.call(this, __assign({ name: "StackNotFoundException", $fault: "client" }, opts)) || this;
|
|
974
|
+
_this.name = "StackNotFoundException";
|
|
975
|
+
_this.$fault = "client";
|
|
976
|
+
Object.setPrototypeOf(_this, StackNotFoundException.prototype);
|
|
977
|
+
_this.Message = opts.Message;
|
|
978
|
+
return _this;
|
|
979
|
+
}
|
|
980
|
+
return StackNotFoundException;
|
|
981
|
+
}(__BaseException));
|
|
982
|
+
export { StackNotFoundException };
|
|
675
983
|
export var ListChangeSetsInput;
|
|
676
984
|
(function (ListChangeSetsInput) {
|
|
677
985
|
ListChangeSetsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -828,6 +1136,32 @@ export var PublishTypeOutput;
|
|
|
828
1136
|
(function (PublishTypeOutput) {
|
|
829
1137
|
PublishTypeOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
830
1138
|
})(PublishTypeOutput || (PublishTypeOutput = {}));
|
|
1139
|
+
var InvalidStateTransitionException = (function (_super) {
|
|
1140
|
+
__extends(InvalidStateTransitionException, _super);
|
|
1141
|
+
function InvalidStateTransitionException(opts) {
|
|
1142
|
+
var _this = _super.call(this, __assign({ name: "InvalidStateTransitionException", $fault: "client" }, opts)) || this;
|
|
1143
|
+
_this.name = "InvalidStateTransitionException";
|
|
1144
|
+
_this.$fault = "client";
|
|
1145
|
+
Object.setPrototypeOf(_this, InvalidStateTransitionException.prototype);
|
|
1146
|
+
_this.Message = opts.Message;
|
|
1147
|
+
return _this;
|
|
1148
|
+
}
|
|
1149
|
+
return InvalidStateTransitionException;
|
|
1150
|
+
}(__BaseException));
|
|
1151
|
+
export { InvalidStateTransitionException };
|
|
1152
|
+
var OperationStatusCheckFailedException = (function (_super) {
|
|
1153
|
+
__extends(OperationStatusCheckFailedException, _super);
|
|
1154
|
+
function OperationStatusCheckFailedException(opts) {
|
|
1155
|
+
var _this = _super.call(this, __assign({ name: "OperationStatusCheckFailedException", $fault: "client" }, opts)) || this;
|
|
1156
|
+
_this.name = "OperationStatusCheckFailedException";
|
|
1157
|
+
_this.$fault = "client";
|
|
1158
|
+
Object.setPrototypeOf(_this, OperationStatusCheckFailedException.prototype);
|
|
1159
|
+
_this.Message = opts.Message;
|
|
1160
|
+
return _this;
|
|
1161
|
+
}
|
|
1162
|
+
return OperationStatusCheckFailedException;
|
|
1163
|
+
}(__BaseException));
|
|
1164
|
+
export { OperationStatusCheckFailedException };
|
|
831
1165
|
export var OperationStatus;
|
|
832
1166
|
(function (OperationStatus) {
|
|
833
1167
|
OperationStatus["FAILED"] = "FAILED";
|
|
@@ -840,11 +1174,13 @@ export var HandlerErrorCode;
|
|
|
840
1174
|
HandlerErrorCode["AccessDenied"] = "AccessDenied";
|
|
841
1175
|
HandlerErrorCode["AlreadyExists"] = "AlreadyExists";
|
|
842
1176
|
HandlerErrorCode["GeneralServiceException"] = "GeneralServiceException";
|
|
1177
|
+
HandlerErrorCode["HandlerInternalFailure"] = "HandlerInternalFailure";
|
|
843
1178
|
HandlerErrorCode["InternalFailure"] = "InternalFailure";
|
|
844
1179
|
HandlerErrorCode["InvalidCredentials"] = "InvalidCredentials";
|
|
845
1180
|
HandlerErrorCode["InvalidRequest"] = "InvalidRequest";
|
|
846
1181
|
HandlerErrorCode["InvalidTypeConfiguration"] = "InvalidTypeConfiguration";
|
|
847
1182
|
HandlerErrorCode["NetworkFailure"] = "NetworkFailure";
|
|
1183
|
+
HandlerErrorCode["NonCompliant"] = "NonCompliant";
|
|
848
1184
|
HandlerErrorCode["NotFound"] = "NotFound";
|
|
849
1185
|
HandlerErrorCode["NotUpdatable"] = "NotUpdatable";
|
|
850
1186
|
HandlerErrorCode["ResourceConflict"] = "ResourceConflict";
|
|
@@ -852,6 +1188,7 @@ export var HandlerErrorCode;
|
|
|
852
1188
|
HandlerErrorCode["ServiceLimitExceeded"] = "ServiceLimitExceeded";
|
|
853
1189
|
HandlerErrorCode["ServiceTimeout"] = "NotStabilized";
|
|
854
1190
|
HandlerErrorCode["Throttling"] = "Throttling";
|
|
1191
|
+
HandlerErrorCode["Unknown"] = "Unknown";
|
|
855
1192
|
})(HandlerErrorCode || (HandlerErrorCode = {}));
|
|
856
1193
|
export var RecordHandlerProgressInput;
|
|
857
1194
|
(function (RecordHandlerProgressInput) {
|