@aws-sdk/client-servicediscovery 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ServiceDiscovery.d.ts +472 -135
- package/dist-types/ts3.4/ServiceDiscoveryClient.d.ts +286 -99
- package/dist-types/ts3.4/commands/CreateHttpNamespaceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreatePrivateDnsNamespaceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreatePublicDnsNamespaceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeregisterInstanceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DiscoverInstancesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetInstancesHealthStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RegisterInstanceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateHttpNamespaceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdatePrivateDnsNamespaceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdatePublicDnsNamespaceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ServiceDiscoveryServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1083 -1001
- package/dist-types/ts3.4/pagination/GetInstancesHealthStatusPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListInstancesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,99 +1,286 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateHttpNamespaceCommandInput,
|
|
47
|
+
CreateHttpNamespaceCommandOutput,
|
|
48
|
+
} from "./commands/CreateHttpNamespaceCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreatePrivateDnsNamespaceCommandInput,
|
|
51
|
+
CreatePrivateDnsNamespaceCommandOutput,
|
|
52
|
+
} from "./commands/CreatePrivateDnsNamespaceCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreatePublicDnsNamespaceCommandInput,
|
|
55
|
+
CreatePublicDnsNamespaceCommandOutput,
|
|
56
|
+
} from "./commands/CreatePublicDnsNamespaceCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateServiceCommandInput,
|
|
59
|
+
CreateServiceCommandOutput,
|
|
60
|
+
} from "./commands/CreateServiceCommand";
|
|
61
|
+
import {
|
|
62
|
+
DeleteNamespaceCommandInput,
|
|
63
|
+
DeleteNamespaceCommandOutput,
|
|
64
|
+
} from "./commands/DeleteNamespaceCommand";
|
|
65
|
+
import {
|
|
66
|
+
DeleteServiceCommandInput,
|
|
67
|
+
DeleteServiceCommandOutput,
|
|
68
|
+
} from "./commands/DeleteServiceCommand";
|
|
69
|
+
import {
|
|
70
|
+
DeregisterInstanceCommandInput,
|
|
71
|
+
DeregisterInstanceCommandOutput,
|
|
72
|
+
} from "./commands/DeregisterInstanceCommand";
|
|
73
|
+
import {
|
|
74
|
+
DiscoverInstancesCommandInput,
|
|
75
|
+
DiscoverInstancesCommandOutput,
|
|
76
|
+
} from "./commands/DiscoverInstancesCommand";
|
|
77
|
+
import {
|
|
78
|
+
GetInstanceCommandInput,
|
|
79
|
+
GetInstanceCommandOutput,
|
|
80
|
+
} from "./commands/GetInstanceCommand";
|
|
81
|
+
import {
|
|
82
|
+
GetInstancesHealthStatusCommandInput,
|
|
83
|
+
GetInstancesHealthStatusCommandOutput,
|
|
84
|
+
} from "./commands/GetInstancesHealthStatusCommand";
|
|
85
|
+
import {
|
|
86
|
+
GetNamespaceCommandInput,
|
|
87
|
+
GetNamespaceCommandOutput,
|
|
88
|
+
} from "./commands/GetNamespaceCommand";
|
|
89
|
+
import {
|
|
90
|
+
GetOperationCommandInput,
|
|
91
|
+
GetOperationCommandOutput,
|
|
92
|
+
} from "./commands/GetOperationCommand";
|
|
93
|
+
import {
|
|
94
|
+
GetServiceCommandInput,
|
|
95
|
+
GetServiceCommandOutput,
|
|
96
|
+
} from "./commands/GetServiceCommand";
|
|
97
|
+
import {
|
|
98
|
+
ListInstancesCommandInput,
|
|
99
|
+
ListInstancesCommandOutput,
|
|
100
|
+
} from "./commands/ListInstancesCommand";
|
|
101
|
+
import {
|
|
102
|
+
ListNamespacesCommandInput,
|
|
103
|
+
ListNamespacesCommandOutput,
|
|
104
|
+
} from "./commands/ListNamespacesCommand";
|
|
105
|
+
import {
|
|
106
|
+
ListOperationsCommandInput,
|
|
107
|
+
ListOperationsCommandOutput,
|
|
108
|
+
} from "./commands/ListOperationsCommand";
|
|
109
|
+
import {
|
|
110
|
+
ListServicesCommandInput,
|
|
111
|
+
ListServicesCommandOutput,
|
|
112
|
+
} from "./commands/ListServicesCommand";
|
|
113
|
+
import {
|
|
114
|
+
ListTagsForResourceCommandInput,
|
|
115
|
+
ListTagsForResourceCommandOutput,
|
|
116
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
117
|
+
import {
|
|
118
|
+
RegisterInstanceCommandInput,
|
|
119
|
+
RegisterInstanceCommandOutput,
|
|
120
|
+
} from "./commands/RegisterInstanceCommand";
|
|
121
|
+
import {
|
|
122
|
+
TagResourceCommandInput,
|
|
123
|
+
TagResourceCommandOutput,
|
|
124
|
+
} from "./commands/TagResourceCommand";
|
|
125
|
+
import {
|
|
126
|
+
UntagResourceCommandInput,
|
|
127
|
+
UntagResourceCommandOutput,
|
|
128
|
+
} from "./commands/UntagResourceCommand";
|
|
129
|
+
import {
|
|
130
|
+
UpdateHttpNamespaceCommandInput,
|
|
131
|
+
UpdateHttpNamespaceCommandOutput,
|
|
132
|
+
} from "./commands/UpdateHttpNamespaceCommand";
|
|
133
|
+
import {
|
|
134
|
+
UpdateInstanceCustomHealthStatusCommandInput,
|
|
135
|
+
UpdateInstanceCustomHealthStatusCommandOutput,
|
|
136
|
+
} from "./commands/UpdateInstanceCustomHealthStatusCommand";
|
|
137
|
+
import {
|
|
138
|
+
UpdatePrivateDnsNamespaceCommandInput,
|
|
139
|
+
UpdatePrivateDnsNamespaceCommandOutput,
|
|
140
|
+
} from "./commands/UpdatePrivateDnsNamespaceCommand";
|
|
141
|
+
import {
|
|
142
|
+
UpdatePublicDnsNamespaceCommandInput,
|
|
143
|
+
UpdatePublicDnsNamespaceCommandOutput,
|
|
144
|
+
} from "./commands/UpdatePublicDnsNamespaceCommand";
|
|
145
|
+
import {
|
|
146
|
+
UpdateServiceCommandInput,
|
|
147
|
+
UpdateServiceCommandOutput,
|
|
148
|
+
} from "./commands/UpdateServiceCommand";
|
|
149
|
+
export declare type ServiceInputTypes =
|
|
150
|
+
| CreateHttpNamespaceCommandInput
|
|
151
|
+
| CreatePrivateDnsNamespaceCommandInput
|
|
152
|
+
| CreatePublicDnsNamespaceCommandInput
|
|
153
|
+
| CreateServiceCommandInput
|
|
154
|
+
| DeleteNamespaceCommandInput
|
|
155
|
+
| DeleteServiceCommandInput
|
|
156
|
+
| DeregisterInstanceCommandInput
|
|
157
|
+
| DiscoverInstancesCommandInput
|
|
158
|
+
| GetInstanceCommandInput
|
|
159
|
+
| GetInstancesHealthStatusCommandInput
|
|
160
|
+
| GetNamespaceCommandInput
|
|
161
|
+
| GetOperationCommandInput
|
|
162
|
+
| GetServiceCommandInput
|
|
163
|
+
| ListInstancesCommandInput
|
|
164
|
+
| ListNamespacesCommandInput
|
|
165
|
+
| ListOperationsCommandInput
|
|
166
|
+
| ListServicesCommandInput
|
|
167
|
+
| ListTagsForResourceCommandInput
|
|
168
|
+
| RegisterInstanceCommandInput
|
|
169
|
+
| TagResourceCommandInput
|
|
170
|
+
| UntagResourceCommandInput
|
|
171
|
+
| UpdateHttpNamespaceCommandInput
|
|
172
|
+
| UpdateInstanceCustomHealthStatusCommandInput
|
|
173
|
+
| UpdatePrivateDnsNamespaceCommandInput
|
|
174
|
+
| UpdatePublicDnsNamespaceCommandInput
|
|
175
|
+
| UpdateServiceCommandInput;
|
|
176
|
+
export declare type ServiceOutputTypes =
|
|
177
|
+
| CreateHttpNamespaceCommandOutput
|
|
178
|
+
| CreatePrivateDnsNamespaceCommandOutput
|
|
179
|
+
| CreatePublicDnsNamespaceCommandOutput
|
|
180
|
+
| CreateServiceCommandOutput
|
|
181
|
+
| DeleteNamespaceCommandOutput
|
|
182
|
+
| DeleteServiceCommandOutput
|
|
183
|
+
| DeregisterInstanceCommandOutput
|
|
184
|
+
| DiscoverInstancesCommandOutput
|
|
185
|
+
| GetInstanceCommandOutput
|
|
186
|
+
| GetInstancesHealthStatusCommandOutput
|
|
187
|
+
| GetNamespaceCommandOutput
|
|
188
|
+
| GetOperationCommandOutput
|
|
189
|
+
| GetServiceCommandOutput
|
|
190
|
+
| ListInstancesCommandOutput
|
|
191
|
+
| ListNamespacesCommandOutput
|
|
192
|
+
| ListOperationsCommandOutput
|
|
193
|
+
| ListServicesCommandOutput
|
|
194
|
+
| ListTagsForResourceCommandOutput
|
|
195
|
+
| RegisterInstanceCommandOutput
|
|
196
|
+
| TagResourceCommandOutput
|
|
197
|
+
| UntagResourceCommandOutput
|
|
198
|
+
| UpdateHttpNamespaceCommandOutput
|
|
199
|
+
| UpdateInstanceCustomHealthStatusCommandOutput
|
|
200
|
+
| UpdatePrivateDnsNamespaceCommandOutput
|
|
201
|
+
| UpdatePublicDnsNamespaceCommandOutput
|
|
202
|
+
| UpdateServiceCommandOutput;
|
|
203
|
+
export interface ClientDefaults
|
|
204
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
205
|
+
requestHandler?: __HttpHandler;
|
|
206
|
+
|
|
207
|
+
sha256?: __HashConstructor;
|
|
208
|
+
|
|
209
|
+
urlParser?: __UrlParser;
|
|
210
|
+
|
|
211
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
212
|
+
|
|
213
|
+
streamCollector?: __StreamCollector;
|
|
214
|
+
|
|
215
|
+
base64Decoder?: __Decoder;
|
|
216
|
+
|
|
217
|
+
base64Encoder?: __Encoder;
|
|
218
|
+
|
|
219
|
+
utf8Decoder?: __Decoder;
|
|
220
|
+
|
|
221
|
+
utf8Encoder?: __Encoder;
|
|
222
|
+
|
|
223
|
+
runtime?: string;
|
|
224
|
+
|
|
225
|
+
disableHostPrefix?: boolean;
|
|
226
|
+
|
|
227
|
+
maxAttempts?: number | __Provider<number>;
|
|
228
|
+
|
|
229
|
+
retryMode?: string | __Provider<string>;
|
|
230
|
+
|
|
231
|
+
logger?: __Logger;
|
|
232
|
+
|
|
233
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
234
|
+
|
|
235
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
236
|
+
|
|
237
|
+
serviceId?: string;
|
|
238
|
+
|
|
239
|
+
region?: string | __Provider<string>;
|
|
240
|
+
|
|
241
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
242
|
+
|
|
243
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
244
|
+
|
|
245
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
246
|
+
|
|
247
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
248
|
+
}
|
|
249
|
+
declare type ServiceDiscoveryClientConfigType = Partial<
|
|
250
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
251
|
+
> &
|
|
252
|
+
ClientDefaults &
|
|
253
|
+
RegionInputConfig &
|
|
254
|
+
EndpointsInputConfig &
|
|
255
|
+
RetryInputConfig &
|
|
256
|
+
HostHeaderInputConfig &
|
|
257
|
+
AwsAuthInputConfig &
|
|
258
|
+
UserAgentInputConfig;
|
|
259
|
+
|
|
260
|
+
export interface ServiceDiscoveryClientConfig
|
|
261
|
+
extends ServiceDiscoveryClientConfigType {}
|
|
262
|
+
declare type ServiceDiscoveryClientResolvedConfigType =
|
|
263
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
264
|
+
Required<ClientDefaults> &
|
|
265
|
+
RegionResolvedConfig &
|
|
266
|
+
EndpointsResolvedConfig &
|
|
267
|
+
RetryResolvedConfig &
|
|
268
|
+
HostHeaderResolvedConfig &
|
|
269
|
+
AwsAuthResolvedConfig &
|
|
270
|
+
UserAgentResolvedConfig;
|
|
271
|
+
|
|
272
|
+
export interface ServiceDiscoveryClientResolvedConfig
|
|
273
|
+
extends ServiceDiscoveryClientResolvedConfigType {}
|
|
274
|
+
|
|
275
|
+
export declare class ServiceDiscoveryClient extends __Client<
|
|
276
|
+
__HttpHandlerOptions,
|
|
277
|
+
ServiceInputTypes,
|
|
278
|
+
ServiceOutputTypes,
|
|
279
|
+
ServiceDiscoveryClientResolvedConfig
|
|
280
|
+
> {
|
|
281
|
+
readonly config: ServiceDiscoveryClientResolvedConfig;
|
|
282
|
+
constructor(configuration: ServiceDiscoveryClientConfig);
|
|
283
|
+
|
|
284
|
+
destroy(): void;
|
|
285
|
+
}
|
|
286
|
+
export {};
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CreateHttpNamespaceRequest,
|
|
10
|
+
CreateHttpNamespaceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceDiscoveryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServiceDiscoveryClient";
|
|
17
|
+
export interface CreateHttpNamespaceCommandInput
|
|
18
|
+
extends CreateHttpNamespaceRequest {}
|
|
19
|
+
export interface CreateHttpNamespaceCommandOutput
|
|
20
|
+
extends CreateHttpNamespaceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateHttpNamespaceCommand extends $Command<
|
|
24
|
+
CreateHttpNamespaceCommandInput,
|
|
25
|
+
CreateHttpNamespaceCommandOutput,
|
|
26
|
+
ServiceDiscoveryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateHttpNamespaceCommandInput;
|
|
29
|
+
constructor(input: CreateHttpNamespaceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServiceDiscoveryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateHttpNamespaceCommandInput, CreateHttpNamespaceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CreatePrivateDnsNamespaceRequest,
|
|
10
|
+
CreatePrivateDnsNamespaceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceDiscoveryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServiceDiscoveryClient";
|
|
17
|
+
export interface CreatePrivateDnsNamespaceCommandInput
|
|
18
|
+
extends CreatePrivateDnsNamespaceRequest {}
|
|
19
|
+
export interface CreatePrivateDnsNamespaceCommandOutput
|
|
20
|
+
extends CreatePrivateDnsNamespaceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreatePrivateDnsNamespaceCommand extends $Command<
|
|
24
|
+
CreatePrivateDnsNamespaceCommandInput,
|
|
25
|
+
CreatePrivateDnsNamespaceCommandOutput,
|
|
26
|
+
ServiceDiscoveryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreatePrivateDnsNamespaceCommandInput;
|
|
29
|
+
constructor(input: CreatePrivateDnsNamespaceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServiceDiscoveryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreatePrivateDnsNamespaceCommandInput,
|
|
37
|
+
CreatePrivateDnsNamespaceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CreatePublicDnsNamespaceRequest,
|
|
10
|
+
CreatePublicDnsNamespaceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceDiscoveryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServiceDiscoveryClient";
|
|
17
|
+
export interface CreatePublicDnsNamespaceCommandInput
|
|
18
|
+
extends CreatePublicDnsNamespaceRequest {}
|
|
19
|
+
export interface CreatePublicDnsNamespaceCommandOutput
|
|
20
|
+
extends CreatePublicDnsNamespaceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreatePublicDnsNamespaceCommand extends $Command<
|
|
24
|
+
CreatePublicDnsNamespaceCommandInput,
|
|
25
|
+
CreatePublicDnsNamespaceCommandOutput,
|
|
26
|
+
ServiceDiscoveryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreatePublicDnsNamespaceCommandInput;
|
|
29
|
+
constructor(input: CreatePublicDnsNamespaceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServiceDiscoveryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreatePublicDnsNamespaceCommandInput,
|
|
37
|
+
CreatePublicDnsNamespaceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CreateServiceRequest,
|
|
10
|
+
CreateServiceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceDiscoveryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServiceDiscoveryClient";
|
|
17
|
+
export interface CreateServiceCommandInput extends CreateServiceRequest {}
|
|
18
|
+
export interface CreateServiceCommandOutput
|
|
19
|
+
extends CreateServiceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateServiceCommand extends $Command<
|
|
23
|
+
CreateServiceCommandInput,
|
|
24
|
+
CreateServiceCommandOutput,
|
|
25
|
+
ServiceDiscoveryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateServiceCommandInput;
|
|
28
|
+
constructor(input: CreateServiceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ServiceDiscoveryClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|