@aws-sdk/client-drs 3.100.0 → 3.102.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 +11 -0
- package/README.md +7 -7
- package/dist-cjs/Drs.js +45 -0
- package/dist-cjs/commands/CreateExtendedSourceServerCommand.js +36 -0
- package/dist-cjs/commands/ListExtensibleSourceServersCommand.js +36 -0
- package/dist-cjs/commands/ListStagingAccountsCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +273 -201
- package/dist-cjs/pagination/ListExtensibleSourceServersPaginator.js +36 -0
- package/dist-cjs/pagination/ListStagingAccountsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +353 -2
- package/dist-es/Drs.js +45 -0
- package/dist-es/commands/CreateExtendedSourceServerCommand.js +39 -0
- package/dist-es/commands/ListExtensibleSourceServersCommand.js +39 -0
- package/dist-es/commands/ListStagingAccountsCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +217 -169
- package/dist-es/pagination/ListExtensibleSourceServersPaginator.js +75 -0
- package/dist-es/pagination/ListStagingAccountsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +439 -15
- package/dist-types/Drs.d.ts +24 -0
- package/dist-types/DrsClient.d.ts +5 -2
- package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +35 -0
- package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +38 -0
- package/dist-types/commands/ListStagingAccountsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +731 -507
- package/dist-types/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStagingAccountsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Drs.d.ts +15 -0
- package/dist-types/ts3.4/DrsClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/CreateExtendedSourceServerCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExtensibleSourceServersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListStagingAccountsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +442 -305
- package/dist-types/ts3.4/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStagingAccountsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
- package/package.json +1 -1
|
@@ -9,6 +9,15 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
9
9
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
export interface Account {
|
|
13
|
+
|
|
14
|
+
accountID?: string;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace Account {
|
|
17
|
+
|
|
18
|
+
const filterSensitiveLog: (obj: Account) => any;
|
|
19
|
+
}
|
|
20
|
+
|
|
12
21
|
export declare class ConflictException extends __BaseException {
|
|
13
22
|
readonly name: "ConflictException";
|
|
14
23
|
readonly $fault: "client";
|
|
@@ -21,6 +30,29 @@ export declare class ConflictException extends __BaseException {
|
|
|
21
30
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
31
|
}
|
|
23
32
|
|
|
33
|
+
export interface ConversionProperties {
|
|
34
|
+
|
|
35
|
+
volumeToConversionMap?: {
|
|
36
|
+
[key: string]: {
|
|
37
|
+
[key: string]: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
rootVolumeName?: string;
|
|
42
|
+
|
|
43
|
+
forceUefi?: boolean;
|
|
44
|
+
|
|
45
|
+
dataTimestamp?: string;
|
|
46
|
+
|
|
47
|
+
volumeToVolumeSize?: {
|
|
48
|
+
[key: string]: number;
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
export declare namespace ConversionProperties {
|
|
52
|
+
|
|
53
|
+
const filterSensitiveLog: (obj: ConversionProperties) => any;
|
|
54
|
+
}
|
|
55
|
+
|
|
24
56
|
export interface CPU {
|
|
25
57
|
|
|
26
58
|
cores?: number;
|
|
@@ -31,129 +63,331 @@ export declare namespace CPU {
|
|
|
31
63
|
|
|
32
64
|
const filterSensitiveLog: (obj: CPU) => any;
|
|
33
65
|
}
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
|
|
66
|
+
export interface CreateExtendedSourceServerRequest {
|
|
67
|
+
|
|
68
|
+
sourceServerArn: string | undefined;
|
|
69
|
+
|
|
70
|
+
tags?: {
|
|
71
|
+
[key: string]: string;
|
|
72
|
+
};
|
|
37
73
|
}
|
|
38
|
-
export declare
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
ST1 = "ST1"
|
|
74
|
+
export declare namespace CreateExtendedSourceServerRequest {
|
|
75
|
+
|
|
76
|
+
const filterSensitiveLog: (obj: CreateExtendedSourceServerRequest) => any;
|
|
42
77
|
}
|
|
43
|
-
export declare enum
|
|
44
|
-
|
|
45
|
-
|
|
78
|
+
export declare enum DataReplicationErrorString {
|
|
79
|
+
AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
|
|
80
|
+
FAILED_TO_ATTACH_STAGING_DISKS = "FAILED_TO_ATTACH_STAGING_DISKS",
|
|
81
|
+
FAILED_TO_AUTHENTICATE_WITH_SERVICE = "FAILED_TO_AUTHENTICATE_WITH_SERVICE",
|
|
82
|
+
FAILED_TO_BOOT_REPLICATION_SERVER = "FAILED_TO_BOOT_REPLICATION_SERVER",
|
|
83
|
+
FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
|
|
84
|
+
FAILED_TO_CREATE_SECURITY_GROUP = "FAILED_TO_CREATE_SECURITY_GROUP",
|
|
85
|
+
FAILED_TO_CREATE_STAGING_DISKS = "FAILED_TO_CREATE_STAGING_DISKS",
|
|
86
|
+
FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
|
|
87
|
+
FAILED_TO_LAUNCH_REPLICATION_SERVER = "FAILED_TO_LAUNCH_REPLICATION_SERVER",
|
|
88
|
+
FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
|
|
89
|
+
FAILED_TO_START_DATA_TRANSFER = "FAILED_TO_START_DATA_TRANSFER",
|
|
90
|
+
NOT_CONVERGING = "NOT_CONVERGING",
|
|
91
|
+
SNAPSHOTS_FAILURE = "SNAPSHOTS_FAILURE",
|
|
92
|
+
UNSTABLE_NETWORK = "UNSTABLE_NETWORK"
|
|
46
93
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
94
|
+
|
|
95
|
+
export interface DataReplicationError {
|
|
96
|
+
|
|
97
|
+
error?: DataReplicationErrorString | string;
|
|
98
|
+
|
|
99
|
+
rawError?: string;
|
|
100
|
+
}
|
|
101
|
+
export declare namespace DataReplicationError {
|
|
102
|
+
|
|
103
|
+
const filterSensitiveLog: (obj: DataReplicationError) => any;
|
|
104
|
+
}
|
|
105
|
+
export declare enum DataReplicationInitiationStepName {
|
|
106
|
+
ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
|
|
107
|
+
AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
|
|
108
|
+
BOOT_REPLICATION_SERVER = "BOOT_REPLICATION_SERVER",
|
|
109
|
+
CONNECT_AGENT_TO_REPLICATION_SERVER = "CONNECT_AGENT_TO_REPLICATION_SERVER",
|
|
110
|
+
CREATE_SECURITY_GROUP = "CREATE_SECURITY_GROUP",
|
|
111
|
+
CREATE_STAGING_DISKS = "CREATE_STAGING_DISKS",
|
|
112
|
+
DOWNLOAD_REPLICATION_SOFTWARE = "DOWNLOAD_REPLICATION_SOFTWARE",
|
|
113
|
+
LAUNCH_REPLICATION_SERVER = "LAUNCH_REPLICATION_SERVER",
|
|
114
|
+
PAIR_REPLICATION_SERVER_WITH_AGENT = "PAIR_REPLICATION_SERVER_WITH_AGENT",
|
|
115
|
+
START_DATA_TRANSFER = "START_DATA_TRANSFER",
|
|
116
|
+
WAIT = "WAIT"
|
|
117
|
+
}
|
|
118
|
+
export declare enum DataReplicationInitiationStepStatus {
|
|
119
|
+
FAILED = "FAILED",
|
|
120
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
121
|
+
NOT_STARTED = "NOT_STARTED",
|
|
122
|
+
SKIPPED = "SKIPPED",
|
|
123
|
+
SUCCEEDED = "SUCCEEDED"
|
|
51
124
|
}
|
|
52
125
|
|
|
53
|
-
export interface
|
|
126
|
+
export interface DataReplicationInitiationStep {
|
|
54
127
|
|
|
55
|
-
|
|
128
|
+
name?: DataReplicationInitiationStepName | string;
|
|
56
129
|
|
|
57
|
-
|
|
130
|
+
status?: DataReplicationInitiationStepStatus | string;
|
|
131
|
+
}
|
|
132
|
+
export declare namespace DataReplicationInitiationStep {
|
|
58
133
|
|
|
59
|
-
|
|
134
|
+
const filterSensitiveLog: (obj: DataReplicationInitiationStep) => any;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface DataReplicationInitiation {
|
|
60
138
|
|
|
61
|
-
|
|
139
|
+
startDateTime?: string;
|
|
62
140
|
|
|
63
|
-
|
|
141
|
+
nextAttemptDateTime?: string;
|
|
142
|
+
|
|
143
|
+
steps?: DataReplicationInitiationStep[];
|
|
64
144
|
}
|
|
65
|
-
export declare namespace
|
|
145
|
+
export declare namespace DataReplicationInitiation {
|
|
66
146
|
|
|
67
|
-
const filterSensitiveLog: (obj:
|
|
147
|
+
const filterSensitiveLog: (obj: DataReplicationInitiation) => any;
|
|
68
148
|
}
|
|
69
|
-
export
|
|
149
|
+
export declare enum DataReplicationState {
|
|
150
|
+
BACKLOG = "BACKLOG",
|
|
151
|
+
CONTINUOUS = "CONTINUOUS",
|
|
152
|
+
CREATING_SNAPSHOT = "CREATING_SNAPSHOT",
|
|
153
|
+
DISCONNECTED = "DISCONNECTED",
|
|
154
|
+
INITIAL_SYNC = "INITIAL_SYNC",
|
|
155
|
+
INITIATING = "INITIATING",
|
|
156
|
+
PAUSED = "PAUSED",
|
|
157
|
+
RESCAN = "RESCAN",
|
|
158
|
+
STALLED = "STALLED",
|
|
159
|
+
STOPPED = "STOPPED"
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface DataReplicationInfoReplicatedDisk {
|
|
70
163
|
|
|
71
|
-
|
|
164
|
+
deviceName?: string;
|
|
72
165
|
|
|
73
|
-
|
|
166
|
+
totalStorageBytes?: number;
|
|
74
167
|
|
|
75
|
-
|
|
168
|
+
replicatedStorageBytes?: number;
|
|
76
169
|
|
|
77
|
-
|
|
170
|
+
rescannedStorageBytes?: number;
|
|
78
171
|
|
|
79
|
-
|
|
172
|
+
backloggedStorageBytes?: number;
|
|
173
|
+
}
|
|
174
|
+
export declare namespace DataReplicationInfoReplicatedDisk {
|
|
80
175
|
|
|
81
|
-
|
|
176
|
+
const filterSensitiveLog: (obj: DataReplicationInfoReplicatedDisk) => any;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface DataReplicationInfo {
|
|
82
180
|
|
|
83
|
-
|
|
181
|
+
lagDuration?: string;
|
|
84
182
|
|
|
85
|
-
|
|
183
|
+
etaDateTime?: string;
|
|
86
184
|
|
|
87
|
-
|
|
185
|
+
replicatedDisks?: DataReplicationInfoReplicatedDisk[];
|
|
88
186
|
|
|
89
|
-
|
|
187
|
+
dataReplicationState?: DataReplicationState | string;
|
|
90
188
|
|
|
91
|
-
|
|
189
|
+
dataReplicationInitiation?: DataReplicationInitiation;
|
|
92
190
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
191
|
+
dataReplicationError?: DataReplicationError;
|
|
192
|
+
}
|
|
193
|
+
export declare namespace DataReplicationInfo {
|
|
96
194
|
|
|
97
|
-
|
|
195
|
+
const filterSensitiveLog: (obj: DataReplicationInfo) => any;
|
|
196
|
+
}
|
|
197
|
+
export declare enum LastLaunchResult {
|
|
198
|
+
FAILED = "FAILED",
|
|
199
|
+
NOT_STARTED = "NOT_STARTED",
|
|
200
|
+
PENDING = "PENDING",
|
|
201
|
+
SUCCEEDED = "SUCCEEDED"
|
|
202
|
+
}
|
|
203
|
+
export declare enum LastLaunchType {
|
|
204
|
+
DRILL = "DRILL",
|
|
205
|
+
RECOVERY = "RECOVERY"
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface LifeCycleLastLaunchInitiated {
|
|
98
209
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
210
|
+
apiCallDateTime?: string;
|
|
211
|
+
|
|
212
|
+
jobID?: string;
|
|
213
|
+
|
|
214
|
+
type?: LastLaunchType | string;
|
|
102
215
|
}
|
|
103
|
-
export declare namespace
|
|
216
|
+
export declare namespace LifeCycleLastLaunchInitiated {
|
|
104
217
|
|
|
105
|
-
const filterSensitiveLog: (obj:
|
|
218
|
+
const filterSensitiveLog: (obj: LifeCycleLastLaunchInitiated) => any;
|
|
106
219
|
}
|
|
107
220
|
|
|
108
|
-
export
|
|
109
|
-
readonly name: "InternalServerException";
|
|
110
|
-
readonly $fault: "server";
|
|
221
|
+
export interface LifeCycleLastLaunch {
|
|
111
222
|
|
|
112
|
-
|
|
223
|
+
initiated?: LifeCycleLastLaunchInitiated;
|
|
224
|
+
}
|
|
225
|
+
export declare namespace LifeCycleLastLaunch {
|
|
113
226
|
|
|
114
|
-
|
|
227
|
+
const filterSensitiveLog: (obj: LifeCycleLastLaunch) => any;
|
|
115
228
|
}
|
|
116
|
-
|
|
229
|
+
|
|
230
|
+
export interface LifeCycle {
|
|
117
231
|
|
|
118
|
-
|
|
232
|
+
addedToServiceDateTime?: string;
|
|
119
233
|
|
|
120
|
-
|
|
234
|
+
firstByteDateTime?: string;
|
|
121
235
|
|
|
122
|
-
|
|
236
|
+
elapsedReplicationDuration?: string;
|
|
123
237
|
|
|
124
|
-
|
|
238
|
+
lastSeenByServiceDateTime?: string;
|
|
125
239
|
|
|
126
|
-
|
|
240
|
+
lastLaunch?: LifeCycleLastLaunch;
|
|
241
|
+
}
|
|
242
|
+
export declare namespace LifeCycle {
|
|
127
243
|
|
|
128
|
-
|
|
244
|
+
const filterSensitiveLog: (obj: LifeCycle) => any;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
export interface Disk {
|
|
129
248
|
|
|
130
|
-
|
|
249
|
+
deviceName?: string;
|
|
131
250
|
|
|
132
|
-
|
|
251
|
+
bytes?: number;
|
|
252
|
+
}
|
|
253
|
+
export declare namespace Disk {
|
|
133
254
|
|
|
134
|
-
|
|
255
|
+
const filterSensitiveLog: (obj: Disk) => any;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export interface IdentificationHints {
|
|
135
259
|
|
|
136
|
-
|
|
260
|
+
fqdn?: string;
|
|
137
261
|
|
|
138
|
-
|
|
262
|
+
hostname?: string;
|
|
139
263
|
|
|
140
|
-
|
|
264
|
+
vmWareUuid?: string;
|
|
141
265
|
|
|
142
|
-
|
|
266
|
+
awsInstanceID?: string;
|
|
267
|
+
}
|
|
268
|
+
export declare namespace IdentificationHints {
|
|
143
269
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
270
|
+
const filterSensitiveLog: (obj: IdentificationHints) => any;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export interface NetworkInterface {
|
|
274
|
+
|
|
275
|
+
macAddress?: string;
|
|
276
|
+
|
|
277
|
+
ips?: string[];
|
|
278
|
+
|
|
279
|
+
isPrimary?: boolean;
|
|
280
|
+
}
|
|
281
|
+
export declare namespace NetworkInterface {
|
|
282
|
+
|
|
283
|
+
const filterSensitiveLog: (obj: NetworkInterface) => any;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
export interface OS {
|
|
287
|
+
|
|
288
|
+
fullString?: string;
|
|
289
|
+
}
|
|
290
|
+
export declare namespace OS {
|
|
291
|
+
|
|
292
|
+
const filterSensitiveLog: (obj: OS) => any;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
export interface SourceProperties {
|
|
296
|
+
|
|
297
|
+
lastUpdatedDateTime?: string;
|
|
298
|
+
|
|
299
|
+
recommendedInstanceType?: string;
|
|
300
|
+
|
|
301
|
+
identificationHints?: IdentificationHints;
|
|
302
|
+
|
|
303
|
+
networkInterfaces?: NetworkInterface[];
|
|
304
|
+
|
|
305
|
+
disks?: Disk[];
|
|
306
|
+
|
|
307
|
+
cpus?: CPU[];
|
|
308
|
+
|
|
309
|
+
ramBytes?: number;
|
|
310
|
+
|
|
311
|
+
os?: OS;
|
|
312
|
+
}
|
|
313
|
+
export declare namespace SourceProperties {
|
|
314
|
+
|
|
315
|
+
const filterSensitiveLog: (obj: SourceProperties) => any;
|
|
316
|
+
}
|
|
317
|
+
export declare enum ExtensionStatus {
|
|
318
|
+
EXTENDED = "EXTENDED",
|
|
319
|
+
EXTENSION_ERROR = "EXTENSION_ERROR",
|
|
320
|
+
NOT_EXTENDED = "NOT_EXTENDED"
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export interface StagingArea {
|
|
324
|
+
|
|
325
|
+
status?: ExtensionStatus | string;
|
|
326
|
+
|
|
327
|
+
stagingAccountID?: string;
|
|
328
|
+
|
|
329
|
+
stagingSourceServerArn?: string;
|
|
330
|
+
|
|
331
|
+
errorMessage?: string;
|
|
332
|
+
}
|
|
333
|
+
export declare namespace StagingArea {
|
|
334
|
+
|
|
335
|
+
const filterSensitiveLog: (obj: StagingArea) => any;
|
|
336
|
+
}
|
|
337
|
+
export interface SourceServer {
|
|
338
|
+
|
|
339
|
+
sourceServerID?: string;
|
|
340
|
+
|
|
341
|
+
arn?: string;
|
|
147
342
|
|
|
148
343
|
tags?: {
|
|
149
344
|
[key: string]: string;
|
|
150
345
|
};
|
|
151
346
|
|
|
152
|
-
|
|
347
|
+
recoveryInstanceId?: string;
|
|
348
|
+
|
|
349
|
+
lastLaunchResult?: LastLaunchResult | string;
|
|
350
|
+
|
|
351
|
+
dataReplicationInfo?: DataReplicationInfo;
|
|
352
|
+
|
|
353
|
+
lifeCycle?: LifeCycle;
|
|
354
|
+
|
|
355
|
+
sourceProperties?: SourceProperties;
|
|
356
|
+
|
|
357
|
+
stagingArea?: StagingArea;
|
|
153
358
|
}
|
|
154
|
-
export declare namespace
|
|
359
|
+
export declare namespace SourceServer {
|
|
155
360
|
|
|
156
|
-
const filterSensitiveLog: (obj:
|
|
361
|
+
const filterSensitiveLog: (obj: SourceServer) => any;
|
|
362
|
+
}
|
|
363
|
+
export interface CreateExtendedSourceServerResponse {
|
|
364
|
+
|
|
365
|
+
sourceServer?: SourceServer;
|
|
366
|
+
}
|
|
367
|
+
export declare namespace CreateExtendedSourceServerResponse {
|
|
368
|
+
|
|
369
|
+
const filterSensitiveLog: (obj: CreateExtendedSourceServerResponse) => any;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
export declare class InternalServerException extends __BaseException {
|
|
373
|
+
readonly name: "InternalServerException";
|
|
374
|
+
readonly $fault: "server";
|
|
375
|
+
|
|
376
|
+
retryAfterSeconds?: number;
|
|
377
|
+
|
|
378
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
382
|
+
readonly name: "ResourceNotFoundException";
|
|
383
|
+
readonly $fault: "client";
|
|
384
|
+
code?: string;
|
|
385
|
+
|
|
386
|
+
resourceId?: string;
|
|
387
|
+
|
|
388
|
+
resourceType?: string;
|
|
389
|
+
|
|
390
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
157
391
|
}
|
|
158
392
|
|
|
159
393
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -221,124 +455,120 @@ export declare class ValidationException extends __BaseException {
|
|
|
221
455
|
|
|
222
456
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
223
457
|
}
|
|
224
|
-
export declare enum
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
458
|
+
export declare enum ReplicationConfigurationDataPlaneRouting {
|
|
459
|
+
PRIVATE_IP = "PRIVATE_IP",
|
|
460
|
+
PUBLIC_IP = "PUBLIC_IP"
|
|
461
|
+
}
|
|
462
|
+
export declare enum ReplicationConfigurationDefaultLargeStagingDiskType {
|
|
463
|
+
GP2 = "GP2",
|
|
464
|
+
GP3 = "GP3",
|
|
465
|
+
ST1 = "ST1"
|
|
466
|
+
}
|
|
467
|
+
export declare enum ReplicationConfigurationEbsEncryption {
|
|
468
|
+
CUSTOM = "CUSTOM",
|
|
469
|
+
DEFAULT = "DEFAULT"
|
|
470
|
+
}
|
|
471
|
+
export declare enum PITPolicyRuleUnits {
|
|
472
|
+
DAY = "DAY",
|
|
473
|
+
HOUR = "HOUR",
|
|
474
|
+
MINUTE = "MINUTE"
|
|
239
475
|
}
|
|
240
476
|
|
|
241
|
-
export interface
|
|
477
|
+
export interface PITPolicyRule {
|
|
242
478
|
|
|
243
|
-
|
|
479
|
+
ruleID?: number;
|
|
244
480
|
|
|
245
|
-
|
|
246
|
-
}
|
|
247
|
-
export declare namespace DataReplicationError {
|
|
481
|
+
units: PITPolicyRuleUnits | string | undefined;
|
|
248
482
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
BOOT_REPLICATION_SERVER = "BOOT_REPLICATION_SERVER",
|
|
255
|
-
CONNECT_AGENT_TO_REPLICATION_SERVER = "CONNECT_AGENT_TO_REPLICATION_SERVER",
|
|
256
|
-
CREATE_SECURITY_GROUP = "CREATE_SECURITY_GROUP",
|
|
257
|
-
CREATE_STAGING_DISKS = "CREATE_STAGING_DISKS",
|
|
258
|
-
DOWNLOAD_REPLICATION_SOFTWARE = "DOWNLOAD_REPLICATION_SOFTWARE",
|
|
259
|
-
LAUNCH_REPLICATION_SERVER = "LAUNCH_REPLICATION_SERVER",
|
|
260
|
-
PAIR_REPLICATION_SERVER_WITH_AGENT = "PAIR_REPLICATION_SERVER_WITH_AGENT",
|
|
261
|
-
START_DATA_TRANSFER = "START_DATA_TRANSFER",
|
|
262
|
-
WAIT = "WAIT"
|
|
483
|
+
interval: number | undefined;
|
|
484
|
+
|
|
485
|
+
retentionDuration: number | undefined;
|
|
486
|
+
|
|
487
|
+
enabled?: boolean;
|
|
263
488
|
}
|
|
264
|
-
export declare
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
NOT_STARTED = "NOT_STARTED",
|
|
268
|
-
SKIPPED = "SKIPPED",
|
|
269
|
-
SUCCEEDED = "SUCCEEDED"
|
|
489
|
+
export declare namespace PITPolicyRule {
|
|
490
|
+
|
|
491
|
+
const filterSensitiveLog: (obj: PITPolicyRule) => any;
|
|
270
492
|
}
|
|
271
|
-
|
|
272
|
-
|
|
493
|
+
export interface CreateReplicationConfigurationTemplateRequest {
|
|
494
|
+
|
|
495
|
+
stagingAreaSubnetId: string | undefined;
|
|
496
|
+
|
|
497
|
+
associateDefaultSecurityGroup: boolean | undefined;
|
|
498
|
+
|
|
499
|
+
replicationServersSecurityGroupsIDs: string[] | undefined;
|
|
500
|
+
|
|
501
|
+
replicationServerInstanceType: string | undefined;
|
|
502
|
+
|
|
503
|
+
useDedicatedReplicationServer: boolean | undefined;
|
|
504
|
+
|
|
505
|
+
defaultLargeStagingDiskType: ReplicationConfigurationDefaultLargeStagingDiskType | string | undefined;
|
|
506
|
+
|
|
507
|
+
ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
|
|
508
|
+
|
|
509
|
+
ebsEncryptionKeyArn?: string;
|
|
510
|
+
|
|
511
|
+
bandwidthThrottling: number | undefined;
|
|
512
|
+
|
|
513
|
+
dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | string | undefined;
|
|
273
514
|
|
|
274
|
-
|
|
515
|
+
createPublicIP: boolean | undefined;
|
|
275
516
|
|
|
276
|
-
|
|
517
|
+
stagingAreaTags: {
|
|
518
|
+
[key: string]: string;
|
|
519
|
+
} | undefined;
|
|
520
|
+
|
|
521
|
+
pitPolicy: PITPolicyRule[] | undefined;
|
|
522
|
+
|
|
523
|
+
tags?: {
|
|
524
|
+
[key: string]: string;
|
|
525
|
+
};
|
|
277
526
|
}
|
|
278
|
-
export declare namespace
|
|
527
|
+
export declare namespace CreateReplicationConfigurationTemplateRequest {
|
|
279
528
|
|
|
280
|
-
const filterSensitiveLog: (obj:
|
|
529
|
+
const filterSensitiveLog: (obj: CreateReplicationConfigurationTemplateRequest) => any;
|
|
281
530
|
}
|
|
282
|
-
|
|
283
|
-
export interface DataReplicationInitiation {
|
|
531
|
+
export interface ReplicationConfigurationTemplate {
|
|
284
532
|
|
|
285
|
-
|
|
533
|
+
replicationConfigurationTemplateID: string | undefined;
|
|
286
534
|
|
|
287
|
-
|
|
535
|
+
arn?: string;
|
|
288
536
|
|
|
289
|
-
|
|
290
|
-
}
|
|
291
|
-
export declare namespace DataReplicationInitiation {
|
|
537
|
+
stagingAreaSubnetId?: string;
|
|
292
538
|
|
|
293
|
-
|
|
294
|
-
}
|
|
295
|
-
export declare enum DataReplicationState {
|
|
296
|
-
BACKLOG = "BACKLOG",
|
|
297
|
-
CONTINUOUS = "CONTINUOUS",
|
|
298
|
-
CREATING_SNAPSHOT = "CREATING_SNAPSHOT",
|
|
299
|
-
DISCONNECTED = "DISCONNECTED",
|
|
300
|
-
INITIAL_SYNC = "INITIAL_SYNC",
|
|
301
|
-
INITIATING = "INITIATING",
|
|
302
|
-
PAUSED = "PAUSED",
|
|
303
|
-
RESCAN = "RESCAN",
|
|
304
|
-
STALLED = "STALLED",
|
|
305
|
-
STOPPED = "STOPPED"
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
export interface DataReplicationInfoReplicatedDisk {
|
|
539
|
+
associateDefaultSecurityGroup?: boolean;
|
|
309
540
|
|
|
310
|
-
|
|
541
|
+
replicationServersSecurityGroupsIDs?: string[];
|
|
311
542
|
|
|
312
|
-
|
|
543
|
+
replicationServerInstanceType?: string;
|
|
313
544
|
|
|
314
|
-
|
|
545
|
+
useDedicatedReplicationServer?: boolean;
|
|
315
546
|
|
|
316
|
-
|
|
547
|
+
defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
|
|
317
548
|
|
|
318
|
-
|
|
319
|
-
}
|
|
320
|
-
export declare namespace DataReplicationInfoReplicatedDisk {
|
|
549
|
+
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
321
550
|
|
|
322
|
-
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
export interface DataReplicationInfo {
|
|
551
|
+
ebsEncryptionKeyArn?: string;
|
|
326
552
|
|
|
327
|
-
|
|
553
|
+
bandwidthThrottling?: number;
|
|
328
554
|
|
|
329
|
-
|
|
555
|
+
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
330
556
|
|
|
331
|
-
|
|
557
|
+
createPublicIP?: boolean;
|
|
332
558
|
|
|
333
|
-
|
|
559
|
+
stagingAreaTags?: {
|
|
560
|
+
[key: string]: string;
|
|
561
|
+
};
|
|
334
562
|
|
|
335
|
-
|
|
563
|
+
tags?: {
|
|
564
|
+
[key: string]: string;
|
|
565
|
+
};
|
|
336
566
|
|
|
337
|
-
|
|
567
|
+
pitPolicy?: PITPolicyRule[];
|
|
338
568
|
}
|
|
339
|
-
export declare namespace
|
|
569
|
+
export declare namespace ReplicationConfigurationTemplate {
|
|
340
570
|
|
|
341
|
-
const filterSensitiveLog: (obj:
|
|
571
|
+
const filterSensitiveLog: (obj: ReplicationConfigurationTemplate) => any;
|
|
342
572
|
}
|
|
343
573
|
export interface DeleteJobRequest {
|
|
344
574
|
|
|
@@ -354,18 +584,6 @@ export declare namespace DeleteJobResponse {
|
|
|
354
584
|
|
|
355
585
|
const filterSensitiveLog: (obj: DeleteJobResponse) => any;
|
|
356
586
|
}
|
|
357
|
-
|
|
358
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
359
|
-
readonly name: "ResourceNotFoundException";
|
|
360
|
-
readonly $fault: "client";
|
|
361
|
-
code?: string;
|
|
362
|
-
|
|
363
|
-
resourceId?: string;
|
|
364
|
-
|
|
365
|
-
resourceType?: string;
|
|
366
|
-
|
|
367
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
368
|
-
}
|
|
369
587
|
export interface DeleteRecoveryInstanceRequest {
|
|
370
588
|
|
|
371
589
|
recoveryInstanceID: string | undefined;
|
|
@@ -443,6 +661,8 @@ export interface JobLogEventData {
|
|
|
443
661
|
targetInstanceID?: string;
|
|
444
662
|
|
|
445
663
|
rawError?: string;
|
|
664
|
+
|
|
665
|
+
conversionProperties?: ConversionProperties;
|
|
446
666
|
}
|
|
447
667
|
export declare namespace JobLogEventData {
|
|
448
668
|
|
|
@@ -486,7 +706,7 @@ export declare namespace DescribeJobsRequestFilters {
|
|
|
486
706
|
}
|
|
487
707
|
export interface DescribeJobsRequest {
|
|
488
708
|
|
|
489
|
-
filters
|
|
709
|
+
filters?: DescribeJobsRequestFilters;
|
|
490
710
|
|
|
491
711
|
maxResults?: number;
|
|
492
712
|
|
|
@@ -501,6 +721,7 @@ export declare enum InitiatedBy {
|
|
|
501
721
|
FAILBACK = "FAILBACK",
|
|
502
722
|
START_DRILL = "START_DRILL",
|
|
503
723
|
START_RECOVERY = "START_RECOVERY",
|
|
724
|
+
TARGET_ACCOUNT = "TARGET_ACCOUNT",
|
|
504
725
|
TERMINATE_RECOVERY_INSTANCES = "TERMINATE_RECOVERY_INSTANCES"
|
|
505
726
|
}
|
|
506
727
|
export declare enum LaunchStatus {
|
|
@@ -529,6 +750,7 @@ export declare enum JobStatus {
|
|
|
529
750
|
STARTED = "STARTED"
|
|
530
751
|
}
|
|
531
752
|
export declare enum JobType {
|
|
753
|
+
CREATE_CONVERTED_SNAPSHOT = "CREATE_CONVERTED_SNAPSHOT",
|
|
532
754
|
LAUNCH = "LAUNCH",
|
|
533
755
|
TERMINATE = "TERMINATE"
|
|
534
756
|
}
|
|
@@ -582,7 +804,7 @@ export declare namespace DescribeRecoveryInstancesRequestFilters {
|
|
|
582
804
|
}
|
|
583
805
|
export interface DescribeRecoveryInstancesRequest {
|
|
584
806
|
|
|
585
|
-
filters
|
|
807
|
+
filters?: DescribeRecoveryInstancesRequestFilters;
|
|
586
808
|
|
|
587
809
|
maxResults?: number;
|
|
588
810
|
|
|
@@ -755,43 +977,6 @@ export declare namespace RecoveryInstanceDisk {
|
|
|
755
977
|
const filterSensitiveLog: (obj: RecoveryInstanceDisk) => any;
|
|
756
978
|
}
|
|
757
979
|
|
|
758
|
-
export interface IdentificationHints {
|
|
759
|
-
|
|
760
|
-
fqdn?: string;
|
|
761
|
-
|
|
762
|
-
hostname?: string;
|
|
763
|
-
|
|
764
|
-
vmWareUuid?: string;
|
|
765
|
-
|
|
766
|
-
awsInstanceID?: string;
|
|
767
|
-
}
|
|
768
|
-
export declare namespace IdentificationHints {
|
|
769
|
-
|
|
770
|
-
const filterSensitiveLog: (obj: IdentificationHints) => any;
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
export interface NetworkInterface {
|
|
774
|
-
|
|
775
|
-
macAddress?: string;
|
|
776
|
-
|
|
777
|
-
ips?: string[];
|
|
778
|
-
|
|
779
|
-
isPrimary?: boolean;
|
|
780
|
-
}
|
|
781
|
-
export declare namespace NetworkInterface {
|
|
782
|
-
|
|
783
|
-
const filterSensitiveLog: (obj: NetworkInterface) => any;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
export interface OS {
|
|
787
|
-
|
|
788
|
-
fullString?: string;
|
|
789
|
-
}
|
|
790
|
-
export declare namespace OS {
|
|
791
|
-
|
|
792
|
-
const filterSensitiveLog: (obj: OS) => any;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
980
|
export interface RecoveryInstanceProperties {
|
|
796
981
|
|
|
797
982
|
lastUpdatedDateTime?: string;
|
|
@@ -915,7 +1100,7 @@ export declare namespace DescribeRecoverySnapshotsResponse {
|
|
|
915
1100
|
}
|
|
916
1101
|
export interface DescribeReplicationConfigurationTemplatesRequest {
|
|
917
1102
|
|
|
918
|
-
replicationConfigurationTemplateIDs
|
|
1103
|
+
replicationConfigurationTemplateIDs?: string[];
|
|
919
1104
|
|
|
920
1105
|
maxResults?: number;
|
|
921
1106
|
|
|
@@ -941,6 +1126,8 @@ export interface DescribeSourceServersRequestFilters {
|
|
|
941
1126
|
sourceServerIDs?: string[];
|
|
942
1127
|
|
|
943
1128
|
hardwareId?: string;
|
|
1129
|
+
|
|
1130
|
+
stagingAccountIDs?: string[];
|
|
944
1131
|
}
|
|
945
1132
|
export declare namespace DescribeSourceServersRequestFilters {
|
|
946
1133
|
|
|
@@ -948,7 +1135,7 @@ export declare namespace DescribeSourceServersRequestFilters {
|
|
|
948
1135
|
}
|
|
949
1136
|
export interface DescribeSourceServersRequest {
|
|
950
1137
|
|
|
951
|
-
filters
|
|
1138
|
+
filters?: DescribeSourceServersRequestFilters;
|
|
952
1139
|
|
|
953
1140
|
maxResults?: number;
|
|
954
1141
|
|
|
@@ -958,150 +1145,100 @@ export declare namespace DescribeSourceServersRequest {
|
|
|
958
1145
|
|
|
959
1146
|
const filterSensitiveLog: (obj: DescribeSourceServersRequest) => any;
|
|
960
1147
|
}
|
|
961
|
-
export
|
|
962
|
-
FAILED = "FAILED",
|
|
963
|
-
NOT_STARTED = "NOT_STARTED",
|
|
964
|
-
PENDING = "PENDING",
|
|
965
|
-
SUCCEEDED = "SUCCEEDED"
|
|
966
|
-
}
|
|
967
|
-
export declare enum LastLaunchType {
|
|
968
|
-
DRILL = "DRILL",
|
|
969
|
-
RECOVERY = "RECOVERY"
|
|
970
|
-
}
|
|
971
|
-
|
|
972
|
-
export interface LifeCycleLastLaunchInitiated {
|
|
973
|
-
|
|
974
|
-
apiCallDateTime?: string;
|
|
1148
|
+
export interface DescribeSourceServersResponse {
|
|
975
1149
|
|
|
976
|
-
|
|
1150
|
+
items?: SourceServer[];
|
|
977
1151
|
|
|
978
|
-
|
|
1152
|
+
nextToken?: string;
|
|
979
1153
|
}
|
|
980
|
-
export declare namespace
|
|
1154
|
+
export declare namespace DescribeSourceServersResponse {
|
|
981
1155
|
|
|
982
|
-
const filterSensitiveLog: (obj:
|
|
1156
|
+
const filterSensitiveLog: (obj: DescribeSourceServersResponse) => any;
|
|
983
1157
|
}
|
|
984
|
-
|
|
985
|
-
export interface LifeCycleLastLaunch {
|
|
1158
|
+
export interface DisconnectRecoveryInstanceRequest {
|
|
986
1159
|
|
|
987
|
-
|
|
1160
|
+
recoveryInstanceID: string | undefined;
|
|
988
1161
|
}
|
|
989
|
-
export declare namespace
|
|
1162
|
+
export declare namespace DisconnectRecoveryInstanceRequest {
|
|
990
1163
|
|
|
991
|
-
const filterSensitiveLog: (obj:
|
|
1164
|
+
const filterSensitiveLog: (obj: DisconnectRecoveryInstanceRequest) => any;
|
|
992
1165
|
}
|
|
993
|
-
|
|
994
|
-
export interface LifeCycle {
|
|
995
|
-
|
|
996
|
-
addedToServiceDateTime?: string;
|
|
997
|
-
|
|
998
|
-
firstByteDateTime?: string;
|
|
999
|
-
|
|
1000
|
-
elapsedReplicationDuration?: string;
|
|
1001
|
-
|
|
1002
|
-
lastSeenByServiceDateTime?: string;
|
|
1166
|
+
export interface DisconnectSourceServerRequest {
|
|
1003
1167
|
|
|
1004
|
-
|
|
1168
|
+
sourceServerID: string | undefined;
|
|
1005
1169
|
}
|
|
1006
|
-
export declare namespace
|
|
1170
|
+
export declare namespace DisconnectSourceServerRequest {
|
|
1007
1171
|
|
|
1008
|
-
const filterSensitiveLog: (obj:
|
|
1172
|
+
const filterSensitiveLog: (obj: DisconnectSourceServerRequest) => any;
|
|
1009
1173
|
}
|
|
1010
|
-
|
|
1011
|
-
export interface Disk {
|
|
1012
|
-
|
|
1013
|
-
deviceName?: string;
|
|
1014
|
-
|
|
1015
|
-
bytes?: number;
|
|
1174
|
+
export interface InitializeServiceRequest {
|
|
1016
1175
|
}
|
|
1017
|
-
export declare namespace
|
|
1176
|
+
export declare namespace InitializeServiceRequest {
|
|
1018
1177
|
|
|
1019
|
-
const filterSensitiveLog: (obj:
|
|
1178
|
+
const filterSensitiveLog: (obj: InitializeServiceRequest) => any;
|
|
1020
1179
|
}
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
lastUpdatedDateTime?: string;
|
|
1025
|
-
|
|
1026
|
-
recommendedInstanceType?: string;
|
|
1027
|
-
|
|
1028
|
-
identificationHints?: IdentificationHints;
|
|
1029
|
-
|
|
1030
|
-
networkInterfaces?: NetworkInterface[];
|
|
1180
|
+
export interface InitializeServiceResponse {
|
|
1181
|
+
}
|
|
1182
|
+
export declare namespace InitializeServiceResponse {
|
|
1031
1183
|
|
|
1032
|
-
|
|
1184
|
+
const filterSensitiveLog: (obj: InitializeServiceResponse) => any;
|
|
1185
|
+
}
|
|
1186
|
+
export interface ListExtensibleSourceServersRequest {
|
|
1033
1187
|
|
|
1034
|
-
|
|
1188
|
+
stagingAccountID: string | undefined;
|
|
1035
1189
|
|
|
1036
|
-
|
|
1190
|
+
maxResults?: number;
|
|
1037
1191
|
|
|
1038
|
-
|
|
1192
|
+
nextToken?: string;
|
|
1039
1193
|
}
|
|
1040
|
-
export declare namespace
|
|
1194
|
+
export declare namespace ListExtensibleSourceServersRequest {
|
|
1041
1195
|
|
|
1042
|
-
const filterSensitiveLog: (obj:
|
|
1196
|
+
const filterSensitiveLog: (obj: ListExtensibleSourceServersRequest) => any;
|
|
1043
1197
|
}
|
|
1044
|
-
|
|
1198
|
+
|
|
1199
|
+
export interface StagingSourceServer {
|
|
1045
1200
|
|
|
1046
|
-
|
|
1201
|
+
hostname?: string;
|
|
1047
1202
|
|
|
1048
1203
|
arn?: string;
|
|
1049
1204
|
|
|
1050
1205
|
tags?: {
|
|
1051
1206
|
[key: string]: string;
|
|
1052
1207
|
};
|
|
1053
|
-
|
|
1054
|
-
recoveryInstanceId?: string;
|
|
1055
|
-
|
|
1056
|
-
lastLaunchResult?: LastLaunchResult | string;
|
|
1057
|
-
|
|
1058
|
-
dataReplicationInfo?: DataReplicationInfo;
|
|
1059
|
-
|
|
1060
|
-
lifeCycle?: LifeCycle;
|
|
1061
|
-
|
|
1062
|
-
sourceProperties?: SourceProperties;
|
|
1063
1208
|
}
|
|
1064
|
-
export declare namespace
|
|
1209
|
+
export declare namespace StagingSourceServer {
|
|
1065
1210
|
|
|
1066
|
-
const filterSensitiveLog: (obj:
|
|
1211
|
+
const filterSensitiveLog: (obj: StagingSourceServer) => any;
|
|
1067
1212
|
}
|
|
1068
|
-
export interface
|
|
1213
|
+
export interface ListExtensibleSourceServersResponse {
|
|
1069
1214
|
|
|
1070
|
-
items?:
|
|
1215
|
+
items?: StagingSourceServer[];
|
|
1071
1216
|
|
|
1072
1217
|
nextToken?: string;
|
|
1073
1218
|
}
|
|
1074
|
-
export declare namespace
|
|
1219
|
+
export declare namespace ListExtensibleSourceServersResponse {
|
|
1075
1220
|
|
|
1076
|
-
const filterSensitiveLog: (obj:
|
|
1221
|
+
const filterSensitiveLog: (obj: ListExtensibleSourceServersResponse) => any;
|
|
1077
1222
|
}
|
|
1078
|
-
export interface
|
|
1223
|
+
export interface ListStagingAccountsRequest {
|
|
1079
1224
|
|
|
1080
|
-
|
|
1081
|
-
}
|
|
1082
|
-
export declare namespace DisconnectRecoveryInstanceRequest {
|
|
1225
|
+
maxResults?: number;
|
|
1083
1226
|
|
|
1084
|
-
|
|
1227
|
+
nextToken?: string;
|
|
1085
1228
|
}
|
|
1086
|
-
export
|
|
1229
|
+
export declare namespace ListStagingAccountsRequest {
|
|
1087
1230
|
|
|
1088
|
-
|
|
1231
|
+
const filterSensitiveLog: (obj: ListStagingAccountsRequest) => any;
|
|
1089
1232
|
}
|
|
1090
|
-
export
|
|
1233
|
+
export interface ListStagingAccountsResponse {
|
|
1091
1234
|
|
|
1092
|
-
|
|
1093
|
-
}
|
|
1094
|
-
export interface InitializeServiceRequest {
|
|
1095
|
-
}
|
|
1096
|
-
export declare namespace InitializeServiceRequest {
|
|
1235
|
+
accounts?: Account[];
|
|
1097
1236
|
|
|
1098
|
-
|
|
1099
|
-
}
|
|
1100
|
-
export interface InitializeServiceResponse {
|
|
1237
|
+
nextToken?: string;
|
|
1101
1238
|
}
|
|
1102
|
-
export declare namespace
|
|
1239
|
+
export declare namespace ListStagingAccountsResponse {
|
|
1103
1240
|
|
|
1104
|
-
const filterSensitiveLog: (obj:
|
|
1241
|
+
const filterSensitiveLog: (obj: ListStagingAccountsResponse) => any;
|
|
1105
1242
|
}
|
|
1106
1243
|
export interface ListTagsForResourceRequest {
|
|
1107
1244
|
|