@aws-sdk/client-migration-hub 3.709.0 → 3.712.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/README.md +32 -0
- package/dist-cjs/index.js +182 -2
- package/dist-es/MigrationHub.js +8 -0
- package/dist-es/commands/AssociateSourceResourceCommand.js +22 -0
- package/dist-es/commands/DisassociateSourceResourceCommand.js +22 -0
- package/dist-es/commands/ListMigrationTaskUpdatesCommand.js +22 -0
- package/dist-es/commands/ListSourceResourcesCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/pagination/ListMigrationTaskUpdatesPaginator.js +4 -0
- package/dist-es/pagination/ListSourceResourcesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +97 -0
- package/dist-types/MigrationHub.d.ts +28 -0
- package/dist-types/MigrationHubClient.d.ts +6 -2
- package/dist-types/commands/AssociateSourceResourceCommand.d.ts +108 -0
- package/dist-types/commands/DisassociateSourceResourceCommand.d.ts +103 -0
- package/dist-types/commands/ListMigrationTaskUpdatesCommand.d.ts +109 -0
- package/dist-types/commands/ListSourceResourcesCommand.d.ts +105 -0
- package/dist-types/commands/PutResourceAttributesCommand.d.ts +0 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +250 -3
- package/dist-types/pagination/ListMigrationTaskUpdatesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSourceResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/MigrationHub.d.ts +68 -0
- package/dist-types/ts3.4/MigrationHubClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/AssociateSourceResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateSourceResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMigrationTaskUpdatesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSourceResourcesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +48 -0
- package/dist-types/ts3.4/pagination/ListMigrationTaskUpdatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSourceResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +5 -5
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
AssociateDiscoveredResourceCommandInput,
|
|
8
8
|
AssociateDiscoveredResourceCommandOutput,
|
|
9
9
|
} from "./commands/AssociateDiscoveredResourceCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateSourceResourceCommandInput,
|
|
12
|
+
AssociateSourceResourceCommandOutput,
|
|
13
|
+
} from "./commands/AssociateSourceResourceCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateProgressUpdateStreamCommandInput,
|
|
12
16
|
CreateProgressUpdateStreamCommandOutput,
|
|
@@ -31,6 +35,10 @@ import {
|
|
|
31
35
|
DisassociateDiscoveredResourceCommandInput,
|
|
32
36
|
DisassociateDiscoveredResourceCommandOutput,
|
|
33
37
|
} from "./commands/DisassociateDiscoveredResourceCommand";
|
|
38
|
+
import {
|
|
39
|
+
DisassociateSourceResourceCommandInput,
|
|
40
|
+
DisassociateSourceResourceCommandOutput,
|
|
41
|
+
} from "./commands/DisassociateSourceResourceCommand";
|
|
34
42
|
import {
|
|
35
43
|
ImportMigrationTaskCommandInput,
|
|
36
44
|
ImportMigrationTaskCommandOutput,
|
|
@@ -51,10 +59,18 @@ import {
|
|
|
51
59
|
ListMigrationTasksCommandInput,
|
|
52
60
|
ListMigrationTasksCommandOutput,
|
|
53
61
|
} from "./commands/ListMigrationTasksCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListMigrationTaskUpdatesCommandInput,
|
|
64
|
+
ListMigrationTaskUpdatesCommandOutput,
|
|
65
|
+
} from "./commands/ListMigrationTaskUpdatesCommand";
|
|
54
66
|
import {
|
|
55
67
|
ListProgressUpdateStreamsCommandInput,
|
|
56
68
|
ListProgressUpdateStreamsCommandOutput,
|
|
57
69
|
} from "./commands/ListProgressUpdateStreamsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListSourceResourcesCommandInput,
|
|
72
|
+
ListSourceResourcesCommandOutput,
|
|
73
|
+
} from "./commands/ListSourceResourcesCommand";
|
|
58
74
|
import {
|
|
59
75
|
NotifyApplicationStateCommandInput,
|
|
60
76
|
NotifyApplicationStateCommandOutput,
|
|
@@ -95,6 +111,19 @@ export interface MigrationHub {
|
|
|
95
111
|
options: __HttpHandlerOptions,
|
|
96
112
|
cb: (err: any, data?: AssociateDiscoveredResourceCommandOutput) => void
|
|
97
113
|
): void;
|
|
114
|
+
associateSourceResource(
|
|
115
|
+
args: AssociateSourceResourceCommandInput,
|
|
116
|
+
options?: __HttpHandlerOptions
|
|
117
|
+
): Promise<AssociateSourceResourceCommandOutput>;
|
|
118
|
+
associateSourceResource(
|
|
119
|
+
args: AssociateSourceResourceCommandInput,
|
|
120
|
+
cb: (err: any, data?: AssociateSourceResourceCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
associateSourceResource(
|
|
123
|
+
args: AssociateSourceResourceCommandInput,
|
|
124
|
+
options: __HttpHandlerOptions,
|
|
125
|
+
cb: (err: any, data?: AssociateSourceResourceCommandOutput) => void
|
|
126
|
+
): void;
|
|
98
127
|
createProgressUpdateStream(
|
|
99
128
|
args: CreateProgressUpdateStreamCommandInput,
|
|
100
129
|
options?: __HttpHandlerOptions
|
|
@@ -173,6 +202,19 @@ export interface MigrationHub {
|
|
|
173
202
|
options: __HttpHandlerOptions,
|
|
174
203
|
cb: (err: any, data?: DisassociateDiscoveredResourceCommandOutput) => void
|
|
175
204
|
): void;
|
|
205
|
+
disassociateSourceResource(
|
|
206
|
+
args: DisassociateSourceResourceCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<DisassociateSourceResourceCommandOutput>;
|
|
209
|
+
disassociateSourceResource(
|
|
210
|
+
args: DisassociateSourceResourceCommandInput,
|
|
211
|
+
cb: (err: any, data?: DisassociateSourceResourceCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
disassociateSourceResource(
|
|
214
|
+
args: DisassociateSourceResourceCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: DisassociateSourceResourceCommandOutput) => void
|
|
217
|
+
): void;
|
|
176
218
|
importMigrationTask(
|
|
177
219
|
args: ImportMigrationTaskCommandInput,
|
|
178
220
|
options?: __HttpHandlerOptions
|
|
@@ -240,6 +282,19 @@ export interface MigrationHub {
|
|
|
240
282
|
options: __HttpHandlerOptions,
|
|
241
283
|
cb: (err: any, data?: ListMigrationTasksCommandOutput) => void
|
|
242
284
|
): void;
|
|
285
|
+
listMigrationTaskUpdates(
|
|
286
|
+
args: ListMigrationTaskUpdatesCommandInput,
|
|
287
|
+
options?: __HttpHandlerOptions
|
|
288
|
+
): Promise<ListMigrationTaskUpdatesCommandOutput>;
|
|
289
|
+
listMigrationTaskUpdates(
|
|
290
|
+
args: ListMigrationTaskUpdatesCommandInput,
|
|
291
|
+
cb: (err: any, data?: ListMigrationTaskUpdatesCommandOutput) => void
|
|
292
|
+
): void;
|
|
293
|
+
listMigrationTaskUpdates(
|
|
294
|
+
args: ListMigrationTaskUpdatesCommandInput,
|
|
295
|
+
options: __HttpHandlerOptions,
|
|
296
|
+
cb: (err: any, data?: ListMigrationTaskUpdatesCommandOutput) => void
|
|
297
|
+
): void;
|
|
243
298
|
listProgressUpdateStreams(): Promise<ListProgressUpdateStreamsCommandOutput>;
|
|
244
299
|
listProgressUpdateStreams(
|
|
245
300
|
args: ListProgressUpdateStreamsCommandInput,
|
|
@@ -254,6 +309,19 @@ export interface MigrationHub {
|
|
|
254
309
|
options: __HttpHandlerOptions,
|
|
255
310
|
cb: (err: any, data?: ListProgressUpdateStreamsCommandOutput) => void
|
|
256
311
|
): void;
|
|
312
|
+
listSourceResources(
|
|
313
|
+
args: ListSourceResourcesCommandInput,
|
|
314
|
+
options?: __HttpHandlerOptions
|
|
315
|
+
): Promise<ListSourceResourcesCommandOutput>;
|
|
316
|
+
listSourceResources(
|
|
317
|
+
args: ListSourceResourcesCommandInput,
|
|
318
|
+
cb: (err: any, data?: ListSourceResourcesCommandOutput) => void
|
|
319
|
+
): void;
|
|
320
|
+
listSourceResources(
|
|
321
|
+
args: ListSourceResourcesCommandInput,
|
|
322
|
+
options: __HttpHandlerOptions,
|
|
323
|
+
cb: (err: any, data?: ListSourceResourcesCommandOutput) => void
|
|
324
|
+
): void;
|
|
257
325
|
notifyApplicationState(
|
|
258
326
|
args: NotifyApplicationStateCommandInput,
|
|
259
327
|
options?: __HttpHandlerOptions
|
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
AssociateDiscoveredResourceCommandInput,
|
|
54
54
|
AssociateDiscoveredResourceCommandOutput,
|
|
55
55
|
} from "./commands/AssociateDiscoveredResourceCommand";
|
|
56
|
+
import {
|
|
57
|
+
AssociateSourceResourceCommandInput,
|
|
58
|
+
AssociateSourceResourceCommandOutput,
|
|
59
|
+
} from "./commands/AssociateSourceResourceCommand";
|
|
56
60
|
import {
|
|
57
61
|
CreateProgressUpdateStreamCommandInput,
|
|
58
62
|
CreateProgressUpdateStreamCommandOutput,
|
|
@@ -77,6 +81,10 @@ import {
|
|
|
77
81
|
DisassociateDiscoveredResourceCommandInput,
|
|
78
82
|
DisassociateDiscoveredResourceCommandOutput,
|
|
79
83
|
} from "./commands/DisassociateDiscoveredResourceCommand";
|
|
84
|
+
import {
|
|
85
|
+
DisassociateSourceResourceCommandInput,
|
|
86
|
+
DisassociateSourceResourceCommandOutput,
|
|
87
|
+
} from "./commands/DisassociateSourceResourceCommand";
|
|
80
88
|
import {
|
|
81
89
|
ImportMigrationTaskCommandInput,
|
|
82
90
|
ImportMigrationTaskCommandOutput,
|
|
@@ -97,10 +105,18 @@ import {
|
|
|
97
105
|
ListMigrationTasksCommandInput,
|
|
98
106
|
ListMigrationTasksCommandOutput,
|
|
99
107
|
} from "./commands/ListMigrationTasksCommand";
|
|
108
|
+
import {
|
|
109
|
+
ListMigrationTaskUpdatesCommandInput,
|
|
110
|
+
ListMigrationTaskUpdatesCommandOutput,
|
|
111
|
+
} from "./commands/ListMigrationTaskUpdatesCommand";
|
|
100
112
|
import {
|
|
101
113
|
ListProgressUpdateStreamsCommandInput,
|
|
102
114
|
ListProgressUpdateStreamsCommandOutput,
|
|
103
115
|
} from "./commands/ListProgressUpdateStreamsCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListSourceResourcesCommandInput,
|
|
118
|
+
ListSourceResourcesCommandOutput,
|
|
119
|
+
} from "./commands/ListSourceResourcesCommand";
|
|
104
120
|
import {
|
|
105
121
|
NotifyApplicationStateCommandInput,
|
|
106
122
|
NotifyApplicationStateCommandOutput,
|
|
@@ -123,36 +139,44 @@ export { __Client };
|
|
|
123
139
|
export type ServiceInputTypes =
|
|
124
140
|
| AssociateCreatedArtifactCommandInput
|
|
125
141
|
| AssociateDiscoveredResourceCommandInput
|
|
142
|
+
| AssociateSourceResourceCommandInput
|
|
126
143
|
| CreateProgressUpdateStreamCommandInput
|
|
127
144
|
| DeleteProgressUpdateStreamCommandInput
|
|
128
145
|
| DescribeApplicationStateCommandInput
|
|
129
146
|
| DescribeMigrationTaskCommandInput
|
|
130
147
|
| DisassociateCreatedArtifactCommandInput
|
|
131
148
|
| DisassociateDiscoveredResourceCommandInput
|
|
149
|
+
| DisassociateSourceResourceCommandInput
|
|
132
150
|
| ImportMigrationTaskCommandInput
|
|
133
151
|
| ListApplicationStatesCommandInput
|
|
134
152
|
| ListCreatedArtifactsCommandInput
|
|
135
153
|
| ListDiscoveredResourcesCommandInput
|
|
154
|
+
| ListMigrationTaskUpdatesCommandInput
|
|
136
155
|
| ListMigrationTasksCommandInput
|
|
137
156
|
| ListProgressUpdateStreamsCommandInput
|
|
157
|
+
| ListSourceResourcesCommandInput
|
|
138
158
|
| NotifyApplicationStateCommandInput
|
|
139
159
|
| NotifyMigrationTaskStateCommandInput
|
|
140
160
|
| PutResourceAttributesCommandInput;
|
|
141
161
|
export type ServiceOutputTypes =
|
|
142
162
|
| AssociateCreatedArtifactCommandOutput
|
|
143
163
|
| AssociateDiscoveredResourceCommandOutput
|
|
164
|
+
| AssociateSourceResourceCommandOutput
|
|
144
165
|
| CreateProgressUpdateStreamCommandOutput
|
|
145
166
|
| DeleteProgressUpdateStreamCommandOutput
|
|
146
167
|
| DescribeApplicationStateCommandOutput
|
|
147
168
|
| DescribeMigrationTaskCommandOutput
|
|
148
169
|
| DisassociateCreatedArtifactCommandOutput
|
|
149
170
|
| DisassociateDiscoveredResourceCommandOutput
|
|
171
|
+
| DisassociateSourceResourceCommandOutput
|
|
150
172
|
| ImportMigrationTaskCommandOutput
|
|
151
173
|
| ListApplicationStatesCommandOutput
|
|
152
174
|
| ListCreatedArtifactsCommandOutput
|
|
153
175
|
| ListDiscoveredResourcesCommandOutput
|
|
176
|
+
| ListMigrationTaskUpdatesCommandOutput
|
|
154
177
|
| ListMigrationTasksCommandOutput
|
|
155
178
|
| ListProgressUpdateStreamsCommandOutput
|
|
179
|
+
| ListSourceResourcesCommandOutput
|
|
156
180
|
| NotifyApplicationStateCommandOutput
|
|
157
181
|
| NotifyMigrationTaskStateCommandOutput
|
|
158
182
|
| PutResourceAttributesCommandOutput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MigrationHubClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MigrationHubClient";
|
|
8
|
+
import {
|
|
9
|
+
AssociateSourceResourceRequest,
|
|
10
|
+
AssociateSourceResourceResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateSourceResourceCommandInput
|
|
15
|
+
extends AssociateSourceResourceRequest {}
|
|
16
|
+
export interface AssociateSourceResourceCommandOutput
|
|
17
|
+
extends AssociateSourceResourceResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateSourceResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateSourceResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateSourceResourceCommandInput,
|
|
24
|
+
AssociateSourceResourceCommandOutput,
|
|
25
|
+
MigrationHubClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: AssociateSourceResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateSourceResourceCommandInput,
|
|
33
|
+
AssociateSourceResourceCommandOutput,
|
|
34
|
+
MigrationHubClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateSourceResourceCommand extends AssociateSourceResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AssociateSourceResourceRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AssociateSourceResourceCommandInput;
|
|
48
|
+
output: AssociateSourceResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MigrationHubClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MigrationHubClient";
|
|
8
|
+
import {
|
|
9
|
+
DisassociateSourceResourceRequest,
|
|
10
|
+
DisassociateSourceResourceResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisassociateSourceResourceCommandInput
|
|
15
|
+
extends DisassociateSourceResourceRequest {}
|
|
16
|
+
export interface DisassociateSourceResourceCommandOutput
|
|
17
|
+
extends DisassociateSourceResourceResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisassociateSourceResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisassociateSourceResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DisassociateSourceResourceCommandInput,
|
|
24
|
+
DisassociateSourceResourceCommandOutput,
|
|
25
|
+
MigrationHubClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DisassociateSourceResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DisassociateSourceResourceCommandInput,
|
|
33
|
+
DisassociateSourceResourceCommandOutput,
|
|
34
|
+
MigrationHubClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DisassociateSourceResourceCommand extends DisassociateSourceResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DisassociateSourceResourceRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DisassociateSourceResourceCommandInput;
|
|
48
|
+
output: DisassociateSourceResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MigrationHubClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MigrationHubClient";
|
|
8
|
+
import {
|
|
9
|
+
ListMigrationTaskUpdatesRequest,
|
|
10
|
+
ListMigrationTaskUpdatesResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListMigrationTaskUpdatesCommandInput
|
|
15
|
+
extends ListMigrationTaskUpdatesRequest {}
|
|
16
|
+
export interface ListMigrationTaskUpdatesCommandOutput
|
|
17
|
+
extends ListMigrationTaskUpdatesResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListMigrationTaskUpdatesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListMigrationTaskUpdatesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListMigrationTaskUpdatesCommandInput,
|
|
24
|
+
ListMigrationTaskUpdatesCommandOutput,
|
|
25
|
+
MigrationHubClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListMigrationTaskUpdatesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListMigrationTaskUpdatesCommandInput,
|
|
33
|
+
ListMigrationTaskUpdatesCommandOutput,
|
|
34
|
+
MigrationHubClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListMigrationTaskUpdatesCommand extends ListMigrationTaskUpdatesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListMigrationTaskUpdatesRequest;
|
|
44
|
+
output: ListMigrationTaskUpdatesResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListMigrationTaskUpdatesCommandInput;
|
|
48
|
+
output: ListMigrationTaskUpdatesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MigrationHubClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MigrationHubClient";
|
|
8
|
+
import {
|
|
9
|
+
ListSourceResourcesRequest,
|
|
10
|
+
ListSourceResourcesResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSourceResourcesCommandInput
|
|
15
|
+
extends ListSourceResourcesRequest {}
|
|
16
|
+
export interface ListSourceResourcesCommandOutput
|
|
17
|
+
extends ListSourceResourcesResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListSourceResourcesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListSourceResourcesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListSourceResourcesCommandInput,
|
|
24
|
+
ListSourceResourcesCommandOutput,
|
|
25
|
+
MigrationHubClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListSourceResourcesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListSourceResourcesCommandInput,
|
|
33
|
+
ListSourceResourcesCommandOutput,
|
|
34
|
+
MigrationHubClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListSourceResourcesCommand extends ListSourceResourcesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListSourceResourcesRequest;
|
|
44
|
+
output: ListSourceResourcesResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListSourceResourcesCommandInput;
|
|
48
|
+
output: ListSourceResourcesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
export * from "./AssociateCreatedArtifactCommand";
|
|
2
2
|
export * from "./AssociateDiscoveredResourceCommand";
|
|
3
|
+
export * from "./AssociateSourceResourceCommand";
|
|
3
4
|
export * from "./CreateProgressUpdateStreamCommand";
|
|
4
5
|
export * from "./DeleteProgressUpdateStreamCommand";
|
|
5
6
|
export * from "./DescribeApplicationStateCommand";
|
|
6
7
|
export * from "./DescribeMigrationTaskCommand";
|
|
7
8
|
export * from "./DisassociateCreatedArtifactCommand";
|
|
8
9
|
export * from "./DisassociateDiscoveredResourceCommand";
|
|
10
|
+
export * from "./DisassociateSourceResourceCommand";
|
|
9
11
|
export * from "./ImportMigrationTaskCommand";
|
|
10
12
|
export * from "./ListApplicationStatesCommand";
|
|
11
13
|
export * from "./ListCreatedArtifactsCommand";
|
|
12
14
|
export * from "./ListDiscoveredResourcesCommand";
|
|
15
|
+
export * from "./ListMigrationTaskUpdatesCommand";
|
|
13
16
|
export * from "./ListMigrationTasksCommand";
|
|
14
17
|
export * from "./ListProgressUpdateStreamsCommand";
|
|
18
|
+
export * from "./ListSourceResourcesCommand";
|
|
15
19
|
export * from "./NotifyApplicationStateCommand";
|
|
16
20
|
export * from "./NotifyMigrationTaskStateCommand";
|
|
17
21
|
export * from "./PutResourceAttributesCommand";
|
|
@@ -113,6 +113,18 @@ export declare class PolicyErrorException extends __BaseException {
|
|
|
113
113
|
opts: __ExceptionOptionType<PolicyErrorException, __BaseException>
|
|
114
114
|
);
|
|
115
115
|
}
|
|
116
|
+
export interface SourceResource {
|
|
117
|
+
Name: string | undefined;
|
|
118
|
+
Description?: string | undefined;
|
|
119
|
+
StatusDetail?: string | undefined;
|
|
120
|
+
}
|
|
121
|
+
export interface AssociateSourceResourceRequest {
|
|
122
|
+
ProgressUpdateStream: string | undefined;
|
|
123
|
+
MigrationTaskName: string | undefined;
|
|
124
|
+
SourceResource: SourceResource | undefined;
|
|
125
|
+
DryRun?: boolean | undefined;
|
|
126
|
+
}
|
|
127
|
+
export interface AssociateSourceResourceResult {}
|
|
116
128
|
export interface CreateProgressUpdateStreamRequest {
|
|
117
129
|
ProgressUpdateStreamName: string | undefined;
|
|
118
130
|
DryRun?: boolean | undefined;
|
|
@@ -188,6 +200,13 @@ export interface DisassociateDiscoveredResourceRequest {
|
|
|
188
200
|
DryRun?: boolean | undefined;
|
|
189
201
|
}
|
|
190
202
|
export interface DisassociateDiscoveredResourceResult {}
|
|
203
|
+
export interface DisassociateSourceResourceRequest {
|
|
204
|
+
ProgressUpdateStream: string | undefined;
|
|
205
|
+
MigrationTaskName: string | undefined;
|
|
206
|
+
SourceResourceName: string | undefined;
|
|
207
|
+
DryRun?: boolean | undefined;
|
|
208
|
+
}
|
|
209
|
+
export interface DisassociateSourceResourceResult {}
|
|
191
210
|
export interface ImportMigrationTaskRequest {
|
|
192
211
|
ProgressUpdateStream: string | undefined;
|
|
193
212
|
MigrationTaskName: string | undefined;
|
|
@@ -240,6 +259,25 @@ export interface ListMigrationTasksResult {
|
|
|
240
259
|
NextToken?: string | undefined;
|
|
241
260
|
MigrationTaskSummaryList?: MigrationTaskSummary[] | undefined;
|
|
242
261
|
}
|
|
262
|
+
export interface ListMigrationTaskUpdatesRequest {
|
|
263
|
+
ProgressUpdateStream: string | undefined;
|
|
264
|
+
MigrationTaskName: string | undefined;
|
|
265
|
+
NextToken?: string | undefined;
|
|
266
|
+
MaxResults?: number | undefined;
|
|
267
|
+
}
|
|
268
|
+
export declare const UpdateType: {
|
|
269
|
+
readonly MigrationTaskStateUpdated: "MIGRATION_TASK_STATE_UPDATED";
|
|
270
|
+
};
|
|
271
|
+
export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
|
|
272
|
+
export interface MigrationTaskUpdate {
|
|
273
|
+
UpdateDateTime?: Date | undefined;
|
|
274
|
+
UpdateType?: UpdateType | undefined;
|
|
275
|
+
MigrationTaskState?: Task | undefined;
|
|
276
|
+
}
|
|
277
|
+
export interface ListMigrationTaskUpdatesResult {
|
|
278
|
+
NextToken?: string | undefined;
|
|
279
|
+
MigrationTaskUpdateList?: MigrationTaskUpdate[] | undefined;
|
|
280
|
+
}
|
|
243
281
|
export interface ListProgressUpdateStreamsRequest {
|
|
244
282
|
NextToken?: string | undefined;
|
|
245
283
|
MaxResults?: number | undefined;
|
|
@@ -251,6 +289,16 @@ export interface ListProgressUpdateStreamsResult {
|
|
|
251
289
|
ProgressUpdateStreamSummaryList?: ProgressUpdateStreamSummary[] | undefined;
|
|
252
290
|
NextToken?: string | undefined;
|
|
253
291
|
}
|
|
292
|
+
export interface ListSourceResourcesRequest {
|
|
293
|
+
ProgressUpdateStream: string | undefined;
|
|
294
|
+
MigrationTaskName: string | undefined;
|
|
295
|
+
NextToken?: string | undefined;
|
|
296
|
+
MaxResults?: number | undefined;
|
|
297
|
+
}
|
|
298
|
+
export interface ListSourceResourcesResult {
|
|
299
|
+
NextToken?: string | undefined;
|
|
300
|
+
SourceResourceList?: SourceResource[] | undefined;
|
|
301
|
+
}
|
|
254
302
|
export interface NotifyApplicationStateRequest {
|
|
255
303
|
ApplicationId: string | undefined;
|
|
256
304
|
Status: ApplicationStatus | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMigrationTaskUpdatesCommandInput,
|
|
4
|
+
ListMigrationTaskUpdatesCommandOutput,
|
|
5
|
+
} from "../commands/ListMigrationTaskUpdatesCommand";
|
|
6
|
+
import { MigrationHubPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListMigrationTaskUpdates: (
|
|
8
|
+
config: MigrationHubPaginationConfiguration,
|
|
9
|
+
input: ListMigrationTaskUpdatesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMigrationTaskUpdatesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSourceResourcesCommandInput,
|
|
4
|
+
ListSourceResourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListSourceResourcesCommand";
|
|
6
|
+
import { MigrationHubPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSourceResources: (
|
|
8
|
+
config: MigrationHubPaginationConfiguration,
|
|
9
|
+
input: ListSourceResourcesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSourceResourcesCommandOutput>;
|
|
@@ -2,5 +2,7 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListApplicationStatesPaginator";
|
|
3
3
|
export * from "./ListCreatedArtifactsPaginator";
|
|
4
4
|
export * from "./ListDiscoveredResourcesPaginator";
|
|
5
|
+
export * from "./ListMigrationTaskUpdatesPaginator";
|
|
5
6
|
export * from "./ListMigrationTasksPaginator";
|
|
6
7
|
export * from "./ListProgressUpdateStreamsPaginator";
|
|
8
|
+
export * from "./ListSourceResourcesPaginator";
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
AssociateDiscoveredResourceCommandInput,
|
|
12
12
|
AssociateDiscoveredResourceCommandOutput,
|
|
13
13
|
} from "../commands/AssociateDiscoveredResourceCommand";
|
|
14
|
+
import {
|
|
15
|
+
AssociateSourceResourceCommandInput,
|
|
16
|
+
AssociateSourceResourceCommandOutput,
|
|
17
|
+
} from "../commands/AssociateSourceResourceCommand";
|
|
14
18
|
import {
|
|
15
19
|
CreateProgressUpdateStreamCommandInput,
|
|
16
20
|
CreateProgressUpdateStreamCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
DisassociateDiscoveredResourceCommandInput,
|
|
36
40
|
DisassociateDiscoveredResourceCommandOutput,
|
|
37
41
|
} from "../commands/DisassociateDiscoveredResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
DisassociateSourceResourceCommandInput,
|
|
44
|
+
DisassociateSourceResourceCommandOutput,
|
|
45
|
+
} from "../commands/DisassociateSourceResourceCommand";
|
|
38
46
|
import {
|
|
39
47
|
ImportMigrationTaskCommandInput,
|
|
40
48
|
ImportMigrationTaskCommandOutput,
|
|
@@ -55,10 +63,18 @@ import {
|
|
|
55
63
|
ListMigrationTasksCommandInput,
|
|
56
64
|
ListMigrationTasksCommandOutput,
|
|
57
65
|
} from "../commands/ListMigrationTasksCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListMigrationTaskUpdatesCommandInput,
|
|
68
|
+
ListMigrationTaskUpdatesCommandOutput,
|
|
69
|
+
} from "../commands/ListMigrationTaskUpdatesCommand";
|
|
58
70
|
import {
|
|
59
71
|
ListProgressUpdateStreamsCommandInput,
|
|
60
72
|
ListProgressUpdateStreamsCommandOutput,
|
|
61
73
|
} from "../commands/ListProgressUpdateStreamsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListSourceResourcesCommandInput,
|
|
76
|
+
ListSourceResourcesCommandOutput,
|
|
77
|
+
} from "../commands/ListSourceResourcesCommand";
|
|
62
78
|
import {
|
|
63
79
|
NotifyApplicationStateCommandInput,
|
|
64
80
|
NotifyApplicationStateCommandOutput,
|
|
@@ -79,6 +95,10 @@ export declare const se_AssociateDiscoveredResourceCommand: (
|
|
|
79
95
|
input: AssociateDiscoveredResourceCommandInput,
|
|
80
96
|
context: __SerdeContext
|
|
81
97
|
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_AssociateSourceResourceCommand: (
|
|
99
|
+
input: AssociateSourceResourceCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
82
102
|
export declare const se_CreateProgressUpdateStreamCommand: (
|
|
83
103
|
input: CreateProgressUpdateStreamCommandInput,
|
|
84
104
|
context: __SerdeContext
|
|
@@ -103,6 +123,10 @@ export declare const se_DisassociateDiscoveredResourceCommand: (
|
|
|
103
123
|
input: DisassociateDiscoveredResourceCommandInput,
|
|
104
124
|
context: __SerdeContext
|
|
105
125
|
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_DisassociateSourceResourceCommand: (
|
|
127
|
+
input: DisassociateSourceResourceCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
106
130
|
export declare const se_ImportMigrationTaskCommand: (
|
|
107
131
|
input: ImportMigrationTaskCommandInput,
|
|
108
132
|
context: __SerdeContext
|
|
@@ -123,10 +147,18 @@ export declare const se_ListMigrationTasksCommand: (
|
|
|
123
147
|
input: ListMigrationTasksCommandInput,
|
|
124
148
|
context: __SerdeContext
|
|
125
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_ListMigrationTaskUpdatesCommand: (
|
|
151
|
+
input: ListMigrationTaskUpdatesCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
126
154
|
export declare const se_ListProgressUpdateStreamsCommand: (
|
|
127
155
|
input: ListProgressUpdateStreamsCommandInput,
|
|
128
156
|
context: __SerdeContext
|
|
129
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_ListSourceResourcesCommand: (
|
|
159
|
+
input: ListSourceResourcesCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
130
162
|
export declare const se_NotifyApplicationStateCommand: (
|
|
131
163
|
input: NotifyApplicationStateCommandInput,
|
|
132
164
|
context: __SerdeContext
|
|
@@ -147,6 +179,10 @@ export declare const de_AssociateDiscoveredResourceCommand: (
|
|
|
147
179
|
output: __HttpResponse,
|
|
148
180
|
context: __SerdeContext
|
|
149
181
|
) => Promise<AssociateDiscoveredResourceCommandOutput>;
|
|
182
|
+
export declare const de_AssociateSourceResourceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<AssociateSourceResourceCommandOutput>;
|
|
150
186
|
export declare const de_CreateProgressUpdateStreamCommand: (
|
|
151
187
|
output: __HttpResponse,
|
|
152
188
|
context: __SerdeContext
|
|
@@ -171,6 +207,10 @@ export declare const de_DisassociateDiscoveredResourceCommand: (
|
|
|
171
207
|
output: __HttpResponse,
|
|
172
208
|
context: __SerdeContext
|
|
173
209
|
) => Promise<DisassociateDiscoveredResourceCommandOutput>;
|
|
210
|
+
export declare const de_DisassociateSourceResourceCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<DisassociateSourceResourceCommandOutput>;
|
|
174
214
|
export declare const de_ImportMigrationTaskCommand: (
|
|
175
215
|
output: __HttpResponse,
|
|
176
216
|
context: __SerdeContext
|
|
@@ -191,10 +231,18 @@ export declare const de_ListMigrationTasksCommand: (
|
|
|
191
231
|
output: __HttpResponse,
|
|
192
232
|
context: __SerdeContext
|
|
193
233
|
) => Promise<ListMigrationTasksCommandOutput>;
|
|
234
|
+
export declare const de_ListMigrationTaskUpdatesCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<ListMigrationTaskUpdatesCommandOutput>;
|
|
194
238
|
export declare const de_ListProgressUpdateStreamsCommand: (
|
|
195
239
|
output: __HttpResponse,
|
|
196
240
|
context: __SerdeContext
|
|
197
241
|
) => Promise<ListProgressUpdateStreamsCommandOutput>;
|
|
242
|
+
export declare const de_ListSourceResourcesCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<ListSourceResourcesCommandOutput>;
|
|
198
246
|
export declare const de_NotifyApplicationStateCommand: (
|
|
199
247
|
output: __HttpResponse,
|
|
200
248
|
context: __SerdeContext
|