@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.
- package/CHANGELOG.md +8 -0
- package/dist-es/ServiceDiscovery.js +106 -113
- package/dist-es/ServiceDiscoveryClient.js +22 -28
- package/dist-es/commands/CreateHttpNamespaceCommand.js +21 -28
- package/dist-es/commands/CreatePrivateDnsNamespaceCommand.js +21 -28
- package/dist-es/commands/CreatePublicDnsNamespaceCommand.js +21 -28
- package/dist-es/commands/CreateServiceCommand.js +21 -28
- package/dist-es/commands/DeleteNamespaceCommand.js +21 -28
- package/dist-es/commands/DeleteServiceCommand.js +21 -28
- package/dist-es/commands/DeregisterInstanceCommand.js +21 -28
- package/dist-es/commands/DiscoverInstancesCommand.js +21 -28
- package/dist-es/commands/GetInstanceCommand.js +21 -28
- package/dist-es/commands/GetInstancesHealthStatusCommand.js +21 -28
- package/dist-es/commands/GetNamespaceCommand.js +21 -28
- package/dist-es/commands/GetOperationCommand.js +21 -28
- package/dist-es/commands/GetServiceCommand.js +21 -28
- package/dist-es/commands/ListInstancesCommand.js +21 -28
- package/dist-es/commands/ListNamespacesCommand.js +21 -28
- package/dist-es/commands/ListOperationsCommand.js +21 -28
- package/dist-es/commands/ListServicesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/RegisterInstanceCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateHttpNamespaceCommand.js +21 -28
- package/dist-es/commands/UpdateInstanceCustomHealthStatusCommand.js +22 -29
- package/dist-es/commands/UpdatePrivateDnsNamespaceCommand.js +21 -28
- package/dist-es/commands/UpdatePublicDnsNamespaceCommand.js +21 -28
- package/dist-es/commands/UpdateServiceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ServiceDiscoveryServiceException.js +5 -10
- package/dist-es/models/models_0.js +432 -261
- package/dist-es/pagination/GetInstancesHealthStatusPaginator.js +25 -68
- package/dist-es/pagination/ListInstancesPaginator.js +25 -68
- package/dist-es/pagination/ListNamespacesPaginator.js +25 -68
- package/dist-es/pagination/ListOperationsPaginator.js +25 -68
- package/dist-es/pagination/ListServicesPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +1863 -2311
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,74 +1,73 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
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
|
-
|
|
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
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
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
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
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
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
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
|
-
|
|
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
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
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
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
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
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
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
|
-
|
|
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
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
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
|
-
|
|
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
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
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
|
-
|
|
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
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
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
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
export
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
export
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
export
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
export
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
export
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
export
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
export
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
export
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
export
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
export
|
|
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
|
+
});
|