@aws-sdk/client-servicediscovery 3.716.0 → 3.723.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 +272 -175
- package/dist-es/ServiceDiscoveryClient.js +1 -0
- package/dist-es/models/models_0.js +51 -30
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -190,7 +190,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
190
190
|
}, "resolveRuntimeExtensions");
|
|
191
191
|
|
|
192
192
|
// src/ServiceDiscoveryClient.ts
|
|
193
|
-
var
|
|
193
|
+
var ServiceDiscoveryClient = class extends import_smithy_client.Client {
|
|
194
|
+
static {
|
|
195
|
+
__name(this, "ServiceDiscoveryClient");
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* The resolved configuration of ServiceDiscoveryClient class. This is resolved and normalized from the {@link ServiceDiscoveryClientConfig | constructor configuration interface}.
|
|
199
|
+
*/
|
|
200
|
+
config;
|
|
194
201
|
constructor(...[configuration]) {
|
|
195
202
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
196
203
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -200,7 +207,7 @@ var _ServiceDiscoveryClient = class _ServiceDiscoveryClient extends import_smith
|
|
|
200
207
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
201
208
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
202
209
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
203
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
210
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
204
211
|
super(_config_8);
|
|
205
212
|
this.config = _config_8;
|
|
206
213
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -228,8 +235,6 @@ var _ServiceDiscoveryClient = class _ServiceDiscoveryClient extends import_smith
|
|
|
228
235
|
super.destroy();
|
|
229
236
|
}
|
|
230
237
|
};
|
|
231
|
-
__name(_ServiceDiscoveryClient, "ServiceDiscoveryClient");
|
|
232
|
-
var ServiceDiscoveryClient = _ServiceDiscoveryClient;
|
|
233
238
|
|
|
234
239
|
// src/ServiceDiscovery.ts
|
|
235
240
|
|
|
@@ -247,7 +252,10 @@ var import_uuid = require("uuid");
|
|
|
247
252
|
|
|
248
253
|
// src/models/ServiceDiscoveryServiceException.ts
|
|
249
254
|
|
|
250
|
-
var
|
|
255
|
+
var ServiceDiscoveryServiceException = class _ServiceDiscoveryServiceException extends import_smithy_client.ServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "ServiceDiscoveryServiceException");
|
|
258
|
+
}
|
|
251
259
|
/**
|
|
252
260
|
* @internal
|
|
253
261
|
*/
|
|
@@ -256,11 +264,20 @@ var _ServiceDiscoveryServiceException = class _ServiceDiscoveryServiceException
|
|
|
256
264
|
Object.setPrototypeOf(this, _ServiceDiscoveryServiceException.prototype);
|
|
257
265
|
}
|
|
258
266
|
};
|
|
259
|
-
__name(_ServiceDiscoveryServiceException, "ServiceDiscoveryServiceException");
|
|
260
|
-
var ServiceDiscoveryServiceException = _ServiceDiscoveryServiceException;
|
|
261
267
|
|
|
262
268
|
// src/models/models_0.ts
|
|
263
|
-
var
|
|
269
|
+
var DuplicateRequest = class _DuplicateRequest extends ServiceDiscoveryServiceException {
|
|
270
|
+
static {
|
|
271
|
+
__name(this, "DuplicateRequest");
|
|
272
|
+
}
|
|
273
|
+
name = "DuplicateRequest";
|
|
274
|
+
$fault = "client";
|
|
275
|
+
Message;
|
|
276
|
+
/**
|
|
277
|
+
* <p>The ID of the operation that's already in progress.</p>
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
280
|
+
DuplicateOperationId;
|
|
264
281
|
/**
|
|
265
282
|
* @internal
|
|
266
283
|
*/
|
|
@@ -270,16 +287,18 @@ var _DuplicateRequest = class _DuplicateRequest extends ServiceDiscoveryServiceE
|
|
|
270
287
|
$fault: "client",
|
|
271
288
|
...opts
|
|
272
289
|
});
|
|
273
|
-
this.name = "DuplicateRequest";
|
|
274
|
-
this.$fault = "client";
|
|
275
290
|
Object.setPrototypeOf(this, _DuplicateRequest.prototype);
|
|
276
291
|
this.Message = opts.Message;
|
|
277
292
|
this.DuplicateOperationId = opts.DuplicateOperationId;
|
|
278
293
|
}
|
|
279
294
|
};
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
295
|
+
var InvalidInput = class _InvalidInput extends ServiceDiscoveryServiceException {
|
|
296
|
+
static {
|
|
297
|
+
__name(this, "InvalidInput");
|
|
298
|
+
}
|
|
299
|
+
name = "InvalidInput";
|
|
300
|
+
$fault = "client";
|
|
301
|
+
Message;
|
|
283
302
|
/**
|
|
284
303
|
* @internal
|
|
285
304
|
*/
|
|
@@ -289,15 +308,27 @@ var _InvalidInput = class _InvalidInput extends ServiceDiscoveryServiceException
|
|
|
289
308
|
$fault: "client",
|
|
290
309
|
...opts
|
|
291
310
|
});
|
|
292
|
-
this.name = "InvalidInput";
|
|
293
|
-
this.$fault = "client";
|
|
294
311
|
Object.setPrototypeOf(this, _InvalidInput.prototype);
|
|
295
312
|
this.Message = opts.Message;
|
|
296
313
|
}
|
|
297
314
|
};
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
315
|
+
var NamespaceAlreadyExists = class _NamespaceAlreadyExists extends ServiceDiscoveryServiceException {
|
|
316
|
+
static {
|
|
317
|
+
__name(this, "NamespaceAlreadyExists");
|
|
318
|
+
}
|
|
319
|
+
name = "NamespaceAlreadyExists";
|
|
320
|
+
$fault = "client";
|
|
321
|
+
Message;
|
|
322
|
+
/**
|
|
323
|
+
* <p>The <code>CreatorRequestId</code> that was used to create the namespace.</p>
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
326
|
+
CreatorRequestId;
|
|
327
|
+
/**
|
|
328
|
+
* <p>The ID of the existing namespace.</p>
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
NamespaceId;
|
|
301
332
|
/**
|
|
302
333
|
* @internal
|
|
303
334
|
*/
|
|
@@ -307,17 +338,19 @@ var _NamespaceAlreadyExists = class _NamespaceAlreadyExists extends ServiceDisco
|
|
|
307
338
|
$fault: "client",
|
|
308
339
|
...opts
|
|
309
340
|
});
|
|
310
|
-
this.name = "NamespaceAlreadyExists";
|
|
311
|
-
this.$fault = "client";
|
|
312
341
|
Object.setPrototypeOf(this, _NamespaceAlreadyExists.prototype);
|
|
313
342
|
this.Message = opts.Message;
|
|
314
343
|
this.CreatorRequestId = opts.CreatorRequestId;
|
|
315
344
|
this.NamespaceId = opts.NamespaceId;
|
|
316
345
|
}
|
|
317
346
|
};
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
347
|
+
var ResourceLimitExceeded = class _ResourceLimitExceeded extends ServiceDiscoveryServiceException {
|
|
348
|
+
static {
|
|
349
|
+
__name(this, "ResourceLimitExceeded");
|
|
350
|
+
}
|
|
351
|
+
name = "ResourceLimitExceeded";
|
|
352
|
+
$fault = "client";
|
|
353
|
+
Message;
|
|
321
354
|
/**
|
|
322
355
|
* @internal
|
|
323
356
|
*/
|
|
@@ -327,15 +360,22 @@ var _ResourceLimitExceeded = class _ResourceLimitExceeded extends ServiceDiscove
|
|
|
327
360
|
$fault: "client",
|
|
328
361
|
...opts
|
|
329
362
|
});
|
|
330
|
-
this.name = "ResourceLimitExceeded";
|
|
331
|
-
this.$fault = "client";
|
|
332
363
|
Object.setPrototypeOf(this, _ResourceLimitExceeded.prototype);
|
|
333
364
|
this.Message = opts.Message;
|
|
334
365
|
}
|
|
335
366
|
};
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
367
|
+
var TooManyTagsException = class _TooManyTagsException extends ServiceDiscoveryServiceException {
|
|
368
|
+
static {
|
|
369
|
+
__name(this, "TooManyTagsException");
|
|
370
|
+
}
|
|
371
|
+
name = "TooManyTagsException";
|
|
372
|
+
$fault = "client";
|
|
373
|
+
Message;
|
|
374
|
+
/**
|
|
375
|
+
* <p>The name of the resource.</p>
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
378
|
+
ResourceName;
|
|
339
379
|
/**
|
|
340
380
|
* @internal
|
|
341
381
|
*/
|
|
@@ -345,15 +385,11 @@ var _TooManyTagsException = class _TooManyTagsException extends ServiceDiscovery
|
|
|
345
385
|
$fault: "client",
|
|
346
386
|
...opts
|
|
347
387
|
});
|
|
348
|
-
this.name = "TooManyTagsException";
|
|
349
|
-
this.$fault = "client";
|
|
350
388
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
351
389
|
this.Message = opts.Message;
|
|
352
390
|
this.ResourceName = opts.ResourceName;
|
|
353
391
|
}
|
|
354
392
|
};
|
|
355
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
356
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
357
393
|
var RecordType = {
|
|
358
394
|
A: "A",
|
|
359
395
|
AAAA: "AAAA",
|
|
@@ -377,7 +413,13 @@ var ServiceType = {
|
|
|
377
413
|
DNS_HTTP: "DNS_HTTP",
|
|
378
414
|
HTTP: "HTTP"
|
|
379
415
|
};
|
|
380
|
-
var
|
|
416
|
+
var NamespaceNotFound = class _NamespaceNotFound extends ServiceDiscoveryServiceException {
|
|
417
|
+
static {
|
|
418
|
+
__name(this, "NamespaceNotFound");
|
|
419
|
+
}
|
|
420
|
+
name = "NamespaceNotFound";
|
|
421
|
+
$fault = "client";
|
|
422
|
+
Message;
|
|
381
423
|
/**
|
|
382
424
|
* @internal
|
|
383
425
|
*/
|
|
@@ -387,15 +429,27 @@ var _NamespaceNotFound = class _NamespaceNotFound extends ServiceDiscoveryServic
|
|
|
387
429
|
$fault: "client",
|
|
388
430
|
...opts
|
|
389
431
|
});
|
|
390
|
-
this.name = "NamespaceNotFound";
|
|
391
|
-
this.$fault = "client";
|
|
392
432
|
Object.setPrototypeOf(this, _NamespaceNotFound.prototype);
|
|
393
433
|
this.Message = opts.Message;
|
|
394
434
|
}
|
|
395
435
|
};
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
436
|
+
var ServiceAlreadyExists = class _ServiceAlreadyExists extends ServiceDiscoveryServiceException {
|
|
437
|
+
static {
|
|
438
|
+
__name(this, "ServiceAlreadyExists");
|
|
439
|
+
}
|
|
440
|
+
name = "ServiceAlreadyExists";
|
|
441
|
+
$fault = "client";
|
|
442
|
+
Message;
|
|
443
|
+
/**
|
|
444
|
+
* <p>The <code>CreatorRequestId</code> that was used to create the service.</p>
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
447
|
+
CreatorRequestId;
|
|
448
|
+
/**
|
|
449
|
+
* <p>The ID of the existing service.</p>
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
452
|
+
ServiceId;
|
|
399
453
|
/**
|
|
400
454
|
* @internal
|
|
401
455
|
*/
|
|
@@ -405,17 +459,19 @@ var _ServiceAlreadyExists = class _ServiceAlreadyExists extends ServiceDiscovery
|
|
|
405
459
|
$fault: "client",
|
|
406
460
|
...opts
|
|
407
461
|
});
|
|
408
|
-
this.name = "ServiceAlreadyExists";
|
|
409
|
-
this.$fault = "client";
|
|
410
462
|
Object.setPrototypeOf(this, _ServiceAlreadyExists.prototype);
|
|
411
463
|
this.Message = opts.Message;
|
|
412
464
|
this.CreatorRequestId = opts.CreatorRequestId;
|
|
413
465
|
this.ServiceId = opts.ServiceId;
|
|
414
466
|
}
|
|
415
467
|
};
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
468
|
+
var CustomHealthNotFound = class _CustomHealthNotFound extends ServiceDiscoveryServiceException {
|
|
469
|
+
static {
|
|
470
|
+
__name(this, "CustomHealthNotFound");
|
|
471
|
+
}
|
|
472
|
+
name = "CustomHealthNotFound";
|
|
473
|
+
$fault = "client";
|
|
474
|
+
Message;
|
|
419
475
|
/**
|
|
420
476
|
* @internal
|
|
421
477
|
*/
|
|
@@ -425,19 +481,21 @@ var _CustomHealthNotFound = class _CustomHealthNotFound extends ServiceDiscovery
|
|
|
425
481
|
$fault: "client",
|
|
426
482
|
...opts
|
|
427
483
|
});
|
|
428
|
-
this.name = "CustomHealthNotFound";
|
|
429
|
-
this.$fault = "client";
|
|
430
484
|
Object.setPrototypeOf(this, _CustomHealthNotFound.prototype);
|
|
431
485
|
this.Message = opts.Message;
|
|
432
486
|
}
|
|
433
487
|
};
|
|
434
|
-
__name(_CustomHealthNotFound, "CustomHealthNotFound");
|
|
435
|
-
var CustomHealthNotFound = _CustomHealthNotFound;
|
|
436
488
|
var CustomHealthStatus = {
|
|
437
489
|
HEALTHY: "HEALTHY",
|
|
438
490
|
UNHEALTHY: "UNHEALTHY"
|
|
439
491
|
};
|
|
440
|
-
var
|
|
492
|
+
var ResourceInUse = class _ResourceInUse extends ServiceDiscoveryServiceException {
|
|
493
|
+
static {
|
|
494
|
+
__name(this, "ResourceInUse");
|
|
495
|
+
}
|
|
496
|
+
name = "ResourceInUse";
|
|
497
|
+
$fault = "client";
|
|
498
|
+
Message;
|
|
441
499
|
/**
|
|
442
500
|
* @internal
|
|
443
501
|
*/
|
|
@@ -447,15 +505,17 @@ var _ResourceInUse = class _ResourceInUse extends ServiceDiscoveryServiceExcepti
|
|
|
447
505
|
$fault: "client",
|
|
448
506
|
...opts
|
|
449
507
|
});
|
|
450
|
-
this.name = "ResourceInUse";
|
|
451
|
-
this.$fault = "client";
|
|
452
508
|
Object.setPrototypeOf(this, _ResourceInUse.prototype);
|
|
453
509
|
this.Message = opts.Message;
|
|
454
510
|
}
|
|
455
511
|
};
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
512
|
+
var ServiceNotFound = class _ServiceNotFound extends ServiceDiscoveryServiceException {
|
|
513
|
+
static {
|
|
514
|
+
__name(this, "ServiceNotFound");
|
|
515
|
+
}
|
|
516
|
+
name = "ServiceNotFound";
|
|
517
|
+
$fault = "client";
|
|
518
|
+
Message;
|
|
459
519
|
/**
|
|
460
520
|
* @internal
|
|
461
521
|
*/
|
|
@@ -465,15 +525,17 @@ var _ServiceNotFound = class _ServiceNotFound extends ServiceDiscoveryServiceExc
|
|
|
465
525
|
$fault: "client",
|
|
466
526
|
...opts
|
|
467
527
|
});
|
|
468
|
-
this.name = "ServiceNotFound";
|
|
469
|
-
this.$fault = "client";
|
|
470
528
|
Object.setPrototypeOf(this, _ServiceNotFound.prototype);
|
|
471
529
|
this.Message = opts.Message;
|
|
472
530
|
}
|
|
473
531
|
};
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
532
|
+
var InstanceNotFound = class _InstanceNotFound extends ServiceDiscoveryServiceException {
|
|
533
|
+
static {
|
|
534
|
+
__name(this, "InstanceNotFound");
|
|
535
|
+
}
|
|
536
|
+
name = "InstanceNotFound";
|
|
537
|
+
$fault = "client";
|
|
538
|
+
Message;
|
|
477
539
|
/**
|
|
478
540
|
* @internal
|
|
479
541
|
*/
|
|
@@ -483,14 +545,10 @@ var _InstanceNotFound = class _InstanceNotFound extends ServiceDiscoveryServiceE
|
|
|
483
545
|
$fault: "client",
|
|
484
546
|
...opts
|
|
485
547
|
});
|
|
486
|
-
this.name = "InstanceNotFound";
|
|
487
|
-
this.$fault = "client";
|
|
488
548
|
Object.setPrototypeOf(this, _InstanceNotFound.prototype);
|
|
489
549
|
this.Message = opts.Message;
|
|
490
550
|
}
|
|
491
551
|
};
|
|
492
|
-
__name(_InstanceNotFound, "InstanceNotFound");
|
|
493
|
-
var InstanceNotFound = _InstanceNotFound;
|
|
494
552
|
var HealthStatusFilter = {
|
|
495
553
|
ALL: "ALL",
|
|
496
554
|
HEALTHY: "HEALTHY",
|
|
@@ -502,7 +560,13 @@ var HealthStatus = {
|
|
|
502
560
|
UNHEALTHY: "UNHEALTHY",
|
|
503
561
|
UNKNOWN: "UNKNOWN"
|
|
504
562
|
};
|
|
505
|
-
var
|
|
563
|
+
var RequestLimitExceeded = class _RequestLimitExceeded extends ServiceDiscoveryServiceException {
|
|
564
|
+
static {
|
|
565
|
+
__name(this, "RequestLimitExceeded");
|
|
566
|
+
}
|
|
567
|
+
name = "RequestLimitExceeded";
|
|
568
|
+
$fault = "client";
|
|
569
|
+
Message;
|
|
506
570
|
/**
|
|
507
571
|
* @internal
|
|
508
572
|
*/
|
|
@@ -512,14 +576,10 @@ var _RequestLimitExceeded = class _RequestLimitExceeded extends ServiceDiscovery
|
|
|
512
576
|
$fault: "client",
|
|
513
577
|
...opts
|
|
514
578
|
});
|
|
515
|
-
this.name = "RequestLimitExceeded";
|
|
516
|
-
this.$fault = "client";
|
|
517
579
|
Object.setPrototypeOf(this, _RequestLimitExceeded.prototype);
|
|
518
580
|
this.Message = opts.Message;
|
|
519
581
|
}
|
|
520
582
|
};
|
|
521
|
-
__name(_RequestLimitExceeded, "RequestLimitExceeded");
|
|
522
|
-
var RequestLimitExceeded = _RequestLimitExceeded;
|
|
523
583
|
var FilterCondition = {
|
|
524
584
|
BEGINS_WITH: "BEGINS_WITH",
|
|
525
585
|
BETWEEN: "BETWEEN",
|
|
@@ -550,7 +610,13 @@ var OperationType = {
|
|
|
550
610
|
UPDATE_NAMESPACE: "UPDATE_NAMESPACE",
|
|
551
611
|
UPDATE_SERVICE: "UPDATE_SERVICE"
|
|
552
612
|
};
|
|
553
|
-
var
|
|
613
|
+
var OperationNotFound = class _OperationNotFound extends ServiceDiscoveryServiceException {
|
|
614
|
+
static {
|
|
615
|
+
__name(this, "OperationNotFound");
|
|
616
|
+
}
|
|
617
|
+
name = "OperationNotFound";
|
|
618
|
+
$fault = "client";
|
|
619
|
+
Message;
|
|
554
620
|
/**
|
|
555
621
|
* @internal
|
|
556
622
|
*/
|
|
@@ -560,14 +626,10 @@ var _OperationNotFound = class _OperationNotFound extends ServiceDiscoveryServic
|
|
|
560
626
|
$fault: "client",
|
|
561
627
|
...opts
|
|
562
628
|
});
|
|
563
|
-
this.name = "OperationNotFound";
|
|
564
|
-
this.$fault = "client";
|
|
565
629
|
Object.setPrototypeOf(this, _OperationNotFound.prototype);
|
|
566
630
|
this.Message = opts.Message;
|
|
567
631
|
}
|
|
568
632
|
};
|
|
569
|
-
__name(_OperationNotFound, "OperationNotFound");
|
|
570
|
-
var OperationNotFound = _OperationNotFound;
|
|
571
633
|
var NamespaceFilterName = {
|
|
572
634
|
HTTP_NAME: "HTTP_NAME",
|
|
573
635
|
NAME: "NAME",
|
|
@@ -583,7 +645,13 @@ var OperationFilterName = {
|
|
|
583
645
|
var ServiceFilterName = {
|
|
584
646
|
NAMESPACE_ID: "NAMESPACE_ID"
|
|
585
647
|
};
|
|
586
|
-
var
|
|
648
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ServiceDiscoveryServiceException {
|
|
649
|
+
static {
|
|
650
|
+
__name(this, "ResourceNotFoundException");
|
|
651
|
+
}
|
|
652
|
+
name = "ResourceNotFoundException";
|
|
653
|
+
$fault = "client";
|
|
654
|
+
Message;
|
|
587
655
|
/**
|
|
588
656
|
* @internal
|
|
589
657
|
*/
|
|
@@ -593,15 +661,17 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Servic
|
|
|
593
661
|
$fault: "client",
|
|
594
662
|
...opts
|
|
595
663
|
});
|
|
596
|
-
this.name = "ResourceNotFoundException";
|
|
597
|
-
this.$fault = "client";
|
|
598
664
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
599
665
|
this.Message = opts.Message;
|
|
600
666
|
}
|
|
601
667
|
};
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
668
|
+
var ServiceAttributesLimitExceededException = class _ServiceAttributesLimitExceededException extends ServiceDiscoveryServiceException {
|
|
669
|
+
static {
|
|
670
|
+
__name(this, "ServiceAttributesLimitExceededException");
|
|
671
|
+
}
|
|
672
|
+
name = "ServiceAttributesLimitExceededException";
|
|
673
|
+
$fault = "client";
|
|
674
|
+
Message;
|
|
605
675
|
/**
|
|
606
676
|
* @internal
|
|
607
677
|
*/
|
|
@@ -611,14 +681,10 @@ var _ServiceAttributesLimitExceededException = class _ServiceAttributesLimitExce
|
|
|
611
681
|
$fault: "client",
|
|
612
682
|
...opts
|
|
613
683
|
});
|
|
614
|
-
this.name = "ServiceAttributesLimitExceededException";
|
|
615
|
-
this.$fault = "client";
|
|
616
684
|
Object.setPrototypeOf(this, _ServiceAttributesLimitExceededException.prototype);
|
|
617
685
|
this.Message = opts.Message;
|
|
618
686
|
}
|
|
619
687
|
};
|
|
620
|
-
__name(_ServiceAttributesLimitExceededException, "ServiceAttributesLimitExceededException");
|
|
621
|
-
var ServiceAttributesLimitExceededException = _ServiceAttributesLimitExceededException;
|
|
622
688
|
|
|
623
689
|
// src/protocols/Aws_json1_1.ts
|
|
624
690
|
var se_CreateHttpNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1612,421 +1678,451 @@ function sharedHeaders(operation) {
|
|
|
1612
1678
|
__name(sharedHeaders, "sharedHeaders");
|
|
1613
1679
|
|
|
1614
1680
|
// src/commands/CreateHttpNamespaceCommand.ts
|
|
1615
|
-
var
|
|
1681
|
+
var CreateHttpNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1616
1682
|
return [
|
|
1617
1683
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1618
1684
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1619
1685
|
];
|
|
1620
1686
|
}).s("Route53AutoNaming_v20170314", "CreateHttpNamespace", {}).n("ServiceDiscoveryClient", "CreateHttpNamespaceCommand").f(void 0, void 0).ser(se_CreateHttpNamespaceCommand).de(de_CreateHttpNamespaceCommand).build() {
|
|
1687
|
+
static {
|
|
1688
|
+
__name(this, "CreateHttpNamespaceCommand");
|
|
1689
|
+
}
|
|
1621
1690
|
};
|
|
1622
|
-
__name(_CreateHttpNamespaceCommand, "CreateHttpNamespaceCommand");
|
|
1623
|
-
var CreateHttpNamespaceCommand = _CreateHttpNamespaceCommand;
|
|
1624
1691
|
|
|
1625
1692
|
// src/commands/CreatePrivateDnsNamespaceCommand.ts
|
|
1626
1693
|
|
|
1627
1694
|
|
|
1628
1695
|
|
|
1629
|
-
var
|
|
1696
|
+
var CreatePrivateDnsNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1630
1697
|
return [
|
|
1631
1698
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1632
1699
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1633
1700
|
];
|
|
1634
1701
|
}).s("Route53AutoNaming_v20170314", "CreatePrivateDnsNamespace", {}).n("ServiceDiscoveryClient", "CreatePrivateDnsNamespaceCommand").f(void 0, void 0).ser(se_CreatePrivateDnsNamespaceCommand).de(de_CreatePrivateDnsNamespaceCommand).build() {
|
|
1702
|
+
static {
|
|
1703
|
+
__name(this, "CreatePrivateDnsNamespaceCommand");
|
|
1704
|
+
}
|
|
1635
1705
|
};
|
|
1636
|
-
__name(_CreatePrivateDnsNamespaceCommand, "CreatePrivateDnsNamespaceCommand");
|
|
1637
|
-
var CreatePrivateDnsNamespaceCommand = _CreatePrivateDnsNamespaceCommand;
|
|
1638
1706
|
|
|
1639
1707
|
// src/commands/CreatePublicDnsNamespaceCommand.ts
|
|
1640
1708
|
|
|
1641
1709
|
|
|
1642
1710
|
|
|
1643
|
-
var
|
|
1711
|
+
var CreatePublicDnsNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1644
1712
|
return [
|
|
1645
1713
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1646
1714
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1647
1715
|
];
|
|
1648
1716
|
}).s("Route53AutoNaming_v20170314", "CreatePublicDnsNamespace", {}).n("ServiceDiscoveryClient", "CreatePublicDnsNamespaceCommand").f(void 0, void 0).ser(se_CreatePublicDnsNamespaceCommand).de(de_CreatePublicDnsNamespaceCommand).build() {
|
|
1717
|
+
static {
|
|
1718
|
+
__name(this, "CreatePublicDnsNamespaceCommand");
|
|
1719
|
+
}
|
|
1649
1720
|
};
|
|
1650
|
-
__name(_CreatePublicDnsNamespaceCommand, "CreatePublicDnsNamespaceCommand");
|
|
1651
|
-
var CreatePublicDnsNamespaceCommand = _CreatePublicDnsNamespaceCommand;
|
|
1652
1721
|
|
|
1653
1722
|
// src/commands/CreateServiceCommand.ts
|
|
1654
1723
|
|
|
1655
1724
|
|
|
1656
1725
|
|
|
1657
|
-
var
|
|
1726
|
+
var CreateServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1658
1727
|
return [
|
|
1659
1728
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1660
1729
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1661
1730
|
];
|
|
1662
1731
|
}).s("Route53AutoNaming_v20170314", "CreateService", {}).n("ServiceDiscoveryClient", "CreateServiceCommand").f(void 0, void 0).ser(se_CreateServiceCommand).de(de_CreateServiceCommand).build() {
|
|
1732
|
+
static {
|
|
1733
|
+
__name(this, "CreateServiceCommand");
|
|
1734
|
+
}
|
|
1663
1735
|
};
|
|
1664
|
-
__name(_CreateServiceCommand, "CreateServiceCommand");
|
|
1665
|
-
var CreateServiceCommand = _CreateServiceCommand;
|
|
1666
1736
|
|
|
1667
1737
|
// src/commands/DeleteNamespaceCommand.ts
|
|
1668
1738
|
|
|
1669
1739
|
|
|
1670
1740
|
|
|
1671
|
-
var
|
|
1741
|
+
var DeleteNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1672
1742
|
return [
|
|
1673
1743
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1674
1744
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1675
1745
|
];
|
|
1676
1746
|
}).s("Route53AutoNaming_v20170314", "DeleteNamespace", {}).n("ServiceDiscoveryClient", "DeleteNamespaceCommand").f(void 0, void 0).ser(se_DeleteNamespaceCommand).de(de_DeleteNamespaceCommand).build() {
|
|
1747
|
+
static {
|
|
1748
|
+
__name(this, "DeleteNamespaceCommand");
|
|
1749
|
+
}
|
|
1677
1750
|
};
|
|
1678
|
-
__name(_DeleteNamespaceCommand, "DeleteNamespaceCommand");
|
|
1679
|
-
var DeleteNamespaceCommand = _DeleteNamespaceCommand;
|
|
1680
1751
|
|
|
1681
1752
|
// src/commands/DeleteServiceAttributesCommand.ts
|
|
1682
1753
|
|
|
1683
1754
|
|
|
1684
1755
|
|
|
1685
|
-
var
|
|
1756
|
+
var DeleteServiceAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1686
1757
|
return [
|
|
1687
1758
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1688
1759
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1689
1760
|
];
|
|
1690
1761
|
}).s("Route53AutoNaming_v20170314", "DeleteServiceAttributes", {}).n("ServiceDiscoveryClient", "DeleteServiceAttributesCommand").f(void 0, void 0).ser(se_DeleteServiceAttributesCommand).de(de_DeleteServiceAttributesCommand).build() {
|
|
1762
|
+
static {
|
|
1763
|
+
__name(this, "DeleteServiceAttributesCommand");
|
|
1764
|
+
}
|
|
1691
1765
|
};
|
|
1692
|
-
__name(_DeleteServiceAttributesCommand, "DeleteServiceAttributesCommand");
|
|
1693
|
-
var DeleteServiceAttributesCommand = _DeleteServiceAttributesCommand;
|
|
1694
1766
|
|
|
1695
1767
|
// src/commands/DeleteServiceCommand.ts
|
|
1696
1768
|
|
|
1697
1769
|
|
|
1698
1770
|
|
|
1699
|
-
var
|
|
1771
|
+
var DeleteServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1700
1772
|
return [
|
|
1701
1773
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1702
1774
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1703
1775
|
];
|
|
1704
1776
|
}).s("Route53AutoNaming_v20170314", "DeleteService", {}).n("ServiceDiscoveryClient", "DeleteServiceCommand").f(void 0, void 0).ser(se_DeleteServiceCommand).de(de_DeleteServiceCommand).build() {
|
|
1777
|
+
static {
|
|
1778
|
+
__name(this, "DeleteServiceCommand");
|
|
1779
|
+
}
|
|
1705
1780
|
};
|
|
1706
|
-
__name(_DeleteServiceCommand, "DeleteServiceCommand");
|
|
1707
|
-
var DeleteServiceCommand = _DeleteServiceCommand;
|
|
1708
1781
|
|
|
1709
1782
|
// src/commands/DeregisterInstanceCommand.ts
|
|
1710
1783
|
|
|
1711
1784
|
|
|
1712
1785
|
|
|
1713
|
-
var
|
|
1786
|
+
var DeregisterInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1714
1787
|
return [
|
|
1715
1788
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1716
1789
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1717
1790
|
];
|
|
1718
1791
|
}).s("Route53AutoNaming_v20170314", "DeregisterInstance", {}).n("ServiceDiscoveryClient", "DeregisterInstanceCommand").f(void 0, void 0).ser(se_DeregisterInstanceCommand).de(de_DeregisterInstanceCommand).build() {
|
|
1792
|
+
static {
|
|
1793
|
+
__name(this, "DeregisterInstanceCommand");
|
|
1794
|
+
}
|
|
1719
1795
|
};
|
|
1720
|
-
__name(_DeregisterInstanceCommand, "DeregisterInstanceCommand");
|
|
1721
|
-
var DeregisterInstanceCommand = _DeregisterInstanceCommand;
|
|
1722
1796
|
|
|
1723
1797
|
// src/commands/DiscoverInstancesCommand.ts
|
|
1724
1798
|
|
|
1725
1799
|
|
|
1726
1800
|
|
|
1727
|
-
var
|
|
1801
|
+
var DiscoverInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1728
1802
|
return [
|
|
1729
1803
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1730
1804
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1731
1805
|
];
|
|
1732
1806
|
}).s("Route53AutoNaming_v20170314", "DiscoverInstances", {}).n("ServiceDiscoveryClient", "DiscoverInstancesCommand").f(void 0, void 0).ser(se_DiscoverInstancesCommand).de(de_DiscoverInstancesCommand).build() {
|
|
1807
|
+
static {
|
|
1808
|
+
__name(this, "DiscoverInstancesCommand");
|
|
1809
|
+
}
|
|
1733
1810
|
};
|
|
1734
|
-
__name(_DiscoverInstancesCommand, "DiscoverInstancesCommand");
|
|
1735
|
-
var DiscoverInstancesCommand = _DiscoverInstancesCommand;
|
|
1736
1811
|
|
|
1737
1812
|
// src/commands/DiscoverInstancesRevisionCommand.ts
|
|
1738
1813
|
|
|
1739
1814
|
|
|
1740
1815
|
|
|
1741
|
-
var
|
|
1816
|
+
var DiscoverInstancesRevisionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1742
1817
|
return [
|
|
1743
1818
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1744
1819
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1745
1820
|
];
|
|
1746
1821
|
}).s("Route53AutoNaming_v20170314", "DiscoverInstancesRevision", {}).n("ServiceDiscoveryClient", "DiscoverInstancesRevisionCommand").f(void 0, void 0).ser(se_DiscoverInstancesRevisionCommand).de(de_DiscoverInstancesRevisionCommand).build() {
|
|
1822
|
+
static {
|
|
1823
|
+
__name(this, "DiscoverInstancesRevisionCommand");
|
|
1824
|
+
}
|
|
1747
1825
|
};
|
|
1748
|
-
__name(_DiscoverInstancesRevisionCommand, "DiscoverInstancesRevisionCommand");
|
|
1749
|
-
var DiscoverInstancesRevisionCommand = _DiscoverInstancesRevisionCommand;
|
|
1750
1826
|
|
|
1751
1827
|
// src/commands/GetInstanceCommand.ts
|
|
1752
1828
|
|
|
1753
1829
|
|
|
1754
1830
|
|
|
1755
|
-
var
|
|
1831
|
+
var GetInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1756
1832
|
return [
|
|
1757
1833
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1758
1834
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1759
1835
|
];
|
|
1760
1836
|
}).s("Route53AutoNaming_v20170314", "GetInstance", {}).n("ServiceDiscoveryClient", "GetInstanceCommand").f(void 0, void 0).ser(se_GetInstanceCommand).de(de_GetInstanceCommand).build() {
|
|
1837
|
+
static {
|
|
1838
|
+
__name(this, "GetInstanceCommand");
|
|
1839
|
+
}
|
|
1761
1840
|
};
|
|
1762
|
-
__name(_GetInstanceCommand, "GetInstanceCommand");
|
|
1763
|
-
var GetInstanceCommand = _GetInstanceCommand;
|
|
1764
1841
|
|
|
1765
1842
|
// src/commands/GetInstancesHealthStatusCommand.ts
|
|
1766
1843
|
|
|
1767
1844
|
|
|
1768
1845
|
|
|
1769
|
-
var
|
|
1846
|
+
var GetInstancesHealthStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1770
1847
|
return [
|
|
1771
1848
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1772
1849
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1773
1850
|
];
|
|
1774
1851
|
}).s("Route53AutoNaming_v20170314", "GetInstancesHealthStatus", {}).n("ServiceDiscoveryClient", "GetInstancesHealthStatusCommand").f(void 0, void 0).ser(se_GetInstancesHealthStatusCommand).de(de_GetInstancesHealthStatusCommand).build() {
|
|
1852
|
+
static {
|
|
1853
|
+
__name(this, "GetInstancesHealthStatusCommand");
|
|
1854
|
+
}
|
|
1775
1855
|
};
|
|
1776
|
-
__name(_GetInstancesHealthStatusCommand, "GetInstancesHealthStatusCommand");
|
|
1777
|
-
var GetInstancesHealthStatusCommand = _GetInstancesHealthStatusCommand;
|
|
1778
1856
|
|
|
1779
1857
|
// src/commands/GetNamespaceCommand.ts
|
|
1780
1858
|
|
|
1781
1859
|
|
|
1782
1860
|
|
|
1783
|
-
var
|
|
1861
|
+
var GetNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1784
1862
|
return [
|
|
1785
1863
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1786
1864
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1787
1865
|
];
|
|
1788
1866
|
}).s("Route53AutoNaming_v20170314", "GetNamespace", {}).n("ServiceDiscoveryClient", "GetNamespaceCommand").f(void 0, void 0).ser(se_GetNamespaceCommand).de(de_GetNamespaceCommand).build() {
|
|
1867
|
+
static {
|
|
1868
|
+
__name(this, "GetNamespaceCommand");
|
|
1869
|
+
}
|
|
1789
1870
|
};
|
|
1790
|
-
__name(_GetNamespaceCommand, "GetNamespaceCommand");
|
|
1791
|
-
var GetNamespaceCommand = _GetNamespaceCommand;
|
|
1792
1871
|
|
|
1793
1872
|
// src/commands/GetOperationCommand.ts
|
|
1794
1873
|
|
|
1795
1874
|
|
|
1796
1875
|
|
|
1797
|
-
var
|
|
1876
|
+
var GetOperationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1798
1877
|
return [
|
|
1799
1878
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1800
1879
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1801
1880
|
];
|
|
1802
1881
|
}).s("Route53AutoNaming_v20170314", "GetOperation", {}).n("ServiceDiscoveryClient", "GetOperationCommand").f(void 0, void 0).ser(se_GetOperationCommand).de(de_GetOperationCommand).build() {
|
|
1882
|
+
static {
|
|
1883
|
+
__name(this, "GetOperationCommand");
|
|
1884
|
+
}
|
|
1803
1885
|
};
|
|
1804
|
-
__name(_GetOperationCommand, "GetOperationCommand");
|
|
1805
|
-
var GetOperationCommand = _GetOperationCommand;
|
|
1806
1886
|
|
|
1807
1887
|
// src/commands/GetServiceAttributesCommand.ts
|
|
1808
1888
|
|
|
1809
1889
|
|
|
1810
1890
|
|
|
1811
|
-
var
|
|
1891
|
+
var GetServiceAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1812
1892
|
return [
|
|
1813
1893
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1814
1894
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1815
1895
|
];
|
|
1816
1896
|
}).s("Route53AutoNaming_v20170314", "GetServiceAttributes", {}).n("ServiceDiscoveryClient", "GetServiceAttributesCommand").f(void 0, void 0).ser(se_GetServiceAttributesCommand).de(de_GetServiceAttributesCommand).build() {
|
|
1897
|
+
static {
|
|
1898
|
+
__name(this, "GetServiceAttributesCommand");
|
|
1899
|
+
}
|
|
1817
1900
|
};
|
|
1818
|
-
__name(_GetServiceAttributesCommand, "GetServiceAttributesCommand");
|
|
1819
|
-
var GetServiceAttributesCommand = _GetServiceAttributesCommand;
|
|
1820
1901
|
|
|
1821
1902
|
// src/commands/GetServiceCommand.ts
|
|
1822
1903
|
|
|
1823
1904
|
|
|
1824
1905
|
|
|
1825
|
-
var
|
|
1906
|
+
var GetServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1826
1907
|
return [
|
|
1827
1908
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1828
1909
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1829
1910
|
];
|
|
1830
1911
|
}).s("Route53AutoNaming_v20170314", "GetService", {}).n("ServiceDiscoveryClient", "GetServiceCommand").f(void 0, void 0).ser(se_GetServiceCommand).de(de_GetServiceCommand).build() {
|
|
1912
|
+
static {
|
|
1913
|
+
__name(this, "GetServiceCommand");
|
|
1914
|
+
}
|
|
1831
1915
|
};
|
|
1832
|
-
__name(_GetServiceCommand, "GetServiceCommand");
|
|
1833
|
-
var GetServiceCommand = _GetServiceCommand;
|
|
1834
1916
|
|
|
1835
1917
|
// src/commands/ListInstancesCommand.ts
|
|
1836
1918
|
|
|
1837
1919
|
|
|
1838
1920
|
|
|
1839
|
-
var
|
|
1921
|
+
var ListInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1840
1922
|
return [
|
|
1841
1923
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1842
1924
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1843
1925
|
];
|
|
1844
1926
|
}).s("Route53AutoNaming_v20170314", "ListInstances", {}).n("ServiceDiscoveryClient", "ListInstancesCommand").f(void 0, void 0).ser(se_ListInstancesCommand).de(de_ListInstancesCommand).build() {
|
|
1927
|
+
static {
|
|
1928
|
+
__name(this, "ListInstancesCommand");
|
|
1929
|
+
}
|
|
1845
1930
|
};
|
|
1846
|
-
__name(_ListInstancesCommand, "ListInstancesCommand");
|
|
1847
|
-
var ListInstancesCommand = _ListInstancesCommand;
|
|
1848
1931
|
|
|
1849
1932
|
// src/commands/ListNamespacesCommand.ts
|
|
1850
1933
|
|
|
1851
1934
|
|
|
1852
1935
|
|
|
1853
|
-
var
|
|
1936
|
+
var ListNamespacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1854
1937
|
return [
|
|
1855
1938
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1856
1939
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1857
1940
|
];
|
|
1858
1941
|
}).s("Route53AutoNaming_v20170314", "ListNamespaces", {}).n("ServiceDiscoveryClient", "ListNamespacesCommand").f(void 0, void 0).ser(se_ListNamespacesCommand).de(de_ListNamespacesCommand).build() {
|
|
1942
|
+
static {
|
|
1943
|
+
__name(this, "ListNamespacesCommand");
|
|
1944
|
+
}
|
|
1859
1945
|
};
|
|
1860
|
-
__name(_ListNamespacesCommand, "ListNamespacesCommand");
|
|
1861
|
-
var ListNamespacesCommand = _ListNamespacesCommand;
|
|
1862
1946
|
|
|
1863
1947
|
// src/commands/ListOperationsCommand.ts
|
|
1864
1948
|
|
|
1865
1949
|
|
|
1866
1950
|
|
|
1867
|
-
var
|
|
1951
|
+
var ListOperationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1868
1952
|
return [
|
|
1869
1953
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1870
1954
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1871
1955
|
];
|
|
1872
1956
|
}).s("Route53AutoNaming_v20170314", "ListOperations", {}).n("ServiceDiscoveryClient", "ListOperationsCommand").f(void 0, void 0).ser(se_ListOperationsCommand).de(de_ListOperationsCommand).build() {
|
|
1957
|
+
static {
|
|
1958
|
+
__name(this, "ListOperationsCommand");
|
|
1959
|
+
}
|
|
1873
1960
|
};
|
|
1874
|
-
__name(_ListOperationsCommand, "ListOperationsCommand");
|
|
1875
|
-
var ListOperationsCommand = _ListOperationsCommand;
|
|
1876
1961
|
|
|
1877
1962
|
// src/commands/ListServicesCommand.ts
|
|
1878
1963
|
|
|
1879
1964
|
|
|
1880
1965
|
|
|
1881
|
-
var
|
|
1966
|
+
var ListServicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1882
1967
|
return [
|
|
1883
1968
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1884
1969
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1885
1970
|
];
|
|
1886
1971
|
}).s("Route53AutoNaming_v20170314", "ListServices", {}).n("ServiceDiscoveryClient", "ListServicesCommand").f(void 0, void 0).ser(se_ListServicesCommand).de(de_ListServicesCommand).build() {
|
|
1972
|
+
static {
|
|
1973
|
+
__name(this, "ListServicesCommand");
|
|
1974
|
+
}
|
|
1887
1975
|
};
|
|
1888
|
-
__name(_ListServicesCommand, "ListServicesCommand");
|
|
1889
|
-
var ListServicesCommand = _ListServicesCommand;
|
|
1890
1976
|
|
|
1891
1977
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1892
1978
|
|
|
1893
1979
|
|
|
1894
1980
|
|
|
1895
|
-
var
|
|
1981
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1896
1982
|
return [
|
|
1897
1983
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1898
1984
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1899
1985
|
];
|
|
1900
1986
|
}).s("Route53AutoNaming_v20170314", "ListTagsForResource", {}).n("ServiceDiscoveryClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1987
|
+
static {
|
|
1988
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1989
|
+
}
|
|
1901
1990
|
};
|
|
1902
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1903
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1904
1991
|
|
|
1905
1992
|
// src/commands/RegisterInstanceCommand.ts
|
|
1906
1993
|
|
|
1907
1994
|
|
|
1908
1995
|
|
|
1909
|
-
var
|
|
1996
|
+
var RegisterInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1910
1997
|
return [
|
|
1911
1998
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1912
1999
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1913
2000
|
];
|
|
1914
2001
|
}).s("Route53AutoNaming_v20170314", "RegisterInstance", {}).n("ServiceDiscoveryClient", "RegisterInstanceCommand").f(void 0, void 0).ser(se_RegisterInstanceCommand).de(de_RegisterInstanceCommand).build() {
|
|
2002
|
+
static {
|
|
2003
|
+
__name(this, "RegisterInstanceCommand");
|
|
2004
|
+
}
|
|
1915
2005
|
};
|
|
1916
|
-
__name(_RegisterInstanceCommand, "RegisterInstanceCommand");
|
|
1917
|
-
var RegisterInstanceCommand = _RegisterInstanceCommand;
|
|
1918
2006
|
|
|
1919
2007
|
// src/commands/TagResourceCommand.ts
|
|
1920
2008
|
|
|
1921
2009
|
|
|
1922
2010
|
|
|
1923
|
-
var
|
|
2011
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1924
2012
|
return [
|
|
1925
2013
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1926
2014
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1927
2015
|
];
|
|
1928
2016
|
}).s("Route53AutoNaming_v20170314", "TagResource", {}).n("ServiceDiscoveryClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2017
|
+
static {
|
|
2018
|
+
__name(this, "TagResourceCommand");
|
|
2019
|
+
}
|
|
1929
2020
|
};
|
|
1930
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1931
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1932
2021
|
|
|
1933
2022
|
// src/commands/UntagResourceCommand.ts
|
|
1934
2023
|
|
|
1935
2024
|
|
|
1936
2025
|
|
|
1937
|
-
var
|
|
2026
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1938
2027
|
return [
|
|
1939
2028
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1940
2029
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1941
2030
|
];
|
|
1942
2031
|
}).s("Route53AutoNaming_v20170314", "UntagResource", {}).n("ServiceDiscoveryClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2032
|
+
static {
|
|
2033
|
+
__name(this, "UntagResourceCommand");
|
|
2034
|
+
}
|
|
1943
2035
|
};
|
|
1944
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1945
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1946
2036
|
|
|
1947
2037
|
// src/commands/UpdateHttpNamespaceCommand.ts
|
|
1948
2038
|
|
|
1949
2039
|
|
|
1950
2040
|
|
|
1951
|
-
var
|
|
2041
|
+
var UpdateHttpNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1952
2042
|
return [
|
|
1953
2043
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1954
2044
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1955
2045
|
];
|
|
1956
2046
|
}).s("Route53AutoNaming_v20170314", "UpdateHttpNamespace", {}).n("ServiceDiscoveryClient", "UpdateHttpNamespaceCommand").f(void 0, void 0).ser(se_UpdateHttpNamespaceCommand).de(de_UpdateHttpNamespaceCommand).build() {
|
|
2047
|
+
static {
|
|
2048
|
+
__name(this, "UpdateHttpNamespaceCommand");
|
|
2049
|
+
}
|
|
1957
2050
|
};
|
|
1958
|
-
__name(_UpdateHttpNamespaceCommand, "UpdateHttpNamespaceCommand");
|
|
1959
|
-
var UpdateHttpNamespaceCommand = _UpdateHttpNamespaceCommand;
|
|
1960
2051
|
|
|
1961
2052
|
// src/commands/UpdateInstanceCustomHealthStatusCommand.ts
|
|
1962
2053
|
|
|
1963
2054
|
|
|
1964
2055
|
|
|
1965
|
-
var
|
|
2056
|
+
var UpdateInstanceCustomHealthStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1966
2057
|
return [
|
|
1967
2058
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1968
2059
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1969
2060
|
];
|
|
1970
2061
|
}).s("Route53AutoNaming_v20170314", "UpdateInstanceCustomHealthStatus", {}).n("ServiceDiscoveryClient", "UpdateInstanceCustomHealthStatusCommand").f(void 0, void 0).ser(se_UpdateInstanceCustomHealthStatusCommand).de(de_UpdateInstanceCustomHealthStatusCommand).build() {
|
|
2062
|
+
static {
|
|
2063
|
+
__name(this, "UpdateInstanceCustomHealthStatusCommand");
|
|
2064
|
+
}
|
|
1971
2065
|
};
|
|
1972
|
-
__name(_UpdateInstanceCustomHealthStatusCommand, "UpdateInstanceCustomHealthStatusCommand");
|
|
1973
|
-
var UpdateInstanceCustomHealthStatusCommand = _UpdateInstanceCustomHealthStatusCommand;
|
|
1974
2066
|
|
|
1975
2067
|
// src/commands/UpdatePrivateDnsNamespaceCommand.ts
|
|
1976
2068
|
|
|
1977
2069
|
|
|
1978
2070
|
|
|
1979
|
-
var
|
|
2071
|
+
var UpdatePrivateDnsNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1980
2072
|
return [
|
|
1981
2073
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1982
2074
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1983
2075
|
];
|
|
1984
2076
|
}).s("Route53AutoNaming_v20170314", "UpdatePrivateDnsNamespace", {}).n("ServiceDiscoveryClient", "UpdatePrivateDnsNamespaceCommand").f(void 0, void 0).ser(se_UpdatePrivateDnsNamespaceCommand).de(de_UpdatePrivateDnsNamespaceCommand).build() {
|
|
2077
|
+
static {
|
|
2078
|
+
__name(this, "UpdatePrivateDnsNamespaceCommand");
|
|
2079
|
+
}
|
|
1985
2080
|
};
|
|
1986
|
-
__name(_UpdatePrivateDnsNamespaceCommand, "UpdatePrivateDnsNamespaceCommand");
|
|
1987
|
-
var UpdatePrivateDnsNamespaceCommand = _UpdatePrivateDnsNamespaceCommand;
|
|
1988
2081
|
|
|
1989
2082
|
// src/commands/UpdatePublicDnsNamespaceCommand.ts
|
|
1990
2083
|
|
|
1991
2084
|
|
|
1992
2085
|
|
|
1993
|
-
var
|
|
2086
|
+
var UpdatePublicDnsNamespaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1994
2087
|
return [
|
|
1995
2088
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1996
2089
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1997
2090
|
];
|
|
1998
2091
|
}).s("Route53AutoNaming_v20170314", "UpdatePublicDnsNamespace", {}).n("ServiceDiscoveryClient", "UpdatePublicDnsNamespaceCommand").f(void 0, void 0).ser(se_UpdatePublicDnsNamespaceCommand).de(de_UpdatePublicDnsNamespaceCommand).build() {
|
|
2092
|
+
static {
|
|
2093
|
+
__name(this, "UpdatePublicDnsNamespaceCommand");
|
|
2094
|
+
}
|
|
1999
2095
|
};
|
|
2000
|
-
__name(_UpdatePublicDnsNamespaceCommand, "UpdatePublicDnsNamespaceCommand");
|
|
2001
|
-
var UpdatePublicDnsNamespaceCommand = _UpdatePublicDnsNamespaceCommand;
|
|
2002
2096
|
|
|
2003
2097
|
// src/commands/UpdateServiceAttributesCommand.ts
|
|
2004
2098
|
|
|
2005
2099
|
|
|
2006
2100
|
|
|
2007
|
-
var
|
|
2101
|
+
var UpdateServiceAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2008
2102
|
return [
|
|
2009
2103
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2010
2104
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2011
2105
|
];
|
|
2012
2106
|
}).s("Route53AutoNaming_v20170314", "UpdateServiceAttributes", {}).n("ServiceDiscoveryClient", "UpdateServiceAttributesCommand").f(void 0, void 0).ser(se_UpdateServiceAttributesCommand).de(de_UpdateServiceAttributesCommand).build() {
|
|
2107
|
+
static {
|
|
2108
|
+
__name(this, "UpdateServiceAttributesCommand");
|
|
2109
|
+
}
|
|
2013
2110
|
};
|
|
2014
|
-
__name(_UpdateServiceAttributesCommand, "UpdateServiceAttributesCommand");
|
|
2015
|
-
var UpdateServiceAttributesCommand = _UpdateServiceAttributesCommand;
|
|
2016
2111
|
|
|
2017
2112
|
// src/commands/UpdateServiceCommand.ts
|
|
2018
2113
|
|
|
2019
2114
|
|
|
2020
2115
|
|
|
2021
|
-
var
|
|
2116
|
+
var UpdateServiceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2022
2117
|
return [
|
|
2023
2118
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2024
2119
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2025
2120
|
];
|
|
2026
2121
|
}).s("Route53AutoNaming_v20170314", "UpdateService", {}).n("ServiceDiscoveryClient", "UpdateServiceCommand").f(void 0, void 0).ser(se_UpdateServiceCommand).de(de_UpdateServiceCommand).build() {
|
|
2122
|
+
static {
|
|
2123
|
+
__name(this, "UpdateServiceCommand");
|
|
2124
|
+
}
|
|
2027
2125
|
};
|
|
2028
|
-
__name(_UpdateServiceCommand, "UpdateServiceCommand");
|
|
2029
|
-
var UpdateServiceCommand = _UpdateServiceCommand;
|
|
2030
2126
|
|
|
2031
2127
|
// src/ServiceDiscovery.ts
|
|
2032
2128
|
var commands = {
|
|
@@ -2061,10 +2157,11 @@ var commands = {
|
|
|
2061
2157
|
UpdateServiceCommand,
|
|
2062
2158
|
UpdateServiceAttributesCommand
|
|
2063
2159
|
};
|
|
2064
|
-
var
|
|
2160
|
+
var ServiceDiscovery = class extends ServiceDiscoveryClient {
|
|
2161
|
+
static {
|
|
2162
|
+
__name(this, "ServiceDiscovery");
|
|
2163
|
+
}
|
|
2065
2164
|
};
|
|
2066
|
-
__name(_ServiceDiscovery, "ServiceDiscovery");
|
|
2067
|
-
var ServiceDiscovery = _ServiceDiscovery;
|
|
2068
2165
|
(0, import_smithy_client.createAggregatedClient)(commands, ServiceDiscovery);
|
|
2069
2166
|
|
|
2070
2167
|
// src/pagination/GetInstancesHealthStatusPaginator.ts
|