@aws-sdk/client-servicediscovery 3.170.0 → 3.178.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/ServiceDiscovery.d.ts +0 -26
  6. package/dist-types/ts3.4/ServiceDiscoveryClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/CreateHttpNamespaceCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreatePrivateDnsNamespaceCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/CreatePublicDnsNamespaceCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DeregisterInstanceCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DiscoverInstancesCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/GetInstancesHealthStatusCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/RegisterInstanceCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/UpdateHttpNamespaceCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/UpdatePrivateDnsNamespaceCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/UpdatePublicDnsNamespaceCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/models/ServiceDiscoveryServiceException.d.ts +0 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +0 -280
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  39. package/package.json +26 -26
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-servicediscovery
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-servicediscovery
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-servicediscovery
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -104,7 +104,6 @@ import {
104
104
  UpdateServiceCommandOutput,
105
105
  } from "./commands/UpdateServiceCommand";
106
106
  import { ServiceDiscoveryClient } from "./ServiceDiscoveryClient";
107
-
108
107
  export declare class ServiceDiscovery extends ServiceDiscoveryClient {
109
108
  createHttpNamespace(
110
109
  args: CreateHttpNamespaceCommandInput,
@@ -119,7 +118,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
119
118
  options: __HttpHandlerOptions,
120
119
  cb: (err: any, data?: CreateHttpNamespaceCommandOutput) => void
121
120
  ): void;
122
-
123
121
  createPrivateDnsNamespace(
124
122
  args: CreatePrivateDnsNamespaceCommandInput,
125
123
  options?: __HttpHandlerOptions
@@ -133,7 +131,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
133
131
  options: __HttpHandlerOptions,
134
132
  cb: (err: any, data?: CreatePrivateDnsNamespaceCommandOutput) => void
135
133
  ): void;
136
-
137
134
  createPublicDnsNamespace(
138
135
  args: CreatePublicDnsNamespaceCommandInput,
139
136
  options?: __HttpHandlerOptions
@@ -147,7 +144,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
147
144
  options: __HttpHandlerOptions,
148
145
  cb: (err: any, data?: CreatePublicDnsNamespaceCommandOutput) => void
149
146
  ): void;
150
-
151
147
  createService(
152
148
  args: CreateServiceCommandInput,
153
149
  options?: __HttpHandlerOptions
@@ -161,7 +157,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
161
157
  options: __HttpHandlerOptions,
162
158
  cb: (err: any, data?: CreateServiceCommandOutput) => void
163
159
  ): void;
164
-
165
160
  deleteNamespace(
166
161
  args: DeleteNamespaceCommandInput,
167
162
  options?: __HttpHandlerOptions
@@ -175,7 +170,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
175
170
  options: __HttpHandlerOptions,
176
171
  cb: (err: any, data?: DeleteNamespaceCommandOutput) => void
177
172
  ): void;
178
-
179
173
  deleteService(
180
174
  args: DeleteServiceCommandInput,
181
175
  options?: __HttpHandlerOptions
@@ -189,7 +183,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
189
183
  options: __HttpHandlerOptions,
190
184
  cb: (err: any, data?: DeleteServiceCommandOutput) => void
191
185
  ): void;
192
-
193
186
  deregisterInstance(
194
187
  args: DeregisterInstanceCommandInput,
195
188
  options?: __HttpHandlerOptions
@@ -203,7 +196,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
203
196
  options: __HttpHandlerOptions,
204
197
  cb: (err: any, data?: DeregisterInstanceCommandOutput) => void
205
198
  ): void;
206
-
207
199
  discoverInstances(
208
200
  args: DiscoverInstancesCommandInput,
209
201
  options?: __HttpHandlerOptions
@@ -217,7 +209,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
217
209
  options: __HttpHandlerOptions,
218
210
  cb: (err: any, data?: DiscoverInstancesCommandOutput) => void
219
211
  ): void;
220
-
221
212
  getInstance(
222
213
  args: GetInstanceCommandInput,
223
214
  options?: __HttpHandlerOptions
@@ -231,7 +222,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
231
222
  options: __HttpHandlerOptions,
232
223
  cb: (err: any, data?: GetInstanceCommandOutput) => void
233
224
  ): void;
234
-
235
225
  getInstancesHealthStatus(
236
226
  args: GetInstancesHealthStatusCommandInput,
237
227
  options?: __HttpHandlerOptions
@@ -245,7 +235,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
245
235
  options: __HttpHandlerOptions,
246
236
  cb: (err: any, data?: GetInstancesHealthStatusCommandOutput) => void
247
237
  ): void;
248
-
249
238
  getNamespace(
250
239
  args: GetNamespaceCommandInput,
251
240
  options?: __HttpHandlerOptions
@@ -259,7 +248,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
259
248
  options: __HttpHandlerOptions,
260
249
  cb: (err: any, data?: GetNamespaceCommandOutput) => void
261
250
  ): void;
262
-
263
251
  getOperation(
264
252
  args: GetOperationCommandInput,
265
253
  options?: __HttpHandlerOptions
@@ -273,7 +261,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
273
261
  options: __HttpHandlerOptions,
274
262
  cb: (err: any, data?: GetOperationCommandOutput) => void
275
263
  ): void;
276
-
277
264
  getService(
278
265
  args: GetServiceCommandInput,
279
266
  options?: __HttpHandlerOptions
@@ -287,7 +274,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
287
274
  options: __HttpHandlerOptions,
288
275
  cb: (err: any, data?: GetServiceCommandOutput) => void
289
276
  ): void;
290
-
291
277
  listInstances(
292
278
  args: ListInstancesCommandInput,
293
279
  options?: __HttpHandlerOptions
@@ -301,7 +287,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
301
287
  options: __HttpHandlerOptions,
302
288
  cb: (err: any, data?: ListInstancesCommandOutput) => void
303
289
  ): void;
304
-
305
290
  listNamespaces(
306
291
  args: ListNamespacesCommandInput,
307
292
  options?: __HttpHandlerOptions
@@ -315,7 +300,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
315
300
  options: __HttpHandlerOptions,
316
301
  cb: (err: any, data?: ListNamespacesCommandOutput) => void
317
302
  ): void;
318
-
319
303
  listOperations(
320
304
  args: ListOperationsCommandInput,
321
305
  options?: __HttpHandlerOptions
@@ -329,7 +313,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
329
313
  options: __HttpHandlerOptions,
330
314
  cb: (err: any, data?: ListOperationsCommandOutput) => void
331
315
  ): void;
332
-
333
316
  listServices(
334
317
  args: ListServicesCommandInput,
335
318
  options?: __HttpHandlerOptions
@@ -343,7 +326,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
343
326
  options: __HttpHandlerOptions,
344
327
  cb: (err: any, data?: ListServicesCommandOutput) => void
345
328
  ): void;
346
-
347
329
  listTagsForResource(
348
330
  args: ListTagsForResourceCommandInput,
349
331
  options?: __HttpHandlerOptions
@@ -357,7 +339,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
357
339
  options: __HttpHandlerOptions,
358
340
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
359
341
  ): void;
360
-
361
342
  registerInstance(
362
343
  args: RegisterInstanceCommandInput,
363
344
  options?: __HttpHandlerOptions
@@ -371,7 +352,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
371
352
  options: __HttpHandlerOptions,
372
353
  cb: (err: any, data?: RegisterInstanceCommandOutput) => void
373
354
  ): void;
374
-
375
355
  tagResource(
376
356
  args: TagResourceCommandInput,
377
357
  options?: __HttpHandlerOptions
@@ -385,7 +365,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
385
365
  options: __HttpHandlerOptions,
386
366
  cb: (err: any, data?: TagResourceCommandOutput) => void
387
367
  ): void;
388
-
389
368
  untagResource(
390
369
  args: UntagResourceCommandInput,
391
370
  options?: __HttpHandlerOptions
@@ -399,7 +378,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
399
378
  options: __HttpHandlerOptions,
400
379
  cb: (err: any, data?: UntagResourceCommandOutput) => void
401
380
  ): void;
402
-
403
381
  updateHttpNamespace(
404
382
  args: UpdateHttpNamespaceCommandInput,
405
383
  options?: __HttpHandlerOptions
@@ -413,7 +391,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
413
391
  options: __HttpHandlerOptions,
414
392
  cb: (err: any, data?: UpdateHttpNamespaceCommandOutput) => void
415
393
  ): void;
416
-
417
394
  updateInstanceCustomHealthStatus(
418
395
  args: UpdateInstanceCustomHealthStatusCommandInput,
419
396
  options?: __HttpHandlerOptions
@@ -427,7 +404,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
427
404
  options: __HttpHandlerOptions,
428
405
  cb: (err: any, data?: UpdateInstanceCustomHealthStatusCommandOutput) => void
429
406
  ): void;
430
-
431
407
  updatePrivateDnsNamespace(
432
408
  args: UpdatePrivateDnsNamespaceCommandInput,
433
409
  options?: __HttpHandlerOptions
@@ -441,7 +417,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
441
417
  options: __HttpHandlerOptions,
442
418
  cb: (err: any, data?: UpdatePrivateDnsNamespaceCommandOutput) => void
443
419
  ): void;
444
-
445
420
  updatePublicDnsNamespace(
446
421
  args: UpdatePublicDnsNamespaceCommandInput,
447
422
  options?: __HttpHandlerOptions
@@ -455,7 +430,6 @@ export declare class ServiceDiscovery extends ServiceDiscoveryClient {
455
430
  options: __HttpHandlerOptions,
456
431
  cb: (err: any, data?: UpdatePublicDnsNamespaceCommandOutput) => void
457
432
  ): void;
458
-
459
433
  updateService(
460
434
  args: UpdateServiceCommandInput,
461
435
  options?: __HttpHandlerOptions
@@ -203,47 +203,26 @@ export declare type ServiceOutputTypes =
203
203
  export interface ClientDefaults
204
204
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
205
205
  requestHandler?: __HttpHandler;
206
-
207
206
  sha256?: __HashConstructor;
208
-
209
207
  urlParser?: __UrlParser;
210
-
211
208
  bodyLengthChecker?: __BodyLengthCalculator;
212
-
213
209
  streamCollector?: __StreamCollector;
214
-
215
210
  base64Decoder?: __Decoder;
216
-
217
211
  base64Encoder?: __Encoder;
218
-
219
212
  utf8Decoder?: __Decoder;
220
-
221
213
  utf8Encoder?: __Encoder;
222
-
223
214
  runtime?: string;
224
-
225
215
  disableHostPrefix?: boolean;
226
-
227
216
  maxAttempts?: number | __Provider<number>;
228
-
229
217
  retryMode?: string | __Provider<string>;
230
-
231
218
  logger?: __Logger;
232
-
233
219
  useDualstackEndpoint?: boolean | __Provider<boolean>;
234
-
235
220
  useFipsEndpoint?: boolean | __Provider<boolean>;
236
-
237
221
  serviceId?: string;
238
-
239
222
  region?: string | __Provider<string>;
240
-
241
223
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
242
-
243
224
  regionInfoProvider?: RegionInfoProvider;
244
-
245
225
  defaultUserAgentProvider?: Provider<__UserAgent>;
246
-
247
226
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
248
227
  }
249
228
  declare type ServiceDiscoveryClientConfigType = Partial<
@@ -256,7 +235,6 @@ declare type ServiceDiscoveryClientConfigType = Partial<
256
235
  HostHeaderInputConfig &
257
236
  AwsAuthInputConfig &
258
237
  UserAgentInputConfig;
259
-
260
238
  export interface ServiceDiscoveryClientConfig
261
239
  extends ServiceDiscoveryClientConfigType {}
262
240
  declare type ServiceDiscoveryClientResolvedConfigType =
@@ -268,10 +246,8 @@ declare type ServiceDiscoveryClientResolvedConfigType =
268
246
  HostHeaderResolvedConfig &
269
247
  AwsAuthResolvedConfig &
270
248
  UserAgentResolvedConfig;
271
-
272
249
  export interface ServiceDiscoveryClientResolvedConfig
273
250
  extends ServiceDiscoveryClientResolvedConfigType {}
274
-
275
251
  export declare class ServiceDiscoveryClient extends __Client<
276
252
  __HttpHandlerOptions,
277
253
  ServiceInputTypes,
@@ -280,7 +256,6 @@ export declare class ServiceDiscoveryClient extends __Client<
280
256
  > {
281
257
  readonly config: ServiceDiscoveryClientResolvedConfig;
282
258
  constructor(configuration: ServiceDiscoveryClientConfig);
283
-
284
259
  destroy(): void;
285
260
  }
286
261
  export {};
@@ -19,7 +19,6 @@ export interface CreateHttpNamespaceCommandInput
19
19
  export interface CreateHttpNamespaceCommandOutput
20
20
  extends CreateHttpNamespaceResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class CreateHttpNamespaceCommand extends $Command<
24
23
  CreateHttpNamespaceCommandInput,
25
24
  CreateHttpNamespaceCommandOutput,
@@ -27,7 +26,6 @@ export declare class CreateHttpNamespaceCommand extends $Command<
27
26
  > {
28
27
  readonly input: CreateHttpNamespaceCommandInput;
29
28
  constructor(input: CreateHttpNamespaceCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface CreatePrivateDnsNamespaceCommandInput
19
19
  export interface CreatePrivateDnsNamespaceCommandOutput
20
20
  extends CreatePrivateDnsNamespaceResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class CreatePrivateDnsNamespaceCommand extends $Command<
24
23
  CreatePrivateDnsNamespaceCommandInput,
25
24
  CreatePrivateDnsNamespaceCommandOutput,
@@ -27,7 +26,6 @@ export declare class CreatePrivateDnsNamespaceCommand extends $Command<
27
26
  > {
28
27
  readonly input: CreatePrivateDnsNamespaceCommandInput;
29
28
  constructor(input: CreatePrivateDnsNamespaceCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface CreatePublicDnsNamespaceCommandInput
19
19
  export interface CreatePublicDnsNamespaceCommandOutput
20
20
  extends CreatePublicDnsNamespaceResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class CreatePublicDnsNamespaceCommand extends $Command<
24
23
  CreatePublicDnsNamespaceCommandInput,
25
24
  CreatePublicDnsNamespaceCommandOutput,
@@ -27,7 +26,6 @@ export declare class CreatePublicDnsNamespaceCommand extends $Command<
27
26
  > {
28
27
  readonly input: CreatePublicDnsNamespaceCommandInput;
29
28
  constructor(input: CreatePublicDnsNamespaceCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface CreateServiceCommandInput extends CreateServiceRequest {}
18
18
  export interface CreateServiceCommandOutput
19
19
  extends CreateServiceResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class CreateServiceCommand extends $Command<
23
22
  CreateServiceCommandInput,
24
23
  CreateServiceCommandOutput,
@@ -26,7 +25,6 @@ export declare class CreateServiceCommand extends $Command<
26
25
  > {
27
26
  readonly input: CreateServiceCommandInput;
28
27
  constructor(input: CreateServiceCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {}
18
18
  export interface DeleteNamespaceCommandOutput
19
19
  extends DeleteNamespaceResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DeleteNamespaceCommand extends $Command<
23
22
  DeleteNamespaceCommandInput,
24
23
  DeleteNamespaceCommandOutput,
@@ -26,7 +25,6 @@ export declare class DeleteNamespaceCommand extends $Command<
26
25
  > {
27
26
  readonly input: DeleteNamespaceCommandInput;
28
27
  constructor(input: DeleteNamespaceCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface DeleteServiceCommandInput extends DeleteServiceRequest {}
18
18
  export interface DeleteServiceCommandOutput
19
19
  extends DeleteServiceResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DeleteServiceCommand extends $Command<
23
22
  DeleteServiceCommandInput,
24
23
  DeleteServiceCommandOutput,
@@ -26,7 +25,6 @@ export declare class DeleteServiceCommand extends $Command<
26
25
  > {
27
26
  readonly input: DeleteServiceCommandInput;
28
27
  constructor(input: DeleteServiceCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DeregisterInstanceCommandInput
19
19
  export interface DeregisterInstanceCommandOutput
20
20
  extends DeregisterInstanceResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DeregisterInstanceCommand extends $Command<
24
23
  DeregisterInstanceCommandInput,
25
24
  DeregisterInstanceCommandOutput,
@@ -27,7 +26,6 @@ export declare class DeregisterInstanceCommand extends $Command<
27
26
  > {
28
27
  readonly input: DeregisterInstanceCommandInput;
29
28
  constructor(input: DeregisterInstanceCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DiscoverInstancesCommandInput
19
19
  export interface DiscoverInstancesCommandOutput
20
20
  extends DiscoverInstancesResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DiscoverInstancesCommand extends $Command<
24
23
  DiscoverInstancesCommandInput,
25
24
  DiscoverInstancesCommandOutput,
@@ -27,7 +26,6 @@ export declare class DiscoverInstancesCommand extends $Command<
27
26
  > {
28
27
  readonly input: DiscoverInstancesCommandInput;
29
28
  constructor(input: DiscoverInstancesCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetInstanceCommandInput extends GetInstanceRequest {}
15
15
  export interface GetInstanceCommandOutput
16
16
  extends GetInstanceResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetInstanceCommand extends $Command<
20
19
  GetInstanceCommandInput,
21
20
  GetInstanceCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetInstanceCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetInstanceCommandInput;
25
24
  constructor(input: GetInstanceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetInstancesHealthStatusCommandInput
19
19
  export interface GetInstancesHealthStatusCommandOutput
20
20
  extends GetInstancesHealthStatusResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetInstancesHealthStatusCommand extends $Command<
24
23
  GetInstancesHealthStatusCommandInput,
25
24
  GetInstancesHealthStatusCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetInstancesHealthStatusCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetInstancesHealthStatusCommandInput;
29
28
  constructor(input: GetInstancesHealthStatusCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetNamespaceCommandInput extends GetNamespaceRequest {}
15
15
  export interface GetNamespaceCommandOutput
16
16
  extends GetNamespaceResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetNamespaceCommand extends $Command<
20
19
  GetNamespaceCommandInput,
21
20
  GetNamespaceCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetNamespaceCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetNamespaceCommandInput;
25
24
  constructor(input: GetNamespaceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetOperationCommandInput extends GetOperationRequest {}
15
15
  export interface GetOperationCommandOutput
16
16
  extends GetOperationResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetOperationCommand extends $Command<
20
19
  GetOperationCommandInput,
21
20
  GetOperationCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetOperationCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetOperationCommandInput;
25
24
  constructor(input: GetOperationCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetServiceCommandInput extends GetServiceRequest {}
15
15
  export interface GetServiceCommandOutput
16
16
  extends GetServiceResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetServiceCommand extends $Command<
20
19
  GetServiceCommandInput,
21
20
  GetServiceCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetServiceCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetServiceCommandInput;
25
24
  constructor(input: GetServiceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface ListInstancesCommandInput extends ListInstancesRequest {}
18
18
  export interface ListInstancesCommandOutput
19
19
  extends ListInstancesResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class ListInstancesCommand extends $Command<
23
22
  ListInstancesCommandInput,
24
23
  ListInstancesCommandOutput,
@@ -26,7 +25,6 @@ export declare class ListInstancesCommand extends $Command<
26
25
  > {
27
26
  readonly input: ListInstancesCommandInput;
28
27
  constructor(input: ListInstancesCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface ListNamespacesCommandInput extends ListNamespacesRequest {}
18
18
  export interface ListNamespacesCommandOutput
19
19
  extends ListNamespacesResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class ListNamespacesCommand extends $Command<
23
22
  ListNamespacesCommandInput,
24
23
  ListNamespacesCommandOutput,
@@ -26,7 +25,6 @@ export declare class ListNamespacesCommand extends $Command<
26
25
  > {
27
26
  readonly input: ListNamespacesCommandInput;
28
27
  constructor(input: ListNamespacesCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface ListOperationsCommandInput extends ListOperationsRequest {}
18
18
  export interface ListOperationsCommandOutput
19
19
  extends ListOperationsResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class ListOperationsCommand extends $Command<
23
22
  ListOperationsCommandInput,
24
23
  ListOperationsCommandOutput,
@@ -26,7 +25,6 @@ export declare class ListOperationsCommand extends $Command<
26
25
  > {
27
26
  readonly input: ListOperationsCommandInput;
28
27
  constructor(input: ListOperationsCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface ListServicesCommandInput extends ListServicesRequest {}
15
15
  export interface ListServicesCommandOutput
16
16
  extends ListServicesResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class ListServicesCommand extends $Command<
20
19
  ListServicesCommandInput,
21
20
  ListServicesCommandOutput,
@@ -23,7 +22,6 @@ export declare class ListServicesCommand extends $Command<
23
22
  > {
24
23
  readonly input: ListServicesCommandInput;
25
24
  constructor(input: ListServicesCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListTagsForResourceCommandInput
19
19
  export interface ListTagsForResourceCommandOutput
20
20
  extends ListTagsForResourceResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListTagsForResourceCommand extends $Command<
24
23
  ListTagsForResourceCommandInput,
25
24
  ListTagsForResourceCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListTagsForResourceCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListTagsForResourceCommandInput;
29
28
  constructor(input: ListTagsForResourceCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface RegisterInstanceCommandInput extends RegisterInstanceRequest {}
18
18
  export interface RegisterInstanceCommandOutput
19
19
  extends RegisterInstanceResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class RegisterInstanceCommand extends $Command<
23
22
  RegisterInstanceCommandInput,
24
23
  RegisterInstanceCommandOutput,
@@ -26,7 +25,6 @@ export declare class RegisterInstanceCommand extends $Command<
26
25
  > {
27
26
  readonly input: RegisterInstanceCommandInput;
28
27
  constructor(input: RegisterInstanceCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: ServiceDiscoveryClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
15
15
  export interface TagResourceCommandOutput
16
16
  extends TagResourceResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class TagResourceCommand extends $Command<
20
19
  TagResourceCommandInput,
21
20
  TagResourceCommandOutput,
@@ -23,7 +22,6 @@ export declare class TagResourceCommand extends $Command<
23
22
  > {
24
23
  readonly input: TagResourceCommandInput;
25
24
  constructor(input: TagResourceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: ServiceDiscoveryClientResolvedConfig,