@aws-sdk/client-application-discovery-service 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 (44) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +466 -130
  3. package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +280 -98
  4. package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  29. package/dist-types/ts3.4/commands/index.d.ts +25 -25
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  31. package/dist-types/ts3.4/index.d.ts +6 -6
  32. package/dist-types/ts3.4/models/ApplicationDiscoveryServiceServiceException.d.ts +8 -6
  33. package/dist-types/ts3.4/models/index.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +872 -799
  35. package/dist-types/ts3.4/pagination/DescribeContinuousExportsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/DescribeImportTasksPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  39. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  44. package/package.json +34 -34
@@ -1,98 +1,280 @@
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 { AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput } from "./commands/AssociateConfigurationItemsToApplicationCommand";
10
- import { BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput } from "./commands/BatchDeleteImportDataCommand";
11
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
12
- import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
13
- import { DeleteApplicationsCommandInput, DeleteApplicationsCommandOutput } from "./commands/DeleteApplicationsCommand";
14
- import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
15
- import { DescribeAgentsCommandInput, DescribeAgentsCommandOutput } from "./commands/DescribeAgentsCommand";
16
- import { DescribeConfigurationsCommandInput, DescribeConfigurationsCommandOutput } from "./commands/DescribeConfigurationsCommand";
17
- import { DescribeContinuousExportsCommandInput, DescribeContinuousExportsCommandOutput } from "./commands/DescribeContinuousExportsCommand";
18
- import { DescribeExportConfigurationsCommandInput, DescribeExportConfigurationsCommandOutput } from "./commands/DescribeExportConfigurationsCommand";
19
- import { DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput } from "./commands/DescribeExportTasksCommand";
20
- import { DescribeImportTasksCommandInput, DescribeImportTasksCommandOutput } from "./commands/DescribeImportTasksCommand";
21
- import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand";
22
- import { DisassociateConfigurationItemsFromApplicationCommandInput, DisassociateConfigurationItemsFromApplicationCommandOutput } from "./commands/DisassociateConfigurationItemsFromApplicationCommand";
23
- import { ExportConfigurationsCommandInput, ExportConfigurationsCommandOutput } from "./commands/ExportConfigurationsCommand";
24
- import { GetDiscoverySummaryCommandInput, GetDiscoverySummaryCommandOutput } from "./commands/GetDiscoverySummaryCommand";
25
- import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "./commands/ListConfigurationsCommand";
26
- import { ListServerNeighborsCommandInput, ListServerNeighborsCommandOutput } from "./commands/ListServerNeighborsCommand";
27
- import { StartContinuousExportCommandInput, StartContinuousExportCommandOutput } from "./commands/StartContinuousExportCommand";
28
- import { StartDataCollectionByAgentIdsCommandInput, StartDataCollectionByAgentIdsCommandOutput } from "./commands/StartDataCollectionByAgentIdsCommand";
29
- import { StartExportTaskCommandInput, StartExportTaskCommandOutput } from "./commands/StartExportTaskCommand";
30
- import { StartImportTaskCommandInput, StartImportTaskCommandOutput } from "./commands/StartImportTaskCommand";
31
- import { StopContinuousExportCommandInput, StopContinuousExportCommandOutput } from "./commands/StopContinuousExportCommand";
32
- import { StopDataCollectionByAgentIdsCommandInput, StopDataCollectionByAgentIdsCommandOutput } from "./commands/StopDataCollectionByAgentIdsCommand";
33
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
34
- export declare type ServiceInputTypes = AssociateConfigurationItemsToApplicationCommandInput | BatchDeleteImportDataCommandInput | CreateApplicationCommandInput | CreateTagsCommandInput | DeleteApplicationsCommandInput | DeleteTagsCommandInput | DescribeAgentsCommandInput | DescribeConfigurationsCommandInput | DescribeContinuousExportsCommandInput | DescribeExportConfigurationsCommandInput | DescribeExportTasksCommandInput | DescribeImportTasksCommandInput | DescribeTagsCommandInput | DisassociateConfigurationItemsFromApplicationCommandInput | ExportConfigurationsCommandInput | GetDiscoverySummaryCommandInput | ListConfigurationsCommandInput | ListServerNeighborsCommandInput | StartContinuousExportCommandInput | StartDataCollectionByAgentIdsCommandInput | StartExportTaskCommandInput | StartImportTaskCommandInput | StopContinuousExportCommandInput | StopDataCollectionByAgentIdsCommandInput | UpdateApplicationCommandInput;
35
- export declare type ServiceOutputTypes = AssociateConfigurationItemsToApplicationCommandOutput | BatchDeleteImportDataCommandOutput | CreateApplicationCommandOutput | CreateTagsCommandOutput | DeleteApplicationsCommandOutput | DeleteTagsCommandOutput | DescribeAgentsCommandOutput | DescribeConfigurationsCommandOutput | DescribeContinuousExportsCommandOutput | DescribeExportConfigurationsCommandOutput | DescribeExportTasksCommandOutput | DescribeImportTasksCommandOutput | DescribeTagsCommandOutput | DisassociateConfigurationItemsFromApplicationCommandOutput | ExportConfigurationsCommandOutput | GetDiscoverySummaryCommandOutput | ListConfigurationsCommandOutput | ListServerNeighborsCommandOutput | StartContinuousExportCommandOutput | StartDataCollectionByAgentIdsCommandOutput | StartExportTaskCommandOutput | StartImportTaskCommandOutput | StopContinuousExportCommandOutput | StopDataCollectionByAgentIdsCommandOutput | UpdateApplicationCommandOutput;
36
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
37
-
38
- requestHandler?: __HttpHandler;
39
-
40
- sha256?: __HashConstructor;
41
-
42
- urlParser?: __UrlParser;
43
-
44
- bodyLengthChecker?: __BodyLengthCalculator;
45
-
46
- streamCollector?: __StreamCollector;
47
-
48
- base64Decoder?: __Decoder;
49
-
50
- base64Encoder?: __Encoder;
51
-
52
- utf8Decoder?: __Decoder;
53
-
54
- utf8Encoder?: __Encoder;
55
-
56
- runtime?: string;
57
-
58
- disableHostPrefix?: boolean;
59
-
60
- maxAttempts?: number | __Provider<number>;
61
-
62
- retryMode?: string | __Provider<string>;
63
-
64
- logger?: __Logger;
65
-
66
- useDualstackEndpoint?: boolean | __Provider<boolean>;
67
-
68
- useFipsEndpoint?: boolean | __Provider<boolean>;
69
-
70
- serviceId?: string;
71
-
72
- region?: string | __Provider<string>;
73
-
74
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
75
-
76
- regionInfoProvider?: RegionInfoProvider;
77
-
78
- defaultUserAgentProvider?: Provider<__UserAgent>;
79
-
80
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
81
- }
82
- declare type ApplicationDiscoveryServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
83
-
84
- export interface ApplicationDiscoveryServiceClientConfig extends ApplicationDiscoveryServiceClientConfigType {
85
- }
86
- declare type ApplicationDiscoveryServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
87
-
88
- export interface ApplicationDiscoveryServiceClientResolvedConfig extends ApplicationDiscoveryServiceClientResolvedConfigType {
89
- }
90
-
91
- export declare class ApplicationDiscoveryServiceClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ApplicationDiscoveryServiceClientResolvedConfig> {
92
-
93
- readonly config: ApplicationDiscoveryServiceClientResolvedConfig;
94
- constructor(configuration: ApplicationDiscoveryServiceClientConfig);
95
-
96
- destroy(): void;
97
- }
98
- 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
+ AssociateConfigurationItemsToApplicationCommandInput,
47
+ AssociateConfigurationItemsToApplicationCommandOutput,
48
+ } from "./commands/AssociateConfigurationItemsToApplicationCommand";
49
+ import {
50
+ BatchDeleteImportDataCommandInput,
51
+ BatchDeleteImportDataCommandOutput,
52
+ } from "./commands/BatchDeleteImportDataCommand";
53
+ import {
54
+ CreateApplicationCommandInput,
55
+ CreateApplicationCommandOutput,
56
+ } from "./commands/CreateApplicationCommand";
57
+ import {
58
+ CreateTagsCommandInput,
59
+ CreateTagsCommandOutput,
60
+ } from "./commands/CreateTagsCommand";
61
+ import {
62
+ DeleteApplicationsCommandInput,
63
+ DeleteApplicationsCommandOutput,
64
+ } from "./commands/DeleteApplicationsCommand";
65
+ import {
66
+ DeleteTagsCommandInput,
67
+ DeleteTagsCommandOutput,
68
+ } from "./commands/DeleteTagsCommand";
69
+ import {
70
+ DescribeAgentsCommandInput,
71
+ DescribeAgentsCommandOutput,
72
+ } from "./commands/DescribeAgentsCommand";
73
+ import {
74
+ DescribeConfigurationsCommandInput,
75
+ DescribeConfigurationsCommandOutput,
76
+ } from "./commands/DescribeConfigurationsCommand";
77
+ import {
78
+ DescribeContinuousExportsCommandInput,
79
+ DescribeContinuousExportsCommandOutput,
80
+ } from "./commands/DescribeContinuousExportsCommand";
81
+ import {
82
+ DescribeExportConfigurationsCommandInput,
83
+ DescribeExportConfigurationsCommandOutput,
84
+ } from "./commands/DescribeExportConfigurationsCommand";
85
+ import {
86
+ DescribeExportTasksCommandInput,
87
+ DescribeExportTasksCommandOutput,
88
+ } from "./commands/DescribeExportTasksCommand";
89
+ import {
90
+ DescribeImportTasksCommandInput,
91
+ DescribeImportTasksCommandOutput,
92
+ } from "./commands/DescribeImportTasksCommand";
93
+ import {
94
+ DescribeTagsCommandInput,
95
+ DescribeTagsCommandOutput,
96
+ } from "./commands/DescribeTagsCommand";
97
+ import {
98
+ DisassociateConfigurationItemsFromApplicationCommandInput,
99
+ DisassociateConfigurationItemsFromApplicationCommandOutput,
100
+ } from "./commands/DisassociateConfigurationItemsFromApplicationCommand";
101
+ import {
102
+ ExportConfigurationsCommandInput,
103
+ ExportConfigurationsCommandOutput,
104
+ } from "./commands/ExportConfigurationsCommand";
105
+ import {
106
+ GetDiscoverySummaryCommandInput,
107
+ GetDiscoverySummaryCommandOutput,
108
+ } from "./commands/GetDiscoverySummaryCommand";
109
+ import {
110
+ ListConfigurationsCommandInput,
111
+ ListConfigurationsCommandOutput,
112
+ } from "./commands/ListConfigurationsCommand";
113
+ import {
114
+ ListServerNeighborsCommandInput,
115
+ ListServerNeighborsCommandOutput,
116
+ } from "./commands/ListServerNeighborsCommand";
117
+ import {
118
+ StartContinuousExportCommandInput,
119
+ StartContinuousExportCommandOutput,
120
+ } from "./commands/StartContinuousExportCommand";
121
+ import {
122
+ StartDataCollectionByAgentIdsCommandInput,
123
+ StartDataCollectionByAgentIdsCommandOutput,
124
+ } from "./commands/StartDataCollectionByAgentIdsCommand";
125
+ import {
126
+ StartExportTaskCommandInput,
127
+ StartExportTaskCommandOutput,
128
+ } from "./commands/StartExportTaskCommand";
129
+ import {
130
+ StartImportTaskCommandInput,
131
+ StartImportTaskCommandOutput,
132
+ } from "./commands/StartImportTaskCommand";
133
+ import {
134
+ StopContinuousExportCommandInput,
135
+ StopContinuousExportCommandOutput,
136
+ } from "./commands/StopContinuousExportCommand";
137
+ import {
138
+ StopDataCollectionByAgentIdsCommandInput,
139
+ StopDataCollectionByAgentIdsCommandOutput,
140
+ } from "./commands/StopDataCollectionByAgentIdsCommand";
141
+ import {
142
+ UpdateApplicationCommandInput,
143
+ UpdateApplicationCommandOutput,
144
+ } from "./commands/UpdateApplicationCommand";
145
+ export declare type ServiceInputTypes =
146
+ | AssociateConfigurationItemsToApplicationCommandInput
147
+ | BatchDeleteImportDataCommandInput
148
+ | CreateApplicationCommandInput
149
+ | CreateTagsCommandInput
150
+ | DeleteApplicationsCommandInput
151
+ | DeleteTagsCommandInput
152
+ | DescribeAgentsCommandInput
153
+ | DescribeConfigurationsCommandInput
154
+ | DescribeContinuousExportsCommandInput
155
+ | DescribeExportConfigurationsCommandInput
156
+ | DescribeExportTasksCommandInput
157
+ | DescribeImportTasksCommandInput
158
+ | DescribeTagsCommandInput
159
+ | DisassociateConfigurationItemsFromApplicationCommandInput
160
+ | ExportConfigurationsCommandInput
161
+ | GetDiscoverySummaryCommandInput
162
+ | ListConfigurationsCommandInput
163
+ | ListServerNeighborsCommandInput
164
+ | StartContinuousExportCommandInput
165
+ | StartDataCollectionByAgentIdsCommandInput
166
+ | StartExportTaskCommandInput
167
+ | StartImportTaskCommandInput
168
+ | StopContinuousExportCommandInput
169
+ | StopDataCollectionByAgentIdsCommandInput
170
+ | UpdateApplicationCommandInput;
171
+ export declare type ServiceOutputTypes =
172
+ | AssociateConfigurationItemsToApplicationCommandOutput
173
+ | BatchDeleteImportDataCommandOutput
174
+ | CreateApplicationCommandOutput
175
+ | CreateTagsCommandOutput
176
+ | DeleteApplicationsCommandOutput
177
+ | DeleteTagsCommandOutput
178
+ | DescribeAgentsCommandOutput
179
+ | DescribeConfigurationsCommandOutput
180
+ | DescribeContinuousExportsCommandOutput
181
+ | DescribeExportConfigurationsCommandOutput
182
+ | DescribeExportTasksCommandOutput
183
+ | DescribeImportTasksCommandOutput
184
+ | DescribeTagsCommandOutput
185
+ | DisassociateConfigurationItemsFromApplicationCommandOutput
186
+ | ExportConfigurationsCommandOutput
187
+ | GetDiscoverySummaryCommandOutput
188
+ | ListConfigurationsCommandOutput
189
+ | ListServerNeighborsCommandOutput
190
+ | StartContinuousExportCommandOutput
191
+ | StartDataCollectionByAgentIdsCommandOutput
192
+ | StartExportTaskCommandOutput
193
+ | StartImportTaskCommandOutput
194
+ | StopContinuousExportCommandOutput
195
+ | StopDataCollectionByAgentIdsCommandOutput
196
+ | UpdateApplicationCommandOutput;
197
+ export interface ClientDefaults
198
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
199
+ requestHandler?: __HttpHandler;
200
+
201
+ sha256?: __HashConstructor;
202
+
203
+ urlParser?: __UrlParser;
204
+
205
+ bodyLengthChecker?: __BodyLengthCalculator;
206
+
207
+ streamCollector?: __StreamCollector;
208
+
209
+ base64Decoder?: __Decoder;
210
+
211
+ base64Encoder?: __Encoder;
212
+
213
+ utf8Decoder?: __Decoder;
214
+
215
+ utf8Encoder?: __Encoder;
216
+
217
+ runtime?: string;
218
+
219
+ disableHostPrefix?: boolean;
220
+
221
+ maxAttempts?: number | __Provider<number>;
222
+
223
+ retryMode?: string | __Provider<string>;
224
+
225
+ logger?: __Logger;
226
+
227
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
228
+
229
+ useFipsEndpoint?: boolean | __Provider<boolean>;
230
+
231
+ serviceId?: string;
232
+
233
+ region?: string | __Provider<string>;
234
+
235
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
236
+
237
+ regionInfoProvider?: RegionInfoProvider;
238
+
239
+ defaultUserAgentProvider?: Provider<__UserAgent>;
240
+
241
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
242
+ }
243
+ declare type ApplicationDiscoveryServiceClientConfigType = Partial<
244
+ __SmithyConfiguration<__HttpHandlerOptions>
245
+ > &
246
+ ClientDefaults &
247
+ RegionInputConfig &
248
+ EndpointsInputConfig &
249
+ RetryInputConfig &
250
+ HostHeaderInputConfig &
251
+ AwsAuthInputConfig &
252
+ UserAgentInputConfig;
253
+
254
+ export interface ApplicationDiscoveryServiceClientConfig
255
+ extends ApplicationDiscoveryServiceClientConfigType {}
256
+ declare type ApplicationDiscoveryServiceClientResolvedConfigType =
257
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
258
+ Required<ClientDefaults> &
259
+ RegionResolvedConfig &
260
+ EndpointsResolvedConfig &
261
+ RetryResolvedConfig &
262
+ HostHeaderResolvedConfig &
263
+ AwsAuthResolvedConfig &
264
+ UserAgentResolvedConfig;
265
+
266
+ export interface ApplicationDiscoveryServiceClientResolvedConfig
267
+ extends ApplicationDiscoveryServiceClientResolvedConfigType {}
268
+
269
+ export declare class ApplicationDiscoveryServiceClient extends __Client<
270
+ __HttpHandlerOptions,
271
+ ServiceInputTypes,
272
+ ServiceOutputTypes,
273
+ ApplicationDiscoveryServiceClientResolvedConfig
274
+ > {
275
+ readonly config: ApplicationDiscoveryServiceClientResolvedConfig;
276
+ constructor(configuration: ApplicationDiscoveryServiceClientConfig);
277
+
278
+ destroy(): void;
279
+ }
280
+ export {};
@@ -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 { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
4
- import { AssociateConfigurationItemsToApplicationRequest, AssociateConfigurationItemsToApplicationResponse } from "../models/models_0";
5
- export interface AssociateConfigurationItemsToApplicationCommandInput extends AssociateConfigurationItemsToApplicationRequest {
6
- }
7
- export interface AssociateConfigurationItemsToApplicationCommandOutput extends AssociateConfigurationItemsToApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class AssociateConfigurationItemsToApplicationCommand extends $Command<AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: AssociateConfigurationItemsToApplicationCommandInput;
12
- constructor(input: AssociateConfigurationItemsToApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput>;
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
+ ApplicationDiscoveryServiceClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationDiscoveryServiceClient";
13
+ import {
14
+ AssociateConfigurationItemsToApplicationRequest,
15
+ AssociateConfigurationItemsToApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface AssociateConfigurationItemsToApplicationCommandInput
18
+ extends AssociateConfigurationItemsToApplicationRequest {}
19
+ export interface AssociateConfigurationItemsToApplicationCommandOutput
20
+ extends AssociateConfigurationItemsToApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class AssociateConfigurationItemsToApplicationCommand extends $Command<
24
+ AssociateConfigurationItemsToApplicationCommandInput,
25
+ AssociateConfigurationItemsToApplicationCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: AssociateConfigurationItemsToApplicationCommandInput;
29
+ constructor(input: AssociateConfigurationItemsToApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ AssociateConfigurationItemsToApplicationCommandInput,
37
+ AssociateConfigurationItemsToApplicationCommandOutput
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 { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
4
- import { BatchDeleteImportDataRequest, BatchDeleteImportDataResponse } from "../models/models_0";
5
- export interface BatchDeleteImportDataCommandInput extends BatchDeleteImportDataRequest {
6
- }
7
- export interface BatchDeleteImportDataCommandOutput extends BatchDeleteImportDataResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchDeleteImportDataCommand extends $Command<BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: BatchDeleteImportDataCommandInput;
12
- constructor(input: BatchDeleteImportDataCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput>;
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
+ ApplicationDiscoveryServiceClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationDiscoveryServiceClient";
13
+ import {
14
+ BatchDeleteImportDataRequest,
15
+ BatchDeleteImportDataResponse,
16
+ } from "../models/models_0";
17
+ export interface BatchDeleteImportDataCommandInput
18
+ extends BatchDeleteImportDataRequest {}
19
+ export interface BatchDeleteImportDataCommandOutput
20
+ extends BatchDeleteImportDataResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class BatchDeleteImportDataCommand extends $Command<
24
+ BatchDeleteImportDataCommandInput,
25
+ BatchDeleteImportDataCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: BatchDeleteImportDataCommandInput;
29
+ constructor(input: BatchDeleteImportDataCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ BatchDeleteImportDataCommandInput,
37
+ BatchDeleteImportDataCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
4
- import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
5
- export interface CreateApplicationCommandInput extends CreateApplicationRequest {
6
- }
7
- export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: CreateApplicationCommandInput;
12
- constructor(input: CreateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
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
+ ApplicationDiscoveryServiceClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationDiscoveryServiceClient";
13
+ import {
14
+ CreateApplicationRequest,
15
+ CreateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateApplicationCommandInput
18
+ extends CreateApplicationRequest {}
19
+ export interface CreateApplicationCommandOutput
20
+ extends CreateApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateApplicationCommand extends $Command<
24
+ CreateApplicationCommandInput,
25
+ CreateApplicationCommandOutput,
26
+ ApplicationDiscoveryServiceClientResolvedConfig
27
+ > {
28
+ readonly input: CreateApplicationCommandInput;
29
+ constructor(input: CreateApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
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 { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationDiscoveryServiceClient";
4
- import { CreateTagsRequest, CreateTagsResponse } from "../models/models_0";
5
- export interface CreateTagsCommandInput extends CreateTagsRequest {
6
- }
7
- export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateTagsCommand extends $Command<CreateTagsCommandInput, CreateTagsCommandOutput, ApplicationDiscoveryServiceClientResolvedConfig> {
11
- readonly input: CreateTagsCommandInput;
12
- constructor(input: CreateTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationDiscoveryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTagsCommandInput, CreateTagsCommandOutput>;
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
+ ApplicationDiscoveryServiceClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationDiscoveryServiceClient";
13
+ import { CreateTagsRequest, CreateTagsResponse } from "../models/models_0";
14
+ export interface CreateTagsCommandInput extends CreateTagsRequest {}
15
+ export interface CreateTagsCommandOutput
16
+ extends CreateTagsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateTagsCommand extends $Command<
20
+ CreateTagsCommandInput,
21
+ CreateTagsCommandOutput,
22
+ ApplicationDiscoveryServiceClientResolvedConfig
23
+ > {
24
+ readonly input: CreateTagsCommandInput;
25
+ constructor(input: CreateTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ApplicationDiscoveryServiceClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateTagsCommandInput, CreateTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }