@aws-sdk/client-fis 3.183.0 → 3.186.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/Fis.js +73 -66
  4. package/dist-es/FisClient.js +28 -22
  5. package/dist-es/commands/CreateExperimentTemplateCommand.js +28 -21
  6. package/dist-es/commands/DeleteExperimentTemplateCommand.js +28 -21
  7. package/dist-es/commands/GetActionCommand.js +28 -21
  8. package/dist-es/commands/GetExperimentCommand.js +28 -21
  9. package/dist-es/commands/GetExperimentTemplateCommand.js +28 -21
  10. package/dist-es/commands/GetTargetResourceTypeCommand.js +28 -21
  11. package/dist-es/commands/ListActionsCommand.js +28 -21
  12. package/dist-es/commands/ListExperimentTemplatesCommand.js +28 -21
  13. package/dist-es/commands/ListExperimentsCommand.js +28 -21
  14. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  15. package/dist-es/commands/ListTargetResourceTypesCommand.js +28 -21
  16. package/dist-es/commands/StartExperimentCommand.js +28 -21
  17. package/dist-es/commands/StopExperimentCommand.js +28 -21
  18. package/dist-es/commands/TagResourceCommand.js +28 -21
  19. package/dist-es/commands/UntagResourceCommand.js +28 -21
  20. package/dist-es/commands/UpdateExperimentTemplateCommand.js +28 -21
  21. package/dist-es/endpoints.js +8 -8
  22. package/dist-es/models/FisServiceException.js +10 -5
  23. package/dist-es/models/models_0.js +115 -254
  24. package/dist-es/pagination/ListActionsPaginator.js +68 -25
  25. package/dist-es/pagination/ListExperimentTemplatesPaginator.js +68 -25
  26. package/dist-es/pagination/ListExperimentsPaginator.js +68 -25
  27. package/dist-es/pagination/ListTargetResourceTypesPaginator.js +68 -25
  28. package/dist-es/protocols/Aws_restJson1.js +1666 -1275
  29. package/dist-es/runtimeConfig.browser.js +12 -26
  30. package/dist-es/runtimeConfig.js +12 -30
  31. package/dist-es/runtimeConfig.native.js +5 -8
  32. package/dist-es/runtimeConfig.shared.js +11 -8
  33. package/package.json +33 -33
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class TagResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var TagResourceCommand = (function (_super) {
7
+ __extends(TagResourceCommand, _super);
8
+ function TagResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FisClient";
15
- const commandName = "TagResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FisClient";
18
+ var commandName = "TagResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ TagResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1TagResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ TagResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1TagResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return TagResourceCommand;
38
+ }($Command));
39
+ export { TagResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class UntagResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UntagResourceCommand = (function (_super) {
7
+ __extends(UntagResourceCommand, _super);
8
+ function UntagResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FisClient";
15
- const commandName = "UntagResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FisClient";
18
+ var commandName = "UntagResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UntagResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1UntagResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UntagResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1UntagResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UntagResourceCommand;
38
+ }($Command));
39
+ export { UntagResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UpdateExperimentTemplateRequestFilterSensitiveLog, UpdateExperimentTemplateResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1UpdateExperimentTemplateCommand, serializeAws_restJson1UpdateExperimentTemplateCommand, } from "../protocols/Aws_restJson1";
5
- export class UpdateExperimentTemplateCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateExperimentTemplateCommand = (function (_super) {
7
+ __extends(UpdateExperimentTemplateCommand, _super);
8
+ function UpdateExperimentTemplateCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateExperimentTemplateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FisClient";
15
- const commandName = "UpdateExperimentTemplateCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FisClient";
18
+ var commandName = "UpdateExperimentTemplateCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateExperimentTemplateRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UpdateExperimentTemplateResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateExperimentTemplateCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1UpdateExperimentTemplateCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateExperimentTemplateCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1UpdateExperimentTemplateCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateExperimentTemplateCommand;
38
+ }($Command));
39
+ export { UpdateExperimentTemplateCommand };
@@ -1,6 +1,7 @@
1
+ import { __assign, __awaiter, __generator } from "tslib";
1
2
  import { getRegionInfo } from "@aws-sdk/config-resolver";
2
- const regionHash = {};
3
- const partitionHash = {
3
+ var regionHash = {};
4
+ var partitionHash = {
4
5
  aws: {
5
6
  regions: [
6
7
  "af-south-1",
@@ -120,9 +121,8 @@ const partitionHash = {
120
121
  ],
121
122
  },
122
123
  };
123
- export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
124
- ...options,
125
- signingService: "fis",
126
- regionHash,
127
- partitionHash,
128
- });
124
+ export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
125
+ return __generator(this, function (_a) {
126
+ return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "fis", regionHash: regionHash, partitionHash: partitionHash }))];
127
+ });
128
+ }); };
@@ -1,7 +1,12 @@
1
+ import { __extends } from "tslib";
1
2
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
2
- export class FisServiceException extends __ServiceException {
3
- constructor(options) {
4
- super(options);
5
- Object.setPrototypeOf(this, FisServiceException.prototype);
3
+ var FisServiceException = (function (_super) {
4
+ __extends(FisServiceException, _super);
5
+ function FisServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, FisServiceException.prototype);
8
+ return _this;
6
9
  }
7
- }
10
+ return FisServiceException;
11
+ }(__ServiceException));
12
+ export { FisServiceException };
@@ -1,52 +1,53 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { FisServiceException as __BaseException } from "./FisServiceException";
2
- export class ConflictException extends __BaseException {
3
- constructor(opts) {
4
- super({
5
- name: "ConflictException",
6
- $fault: "client",
7
- ...opts,
8
- });
9
- this.name = "ConflictException";
10
- this.$fault = "client";
11
- Object.setPrototypeOf(this, ConflictException.prototype);
3
+ var ConflictException = (function (_super) {
4
+ __extends(ConflictException, _super);
5
+ function ConflictException(opts) {
6
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
7
+ _this.name = "ConflictException";
8
+ _this.$fault = "client";
9
+ Object.setPrototypeOf(_this, ConflictException.prototype);
10
+ return _this;
12
11
  }
13
- }
14
- export class ResourceNotFoundException extends __BaseException {
15
- constructor(opts) {
16
- super({
17
- name: "ResourceNotFoundException",
18
- $fault: "client",
19
- ...opts,
20
- });
21
- this.name = "ResourceNotFoundException";
22
- this.$fault = "client";
23
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
12
+ return ConflictException;
13
+ }(__BaseException));
14
+ export { ConflictException };
15
+ var ResourceNotFoundException = (function (_super) {
16
+ __extends(ResourceNotFoundException, _super);
17
+ function ResourceNotFoundException(opts) {
18
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
19
+ _this.name = "ResourceNotFoundException";
20
+ _this.$fault = "client";
21
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
22
+ return _this;
24
23
  }
25
- }
26
- export class ServiceQuotaExceededException extends __BaseException {
27
- constructor(opts) {
28
- super({
29
- name: "ServiceQuotaExceededException",
30
- $fault: "client",
31
- ...opts,
32
- });
33
- this.name = "ServiceQuotaExceededException";
34
- this.$fault = "client";
35
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
24
+ return ResourceNotFoundException;
25
+ }(__BaseException));
26
+ export { ResourceNotFoundException };
27
+ var ServiceQuotaExceededException = (function (_super) {
28
+ __extends(ServiceQuotaExceededException, _super);
29
+ function ServiceQuotaExceededException(opts) {
30
+ var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
31
+ _this.name = "ServiceQuotaExceededException";
32
+ _this.$fault = "client";
33
+ Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
34
+ return _this;
36
35
  }
37
- }
38
- export class ValidationException extends __BaseException {
39
- constructor(opts) {
40
- super({
41
- name: "ValidationException",
42
- $fault: "client",
43
- ...opts,
44
- });
45
- this.name = "ValidationException";
46
- this.$fault = "client";
47
- Object.setPrototypeOf(this, ValidationException.prototype);
36
+ return ServiceQuotaExceededException;
37
+ }(__BaseException));
38
+ export { ServiceQuotaExceededException };
39
+ var ValidationException = (function (_super) {
40
+ __extends(ValidationException, _super);
41
+ function ValidationException(opts) {
42
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
43
+ _this.name = "ValidationException";
44
+ _this.$fault = "client";
45
+ Object.setPrototypeOf(_this, ValidationException.prototype);
46
+ return _this;
48
47
  }
49
- }
48
+ return ValidationException;
49
+ }(__BaseException));
50
+ export { ValidationException };
50
51
  export var ExperimentActionStatus;
51
52
  (function (ExperimentActionStatus) {
52
53
  ExperimentActionStatus["cancelled"] = "cancelled";
@@ -68,213 +69,73 @@ export var ExperimentStatus;
68
69
  ExperimentStatus["stopped"] = "stopped";
69
70
  ExperimentStatus["stopping"] = "stopping";
70
71
  })(ExperimentStatus || (ExperimentStatus = {}));
71
- export const ActionParameterFilterSensitiveLog = (obj) => ({
72
- ...obj,
73
- });
74
- export const ActionTargetFilterSensitiveLog = (obj) => ({
75
- ...obj,
76
- });
77
- export const ActionFilterSensitiveLog = (obj) => ({
78
- ...obj,
79
- });
80
- export const ActionSummaryFilterSensitiveLog = (obj) => ({
81
- ...obj,
82
- });
83
- export const CreateExperimentTemplateActionInputFilterSensitiveLog = (obj) => ({
84
- ...obj,
85
- });
86
- export const ExperimentTemplateCloudWatchLogsLogConfigurationInputFilterSensitiveLog = (obj) => ({
87
- ...obj,
88
- });
89
- export const ExperimentTemplateS3LogConfigurationInputFilterSensitiveLog = (obj) => ({
90
- ...obj,
91
- });
92
- export const CreateExperimentTemplateLogConfigurationInputFilterSensitiveLog = (obj) => ({
93
- ...obj,
94
- });
95
- export const CreateExperimentTemplateStopConditionInputFilterSensitiveLog = (obj) => ({
96
- ...obj,
97
- });
98
- export const ExperimentTemplateTargetInputFilterFilterSensitiveLog = (obj) => ({
99
- ...obj,
100
- });
101
- export const CreateExperimentTemplateTargetInputFilterSensitiveLog = (obj) => ({
102
- ...obj,
103
- });
104
- export const CreateExperimentTemplateRequestFilterSensitiveLog = (obj) => ({
105
- ...obj,
106
- });
107
- export const ExperimentTemplateActionFilterSensitiveLog = (obj) => ({
108
- ...obj,
109
- });
110
- export const ExperimentTemplateCloudWatchLogsLogConfigurationFilterSensitiveLog = (obj) => ({
111
- ...obj,
112
- });
113
- export const ExperimentTemplateS3LogConfigurationFilterSensitiveLog = (obj) => ({
114
- ...obj,
115
- });
116
- export const ExperimentTemplateLogConfigurationFilterSensitiveLog = (obj) => ({
117
- ...obj,
118
- });
119
- export const ExperimentTemplateStopConditionFilterSensitiveLog = (obj) => ({
120
- ...obj,
121
- });
122
- export const ExperimentTemplateTargetFilterFilterSensitiveLog = (obj) => ({
123
- ...obj,
124
- });
125
- export const ExperimentTemplateTargetFilterSensitiveLog = (obj) => ({
126
- ...obj,
127
- });
128
- export const ExperimentTemplateFilterSensitiveLog = (obj) => ({
129
- ...obj,
130
- });
131
- export const CreateExperimentTemplateResponseFilterSensitiveLog = (obj) => ({
132
- ...obj,
133
- });
134
- export const DeleteExperimentTemplateRequestFilterSensitiveLog = (obj) => ({
135
- ...obj,
136
- });
137
- export const DeleteExperimentTemplateResponseFilterSensitiveLog = (obj) => ({
138
- ...obj,
139
- });
140
- export const ExperimentActionStateFilterSensitiveLog = (obj) => ({
141
- ...obj,
142
- });
143
- export const ExperimentActionFilterSensitiveLog = (obj) => ({
144
- ...obj,
145
- });
146
- export const ExperimentCloudWatchLogsLogConfigurationFilterSensitiveLog = (obj) => ({
147
- ...obj,
148
- });
149
- export const ExperimentS3LogConfigurationFilterSensitiveLog = (obj) => ({
150
- ...obj,
151
- });
152
- export const ExperimentLogConfigurationFilterSensitiveLog = (obj) => ({
153
- ...obj,
154
- });
155
- export const ExperimentStateFilterSensitiveLog = (obj) => ({
156
- ...obj,
157
- });
158
- export const ExperimentStopConditionFilterSensitiveLog = (obj) => ({
159
- ...obj,
160
- });
161
- export const ExperimentTargetFilterFilterSensitiveLog = (obj) => ({
162
- ...obj,
163
- });
164
- export const ExperimentTargetFilterSensitiveLog = (obj) => ({
165
- ...obj,
166
- });
167
- export const ExperimentFilterSensitiveLog = (obj) => ({
168
- ...obj,
169
- });
170
- export const ExperimentSummaryFilterSensitiveLog = (obj) => ({
171
- ...obj,
172
- });
173
- export const ExperimentTemplateSummaryFilterSensitiveLog = (obj) => ({
174
- ...obj,
175
- });
176
- export const GetActionRequestFilterSensitiveLog = (obj) => ({
177
- ...obj,
178
- });
179
- export const GetActionResponseFilterSensitiveLog = (obj) => ({
180
- ...obj,
181
- });
182
- export const GetExperimentRequestFilterSensitiveLog = (obj) => ({
183
- ...obj,
184
- });
185
- export const GetExperimentResponseFilterSensitiveLog = (obj) => ({
186
- ...obj,
187
- });
188
- export const GetExperimentTemplateRequestFilterSensitiveLog = (obj) => ({
189
- ...obj,
190
- });
191
- export const GetExperimentTemplateResponseFilterSensitiveLog = (obj) => ({
192
- ...obj,
193
- });
194
- export const GetTargetResourceTypeRequestFilterSensitiveLog = (obj) => ({
195
- ...obj,
196
- });
197
- export const TargetResourceTypeParameterFilterSensitiveLog = (obj) => ({
198
- ...obj,
199
- });
200
- export const TargetResourceTypeFilterSensitiveLog = (obj) => ({
201
- ...obj,
202
- });
203
- export const GetTargetResourceTypeResponseFilterSensitiveLog = (obj) => ({
204
- ...obj,
205
- });
206
- export const ListActionsRequestFilterSensitiveLog = (obj) => ({
207
- ...obj,
208
- });
209
- export const ListActionsResponseFilterSensitiveLog = (obj) => ({
210
- ...obj,
211
- });
212
- export const ListExperimentsRequestFilterSensitiveLog = (obj) => ({
213
- ...obj,
214
- });
215
- export const ListExperimentsResponseFilterSensitiveLog = (obj) => ({
216
- ...obj,
217
- });
218
- export const ListExperimentTemplatesRequestFilterSensitiveLog = (obj) => ({
219
- ...obj,
220
- });
221
- export const ListExperimentTemplatesResponseFilterSensitiveLog = (obj) => ({
222
- ...obj,
223
- });
224
- export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
225
- ...obj,
226
- });
227
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
228
- ...obj,
229
- });
230
- export const ListTargetResourceTypesRequestFilterSensitiveLog = (obj) => ({
231
- ...obj,
232
- });
233
- export const TargetResourceTypeSummaryFilterSensitiveLog = (obj) => ({
234
- ...obj,
235
- });
236
- export const ListTargetResourceTypesResponseFilterSensitiveLog = (obj) => ({
237
- ...obj,
238
- });
239
- export const StartExperimentRequestFilterSensitiveLog = (obj) => ({
240
- ...obj,
241
- });
242
- export const StartExperimentResponseFilterSensitiveLog = (obj) => ({
243
- ...obj,
244
- });
245
- export const StopExperimentRequestFilterSensitiveLog = (obj) => ({
246
- ...obj,
247
- });
248
- export const StopExperimentResponseFilterSensitiveLog = (obj) => ({
249
- ...obj,
250
- });
251
- export const TagResourceRequestFilterSensitiveLog = (obj) => ({
252
- ...obj,
253
- });
254
- export const TagResourceResponseFilterSensitiveLog = (obj) => ({
255
- ...obj,
256
- });
257
- export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
258
- ...obj,
259
- });
260
- export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
261
- ...obj,
262
- });
263
- export const UpdateExperimentTemplateActionInputItemFilterSensitiveLog = (obj) => ({
264
- ...obj,
265
- });
266
- export const UpdateExperimentTemplateLogConfigurationInputFilterSensitiveLog = (obj) => ({
267
- ...obj,
268
- });
269
- export const UpdateExperimentTemplateStopConditionInputFilterSensitiveLog = (obj) => ({
270
- ...obj,
271
- });
272
- export const UpdateExperimentTemplateTargetInputFilterSensitiveLog = (obj) => ({
273
- ...obj,
274
- });
275
- export const UpdateExperimentTemplateRequestFilterSensitiveLog = (obj) => ({
276
- ...obj,
277
- });
278
- export const UpdateExperimentTemplateResponseFilterSensitiveLog = (obj) => ({
279
- ...obj,
280
- });
72
+ export var ActionParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
73
+ export var ActionTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
74
+ export var ActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
75
+ export var ActionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
76
+ export var CreateExperimentTemplateActionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
77
+ export var ExperimentTemplateCloudWatchLogsLogConfigurationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
78
+ export var ExperimentTemplateS3LogConfigurationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
79
+ export var CreateExperimentTemplateLogConfigurationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
80
+ export var CreateExperimentTemplateStopConditionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
81
+ export var ExperimentTemplateTargetInputFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
82
+ export var CreateExperimentTemplateTargetInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
83
+ export var CreateExperimentTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
84
+ export var ExperimentTemplateActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
85
+ export var ExperimentTemplateCloudWatchLogsLogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
86
+ export var ExperimentTemplateS3LogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
87
+ export var ExperimentTemplateLogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
88
+ export var ExperimentTemplateStopConditionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
89
+ export var ExperimentTemplateTargetFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
90
+ export var ExperimentTemplateTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
91
+ export var ExperimentTemplateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
92
+ export var CreateExperimentTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
93
+ export var DeleteExperimentTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
94
+ export var DeleteExperimentTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
95
+ export var ExperimentActionStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
96
+ export var ExperimentActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
97
+ export var ExperimentCloudWatchLogsLogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
98
+ export var ExperimentS3LogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
99
+ export var ExperimentLogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
100
+ export var ExperimentStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
101
+ export var ExperimentStopConditionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
102
+ export var ExperimentTargetFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
103
+ export var ExperimentTargetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
104
+ export var ExperimentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
105
+ export var ExperimentSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
106
+ export var ExperimentTemplateSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
107
+ export var GetActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
108
+ export var GetActionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
109
+ export var GetExperimentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
110
+ export var GetExperimentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
111
+ export var GetExperimentTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
112
+ export var GetExperimentTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
113
+ export var GetTargetResourceTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
114
+ export var TargetResourceTypeParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
115
+ export var TargetResourceTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
116
+ export var GetTargetResourceTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
117
+ export var ListActionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
118
+ export var ListActionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
119
+ export var ListExperimentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
120
+ export var ListExperimentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
121
+ export var ListExperimentTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
122
+ export var ListExperimentTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
123
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
124
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
125
+ export var ListTargetResourceTypesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
126
+ export var TargetResourceTypeSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
127
+ export var ListTargetResourceTypesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
128
+ export var StartExperimentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
129
+ export var StartExperimentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
130
+ export var StopExperimentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
131
+ export var StopExperimentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
132
+ export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
133
+ export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
134
+ export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
135
+ export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
136
+ export var UpdateExperimentTemplateActionInputItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
137
+ export var UpdateExperimentTemplateLogConfigurationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
138
+ export var UpdateExperimentTemplateStopConditionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
139
+ export var UpdateExperimentTemplateTargetInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
140
+ export var UpdateExperimentTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
141
+ export var UpdateExperimentTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };