@aws-sdk/client-servicediscovery 3.186.0 → 3.188.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 (43) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/ServiceDiscovery.js +106 -113
  3. package/dist-es/ServiceDiscoveryClient.js +22 -28
  4. package/dist-es/commands/CreateHttpNamespaceCommand.js +21 -28
  5. package/dist-es/commands/CreatePrivateDnsNamespaceCommand.js +21 -28
  6. package/dist-es/commands/CreatePublicDnsNamespaceCommand.js +21 -28
  7. package/dist-es/commands/CreateServiceCommand.js +21 -28
  8. package/dist-es/commands/DeleteNamespaceCommand.js +21 -28
  9. package/dist-es/commands/DeleteServiceCommand.js +21 -28
  10. package/dist-es/commands/DeregisterInstanceCommand.js +21 -28
  11. package/dist-es/commands/DiscoverInstancesCommand.js +21 -28
  12. package/dist-es/commands/GetInstanceCommand.js +21 -28
  13. package/dist-es/commands/GetInstancesHealthStatusCommand.js +21 -28
  14. package/dist-es/commands/GetNamespaceCommand.js +21 -28
  15. package/dist-es/commands/GetOperationCommand.js +21 -28
  16. package/dist-es/commands/GetServiceCommand.js +21 -28
  17. package/dist-es/commands/ListInstancesCommand.js +21 -28
  18. package/dist-es/commands/ListNamespacesCommand.js +21 -28
  19. package/dist-es/commands/ListOperationsCommand.js +21 -28
  20. package/dist-es/commands/ListServicesCommand.js +21 -28
  21. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  22. package/dist-es/commands/RegisterInstanceCommand.js +21 -28
  23. package/dist-es/commands/TagResourceCommand.js +21 -28
  24. package/dist-es/commands/UntagResourceCommand.js +21 -28
  25. package/dist-es/commands/UpdateHttpNamespaceCommand.js +21 -28
  26. package/dist-es/commands/UpdateInstanceCustomHealthStatusCommand.js +22 -29
  27. package/dist-es/commands/UpdatePrivateDnsNamespaceCommand.js +21 -28
  28. package/dist-es/commands/UpdatePublicDnsNamespaceCommand.js +21 -28
  29. package/dist-es/commands/UpdateServiceCommand.js +21 -28
  30. package/dist-es/endpoints.js +8 -8
  31. package/dist-es/models/ServiceDiscoveryServiceException.js +5 -10
  32. package/dist-es/models/models_0.js +432 -261
  33. package/dist-es/pagination/GetInstancesHealthStatusPaginator.js +25 -68
  34. package/dist-es/pagination/ListInstancesPaginator.js +25 -68
  35. package/dist-es/pagination/ListNamespacesPaginator.js +25 -68
  36. package/dist-es/pagination/ListOperationsPaginator.js +25 -68
  37. package/dist-es/pagination/ListServicesPaginator.js +25 -68
  38. package/dist-es/protocols/Aws_json1_1.js +1863 -2311
  39. package/dist-es/runtimeConfig.browser.js +26 -12
  40. package/dist-es/runtimeConfig.js +30 -12
  41. package/dist-es/runtimeConfig.native.js +8 -5
  42. package/dist-es/runtimeConfig.shared.js +8 -11
  43. package/package.json +33 -33
@@ -1,74 +1,73 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException";
3
- var DuplicateRequest = (function (_super) {
4
- __extends(DuplicateRequest, _super);
5
- function DuplicateRequest(opts) {
6
- var _this = _super.call(this, __assign({ name: "DuplicateRequest", $fault: "client" }, opts)) || this;
7
- _this.name = "DuplicateRequest";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, DuplicateRequest.prototype);
10
- _this.Message = opts.Message;
11
- _this.DuplicateOperationId = opts.DuplicateOperationId;
12
- return _this;
2
+ export class DuplicateRequest extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "DuplicateRequest",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "DuplicateRequest";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, DuplicateRequest.prototype);
12
+ this.Message = opts.Message;
13
+ this.DuplicateOperationId = opts.DuplicateOperationId;
13
14
  }
14
- return DuplicateRequest;
15
- }(__BaseException));
16
- export { DuplicateRequest };
17
- var InvalidInput = (function (_super) {
18
- __extends(InvalidInput, _super);
19
- function InvalidInput(opts) {
20
- var _this = _super.call(this, __assign({ name: "InvalidInput", $fault: "client" }, opts)) || this;
21
- _this.name = "InvalidInput";
22
- _this.$fault = "client";
23
- Object.setPrototypeOf(_this, InvalidInput.prototype);
24
- _this.Message = opts.Message;
25
- return _this;
15
+ }
16
+ export class InvalidInput extends __BaseException {
17
+ constructor(opts) {
18
+ super({
19
+ name: "InvalidInput",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ this.name = "InvalidInput";
24
+ this.$fault = "client";
25
+ Object.setPrototypeOf(this, InvalidInput.prototype);
26
+ this.Message = opts.Message;
26
27
  }
27
- return InvalidInput;
28
- }(__BaseException));
29
- export { InvalidInput };
30
- var NamespaceAlreadyExists = (function (_super) {
31
- __extends(NamespaceAlreadyExists, _super);
32
- function NamespaceAlreadyExists(opts) {
33
- var _this = _super.call(this, __assign({ name: "NamespaceAlreadyExists", $fault: "client" }, opts)) || this;
34
- _this.name = "NamespaceAlreadyExists";
35
- _this.$fault = "client";
36
- Object.setPrototypeOf(_this, NamespaceAlreadyExists.prototype);
37
- _this.Message = opts.Message;
38
- _this.CreatorRequestId = opts.CreatorRequestId;
39
- _this.NamespaceId = opts.NamespaceId;
40
- return _this;
28
+ }
29
+ export class NamespaceAlreadyExists extends __BaseException {
30
+ constructor(opts) {
31
+ super({
32
+ name: "NamespaceAlreadyExists",
33
+ $fault: "client",
34
+ ...opts,
35
+ });
36
+ this.name = "NamespaceAlreadyExists";
37
+ this.$fault = "client";
38
+ Object.setPrototypeOf(this, NamespaceAlreadyExists.prototype);
39
+ this.Message = opts.Message;
40
+ this.CreatorRequestId = opts.CreatorRequestId;
41
+ this.NamespaceId = opts.NamespaceId;
41
42
  }
42
- return NamespaceAlreadyExists;
43
- }(__BaseException));
44
- export { NamespaceAlreadyExists };
45
- var ResourceLimitExceeded = (function (_super) {
46
- __extends(ResourceLimitExceeded, _super);
47
- function ResourceLimitExceeded(opts) {
48
- var _this = _super.call(this, __assign({ name: "ResourceLimitExceeded", $fault: "client" }, opts)) || this;
49
- _this.name = "ResourceLimitExceeded";
50
- _this.$fault = "client";
51
- Object.setPrototypeOf(_this, ResourceLimitExceeded.prototype);
52
- _this.Message = opts.Message;
53
- return _this;
43
+ }
44
+ export class ResourceLimitExceeded extends __BaseException {
45
+ constructor(opts) {
46
+ super({
47
+ name: "ResourceLimitExceeded",
48
+ $fault: "client",
49
+ ...opts,
50
+ });
51
+ this.name = "ResourceLimitExceeded";
52
+ this.$fault = "client";
53
+ Object.setPrototypeOf(this, ResourceLimitExceeded.prototype);
54
+ this.Message = opts.Message;
54
55
  }
55
- return ResourceLimitExceeded;
56
- }(__BaseException));
57
- export { ResourceLimitExceeded };
58
- var TooManyTagsException = (function (_super) {
59
- __extends(TooManyTagsException, _super);
60
- function TooManyTagsException(opts) {
61
- var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
62
- _this.name = "TooManyTagsException";
63
- _this.$fault = "client";
64
- Object.setPrototypeOf(_this, TooManyTagsException.prototype);
65
- _this.Message = opts.Message;
66
- _this.ResourceName = opts.ResourceName;
67
- return _this;
56
+ }
57
+ export class TooManyTagsException extends __BaseException {
58
+ constructor(opts) {
59
+ super({
60
+ name: "TooManyTagsException",
61
+ $fault: "client",
62
+ ...opts,
63
+ });
64
+ this.name = "TooManyTagsException";
65
+ this.$fault = "client";
66
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
67
+ this.Message = opts.Message;
68
+ this.ResourceName = opts.ResourceName;
68
69
  }
69
- return TooManyTagsException;
70
- }(__BaseException));
71
- export { TooManyTagsException };
70
+ }
72
71
  export var RecordType;
73
72
  (function (RecordType) {
74
73
  RecordType["A"] = "A";
@@ -97,91 +96,91 @@ export var ServiceType;
97
96
  ServiceType["DNS_HTTP"] = "DNS_HTTP";
98
97
  ServiceType["HTTP"] = "HTTP";
99
98
  })(ServiceType || (ServiceType = {}));
100
- var NamespaceNotFound = (function (_super) {
101
- __extends(NamespaceNotFound, _super);
102
- function NamespaceNotFound(opts) {
103
- var _this = _super.call(this, __assign({ name: "NamespaceNotFound", $fault: "client" }, opts)) || this;
104
- _this.name = "NamespaceNotFound";
105
- _this.$fault = "client";
106
- Object.setPrototypeOf(_this, NamespaceNotFound.prototype);
107
- _this.Message = opts.Message;
108
- return _this;
99
+ export class NamespaceNotFound extends __BaseException {
100
+ constructor(opts) {
101
+ super({
102
+ name: "NamespaceNotFound",
103
+ $fault: "client",
104
+ ...opts,
105
+ });
106
+ this.name = "NamespaceNotFound";
107
+ this.$fault = "client";
108
+ Object.setPrototypeOf(this, NamespaceNotFound.prototype);
109
+ this.Message = opts.Message;
109
110
  }
110
- return NamespaceNotFound;
111
- }(__BaseException));
112
- export { NamespaceNotFound };
113
- var ServiceAlreadyExists = (function (_super) {
114
- __extends(ServiceAlreadyExists, _super);
115
- function ServiceAlreadyExists(opts) {
116
- var _this = _super.call(this, __assign({ name: "ServiceAlreadyExists", $fault: "client" }, opts)) || this;
117
- _this.name = "ServiceAlreadyExists";
118
- _this.$fault = "client";
119
- Object.setPrototypeOf(_this, ServiceAlreadyExists.prototype);
120
- _this.Message = opts.Message;
121
- _this.CreatorRequestId = opts.CreatorRequestId;
122
- _this.ServiceId = opts.ServiceId;
123
- return _this;
111
+ }
112
+ export class ServiceAlreadyExists extends __BaseException {
113
+ constructor(opts) {
114
+ super({
115
+ name: "ServiceAlreadyExists",
116
+ $fault: "client",
117
+ ...opts,
118
+ });
119
+ this.name = "ServiceAlreadyExists";
120
+ this.$fault = "client";
121
+ Object.setPrototypeOf(this, ServiceAlreadyExists.prototype);
122
+ this.Message = opts.Message;
123
+ this.CreatorRequestId = opts.CreatorRequestId;
124
+ this.ServiceId = opts.ServiceId;
124
125
  }
125
- return ServiceAlreadyExists;
126
- }(__BaseException));
127
- export { ServiceAlreadyExists };
128
- var CustomHealthNotFound = (function (_super) {
129
- __extends(CustomHealthNotFound, _super);
130
- function CustomHealthNotFound(opts) {
131
- var _this = _super.call(this, __assign({ name: "CustomHealthNotFound", $fault: "client" }, opts)) || this;
132
- _this.name = "CustomHealthNotFound";
133
- _this.$fault = "client";
134
- Object.setPrototypeOf(_this, CustomHealthNotFound.prototype);
135
- _this.Message = opts.Message;
136
- return _this;
126
+ }
127
+ export class CustomHealthNotFound extends __BaseException {
128
+ constructor(opts) {
129
+ super({
130
+ name: "CustomHealthNotFound",
131
+ $fault: "client",
132
+ ...opts,
133
+ });
134
+ this.name = "CustomHealthNotFound";
135
+ this.$fault = "client";
136
+ Object.setPrototypeOf(this, CustomHealthNotFound.prototype);
137
+ this.Message = opts.Message;
137
138
  }
138
- return CustomHealthNotFound;
139
- }(__BaseException));
140
- export { CustomHealthNotFound };
139
+ }
141
140
  export var CustomHealthStatus;
142
141
  (function (CustomHealthStatus) {
143
142
  CustomHealthStatus["HEALTHY"] = "HEALTHY";
144
143
  CustomHealthStatus["UNHEALTHY"] = "UNHEALTHY";
145
144
  })(CustomHealthStatus || (CustomHealthStatus = {}));
146
- var ResourceInUse = (function (_super) {
147
- __extends(ResourceInUse, _super);
148
- function ResourceInUse(opts) {
149
- var _this = _super.call(this, __assign({ name: "ResourceInUse", $fault: "client" }, opts)) || this;
150
- _this.name = "ResourceInUse";
151
- _this.$fault = "client";
152
- Object.setPrototypeOf(_this, ResourceInUse.prototype);
153
- _this.Message = opts.Message;
154
- return _this;
145
+ export class ResourceInUse extends __BaseException {
146
+ constructor(opts) {
147
+ super({
148
+ name: "ResourceInUse",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ this.name = "ResourceInUse";
153
+ this.$fault = "client";
154
+ Object.setPrototypeOf(this, ResourceInUse.prototype);
155
+ this.Message = opts.Message;
155
156
  }
156
- return ResourceInUse;
157
- }(__BaseException));
158
- export { ResourceInUse };
159
- var ServiceNotFound = (function (_super) {
160
- __extends(ServiceNotFound, _super);
161
- function ServiceNotFound(opts) {
162
- var _this = _super.call(this, __assign({ name: "ServiceNotFound", $fault: "client" }, opts)) || this;
163
- _this.name = "ServiceNotFound";
164
- _this.$fault = "client";
165
- Object.setPrototypeOf(_this, ServiceNotFound.prototype);
166
- _this.Message = opts.Message;
167
- return _this;
157
+ }
158
+ export class ServiceNotFound extends __BaseException {
159
+ constructor(opts) {
160
+ super({
161
+ name: "ServiceNotFound",
162
+ $fault: "client",
163
+ ...opts,
164
+ });
165
+ this.name = "ServiceNotFound";
166
+ this.$fault = "client";
167
+ Object.setPrototypeOf(this, ServiceNotFound.prototype);
168
+ this.Message = opts.Message;
168
169
  }
169
- return ServiceNotFound;
170
- }(__BaseException));
171
- export { ServiceNotFound };
172
- var InstanceNotFound = (function (_super) {
173
- __extends(InstanceNotFound, _super);
174
- function InstanceNotFound(opts) {
175
- var _this = _super.call(this, __assign({ name: "InstanceNotFound", $fault: "client" }, opts)) || this;
176
- _this.name = "InstanceNotFound";
177
- _this.$fault = "client";
178
- Object.setPrototypeOf(_this, InstanceNotFound.prototype);
179
- _this.Message = opts.Message;
180
- return _this;
170
+ }
171
+ export class InstanceNotFound extends __BaseException {
172
+ constructor(opts) {
173
+ super({
174
+ name: "InstanceNotFound",
175
+ $fault: "client",
176
+ ...opts,
177
+ });
178
+ this.name = "InstanceNotFound";
179
+ this.$fault = "client";
180
+ Object.setPrototypeOf(this, InstanceNotFound.prototype);
181
+ this.Message = opts.Message;
181
182
  }
182
- return InstanceNotFound;
183
- }(__BaseException));
184
- export { InstanceNotFound };
183
+ }
185
184
  export var HealthStatusFilter;
186
185
  (function (HealthStatusFilter) {
187
186
  HealthStatusFilter["ALL"] = "ALL";
@@ -195,19 +194,19 @@ export var HealthStatus;
195
194
  HealthStatus["UNHEALTHY"] = "UNHEALTHY";
196
195
  HealthStatus["UNKNOWN"] = "UNKNOWN";
197
196
  })(HealthStatus || (HealthStatus = {}));
198
- var RequestLimitExceeded = (function (_super) {
199
- __extends(RequestLimitExceeded, _super);
200
- function RequestLimitExceeded(opts) {
201
- var _this = _super.call(this, __assign({ name: "RequestLimitExceeded", $fault: "client" }, opts)) || this;
202
- _this.name = "RequestLimitExceeded";
203
- _this.$fault = "client";
204
- Object.setPrototypeOf(_this, RequestLimitExceeded.prototype);
205
- _this.Message = opts.Message;
206
- return _this;
197
+ export class RequestLimitExceeded extends __BaseException {
198
+ constructor(opts) {
199
+ super({
200
+ name: "RequestLimitExceeded",
201
+ $fault: "client",
202
+ ...opts,
203
+ });
204
+ this.name = "RequestLimitExceeded";
205
+ this.$fault = "client";
206
+ Object.setPrototypeOf(this, RequestLimitExceeded.prototype);
207
+ this.Message = opts.Message;
207
208
  }
208
- return RequestLimitExceeded;
209
- }(__BaseException));
210
- export { RequestLimitExceeded };
209
+ }
211
210
  export var FilterCondition;
212
211
  (function (FilterCondition) {
213
212
  FilterCondition["BETWEEN"] = "BETWEEN";
@@ -242,19 +241,19 @@ export var OperationType;
242
241
  OperationType["UPDATE_NAMESPACE"] = "UPDATE_NAMESPACE";
243
242
  OperationType["UPDATE_SERVICE"] = "UPDATE_SERVICE";
244
243
  })(OperationType || (OperationType = {}));
245
- var OperationNotFound = (function (_super) {
246
- __extends(OperationNotFound, _super);
247
- function OperationNotFound(opts) {
248
- var _this = _super.call(this, __assign({ name: "OperationNotFound", $fault: "client" }, opts)) || this;
249
- _this.name = "OperationNotFound";
250
- _this.$fault = "client";
251
- Object.setPrototypeOf(_this, OperationNotFound.prototype);
252
- _this.Message = opts.Message;
253
- return _this;
244
+ export class OperationNotFound extends __BaseException {
245
+ constructor(opts) {
246
+ super({
247
+ name: "OperationNotFound",
248
+ $fault: "client",
249
+ ...opts,
250
+ });
251
+ this.name = "OperationNotFound";
252
+ this.$fault = "client";
253
+ Object.setPrototypeOf(this, OperationNotFound.prototype);
254
+ this.Message = opts.Message;
254
255
  }
255
- return OperationNotFound;
256
- }(__BaseException));
257
- export { OperationNotFound };
256
+ }
258
257
  export var NamespaceFilterName;
259
258
  (function (NamespaceFilterName) {
260
259
  NamespaceFilterName["TYPE"] = "TYPE";
@@ -271,102 +270,274 @@ export var ServiceFilterName;
271
270
  (function (ServiceFilterName) {
272
271
  ServiceFilterName["NAMESPACE_ID"] = "NAMESPACE_ID";
273
272
  })(ServiceFilterName || (ServiceFilterName = {}));
274
- var ResourceNotFoundException = (function (_super) {
275
- __extends(ResourceNotFoundException, _super);
276
- function ResourceNotFoundException(opts) {
277
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
278
- _this.name = "ResourceNotFoundException";
279
- _this.$fault = "client";
280
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
281
- _this.Message = opts.Message;
282
- return _this;
273
+ export class ResourceNotFoundException extends __BaseException {
274
+ constructor(opts) {
275
+ super({
276
+ name: "ResourceNotFoundException",
277
+ $fault: "client",
278
+ ...opts,
279
+ });
280
+ this.name = "ResourceNotFoundException";
281
+ this.$fault = "client";
282
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
283
+ this.Message = opts.Message;
283
284
  }
284
- return ResourceNotFoundException;
285
- }(__BaseException));
286
- export { ResourceNotFoundException };
287
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var CreateHttpNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var CreateHttpNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var SOAFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var PrivateDnsPropertiesMutableFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var PrivateDnsNamespacePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var CreatePrivateDnsNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var CreatePrivateDnsNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var PublicDnsPropertiesMutableFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var PublicDnsNamespacePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var CreatePublicDnsNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var CreatePublicDnsNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var DnsRecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var DnsConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var HealthCheckConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var HealthCheckCustomConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var CreateServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var ServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var CreateServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var DeleteNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var DeleteNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var DeleteServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var DeleteServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
- export var DeregisterInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
- export var DeregisterInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
- export var DiscoverInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var HttpInstanceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var DiscoverInstancesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var DnsConfigChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var DnsPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var GetInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var InstanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var GetInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
- export var GetInstancesHealthStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
- export var GetInstancesHealthStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
- export var GetNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
- export var HttpPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
- export var NamespacePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
- export var NamespaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
- export var GetNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
- export var GetOperationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
- export var OperationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
- export var GetOperationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
- export var GetServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
- export var GetServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
- export var HttpNamespaceChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var InstanceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var ListInstancesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var ListInstancesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var NamespaceFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var ListNamespacesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var NamespaceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var ListNamespacesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var OperationFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var ListOperationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var OperationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var ListOperationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var ServiceFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var ListServicesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var ServiceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var ListServicesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var SOAChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var PrivateDnsPropertiesMutableChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var PrivateDnsNamespacePropertiesChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var PrivateDnsNamespaceChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var PublicDnsPropertiesMutableChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var PublicDnsNamespacePropertiesChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var PublicDnsNamespaceChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var RegisterInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var RegisterInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var UpdateHttpNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var UpdateHttpNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var UpdateInstanceCustomHealthStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var UpdatePrivateDnsNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var UpdatePrivateDnsNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var UpdatePublicDnsNamespaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var UpdatePublicDnsNamespaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var ServiceChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var UpdateServiceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var UpdateServiceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
+ }
286
+ export const TagFilterSensitiveLog = (obj) => ({
287
+ ...obj,
288
+ });
289
+ export const CreateHttpNamespaceRequestFilterSensitiveLog = (obj) => ({
290
+ ...obj,
291
+ });
292
+ export const CreateHttpNamespaceResponseFilterSensitiveLog = (obj) => ({
293
+ ...obj,
294
+ });
295
+ export const SOAFilterSensitiveLog = (obj) => ({
296
+ ...obj,
297
+ });
298
+ export const PrivateDnsPropertiesMutableFilterSensitiveLog = (obj) => ({
299
+ ...obj,
300
+ });
301
+ export const PrivateDnsNamespacePropertiesFilterSensitiveLog = (obj) => ({
302
+ ...obj,
303
+ });
304
+ export const CreatePrivateDnsNamespaceRequestFilterSensitiveLog = (obj) => ({
305
+ ...obj,
306
+ });
307
+ export const CreatePrivateDnsNamespaceResponseFilterSensitiveLog = (obj) => ({
308
+ ...obj,
309
+ });
310
+ export const PublicDnsPropertiesMutableFilterSensitiveLog = (obj) => ({
311
+ ...obj,
312
+ });
313
+ export const PublicDnsNamespacePropertiesFilterSensitiveLog = (obj) => ({
314
+ ...obj,
315
+ });
316
+ export const CreatePublicDnsNamespaceRequestFilterSensitiveLog = (obj) => ({
317
+ ...obj,
318
+ });
319
+ export const CreatePublicDnsNamespaceResponseFilterSensitiveLog = (obj) => ({
320
+ ...obj,
321
+ });
322
+ export const DnsRecordFilterSensitiveLog = (obj) => ({
323
+ ...obj,
324
+ });
325
+ export const DnsConfigFilterSensitiveLog = (obj) => ({
326
+ ...obj,
327
+ });
328
+ export const HealthCheckConfigFilterSensitiveLog = (obj) => ({
329
+ ...obj,
330
+ });
331
+ export const HealthCheckCustomConfigFilterSensitiveLog = (obj) => ({
332
+ ...obj,
333
+ });
334
+ export const CreateServiceRequestFilterSensitiveLog = (obj) => ({
335
+ ...obj,
336
+ });
337
+ export const ServiceFilterSensitiveLog = (obj) => ({
338
+ ...obj,
339
+ });
340
+ export const CreateServiceResponseFilterSensitiveLog = (obj) => ({
341
+ ...obj,
342
+ });
343
+ export const DeleteNamespaceRequestFilterSensitiveLog = (obj) => ({
344
+ ...obj,
345
+ });
346
+ export const DeleteNamespaceResponseFilterSensitiveLog = (obj) => ({
347
+ ...obj,
348
+ });
349
+ export const DeleteServiceRequestFilterSensitiveLog = (obj) => ({
350
+ ...obj,
351
+ });
352
+ export const DeleteServiceResponseFilterSensitiveLog = (obj) => ({
353
+ ...obj,
354
+ });
355
+ export const DeregisterInstanceRequestFilterSensitiveLog = (obj) => ({
356
+ ...obj,
357
+ });
358
+ export const DeregisterInstanceResponseFilterSensitiveLog = (obj) => ({
359
+ ...obj,
360
+ });
361
+ export const DiscoverInstancesRequestFilterSensitiveLog = (obj) => ({
362
+ ...obj,
363
+ });
364
+ export const HttpInstanceSummaryFilterSensitiveLog = (obj) => ({
365
+ ...obj,
366
+ });
367
+ export const DiscoverInstancesResponseFilterSensitiveLog = (obj) => ({
368
+ ...obj,
369
+ });
370
+ export const DnsConfigChangeFilterSensitiveLog = (obj) => ({
371
+ ...obj,
372
+ });
373
+ export const DnsPropertiesFilterSensitiveLog = (obj) => ({
374
+ ...obj,
375
+ });
376
+ export const GetInstanceRequestFilterSensitiveLog = (obj) => ({
377
+ ...obj,
378
+ });
379
+ export const InstanceFilterSensitiveLog = (obj) => ({
380
+ ...obj,
381
+ });
382
+ export const GetInstanceResponseFilterSensitiveLog = (obj) => ({
383
+ ...obj,
384
+ });
385
+ export const GetInstancesHealthStatusRequestFilterSensitiveLog = (obj) => ({
386
+ ...obj,
387
+ });
388
+ export const GetInstancesHealthStatusResponseFilterSensitiveLog = (obj) => ({
389
+ ...obj,
390
+ });
391
+ export const GetNamespaceRequestFilterSensitiveLog = (obj) => ({
392
+ ...obj,
393
+ });
394
+ export const HttpPropertiesFilterSensitiveLog = (obj) => ({
395
+ ...obj,
396
+ });
397
+ export const NamespacePropertiesFilterSensitiveLog = (obj) => ({
398
+ ...obj,
399
+ });
400
+ export const NamespaceFilterSensitiveLog = (obj) => ({
401
+ ...obj,
402
+ });
403
+ export const GetNamespaceResponseFilterSensitiveLog = (obj) => ({
404
+ ...obj,
405
+ });
406
+ export const GetOperationRequestFilterSensitiveLog = (obj) => ({
407
+ ...obj,
408
+ });
409
+ export const OperationFilterSensitiveLog = (obj) => ({
410
+ ...obj,
411
+ });
412
+ export const GetOperationResponseFilterSensitiveLog = (obj) => ({
413
+ ...obj,
414
+ });
415
+ export const GetServiceRequestFilterSensitiveLog = (obj) => ({
416
+ ...obj,
417
+ });
418
+ export const GetServiceResponseFilterSensitiveLog = (obj) => ({
419
+ ...obj,
420
+ });
421
+ export const HttpNamespaceChangeFilterSensitiveLog = (obj) => ({
422
+ ...obj,
423
+ });
424
+ export const InstanceSummaryFilterSensitiveLog = (obj) => ({
425
+ ...obj,
426
+ });
427
+ export const ListInstancesRequestFilterSensitiveLog = (obj) => ({
428
+ ...obj,
429
+ });
430
+ export const ListInstancesResponseFilterSensitiveLog = (obj) => ({
431
+ ...obj,
432
+ });
433
+ export const NamespaceFilterFilterSensitiveLog = (obj) => ({
434
+ ...obj,
435
+ });
436
+ export const ListNamespacesRequestFilterSensitiveLog = (obj) => ({
437
+ ...obj,
438
+ });
439
+ export const NamespaceSummaryFilterSensitiveLog = (obj) => ({
440
+ ...obj,
441
+ });
442
+ export const ListNamespacesResponseFilterSensitiveLog = (obj) => ({
443
+ ...obj,
444
+ });
445
+ export const OperationFilterFilterSensitiveLog = (obj) => ({
446
+ ...obj,
447
+ });
448
+ export const ListOperationsRequestFilterSensitiveLog = (obj) => ({
449
+ ...obj,
450
+ });
451
+ export const OperationSummaryFilterSensitiveLog = (obj) => ({
452
+ ...obj,
453
+ });
454
+ export const ListOperationsResponseFilterSensitiveLog = (obj) => ({
455
+ ...obj,
456
+ });
457
+ export const ServiceFilterFilterSensitiveLog = (obj) => ({
458
+ ...obj,
459
+ });
460
+ export const ListServicesRequestFilterSensitiveLog = (obj) => ({
461
+ ...obj,
462
+ });
463
+ export const ServiceSummaryFilterSensitiveLog = (obj) => ({
464
+ ...obj,
465
+ });
466
+ export const ListServicesResponseFilterSensitiveLog = (obj) => ({
467
+ ...obj,
468
+ });
469
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
470
+ ...obj,
471
+ });
472
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
473
+ ...obj,
474
+ });
475
+ export const SOAChangeFilterSensitiveLog = (obj) => ({
476
+ ...obj,
477
+ });
478
+ export const PrivateDnsPropertiesMutableChangeFilterSensitiveLog = (obj) => ({
479
+ ...obj,
480
+ });
481
+ export const PrivateDnsNamespacePropertiesChangeFilterSensitiveLog = (obj) => ({
482
+ ...obj,
483
+ });
484
+ export const PrivateDnsNamespaceChangeFilterSensitiveLog = (obj) => ({
485
+ ...obj,
486
+ });
487
+ export const PublicDnsPropertiesMutableChangeFilterSensitiveLog = (obj) => ({
488
+ ...obj,
489
+ });
490
+ export const PublicDnsNamespacePropertiesChangeFilterSensitiveLog = (obj) => ({
491
+ ...obj,
492
+ });
493
+ export const PublicDnsNamespaceChangeFilterSensitiveLog = (obj) => ({
494
+ ...obj,
495
+ });
496
+ export const RegisterInstanceRequestFilterSensitiveLog = (obj) => ({
497
+ ...obj,
498
+ });
499
+ export const RegisterInstanceResponseFilterSensitiveLog = (obj) => ({
500
+ ...obj,
501
+ });
502
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
503
+ ...obj,
504
+ });
505
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
506
+ ...obj,
507
+ });
508
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
509
+ ...obj,
510
+ });
511
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
512
+ ...obj,
513
+ });
514
+ export const UpdateHttpNamespaceRequestFilterSensitiveLog = (obj) => ({
515
+ ...obj,
516
+ });
517
+ export const UpdateHttpNamespaceResponseFilterSensitiveLog = (obj) => ({
518
+ ...obj,
519
+ });
520
+ export const UpdateInstanceCustomHealthStatusRequestFilterSensitiveLog = (obj) => ({
521
+ ...obj,
522
+ });
523
+ export const UpdatePrivateDnsNamespaceRequestFilterSensitiveLog = (obj) => ({
524
+ ...obj,
525
+ });
526
+ export const UpdatePrivateDnsNamespaceResponseFilterSensitiveLog = (obj) => ({
527
+ ...obj,
528
+ });
529
+ export const UpdatePublicDnsNamespaceRequestFilterSensitiveLog = (obj) => ({
530
+ ...obj,
531
+ });
532
+ export const UpdatePublicDnsNamespaceResponseFilterSensitiveLog = (obj) => ({
533
+ ...obj,
534
+ });
535
+ export const ServiceChangeFilterSensitiveLog = (obj) => ({
536
+ ...obj,
537
+ });
538
+ export const UpdateServiceRequestFilterSensitiveLog = (obj) => ({
539
+ ...obj,
540
+ });
541
+ export const UpdateServiceResponseFilterSensitiveLog = (obj) => ({
542
+ ...obj,
543
+ });