@aws-sdk/client-servicediscovery 3.168.0 → 3.170.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 (48) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ServiceDiscovery.d.ts +472 -135
  3. package/dist-types/ts3.4/ServiceDiscoveryClient.d.ts +286 -99
  4. package/dist-types/ts3.4/commands/CreateHttpNamespaceCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreatePrivateDnsNamespaceCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreatePublicDnsNamespaceCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DeregisterInstanceCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DiscoverInstancesCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetInstancesHealthStatusCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/RegisterInstanceCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/UpdateHttpNamespaceCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdatePrivateDnsNamespaceCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdatePublicDnsNamespaceCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +6 -6
  33. package/dist-types/ts3.4/models/ServiceDiscoveryServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +1083 -1001
  36. package/dist-types/ts3.4/pagination/GetInstancesHealthStatusPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListInstancesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  43. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +317 -80
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  48. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {
6
- }
7
- export interface DeleteNamespaceCommandOutput extends DeleteNamespaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteNamespaceCommand extends $Command<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: DeleteNamespaceCommandInput;
12
- constructor(input: DeleteNamespaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteNamespaceRequest,
10
+ DeleteNamespaceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceDiscoveryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceDiscoveryClient";
17
+ export interface DeleteNamespaceCommandInput extends DeleteNamespaceRequest {}
18
+ export interface DeleteNamespaceCommandOutput
19
+ extends DeleteNamespaceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteNamespaceCommand extends $Command<
23
+ DeleteNamespaceCommandInput,
24
+ DeleteNamespaceCommandOutput,
25
+ ServiceDiscoveryClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteNamespaceCommandInput;
28
+ constructor(input: DeleteNamespaceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceDiscoveryClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface DeleteServiceCommandInput extends DeleteServiceRequest {
6
- }
7
- export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: DeleteServiceCommandInput;
12
- constructor(input: DeleteServiceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteServiceCommandInput, DeleteServiceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteServiceRequest,
10
+ DeleteServiceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceDiscoveryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceDiscoveryClient";
17
+ export interface DeleteServiceCommandInput extends DeleteServiceRequest {}
18
+ export interface DeleteServiceCommandOutput
19
+ extends DeleteServiceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteServiceCommand extends $Command<
23
+ DeleteServiceCommandInput,
24
+ DeleteServiceCommandOutput,
25
+ ServiceDiscoveryClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteServiceCommandInput;
28
+ constructor(input: DeleteServiceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceDiscoveryClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteServiceCommandInput, DeleteServiceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DeregisterInstanceRequest, DeregisterInstanceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface DeregisterInstanceCommandInput extends DeregisterInstanceRequest {
6
- }
7
- export interface DeregisterInstanceCommandOutput extends DeregisterInstanceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeregisterInstanceCommand extends $Command<DeregisterInstanceCommandInput, DeregisterInstanceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: DeregisterInstanceCommandInput;
12
- constructor(input: DeregisterInstanceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterInstanceCommandInput, DeregisterInstanceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeregisterInstanceRequest,
10
+ DeregisterInstanceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceDiscoveryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceDiscoveryClient";
17
+ export interface DeregisterInstanceCommandInput
18
+ extends DeregisterInstanceRequest {}
19
+ export interface DeregisterInstanceCommandOutput
20
+ extends DeregisterInstanceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeregisterInstanceCommand extends $Command<
24
+ DeregisterInstanceCommandInput,
25
+ DeregisterInstanceCommandOutput,
26
+ ServiceDiscoveryClientResolvedConfig
27
+ > {
28
+ readonly input: DeregisterInstanceCommandInput;
29
+ constructor(input: DeregisterInstanceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceDiscoveryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeregisterInstanceCommandInput, DeregisterInstanceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DiscoverInstancesRequest, DiscoverInstancesResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface DiscoverInstancesCommandInput extends DiscoverInstancesRequest {
6
- }
7
- export interface DiscoverInstancesCommandOutput extends DiscoverInstancesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DiscoverInstancesCommand extends $Command<DiscoverInstancesCommandInput, DiscoverInstancesCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: DiscoverInstancesCommandInput;
12
- constructor(input: DiscoverInstancesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DiscoverInstancesCommandInput, DiscoverInstancesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DiscoverInstancesRequest,
10
+ DiscoverInstancesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceDiscoveryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceDiscoveryClient";
17
+ export interface DiscoverInstancesCommandInput
18
+ extends DiscoverInstancesRequest {}
19
+ export interface DiscoverInstancesCommandOutput
20
+ extends DiscoverInstancesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DiscoverInstancesCommand extends $Command<
24
+ DiscoverInstancesCommandInput,
25
+ DiscoverInstancesCommandOutput,
26
+ ServiceDiscoveryClientResolvedConfig
27
+ > {
28
+ readonly input: DiscoverInstancesCommandInput;
29
+ constructor(input: DiscoverInstancesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceDiscoveryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DiscoverInstancesCommandInput, DiscoverInstancesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetInstanceRequest, GetInstanceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface GetInstanceCommandInput extends GetInstanceRequest {
6
- }
7
- export interface GetInstanceCommandOutput extends GetInstanceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetInstanceCommand extends $Command<GetInstanceCommandInput, GetInstanceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: GetInstanceCommandInput;
12
- constructor(input: GetInstanceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInstanceCommandInput, GetInstanceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetInstanceRequest, GetInstanceResponse } from "../models/models_0";
9
+ import {
10
+ ServiceDiscoveryClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ServiceDiscoveryClient";
14
+ export interface GetInstanceCommandInput extends GetInstanceRequest {}
15
+ export interface GetInstanceCommandOutput
16
+ extends GetInstanceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetInstanceCommand extends $Command<
20
+ GetInstanceCommandInput,
21
+ GetInstanceCommandOutput,
22
+ ServiceDiscoveryClientResolvedConfig
23
+ > {
24
+ readonly input: GetInstanceCommandInput;
25
+ constructor(input: GetInstanceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ServiceDiscoveryClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetInstanceCommandInput, GetInstanceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetInstancesHealthStatusRequest, GetInstancesHealthStatusResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface GetInstancesHealthStatusCommandInput extends GetInstancesHealthStatusRequest {
6
- }
7
- export interface GetInstancesHealthStatusCommandOutput extends GetInstancesHealthStatusResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetInstancesHealthStatusCommand extends $Command<GetInstancesHealthStatusCommandInput, GetInstancesHealthStatusCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: GetInstancesHealthStatusCommandInput;
12
- constructor(input: GetInstancesHealthStatusCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInstancesHealthStatusCommandInput, GetInstancesHealthStatusCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetInstancesHealthStatusRequest,
10
+ GetInstancesHealthStatusResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceDiscoveryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceDiscoveryClient";
17
+ export interface GetInstancesHealthStatusCommandInput
18
+ extends GetInstancesHealthStatusRequest {}
19
+ export interface GetInstancesHealthStatusCommandOutput
20
+ extends GetInstancesHealthStatusResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetInstancesHealthStatusCommand extends $Command<
24
+ GetInstancesHealthStatusCommandInput,
25
+ GetInstancesHealthStatusCommandOutput,
26
+ ServiceDiscoveryClientResolvedConfig
27
+ > {
28
+ readonly input: GetInstancesHealthStatusCommandInput;
29
+ constructor(input: GetInstancesHealthStatusCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceDiscoveryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetInstancesHealthStatusCommandInput,
37
+ GetInstancesHealthStatusCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface GetNamespaceCommandInput extends GetNamespaceRequest {
6
- }
7
- export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetNamespaceCommand extends $Command<GetNamespaceCommandInput, GetNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: GetNamespaceCommandInput;
12
- constructor(input: GetNamespaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNamespaceCommandInput, GetNamespaceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0";
9
+ import {
10
+ ServiceDiscoveryClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ServiceDiscoveryClient";
14
+ export interface GetNamespaceCommandInput extends GetNamespaceRequest {}
15
+ export interface GetNamespaceCommandOutput
16
+ extends GetNamespaceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetNamespaceCommand extends $Command<
20
+ GetNamespaceCommandInput,
21
+ GetNamespaceCommandOutput,
22
+ ServiceDiscoveryClientResolvedConfig
23
+ > {
24
+ readonly input: GetNamespaceCommandInput;
25
+ constructor(input: GetNamespaceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ServiceDiscoveryClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetNamespaceCommandInput, GetNamespaceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetOperationRequest, GetOperationResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface GetOperationCommandInput extends GetOperationRequest {
6
- }
7
- export interface GetOperationCommandOutput extends GetOperationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetOperationCommand extends $Command<GetOperationCommandInput, GetOperationCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: GetOperationCommandInput;
12
- constructor(input: GetOperationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOperationCommandInput, GetOperationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetOperationRequest, GetOperationResponse } from "../models/models_0";
9
+ import {
10
+ ServiceDiscoveryClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ServiceDiscoveryClient";
14
+ export interface GetOperationCommandInput extends GetOperationRequest {}
15
+ export interface GetOperationCommandOutput
16
+ extends GetOperationResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetOperationCommand extends $Command<
20
+ GetOperationCommandInput,
21
+ GetOperationCommandOutput,
22
+ ServiceDiscoveryClientResolvedConfig
23
+ > {
24
+ readonly input: GetOperationCommandInput;
25
+ constructor(input: GetOperationCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ServiceDiscoveryClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetOperationCommandInput, GetOperationCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetServiceRequest, GetServiceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface GetServiceCommandInput extends GetServiceRequest {
6
- }
7
- export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetServiceCommand extends $Command<GetServiceCommandInput, GetServiceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: GetServiceCommandInput;
12
- constructor(input: GetServiceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceCommandInput, GetServiceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetServiceRequest, GetServiceResponse } from "../models/models_0";
9
+ import {
10
+ ServiceDiscoveryClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ServiceDiscoveryClient";
14
+ export interface GetServiceCommandInput extends GetServiceRequest {}
15
+ export interface GetServiceCommandOutput
16
+ extends GetServiceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetServiceCommand extends $Command<
20
+ GetServiceCommandInput,
21
+ GetServiceCommandOutput,
22
+ ServiceDiscoveryClientResolvedConfig
23
+ > {
24
+ readonly input: GetServiceCommandInput;
25
+ constructor(input: GetServiceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ServiceDiscoveryClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetServiceCommandInput, GetServiceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface ListInstancesCommandInput extends ListInstancesRequest {
6
- }
7
- export interface ListInstancesCommandOutput extends ListInstancesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListInstancesCommand extends $Command<ListInstancesCommandInput, ListInstancesCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: ListInstancesCommandInput;
12
- constructor(input: ListInstancesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInstancesCommandInput, ListInstancesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListInstancesRequest,
10
+ ListInstancesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceDiscoveryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceDiscoveryClient";
17
+ export interface ListInstancesCommandInput extends ListInstancesRequest {}
18
+ export interface ListInstancesCommandOutput
19
+ extends ListInstancesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListInstancesCommand extends $Command<
23
+ ListInstancesCommandInput,
24
+ ListInstancesCommandOutput,
25
+ ServiceDiscoveryClientResolvedConfig
26
+ > {
27
+ readonly input: ListInstancesCommandInput;
28
+ constructor(input: ListInstancesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceDiscoveryClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListInstancesCommandInput, ListInstancesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface ListNamespacesCommandInput extends ListNamespacesRequest {
6
- }
7
- export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListNamespacesCommand extends $Command<ListNamespacesCommandInput, ListNamespacesCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: ListNamespacesCommandInput;
12
- constructor(input: ListNamespacesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNamespacesCommandInput, ListNamespacesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListNamespacesRequest,
10
+ ListNamespacesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceDiscoveryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceDiscoveryClient";
17
+ export interface ListNamespacesCommandInput extends ListNamespacesRequest {}
18
+ export interface ListNamespacesCommandOutput
19
+ extends ListNamespacesResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListNamespacesCommand extends $Command<
23
+ ListNamespacesCommandInput,
24
+ ListNamespacesCommandOutput,
25
+ ServiceDiscoveryClientResolvedConfig
26
+ > {
27
+ readonly input: ListNamespacesCommandInput;
28
+ constructor(input: ListNamespacesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceDiscoveryClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListNamespacesCommandInput, ListNamespacesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }