@aws-sdk/client-fis 3.52.0 → 3.54.1
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/dist-cjs/index.js +3 -0
- package/dist-cjs/models/FisServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +115 -2
- package/dist-cjs/protocols/Aws_restJson1.js +240 -363
- package/dist-es/index.js +1 -0
- package/dist-es/models/FisServiceException.js +12 -0
- package/dist-es/models/models_0.js +90 -1
- package/dist-es/protocols/Aws_restJson1.js +365 -415
- package/dist-types/FisClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/FisServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +240 -17
- 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/FisClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/FisServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +142 -17
- 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 +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** update clients as of 2022/03/10 ([#3411](https://github.com/aws/aws-sdk-js-v3/issues/3411)) ([8fa517a](https://github.com/aws/aws-sdk-js-v3/commit/8fa517a2c56d2f98a2e4a9c4ea6fd99b6ce61a71))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-fis
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FisServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./Fis"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./FisClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var FisServiceException_1 = require("./models/FisServiceException");
|
|
11
|
+
Object.defineProperty(exports, "FisServiceException", { enumerable: true, get: function () { return FisServiceException_1.FisServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FisServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class FisServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, FisServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.FisServiceException = FisServiceException;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UpdateExperimentTemplateResponse = exports.UpdateExperimentTemplateRequest = exports.UpdateExperimentTemplateTargetInput = exports.UpdateExperimentTemplateStopConditionInput = exports.UpdateExperimentTemplateActionInputItem = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StopExperimentResponse = exports.StopExperimentRequest = exports.StartExperimentResponse = void 0;
|
|
3
|
+
exports.TargetResourceType = exports.TargetResourceTypeParameter = exports.GetTargetResourceTypeRequest = exports.GetExperimentTemplateResponse = exports.GetExperimentTemplateRequest = exports.GetExperimentResponse = exports.GetExperimentRequest = exports.GetActionResponse = exports.GetActionRequest = exports.ExperimentTemplateSummary = exports.ExperimentSummary = exports.Experiment = exports.ExperimentTarget = exports.ExperimentTargetFilter = exports.ExperimentStopCondition = exports.ExperimentState = exports.ExperimentStatus = exports.ExperimentLogConfiguration = exports.ExperimentS3LogConfiguration = exports.ExperimentCloudWatchLogsLogConfiguration = exports.ExperimentAction = exports.ExperimentActionState = exports.ExperimentActionStatus = exports.DeleteExperimentTemplateResponse = exports.DeleteExperimentTemplateRequest = exports.ValidationException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.CreateExperimentTemplateResponse = exports.ExperimentTemplate = exports.ExperimentTemplateTarget = exports.ExperimentTemplateTargetFilter = exports.ExperimentTemplateStopCondition = exports.ExperimentTemplateLogConfiguration = exports.ExperimentTemplateS3LogConfiguration = exports.ExperimentTemplateCloudWatchLogsLogConfiguration = exports.ExperimentTemplateAction = exports.CreateExperimentTemplateRequest = exports.CreateExperimentTemplateTargetInput = exports.ExperimentTemplateTargetInputFilter = exports.CreateExperimentTemplateStopConditionInput = exports.CreateExperimentTemplateLogConfigurationInput = exports.ExperimentTemplateS3LogConfigurationInput = exports.ExperimentTemplateCloudWatchLogsLogConfigurationInput = exports.CreateExperimentTemplateActionInput = exports.ConflictException = exports.ActionSummary = exports.Action = exports.ActionTarget = exports.ActionParameter = void 0;
|
|
4
|
+
exports.UpdateExperimentTemplateResponse = exports.UpdateExperimentTemplateRequest = exports.UpdateExperimentTemplateTargetInput = exports.UpdateExperimentTemplateStopConditionInput = exports.UpdateExperimentTemplateLogConfigurationInput = exports.UpdateExperimentTemplateActionInputItem = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StopExperimentResponse = exports.StopExperimentRequest = exports.StartExperimentResponse = exports.StartExperimentRequest = exports.ListTargetResourceTypesResponse = exports.TargetResourceTypeSummary = exports.ListTargetResourceTypesRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListExperimentTemplatesResponse = exports.ListExperimentTemplatesRequest = exports.ListExperimentsResponse = exports.ListExperimentsRequest = exports.ListActionsResponse = exports.ListActionsRequest = exports.GetTargetResourceTypeResponse = void 0;
|
|
5
|
+
const FisServiceException_1 = require("./FisServiceException");
|
|
5
6
|
var ActionParameter;
|
|
6
7
|
(function (ActionParameter) {
|
|
7
8
|
ActionParameter.filterSensitiveLog = (obj) => ({
|
|
@@ -26,12 +27,43 @@ var ActionSummary;
|
|
|
26
27
|
...obj,
|
|
27
28
|
});
|
|
28
29
|
})(ActionSummary = exports.ActionSummary || (exports.ActionSummary = {}));
|
|
30
|
+
class ConflictException extends FisServiceException_1.FisServiceException {
|
|
31
|
+
constructor(opts) {
|
|
32
|
+
super({
|
|
33
|
+
name: "ConflictException",
|
|
34
|
+
$fault: "client",
|
|
35
|
+
...opts,
|
|
36
|
+
});
|
|
37
|
+
this.name = "ConflictException";
|
|
38
|
+
this.$fault = "client";
|
|
39
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
exports.ConflictException = ConflictException;
|
|
29
43
|
var CreateExperimentTemplateActionInput;
|
|
30
44
|
(function (CreateExperimentTemplateActionInput) {
|
|
31
45
|
CreateExperimentTemplateActionInput.filterSensitiveLog = (obj) => ({
|
|
32
46
|
...obj,
|
|
33
47
|
});
|
|
34
48
|
})(CreateExperimentTemplateActionInput = exports.CreateExperimentTemplateActionInput || (exports.CreateExperimentTemplateActionInput = {}));
|
|
49
|
+
var ExperimentTemplateCloudWatchLogsLogConfigurationInput;
|
|
50
|
+
(function (ExperimentTemplateCloudWatchLogsLogConfigurationInput) {
|
|
51
|
+
ExperimentTemplateCloudWatchLogsLogConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
52
|
+
...obj,
|
|
53
|
+
});
|
|
54
|
+
})(ExperimentTemplateCloudWatchLogsLogConfigurationInput = exports.ExperimentTemplateCloudWatchLogsLogConfigurationInput || (exports.ExperimentTemplateCloudWatchLogsLogConfigurationInput = {}));
|
|
55
|
+
var ExperimentTemplateS3LogConfigurationInput;
|
|
56
|
+
(function (ExperimentTemplateS3LogConfigurationInput) {
|
|
57
|
+
ExperimentTemplateS3LogConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
58
|
+
...obj,
|
|
59
|
+
});
|
|
60
|
+
})(ExperimentTemplateS3LogConfigurationInput = exports.ExperimentTemplateS3LogConfigurationInput || (exports.ExperimentTemplateS3LogConfigurationInput = {}));
|
|
61
|
+
var CreateExperimentTemplateLogConfigurationInput;
|
|
62
|
+
(function (CreateExperimentTemplateLogConfigurationInput) {
|
|
63
|
+
CreateExperimentTemplateLogConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
64
|
+
...obj,
|
|
65
|
+
});
|
|
66
|
+
})(CreateExperimentTemplateLogConfigurationInput = exports.CreateExperimentTemplateLogConfigurationInput || (exports.CreateExperimentTemplateLogConfigurationInput = {}));
|
|
35
67
|
var CreateExperimentTemplateStopConditionInput;
|
|
36
68
|
(function (CreateExperimentTemplateStopConditionInput) {
|
|
37
69
|
CreateExperimentTemplateStopConditionInput.filterSensitiveLog = (obj) => ({
|
|
@@ -62,6 +94,24 @@ var ExperimentTemplateAction;
|
|
|
62
94
|
...obj,
|
|
63
95
|
});
|
|
64
96
|
})(ExperimentTemplateAction = exports.ExperimentTemplateAction || (exports.ExperimentTemplateAction = {}));
|
|
97
|
+
var ExperimentTemplateCloudWatchLogsLogConfiguration;
|
|
98
|
+
(function (ExperimentTemplateCloudWatchLogsLogConfiguration) {
|
|
99
|
+
ExperimentTemplateCloudWatchLogsLogConfiguration.filterSensitiveLog = (obj) => ({
|
|
100
|
+
...obj,
|
|
101
|
+
});
|
|
102
|
+
})(ExperimentTemplateCloudWatchLogsLogConfiguration = exports.ExperimentTemplateCloudWatchLogsLogConfiguration || (exports.ExperimentTemplateCloudWatchLogsLogConfiguration = {}));
|
|
103
|
+
var ExperimentTemplateS3LogConfiguration;
|
|
104
|
+
(function (ExperimentTemplateS3LogConfiguration) {
|
|
105
|
+
ExperimentTemplateS3LogConfiguration.filterSensitiveLog = (obj) => ({
|
|
106
|
+
...obj,
|
|
107
|
+
});
|
|
108
|
+
})(ExperimentTemplateS3LogConfiguration = exports.ExperimentTemplateS3LogConfiguration || (exports.ExperimentTemplateS3LogConfiguration = {}));
|
|
109
|
+
var ExperimentTemplateLogConfiguration;
|
|
110
|
+
(function (ExperimentTemplateLogConfiguration) {
|
|
111
|
+
ExperimentTemplateLogConfiguration.filterSensitiveLog = (obj) => ({
|
|
112
|
+
...obj,
|
|
113
|
+
});
|
|
114
|
+
})(ExperimentTemplateLogConfiguration = exports.ExperimentTemplateLogConfiguration || (exports.ExperimentTemplateLogConfiguration = {}));
|
|
65
115
|
var ExperimentTemplateStopCondition;
|
|
66
116
|
(function (ExperimentTemplateStopCondition) {
|
|
67
117
|
ExperimentTemplateStopCondition.filterSensitiveLog = (obj) => ({
|
|
@@ -92,6 +142,45 @@ var CreateExperimentTemplateResponse;
|
|
|
92
142
|
...obj,
|
|
93
143
|
});
|
|
94
144
|
})(CreateExperimentTemplateResponse = exports.CreateExperimentTemplateResponse || (exports.CreateExperimentTemplateResponse = {}));
|
|
145
|
+
class ResourceNotFoundException extends FisServiceException_1.FisServiceException {
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "ResourceNotFoundException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
this.name = "ResourceNotFoundException";
|
|
153
|
+
this.$fault = "client";
|
|
154
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
158
|
+
class ServiceQuotaExceededException extends FisServiceException_1.FisServiceException {
|
|
159
|
+
constructor(opts) {
|
|
160
|
+
super({
|
|
161
|
+
name: "ServiceQuotaExceededException",
|
|
162
|
+
$fault: "client",
|
|
163
|
+
...opts,
|
|
164
|
+
});
|
|
165
|
+
this.name = "ServiceQuotaExceededException";
|
|
166
|
+
this.$fault = "client";
|
|
167
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
171
|
+
class ValidationException extends FisServiceException_1.FisServiceException {
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "ValidationException",
|
|
175
|
+
$fault: "client",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
this.name = "ValidationException";
|
|
179
|
+
this.$fault = "client";
|
|
180
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
exports.ValidationException = ValidationException;
|
|
95
184
|
var DeleteExperimentTemplateRequest;
|
|
96
185
|
(function (DeleteExperimentTemplateRequest) {
|
|
97
186
|
DeleteExperimentTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -127,6 +216,24 @@ var ExperimentAction;
|
|
|
127
216
|
...obj,
|
|
128
217
|
});
|
|
129
218
|
})(ExperimentAction = exports.ExperimentAction || (exports.ExperimentAction = {}));
|
|
219
|
+
var ExperimentCloudWatchLogsLogConfiguration;
|
|
220
|
+
(function (ExperimentCloudWatchLogsLogConfiguration) {
|
|
221
|
+
ExperimentCloudWatchLogsLogConfiguration.filterSensitiveLog = (obj) => ({
|
|
222
|
+
...obj,
|
|
223
|
+
});
|
|
224
|
+
})(ExperimentCloudWatchLogsLogConfiguration = exports.ExperimentCloudWatchLogsLogConfiguration || (exports.ExperimentCloudWatchLogsLogConfiguration = {}));
|
|
225
|
+
var ExperimentS3LogConfiguration;
|
|
226
|
+
(function (ExperimentS3LogConfiguration) {
|
|
227
|
+
ExperimentS3LogConfiguration.filterSensitiveLog = (obj) => ({
|
|
228
|
+
...obj,
|
|
229
|
+
});
|
|
230
|
+
})(ExperimentS3LogConfiguration = exports.ExperimentS3LogConfiguration || (exports.ExperimentS3LogConfiguration = {}));
|
|
231
|
+
var ExperimentLogConfiguration;
|
|
232
|
+
(function (ExperimentLogConfiguration) {
|
|
233
|
+
ExperimentLogConfiguration.filterSensitiveLog = (obj) => ({
|
|
234
|
+
...obj,
|
|
235
|
+
});
|
|
236
|
+
})(ExperimentLogConfiguration = exports.ExperimentLogConfiguration || (exports.ExperimentLogConfiguration = {}));
|
|
130
237
|
var ExperimentStatus;
|
|
131
238
|
(function (ExperimentStatus) {
|
|
132
239
|
ExperimentStatus["completed"] = "completed";
|
|
@@ -359,6 +466,12 @@ var UpdateExperimentTemplateActionInputItem;
|
|
|
359
466
|
...obj,
|
|
360
467
|
});
|
|
361
468
|
})(UpdateExperimentTemplateActionInputItem = exports.UpdateExperimentTemplateActionInputItem || (exports.UpdateExperimentTemplateActionInputItem = {}));
|
|
469
|
+
var UpdateExperimentTemplateLogConfigurationInput;
|
|
470
|
+
(function (UpdateExperimentTemplateLogConfigurationInput) {
|
|
471
|
+
UpdateExperimentTemplateLogConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
472
|
+
...obj,
|
|
473
|
+
});
|
|
474
|
+
})(UpdateExperimentTemplateLogConfigurationInput = exports.UpdateExperimentTemplateLogConfigurationInput || (exports.UpdateExperimentTemplateLogConfigurationInput = {}));
|
|
362
475
|
var UpdateExperimentTemplateStopConditionInput;
|
|
363
476
|
(function (UpdateExperimentTemplateStopConditionInput) {
|
|
364
477
|
UpdateExperimentTemplateStopConditionInput.filterSensitiveLog = (obj) => ({
|