@aws-sdk/client-servicediscovery 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/ServiceDiscovery.js +113 -106
- package/dist-es/ServiceDiscoveryClient.js +28 -22
- package/dist-es/commands/CreateHttpNamespaceCommand.js +28 -21
- package/dist-es/commands/CreatePrivateDnsNamespaceCommand.js +28 -21
- package/dist-es/commands/CreatePublicDnsNamespaceCommand.js +28 -21
- package/dist-es/commands/CreateServiceCommand.js +28 -21
- package/dist-es/commands/DeleteNamespaceCommand.js +28 -21
- package/dist-es/commands/DeleteServiceCommand.js +28 -21
- package/dist-es/commands/DeregisterInstanceCommand.js +28 -21
- package/dist-es/commands/DiscoverInstancesCommand.js +28 -21
- package/dist-es/commands/GetInstanceCommand.js +28 -21
- package/dist-es/commands/GetInstancesHealthStatusCommand.js +28 -21
- package/dist-es/commands/GetNamespaceCommand.js +28 -21
- package/dist-es/commands/GetOperationCommand.js +28 -21
- package/dist-es/commands/GetServiceCommand.js +28 -21
- package/dist-es/commands/ListInstancesCommand.js +28 -21
- package/dist-es/commands/ListNamespacesCommand.js +28 -21
- package/dist-es/commands/ListOperationsCommand.js +28 -21
- package/dist-es/commands/ListServicesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/RegisterInstanceCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateHttpNamespaceCommand.js +28 -21
- package/dist-es/commands/UpdateInstanceCustomHealthStatusCommand.js +29 -22
- package/dist-es/commands/UpdatePrivateDnsNamespaceCommand.js +28 -21
- package/dist-es/commands/UpdatePublicDnsNamespaceCommand.js +28 -21
- package/dist-es/commands/UpdateServiceCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ServiceDiscoveryServiceException.js +10 -5
- package/dist-es/models/models_0.js +261 -432
- package/dist-es/pagination/GetInstancesHealthStatusPaginator.js +68 -25
- package/dist-es/pagination/ListInstancesPaginator.js +68 -25
- package/dist-es/pagination/ListNamespacesPaginator.js +68 -25
- package/dist-es/pagination/ListOperationsPaginator.js +68 -25
- package/dist-es/pagination/ListServicesPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +2311 -1863
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,73 +1,74 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
this.Message = opts.Message;
|
|
13
|
-
this.DuplicateOperationId = opts.DuplicateOperationId;
|
|
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;
|
|
14
13
|
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
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;
|
|
27
26
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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;
|
|
42
41
|
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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;
|
|
55
54
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
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;
|
|
69
68
|
}
|
|
70
|
-
|
|
69
|
+
return TooManyTagsException;
|
|
70
|
+
}(__BaseException));
|
|
71
|
+
export { TooManyTagsException };
|
|
71
72
|
export var RecordType;
|
|
72
73
|
(function (RecordType) {
|
|
73
74
|
RecordType["A"] = "A";
|
|
@@ -96,91 +97,91 @@ export var ServiceType;
|
|
|
96
97
|
ServiceType["DNS_HTTP"] = "DNS_HTTP";
|
|
97
98
|
ServiceType["HTTP"] = "HTTP";
|
|
98
99
|
})(ServiceType || (ServiceType = {}));
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
Object.setPrototypeOf(this, NamespaceNotFound.prototype);
|
|
109
|
-
this.Message = opts.Message;
|
|
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;
|
|
110
109
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
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;
|
|
125
124
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
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;
|
|
138
137
|
}
|
|
139
|
-
|
|
138
|
+
return CustomHealthNotFound;
|
|
139
|
+
}(__BaseException));
|
|
140
|
+
export { CustomHealthNotFound };
|
|
140
141
|
export var CustomHealthStatus;
|
|
141
142
|
(function (CustomHealthStatus) {
|
|
142
143
|
CustomHealthStatus["HEALTHY"] = "HEALTHY";
|
|
143
144
|
CustomHealthStatus["UNHEALTHY"] = "UNHEALTHY";
|
|
144
145
|
})(CustomHealthStatus || (CustomHealthStatus = {}));
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
Object.setPrototypeOf(this, ResourceInUse.prototype);
|
|
155
|
-
this.Message = opts.Message;
|
|
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;
|
|
156
155
|
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
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;
|
|
169
168
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
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;
|
|
182
181
|
}
|
|
183
|
-
|
|
182
|
+
return InstanceNotFound;
|
|
183
|
+
}(__BaseException));
|
|
184
|
+
export { InstanceNotFound };
|
|
184
185
|
export var HealthStatusFilter;
|
|
185
186
|
(function (HealthStatusFilter) {
|
|
186
187
|
HealthStatusFilter["ALL"] = "ALL";
|
|
@@ -194,19 +195,19 @@ export var HealthStatus;
|
|
|
194
195
|
HealthStatus["UNHEALTHY"] = "UNHEALTHY";
|
|
195
196
|
HealthStatus["UNKNOWN"] = "UNKNOWN";
|
|
196
197
|
})(HealthStatus || (HealthStatus = {}));
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
Object.setPrototypeOf(this, RequestLimitExceeded.prototype);
|
|
207
|
-
this.Message = opts.Message;
|
|
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;
|
|
208
207
|
}
|
|
209
|
-
|
|
208
|
+
return RequestLimitExceeded;
|
|
209
|
+
}(__BaseException));
|
|
210
|
+
export { RequestLimitExceeded };
|
|
210
211
|
export var FilterCondition;
|
|
211
212
|
(function (FilterCondition) {
|
|
212
213
|
FilterCondition["BETWEEN"] = "BETWEEN";
|
|
@@ -241,19 +242,19 @@ export var OperationType;
|
|
|
241
242
|
OperationType["UPDATE_NAMESPACE"] = "UPDATE_NAMESPACE";
|
|
242
243
|
OperationType["UPDATE_SERVICE"] = "UPDATE_SERVICE";
|
|
243
244
|
})(OperationType || (OperationType = {}));
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
Object.setPrototypeOf(this, OperationNotFound.prototype);
|
|
254
|
-
this.Message = opts.Message;
|
|
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;
|
|
255
254
|
}
|
|
256
|
-
|
|
255
|
+
return OperationNotFound;
|
|
256
|
+
}(__BaseException));
|
|
257
|
+
export { OperationNotFound };
|
|
257
258
|
export var NamespaceFilterName;
|
|
258
259
|
(function (NamespaceFilterName) {
|
|
259
260
|
NamespaceFilterName["TYPE"] = "TYPE";
|
|
@@ -270,274 +271,102 @@ export var ServiceFilterName;
|
|
|
270
271
|
(function (ServiceFilterName) {
|
|
271
272
|
ServiceFilterName["NAMESPACE_ID"] = "NAMESPACE_ID";
|
|
272
273
|
})(ServiceFilterName || (ServiceFilterName = {}));
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
283
|
-
this.Message = opts.Message;
|
|
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;
|
|
284
283
|
}
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
});
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
});
|
|
292
|
-
export
|
|
293
|
-
|
|
294
|
-
});
|
|
295
|
-
export
|
|
296
|
-
|
|
297
|
-
});
|
|
298
|
-
export
|
|
299
|
-
|
|
300
|
-
});
|
|
301
|
-
export
|
|
302
|
-
|
|
303
|
-
});
|
|
304
|
-
export
|
|
305
|
-
|
|
306
|
-
});
|
|
307
|
-
export
|
|
308
|
-
|
|
309
|
-
});
|
|
310
|
-
export
|
|
311
|
-
|
|
312
|
-
});
|
|
313
|
-
export
|
|
314
|
-
|
|
315
|
-
});
|
|
316
|
-
export
|
|
317
|
-
|
|
318
|
-
});
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
});
|
|
322
|
-
export
|
|
323
|
-
|
|
324
|
-
});
|
|
325
|
-
export
|
|
326
|
-
|
|
327
|
-
});
|
|
328
|
-
export
|
|
329
|
-
|
|
330
|
-
});
|
|
331
|
-
export
|
|
332
|
-
|
|
333
|
-
});
|
|
334
|
-
export
|
|
335
|
-
|
|
336
|
-
});
|
|
337
|
-
export
|
|
338
|
-
|
|
339
|
-
});
|
|
340
|
-
export
|
|
341
|
-
|
|
342
|
-
});
|
|
343
|
-
export
|
|
344
|
-
|
|
345
|
-
});
|
|
346
|
-
export
|
|
347
|
-
|
|
348
|
-
});
|
|
349
|
-
export
|
|
350
|
-
|
|
351
|
-
});
|
|
352
|
-
export
|
|
353
|
-
|
|
354
|
-
});
|
|
355
|
-
export
|
|
356
|
-
|
|
357
|
-
});
|
|
358
|
-
export
|
|
359
|
-
|
|
360
|
-
});
|
|
361
|
-
export
|
|
362
|
-
|
|
363
|
-
});
|
|
364
|
-
export
|
|
365
|
-
|
|
366
|
-
});
|
|
367
|
-
export
|
|
368
|
-
|
|
369
|
-
});
|
|
370
|
-
export
|
|
371
|
-
|
|
372
|
-
});
|
|
373
|
-
export
|
|
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
|
-
});
|
|
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)); };
|