@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.
Files changed (48) hide show
  1. package/CHANGELOG.md +8 -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,99 +1,286 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateHttpNamespaceCommandInput, CreateHttpNamespaceCommandOutput } from "./commands/CreateHttpNamespaceCommand";
10
- import { CreatePrivateDnsNamespaceCommandInput, CreatePrivateDnsNamespaceCommandOutput } from "./commands/CreatePrivateDnsNamespaceCommand";
11
- import { CreatePublicDnsNamespaceCommandInput, CreatePublicDnsNamespaceCommandOutput } from "./commands/CreatePublicDnsNamespaceCommand";
12
- import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
13
- import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "./commands/DeleteNamespaceCommand";
14
- import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
15
- import { DeregisterInstanceCommandInput, DeregisterInstanceCommandOutput } from "./commands/DeregisterInstanceCommand";
16
- import { DiscoverInstancesCommandInput, DiscoverInstancesCommandOutput } from "./commands/DiscoverInstancesCommand";
17
- import { GetInstanceCommandInput, GetInstanceCommandOutput } from "./commands/GetInstanceCommand";
18
- import { GetInstancesHealthStatusCommandInput, GetInstancesHealthStatusCommandOutput } from "./commands/GetInstancesHealthStatusCommand";
19
- import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "./commands/GetNamespaceCommand";
20
- import { GetOperationCommandInput, GetOperationCommandOutput } from "./commands/GetOperationCommand";
21
- import { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
22
- import { ListInstancesCommandInput, ListInstancesCommandOutput } from "./commands/ListInstancesCommand";
23
- import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
24
- import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
25
- import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
26
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
- import { RegisterInstanceCommandInput, RegisterInstanceCommandOutput } from "./commands/RegisterInstanceCommand";
28
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
29
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
30
- import { UpdateHttpNamespaceCommandInput, UpdateHttpNamespaceCommandOutput } from "./commands/UpdateHttpNamespaceCommand";
31
- import { UpdateInstanceCustomHealthStatusCommandInput, UpdateInstanceCustomHealthStatusCommandOutput } from "./commands/UpdateInstanceCustomHealthStatusCommand";
32
- import { UpdatePrivateDnsNamespaceCommandInput, UpdatePrivateDnsNamespaceCommandOutput } from "./commands/UpdatePrivateDnsNamespaceCommand";
33
- import { UpdatePublicDnsNamespaceCommandInput, UpdatePublicDnsNamespaceCommandOutput } from "./commands/UpdatePublicDnsNamespaceCommand";
34
- import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
35
- export declare type ServiceInputTypes = CreateHttpNamespaceCommandInput | CreatePrivateDnsNamespaceCommandInput | CreatePublicDnsNamespaceCommandInput | CreateServiceCommandInput | DeleteNamespaceCommandInput | DeleteServiceCommandInput | DeregisterInstanceCommandInput | DiscoverInstancesCommandInput | GetInstanceCommandInput | GetInstancesHealthStatusCommandInput | GetNamespaceCommandInput | GetOperationCommandInput | GetServiceCommandInput | ListInstancesCommandInput | ListNamespacesCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | RegisterInstanceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateHttpNamespaceCommandInput | UpdateInstanceCustomHealthStatusCommandInput | UpdatePrivateDnsNamespaceCommandInput | UpdatePublicDnsNamespaceCommandInput | UpdateServiceCommandInput;
36
- export declare type ServiceOutputTypes = CreateHttpNamespaceCommandOutput | CreatePrivateDnsNamespaceCommandOutput | CreatePublicDnsNamespaceCommandOutput | CreateServiceCommandOutput | DeleteNamespaceCommandOutput | DeleteServiceCommandOutput | DeregisterInstanceCommandOutput | DiscoverInstancesCommandOutput | GetInstanceCommandOutput | GetInstancesHealthStatusCommandOutput | GetNamespaceCommandOutput | GetOperationCommandOutput | GetServiceCommandOutput | ListInstancesCommandOutput | ListNamespacesCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | RegisterInstanceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateHttpNamespaceCommandOutput | UpdateInstanceCustomHealthStatusCommandOutput | UpdatePrivateDnsNamespaceCommandOutput | UpdatePublicDnsNamespaceCommandOutput | UpdateServiceCommandOutput;
37
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
38
-
39
- requestHandler?: __HttpHandler;
40
-
41
- sha256?: __HashConstructor;
42
-
43
- urlParser?: __UrlParser;
44
-
45
- bodyLengthChecker?: __BodyLengthCalculator;
46
-
47
- streamCollector?: __StreamCollector;
48
-
49
- base64Decoder?: __Decoder;
50
-
51
- base64Encoder?: __Encoder;
52
-
53
- utf8Decoder?: __Decoder;
54
-
55
- utf8Encoder?: __Encoder;
56
-
57
- runtime?: string;
58
-
59
- disableHostPrefix?: boolean;
60
-
61
- maxAttempts?: number | __Provider<number>;
62
-
63
- retryMode?: string | __Provider<string>;
64
-
65
- logger?: __Logger;
66
-
67
- useDualstackEndpoint?: boolean | __Provider<boolean>;
68
-
69
- useFipsEndpoint?: boolean | __Provider<boolean>;
70
-
71
- serviceId?: string;
72
-
73
- region?: string | __Provider<string>;
74
-
75
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
76
-
77
- regionInfoProvider?: RegionInfoProvider;
78
-
79
- defaultUserAgentProvider?: Provider<__UserAgent>;
80
-
81
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
82
- }
83
- declare type ServiceDiscoveryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
84
-
85
- export interface ServiceDiscoveryClientConfig extends ServiceDiscoveryClientConfigType {
86
- }
87
- declare type ServiceDiscoveryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
88
-
89
- export interface ServiceDiscoveryClientResolvedConfig extends ServiceDiscoveryClientResolvedConfigType {
90
- }
91
-
92
- export declare class ServiceDiscoveryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ServiceDiscoveryClientResolvedConfig> {
93
-
94
- readonly config: ServiceDiscoveryClientResolvedConfig;
95
- constructor(configuration: ServiceDiscoveryClientConfig);
96
-
97
- destroy(): void;
98
- }
99
- export {};
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateHttpNamespaceRequest, CreateHttpNamespaceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface CreateHttpNamespaceCommandInput extends CreateHttpNamespaceRequest {
6
- }
7
- export interface CreateHttpNamespaceCommandOutput extends CreateHttpNamespaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateHttpNamespaceCommand extends $Command<CreateHttpNamespaceCommandInput, CreateHttpNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: CreateHttpNamespaceCommandInput;
12
- constructor(input: CreateHttpNamespaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHttpNamespaceCommandInput, CreateHttpNamespaceCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreatePrivateDnsNamespaceRequest, CreatePrivateDnsNamespaceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface CreatePrivateDnsNamespaceCommandInput extends CreatePrivateDnsNamespaceRequest {
6
- }
7
- export interface CreatePrivateDnsNamespaceCommandOutput extends CreatePrivateDnsNamespaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreatePrivateDnsNamespaceCommand extends $Command<CreatePrivateDnsNamespaceCommandInput, CreatePrivateDnsNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: CreatePrivateDnsNamespaceCommandInput;
12
- constructor(input: CreatePrivateDnsNamespaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePrivateDnsNamespaceCommandInput, CreatePrivateDnsNamespaceCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreatePublicDnsNamespaceRequest, CreatePublicDnsNamespaceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface CreatePublicDnsNamespaceCommandInput extends CreatePublicDnsNamespaceRequest {
6
- }
7
- export interface CreatePublicDnsNamespaceCommandOutput extends CreatePublicDnsNamespaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreatePublicDnsNamespaceCommand extends $Command<CreatePublicDnsNamespaceCommandInput, CreatePublicDnsNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: CreatePublicDnsNamespaceCommandInput;
12
- constructor(input: CreatePublicDnsNamespaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePublicDnsNamespaceCommandInput, CreatePublicDnsNamespaceCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0";
4
- import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
5
- export interface CreateServiceCommandInput extends CreateServiceRequest {
6
- }
7
- export interface CreateServiceCommandOutput extends CreateServiceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
11
- readonly input: CreateServiceCommandInput;
12
- constructor(input: CreateServiceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
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
+ 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
+ }