@aws-sdk/client-drs 3.186.0 → 3.190.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 (52) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/Drs.js +130 -137
  3. package/dist-es/DrsClient.js +22 -28
  4. package/dist-es/commands/CreateExtendedSourceServerCommand.js +21 -28
  5. package/dist-es/commands/CreateReplicationConfigurationTemplateCommand.js +21 -28
  6. package/dist-es/commands/DeleteJobCommand.js +21 -28
  7. package/dist-es/commands/DeleteRecoveryInstanceCommand.js +22 -29
  8. package/dist-es/commands/DeleteReplicationConfigurationTemplateCommand.js +21 -28
  9. package/dist-es/commands/DeleteSourceServerCommand.js +21 -28
  10. package/dist-es/commands/DescribeJobLogItemsCommand.js +21 -28
  11. package/dist-es/commands/DescribeJobsCommand.js +21 -28
  12. package/dist-es/commands/DescribeRecoveryInstancesCommand.js +21 -28
  13. package/dist-es/commands/DescribeRecoverySnapshotsCommand.js +21 -28
  14. package/dist-es/commands/DescribeReplicationConfigurationTemplatesCommand.js +21 -28
  15. package/dist-es/commands/DescribeSourceServersCommand.js +21 -28
  16. package/dist-es/commands/DisconnectRecoveryInstanceCommand.js +22 -29
  17. package/dist-es/commands/DisconnectSourceServerCommand.js +21 -28
  18. package/dist-es/commands/GetFailbackReplicationConfigurationCommand.js +21 -28
  19. package/dist-es/commands/GetLaunchConfigurationCommand.js +21 -28
  20. package/dist-es/commands/GetReplicationConfigurationCommand.js +21 -28
  21. package/dist-es/commands/InitializeServiceCommand.js +21 -28
  22. package/dist-es/commands/ListExtensibleSourceServersCommand.js +21 -28
  23. package/dist-es/commands/ListStagingAccountsCommand.js +21 -28
  24. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  25. package/dist-es/commands/RetryDataReplicationCommand.js +21 -28
  26. package/dist-es/commands/StartFailbackLaunchCommand.js +21 -28
  27. package/dist-es/commands/StartRecoveryCommand.js +21 -28
  28. package/dist-es/commands/StopFailbackCommand.js +22 -29
  29. package/dist-es/commands/TagResourceCommand.js +22 -29
  30. package/dist-es/commands/TerminateRecoveryInstancesCommand.js +21 -28
  31. package/dist-es/commands/UntagResourceCommand.js +22 -29
  32. package/dist-es/commands/UpdateFailbackReplicationConfigurationCommand.js +22 -29
  33. package/dist-es/commands/UpdateLaunchConfigurationCommand.js +21 -28
  34. package/dist-es/commands/UpdateReplicationConfigurationCommand.js +21 -28
  35. package/dist-es/commands/UpdateReplicationConfigurationTemplateCommand.js +21 -28
  36. package/dist-es/endpoints.js +8 -8
  37. package/dist-es/models/DrsServiceException.js +5 -10
  38. package/dist-es/models/models_0.js +419 -204
  39. package/dist-es/pagination/DescribeJobLogItemsPaginator.js +25 -68
  40. package/dist-es/pagination/DescribeJobsPaginator.js +25 -68
  41. package/dist-es/pagination/DescribeRecoveryInstancesPaginator.js +25 -68
  42. package/dist-es/pagination/DescribeRecoverySnapshotsPaginator.js +25 -68
  43. package/dist-es/pagination/DescribeReplicationConfigurationTemplatesPaginator.js +25 -68
  44. package/dist-es/pagination/DescribeSourceServersPaginator.js +25 -68
  45. package/dist-es/pagination/ListExtensibleSourceServersPaginator.js +25 -68
  46. package/dist-es/pagination/ListStagingAccountsPaginator.js +25 -68
  47. package/dist-es/protocols/Aws_restJson1.js +2882 -3774
  48. package/dist-es/runtimeConfig.browser.js +26 -12
  49. package/dist-es/runtimeConfig.js +30 -12
  50. package/dist-es/runtimeConfig.native.js +8 -5
  51. package/dist-es/runtimeConfig.shared.js +8 -11
  52. package/package.json +33 -33
@@ -1,34 +1,33 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
2
  import { DrsServiceException as __BaseException } from "./DrsServiceException";
4
- var AccessDeniedException = (function (_super) {
5
- __extends(AccessDeniedException, _super);
6
- function AccessDeniedException(opts) {
7
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
8
- _this.name = "AccessDeniedException";
9
- _this.$fault = "client";
10
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
11
- _this.code = opts.code;
12
- return _this;
3
+ export class AccessDeniedException extends __BaseException {
4
+ constructor(opts) {
5
+ super({
6
+ name: "AccessDeniedException",
7
+ $fault: "client",
8
+ ...opts,
9
+ });
10
+ this.name = "AccessDeniedException";
11
+ this.$fault = "client";
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.code = opts.code;
13
14
  }
14
- return AccessDeniedException;
15
- }(__BaseException));
16
- export { AccessDeniedException };
17
- var ConflictException = (function (_super) {
18
- __extends(ConflictException, _super);
19
- function ConflictException(opts) {
20
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
21
- _this.name = "ConflictException";
22
- _this.$fault = "client";
23
- Object.setPrototypeOf(_this, ConflictException.prototype);
24
- _this.code = opts.code;
25
- _this.resourceId = opts.resourceId;
26
- _this.resourceType = opts.resourceType;
27
- return _this;
15
+ }
16
+ export class ConflictException extends __BaseException {
17
+ constructor(opts) {
18
+ super({
19
+ name: "ConflictException",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ this.name = "ConflictException";
24
+ this.$fault = "client";
25
+ Object.setPrototypeOf(this, ConflictException.prototype);
26
+ this.code = opts.code;
27
+ this.resourceId = opts.resourceId;
28
+ this.resourceType = opts.resourceType;
28
29
  }
29
- return ConflictException;
30
- }(__BaseException));
31
- export { ConflictException };
30
+ }
32
31
  export var DataReplicationErrorString;
33
32
  (function (DataReplicationErrorString) {
34
33
  DataReplicationErrorString["AGENT_NOT_SEEN"] = "AGENT_NOT_SEEN";
@@ -99,79 +98,79 @@ export var ExtensionStatus;
99
98
  ExtensionStatus["EXTENSION_ERROR"] = "EXTENSION_ERROR";
100
99
  ExtensionStatus["NOT_EXTENDED"] = "NOT_EXTENDED";
101
100
  })(ExtensionStatus || (ExtensionStatus = {}));
102
- var InternalServerException = (function (_super) {
103
- __extends(InternalServerException, _super);
104
- function InternalServerException(opts) {
105
- var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
106
- _this.name = "InternalServerException";
107
- _this.$fault = "server";
108
- Object.setPrototypeOf(_this, InternalServerException.prototype);
109
- _this.retryAfterSeconds = opts.retryAfterSeconds;
110
- return _this;
101
+ export class InternalServerException extends __BaseException {
102
+ constructor(opts) {
103
+ super({
104
+ name: "InternalServerException",
105
+ $fault: "server",
106
+ ...opts,
107
+ });
108
+ this.name = "InternalServerException";
109
+ this.$fault = "server";
110
+ Object.setPrototypeOf(this, InternalServerException.prototype);
111
+ this.retryAfterSeconds = opts.retryAfterSeconds;
111
112
  }
112
- return InternalServerException;
113
- }(__BaseException));
114
- export { InternalServerException };
115
- var ResourceNotFoundException = (function (_super) {
116
- __extends(ResourceNotFoundException, _super);
117
- function ResourceNotFoundException(opts) {
118
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
119
- _this.name = "ResourceNotFoundException";
120
- _this.$fault = "client";
121
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
122
- _this.code = opts.code;
123
- _this.resourceId = opts.resourceId;
124
- _this.resourceType = opts.resourceType;
125
- return _this;
113
+ }
114
+ export class ResourceNotFoundException extends __BaseException {
115
+ constructor(opts) {
116
+ super({
117
+ name: "ResourceNotFoundException",
118
+ $fault: "client",
119
+ ...opts,
120
+ });
121
+ this.name = "ResourceNotFoundException";
122
+ this.$fault = "client";
123
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
124
+ this.code = opts.code;
125
+ this.resourceId = opts.resourceId;
126
+ this.resourceType = opts.resourceType;
126
127
  }
127
- return ResourceNotFoundException;
128
- }(__BaseException));
129
- export { ResourceNotFoundException };
130
- var ServiceQuotaExceededException = (function (_super) {
131
- __extends(ServiceQuotaExceededException, _super);
132
- function ServiceQuotaExceededException(opts) {
133
- var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
134
- _this.name = "ServiceQuotaExceededException";
135
- _this.$fault = "client";
136
- Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
137
- _this.code = opts.code;
138
- _this.resourceId = opts.resourceId;
139
- _this.resourceType = opts.resourceType;
140
- _this.serviceCode = opts.serviceCode;
141
- _this.quotaCode = opts.quotaCode;
142
- return _this;
128
+ }
129
+ export class ServiceQuotaExceededException extends __BaseException {
130
+ constructor(opts) {
131
+ super({
132
+ name: "ServiceQuotaExceededException",
133
+ $fault: "client",
134
+ ...opts,
135
+ });
136
+ this.name = "ServiceQuotaExceededException";
137
+ this.$fault = "client";
138
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
139
+ this.code = opts.code;
140
+ this.resourceId = opts.resourceId;
141
+ this.resourceType = opts.resourceType;
142
+ this.serviceCode = opts.serviceCode;
143
+ this.quotaCode = opts.quotaCode;
143
144
  }
144
- return ServiceQuotaExceededException;
145
- }(__BaseException));
146
- export { ServiceQuotaExceededException };
147
- var ThrottlingException = (function (_super) {
148
- __extends(ThrottlingException, _super);
149
- function ThrottlingException(opts) {
150
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
151
- _this.name = "ThrottlingException";
152
- _this.$fault = "client";
153
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
154
- _this.serviceCode = opts.serviceCode;
155
- _this.quotaCode = opts.quotaCode;
156
- _this.retryAfterSeconds = opts.retryAfterSeconds;
157
- return _this;
145
+ }
146
+ export class ThrottlingException extends __BaseException {
147
+ constructor(opts) {
148
+ super({
149
+ name: "ThrottlingException",
150
+ $fault: "client",
151
+ ...opts,
152
+ });
153
+ this.name = "ThrottlingException";
154
+ this.$fault = "client";
155
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
156
+ this.serviceCode = opts.serviceCode;
157
+ this.quotaCode = opts.quotaCode;
158
+ this.retryAfterSeconds = opts.retryAfterSeconds;
158
159
  }
159
- return ThrottlingException;
160
- }(__BaseException));
161
- export { ThrottlingException };
162
- var UninitializedAccountException = (function (_super) {
163
- __extends(UninitializedAccountException, _super);
164
- function UninitializedAccountException(opts) {
165
- var _this = _super.call(this, __assign({ name: "UninitializedAccountException", $fault: "client" }, opts)) || this;
166
- _this.name = "UninitializedAccountException";
167
- _this.$fault = "client";
168
- Object.setPrototypeOf(_this, UninitializedAccountException.prototype);
169
- _this.code = opts.code;
170
- return _this;
160
+ }
161
+ export class UninitializedAccountException extends __BaseException {
162
+ constructor(opts) {
163
+ super({
164
+ name: "UninitializedAccountException",
165
+ $fault: "client",
166
+ ...opts,
167
+ });
168
+ this.name = "UninitializedAccountException";
169
+ this.$fault = "client";
170
+ Object.setPrototypeOf(this, UninitializedAccountException.prototype);
171
+ this.code = opts.code;
171
172
  }
172
- return UninitializedAccountException;
173
- }(__BaseException));
174
- export { UninitializedAccountException };
173
+ }
175
174
  export var ValidationExceptionReason;
176
175
  (function (ValidationExceptionReason) {
177
176
  ValidationExceptionReason["CANNOT_PARSE"] = "cannotParse";
@@ -179,21 +178,21 @@ export var ValidationExceptionReason;
179
178
  ValidationExceptionReason["OTHER"] = "other";
180
179
  ValidationExceptionReason["UNKNOWN_OPERATION"] = "unknownOperation";
181
180
  })(ValidationExceptionReason || (ValidationExceptionReason = {}));
182
- var ValidationException = (function (_super) {
183
- __extends(ValidationException, _super);
184
- function ValidationException(opts) {
185
- var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
186
- _this.name = "ValidationException";
187
- _this.$fault = "client";
188
- Object.setPrototypeOf(_this, ValidationException.prototype);
189
- _this.code = opts.code;
190
- _this.reason = opts.reason;
191
- _this.fieldList = opts.fieldList;
192
- return _this;
181
+ export class ValidationException extends __BaseException {
182
+ constructor(opts) {
183
+ super({
184
+ name: "ValidationException",
185
+ $fault: "client",
186
+ ...opts,
187
+ });
188
+ this.name = "ValidationException";
189
+ this.$fault = "client";
190
+ Object.setPrototypeOf(this, ValidationException.prototype);
191
+ this.code = opts.code;
192
+ this.reason = opts.reason;
193
+ this.fieldList = opts.fieldList;
193
194
  }
194
- return ValidationException;
195
- }(__BaseException));
196
- export { ValidationException };
195
+ }
197
196
  export var ReplicationConfigurationDataPlaneRouting;
198
197
  (function (ReplicationConfigurationDataPlaneRouting) {
199
198
  ReplicationConfigurationDataPlaneRouting["PRIVATE_IP"] = "PRIVATE_IP";
@@ -352,98 +351,314 @@ export var ReplicationConfigurationReplicatedDiskStagingDiskType;
352
351
  ReplicationConfigurationReplicatedDiskStagingDiskType["ST1"] = "ST1";
353
352
  ReplicationConfigurationReplicatedDiskStagingDiskType["STANDARD"] = "STANDARD";
354
353
  })(ReplicationConfigurationReplicatedDiskStagingDiskType || (ReplicationConfigurationReplicatedDiskStagingDiskType = {}));
355
- export var AccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var ConversionPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var CPUFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var CreateExtendedSourceServerRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
359
- export var DataReplicationErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var DataReplicationInitiationStepFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var DataReplicationInitiationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var DataReplicationInfoReplicatedDiskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var DataReplicationInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var LifeCycleLastLaunchInitiatedFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var LifeCycleLastLaunchFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var LifeCycleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var DiskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var IdentificationHintsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var NetworkInterfaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var OSFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var SourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var StagingAreaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
- export var SourceServerFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
374
- export var CreateExtendedSourceServerResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.sourceServer && { sourceServer: SourceServerFilterSensitiveLog(obj.sourceServer) }))); };
375
- export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
- export var PITPolicyRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- export var CreateReplicationConfigurationTemplateRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING })), (obj.tags && { tags: SENSITIVE_STRING }))); };
378
- export var ReplicationConfigurationTemplateFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING })), (obj.tags && { tags: SENSITIVE_STRING }))); };
379
- export var DeleteJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var DeleteJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var DeleteRecoveryInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
- export var DeleteReplicationConfigurationTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
- export var DeleteReplicationConfigurationTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var DeleteSourceServerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var DeleteSourceServerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var DescribeJobLogItemsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var JobLogEventDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
- export var JobLogFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
- export var DescribeJobLogItemsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
390
- export var DescribeJobsRequestFiltersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
391
- export var DescribeJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
392
- export var ParticipatingServerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
- export var JobFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
394
- export var DescribeJobsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.items && { items: obj.items.map(function (item) { return JobFilterSensitiveLog(item); }) }))); };
395
- export var DescribeRecoveryInstancesRequestFiltersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
396
- export var DescribeRecoveryInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
397
- export var RecoveryInstanceDataReplicationErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
398
- export var RecoveryInstanceDataReplicationInitiationStepFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
399
- export var RecoveryInstanceDataReplicationInitiationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
400
- export var RecoveryInstanceDataReplicationInfoReplicatedDiskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
401
- export var RecoveryInstanceDataReplicationInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
402
- export var RecoveryInstanceFailbackFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
403
- export var RecoveryInstanceDiskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
404
- export var RecoveryInstancePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
405
- export var RecoveryInstanceFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
406
- export var DescribeRecoveryInstancesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.items && { items: obj.items.map(function (item) { return RecoveryInstanceFilterSensitiveLog(item); }) }))); };
407
- export var DescribeRecoverySnapshotsRequestFiltersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
- export var DescribeRecoverySnapshotsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
- export var RecoverySnapshotFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
410
- export var DescribeRecoverySnapshotsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
- export var DescribeReplicationConfigurationTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
412
- export var DescribeReplicationConfigurationTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.items && { items: obj.items.map(function (item) { return ReplicationConfigurationTemplateFilterSensitiveLog(item); }) }))); };
413
- export var DescribeSourceServersRequestFiltersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
414
- export var DescribeSourceServersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
- export var DescribeSourceServersResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.items && { items: obj.items.map(function (item) { return SourceServerFilterSensitiveLog(item); }) }))); };
416
- export var DisconnectRecoveryInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
417
- export var DisconnectSourceServerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
418
- export var InitializeServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
419
- export var InitializeServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
420
- export var ListExtensibleSourceServersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
421
- export var StagingSourceServerFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
422
- export var ListExtensibleSourceServersResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.items && { items: obj.items.map(function (item) { return StagingSourceServerFilterSensitiveLog(item); }) }))); };
423
- export var ListStagingAccountsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
424
- export var ListStagingAccountsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
425
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
426
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
427
- export var GetFailbackReplicationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
428
- export var GetFailbackReplicationConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
429
- export var StartFailbackLaunchRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
430
- export var StartFailbackLaunchResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.job && { job: JobFilterSensitiveLog(obj.job) }))); };
431
- export var StopFailbackRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
432
- export var TerminateRecoveryInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
433
- export var TerminateRecoveryInstancesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.job && { job: JobFilterSensitiveLog(obj.job) }))); };
434
- export var UpdateFailbackReplicationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
435
- export var UpdateReplicationConfigurationTemplateRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }))); };
436
- export var GetLaunchConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
437
- export var LicensingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
438
- export var LaunchConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
439
- export var GetReplicationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
440
- export var ReplicationConfigurationReplicatedDiskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
441
- export var ReplicationConfigurationFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }))); };
442
- export var RetryDataReplicationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
443
- export var StartRecoveryRequestSourceServerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
444
- export var StartRecoveryRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
445
- export var StartRecoveryResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.job && { job: JobFilterSensitiveLog(obj.job) }))); };
446
- export var UpdateLaunchConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
447
- export var UpdateReplicationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }))); };
448
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: SENSITIVE_STRING }))); };
449
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tagKeys && { tagKeys: SENSITIVE_STRING }))); };
354
+ export const AccountFilterSensitiveLog = (obj) => ({
355
+ ...obj,
356
+ });
357
+ export const ConversionPropertiesFilterSensitiveLog = (obj) => ({
358
+ ...obj,
359
+ });
360
+ export const CPUFilterSensitiveLog = (obj) => ({
361
+ ...obj,
362
+ });
363
+ export const CreateExtendedSourceServerRequestFilterSensitiveLog = (obj) => ({
364
+ ...obj,
365
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
366
+ });
367
+ export const DataReplicationErrorFilterSensitiveLog = (obj) => ({
368
+ ...obj,
369
+ });
370
+ export const DataReplicationInitiationStepFilterSensitiveLog = (obj) => ({
371
+ ...obj,
372
+ });
373
+ export const DataReplicationInitiationFilterSensitiveLog = (obj) => ({
374
+ ...obj,
375
+ });
376
+ export const DataReplicationInfoReplicatedDiskFilterSensitiveLog = (obj) => ({
377
+ ...obj,
378
+ });
379
+ export const DataReplicationInfoFilterSensitiveLog = (obj) => ({
380
+ ...obj,
381
+ });
382
+ export const LifeCycleLastLaunchInitiatedFilterSensitiveLog = (obj) => ({
383
+ ...obj,
384
+ });
385
+ export const LifeCycleLastLaunchFilterSensitiveLog = (obj) => ({
386
+ ...obj,
387
+ });
388
+ export const LifeCycleFilterSensitiveLog = (obj) => ({
389
+ ...obj,
390
+ });
391
+ export const DiskFilterSensitiveLog = (obj) => ({
392
+ ...obj,
393
+ });
394
+ export const IdentificationHintsFilterSensitiveLog = (obj) => ({
395
+ ...obj,
396
+ });
397
+ export const NetworkInterfaceFilterSensitiveLog = (obj) => ({
398
+ ...obj,
399
+ });
400
+ export const OSFilterSensitiveLog = (obj) => ({
401
+ ...obj,
402
+ });
403
+ export const SourcePropertiesFilterSensitiveLog = (obj) => ({
404
+ ...obj,
405
+ });
406
+ export const StagingAreaFilterSensitiveLog = (obj) => ({
407
+ ...obj,
408
+ });
409
+ export const SourceServerFilterSensitiveLog = (obj) => ({
410
+ ...obj,
411
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
412
+ });
413
+ export const CreateExtendedSourceServerResponseFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ ...(obj.sourceServer && { sourceServer: SourceServerFilterSensitiveLog(obj.sourceServer) }),
416
+ });
417
+ export const ValidationExceptionFieldFilterSensitiveLog = (obj) => ({
418
+ ...obj,
419
+ });
420
+ export const PITPolicyRuleFilterSensitiveLog = (obj) => ({
421
+ ...obj,
422
+ });
423
+ export const CreateReplicationConfigurationTemplateRequestFilterSensitiveLog = (obj) => ({
424
+ ...obj,
425
+ ...(obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }),
426
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
427
+ });
428
+ export const ReplicationConfigurationTemplateFilterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ ...(obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }),
431
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
432
+ });
433
+ export const DeleteJobRequestFilterSensitiveLog = (obj) => ({
434
+ ...obj,
435
+ });
436
+ export const DeleteJobResponseFilterSensitiveLog = (obj) => ({
437
+ ...obj,
438
+ });
439
+ export const DeleteRecoveryInstanceRequestFilterSensitiveLog = (obj) => ({
440
+ ...obj,
441
+ });
442
+ export const DeleteReplicationConfigurationTemplateRequestFilterSensitiveLog = (obj) => ({
443
+ ...obj,
444
+ });
445
+ export const DeleteReplicationConfigurationTemplateResponseFilterSensitiveLog = (obj) => ({
446
+ ...obj,
447
+ });
448
+ export const DeleteSourceServerRequestFilterSensitiveLog = (obj) => ({
449
+ ...obj,
450
+ });
451
+ export const DeleteSourceServerResponseFilterSensitiveLog = (obj) => ({
452
+ ...obj,
453
+ });
454
+ export const DescribeJobLogItemsRequestFilterSensitiveLog = (obj) => ({
455
+ ...obj,
456
+ });
457
+ export const JobLogEventDataFilterSensitiveLog = (obj) => ({
458
+ ...obj,
459
+ });
460
+ export const JobLogFilterSensitiveLog = (obj) => ({
461
+ ...obj,
462
+ });
463
+ export const DescribeJobLogItemsResponseFilterSensitiveLog = (obj) => ({
464
+ ...obj,
465
+ });
466
+ export const DescribeJobsRequestFiltersFilterSensitiveLog = (obj) => ({
467
+ ...obj,
468
+ });
469
+ export const DescribeJobsRequestFilterSensitiveLog = (obj) => ({
470
+ ...obj,
471
+ });
472
+ export const ParticipatingServerFilterSensitiveLog = (obj) => ({
473
+ ...obj,
474
+ });
475
+ export const JobFilterSensitiveLog = (obj) => ({
476
+ ...obj,
477
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
478
+ });
479
+ export const DescribeJobsResponseFilterSensitiveLog = (obj) => ({
480
+ ...obj,
481
+ ...(obj.items && { items: obj.items.map((item) => JobFilterSensitiveLog(item)) }),
482
+ });
483
+ export const DescribeRecoveryInstancesRequestFiltersFilterSensitiveLog = (obj) => ({
484
+ ...obj,
485
+ });
486
+ export const DescribeRecoveryInstancesRequestFilterSensitiveLog = (obj) => ({
487
+ ...obj,
488
+ });
489
+ export const RecoveryInstanceDataReplicationErrorFilterSensitiveLog = (obj) => ({
490
+ ...obj,
491
+ });
492
+ export const RecoveryInstanceDataReplicationInitiationStepFilterSensitiveLog = (obj) => ({
493
+ ...obj,
494
+ });
495
+ export const RecoveryInstanceDataReplicationInitiationFilterSensitiveLog = (obj) => ({
496
+ ...obj,
497
+ });
498
+ export const RecoveryInstanceDataReplicationInfoReplicatedDiskFilterSensitiveLog = (obj) => ({
499
+ ...obj,
500
+ });
501
+ export const RecoveryInstanceDataReplicationInfoFilterSensitiveLog = (obj) => ({
502
+ ...obj,
503
+ });
504
+ export const RecoveryInstanceFailbackFilterSensitiveLog = (obj) => ({
505
+ ...obj,
506
+ });
507
+ export const RecoveryInstanceDiskFilterSensitiveLog = (obj) => ({
508
+ ...obj,
509
+ });
510
+ export const RecoveryInstancePropertiesFilterSensitiveLog = (obj) => ({
511
+ ...obj,
512
+ });
513
+ export const RecoveryInstanceFilterSensitiveLog = (obj) => ({
514
+ ...obj,
515
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
516
+ });
517
+ export const DescribeRecoveryInstancesResponseFilterSensitiveLog = (obj) => ({
518
+ ...obj,
519
+ ...(obj.items && { items: obj.items.map((item) => RecoveryInstanceFilterSensitiveLog(item)) }),
520
+ });
521
+ export const DescribeRecoverySnapshotsRequestFiltersFilterSensitiveLog = (obj) => ({
522
+ ...obj,
523
+ });
524
+ export const DescribeRecoverySnapshotsRequestFilterSensitiveLog = (obj) => ({
525
+ ...obj,
526
+ });
527
+ export const RecoverySnapshotFilterSensitiveLog = (obj) => ({
528
+ ...obj,
529
+ });
530
+ export const DescribeRecoverySnapshotsResponseFilterSensitiveLog = (obj) => ({
531
+ ...obj,
532
+ });
533
+ export const DescribeReplicationConfigurationTemplatesRequestFilterSensitiveLog = (obj) => ({
534
+ ...obj,
535
+ });
536
+ export const DescribeReplicationConfigurationTemplatesResponseFilterSensitiveLog = (obj) => ({
537
+ ...obj,
538
+ ...(obj.items && { items: obj.items.map((item) => ReplicationConfigurationTemplateFilterSensitiveLog(item)) }),
539
+ });
540
+ export const DescribeSourceServersRequestFiltersFilterSensitiveLog = (obj) => ({
541
+ ...obj,
542
+ });
543
+ export const DescribeSourceServersRequestFilterSensitiveLog = (obj) => ({
544
+ ...obj,
545
+ });
546
+ export const DescribeSourceServersResponseFilterSensitiveLog = (obj) => ({
547
+ ...obj,
548
+ ...(obj.items && { items: obj.items.map((item) => SourceServerFilterSensitiveLog(item)) }),
549
+ });
550
+ export const DisconnectRecoveryInstanceRequestFilterSensitiveLog = (obj) => ({
551
+ ...obj,
552
+ });
553
+ export const DisconnectSourceServerRequestFilterSensitiveLog = (obj) => ({
554
+ ...obj,
555
+ });
556
+ export const InitializeServiceRequestFilterSensitiveLog = (obj) => ({
557
+ ...obj,
558
+ });
559
+ export const InitializeServiceResponseFilterSensitiveLog = (obj) => ({
560
+ ...obj,
561
+ });
562
+ export const ListExtensibleSourceServersRequestFilterSensitiveLog = (obj) => ({
563
+ ...obj,
564
+ });
565
+ export const StagingSourceServerFilterSensitiveLog = (obj) => ({
566
+ ...obj,
567
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
568
+ });
569
+ export const ListExtensibleSourceServersResponseFilterSensitiveLog = (obj) => ({
570
+ ...obj,
571
+ ...(obj.items && { items: obj.items.map((item) => StagingSourceServerFilterSensitiveLog(item)) }),
572
+ });
573
+ export const ListStagingAccountsRequestFilterSensitiveLog = (obj) => ({
574
+ ...obj,
575
+ });
576
+ export const ListStagingAccountsResponseFilterSensitiveLog = (obj) => ({
577
+ ...obj,
578
+ });
579
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
580
+ ...obj,
581
+ });
582
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
583
+ ...obj,
584
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
585
+ });
586
+ export const GetFailbackReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
587
+ ...obj,
588
+ });
589
+ export const GetFailbackReplicationConfigurationResponseFilterSensitiveLog = (obj) => ({
590
+ ...obj,
591
+ });
592
+ export const StartFailbackLaunchRequestFilterSensitiveLog = (obj) => ({
593
+ ...obj,
594
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
595
+ });
596
+ export const StartFailbackLaunchResponseFilterSensitiveLog = (obj) => ({
597
+ ...obj,
598
+ ...(obj.job && { job: JobFilterSensitiveLog(obj.job) }),
599
+ });
600
+ export const StopFailbackRequestFilterSensitiveLog = (obj) => ({
601
+ ...obj,
602
+ });
603
+ export const TerminateRecoveryInstancesRequestFilterSensitiveLog = (obj) => ({
604
+ ...obj,
605
+ });
606
+ export const TerminateRecoveryInstancesResponseFilterSensitiveLog = (obj) => ({
607
+ ...obj,
608
+ ...(obj.job && { job: JobFilterSensitiveLog(obj.job) }),
609
+ });
610
+ export const UpdateFailbackReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
611
+ ...obj,
612
+ });
613
+ export const UpdateReplicationConfigurationTemplateRequestFilterSensitiveLog = (obj) => ({
614
+ ...obj,
615
+ ...(obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }),
616
+ });
617
+ export const GetLaunchConfigurationRequestFilterSensitiveLog = (obj) => ({
618
+ ...obj,
619
+ });
620
+ export const LicensingFilterSensitiveLog = (obj) => ({
621
+ ...obj,
622
+ });
623
+ export const LaunchConfigurationFilterSensitiveLog = (obj) => ({
624
+ ...obj,
625
+ });
626
+ export const GetReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
627
+ ...obj,
628
+ });
629
+ export const ReplicationConfigurationReplicatedDiskFilterSensitiveLog = (obj) => ({
630
+ ...obj,
631
+ });
632
+ export const ReplicationConfigurationFilterSensitiveLog = (obj) => ({
633
+ ...obj,
634
+ ...(obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }),
635
+ });
636
+ export const RetryDataReplicationRequestFilterSensitiveLog = (obj) => ({
637
+ ...obj,
638
+ });
639
+ export const StartRecoveryRequestSourceServerFilterSensitiveLog = (obj) => ({
640
+ ...obj,
641
+ });
642
+ export const StartRecoveryRequestFilterSensitiveLog = (obj) => ({
643
+ ...obj,
644
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
645
+ });
646
+ export const StartRecoveryResponseFilterSensitiveLog = (obj) => ({
647
+ ...obj,
648
+ ...(obj.job && { job: JobFilterSensitiveLog(obj.job) }),
649
+ });
650
+ export const UpdateLaunchConfigurationRequestFilterSensitiveLog = (obj) => ({
651
+ ...obj,
652
+ });
653
+ export const UpdateReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
654
+ ...obj,
655
+ ...(obj.stagingAreaTags && { stagingAreaTags: SENSITIVE_STRING }),
656
+ });
657
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
658
+ ...obj,
659
+ ...(obj.tags && { tags: SENSITIVE_STRING }),
660
+ });
661
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
662
+ ...obj,
663
+ ...(obj.tagKeys && { tagKeys: SENSITIVE_STRING }),
664
+ });