@aws-sdk/client-m2 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.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/M2.js +137 -130
- package/dist-es/M2Client.js +28 -22
- package/dist-es/commands/CancelBatchJobExecutionCommand.js +28 -21
- package/dist-es/commands/CreateApplicationCommand.js +28 -21
- package/dist-es/commands/CreateDataSetImportTaskCommand.js +28 -21
- package/dist-es/commands/CreateDeploymentCommand.js +28 -21
- package/dist-es/commands/CreateEnvironmentCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationCommand.js +28 -21
- package/dist-es/commands/DeleteApplicationFromEnvironmentCommand.js +28 -21
- package/dist-es/commands/DeleteEnvironmentCommand.js +28 -21
- package/dist-es/commands/GetApplicationCommand.js +28 -21
- package/dist-es/commands/GetApplicationVersionCommand.js +28 -21
- package/dist-es/commands/GetBatchJobExecutionCommand.js +28 -21
- package/dist-es/commands/GetDataSetDetailsCommand.js +28 -21
- package/dist-es/commands/GetDataSetImportTaskCommand.js +28 -21
- package/dist-es/commands/GetDeploymentCommand.js +28 -21
- package/dist-es/commands/GetEnvironmentCommand.js +28 -21
- package/dist-es/commands/ListApplicationVersionsCommand.js +28 -21
- package/dist-es/commands/ListApplicationsCommand.js +28 -21
- package/dist-es/commands/ListBatchJobDefinitionsCommand.js +28 -21
- package/dist-es/commands/ListBatchJobExecutionsCommand.js +28 -21
- package/dist-es/commands/ListDataSetImportHistoryCommand.js +28 -21
- package/dist-es/commands/ListDataSetsCommand.js +28 -21
- package/dist-es/commands/ListDeploymentsCommand.js +28 -21
- package/dist-es/commands/ListEngineVersionsCommand.js +28 -21
- package/dist-es/commands/ListEnvironmentsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/StartApplicationCommand.js +28 -21
- package/dist-es/commands/StartBatchJobCommand.js +28 -21
- package/dist-es/commands/StopApplicationCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateApplicationCommand.js +28 -21
- package/dist-es/commands/UpdateEnvironmentCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/M2ServiceException.js +10 -5
- package/dist-es/models/models_0.js +227 -417
- package/dist-es/pagination/ListApplicationVersionsPaginator.js +68 -25
- package/dist-es/pagination/ListApplicationsPaginator.js +68 -25
- package/dist-es/pagination/ListBatchJobDefinitionsPaginator.js +68 -25
- package/dist-es/pagination/ListBatchJobExecutionsPaginator.js +68 -25
- package/dist-es/pagination/ListDataSetImportHistoryPaginator.js +68 -25
- package/dist-es/pagination/ListDataSetsPaginator.js +68 -25
- package/dist-es/pagination/ListDeploymentsPaginator.js +68 -25
- package/dist-es/pagination/ListEngineVersionsPaginator.js +68 -25
- package/dist-es/pagination/ListEnvironmentsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3694 -2710
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,76 +1,77 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { M2ServiceException as __BaseException } from "./M2ServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
15
|
+
var ConflictException = (function (_super) {
|
|
16
|
+
__extends(ConflictException, _super);
|
|
17
|
+
function ConflictException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "ConflictException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
22
|
+
_this.resourceId = opts.resourceId;
|
|
23
|
+
_this.resourceType = opts.resourceType;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
26
|
+
return ConflictException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { ConflictException };
|
|
29
|
+
var InternalServerException = (function (_super) {
|
|
30
|
+
__extends(InternalServerException, _super);
|
|
31
|
+
function InternalServerException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
33
|
+
_this.name = "InternalServerException";
|
|
34
|
+
_this.$fault = "server";
|
|
35
|
+
_this.$retryable = {};
|
|
36
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
37
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
38
|
+
return _this;
|
|
40
39
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
40
|
+
return InternalServerException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { InternalServerException };
|
|
43
|
+
var ResourceNotFoundException = (function (_super) {
|
|
44
|
+
__extends(ResourceNotFoundException, _super);
|
|
45
|
+
function ResourceNotFoundException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "ResourceNotFoundException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
50
|
+
_this.resourceId = opts.resourceId;
|
|
51
|
+
_this.resourceType = opts.resourceType;
|
|
52
|
+
return _this;
|
|
54
53
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
this.$retryable = {
|
|
54
|
+
return ResourceNotFoundException;
|
|
55
|
+
}(__BaseException));
|
|
56
|
+
export { ResourceNotFoundException };
|
|
57
|
+
var ThrottlingException = (function (_super) {
|
|
58
|
+
__extends(ThrottlingException, _super);
|
|
59
|
+
function ThrottlingException(opts) {
|
|
60
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
61
|
+
_this.name = "ThrottlingException";
|
|
62
|
+
_this.$fault = "client";
|
|
63
|
+
_this.$retryable = {
|
|
66
64
|
throttling: true,
|
|
67
65
|
};
|
|
68
|
-
Object.setPrototypeOf(
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
66
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
67
|
+
_this.serviceCode = opts.serviceCode;
|
|
68
|
+
_this.quotaCode = opts.quotaCode;
|
|
69
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
70
|
+
return _this;
|
|
72
71
|
}
|
|
73
|
-
|
|
72
|
+
return ThrottlingException;
|
|
73
|
+
}(__BaseException));
|
|
74
|
+
export { ThrottlingException };
|
|
74
75
|
export var ValidationExceptionReason;
|
|
75
76
|
(function (ValidationExceptionReason) {
|
|
76
77
|
ValidationExceptionReason["CANNOT_PARSE"] = "cannotParse";
|
|
@@ -78,23 +79,23 @@ export var ValidationExceptionReason;
|
|
|
78
79
|
ValidationExceptionReason["OTHER"] = "other";
|
|
79
80
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "unknownOperation";
|
|
80
81
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
this.reason = opts.reason;
|
|
92
|
-
this.fieldList = opts.fieldList;
|
|
82
|
+
var ValidationException = (function (_super) {
|
|
83
|
+
__extends(ValidationException, _super);
|
|
84
|
+
function ValidationException(opts) {
|
|
85
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
86
|
+
_this.name = "ValidationException";
|
|
87
|
+
_this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
89
|
+
_this.reason = opts.reason;
|
|
90
|
+
_this.fieldList = opts.fieldList;
|
|
91
|
+
return _this;
|
|
93
92
|
}
|
|
94
|
-
|
|
93
|
+
return ValidationException;
|
|
94
|
+
}(__BaseException));
|
|
95
|
+
export { ValidationException };
|
|
95
96
|
export var Definition;
|
|
96
97
|
(function (Definition) {
|
|
97
|
-
Definition.visit = (value, visitor)
|
|
98
|
+
Definition.visit = function (value, visitor) {
|
|
98
99
|
if (value.s3Location !== undefined)
|
|
99
100
|
return visitor.s3Location(value.s3Location);
|
|
100
101
|
if (value.content !== undefined)
|
|
@@ -107,25 +108,25 @@ export var EngineType;
|
|
|
107
108
|
EngineType["BLUAGE"] = "bluage";
|
|
108
109
|
EngineType["MICROFOCUS"] = "microfocus";
|
|
109
110
|
})(EngineType || (EngineType = {}));
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
this.serviceCode = opts.serviceCode;
|
|
123
|
-
this.quotaCode = opts.quotaCode;
|
|
111
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
112
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
113
|
+
function ServiceQuotaExceededException(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
115
|
+
_this.name = "ServiceQuotaExceededException";
|
|
116
|
+
_this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
118
|
+
_this.resourceId = opts.resourceId;
|
|
119
|
+
_this.resourceType = opts.resourceType;
|
|
120
|
+
_this.serviceCode = opts.serviceCode;
|
|
121
|
+
_this.quotaCode = opts.quotaCode;
|
|
122
|
+
return _this;
|
|
124
123
|
}
|
|
125
|
-
|
|
124
|
+
return ServiceQuotaExceededException;
|
|
125
|
+
}(__BaseException));
|
|
126
|
+
export { ServiceQuotaExceededException };
|
|
126
127
|
export var DatasetOrgAttributes;
|
|
127
128
|
(function (DatasetOrgAttributes) {
|
|
128
|
-
DatasetOrgAttributes.visit = (value, visitor)
|
|
129
|
+
DatasetOrgAttributes.visit = function (value, visitor) {
|
|
129
130
|
if (value.vsam !== undefined)
|
|
130
131
|
return visitor.vsam(value.vsam);
|
|
131
132
|
if (value.gdg !== undefined)
|
|
@@ -135,7 +136,7 @@ export var DatasetOrgAttributes;
|
|
|
135
136
|
})(DatasetOrgAttributes || (DatasetOrgAttributes = {}));
|
|
136
137
|
export var ExternalLocation;
|
|
137
138
|
(function (ExternalLocation) {
|
|
138
|
-
ExternalLocation.visit = (value, visitor)
|
|
139
|
+
ExternalLocation.visit = function (value, visitor) {
|
|
139
140
|
if (value.s3Location !== undefined)
|
|
140
141
|
return visitor.s3Location(value.s3Location);
|
|
141
142
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -143,7 +144,7 @@ export var ExternalLocation;
|
|
|
143
144
|
})(ExternalLocation || (ExternalLocation = {}));
|
|
144
145
|
export var DataSetImportConfig;
|
|
145
146
|
(function (DataSetImportConfig) {
|
|
146
|
-
DataSetImportConfig.visit = (value, visitor)
|
|
147
|
+
DataSetImportConfig.visit = function (value, visitor) {
|
|
147
148
|
if (value.s3Location !== undefined)
|
|
148
149
|
return visitor.s3Location(value.s3Location);
|
|
149
150
|
if (value.dataSets !== undefined)
|
|
@@ -196,7 +197,7 @@ export var BatchJobExecutionStatus;
|
|
|
196
197
|
})(BatchJobExecutionStatus || (BatchJobExecutionStatus = {}));
|
|
197
198
|
export var DatasetDetailOrgAttributes;
|
|
198
199
|
(function (DatasetDetailOrgAttributes) {
|
|
199
|
-
DatasetDetailOrgAttributes.visit = (value, visitor)
|
|
200
|
+
DatasetDetailOrgAttributes.visit = function (value, visitor) {
|
|
200
201
|
if (value.vsam !== undefined)
|
|
201
202
|
return visitor.vsam(value.vsam);
|
|
202
203
|
if (value.gdg !== undefined)
|
|
@@ -217,7 +218,7 @@ export var ApplicationDeploymentLifecycle;
|
|
|
217
218
|
})(ApplicationDeploymentLifecycle || (ApplicationDeploymentLifecycle = {}));
|
|
218
219
|
export var BatchJobDefinition;
|
|
219
220
|
(function (BatchJobDefinition) {
|
|
220
|
-
BatchJobDefinition.visit = (value, visitor)
|
|
221
|
+
BatchJobDefinition.visit = function (value, visitor) {
|
|
221
222
|
if (value.fileBatchJobDefinition !== undefined)
|
|
222
223
|
return visitor.fileBatchJobDefinition(value.fileBatchJobDefinition);
|
|
223
224
|
if (value.scriptBatchJobDefinition !== undefined)
|
|
@@ -227,7 +228,7 @@ export var BatchJobDefinition;
|
|
|
227
228
|
})(BatchJobDefinition || (BatchJobDefinition = {}));
|
|
228
229
|
export var BatchJobIdentifier;
|
|
229
230
|
(function (BatchJobIdentifier) {
|
|
230
|
-
BatchJobIdentifier.visit = (value, visitor)
|
|
231
|
+
BatchJobIdentifier.visit = function (value, visitor) {
|
|
231
232
|
if (value.fileBatchJobIdentifier !== undefined)
|
|
232
233
|
return visitor.fileBatchJobIdentifier(value.fileBatchJobIdentifier);
|
|
233
234
|
if (value.scriptBatchJobIdentifier !== undefined)
|
|
@@ -237,7 +238,7 @@ export var BatchJobIdentifier;
|
|
|
237
238
|
})(BatchJobIdentifier || (BatchJobIdentifier = {}));
|
|
238
239
|
export var StorageConfiguration;
|
|
239
240
|
(function (StorageConfiguration) {
|
|
240
|
-
StorageConfiguration.visit = (value, visitor)
|
|
241
|
+
StorageConfiguration.visit = function (value, visitor) {
|
|
241
242
|
if (value.efs !== undefined)
|
|
242
243
|
return visitor.efs(value.efs);
|
|
243
244
|
if (value.fsx !== undefined)
|
|
@@ -252,364 +253,173 @@ export var EnvironmentLifecycle;
|
|
|
252
253
|
EnvironmentLifecycle["DELETING"] = "Deleting";
|
|
253
254
|
EnvironmentLifecycle["FAILED"] = "Failed";
|
|
254
255
|
})(EnvironmentLifecycle || (EnvironmentLifecycle = {}));
|
|
255
|
-
export
|
|
256
|
-
|
|
257
|
-
});
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
export const CancelBatchJobExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
262
|
-
...obj,
|
|
263
|
-
});
|
|
264
|
-
export const ValidationExceptionFieldFilterSensitiveLog = (obj) => ({
|
|
265
|
-
...obj,
|
|
266
|
-
});
|
|
267
|
-
export const DefinitionFilterSensitiveLog = (obj) => {
|
|
256
|
+
export var AlternateKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var CancelBatchJobExecutionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var CancelBatchJobExecutionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var DefinitionFilterSensitiveLog = function (obj) {
|
|
261
|
+
var _a;
|
|
268
262
|
if (obj.s3Location !== undefined)
|
|
269
263
|
return { s3Location: obj.s3Location };
|
|
270
264
|
if (obj.content !== undefined)
|
|
271
265
|
return { content: obj.content };
|
|
272
266
|
if (obj.$unknown !== undefined)
|
|
273
|
-
return { [obj.$unknown[0]]
|
|
267
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
274
268
|
};
|
|
275
|
-
export
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
});
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
export const GdgAttributesFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const PrimaryKeyFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const VsamAttributesFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const DatasetOrgAttributesFilterSensitiveLog = (obj) => {
|
|
269
|
+
export var CreateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.definition && { definition: DefinitionFilterSensitiveLog(obj.definition) }))); };
|
|
270
|
+
export var CreateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var GdgAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var PrimaryKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var VsamAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var DatasetOrgAttributesFilterSensitiveLog = function (obj) {
|
|
275
|
+
var _a;
|
|
292
276
|
if (obj.vsam !== undefined)
|
|
293
277
|
return { vsam: VsamAttributesFilterSensitiveLog(obj.vsam) };
|
|
294
278
|
if (obj.gdg !== undefined)
|
|
295
279
|
return { gdg: GdgAttributesFilterSensitiveLog(obj.gdg) };
|
|
296
280
|
if (obj.$unknown !== undefined)
|
|
297
|
-
return { [obj.$unknown[0]]
|
|
281
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
298
282
|
};
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
...obj,
|
|
304
|
-
...(obj.datasetOrg && { datasetOrg: DatasetOrgAttributesFilterSensitiveLog(obj.datasetOrg) }),
|
|
305
|
-
});
|
|
306
|
-
export const ExternalLocationFilterSensitiveLog = (obj) => {
|
|
283
|
+
export var RecordLengthFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var DataSetFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.datasetOrg && { datasetOrg: DatasetOrgAttributesFilterSensitiveLog(obj.datasetOrg) }))); };
|
|
285
|
+
export var ExternalLocationFilterSensitiveLog = function (obj) {
|
|
286
|
+
var _a;
|
|
307
287
|
if (obj.s3Location !== undefined)
|
|
308
288
|
return { s3Location: obj.s3Location };
|
|
309
289
|
if (obj.$unknown !== undefined)
|
|
310
|
-
return { [obj.$unknown[0]]
|
|
290
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
311
291
|
};
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
...(obj.externalLocation && { externalLocation: ExternalLocationFilterSensitiveLog(obj.externalLocation) }),
|
|
316
|
-
});
|
|
317
|
-
export const DataSetImportConfigFilterSensitiveLog = (obj) => {
|
|
292
|
+
export var DataSetImportItemFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.dataSet && { dataSet: DataSetFilterSensitiveLog(obj.dataSet) })), (obj.externalLocation && { externalLocation: ExternalLocationFilterSensitiveLog(obj.externalLocation) }))); };
|
|
293
|
+
export var DataSetImportConfigFilterSensitiveLog = function (obj) {
|
|
294
|
+
var _a;
|
|
318
295
|
if (obj.s3Location !== undefined)
|
|
319
296
|
return { s3Location: obj.s3Location };
|
|
320
297
|
if (obj.dataSets !== undefined)
|
|
321
|
-
return { dataSets: obj.dataSets.map((item)
|
|
298
|
+
return { dataSets: obj.dataSets.map(function (item) { return DataSetImportItemFilterSensitiveLog(item); }) };
|
|
322
299
|
if (obj.$unknown !== undefined)
|
|
323
|
-
return { [obj.$unknown[0]]
|
|
300
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
324
301
|
};
|
|
325
|
-
export
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
});
|
|
329
|
-
export
|
|
330
|
-
|
|
331
|
-
});
|
|
332
|
-
export
|
|
333
|
-
|
|
334
|
-
});
|
|
335
|
-
export
|
|
336
|
-
|
|
337
|
-
});
|
|
338
|
-
export
|
|
339
|
-
|
|
340
|
-
});
|
|
341
|
-
export
|
|
342
|
-
|
|
343
|
-
});
|
|
344
|
-
export
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
export const DeleteApplicationFromEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
|
-
export const GetApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
});
|
|
353
|
-
export const DeployedVersionSummaryFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
export const ApplicationVersionSummaryFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
});
|
|
359
|
-
export const LogGroupSummaryFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
});
|
|
362
|
-
export const GetApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
363
|
-
...obj,
|
|
364
|
-
});
|
|
365
|
-
export const GetApplicationVersionRequestFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
});
|
|
368
|
-
export const GetApplicationVersionResponseFilterSensitiveLog = (obj) => ({
|
|
369
|
-
...obj,
|
|
370
|
-
});
|
|
371
|
-
export const GetBatchJobExecutionRequestFilterSensitiveLog = (obj) => ({
|
|
372
|
-
...obj,
|
|
373
|
-
});
|
|
374
|
-
export const GetBatchJobExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
375
|
-
...obj,
|
|
376
|
-
});
|
|
377
|
-
export const GetDataSetDetailsRequestFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
});
|
|
380
|
-
export const GdgDetailAttributesFilterSensitiveLog = (obj) => ({
|
|
381
|
-
...obj,
|
|
382
|
-
});
|
|
383
|
-
export const VsamDetailAttributesFilterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
});
|
|
386
|
-
export const DatasetDetailOrgAttributesFilterSensitiveLog = (obj) => {
|
|
302
|
+
export var CreateDataSetImportTaskRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.importConfig && { importConfig: DataSetImportConfigFilterSensitiveLog(obj.importConfig) }))); };
|
|
303
|
+
export var CreateDataSetImportTaskResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var CreateDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var CreateDeploymentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var DeleteApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var DeleteApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var DeleteApplicationFromEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var DeleteApplicationFromEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var GetApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var DeployedVersionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var ApplicationVersionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var LogGroupSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var GetApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var GetApplicationVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var GetApplicationVersionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var GetBatchJobExecutionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var GetBatchJobExecutionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var GetDataSetDetailsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var GdgDetailAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var VsamDetailAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var DatasetDetailOrgAttributesFilterSensitiveLog = function (obj) {
|
|
323
|
+
var _a;
|
|
387
324
|
if (obj.vsam !== undefined)
|
|
388
325
|
return { vsam: VsamDetailAttributesFilterSensitiveLog(obj.vsam) };
|
|
389
326
|
if (obj.gdg !== undefined)
|
|
390
327
|
return { gdg: GdgDetailAttributesFilterSensitiveLog(obj.gdg) };
|
|
391
328
|
if (obj.$unknown !== undefined)
|
|
392
|
-
return { [obj.$unknown[0]]
|
|
329
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
393
330
|
};
|
|
394
|
-
export
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
});
|
|
398
|
-
export
|
|
399
|
-
|
|
400
|
-
});
|
|
401
|
-
export
|
|
402
|
-
|
|
403
|
-
});
|
|
404
|
-
export
|
|
405
|
-
|
|
406
|
-
});
|
|
407
|
-
export
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
export const GetDeploymentResponseFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
});
|
|
413
|
-
export const ListApplicationsRequestFilterSensitiveLog = (obj) => ({
|
|
414
|
-
...obj,
|
|
415
|
-
});
|
|
416
|
-
export const ApplicationSummaryFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const ListApplicationsResponseFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const ListApplicationVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
425
|
-
export const ListApplicationVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
426
|
-
...obj,
|
|
427
|
-
});
|
|
428
|
-
export const ListBatchJobDefinitionsRequestFilterSensitiveLog = (obj) => ({
|
|
429
|
-
...obj,
|
|
430
|
-
});
|
|
431
|
-
export const FileBatchJobDefinitionFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
});
|
|
434
|
-
export const ScriptBatchJobDefinitionFilterSensitiveLog = (obj) => ({
|
|
435
|
-
...obj,
|
|
436
|
-
});
|
|
437
|
-
export const BatchJobDefinitionFilterSensitiveLog = (obj) => {
|
|
331
|
+
export var GetDataSetDetailsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.dataSetOrg && { dataSetOrg: DatasetDetailOrgAttributesFilterSensitiveLog(obj.dataSetOrg) }))); };
|
|
332
|
+
export var GetDataSetImportTaskRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var DataSetImportSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var GetDataSetImportTaskResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var GetDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var GetDeploymentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var ListApplicationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var ApplicationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var ListApplicationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var ListApplicationVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var ListApplicationVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var ListBatchJobDefinitionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var FileBatchJobDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var ScriptBatchJobDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
export var BatchJobDefinitionFilterSensitiveLog = function (obj) {
|
|
346
|
+
var _a;
|
|
438
347
|
if (obj.fileBatchJobDefinition !== undefined)
|
|
439
348
|
return { fileBatchJobDefinition: FileBatchJobDefinitionFilterSensitiveLog(obj.fileBatchJobDefinition) };
|
|
440
349
|
if (obj.scriptBatchJobDefinition !== undefined)
|
|
441
350
|
return { scriptBatchJobDefinition: ScriptBatchJobDefinitionFilterSensitiveLog(obj.scriptBatchJobDefinition) };
|
|
442
351
|
if (obj.$unknown !== undefined)
|
|
443
|
-
return { [obj.$unknown[0]]
|
|
352
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
444
353
|
};
|
|
445
|
-
export
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
});
|
|
451
|
-
export
|
|
452
|
-
|
|
453
|
-
});
|
|
454
|
-
export
|
|
455
|
-
|
|
456
|
-
});
|
|
457
|
-
export
|
|
458
|
-
|
|
459
|
-
});
|
|
460
|
-
export
|
|
461
|
-
|
|
462
|
-
});
|
|
463
|
-
export
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
export const ListDataSetImportHistoryResponseFilterSensitiveLog = (obj) => ({
|
|
467
|
-
...obj,
|
|
468
|
-
});
|
|
469
|
-
export const ListDataSetsRequestFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
});
|
|
472
|
-
export const DataSetSummaryFilterSensitiveLog = (obj) => ({
|
|
473
|
-
...obj,
|
|
474
|
-
});
|
|
475
|
-
export const ListDataSetsResponseFilterSensitiveLog = (obj) => ({
|
|
476
|
-
...obj,
|
|
477
|
-
});
|
|
478
|
-
export const ListDeploymentsRequestFilterSensitiveLog = (obj) => ({
|
|
479
|
-
...obj,
|
|
480
|
-
});
|
|
481
|
-
export const DeploymentSummaryFilterSensitiveLog = (obj) => ({
|
|
482
|
-
...obj,
|
|
483
|
-
});
|
|
484
|
-
export const ListDeploymentsResponseFilterSensitiveLog = (obj) => ({
|
|
485
|
-
...obj,
|
|
486
|
-
});
|
|
487
|
-
export const StartApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
});
|
|
490
|
-
export const StartApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
491
|
-
...obj,
|
|
492
|
-
});
|
|
493
|
-
export const FileBatchJobIdentifierFilterSensitiveLog = (obj) => ({
|
|
494
|
-
...obj,
|
|
495
|
-
});
|
|
496
|
-
export const ScriptBatchJobIdentifierFilterSensitiveLog = (obj) => ({
|
|
497
|
-
...obj,
|
|
498
|
-
});
|
|
499
|
-
export const BatchJobIdentifierFilterSensitiveLog = (obj) => {
|
|
354
|
+
export var ListBatchJobDefinitionsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.batchJobDefinitions && {
|
|
355
|
+
batchJobDefinitions: obj.batchJobDefinitions.map(function (item) { return BatchJobDefinitionFilterSensitiveLog(item); }),
|
|
356
|
+
}))); };
|
|
357
|
+
export var ListBatchJobExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var BatchJobExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var ListBatchJobExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
export var ListDataSetImportHistoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
export var DataSetImportTaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
362
|
+
export var ListDataSetImportHistoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
+
export var ListDataSetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
364
|
+
export var DataSetSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
export var ListDataSetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
366
|
+
export var ListDeploymentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
367
|
+
export var DeploymentSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
368
|
+
export var ListDeploymentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
export var StartApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
370
|
+
export var StartApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
371
|
+
export var FileBatchJobIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
372
|
+
export var ScriptBatchJobIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
+
export var BatchJobIdentifierFilterSensitiveLog = function (obj) {
|
|
374
|
+
var _a;
|
|
500
375
|
if (obj.fileBatchJobIdentifier !== undefined)
|
|
501
376
|
return { fileBatchJobIdentifier: FileBatchJobIdentifierFilterSensitiveLog(obj.fileBatchJobIdentifier) };
|
|
502
377
|
if (obj.scriptBatchJobIdentifier !== undefined)
|
|
503
378
|
return { scriptBatchJobIdentifier: ScriptBatchJobIdentifierFilterSensitiveLog(obj.scriptBatchJobIdentifier) };
|
|
504
379
|
if (obj.$unknown !== undefined)
|
|
505
|
-
return { [obj.$unknown[0]]
|
|
380
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
506
381
|
};
|
|
507
|
-
export
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
});
|
|
511
|
-
export
|
|
512
|
-
|
|
513
|
-
});
|
|
514
|
-
export
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
...obj,
|
|
519
|
-
});
|
|
520
|
-
export const UpdateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
521
|
-
...obj,
|
|
522
|
-
...(obj.definition && { definition: DefinitionFilterSensitiveLog(obj.definition) }),
|
|
523
|
-
});
|
|
524
|
-
export const UpdateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
525
|
-
...obj,
|
|
526
|
-
});
|
|
527
|
-
export const HighAvailabilityConfigFilterSensitiveLog = (obj) => ({
|
|
528
|
-
...obj,
|
|
529
|
-
});
|
|
530
|
-
export const EfsStorageConfigurationFilterSensitiveLog = (obj) => ({
|
|
531
|
-
...obj,
|
|
532
|
-
});
|
|
533
|
-
export const FsxStorageConfigurationFilterSensitiveLog = (obj) => ({
|
|
534
|
-
...obj,
|
|
535
|
-
});
|
|
536
|
-
export const StorageConfigurationFilterSensitiveLog = (obj) => {
|
|
382
|
+
export var StartBatchJobRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.batchJobIdentifier && { batchJobIdentifier: BatchJobIdentifierFilterSensitiveLog(obj.batchJobIdentifier) }))); };
|
|
383
|
+
export var StartBatchJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
384
|
+
export var StopApplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
385
|
+
export var StopApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
386
|
+
export var UpdateApplicationRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.definition && { definition: DefinitionFilterSensitiveLog(obj.definition) }))); };
|
|
387
|
+
export var UpdateApplicationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
388
|
+
export var HighAvailabilityConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
389
|
+
export var EfsStorageConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
390
|
+
export var FsxStorageConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
391
|
+
export var StorageConfigurationFilterSensitiveLog = function (obj) {
|
|
392
|
+
var _a;
|
|
537
393
|
if (obj.efs !== undefined)
|
|
538
394
|
return { efs: EfsStorageConfigurationFilterSensitiveLog(obj.efs) };
|
|
539
395
|
if (obj.fsx !== undefined)
|
|
540
396
|
return { fsx: FsxStorageConfigurationFilterSensitiveLog(obj.fsx) };
|
|
541
397
|
if (obj.$unknown !== undefined)
|
|
542
|
-
return { [obj.$unknown[0]]
|
|
398
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
543
399
|
};
|
|
544
|
-
export
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
});
|
|
550
|
-
export
|
|
551
|
-
|
|
552
|
-
});
|
|
553
|
-
export
|
|
554
|
-
|
|
555
|
-
});
|
|
556
|
-
export
|
|
557
|
-
|
|
558
|
-
});
|
|
559
|
-
export
|
|
560
|
-
|
|
561
|
-
});
|
|
562
|
-
export
|
|
563
|
-
|
|
564
|
-
});
|
|
565
|
-
export
|
|
566
|
-
|
|
567
|
-
});
|
|
568
|
-
export
|
|
569
|
-
|
|
570
|
-
...(obj.storageConfigurations && {
|
|
571
|
-
storageConfigurations: obj.storageConfigurations.map((item) => StorageConfigurationFilterSensitiveLog(item)),
|
|
572
|
-
}),
|
|
573
|
-
});
|
|
574
|
-
export const ListEnvironmentsRequestFilterSensitiveLog = (obj) => ({
|
|
575
|
-
...obj,
|
|
576
|
-
});
|
|
577
|
-
export const EnvironmentSummaryFilterSensitiveLog = (obj) => ({
|
|
578
|
-
...obj,
|
|
579
|
-
});
|
|
580
|
-
export const ListEnvironmentsResponseFilterSensitiveLog = (obj) => ({
|
|
581
|
-
...obj,
|
|
582
|
-
});
|
|
583
|
-
export const UpdateEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
584
|
-
...obj,
|
|
585
|
-
});
|
|
586
|
-
export const UpdateEnvironmentResponseFilterSensitiveLog = (obj) => ({
|
|
587
|
-
...obj,
|
|
588
|
-
});
|
|
589
|
-
export const ListEngineVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
590
|
-
...obj,
|
|
591
|
-
});
|
|
592
|
-
export const EngineVersionsSummaryFilterSensitiveLog = (obj) => ({
|
|
593
|
-
...obj,
|
|
594
|
-
});
|
|
595
|
-
export const ListEngineVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
596
|
-
...obj,
|
|
597
|
-
});
|
|
598
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
599
|
-
...obj,
|
|
600
|
-
});
|
|
601
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
602
|
-
...obj,
|
|
603
|
-
});
|
|
604
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
605
|
-
...obj,
|
|
606
|
-
});
|
|
607
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
608
|
-
...obj,
|
|
609
|
-
});
|
|
610
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
611
|
-
...obj,
|
|
612
|
-
});
|
|
613
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
614
|
-
...obj,
|
|
615
|
-
});
|
|
400
|
+
export var CreateEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.storageConfigurations && {
|
|
401
|
+
storageConfigurations: obj.storageConfigurations.map(function (item) { return StorageConfigurationFilterSensitiveLog(item); }),
|
|
402
|
+
}))); };
|
|
403
|
+
export var CreateEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
404
|
+
export var DeleteEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
405
|
+
export var DeleteEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
406
|
+
export var GetEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
407
|
+
export var MaintenanceScheduleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
408
|
+
export var PendingMaintenanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
|
+
export var GetEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.storageConfigurations && {
|
|
410
|
+
storageConfigurations: obj.storageConfigurations.map(function (item) { return StorageConfigurationFilterSensitiveLog(item); }),
|
|
411
|
+
}))); };
|
|
412
|
+
export var ListEnvironmentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
413
|
+
export var EnvironmentSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
414
|
+
export var ListEnvironmentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
415
|
+
export var UpdateEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
416
|
+
export var UpdateEnvironmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
417
|
+
export var ListEngineVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
418
|
+
export var EngineVersionsSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
419
|
+
export var ListEngineVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
420
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
421
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
422
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
423
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
424
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
425
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|