@aws-sdk/client-servicediscovery 3.296.0 → 3.297.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-types/ServiceDiscovery.d.ts +27 -0
- package/dist-types/ServiceDiscoveryClient.d.ts +24 -4
- package/dist-types/commands/CreateHttpNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreatePrivateDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreatePublicDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverInstancesCommand.d.ts +16 -0
- package/dist-types/commands/GetInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetInstancesHealthStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/GetOperationCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceCommand.d.ts +16 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterInstanceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHttpNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePrivateDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePublicDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/models/ServiceDiscoveryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +251 -1
- package/dist-types/pagination/GetInstancesHealthStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes one or more tags from the specified resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
62
69
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
|
|
63
70
|
readonly input: UntagResourceCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: UntagResourceCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateHttpNamespaceRequest, UpdateHttpNamespaceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateHttpNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateHttpNamespaceCommandInput extends UpdateHttpNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateHttpNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateHttpNamespaceCommandOutput extends UpdateHttpNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an HTTP
|
|
18
23
|
* namespace.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateHttpNamespaceCommandOutput extends UpdateHttpNamespaceRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateHttpNamespaceCommandInput - {@link UpdateHttpNamespaceCommandInput}
|
|
35
|
+
* @returns {@link UpdateHttpNamespaceCommandOutput}
|
|
29
36
|
* @see {@link UpdateHttpNamespaceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateHttpNamespaceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface UpdateHttpNamespaceCommandOutput extends UpdateHttpNamespaceRes
|
|
|
55
62
|
export declare class UpdateHttpNamespaceCommand extends $Command<UpdateHttpNamespaceCommandInput, UpdateHttpNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
|
|
56
63
|
readonly input: UpdateHttpNamespaceCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: UpdateHttpNamespaceCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateHttpNamespaceCommandInput, UpdateHttpNamespaceCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateInstanceCustomHealthStatusRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateInstanceCustomHealthStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateInstanceCustomHealthStatusCommandInput extends UpdateInstanceCustomHealthStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateInstanceCustomHealthStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateInstanceCustomHealthStatusCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Submits a request to change the health status of a custom health check to healthy or
|
|
18
23
|
* unhealthy.</p>
|
|
19
24
|
* <p>You can use <code>UpdateInstanceCustomHealthStatus</code> to change the status only for
|
|
@@ -31,6 +36,8 @@ export interface UpdateInstanceCustomHealthStatusCommandOutput extends __Metadat
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param UpdateInstanceCustomHealthStatusCommandInput - {@link UpdateInstanceCustomHealthStatusCommandInput}
|
|
40
|
+
* @returns {@link UpdateInstanceCustomHealthStatusCommandOutput}
|
|
34
41
|
* @see {@link UpdateInstanceCustomHealthStatusCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link UpdateInstanceCustomHealthStatusCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface UpdateInstanceCustomHealthStatusCommandOutput extends __Metadat
|
|
|
74
81
|
export declare class UpdateInstanceCustomHealthStatusCommand extends $Command<UpdateInstanceCustomHealthStatusCommandInput, UpdateInstanceCustomHealthStatusCommandOutput, ServiceDiscoveryClientResolvedConfig> {
|
|
75
82
|
readonly input: UpdateInstanceCustomHealthStatusCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: UpdateInstanceCustomHealthStatusCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateInstanceCustomHealthStatusCommandInput, UpdateInstanceCustomHealthStatusCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdatePrivateDnsNamespaceRequest, UpdatePrivateDnsNamespaceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdatePrivateDnsNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdatePrivateDnsNamespaceCommandInput extends UpdatePrivateDnsNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdatePrivateDnsNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdatePrivateDnsNamespaceCommandOutput extends UpdatePrivateDnsNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a private DNS
|
|
18
23
|
* namespace.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdatePrivateDnsNamespaceCommandOutput extends UpdatePrivateDns
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdatePrivateDnsNamespaceCommandInput - {@link UpdatePrivateDnsNamespaceCommandInput}
|
|
35
|
+
* @returns {@link UpdatePrivateDnsNamespaceCommandOutput}
|
|
29
36
|
* @see {@link UpdatePrivateDnsNamespaceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdatePrivateDnsNamespaceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface UpdatePrivateDnsNamespaceCommandOutput extends UpdatePrivateDns
|
|
|
55
62
|
export declare class UpdatePrivateDnsNamespaceCommand extends $Command<UpdatePrivateDnsNamespaceCommandInput, UpdatePrivateDnsNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
|
|
56
63
|
readonly input: UpdatePrivateDnsNamespaceCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: UpdatePrivateDnsNamespaceCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePrivateDnsNamespaceCommandInput, UpdatePrivateDnsNamespaceCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdatePublicDnsNamespaceRequest, UpdatePublicDnsNamespaceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdatePublicDnsNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdatePublicDnsNamespaceCommandInput extends UpdatePublicDnsNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdatePublicDnsNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdatePublicDnsNamespaceCommandOutput extends UpdatePublicDnsNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a public DNS
|
|
18
23
|
* namespace.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdatePublicDnsNamespaceCommandOutput extends UpdatePublicDnsNa
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdatePublicDnsNamespaceCommandInput - {@link UpdatePublicDnsNamespaceCommandInput}
|
|
35
|
+
* @returns {@link UpdatePublicDnsNamespaceCommandOutput}
|
|
29
36
|
* @see {@link UpdatePublicDnsNamespaceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdatePublicDnsNamespaceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface UpdatePublicDnsNamespaceCommandOutput extends UpdatePublicDnsNa
|
|
|
55
62
|
export declare class UpdatePublicDnsNamespaceCommand extends $Command<UpdatePublicDnsNamespaceCommandInput, UpdatePublicDnsNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
|
|
56
63
|
readonly input: UpdatePublicDnsNamespaceCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: UpdatePublicDnsNamespaceCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePublicDnsNamespaceCommandInput, UpdatePublicDnsNamespaceCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateServiceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateServiceCommandInput extends UpdateServiceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateServiceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Submits a request to perform the following operations:</p>
|
|
18
23
|
* <ul>
|
|
19
24
|
* <li>
|
|
@@ -51,6 +56,8 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
|
|
|
51
56
|
* const response = await client.send(command);
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
59
|
+
* @param UpdateServiceCommandInput - {@link UpdateServiceCommandInput}
|
|
60
|
+
* @returns {@link UpdateServiceCommandOutput}
|
|
54
61
|
* @see {@link UpdateServiceCommandInput} for command's `input` shape.
|
|
55
62
|
* @see {@link UpdateServiceCommandOutput} for command's `response` shape.
|
|
56
63
|
* @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
|
|
@@ -107,11 +114,20 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
|
|
|
107
114
|
export declare class UpdateServiceCommand extends $Command<UpdateServiceCommandInput, UpdateServiceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
|
|
108
115
|
readonly input: UpdateServiceCommandInput;
|
|
109
116
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
110
120
|
constructor(input: UpdateServiceCommandInput);
|
|
111
121
|
/**
|
|
112
122
|
* @internal
|
|
113
123
|
*/
|
|
114
124
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateServiceCommandInput, UpdateServiceCommandOutput>;
|
|
125
|
+
/**
|
|
126
|
+
* @internal
|
|
127
|
+
*/
|
|
115
128
|
private serialize;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
116
132
|
private deserialize;
|
|
117
133
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from ServiceDiscovery service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ServiceDiscoveryServiceException extends __ServiceException {
|