@aws-sdk/client-launch-wizard 3.490.0 → 3.496.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/dist-cjs/LaunchWizard.js +1 -27
- package/dist-cjs/LaunchWizardClient.js +1 -43
- package/dist-cjs/commands/CreateDeploymentCommand.js +1 -29
- package/dist-cjs/commands/DeleteDeploymentCommand.js +1 -28
- package/dist-cjs/commands/GetDeploymentCommand.js +1 -29
- package/dist-cjs/commands/GetWorkloadCommand.js +1 -28
- package/dist-cjs/commands/ListDeploymentEventsCommand.js +1 -28
- package/dist-cjs/commands/ListDeploymentsCommand.js +1 -28
- package/dist-cjs/commands/ListWorkloadDeploymentPatternsCommand.js +1 -28
- package/dist-cjs/commands/ListWorkloadsCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -11
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1076 -11
- package/dist-cjs/models/LaunchWizardServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -109
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListDeploymentEventsPaginator.js +1 -7
- package/dist-cjs/pagination/ListDeploymentsPaginator.js +1 -7
- package/dist-cjs/pagination/ListWorkloadDeploymentPatternsPaginator.js +1 -7
- package/dist-cjs/pagination/ListWorkloadsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +1 -605
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LaunchWizardServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class LaunchWizardServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, LaunchWizardServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.LaunchWizardServiceException = LaunchWizardServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,109 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetDeploymentOutputFilterSensitiveLog = exports.DeploymentDataFilterSensitiveLog = exports.CreateDeploymentInputFilterSensitiveLog = exports.WorkloadDeploymentPatternStatus = exports.WorkloadStatus = exports.DeploymentFilterKey = exports.EventStatus = exports.DeploymentStatus = exports.ValidationException = exports.ResourceNotFoundException = exports.ResourceLimitException = exports.InternalServerException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const LaunchWizardServiceException_1 = require("./LaunchWizardServiceException");
|
|
6
|
-
class InternalServerException extends LaunchWizardServiceException_1.LaunchWizardServiceException {
|
|
7
|
-
constructor(opts) {
|
|
8
|
-
super({
|
|
9
|
-
name: "InternalServerException",
|
|
10
|
-
$fault: "server",
|
|
11
|
-
...opts,
|
|
12
|
-
});
|
|
13
|
-
this.name = "InternalServerException";
|
|
14
|
-
this.$fault = "server";
|
|
15
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.InternalServerException = InternalServerException;
|
|
19
|
-
class ResourceLimitException extends LaunchWizardServiceException_1.LaunchWizardServiceException {
|
|
20
|
-
constructor(opts) {
|
|
21
|
-
super({
|
|
22
|
-
name: "ResourceLimitException",
|
|
23
|
-
$fault: "client",
|
|
24
|
-
...opts,
|
|
25
|
-
});
|
|
26
|
-
this.name = "ResourceLimitException";
|
|
27
|
-
this.$fault = "client";
|
|
28
|
-
Object.setPrototypeOf(this, ResourceLimitException.prototype);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
exports.ResourceLimitException = ResourceLimitException;
|
|
32
|
-
class ResourceNotFoundException extends LaunchWizardServiceException_1.LaunchWizardServiceException {
|
|
33
|
-
constructor(opts) {
|
|
34
|
-
super({
|
|
35
|
-
name: "ResourceNotFoundException",
|
|
36
|
-
$fault: "client",
|
|
37
|
-
...opts,
|
|
38
|
-
});
|
|
39
|
-
this.name = "ResourceNotFoundException";
|
|
40
|
-
this.$fault = "client";
|
|
41
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
45
|
-
class ValidationException extends LaunchWizardServiceException_1.LaunchWizardServiceException {
|
|
46
|
-
constructor(opts) {
|
|
47
|
-
super({
|
|
48
|
-
name: "ValidationException",
|
|
49
|
-
$fault: "client",
|
|
50
|
-
...opts,
|
|
51
|
-
});
|
|
52
|
-
this.name = "ValidationException";
|
|
53
|
-
this.$fault = "client";
|
|
54
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
exports.ValidationException = ValidationException;
|
|
58
|
-
exports.DeploymentStatus = {
|
|
59
|
-
COMPLETED: "COMPLETED",
|
|
60
|
-
CREATING: "CREATING",
|
|
61
|
-
DELETED: "DELETED",
|
|
62
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
63
|
-
DELETE_INITIATING: "DELETE_INITIATING",
|
|
64
|
-
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
65
|
-
FAILED: "FAILED",
|
|
66
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
67
|
-
VALIDATING: "VALIDATING",
|
|
68
|
-
};
|
|
69
|
-
exports.EventStatus = {
|
|
70
|
-
CANCELED: "CANCELED",
|
|
71
|
-
CANCELING: "CANCELING",
|
|
72
|
-
COMPLETED: "COMPLETED",
|
|
73
|
-
CREATED: "CREATED",
|
|
74
|
-
FAILED: "FAILED",
|
|
75
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
76
|
-
PENDING: "PENDING",
|
|
77
|
-
TIMED_OUT: "TIMED_OUT",
|
|
78
|
-
};
|
|
79
|
-
exports.DeploymentFilterKey = {
|
|
80
|
-
DEPLOYMENT_STATUS: "DEPLOYMENT_STATUS",
|
|
81
|
-
WORKLOAD_NAME: "WORKLOAD_NAME",
|
|
82
|
-
};
|
|
83
|
-
exports.WorkloadStatus = {
|
|
84
|
-
ACTIVE: "ACTIVE",
|
|
85
|
-
DELETED: "DELETED",
|
|
86
|
-
DISABLED: "DISABLED",
|
|
87
|
-
INACTIVE: "INACTIVE",
|
|
88
|
-
};
|
|
89
|
-
exports.WorkloadDeploymentPatternStatus = {
|
|
90
|
-
ACTIVE: "ACTIVE",
|
|
91
|
-
DELETED: "DELETED",
|
|
92
|
-
DISABLED: "DISABLED",
|
|
93
|
-
INACTIVE: "INACTIVE",
|
|
94
|
-
};
|
|
95
|
-
const CreateDeploymentInputFilterSensitiveLog = (obj) => ({
|
|
96
|
-
...obj,
|
|
97
|
-
...(obj.specifications && { specifications: smithy_client_1.SENSITIVE_STRING }),
|
|
98
|
-
});
|
|
99
|
-
exports.CreateDeploymentInputFilterSensitiveLog = CreateDeploymentInputFilterSensitiveLog;
|
|
100
|
-
const DeploymentDataFilterSensitiveLog = (obj) => ({
|
|
101
|
-
...obj,
|
|
102
|
-
...(obj.specifications && { specifications: smithy_client_1.SENSITIVE_STRING }),
|
|
103
|
-
});
|
|
104
|
-
exports.DeploymentDataFilterSensitiveLog = DeploymentDataFilterSensitiveLog;
|
|
105
|
-
const GetDeploymentOutputFilterSensitiveLog = (obj) => ({
|
|
106
|
-
...obj,
|
|
107
|
-
...(obj.deployment && { deployment: (0, exports.DeploymentDataFilterSensitiveLog)(obj.deployment) }),
|
|
108
|
-
});
|
|
109
|
-
exports.GetDeploymentOutputFilterSensitiveLog = GetDeploymentOutputFilterSensitiveLog;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListDeploymentEvents = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListDeploymentEventsCommand_1 = require("../commands/ListDeploymentEventsCommand");
|
|
6
|
-
const LaunchWizardClient_1 = require("../LaunchWizardClient");
|
|
7
|
-
exports.paginateListDeploymentEvents = (0, core_1.createPaginator)(LaunchWizardClient_1.LaunchWizardClient, ListDeploymentEventsCommand_1.ListDeploymentEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListDeployments = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListDeploymentsCommand_1 = require("../commands/ListDeploymentsCommand");
|
|
6
|
-
const LaunchWizardClient_1 = require("../LaunchWizardClient");
|
|
7
|
-
exports.paginateListDeployments = (0, core_1.createPaginator)(LaunchWizardClient_1.LaunchWizardClient, ListDeploymentsCommand_1.ListDeploymentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListWorkloadDeploymentPatterns = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListWorkloadDeploymentPatternsCommand_1 = require("../commands/ListWorkloadDeploymentPatternsCommand");
|
|
6
|
-
const LaunchWizardClient_1 = require("../LaunchWizardClient");
|
|
7
|
-
exports.paginateListWorkloadDeploymentPatterns = (0, core_1.createPaginator)(LaunchWizardClient_1.LaunchWizardClient, ListWorkloadDeploymentPatternsCommand_1.ListWorkloadDeploymentPatternsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListWorkloads = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListWorkloadsCommand_1 = require("../commands/ListWorkloadsCommand");
|
|
6
|
-
const LaunchWizardClient_1 = require("../LaunchWizardClient");
|
|
7
|
-
exports.paginateListWorkloads = (0, core_1.createPaginator)(LaunchWizardClient_1.LaunchWizardClient, ListWorkloadsCommand_1.ListWorkloadsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,8 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListDeploymentEventsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListDeploymentsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListWorkloadDeploymentPatternsPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListWorkloadsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|