@aws-sdk/client-servicediscovery 3.1075.0 → 3.1077.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/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultServiceDiscoveryHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateHttpNamespace$, CreatePrivateDnsNamespace$, CreatePublicDnsNamespace$, CreateService$, DeleteNamespace$, DeleteServiceAttributes$, DeleteService$, DeregisterInstance$, DiscoverInstances$, DiscoverInstancesRevision$, GetInstance$, GetInstancesHealthStatus$, GetNamespace$, GetOperation$, GetServiceAttributes$, GetService$, ListInstances$, ListNamespaces$, ListOperations$, ListServices$, ListTagsForResource$, RegisterInstance$, TagResource$, UntagResource$, UpdateHttpNamespace$, UpdateInstanceCustomHealthStatus$, UpdatePrivateDnsNamespace$, UpdatePublicDnsNamespace$, UpdateServiceAttributes$, UpdateService$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { ServiceDiscoveryServiceException } = require("./models/ServiceDiscoveryServiceException");
18
- exports.ServiceDiscoveryServiceException = ServiceDiscoveryServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultServiceDiscoveryHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "servicediscovery",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultServiceDiscoveryHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1298 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const m = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { "fn": f, "argv": [i, "name"] }, k = {}, l = [{ [m]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [h]],
80
+ [c, l],
81
+ ["aws.partition", l, d],
82
+ [e, [{ [m]: "UseFIPS" }, b]],
83
+ [e, [{ [m]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
86
+ [g, [j, "aws"]],
87
+ [g, [j, "aws-cn"]],
88
+ [g, [j, "aws-us-gov"]]
89
+ ],
90
+ results: [
91
+ [a],
92
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
93
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
94
+ [h, k],
95
+ ["https://servicediscovery-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
96
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
97
+ ["https://servicediscovery-fips.{Region}.{PartitionResult#dnsSuffix}", k],
98
+ [a, "FIPS is enabled but this partition does not support FIPS"],
99
+ ["https://servicediscovery.{Region}.amazonaws.com", k],
100
+ ["https://servicediscovery.{Region}.amazonaws.com.cn", k],
101
+ ["https://servicediscovery.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
102
+ [a, "DualStack is enabled but this partition does not support DualStack"],
103
+ ["https://servicediscovery.{Region}.{PartitionResult#dnsSuffix}", k],
104
+ [a, "Invalid Configuration: Missing Region"]
105
+ ]
106
+ };
107
+ const root = 2;
108
+ const r = 100_000_000;
109
+ const nodes = new Int32Array([
110
+ -1, 1, -1,
111
+ 0, 15, 3,
112
+ 1, 4, r + 13,
113
+ 2, 5, r + 13,
114
+ 3, 11, 6,
115
+ 4, 7, r + 12,
116
+ 5, 8, r + 11,
117
+ 7, r + 8, 9,
118
+ 8, r + 9, 10,
119
+ 9, r + 8, r + 10,
120
+ 4, 13, 12,
121
+ 6, r + 6, r + 7,
122
+ 5, 14, r + 5,
123
+ 6, r + 4, r + 5,
124
+ 3, r + 1, 16,
125
+ 4, r + 2, r + 3,
126
+ ]);
127
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
128
+
129
+ const cache = new EndpointCache({
130
+ size: 50,
131
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
132
+ });
133
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
134
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
135
+ endpointParams: endpointParams,
136
+ logger: context.logger,
137
+ }));
138
+ };
139
+ customEndpointFunctions.aws = awsEndpointFunctions;
140
+
141
+ class ServiceDiscoveryServiceException extends ServiceException {
142
+ constructor(options) {
143
+ super(options);
144
+ Object.setPrototypeOf(this, ServiceDiscoveryServiceException.prototype);
145
+ }
146
+ }
147
+
148
+ class DuplicateRequest extends ServiceDiscoveryServiceException {
149
+ name = "DuplicateRequest";
150
+ $fault = "client";
151
+ Message;
152
+ DuplicateOperationId;
153
+ constructor(opts) {
154
+ super({
155
+ name: "DuplicateRequest",
156
+ $fault: "client",
157
+ ...opts,
158
+ });
159
+ Object.setPrototypeOf(this, DuplicateRequest.prototype);
160
+ this.Message = opts.Message;
161
+ this.DuplicateOperationId = opts.DuplicateOperationId;
162
+ }
163
+ }
164
+ class InvalidInput extends ServiceDiscoveryServiceException {
165
+ name = "InvalidInput";
166
+ $fault = "client";
167
+ Message;
168
+ constructor(opts) {
169
+ super({
170
+ name: "InvalidInput",
171
+ $fault: "client",
172
+ ...opts,
173
+ });
174
+ Object.setPrototypeOf(this, InvalidInput.prototype);
175
+ this.Message = opts.Message;
176
+ }
177
+ }
178
+ class NamespaceAlreadyExists extends ServiceDiscoveryServiceException {
179
+ name = "NamespaceAlreadyExists";
180
+ $fault = "client";
181
+ Message;
182
+ CreatorRequestId;
183
+ NamespaceId;
184
+ constructor(opts) {
185
+ super({
186
+ name: "NamespaceAlreadyExists",
187
+ $fault: "client",
188
+ ...opts,
189
+ });
190
+ Object.setPrototypeOf(this, NamespaceAlreadyExists.prototype);
191
+ this.Message = opts.Message;
192
+ this.CreatorRequestId = opts.CreatorRequestId;
193
+ this.NamespaceId = opts.NamespaceId;
194
+ }
195
+ }
196
+ class ResourceLimitExceeded extends ServiceDiscoveryServiceException {
197
+ name = "ResourceLimitExceeded";
198
+ $fault = "client";
199
+ Message;
200
+ constructor(opts) {
201
+ super({
202
+ name: "ResourceLimitExceeded",
203
+ $fault: "client",
204
+ ...opts,
205
+ });
206
+ Object.setPrototypeOf(this, ResourceLimitExceeded.prototype);
207
+ this.Message = opts.Message;
208
+ }
209
+ }
210
+ class TooManyTagsException extends ServiceDiscoveryServiceException {
211
+ name = "TooManyTagsException";
212
+ $fault = "client";
213
+ Message;
214
+ ResourceName;
215
+ constructor(opts) {
216
+ super({
217
+ name: "TooManyTagsException",
218
+ $fault: "client",
219
+ ...opts,
220
+ });
221
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
222
+ this.Message = opts.Message;
223
+ this.ResourceName = opts.ResourceName;
224
+ }
225
+ }
226
+ class NamespaceNotFound extends ServiceDiscoveryServiceException {
227
+ name = "NamespaceNotFound";
228
+ $fault = "client";
229
+ Message;
230
+ constructor(opts) {
231
+ super({
232
+ name: "NamespaceNotFound",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ Object.setPrototypeOf(this, NamespaceNotFound.prototype);
237
+ this.Message = opts.Message;
238
+ }
239
+ }
240
+ class ServiceAlreadyExists extends ServiceDiscoveryServiceException {
241
+ name = "ServiceAlreadyExists";
242
+ $fault = "client";
243
+ Message;
244
+ CreatorRequestId;
245
+ ServiceId;
246
+ ServiceArn;
247
+ constructor(opts) {
248
+ super({
249
+ name: "ServiceAlreadyExists",
250
+ $fault: "client",
251
+ ...opts,
252
+ });
253
+ Object.setPrototypeOf(this, ServiceAlreadyExists.prototype);
254
+ this.Message = opts.Message;
255
+ this.CreatorRequestId = opts.CreatorRequestId;
256
+ this.ServiceId = opts.ServiceId;
257
+ this.ServiceArn = opts.ServiceArn;
258
+ }
259
+ }
260
+ class CustomHealthNotFound extends ServiceDiscoveryServiceException {
261
+ name = "CustomHealthNotFound";
262
+ $fault = "client";
263
+ Message;
264
+ constructor(opts) {
265
+ super({
266
+ name: "CustomHealthNotFound",
267
+ $fault: "client",
268
+ ...opts,
269
+ });
270
+ Object.setPrototypeOf(this, CustomHealthNotFound.prototype);
271
+ this.Message = opts.Message;
272
+ }
273
+ }
274
+ class ResourceInUse extends ServiceDiscoveryServiceException {
275
+ name = "ResourceInUse";
276
+ $fault = "client";
277
+ Message;
278
+ constructor(opts) {
279
+ super({
280
+ name: "ResourceInUse",
281
+ $fault: "client",
282
+ ...opts,
283
+ });
284
+ Object.setPrototypeOf(this, ResourceInUse.prototype);
285
+ this.Message = opts.Message;
286
+ }
287
+ }
288
+ class ServiceNotFound extends ServiceDiscoveryServiceException {
289
+ name = "ServiceNotFound";
290
+ $fault = "client";
291
+ Message;
292
+ constructor(opts) {
293
+ super({
294
+ name: "ServiceNotFound",
295
+ $fault: "client",
296
+ ...opts,
297
+ });
298
+ Object.setPrototypeOf(this, ServiceNotFound.prototype);
299
+ this.Message = opts.Message;
300
+ }
301
+ }
302
+ class InstanceNotFound extends ServiceDiscoveryServiceException {
303
+ name = "InstanceNotFound";
304
+ $fault = "client";
305
+ Message;
306
+ constructor(opts) {
307
+ super({
308
+ name: "InstanceNotFound",
309
+ $fault: "client",
310
+ ...opts,
311
+ });
312
+ Object.setPrototypeOf(this, InstanceNotFound.prototype);
313
+ this.Message = opts.Message;
314
+ }
315
+ }
316
+ class RequestLimitExceeded extends ServiceDiscoveryServiceException {
317
+ name = "RequestLimitExceeded";
318
+ $fault = "client";
319
+ Message;
320
+ constructor(opts) {
321
+ super({
322
+ name: "RequestLimitExceeded",
323
+ $fault: "client",
324
+ ...opts,
325
+ });
326
+ Object.setPrototypeOf(this, RequestLimitExceeded.prototype);
327
+ this.Message = opts.Message;
328
+ }
329
+ }
330
+ class OperationNotFound extends ServiceDiscoveryServiceException {
331
+ name = "OperationNotFound";
332
+ $fault = "client";
333
+ Message;
334
+ constructor(opts) {
335
+ super({
336
+ name: "OperationNotFound",
337
+ $fault: "client",
338
+ ...opts,
339
+ });
340
+ Object.setPrototypeOf(this, OperationNotFound.prototype);
341
+ this.Message = opts.Message;
342
+ }
343
+ }
344
+ class ResourceNotFoundException extends ServiceDiscoveryServiceException {
345
+ name = "ResourceNotFoundException";
346
+ $fault = "client";
347
+ Message;
348
+ constructor(opts) {
349
+ super({
350
+ name: "ResourceNotFoundException",
351
+ $fault: "client",
352
+ ...opts,
353
+ });
354
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
355
+ this.Message = opts.Message;
356
+ }
357
+ }
358
+ class ServiceAttributesLimitExceededException extends ServiceDiscoveryServiceException {
359
+ name = "ServiceAttributesLimitExceededException";
360
+ $fault = "client";
361
+ Message;
362
+ constructor(opts) {
363
+ super({
364
+ name: "ServiceAttributesLimitExceededException",
365
+ $fault: "client",
366
+ ...opts,
367
+ });
368
+ Object.setPrototypeOf(this, ServiceAttributesLimitExceededException.prototype);
369
+ this.Message = opts.Message;
370
+ }
371
+ }
372
+
373
+ const _A = "Attributes";
374
+ const _Ar = "Arn";
375
+ const _C = "Condition";
376
+ const _CBA = "CreatedByAccount";
377
+ const _CD = "CreateDate";
378
+ const _CHN = "CreateHttpNamespace";
379
+ const _CHNF = "CustomHealthNotFound";
380
+ const _CHNR = "CreateHttpNamespaceRequest";
381
+ const _CHNRr = "CreateHttpNamespaceResponse";
382
+ const _CPDN = "CreatePrivateDnsNamespace";
383
+ const _CPDNR = "CreatePrivateDnsNamespaceRequest";
384
+ const _CPDNRr = "CreatePrivateDnsNamespaceResponse";
385
+ const _CPDNRre = "CreatePublicDnsNamespaceRequest";
386
+ const _CPDNRrea = "CreatePublicDnsNamespaceResponse";
387
+ const _CPDNr = "CreatePublicDnsNamespace";
388
+ const _CRI = "CreatorRequestId";
389
+ const _CS = "CreateService";
390
+ const _CSR = "CreateServiceRequest";
391
+ const _CSRr = "CreateServiceResponse";
392
+ const _D = "Description";
393
+ const _DC = "DnsConfig";
394
+ const _DCC = "DnsConfigChange";
395
+ const _DI = "DeregisterInstance";
396
+ const _DIR = "DeregisterInstanceRequest";
397
+ const _DIRR = "DiscoverInstancesRevisionRequest";
398
+ const _DIRRi = "DiscoverInstancesRevisionResponse";
399
+ const _DIRe = "DeregisterInstanceResponse";
400
+ const _DIRi = "DiscoverInstancesRequest";
401
+ const _DIRis = "DiscoverInstancesResponse";
402
+ const _DIRisc = "DiscoverInstancesRevision";
403
+ const _DIi = "DiscoverInstances";
404
+ const _DN = "DeleteNamespace";
405
+ const _DNR = "DeleteNamespaceRequest";
406
+ const _DNRe = "DeleteNamespaceResponse";
407
+ const _DOI = "DuplicateOperationId";
408
+ const _DP = "DnsProperties";
409
+ const _DR = "DuplicateRequest";
410
+ const _DRL = "DnsRecordList";
411
+ const _DRn = "DnsRecords";
412
+ const _DRns = "DnsRecord";
413
+ const _DS = "DeleteService";
414
+ const _DSA = "DeleteServiceAttributes";
415
+ const _DSAR = "DeleteServiceAttributesRequest";
416
+ const _DSARe = "DeleteServiceAttributesResponse";
417
+ const _DSR = "DeleteServiceRequest";
418
+ const _DSRe = "DeleteServiceResponse";
419
+ const _EC = "ErrorCode";
420
+ const _EM = "ErrorMessage";
421
+ const _F = "Filters";
422
+ const _FT = "FailureThreshold";
423
+ const _FV = "FilterValues";
424
+ const _GI = "GetInstance";
425
+ const _GIHS = "GetInstancesHealthStatus";
426
+ const _GIHSR = "GetInstancesHealthStatusRequest";
427
+ const _GIHSRe = "GetInstancesHealthStatusResponse";
428
+ const _GIR = "GetInstanceRequest";
429
+ const _GIRe = "GetInstanceResponse";
430
+ const _GN = "GetNamespace";
431
+ const _GNR = "GetNamespaceRequest";
432
+ const _GNRe = "GetNamespaceResponse";
433
+ const _GO = "GetOperation";
434
+ const _GOR = "GetOperationRequest";
435
+ const _GORe = "GetOperationResponse";
436
+ const _GS = "GetService";
437
+ const _GSA = "GetServiceAttributes";
438
+ const _GSAR = "GetServiceAttributesRequest";
439
+ const _GSARe = "GetServiceAttributesResponse";
440
+ const _GSR = "GetServiceRequest";
441
+ const _GSRe = "GetServiceResponse";
442
+ const _HCC = "HealthCheckConfig";
443
+ const _HCCC = "HealthCheckCustomConfig";
444
+ const _HIS = "HttpInstanceSummary";
445
+ const _HISL = "HttpInstanceSummaryList";
446
+ const _HN = "HttpName";
447
+ const _HNC = "HttpNamespaceChange";
448
+ const _HP = "HttpProperties";
449
+ const _HS = "HealthStatus";
450
+ const _HZI = "HostedZoneId";
451
+ const _I = "Id";
452
+ const _IC = "InstanceCount";
453
+ const _II = "InvalidInput";
454
+ const _IIL = "InstanceIdList";
455
+ const _IIn = "InstanceId";
456
+ const _INF = "InstanceNotFound";
457
+ const _IR = "InstancesRevision";
458
+ const _IS = "InstanceSummary";
459
+ const _ISL = "InstanceSummaryList";
460
+ const _In = "Instances";
461
+ const _Ins = "Instance";
462
+ const _K = "Key";
463
+ const _LI = "ListInstances";
464
+ const _LIR = "ListInstancesRequest";
465
+ const _LIRi = "ListInstancesResponse";
466
+ const _LN = "ListNamespaces";
467
+ const _LNR = "ListNamespacesRequest";
468
+ const _LNRi = "ListNamespacesResponse";
469
+ const _LO = "ListOperations";
470
+ const _LOR = "ListOperationsRequest";
471
+ const _LORi = "ListOperationsResponse";
472
+ const _LS = "ListServices";
473
+ const _LSR = "ListServicesRequest";
474
+ const _LSRi = "ListServicesResponse";
475
+ const _LTFR = "ListTagsForResource";
476
+ const _LTFRR = "ListTagsForResourceRequest";
477
+ const _LTFRRi = "ListTagsForResourceResponse";
478
+ const _M = "Message";
479
+ const _MR = "MaxResults";
480
+ const _N = "Name";
481
+ const _NAE = "NamespaceAlreadyExists";
482
+ const _NF = "NamespaceFilter";
483
+ const _NFa = "NamespaceFilters";
484
+ const _NI = "NamespaceId";
485
+ const _NN = "NamespaceName";
486
+ const _NNF = "NamespaceNotFound";
487
+ const _NP = "NamespaceProperties";
488
+ const _NS = "NamespaceSummary";
489
+ const _NSL = "NamespaceSummariesList";
490
+ const _NT = "NextToken";
491
+ const _Na = "Namespace";
492
+ const _Nam = "Namespaces";
493
+ const _O = "Operation";
494
+ const _OA = "OwnerAccount";
495
+ const _OF = "OperationFilter";
496
+ const _OFp = "OperationFilters";
497
+ const _OI = "OperationId";
498
+ const _ONF = "OperationNotFound";
499
+ const _OP = "OptionalParameters";
500
+ const _OS = "OperationSummary";
501
+ const _OSL = "OperationSummaryList";
502
+ const _Op = "Operations";
503
+ const _P = "Properties";
504
+ const _PDNC = "PrivateDnsNamespaceChange";
505
+ const _PDNCu = "PublicDnsNamespaceChange";
506
+ const _PDNP = "PrivateDnsNamespaceProperties";
507
+ const _PDNPC = "PrivateDnsNamespacePropertiesChange";
508
+ const _PDNPCu = "PublicDnsNamespacePropertiesChange";
509
+ const _PDNPu = "PublicDnsNamespaceProperties";
510
+ const _PDPM = "PrivateDnsPropertiesMutable";
511
+ const _PDPMC = "PrivateDnsPropertiesMutableChange";
512
+ const _PDPMCu = "PublicDnsPropertiesMutableChange";
513
+ const _PDPMu = "PublicDnsPropertiesMutable";
514
+ const _QP = "QueryParameters";
515
+ const _RARN = "ResourceARN";
516
+ const _RI = "RegisterInstance";
517
+ const _RIR = "RegisterInstanceRequest";
518
+ const _RIRe = "RegisterInstanceResponse";
519
+ const _RIU = "ResourceInUse";
520
+ const _RLE = "RequestLimitExceeded";
521
+ const _RLEe = "ResourceLimitExceeded";
522
+ const _RN = "ResourceName";
523
+ const _RNFE = "ResourceNotFoundException";
524
+ const _RO = "ResourceOwner";
525
+ const _RP = "RoutingPolicy";
526
+ const _RPe = "ResourcePath";
527
+ const _S = "Service";
528
+ const _SA = "ServiceArn";
529
+ const _SAE = "ServiceAlreadyExists";
530
+ const _SALEE = "ServiceAttributesLimitExceededException";
531
+ const _SAe = "ServiceAttributes";
532
+ const _SC = "ServiceCount";
533
+ const _SCe = "ServiceChange";
534
+ const _SF = "ServiceFilter";
535
+ const _SFe = "ServiceFilters";
536
+ const _SI = "ServiceId";
537
+ const _SN = "ServiceName";
538
+ const _SNF = "ServiceNotFound";
539
+ const _SOA = "SOA";
540
+ const _SOAC = "SOAChange";
541
+ const _SS = "ServiceSummary";
542
+ const _SSL = "ServiceSummariesList";
543
+ const _Se = "Services";
544
+ const _St = "Status";
545
+ const _T = "Tags";
546
+ const _TK = "TagKeys";
547
+ const _TL = "TagList";
548
+ const _TMTE = "TooManyTagsException";
549
+ const _TR = "TagResource";
550
+ const _TRR = "TagResourceRequest";
551
+ const _TRRa = "TagResourceResponse";
552
+ const _TTL = "TTL";
553
+ const _Ta = "Targets";
554
+ const _Tag = "Tag";
555
+ const _Ty = "Type";
556
+ const _UD = "UpdateDate";
557
+ const _UHN = "UpdateHttpNamespace";
558
+ const _UHNR = "UpdateHttpNamespaceRequest";
559
+ const _UHNRp = "UpdateHttpNamespaceResponse";
560
+ const _UICHS = "UpdateInstanceCustomHealthStatus";
561
+ const _UICHSR = "UpdateInstanceCustomHealthStatusRequest";
562
+ const _UPDN = "UpdatePrivateDnsNamespace";
563
+ const _UPDNR = "UpdatePrivateDnsNamespaceRequest";
564
+ const _UPDNRp = "UpdatePrivateDnsNamespaceResponse";
565
+ const _UPDNRpd = "UpdatePublicDnsNamespaceRequest";
566
+ const _UPDNRpda = "UpdatePublicDnsNamespaceResponse";
567
+ const _UPDNp = "UpdatePublicDnsNamespace";
568
+ const _UR = "UntagResource";
569
+ const _URI = "UpdaterRequestId";
570
+ const _URR = "UntagResourceRequest";
571
+ const _URRn = "UntagResourceResponse";
572
+ const _US = "UpdateService";
573
+ const _USA = "UpdateServiceAttributes";
574
+ const _USAR = "UpdateServiceAttributesRequest";
575
+ const _USARp = "UpdateServiceAttributesResponse";
576
+ const _USR = "UpdateServiceRequest";
577
+ const _USRp = "UpdateServiceResponse";
578
+ const _V = "Vpc";
579
+ const _Va = "Values";
580
+ const _Val = "Value";
581
+ const _c = "client";
582
+ const _e = "error";
583
+ const _en = "endpoint";
584
+ const _hE = "httpError";
585
+ const _i = "item";
586
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.servicediscovery";
587
+ const _xN = "xmlName";
588
+ const n0 = "com.amazonaws.servicediscovery";
589
+ const _s_registry = TypeRegistry.for(_s);
590
+ var ServiceDiscoveryServiceException$ = [-3, _s, "ServiceDiscoveryServiceException", 0, [], []];
591
+ _s_registry.registerError(ServiceDiscoveryServiceException$, ServiceDiscoveryServiceException);
592
+ const n0_registry = TypeRegistry.for(n0);
593
+ var CustomHealthNotFound$ = [-3, n0, _CHNF,
594
+ { [_e]: _c, [_hE]: 404 },
595
+ [_M],
596
+ [0]
597
+ ];
598
+ n0_registry.registerError(CustomHealthNotFound$, CustomHealthNotFound);
599
+ var DuplicateRequest$ = [-3, n0, _DR,
600
+ { [_e]: _c, [_hE]: 409 },
601
+ [_M, _DOI],
602
+ [0, 0]
603
+ ];
604
+ n0_registry.registerError(DuplicateRequest$, DuplicateRequest);
605
+ var InstanceNotFound$ = [-3, n0, _INF,
606
+ { [_e]: _c, [_hE]: 404 },
607
+ [_M],
608
+ [0]
609
+ ];
610
+ n0_registry.registerError(InstanceNotFound$, InstanceNotFound);
611
+ var InvalidInput$ = [-3, n0, _II,
612
+ { [_e]: _c, [_hE]: 400 },
613
+ [_M],
614
+ [0]
615
+ ];
616
+ n0_registry.registerError(InvalidInput$, InvalidInput);
617
+ var NamespaceAlreadyExists$ = [-3, n0, _NAE,
618
+ { [_e]: _c, [_hE]: 400 },
619
+ [_M, _CRI, _NI],
620
+ [0, 0, 0]
621
+ ];
622
+ n0_registry.registerError(NamespaceAlreadyExists$, NamespaceAlreadyExists);
623
+ var NamespaceNotFound$ = [-3, n0, _NNF,
624
+ { [_e]: _c, [_hE]: 404 },
625
+ [_M],
626
+ [0]
627
+ ];
628
+ n0_registry.registerError(NamespaceNotFound$, NamespaceNotFound);
629
+ var OperationNotFound$ = [-3, n0, _ONF,
630
+ { [_e]: _c, [_hE]: 404 },
631
+ [_M],
632
+ [0]
633
+ ];
634
+ n0_registry.registerError(OperationNotFound$, OperationNotFound);
635
+ var RequestLimitExceeded$ = [-3, n0, _RLE,
636
+ { [_e]: _c, [_hE]: 429 },
637
+ [_M],
638
+ [0]
639
+ ];
640
+ n0_registry.registerError(RequestLimitExceeded$, RequestLimitExceeded);
641
+ var ResourceInUse$ = [-3, n0, _RIU,
642
+ { [_e]: _c, [_hE]: 409 },
643
+ [_M],
644
+ [0]
645
+ ];
646
+ n0_registry.registerError(ResourceInUse$, ResourceInUse);
647
+ var ResourceLimitExceeded$ = [-3, n0, _RLEe,
648
+ { [_e]: _c, [_hE]: 400 },
649
+ [_M],
650
+ [0]
651
+ ];
652
+ n0_registry.registerError(ResourceLimitExceeded$, ResourceLimitExceeded);
653
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
654
+ { [_e]: _c, [_hE]: 404 },
655
+ [_M],
656
+ [0]
657
+ ];
658
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
659
+ var ServiceAlreadyExists$ = [-3, n0, _SAE,
660
+ { [_e]: _c, [_hE]: 400 },
661
+ [_M, _CRI, _SI, _SA],
662
+ [0, 0, 0, 0]
663
+ ];
664
+ n0_registry.registerError(ServiceAlreadyExists$, ServiceAlreadyExists);
665
+ var ServiceAttributesLimitExceededException$ = [-3, n0, _SALEE,
666
+ { [_e]: _c, [_hE]: 400 },
667
+ [_M],
668
+ [0]
669
+ ];
670
+ n0_registry.registerError(ServiceAttributesLimitExceededException$, ServiceAttributesLimitExceededException);
671
+ var ServiceNotFound$ = [-3, n0, _SNF,
672
+ { [_e]: _c, [_hE]: 404 },
673
+ [_M],
674
+ [0]
675
+ ];
676
+ n0_registry.registerError(ServiceNotFound$, ServiceNotFound);
677
+ var TooManyTagsException$ = [-3, n0, _TMTE,
678
+ { [_e]: _c, [_hE]: 400 },
679
+ [_M, _RN],
680
+ [0, 0]
681
+ ];
682
+ n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
683
+ const errorTypeRegistries = [
684
+ _s_registry,
685
+ n0_registry,
686
+ ];
687
+ var CreateHttpNamespaceRequest$ = [3, n0, _CHNR,
688
+ 0,
689
+ [_N, _CRI, _D, _T],
690
+ [0, [0, 4], 0, () => TagList], 1
691
+ ];
692
+ var CreateHttpNamespaceResponse$ = [3, n0, _CHNRr,
693
+ 0,
694
+ [_OI],
695
+ [0]
696
+ ];
697
+ var CreatePrivateDnsNamespaceRequest$ = [3, n0, _CPDNR,
698
+ 0,
699
+ [_N, _V, _CRI, _D, _T, _P],
700
+ [0, 0, [0, 4], 0, () => TagList, () => PrivateDnsNamespaceProperties$], 2
701
+ ];
702
+ var CreatePrivateDnsNamespaceResponse$ = [3, n0, _CPDNRr,
703
+ 0,
704
+ [_OI],
705
+ [0]
706
+ ];
707
+ var CreatePublicDnsNamespaceRequest$ = [3, n0, _CPDNRre,
708
+ 0,
709
+ [_N, _CRI, _D, _T, _P],
710
+ [0, [0, 4], 0, () => TagList, () => PublicDnsNamespaceProperties$], 1
711
+ ];
712
+ var CreatePublicDnsNamespaceResponse$ = [3, n0, _CPDNRrea,
713
+ 0,
714
+ [_OI],
715
+ [0]
716
+ ];
717
+ var CreateServiceRequest$ = [3, n0, _CSR,
718
+ 0,
719
+ [_N, _NI, _CRI, _D, _DC, _HCC, _HCCC, _T, _Ty],
720
+ [0, 0, [0, 4], 0, () => DnsConfig$, () => HealthCheckConfig$, () => HealthCheckCustomConfig$, () => TagList, 0], 1
721
+ ];
722
+ var CreateServiceResponse$ = [3, n0, _CSRr,
723
+ 0,
724
+ [_S],
725
+ [() => Service$]
726
+ ];
727
+ var DeleteNamespaceRequest$ = [3, n0, _DNR,
728
+ 0,
729
+ [_I],
730
+ [0], 1
731
+ ];
732
+ var DeleteNamespaceResponse$ = [3, n0, _DNRe,
733
+ 0,
734
+ [_OI],
735
+ [0]
736
+ ];
737
+ var DeleteServiceAttributesRequest$ = [3, n0, _DSAR,
738
+ 0,
739
+ [_SI, _A],
740
+ [0, 64 | 0], 2
741
+ ];
742
+ var DeleteServiceAttributesResponse$ = [3, n0, _DSARe,
743
+ 0,
744
+ [],
745
+ []
746
+ ];
747
+ var DeleteServiceRequest$ = [3, n0, _DSR,
748
+ 0,
749
+ [_I],
750
+ [0], 1
751
+ ];
752
+ var DeleteServiceResponse$ = [3, n0, _DSRe,
753
+ 0,
754
+ [],
755
+ []
756
+ ];
757
+ var DeregisterInstanceRequest$ = [3, n0, _DIR,
758
+ 0,
759
+ [_SI, _IIn],
760
+ [0, 0], 2
761
+ ];
762
+ var DeregisterInstanceResponse$ = [3, n0, _DIRe,
763
+ 0,
764
+ [_OI],
765
+ [0]
766
+ ];
767
+ var DiscoverInstancesRequest$ = [3, n0, _DIRi,
768
+ 0,
769
+ [_NN, _SN, _MR, _QP, _OP, _HS, _OA],
770
+ [0, 0, 1, 128 | 0, 128 | 0, 0, 0], 2
771
+ ];
772
+ var DiscoverInstancesResponse$ = [3, n0, _DIRis,
773
+ 0,
774
+ [_In, _IR],
775
+ [() => HttpInstanceSummaryList, 1]
776
+ ];
777
+ var DiscoverInstancesRevisionRequest$ = [3, n0, _DIRR,
778
+ 0,
779
+ [_NN, _SN, _OA],
780
+ [0, 0, 0], 2
781
+ ];
782
+ var DiscoverInstancesRevisionResponse$ = [3, n0, _DIRRi,
783
+ 0,
784
+ [_IR],
785
+ [1]
786
+ ];
787
+ var DnsConfig$ = [3, n0, _DC,
788
+ 0,
789
+ [_DRn, _NI, _RP],
790
+ [() => DnsRecordList, 0, 0], 1
791
+ ];
792
+ var DnsConfigChange$ = [3, n0, _DCC,
793
+ 0,
794
+ [_DRn],
795
+ [() => DnsRecordList], 1
796
+ ];
797
+ var DnsProperties$ = [3, n0, _DP,
798
+ 0,
799
+ [_HZI, _SOA],
800
+ [0, () => SOA$]
801
+ ];
802
+ var DnsRecord$ = [3, n0, _DRns,
803
+ 0,
804
+ [_Ty, _TTL],
805
+ [0, 1], 2
806
+ ];
807
+ var GetInstanceRequest$ = [3, n0, _GIR,
808
+ 0,
809
+ [_SI, _IIn],
810
+ [0, 0], 2
811
+ ];
812
+ var GetInstanceResponse$ = [3, n0, _GIRe,
813
+ 0,
814
+ [_RO, _Ins],
815
+ [0, () => Instance$]
816
+ ];
817
+ var GetInstancesHealthStatusRequest$ = [3, n0, _GIHSR,
818
+ 0,
819
+ [_SI, _In, _MR, _NT],
820
+ [0, [() => InstanceIdList, 0], 1, 0], 1
821
+ ];
822
+ var GetInstancesHealthStatusResponse$ = [3, n0, _GIHSRe,
823
+ 0,
824
+ [_St, _NT],
825
+ [128 | 0, 0]
826
+ ];
827
+ var GetNamespaceRequest$ = [3, n0, _GNR,
828
+ 0,
829
+ [_I],
830
+ [0], 1
831
+ ];
832
+ var GetNamespaceResponse$ = [3, n0, _GNRe,
833
+ 0,
834
+ [_Na],
835
+ [() => Namespace$]
836
+ ];
837
+ var GetOperationRequest$ = [3, n0, _GOR,
838
+ 0,
839
+ [_OI, _OA],
840
+ [0, 0], 1
841
+ ];
842
+ var GetOperationResponse$ = [3, n0, _GORe,
843
+ 0,
844
+ [_O],
845
+ [() => Operation$]
846
+ ];
847
+ var GetServiceAttributesRequest$ = [3, n0, _GSAR,
848
+ 0,
849
+ [_SI],
850
+ [0], 1
851
+ ];
852
+ var GetServiceAttributesResponse$ = [3, n0, _GSARe,
853
+ 0,
854
+ [_SAe],
855
+ [() => ServiceAttributes$]
856
+ ];
857
+ var GetServiceRequest$ = [3, n0, _GSR,
858
+ 0,
859
+ [_I],
860
+ [0], 1
861
+ ];
862
+ var GetServiceResponse$ = [3, n0, _GSRe,
863
+ 0,
864
+ [_S],
865
+ [() => Service$]
866
+ ];
867
+ var HealthCheckConfig$ = [3, n0, _HCC,
868
+ 0,
869
+ [_Ty, _RPe, _FT],
870
+ [0, 0, 1], 1
871
+ ];
872
+ var HealthCheckCustomConfig$ = [3, n0, _HCCC,
873
+ 0,
874
+ [_FT],
875
+ [1]
876
+ ];
877
+ var HttpInstanceSummary$ = [3, n0, _HIS,
878
+ 0,
879
+ [_IIn, _NN, _SN, _HS, _A],
880
+ [0, 0, 0, 0, 128 | 0]
881
+ ];
882
+ var HttpNamespaceChange$ = [3, n0, _HNC,
883
+ 0,
884
+ [_D],
885
+ [0], 1
886
+ ];
887
+ var HttpProperties$ = [3, n0, _HP,
888
+ 0,
889
+ [_HN],
890
+ [0]
891
+ ];
892
+ var Instance$ = [3, n0, _Ins,
893
+ 0,
894
+ [_I, _CRI, _A, _CBA],
895
+ [0, 0, 128 | 0, 0], 1
896
+ ];
897
+ var InstanceSummary$ = [3, n0, _IS,
898
+ 0,
899
+ [_I, _A, _CBA],
900
+ [0, 128 | 0, 0]
901
+ ];
902
+ var ListInstancesRequest$ = [3, n0, _LIR,
903
+ 0,
904
+ [_SI, _NT, _MR],
905
+ [0, 0, 1], 1
906
+ ];
907
+ var ListInstancesResponse$ = [3, n0, _LIRi,
908
+ 0,
909
+ [_RO, _In, _NT],
910
+ [0, [() => InstanceSummaryList, 0], 0]
911
+ ];
912
+ var ListNamespacesRequest$ = [3, n0, _LNR,
913
+ 0,
914
+ [_NT, _MR, _F],
915
+ [0, 1, [() => NamespaceFilters, 0]]
916
+ ];
917
+ var ListNamespacesResponse$ = [3, n0, _LNRi,
918
+ 0,
919
+ [_Nam, _NT],
920
+ [() => NamespaceSummariesList, 0]
921
+ ];
922
+ var ListOperationsRequest$ = [3, n0, _LOR,
923
+ 0,
924
+ [_NT, _MR, _F],
925
+ [0, 1, [() => OperationFilters, 0]]
926
+ ];
927
+ var ListOperationsResponse$ = [3, n0, _LORi,
928
+ 0,
929
+ [_Op, _NT],
930
+ [[() => OperationSummaryList, 0], 0]
931
+ ];
932
+ var ListServicesRequest$ = [3, n0, _LSR,
933
+ 0,
934
+ [_NT, _MR, _F],
935
+ [0, 1, [() => ServiceFilters, 0]]
936
+ ];
937
+ var ListServicesResponse$ = [3, n0, _LSRi,
938
+ 0,
939
+ [_Se, _NT],
940
+ [() => ServiceSummariesList, 0]
941
+ ];
942
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
943
+ 0,
944
+ [_RARN],
945
+ [0], 1
946
+ ];
947
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
948
+ 0,
949
+ [_T],
950
+ [() => TagList]
951
+ ];
952
+ var Namespace$ = [3, n0, _Na,
953
+ 0,
954
+ [_I, _Ar, _RO, _N, _Ty, _D, _SC, _P, _CD, _CRI],
955
+ [0, 0, 0, 0, 0, 0, 1, () => NamespaceProperties$, 4, 0]
956
+ ];
957
+ var NamespaceFilter$ = [3, n0, _NF,
958
+ 0,
959
+ [_N, _Va, _C],
960
+ [0, [() => FilterValues, 0], 0], 2
961
+ ];
962
+ var NamespaceProperties$ = [3, n0, _NP,
963
+ 0,
964
+ [_DP, _HP],
965
+ [() => DnsProperties$, () => HttpProperties$]
966
+ ];
967
+ var NamespaceSummary$ = [3, n0, _NS,
968
+ 0,
969
+ [_I, _Ar, _RO, _N, _Ty, _D, _SC, _P, _CD],
970
+ [0, 0, 0, 0, 0, 0, 1, () => NamespaceProperties$, 4]
971
+ ];
972
+ var Operation$ = [3, n0, _O,
973
+ 0,
974
+ [_I, _OA, _Ty, _St, _EM, _EC, _CD, _UD, _Ta],
975
+ [0, 0, 0, 0, 0, 0, 4, 4, 128 | 0]
976
+ ];
977
+ var OperationFilter$ = [3, n0, _OF,
978
+ 0,
979
+ [_N, _Va, _C],
980
+ [0, [() => FilterValues, 0], 0], 2
981
+ ];
982
+ var OperationSummary$ = [3, n0, _OS,
983
+ 0,
984
+ [_I, _St],
985
+ [0, 0]
986
+ ];
987
+ var PrivateDnsNamespaceChange$ = [3, n0, _PDNC,
988
+ 0,
989
+ [_D, _P],
990
+ [0, () => PrivateDnsNamespacePropertiesChange$]
991
+ ];
992
+ var PrivateDnsNamespaceProperties$ = [3, n0, _PDNP,
993
+ 0,
994
+ [_DP],
995
+ [() => PrivateDnsPropertiesMutable$], 1
996
+ ];
997
+ var PrivateDnsNamespacePropertiesChange$ = [3, n0, _PDNPC,
998
+ 0,
999
+ [_DP],
1000
+ [() => PrivateDnsPropertiesMutableChange$], 1
1001
+ ];
1002
+ var PrivateDnsPropertiesMutable$ = [3, n0, _PDPM,
1003
+ 0,
1004
+ [_SOA],
1005
+ [() => SOA$], 1
1006
+ ];
1007
+ var PrivateDnsPropertiesMutableChange$ = [3, n0, _PDPMC,
1008
+ 0,
1009
+ [_SOA],
1010
+ [() => SOAChange$], 1
1011
+ ];
1012
+ var PublicDnsNamespaceChange$ = [3, n0, _PDNCu,
1013
+ 0,
1014
+ [_D, _P],
1015
+ [0, () => PublicDnsNamespacePropertiesChange$]
1016
+ ];
1017
+ var PublicDnsNamespaceProperties$ = [3, n0, _PDNPu,
1018
+ 0,
1019
+ [_DP],
1020
+ [() => PublicDnsPropertiesMutable$], 1
1021
+ ];
1022
+ var PublicDnsNamespacePropertiesChange$ = [3, n0, _PDNPCu,
1023
+ 0,
1024
+ [_DP],
1025
+ [() => PublicDnsPropertiesMutableChange$], 1
1026
+ ];
1027
+ var PublicDnsPropertiesMutable$ = [3, n0, _PDPMu,
1028
+ 0,
1029
+ [_SOA],
1030
+ [() => SOA$], 1
1031
+ ];
1032
+ var PublicDnsPropertiesMutableChange$ = [3, n0, _PDPMCu,
1033
+ 0,
1034
+ [_SOA],
1035
+ [() => SOAChange$], 1
1036
+ ];
1037
+ var RegisterInstanceRequest$ = [3, n0, _RIR,
1038
+ 0,
1039
+ [_SI, _IIn, _A, _CRI],
1040
+ [0, 0, 128 | 0, [0, 4]], 3
1041
+ ];
1042
+ var RegisterInstanceResponse$ = [3, n0, _RIRe,
1043
+ 0,
1044
+ [_OI],
1045
+ [0]
1046
+ ];
1047
+ var Service$ = [3, n0, _S,
1048
+ 0,
1049
+ [_I, _Ar, _RO, _N, _NI, _D, _IC, _DC, _Ty, _HCC, _HCCC, _CD, _CRI, _CBA],
1050
+ [0, 0, 0, 0, 0, 0, 1, () => DnsConfig$, 0, () => HealthCheckConfig$, () => HealthCheckCustomConfig$, 4, 0, 0]
1051
+ ];
1052
+ var ServiceAttributes$ = [3, n0, _SAe,
1053
+ 0,
1054
+ [_SA, _RO, _A],
1055
+ [0, 0, 128 | 0]
1056
+ ];
1057
+ var ServiceChange$ = [3, n0, _SCe,
1058
+ 0,
1059
+ [_D, _DC, _HCC],
1060
+ [0, () => DnsConfigChange$, () => HealthCheckConfig$]
1061
+ ];
1062
+ var ServiceFilter$ = [3, n0, _SF,
1063
+ 0,
1064
+ [_N, _Va, _C],
1065
+ [0, [() => FilterValues, 0], 0], 2
1066
+ ];
1067
+ var ServiceSummary$ = [3, n0, _SS,
1068
+ 0,
1069
+ [_I, _Ar, _RO, _N, _Ty, _D, _IC, _DC, _HCC, _HCCC, _CD, _CBA],
1070
+ [0, 0, 0, 0, 0, 0, 1, () => DnsConfig$, () => HealthCheckConfig$, () => HealthCheckCustomConfig$, 4, 0]
1071
+ ];
1072
+ var SOA$ = [3, n0, _SOA,
1073
+ 0,
1074
+ [_TTL],
1075
+ [1], 1
1076
+ ];
1077
+ var SOAChange$ = [3, n0, _SOAC,
1078
+ 0,
1079
+ [_TTL],
1080
+ [1], 1
1081
+ ];
1082
+ var Tag$ = [3, n0, _Tag,
1083
+ 0,
1084
+ [_K, _Val],
1085
+ [0, 0], 2
1086
+ ];
1087
+ var TagResourceRequest$ = [3, n0, _TRR,
1088
+ 0,
1089
+ [_RARN, _T],
1090
+ [0, () => TagList], 2
1091
+ ];
1092
+ var TagResourceResponse$ = [3, n0, _TRRa,
1093
+ 0,
1094
+ [],
1095
+ []
1096
+ ];
1097
+ var UntagResourceRequest$ = [3, n0, _URR,
1098
+ 0,
1099
+ [_RARN, _TK],
1100
+ [0, 64 | 0], 2
1101
+ ];
1102
+ var UntagResourceResponse$ = [3, n0, _URRn,
1103
+ 0,
1104
+ [],
1105
+ []
1106
+ ];
1107
+ var UpdateHttpNamespaceRequest$ = [3, n0, _UHNR,
1108
+ 0,
1109
+ [_I, _Na, _URI],
1110
+ [0, () => HttpNamespaceChange$, [0, 4]], 2
1111
+ ];
1112
+ var UpdateHttpNamespaceResponse$ = [3, n0, _UHNRp,
1113
+ 0,
1114
+ [_OI],
1115
+ [0]
1116
+ ];
1117
+ var UpdateInstanceCustomHealthStatusRequest$ = [3, n0, _UICHSR,
1118
+ 0,
1119
+ [_SI, _IIn, _St],
1120
+ [0, 0, 0], 3
1121
+ ];
1122
+ var UpdatePrivateDnsNamespaceRequest$ = [3, n0, _UPDNR,
1123
+ 0,
1124
+ [_I, _Na, _URI],
1125
+ [0, () => PrivateDnsNamespaceChange$, [0, 4]], 2
1126
+ ];
1127
+ var UpdatePrivateDnsNamespaceResponse$ = [3, n0, _UPDNRp,
1128
+ 0,
1129
+ [_OI],
1130
+ [0]
1131
+ ];
1132
+ var UpdatePublicDnsNamespaceRequest$ = [3, n0, _UPDNRpd,
1133
+ 0,
1134
+ [_I, _Na, _URI],
1135
+ [0, () => PublicDnsNamespaceChange$, [0, 4]], 2
1136
+ ];
1137
+ var UpdatePublicDnsNamespaceResponse$ = [3, n0, _UPDNRpda,
1138
+ 0,
1139
+ [_OI],
1140
+ [0]
1141
+ ];
1142
+ var UpdateServiceAttributesRequest$ = [3, n0, _USAR,
1143
+ 0,
1144
+ [_SI, _A],
1145
+ [0, 128 | 0], 2
1146
+ ];
1147
+ var UpdateServiceAttributesResponse$ = [3, n0, _USARp,
1148
+ 0,
1149
+ [],
1150
+ []
1151
+ ];
1152
+ var UpdateServiceRequest$ = [3, n0, _USR,
1153
+ 0,
1154
+ [_I, _S],
1155
+ [0, () => ServiceChange$], 2
1156
+ ];
1157
+ var UpdateServiceResponse$ = [3, n0, _USRp,
1158
+ 0,
1159
+ [_OI],
1160
+ [0]
1161
+ ];
1162
+ var __Unit = "unit";
1163
+ var DnsRecordList = [1, n0, _DRL,
1164
+ 0, () => DnsRecord$
1165
+ ];
1166
+ var FilterValues = [1, n0, _FV,
1167
+ 0, [0,
1168
+ { [_xN]: _i }]
1169
+ ];
1170
+ var HttpInstanceSummaryList = [1, n0, _HISL,
1171
+ 0, () => HttpInstanceSummary$
1172
+ ];
1173
+ var InstanceIdList = [1, n0, _IIL,
1174
+ 0, [0,
1175
+ { [_xN]: _IIn }]
1176
+ ];
1177
+ var InstanceSummaryList = [1, n0, _ISL,
1178
+ 0, [() => InstanceSummary$,
1179
+ { [_xN]: _IS }]
1180
+ ];
1181
+ var NamespaceFilters = [1, n0, _NFa,
1182
+ 0, [() => NamespaceFilter$,
1183
+ { [_xN]: _i }]
1184
+ ];
1185
+ var NamespaceSummariesList = [1, n0, _NSL,
1186
+ 0, () => NamespaceSummary$
1187
+ ];
1188
+ var OperationFilters = [1, n0, _OFp,
1189
+ 0, [() => OperationFilter$,
1190
+ { [_xN]: _i }]
1191
+ ];
1192
+ var OperationSummaryList = [1, n0, _OSL,
1193
+ 0, [() => OperationSummary$,
1194
+ { [_xN]: _OS }]
1195
+ ];
1196
+ var ServiceFilters = [1, n0, _SFe,
1197
+ 0, [() => ServiceFilter$,
1198
+ { [_xN]: _i }]
1199
+ ];
1200
+ var ServiceSummariesList = [1, n0, _SSL,
1201
+ 0, () => ServiceSummary$
1202
+ ];
1203
+ var TagList = [1, n0, _TL,
1204
+ 0, () => Tag$
1205
+ ];
1206
+ var CreateHttpNamespace$ = [9, n0, _CHN,
1207
+ 0, () => CreateHttpNamespaceRequest$, () => CreateHttpNamespaceResponse$
1208
+ ];
1209
+ var CreatePrivateDnsNamespace$ = [9, n0, _CPDN,
1210
+ 0, () => CreatePrivateDnsNamespaceRequest$, () => CreatePrivateDnsNamespaceResponse$
1211
+ ];
1212
+ var CreatePublicDnsNamespace$ = [9, n0, _CPDNr,
1213
+ 0, () => CreatePublicDnsNamespaceRequest$, () => CreatePublicDnsNamespaceResponse$
1214
+ ];
1215
+ var CreateService$ = [9, n0, _CS,
1216
+ 0, () => CreateServiceRequest$, () => CreateServiceResponse$
1217
+ ];
1218
+ var DeleteNamespace$ = [9, n0, _DN,
1219
+ 0, () => DeleteNamespaceRequest$, () => DeleteNamespaceResponse$
1220
+ ];
1221
+ var DeleteService$ = [9, n0, _DS,
1222
+ 0, () => DeleteServiceRequest$, () => DeleteServiceResponse$
1223
+ ];
1224
+ var DeleteServiceAttributes$ = [9, n0, _DSA,
1225
+ 0, () => DeleteServiceAttributesRequest$, () => DeleteServiceAttributesResponse$
1226
+ ];
1227
+ var DeregisterInstance$ = [9, n0, _DI,
1228
+ 0, () => DeregisterInstanceRequest$, () => DeregisterInstanceResponse$
1229
+ ];
1230
+ var DiscoverInstances$ = [9, n0, _DIi,
1231
+ { [_en]: ["data-"] }, () => DiscoverInstancesRequest$, () => DiscoverInstancesResponse$
1232
+ ];
1233
+ var DiscoverInstancesRevision$ = [9, n0, _DIRisc,
1234
+ { [_en]: ["data-"] }, () => DiscoverInstancesRevisionRequest$, () => DiscoverInstancesRevisionResponse$
1235
+ ];
1236
+ var GetInstance$ = [9, n0, _GI,
1237
+ 0, () => GetInstanceRequest$, () => GetInstanceResponse$
1238
+ ];
1239
+ var GetInstancesHealthStatus$ = [9, n0, _GIHS,
1240
+ 0, () => GetInstancesHealthStatusRequest$, () => GetInstancesHealthStatusResponse$
1241
+ ];
1242
+ var GetNamespace$ = [9, n0, _GN,
1243
+ 0, () => GetNamespaceRequest$, () => GetNamespaceResponse$
1244
+ ];
1245
+ var GetOperation$ = [9, n0, _GO,
1246
+ 0, () => GetOperationRequest$, () => GetOperationResponse$
1247
+ ];
1248
+ var GetService$ = [9, n0, _GS,
1249
+ 0, () => GetServiceRequest$, () => GetServiceResponse$
1250
+ ];
1251
+ var GetServiceAttributes$ = [9, n0, _GSA,
1252
+ 0, () => GetServiceAttributesRequest$, () => GetServiceAttributesResponse$
1253
+ ];
1254
+ var ListInstances$ = [9, n0, _LI,
1255
+ 0, () => ListInstancesRequest$, () => ListInstancesResponse$
1256
+ ];
1257
+ var ListNamespaces$ = [9, n0, _LN,
1258
+ 0, () => ListNamespacesRequest$, () => ListNamespacesResponse$
1259
+ ];
1260
+ var ListOperations$ = [9, n0, _LO,
1261
+ 0, () => ListOperationsRequest$, () => ListOperationsResponse$
1262
+ ];
1263
+ var ListServices$ = [9, n0, _LS,
1264
+ 0, () => ListServicesRequest$, () => ListServicesResponse$
1265
+ ];
1266
+ var ListTagsForResource$ = [9, n0, _LTFR,
1267
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1268
+ ];
1269
+ var RegisterInstance$ = [9, n0, _RI,
1270
+ 0, () => RegisterInstanceRequest$, () => RegisterInstanceResponse$
1271
+ ];
1272
+ var TagResource$ = [9, n0, _TR,
1273
+ 0, () => TagResourceRequest$, () => TagResourceResponse$
1274
+ ];
1275
+ var UntagResource$ = [9, n0, _UR,
1276
+ 0, () => UntagResourceRequest$, () => UntagResourceResponse$
1277
+ ];
1278
+ var UpdateHttpNamespace$ = [9, n0, _UHN,
1279
+ 0, () => UpdateHttpNamespaceRequest$, () => UpdateHttpNamespaceResponse$
1280
+ ];
1281
+ var UpdateInstanceCustomHealthStatus$ = [9, n0, _UICHS,
1282
+ 0, () => UpdateInstanceCustomHealthStatusRequest$, () => __Unit
1283
+ ];
1284
+ var UpdatePrivateDnsNamespace$ = [9, n0, _UPDN,
1285
+ 0, () => UpdatePrivateDnsNamespaceRequest$, () => UpdatePrivateDnsNamespaceResponse$
1286
+ ];
1287
+ var UpdatePublicDnsNamespace$ = [9, n0, _UPDNp,
1288
+ 0, () => UpdatePublicDnsNamespaceRequest$, () => UpdatePublicDnsNamespaceResponse$
1289
+ ];
1290
+ var UpdateService$ = [9, n0, _US,
1291
+ 0, () => UpdateServiceRequest$, () => UpdateServiceResponse$
1292
+ ];
1293
+ var UpdateServiceAttributes$ = [9, n0, _USA,
1294
+ 0, () => UpdateServiceAttributesRequest$, () => UpdateServiceAttributesResponse$
1295
+ ];
1296
+
1297
+ const getRuntimeConfig$1 = (config) => {
1298
+ return {
1299
+ apiVersion: "2017-03-14",
1300
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1301
+ base64Encoder: config?.base64Encoder ?? toBase64,
1302
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1303
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1304
+ extensions: config?.extensions ?? [],
1305
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultServiceDiscoveryHttpAuthSchemeProvider,
1306
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1307
+ {
1308
+ schemeId: "aws.auth#sigv4",
1309
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1310
+ signer: new AwsSdkSigV4Signer(),
1311
+ },
1312
+ ],
1313
+ logger: config?.logger ?? new NoOpLogger(),
1314
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
1315
+ protocolSettings: config?.protocolSettings ?? {
1316
+ defaultNamespace: "com.amazonaws.servicediscovery",
1317
+ errorTypeRegistries,
1318
+ version: "2017-03-14",
1319
+ serviceTarget: "Route53AutoNaming_v20170314",
1320
+ },
1321
+ serviceId: config?.serviceId ?? "ServiceDiscovery",
1322
+ sha256: config?.sha256 ?? Sha256,
1323
+ urlParser: config?.urlParser ?? parseUrl,
1324
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1325
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1326
+ };
1327
+ };
1328
+
1329
+ const getRuntimeConfig = (config) => {
1330
+ emitWarningIfUnsupportedVersion(process.version);
1331
+ const defaultsMode = resolveDefaultsModeConfig(config);
1332
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1333
+ const clientSharedValues = getRuntimeConfig$1(config);
1334
+ emitWarningIfUnsupportedVersion$1(process.version);
1335
+ const loaderConfig = {
1336
+ profile: config?.profile,
1337
+ logger: clientSharedValues.logger,
1338
+ };
1339
+ return {
1340
+ ...clientSharedValues,
1341
+ ...config,
1342
+ runtime: "node",
1343
+ defaultsMode,
1344
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1345
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1346
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1347
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1348
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1349
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1350
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1351
+ retryMode: config?.retryMode ??
1352
+ loadConfig({
1353
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1354
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1355
+ }, config),
1356
+ streamCollector: config?.streamCollector ?? streamCollector,
1357
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1358
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1359
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1360
+ };
1361
+ };
1362
+
34
1363
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1364
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1365
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -610,54 +1939,212 @@ const ServiceFilterName = {
610
1939
  RESOURCE_OWNER: "RESOURCE_OWNER",
611
1940
  };
612
1941
 
1942
+ exports.CreateHttpNamespace$ = CreateHttpNamespace$;
613
1943
  exports.CreateHttpNamespaceCommand = CreateHttpNamespaceCommand;
1944
+ exports.CreateHttpNamespaceRequest$ = CreateHttpNamespaceRequest$;
1945
+ exports.CreateHttpNamespaceResponse$ = CreateHttpNamespaceResponse$;
1946
+ exports.CreatePrivateDnsNamespace$ = CreatePrivateDnsNamespace$;
614
1947
  exports.CreatePrivateDnsNamespaceCommand = CreatePrivateDnsNamespaceCommand;
1948
+ exports.CreatePrivateDnsNamespaceRequest$ = CreatePrivateDnsNamespaceRequest$;
1949
+ exports.CreatePrivateDnsNamespaceResponse$ = CreatePrivateDnsNamespaceResponse$;
1950
+ exports.CreatePublicDnsNamespace$ = CreatePublicDnsNamespace$;
615
1951
  exports.CreatePublicDnsNamespaceCommand = CreatePublicDnsNamespaceCommand;
1952
+ exports.CreatePublicDnsNamespaceRequest$ = CreatePublicDnsNamespaceRequest$;
1953
+ exports.CreatePublicDnsNamespaceResponse$ = CreatePublicDnsNamespaceResponse$;
1954
+ exports.CreateService$ = CreateService$;
616
1955
  exports.CreateServiceCommand = CreateServiceCommand;
1956
+ exports.CreateServiceRequest$ = CreateServiceRequest$;
1957
+ exports.CreateServiceResponse$ = CreateServiceResponse$;
1958
+ exports.CustomHealthNotFound = CustomHealthNotFound;
1959
+ exports.CustomHealthNotFound$ = CustomHealthNotFound$;
617
1960
  exports.CustomHealthStatus = CustomHealthStatus;
1961
+ exports.DeleteNamespace$ = DeleteNamespace$;
618
1962
  exports.DeleteNamespaceCommand = DeleteNamespaceCommand;
1963
+ exports.DeleteNamespaceRequest$ = DeleteNamespaceRequest$;
1964
+ exports.DeleteNamespaceResponse$ = DeleteNamespaceResponse$;
1965
+ exports.DeleteService$ = DeleteService$;
1966
+ exports.DeleteServiceAttributes$ = DeleteServiceAttributes$;
619
1967
  exports.DeleteServiceAttributesCommand = DeleteServiceAttributesCommand;
1968
+ exports.DeleteServiceAttributesRequest$ = DeleteServiceAttributesRequest$;
1969
+ exports.DeleteServiceAttributesResponse$ = DeleteServiceAttributesResponse$;
620
1970
  exports.DeleteServiceCommand = DeleteServiceCommand;
1971
+ exports.DeleteServiceRequest$ = DeleteServiceRequest$;
1972
+ exports.DeleteServiceResponse$ = DeleteServiceResponse$;
1973
+ exports.DeregisterInstance$ = DeregisterInstance$;
621
1974
  exports.DeregisterInstanceCommand = DeregisterInstanceCommand;
1975
+ exports.DeregisterInstanceRequest$ = DeregisterInstanceRequest$;
1976
+ exports.DeregisterInstanceResponse$ = DeregisterInstanceResponse$;
1977
+ exports.DiscoverInstances$ = DiscoverInstances$;
622
1978
  exports.DiscoverInstancesCommand = DiscoverInstancesCommand;
1979
+ exports.DiscoverInstancesRequest$ = DiscoverInstancesRequest$;
1980
+ exports.DiscoverInstancesResponse$ = DiscoverInstancesResponse$;
1981
+ exports.DiscoverInstancesRevision$ = DiscoverInstancesRevision$;
623
1982
  exports.DiscoverInstancesRevisionCommand = DiscoverInstancesRevisionCommand;
1983
+ exports.DiscoverInstancesRevisionRequest$ = DiscoverInstancesRevisionRequest$;
1984
+ exports.DiscoverInstancesRevisionResponse$ = DiscoverInstancesRevisionResponse$;
1985
+ exports.DnsConfig$ = DnsConfig$;
1986
+ exports.DnsConfigChange$ = DnsConfigChange$;
1987
+ exports.DnsProperties$ = DnsProperties$;
1988
+ exports.DnsRecord$ = DnsRecord$;
1989
+ exports.DuplicateRequest = DuplicateRequest;
1990
+ exports.DuplicateRequest$ = DuplicateRequest$;
624
1991
  exports.FilterCondition = FilterCondition;
1992
+ exports.GetInstance$ = GetInstance$;
625
1993
  exports.GetInstanceCommand = GetInstanceCommand;
1994
+ exports.GetInstanceRequest$ = GetInstanceRequest$;
1995
+ exports.GetInstanceResponse$ = GetInstanceResponse$;
1996
+ exports.GetInstancesHealthStatus$ = GetInstancesHealthStatus$;
626
1997
  exports.GetInstancesHealthStatusCommand = GetInstancesHealthStatusCommand;
1998
+ exports.GetInstancesHealthStatusRequest$ = GetInstancesHealthStatusRequest$;
1999
+ exports.GetInstancesHealthStatusResponse$ = GetInstancesHealthStatusResponse$;
2000
+ exports.GetNamespace$ = GetNamespace$;
627
2001
  exports.GetNamespaceCommand = GetNamespaceCommand;
2002
+ exports.GetNamespaceRequest$ = GetNamespaceRequest$;
2003
+ exports.GetNamespaceResponse$ = GetNamespaceResponse$;
2004
+ exports.GetOperation$ = GetOperation$;
628
2005
  exports.GetOperationCommand = GetOperationCommand;
2006
+ exports.GetOperationRequest$ = GetOperationRequest$;
2007
+ exports.GetOperationResponse$ = GetOperationResponse$;
2008
+ exports.GetService$ = GetService$;
2009
+ exports.GetServiceAttributes$ = GetServiceAttributes$;
629
2010
  exports.GetServiceAttributesCommand = GetServiceAttributesCommand;
2011
+ exports.GetServiceAttributesRequest$ = GetServiceAttributesRequest$;
2012
+ exports.GetServiceAttributesResponse$ = GetServiceAttributesResponse$;
630
2013
  exports.GetServiceCommand = GetServiceCommand;
2014
+ exports.GetServiceRequest$ = GetServiceRequest$;
2015
+ exports.GetServiceResponse$ = GetServiceResponse$;
2016
+ exports.HealthCheckConfig$ = HealthCheckConfig$;
2017
+ exports.HealthCheckCustomConfig$ = HealthCheckCustomConfig$;
631
2018
  exports.HealthCheckType = HealthCheckType;
632
2019
  exports.HealthStatus = HealthStatus;
633
2020
  exports.HealthStatusFilter = HealthStatusFilter;
2021
+ exports.HttpInstanceSummary$ = HttpInstanceSummary$;
2022
+ exports.HttpNamespaceChange$ = HttpNamespaceChange$;
2023
+ exports.HttpProperties$ = HttpProperties$;
2024
+ exports.Instance$ = Instance$;
2025
+ exports.InstanceNotFound = InstanceNotFound;
2026
+ exports.InstanceNotFound$ = InstanceNotFound$;
2027
+ exports.InstanceSummary$ = InstanceSummary$;
2028
+ exports.InvalidInput = InvalidInput;
2029
+ exports.InvalidInput$ = InvalidInput$;
2030
+ exports.ListInstances$ = ListInstances$;
634
2031
  exports.ListInstancesCommand = ListInstancesCommand;
2032
+ exports.ListInstancesRequest$ = ListInstancesRequest$;
2033
+ exports.ListInstancesResponse$ = ListInstancesResponse$;
2034
+ exports.ListNamespaces$ = ListNamespaces$;
635
2035
  exports.ListNamespacesCommand = ListNamespacesCommand;
2036
+ exports.ListNamespacesRequest$ = ListNamespacesRequest$;
2037
+ exports.ListNamespacesResponse$ = ListNamespacesResponse$;
2038
+ exports.ListOperations$ = ListOperations$;
636
2039
  exports.ListOperationsCommand = ListOperationsCommand;
2040
+ exports.ListOperationsRequest$ = ListOperationsRequest$;
2041
+ exports.ListOperationsResponse$ = ListOperationsResponse$;
2042
+ exports.ListServices$ = ListServices$;
637
2043
  exports.ListServicesCommand = ListServicesCommand;
2044
+ exports.ListServicesRequest$ = ListServicesRequest$;
2045
+ exports.ListServicesResponse$ = ListServicesResponse$;
2046
+ exports.ListTagsForResource$ = ListTagsForResource$;
638
2047
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2048
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2049
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2050
+ exports.Namespace$ = Namespace$;
2051
+ exports.NamespaceAlreadyExists = NamespaceAlreadyExists;
2052
+ exports.NamespaceAlreadyExists$ = NamespaceAlreadyExists$;
2053
+ exports.NamespaceFilter$ = NamespaceFilter$;
639
2054
  exports.NamespaceFilterName = NamespaceFilterName;
2055
+ exports.NamespaceNotFound = NamespaceNotFound;
2056
+ exports.NamespaceNotFound$ = NamespaceNotFound$;
2057
+ exports.NamespaceProperties$ = NamespaceProperties$;
2058
+ exports.NamespaceSummary$ = NamespaceSummary$;
640
2059
  exports.NamespaceType = NamespaceType;
2060
+ exports.Operation$ = Operation$;
2061
+ exports.OperationFilter$ = OperationFilter$;
641
2062
  exports.OperationFilterName = OperationFilterName;
2063
+ exports.OperationNotFound = OperationNotFound;
2064
+ exports.OperationNotFound$ = OperationNotFound$;
642
2065
  exports.OperationStatus = OperationStatus;
2066
+ exports.OperationSummary$ = OperationSummary$;
643
2067
  exports.OperationTargetType = OperationTargetType;
644
2068
  exports.OperationType = OperationType;
2069
+ exports.PrivateDnsNamespaceChange$ = PrivateDnsNamespaceChange$;
2070
+ exports.PrivateDnsNamespaceProperties$ = PrivateDnsNamespaceProperties$;
2071
+ exports.PrivateDnsNamespacePropertiesChange$ = PrivateDnsNamespacePropertiesChange$;
2072
+ exports.PrivateDnsPropertiesMutable$ = PrivateDnsPropertiesMutable$;
2073
+ exports.PrivateDnsPropertiesMutableChange$ = PrivateDnsPropertiesMutableChange$;
2074
+ exports.PublicDnsNamespaceChange$ = PublicDnsNamespaceChange$;
2075
+ exports.PublicDnsNamespaceProperties$ = PublicDnsNamespaceProperties$;
2076
+ exports.PublicDnsNamespacePropertiesChange$ = PublicDnsNamespacePropertiesChange$;
2077
+ exports.PublicDnsPropertiesMutable$ = PublicDnsPropertiesMutable$;
2078
+ exports.PublicDnsPropertiesMutableChange$ = PublicDnsPropertiesMutableChange$;
645
2079
  exports.RecordType = RecordType;
2080
+ exports.RegisterInstance$ = RegisterInstance$;
646
2081
  exports.RegisterInstanceCommand = RegisterInstanceCommand;
2082
+ exports.RegisterInstanceRequest$ = RegisterInstanceRequest$;
2083
+ exports.RegisterInstanceResponse$ = RegisterInstanceResponse$;
2084
+ exports.RequestLimitExceeded = RequestLimitExceeded;
2085
+ exports.RequestLimitExceeded$ = RequestLimitExceeded$;
2086
+ exports.ResourceInUse = ResourceInUse;
2087
+ exports.ResourceInUse$ = ResourceInUse$;
2088
+ exports.ResourceLimitExceeded = ResourceLimitExceeded;
2089
+ exports.ResourceLimitExceeded$ = ResourceLimitExceeded$;
2090
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2091
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
647
2092
  exports.RoutingPolicy = RoutingPolicy;
2093
+ exports.SOA$ = SOA$;
2094
+ exports.SOAChange$ = SOAChange$;
2095
+ exports.Service$ = Service$;
2096
+ exports.ServiceAlreadyExists = ServiceAlreadyExists;
2097
+ exports.ServiceAlreadyExists$ = ServiceAlreadyExists$;
2098
+ exports.ServiceAttributes$ = ServiceAttributes$;
2099
+ exports.ServiceAttributesLimitExceededException = ServiceAttributesLimitExceededException;
2100
+ exports.ServiceAttributesLimitExceededException$ = ServiceAttributesLimitExceededException$;
2101
+ exports.ServiceChange$ = ServiceChange$;
648
2102
  exports.ServiceDiscovery = ServiceDiscovery;
649
2103
  exports.ServiceDiscoveryClient = ServiceDiscoveryClient;
2104
+ exports.ServiceDiscoveryServiceException = ServiceDiscoveryServiceException;
2105
+ exports.ServiceDiscoveryServiceException$ = ServiceDiscoveryServiceException$;
2106
+ exports.ServiceFilter$ = ServiceFilter$;
650
2107
  exports.ServiceFilterName = ServiceFilterName;
2108
+ exports.ServiceNotFound = ServiceNotFound;
2109
+ exports.ServiceNotFound$ = ServiceNotFound$;
2110
+ exports.ServiceSummary$ = ServiceSummary$;
651
2111
  exports.ServiceType = ServiceType;
652
2112
  exports.ServiceTypeOption = ServiceTypeOption;
2113
+ exports.Tag$ = Tag$;
2114
+ exports.TagResource$ = TagResource$;
653
2115
  exports.TagResourceCommand = TagResourceCommand;
2116
+ exports.TagResourceRequest$ = TagResourceRequest$;
2117
+ exports.TagResourceResponse$ = TagResourceResponse$;
2118
+ exports.TooManyTagsException = TooManyTagsException;
2119
+ exports.TooManyTagsException$ = TooManyTagsException$;
2120
+ exports.UntagResource$ = UntagResource$;
654
2121
  exports.UntagResourceCommand = UntagResourceCommand;
2122
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2123
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2124
+ exports.UpdateHttpNamespace$ = UpdateHttpNamespace$;
655
2125
  exports.UpdateHttpNamespaceCommand = UpdateHttpNamespaceCommand;
2126
+ exports.UpdateHttpNamespaceRequest$ = UpdateHttpNamespaceRequest$;
2127
+ exports.UpdateHttpNamespaceResponse$ = UpdateHttpNamespaceResponse$;
2128
+ exports.UpdateInstanceCustomHealthStatus$ = UpdateInstanceCustomHealthStatus$;
656
2129
  exports.UpdateInstanceCustomHealthStatusCommand = UpdateInstanceCustomHealthStatusCommand;
2130
+ exports.UpdateInstanceCustomHealthStatusRequest$ = UpdateInstanceCustomHealthStatusRequest$;
2131
+ exports.UpdatePrivateDnsNamespace$ = UpdatePrivateDnsNamespace$;
657
2132
  exports.UpdatePrivateDnsNamespaceCommand = UpdatePrivateDnsNamespaceCommand;
2133
+ exports.UpdatePrivateDnsNamespaceRequest$ = UpdatePrivateDnsNamespaceRequest$;
2134
+ exports.UpdatePrivateDnsNamespaceResponse$ = UpdatePrivateDnsNamespaceResponse$;
2135
+ exports.UpdatePublicDnsNamespace$ = UpdatePublicDnsNamespace$;
658
2136
  exports.UpdatePublicDnsNamespaceCommand = UpdatePublicDnsNamespaceCommand;
2137
+ exports.UpdatePublicDnsNamespaceRequest$ = UpdatePublicDnsNamespaceRequest$;
2138
+ exports.UpdatePublicDnsNamespaceResponse$ = UpdatePublicDnsNamespaceResponse$;
2139
+ exports.UpdateService$ = UpdateService$;
2140
+ exports.UpdateServiceAttributes$ = UpdateServiceAttributes$;
659
2141
  exports.UpdateServiceAttributesCommand = UpdateServiceAttributesCommand;
2142
+ exports.UpdateServiceAttributesRequest$ = UpdateServiceAttributesRequest$;
2143
+ exports.UpdateServiceAttributesResponse$ = UpdateServiceAttributesResponse$;
660
2144
  exports.UpdateServiceCommand = UpdateServiceCommand;
2145
+ exports.UpdateServiceRequest$ = UpdateServiceRequest$;
2146
+ exports.UpdateServiceResponse$ = UpdateServiceResponse$;
2147
+ exports.errorTypeRegistries = errorTypeRegistries;
661
2148
  exports.paginateGetInstancesHealthStatus = paginateGetInstancesHealthStatus;
662
2149
  exports.paginateListInstances = paginateListInstances;
663
2150
  exports.paginateListNamespaces = paginateListNamespaces;