@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +466 -130
- package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +280 -98
- package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +25 -25
- 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/ApplicationDiscoveryServiceServiceException.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 +872 -799
- package/dist-types/ts3.4/pagination/DescribeContinuousExportsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeImportTasksPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
- 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,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeContinuousExportsCommandInput,
|
|
4
|
+
DescribeContinuousExportsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeContinuousExportsCommand";
|
|
6
|
+
import { ApplicationDiscoveryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeContinuousExports(
|
|
8
|
+
config: ApplicationDiscoveryServicePaginationConfiguration,
|
|
9
|
+
input: DescribeContinuousExportsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeContinuousExportsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeImportTasksCommandInput,
|
|
4
|
+
DescribeImportTasksCommandOutput,
|
|
5
|
+
} from "../commands/DescribeImportTasksCommand";
|
|
6
|
+
import { ApplicationDiscoveryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeImportTasks(
|
|
8
|
+
config: ApplicationDiscoveryServicePaginationConfiguration,
|
|
9
|
+
input: DescribeImportTasksCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeImportTasksCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ApplicationDiscoveryService } from "../ApplicationDiscoveryService";
|
|
3
|
-
import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient";
|
|
4
|
-
export interface ApplicationDiscoveryServicePaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ApplicationDiscoveryService } from "../ApplicationDiscoveryService";
|
|
3
|
+
import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient";
|
|
4
|
+
export interface ApplicationDiscoveryServicePaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ApplicationDiscoveryService | ApplicationDiscoveryServiceClient;
|
|
7
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./DescribeContinuousExportsPaginator";
|
|
2
|
-
export * from "./DescribeImportTasksPaginator";
|
|
3
|
-
export * from "./Interfaces";
|
|
1
|
+
export * from "./DescribeContinuousExportsPaginator";
|
|
2
|
+
export * from "./DescribeImportTasksPaginator";
|
|
3
|
+
export * from "./Interfaces";
|
|
@@ -1,77 +1,305 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateConfigurationItemsToApplicationCommandInput,
|
|
8
|
+
AssociateConfigurationItemsToApplicationCommandOutput,
|
|
9
|
+
} from "../commands/AssociateConfigurationItemsToApplicationCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchDeleteImportDataCommandInput,
|
|
12
|
+
BatchDeleteImportDataCommandOutput,
|
|
13
|
+
} from "../commands/BatchDeleteImportDataCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateApplicationCommandInput,
|
|
16
|
+
CreateApplicationCommandOutput,
|
|
17
|
+
} from "../commands/CreateApplicationCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateTagsCommandInput,
|
|
20
|
+
CreateTagsCommandOutput,
|
|
21
|
+
} from "../commands/CreateTagsCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteApplicationsCommandInput,
|
|
24
|
+
DeleteApplicationsCommandOutput,
|
|
25
|
+
} from "../commands/DeleteApplicationsCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteTagsCommandInput,
|
|
28
|
+
DeleteTagsCommandOutput,
|
|
29
|
+
} from "../commands/DeleteTagsCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeAgentsCommandInput,
|
|
32
|
+
DescribeAgentsCommandOutput,
|
|
33
|
+
} from "../commands/DescribeAgentsCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeConfigurationsCommandInput,
|
|
36
|
+
DescribeConfigurationsCommandOutput,
|
|
37
|
+
} from "../commands/DescribeConfigurationsCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeContinuousExportsCommandInput,
|
|
40
|
+
DescribeContinuousExportsCommandOutput,
|
|
41
|
+
} from "../commands/DescribeContinuousExportsCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeExportConfigurationsCommandInput,
|
|
44
|
+
DescribeExportConfigurationsCommandOutput,
|
|
45
|
+
} from "../commands/DescribeExportConfigurationsCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeExportTasksCommandInput,
|
|
48
|
+
DescribeExportTasksCommandOutput,
|
|
49
|
+
} from "../commands/DescribeExportTasksCommand";
|
|
50
|
+
import {
|
|
51
|
+
DescribeImportTasksCommandInput,
|
|
52
|
+
DescribeImportTasksCommandOutput,
|
|
53
|
+
} from "../commands/DescribeImportTasksCommand";
|
|
54
|
+
import {
|
|
55
|
+
DescribeTagsCommandInput,
|
|
56
|
+
DescribeTagsCommandOutput,
|
|
57
|
+
} from "../commands/DescribeTagsCommand";
|
|
58
|
+
import {
|
|
59
|
+
DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
60
|
+
DisassociateConfigurationItemsFromApplicationCommandOutput,
|
|
61
|
+
} from "../commands/DisassociateConfigurationItemsFromApplicationCommand";
|
|
62
|
+
import {
|
|
63
|
+
ExportConfigurationsCommandInput,
|
|
64
|
+
ExportConfigurationsCommandOutput,
|
|
65
|
+
} from "../commands/ExportConfigurationsCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetDiscoverySummaryCommandInput,
|
|
68
|
+
GetDiscoverySummaryCommandOutput,
|
|
69
|
+
} from "../commands/GetDiscoverySummaryCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListConfigurationsCommandInput,
|
|
72
|
+
ListConfigurationsCommandOutput,
|
|
73
|
+
} from "../commands/ListConfigurationsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListServerNeighborsCommandInput,
|
|
76
|
+
ListServerNeighborsCommandOutput,
|
|
77
|
+
} from "../commands/ListServerNeighborsCommand";
|
|
78
|
+
import {
|
|
79
|
+
StartContinuousExportCommandInput,
|
|
80
|
+
StartContinuousExportCommandOutput,
|
|
81
|
+
} from "../commands/StartContinuousExportCommand";
|
|
82
|
+
import {
|
|
83
|
+
StartDataCollectionByAgentIdsCommandInput,
|
|
84
|
+
StartDataCollectionByAgentIdsCommandOutput,
|
|
85
|
+
} from "../commands/StartDataCollectionByAgentIdsCommand";
|
|
86
|
+
import {
|
|
87
|
+
StartExportTaskCommandInput,
|
|
88
|
+
StartExportTaskCommandOutput,
|
|
89
|
+
} from "../commands/StartExportTaskCommand";
|
|
90
|
+
import {
|
|
91
|
+
StartImportTaskCommandInput,
|
|
92
|
+
StartImportTaskCommandOutput,
|
|
93
|
+
} from "../commands/StartImportTaskCommand";
|
|
94
|
+
import {
|
|
95
|
+
StopContinuousExportCommandInput,
|
|
96
|
+
StopContinuousExportCommandOutput,
|
|
97
|
+
} from "../commands/StopContinuousExportCommand";
|
|
98
|
+
import {
|
|
99
|
+
StopDataCollectionByAgentIdsCommandInput,
|
|
100
|
+
StopDataCollectionByAgentIdsCommandOutput,
|
|
101
|
+
} from "../commands/StopDataCollectionByAgentIdsCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateApplicationCommandInput,
|
|
104
|
+
UpdateApplicationCommandOutput,
|
|
105
|
+
} from "../commands/UpdateApplicationCommand";
|
|
106
|
+
export declare const serializeAws_json1_1AssociateConfigurationItemsToApplicationCommand: (
|
|
107
|
+
input: AssociateConfigurationItemsToApplicationCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1BatchDeleteImportDataCommand: (
|
|
111
|
+
input: BatchDeleteImportDataCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1CreateApplicationCommand: (
|
|
115
|
+
input: CreateApplicationCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1CreateTagsCommand: (
|
|
119
|
+
input: CreateTagsCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1DeleteApplicationsCommand: (
|
|
123
|
+
input: DeleteApplicationsCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_1DeleteTagsCommand: (
|
|
127
|
+
input: DeleteTagsCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1DescribeAgentsCommand: (
|
|
131
|
+
input: DescribeAgentsCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_1DescribeConfigurationsCommand: (
|
|
135
|
+
input: DescribeConfigurationsCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_1DescribeContinuousExportsCommand: (
|
|
139
|
+
input: DescribeContinuousExportsCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_1DescribeExportConfigurationsCommand: (
|
|
143
|
+
input: DescribeExportConfigurationsCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_1DescribeExportTasksCommand: (
|
|
147
|
+
input: DescribeExportTasksCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_1DescribeImportTasksCommand: (
|
|
151
|
+
input: DescribeImportTasksCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_1DescribeTagsCommand: (
|
|
155
|
+
input: DescribeTagsCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_1DisassociateConfigurationItemsFromApplicationCommand: (
|
|
159
|
+
input: DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_1ExportConfigurationsCommand: (
|
|
163
|
+
input: ExportConfigurationsCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_1GetDiscoverySummaryCommand: (
|
|
167
|
+
input: GetDiscoverySummaryCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_1ListConfigurationsCommand: (
|
|
171
|
+
input: ListConfigurationsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_1ListServerNeighborsCommand: (
|
|
175
|
+
input: ListServerNeighborsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_1StartContinuousExportCommand: (
|
|
179
|
+
input: StartContinuousExportCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_1StartDataCollectionByAgentIdsCommand: (
|
|
183
|
+
input: StartDataCollectionByAgentIdsCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_1StartExportTaskCommand: (
|
|
187
|
+
input: StartExportTaskCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_1StartImportTaskCommand: (
|
|
191
|
+
input: StartImportTaskCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_1StopContinuousExportCommand: (
|
|
195
|
+
input: StopContinuousExportCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_json1_1StopDataCollectionByAgentIdsCommand: (
|
|
199
|
+
input: StopDataCollectionByAgentIdsCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_json1_1UpdateApplicationCommand: (
|
|
203
|
+
input: UpdateApplicationCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const deserializeAws_json1_1AssociateConfigurationItemsToApplicationCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<AssociateConfigurationItemsToApplicationCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_json1_1BatchDeleteImportDataCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<BatchDeleteImportDataCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_json1_1CreateApplicationCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<CreateApplicationCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_json1_1CreateTagsCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<CreateTagsCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_json1_1DeleteApplicationsCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<DeleteApplicationsCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_json1_1DeleteTagsCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DeleteTagsCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_json1_1DescribeAgentsCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<DescribeAgentsCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_json1_1DescribeConfigurationsCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<DescribeConfigurationsCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_json1_1DescribeContinuousExportsCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DescribeContinuousExportsCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_json1_1DescribeExportConfigurationsCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<DescribeExportConfigurationsCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_json1_1DescribeExportTasksCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<DescribeExportTasksCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_json1_1DescribeImportTasksCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<DescribeImportTasksCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_json1_1DescribeTagsCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<DescribeTagsCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_1DisassociateConfigurationItemsFromApplicationCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<DisassociateConfigurationItemsFromApplicationCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_1ExportConfigurationsCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<ExportConfigurationsCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_1GetDiscoverySummaryCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<GetDiscoverySummaryCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_1ListConfigurationsCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<ListConfigurationsCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_1ListServerNeighborsCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ListServerNeighborsCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_1StartContinuousExportCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<StartContinuousExportCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_json1_1StartDataCollectionByAgentIdsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<StartDataCollectionByAgentIdsCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_json1_1StartExportTaskCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<StartExportTaskCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_json1_1StartImportTaskCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<StartImportTaskCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_json1_1StopContinuousExportCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<StopContinuousExportCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_json1_1StopDataCollectionByAgentIdsCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<StopDataCollectionByAgentIdsCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_json1_1UpdateApplicationCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<UpdateApplicationCommandOutput>;
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: ApplicationDiscoveryServiceClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|