@aws-sdk/client-datasync 3.687.0 → 3.692.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/dist-types/models/models_0.d.ts +493 -493
- package/dist-types/ts3.4/models/models_0.d.ts +493 -493
- package/package.json +35 -35
|
@@ -6,7 +6,7 @@ export interface Credentials {
|
|
|
6
6
|
}
|
|
7
7
|
export interface DiscoveryServerConfiguration {
|
|
8
8
|
ServerHostname: string | undefined;
|
|
9
|
-
ServerPort?: number;
|
|
9
|
+
ServerPort?: number | undefined;
|
|
10
10
|
}
|
|
11
11
|
export declare const DiscoverySystemType: {
|
|
12
12
|
readonly NetAppONTAP: "NetAppONTAP";
|
|
@@ -15,16 +15,16 @@ export type DiscoverySystemType =
|
|
|
15
15
|
(typeof DiscoverySystemType)[keyof typeof DiscoverySystemType];
|
|
16
16
|
export interface TagListEntry {
|
|
17
17
|
Key: string | undefined;
|
|
18
|
-
Value?: string;
|
|
18
|
+
Value?: string | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface AddStorageSystemRequest {
|
|
21
21
|
ServerConfiguration: DiscoveryServerConfiguration | undefined;
|
|
22
22
|
SystemType: DiscoverySystemType | undefined;
|
|
23
23
|
AgentArns: string[] | undefined;
|
|
24
|
-
CloudWatchLogGroupArn?: string;
|
|
25
|
-
Tags?: TagListEntry[];
|
|
26
|
-
Name?: string;
|
|
27
|
-
ClientToken?: string;
|
|
24
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
25
|
+
Tags?: TagListEntry[] | undefined;
|
|
26
|
+
Name?: string | undefined;
|
|
27
|
+
ClientToken?: string | undefined;
|
|
28
28
|
Credentials: Credentials | undefined;
|
|
29
29
|
}
|
|
30
30
|
export interface AddStorageSystemResponse {
|
|
@@ -33,20 +33,20 @@ export interface AddStorageSystemResponse {
|
|
|
33
33
|
export declare class InternalException extends __BaseException {
|
|
34
34
|
readonly name: "InternalException";
|
|
35
35
|
readonly $fault: "server";
|
|
36
|
-
errorCode?: string;
|
|
36
|
+
errorCode?: string | undefined;
|
|
37
37
|
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
38
38
|
}
|
|
39
39
|
export declare class InvalidRequestException extends __BaseException {
|
|
40
40
|
readonly name: "InvalidRequestException";
|
|
41
41
|
readonly $fault: "client";
|
|
42
|
-
errorCode?: string;
|
|
43
|
-
datasyncErrorCode?: string;
|
|
42
|
+
errorCode?: string | undefined;
|
|
43
|
+
datasyncErrorCode?: string | undefined;
|
|
44
44
|
constructor(
|
|
45
45
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
46
46
|
);
|
|
47
47
|
}
|
|
48
48
|
export interface Platform {
|
|
49
|
-
Version?: string;
|
|
49
|
+
Version?: string | undefined;
|
|
50
50
|
}
|
|
51
51
|
export declare const AgentStatus: {
|
|
52
52
|
readonly OFFLINE: "OFFLINE";
|
|
@@ -54,10 +54,10 @@ export declare const AgentStatus: {
|
|
|
54
54
|
};
|
|
55
55
|
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
56
56
|
export interface AgentListEntry {
|
|
57
|
-
AgentArn?: string;
|
|
58
|
-
Name?: string;
|
|
59
|
-
Status?: AgentStatus;
|
|
60
|
-
Platform?: Platform;
|
|
57
|
+
AgentArn?: string | undefined;
|
|
58
|
+
Name?: string | undefined;
|
|
59
|
+
Status?: AgentStatus | undefined;
|
|
60
|
+
Platform?: Platform | undefined;
|
|
61
61
|
}
|
|
62
62
|
export declare const Atime: {
|
|
63
63
|
readonly BEST_EFFORT: "BEST_EFFORT";
|
|
@@ -88,34 +88,34 @@ export interface CancelTaskExecutionRequest {
|
|
|
88
88
|
}
|
|
89
89
|
export interface CancelTaskExecutionResponse {}
|
|
90
90
|
export interface Capacity {
|
|
91
|
-
Used?: number;
|
|
92
|
-
Provisioned?: number;
|
|
93
|
-
LogicalUsed?: number;
|
|
94
|
-
ClusterCloudStorageUsed?: number;
|
|
91
|
+
Used?: number | undefined;
|
|
92
|
+
Provisioned?: number | undefined;
|
|
93
|
+
LogicalUsed?: number | undefined;
|
|
94
|
+
ClusterCloudStorageUsed?: number | undefined;
|
|
95
95
|
}
|
|
96
96
|
export interface CreateAgentRequest {
|
|
97
97
|
ActivationKey: string | undefined;
|
|
98
|
-
AgentName?: string;
|
|
99
|
-
Tags?: TagListEntry[];
|
|
100
|
-
VpcEndpointId?: string;
|
|
101
|
-
SubnetArns?: string[];
|
|
102
|
-
SecurityGroupArns?: string[];
|
|
98
|
+
AgentName?: string | undefined;
|
|
99
|
+
Tags?: TagListEntry[] | undefined;
|
|
100
|
+
VpcEndpointId?: string | undefined;
|
|
101
|
+
SubnetArns?: string[] | undefined;
|
|
102
|
+
SecurityGroupArns?: string[] | undefined;
|
|
103
103
|
}
|
|
104
104
|
export interface CreateAgentResponse {
|
|
105
|
-
AgentArn?: string;
|
|
105
|
+
AgentArn?: string | undefined;
|
|
106
106
|
}
|
|
107
107
|
export interface CreateLocationAzureBlobRequest {
|
|
108
108
|
ContainerUrl: string | undefined;
|
|
109
109
|
AuthenticationType: AzureBlobAuthenticationType | undefined;
|
|
110
|
-
SasConfiguration?: AzureBlobSasConfiguration;
|
|
111
|
-
BlobType?: AzureBlobType;
|
|
112
|
-
AccessTier?: AzureAccessTier;
|
|
113
|
-
Subdirectory?: string;
|
|
110
|
+
SasConfiguration?: AzureBlobSasConfiguration | undefined;
|
|
111
|
+
BlobType?: AzureBlobType | undefined;
|
|
112
|
+
AccessTier?: AzureAccessTier | undefined;
|
|
113
|
+
Subdirectory?: string | undefined;
|
|
114
114
|
AgentArns: string[] | undefined;
|
|
115
|
-
Tags?: TagListEntry[];
|
|
115
|
+
Tags?: TagListEntry[] | undefined;
|
|
116
116
|
}
|
|
117
117
|
export interface CreateLocationAzureBlobResponse {
|
|
118
|
-
LocationArn?: string;
|
|
118
|
+
LocationArn?: string | undefined;
|
|
119
119
|
}
|
|
120
120
|
export interface Ec2Config {
|
|
121
121
|
SubnetArn: string | undefined;
|
|
@@ -128,25 +128,25 @@ export declare const EfsInTransitEncryption: {
|
|
|
128
128
|
export type EfsInTransitEncryption =
|
|
129
129
|
(typeof EfsInTransitEncryption)[keyof typeof EfsInTransitEncryption];
|
|
130
130
|
export interface CreateLocationEfsRequest {
|
|
131
|
-
Subdirectory?: string;
|
|
131
|
+
Subdirectory?: string | undefined;
|
|
132
132
|
EfsFilesystemArn: string | undefined;
|
|
133
133
|
Ec2Config: Ec2Config | undefined;
|
|
134
|
-
Tags?: TagListEntry[];
|
|
135
|
-
AccessPointArn?: string;
|
|
136
|
-
FileSystemAccessRoleArn?: string;
|
|
137
|
-
InTransitEncryption?: EfsInTransitEncryption;
|
|
134
|
+
Tags?: TagListEntry[] | undefined;
|
|
135
|
+
AccessPointArn?: string | undefined;
|
|
136
|
+
FileSystemAccessRoleArn?: string | undefined;
|
|
137
|
+
InTransitEncryption?: EfsInTransitEncryption | undefined;
|
|
138
138
|
}
|
|
139
139
|
export interface CreateLocationEfsResponse {
|
|
140
|
-
LocationArn?: string;
|
|
140
|
+
LocationArn?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
export interface CreateLocationFsxLustreRequest {
|
|
143
143
|
FsxFilesystemArn: string | undefined;
|
|
144
144
|
SecurityGroupArns: string[] | undefined;
|
|
145
|
-
Subdirectory?: string;
|
|
146
|
-
Tags?: TagListEntry[];
|
|
145
|
+
Subdirectory?: string | undefined;
|
|
146
|
+
Tags?: TagListEntry[] | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface CreateLocationFsxLustreResponse {
|
|
149
|
-
LocationArn?: string;
|
|
149
|
+
LocationArn?: string | undefined;
|
|
150
150
|
}
|
|
151
151
|
export declare const NfsVersion: {
|
|
152
152
|
readonly AUTOMATIC: "AUTOMATIC";
|
|
@@ -156,10 +156,10 @@ export declare const NfsVersion: {
|
|
|
156
156
|
};
|
|
157
157
|
export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
|
|
158
158
|
export interface NfsMountOptions {
|
|
159
|
-
Version?: NfsVersion;
|
|
159
|
+
Version?: NfsVersion | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface FsxProtocolNfs {
|
|
162
|
-
MountOptions?: NfsMountOptions;
|
|
162
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
163
163
|
}
|
|
164
164
|
export declare const SmbVersion: {
|
|
165
165
|
readonly AUTOMATIC: "AUTOMATIC";
|
|
@@ -170,49 +170,49 @@ export declare const SmbVersion: {
|
|
|
170
170
|
};
|
|
171
171
|
export type SmbVersion = (typeof SmbVersion)[keyof typeof SmbVersion];
|
|
172
172
|
export interface SmbMountOptions {
|
|
173
|
-
Version?: SmbVersion;
|
|
173
|
+
Version?: SmbVersion | undefined;
|
|
174
174
|
}
|
|
175
175
|
export interface FsxProtocolSmb {
|
|
176
|
-
Domain?: string;
|
|
177
|
-
MountOptions?: SmbMountOptions;
|
|
176
|
+
Domain?: string | undefined;
|
|
177
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
178
178
|
Password: string | undefined;
|
|
179
179
|
User: string | undefined;
|
|
180
180
|
}
|
|
181
181
|
export interface FsxProtocol {
|
|
182
|
-
NFS?: FsxProtocolNfs;
|
|
183
|
-
SMB?: FsxProtocolSmb;
|
|
182
|
+
NFS?: FsxProtocolNfs | undefined;
|
|
183
|
+
SMB?: FsxProtocolSmb | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface CreateLocationFsxOntapRequest {
|
|
186
186
|
Protocol: FsxProtocol | undefined;
|
|
187
187
|
SecurityGroupArns: string[] | undefined;
|
|
188
188
|
StorageVirtualMachineArn: string | undefined;
|
|
189
|
-
Subdirectory?: string;
|
|
190
|
-
Tags?: TagListEntry[];
|
|
189
|
+
Subdirectory?: string | undefined;
|
|
190
|
+
Tags?: TagListEntry[] | undefined;
|
|
191
191
|
}
|
|
192
192
|
export interface CreateLocationFsxOntapResponse {
|
|
193
|
-
LocationArn?: string;
|
|
193
|
+
LocationArn?: string | undefined;
|
|
194
194
|
}
|
|
195
195
|
export interface CreateLocationFsxOpenZfsRequest {
|
|
196
196
|
FsxFilesystemArn: string | undefined;
|
|
197
197
|
Protocol: FsxProtocol | undefined;
|
|
198
198
|
SecurityGroupArns: string[] | undefined;
|
|
199
|
-
Subdirectory?: string;
|
|
200
|
-
Tags?: TagListEntry[];
|
|
199
|
+
Subdirectory?: string | undefined;
|
|
200
|
+
Tags?: TagListEntry[] | undefined;
|
|
201
201
|
}
|
|
202
202
|
export interface CreateLocationFsxOpenZfsResponse {
|
|
203
|
-
LocationArn?: string;
|
|
203
|
+
LocationArn?: string | undefined;
|
|
204
204
|
}
|
|
205
205
|
export interface CreateLocationFsxWindowsRequest {
|
|
206
|
-
Subdirectory?: string;
|
|
206
|
+
Subdirectory?: string | undefined;
|
|
207
207
|
FsxFilesystemArn: string | undefined;
|
|
208
208
|
SecurityGroupArns: string[] | undefined;
|
|
209
|
-
Tags?: TagListEntry[];
|
|
209
|
+
Tags?: TagListEntry[] | undefined;
|
|
210
210
|
User: string | undefined;
|
|
211
|
-
Domain?: string;
|
|
211
|
+
Domain?: string | undefined;
|
|
212
212
|
Password: string | undefined;
|
|
213
213
|
}
|
|
214
214
|
export interface CreateLocationFsxWindowsResponse {
|
|
215
|
-
LocationArn?: string;
|
|
215
|
+
LocationArn?: string | undefined;
|
|
216
216
|
}
|
|
217
217
|
export declare const HdfsAuthenticationType: {
|
|
218
218
|
readonly KERBEROS: "KERBEROS";
|
|
@@ -241,26 +241,26 @@ export declare const HdfsRpcProtection: {
|
|
|
241
241
|
export type HdfsRpcProtection =
|
|
242
242
|
(typeof HdfsRpcProtection)[keyof typeof HdfsRpcProtection];
|
|
243
243
|
export interface QopConfiguration {
|
|
244
|
-
RpcProtection?: HdfsRpcProtection;
|
|
245
|
-
DataTransferProtection?: HdfsDataTransferProtection;
|
|
244
|
+
RpcProtection?: HdfsRpcProtection | undefined;
|
|
245
|
+
DataTransferProtection?: HdfsDataTransferProtection | undefined;
|
|
246
246
|
}
|
|
247
247
|
export interface CreateLocationHdfsRequest {
|
|
248
|
-
Subdirectory?: string;
|
|
248
|
+
Subdirectory?: string | undefined;
|
|
249
249
|
NameNodes: HdfsNameNode[] | undefined;
|
|
250
|
-
BlockSize?: number;
|
|
251
|
-
ReplicationFactor?: number;
|
|
252
|
-
KmsKeyProviderUri?: string;
|
|
253
|
-
QopConfiguration?: QopConfiguration;
|
|
250
|
+
BlockSize?: number | undefined;
|
|
251
|
+
ReplicationFactor?: number | undefined;
|
|
252
|
+
KmsKeyProviderUri?: string | undefined;
|
|
253
|
+
QopConfiguration?: QopConfiguration | undefined;
|
|
254
254
|
AuthenticationType: HdfsAuthenticationType | undefined;
|
|
255
|
-
SimpleUser?: string;
|
|
256
|
-
KerberosPrincipal?: string;
|
|
257
|
-
KerberosKeytab?: Uint8Array;
|
|
258
|
-
KerberosKrb5Conf?: Uint8Array;
|
|
255
|
+
SimpleUser?: string | undefined;
|
|
256
|
+
KerberosPrincipal?: string | undefined;
|
|
257
|
+
KerberosKeytab?: Uint8Array | undefined;
|
|
258
|
+
KerberosKrb5Conf?: Uint8Array | undefined;
|
|
259
259
|
AgentArns: string[] | undefined;
|
|
260
|
-
Tags?: TagListEntry[];
|
|
260
|
+
Tags?: TagListEntry[] | undefined;
|
|
261
261
|
}
|
|
262
262
|
export interface CreateLocationHdfsResponse {
|
|
263
|
-
LocationArn?: string;
|
|
263
|
+
LocationArn?: string | undefined;
|
|
264
264
|
}
|
|
265
265
|
export interface OnPremConfig {
|
|
266
266
|
AgentArns: string[] | undefined;
|
|
@@ -269,11 +269,11 @@ export interface CreateLocationNfsRequest {
|
|
|
269
269
|
Subdirectory: string | undefined;
|
|
270
270
|
ServerHostname: string | undefined;
|
|
271
271
|
OnPremConfig: OnPremConfig | undefined;
|
|
272
|
-
MountOptions?: NfsMountOptions;
|
|
273
|
-
Tags?: TagListEntry[];
|
|
272
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
273
|
+
Tags?: TagListEntry[] | undefined;
|
|
274
274
|
}
|
|
275
275
|
export interface CreateLocationNfsResponse {
|
|
276
|
-
LocationArn?: string;
|
|
276
|
+
LocationArn?: string | undefined;
|
|
277
277
|
}
|
|
278
278
|
export declare const ObjectStorageServerProtocol: {
|
|
279
279
|
readonly HTTP: "HTTP";
|
|
@@ -283,18 +283,18 @@ export type ObjectStorageServerProtocol =
|
|
|
283
283
|
(typeof ObjectStorageServerProtocol)[keyof typeof ObjectStorageServerProtocol];
|
|
284
284
|
export interface CreateLocationObjectStorageRequest {
|
|
285
285
|
ServerHostname: string | undefined;
|
|
286
|
-
ServerPort?: number;
|
|
287
|
-
ServerProtocol?: ObjectStorageServerProtocol;
|
|
288
|
-
Subdirectory?: string;
|
|
286
|
+
ServerPort?: number | undefined;
|
|
287
|
+
ServerProtocol?: ObjectStorageServerProtocol | undefined;
|
|
288
|
+
Subdirectory?: string | undefined;
|
|
289
289
|
BucketName: string | undefined;
|
|
290
|
-
AccessKey?: string;
|
|
291
|
-
SecretKey?: string;
|
|
290
|
+
AccessKey?: string | undefined;
|
|
291
|
+
SecretKey?: string | undefined;
|
|
292
292
|
AgentArns: string[] | undefined;
|
|
293
|
-
Tags?: TagListEntry[];
|
|
294
|
-
ServerCertificate?: Uint8Array;
|
|
293
|
+
Tags?: TagListEntry[] | undefined;
|
|
294
|
+
ServerCertificate?: Uint8Array | undefined;
|
|
295
295
|
}
|
|
296
296
|
export interface CreateLocationObjectStorageResponse {
|
|
297
|
-
LocationArn?: string;
|
|
297
|
+
LocationArn?: string | undefined;
|
|
298
298
|
}
|
|
299
299
|
export interface S3Config {
|
|
300
300
|
BucketAccessRoleArn: string | undefined;
|
|
@@ -312,36 +312,36 @@ export declare const S3StorageClass: {
|
|
|
312
312
|
export type S3StorageClass =
|
|
313
313
|
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
314
314
|
export interface CreateLocationS3Request {
|
|
315
|
-
Subdirectory?: string;
|
|
315
|
+
Subdirectory?: string | undefined;
|
|
316
316
|
S3BucketArn: string | undefined;
|
|
317
|
-
S3StorageClass?: S3StorageClass;
|
|
317
|
+
S3StorageClass?: S3StorageClass | undefined;
|
|
318
318
|
S3Config: S3Config | undefined;
|
|
319
|
-
AgentArns?: string[];
|
|
320
|
-
Tags?: TagListEntry[];
|
|
319
|
+
AgentArns?: string[] | undefined;
|
|
320
|
+
Tags?: TagListEntry[] | undefined;
|
|
321
321
|
}
|
|
322
322
|
export interface CreateLocationS3Response {
|
|
323
|
-
LocationArn?: string;
|
|
323
|
+
LocationArn?: string | undefined;
|
|
324
324
|
}
|
|
325
325
|
export interface CreateLocationSmbRequest {
|
|
326
326
|
Subdirectory: string | undefined;
|
|
327
327
|
ServerHostname: string | undefined;
|
|
328
328
|
User: string | undefined;
|
|
329
|
-
Domain?: string;
|
|
329
|
+
Domain?: string | undefined;
|
|
330
330
|
Password: string | undefined;
|
|
331
331
|
AgentArns: string[] | undefined;
|
|
332
|
-
MountOptions?: SmbMountOptions;
|
|
333
|
-
Tags?: TagListEntry[];
|
|
332
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
333
|
+
Tags?: TagListEntry[] | undefined;
|
|
334
334
|
}
|
|
335
335
|
export interface CreateLocationSmbResponse {
|
|
336
|
-
LocationArn?: string;
|
|
336
|
+
LocationArn?: string | undefined;
|
|
337
337
|
}
|
|
338
338
|
export declare const FilterType: {
|
|
339
339
|
readonly SIMPLE_PATTERN: "SIMPLE_PATTERN";
|
|
340
340
|
};
|
|
341
341
|
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
|
|
342
342
|
export interface FilterRule {
|
|
343
|
-
FilterType?: FilterType;
|
|
344
|
-
Value?: string;
|
|
343
|
+
FilterType?: FilterType | undefined;
|
|
344
|
+
Value?: string | undefined;
|
|
345
345
|
}
|
|
346
346
|
export declare const ManifestAction: {
|
|
347
347
|
readonly TRANSFER: "TRANSFER";
|
|
@@ -357,15 +357,15 @@ export interface S3ManifestConfig {
|
|
|
357
357
|
ManifestObjectPath: string | undefined;
|
|
358
358
|
BucketAccessRoleArn: string | undefined;
|
|
359
359
|
S3BucketArn: string | undefined;
|
|
360
|
-
ManifestObjectVersionId?: string;
|
|
360
|
+
ManifestObjectVersionId?: string | undefined;
|
|
361
361
|
}
|
|
362
362
|
export interface SourceManifestConfig {
|
|
363
363
|
S3: S3ManifestConfig | undefined;
|
|
364
364
|
}
|
|
365
365
|
export interface ManifestConfig {
|
|
366
|
-
Action?: ManifestAction;
|
|
367
|
-
Format?: ManifestFormat;
|
|
368
|
-
Source?: SourceManifestConfig;
|
|
366
|
+
Action?: ManifestAction | undefined;
|
|
367
|
+
Format?: ManifestFormat | undefined;
|
|
368
|
+
Source?: SourceManifestConfig | undefined;
|
|
369
369
|
}
|
|
370
370
|
export declare const Gid: {
|
|
371
371
|
readonly BOTH: "BOTH";
|
|
@@ -444,21 +444,21 @@ export declare const VerifyMode: {
|
|
|
444
444
|
};
|
|
445
445
|
export type VerifyMode = (typeof VerifyMode)[keyof typeof VerifyMode];
|
|
446
446
|
export interface Options {
|
|
447
|
-
VerifyMode?: VerifyMode;
|
|
448
|
-
OverwriteMode?: OverwriteMode;
|
|
449
|
-
Atime?: Atime;
|
|
450
|
-
Mtime?: Mtime;
|
|
451
|
-
Uid?: Uid;
|
|
452
|
-
Gid?: Gid;
|
|
453
|
-
PreserveDeletedFiles?: PreserveDeletedFiles;
|
|
454
|
-
PreserveDevices?: PreserveDevices;
|
|
455
|
-
PosixPermissions?: PosixPermissions;
|
|
456
|
-
BytesPerSecond?: number;
|
|
457
|
-
TaskQueueing?: TaskQueueing;
|
|
458
|
-
LogLevel?: LogLevel;
|
|
459
|
-
TransferMode?: TransferMode;
|
|
460
|
-
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags;
|
|
461
|
-
ObjectTags?: ObjectTags;
|
|
447
|
+
VerifyMode?: VerifyMode | undefined;
|
|
448
|
+
OverwriteMode?: OverwriteMode | undefined;
|
|
449
|
+
Atime?: Atime | undefined;
|
|
450
|
+
Mtime?: Mtime | undefined;
|
|
451
|
+
Uid?: Uid | undefined;
|
|
452
|
+
Gid?: Gid | undefined;
|
|
453
|
+
PreserveDeletedFiles?: PreserveDeletedFiles | undefined;
|
|
454
|
+
PreserveDevices?: PreserveDevices | undefined;
|
|
455
|
+
PosixPermissions?: PosixPermissions | undefined;
|
|
456
|
+
BytesPerSecond?: number | undefined;
|
|
457
|
+
TaskQueueing?: TaskQueueing | undefined;
|
|
458
|
+
LogLevel?: LogLevel | undefined;
|
|
459
|
+
TransferMode?: TransferMode | undefined;
|
|
460
|
+
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags | undefined;
|
|
461
|
+
ObjectTags?: ObjectTags | undefined;
|
|
462
462
|
}
|
|
463
463
|
export declare const ScheduleStatus: {
|
|
464
464
|
readonly DISABLED: "DISABLED";
|
|
@@ -468,7 +468,7 @@ export type ScheduleStatus =
|
|
|
468
468
|
(typeof ScheduleStatus)[keyof typeof ScheduleStatus];
|
|
469
469
|
export interface TaskSchedule {
|
|
470
470
|
ScheduleExpression: string | undefined;
|
|
471
|
-
Status?: ScheduleStatus;
|
|
471
|
+
Status?: ScheduleStatus | undefined;
|
|
472
472
|
}
|
|
473
473
|
export declare const TaskMode: {
|
|
474
474
|
readonly BASIC: "BASIC";
|
|
@@ -476,12 +476,12 @@ export declare const TaskMode: {
|
|
|
476
476
|
};
|
|
477
477
|
export type TaskMode = (typeof TaskMode)[keyof typeof TaskMode];
|
|
478
478
|
export interface ReportDestinationS3 {
|
|
479
|
-
Subdirectory?: string;
|
|
479
|
+
Subdirectory?: string | undefined;
|
|
480
480
|
S3BucketArn: string | undefined;
|
|
481
481
|
BucketAccessRoleArn: string | undefined;
|
|
482
482
|
}
|
|
483
483
|
export interface ReportDestination {
|
|
484
|
-
S3?: ReportDestinationS3;
|
|
484
|
+
S3?: ReportDestinationS3 | undefined;
|
|
485
485
|
}
|
|
486
486
|
export declare const ObjectVersionIds: {
|
|
487
487
|
readonly INCLUDE: "INCLUDE";
|
|
@@ -501,37 +501,37 @@ export declare const ReportLevel: {
|
|
|
501
501
|
};
|
|
502
502
|
export type ReportLevel = (typeof ReportLevel)[keyof typeof ReportLevel];
|
|
503
503
|
export interface ReportOverride {
|
|
504
|
-
ReportLevel?: ReportLevel;
|
|
504
|
+
ReportLevel?: ReportLevel | undefined;
|
|
505
505
|
}
|
|
506
506
|
export interface ReportOverrides {
|
|
507
|
-
Transferred?: ReportOverride;
|
|
508
|
-
Verified?: ReportOverride;
|
|
509
|
-
Deleted?: ReportOverride;
|
|
510
|
-
Skipped?: ReportOverride;
|
|
507
|
+
Transferred?: ReportOverride | undefined;
|
|
508
|
+
Verified?: ReportOverride | undefined;
|
|
509
|
+
Deleted?: ReportOverride | undefined;
|
|
510
|
+
Skipped?: ReportOverride | undefined;
|
|
511
511
|
}
|
|
512
512
|
export interface TaskReportConfig {
|
|
513
|
-
Destination?: ReportDestination;
|
|
514
|
-
OutputType?: ReportOutputType;
|
|
515
|
-
ReportLevel?: ReportLevel;
|
|
516
|
-
ObjectVersionIds?: ObjectVersionIds;
|
|
517
|
-
Overrides?: ReportOverrides;
|
|
513
|
+
Destination?: ReportDestination | undefined;
|
|
514
|
+
OutputType?: ReportOutputType | undefined;
|
|
515
|
+
ReportLevel?: ReportLevel | undefined;
|
|
516
|
+
ObjectVersionIds?: ObjectVersionIds | undefined;
|
|
517
|
+
Overrides?: ReportOverrides | undefined;
|
|
518
518
|
}
|
|
519
519
|
export interface CreateTaskRequest {
|
|
520
520
|
SourceLocationArn: string | undefined;
|
|
521
521
|
DestinationLocationArn: string | undefined;
|
|
522
|
-
CloudWatchLogGroupArn?: string;
|
|
523
|
-
Name?: string;
|
|
524
|
-
Options?: Options;
|
|
525
|
-
Excludes?: FilterRule[];
|
|
526
|
-
Schedule?: TaskSchedule;
|
|
527
|
-
Tags?: TagListEntry[];
|
|
528
|
-
Includes?: FilterRule[];
|
|
529
|
-
ManifestConfig?: ManifestConfig;
|
|
530
|
-
TaskReportConfig?: TaskReportConfig;
|
|
531
|
-
TaskMode?: TaskMode;
|
|
522
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
523
|
+
Name?: string | undefined;
|
|
524
|
+
Options?: Options | undefined;
|
|
525
|
+
Excludes?: FilterRule[] | undefined;
|
|
526
|
+
Schedule?: TaskSchedule | undefined;
|
|
527
|
+
Tags?: TagListEntry[] | undefined;
|
|
528
|
+
Includes?: FilterRule[] | undefined;
|
|
529
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
530
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
531
|
+
TaskMode?: TaskMode | undefined;
|
|
532
532
|
}
|
|
533
533
|
export interface CreateTaskResponse {
|
|
534
|
-
TaskArn?: string;
|
|
534
|
+
TaskArn?: string | undefined;
|
|
535
535
|
}
|
|
536
536
|
export interface DeleteAgentRequest {
|
|
537
537
|
AgentArn: string | undefined;
|
|
@@ -555,20 +555,20 @@ export declare const EndpointType: {
|
|
|
555
555
|
};
|
|
556
556
|
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
557
557
|
export interface PrivateLinkConfig {
|
|
558
|
-
VpcEndpointId?: string;
|
|
559
|
-
PrivateLinkEndpoint?: string;
|
|
560
|
-
SubnetArns?: string[];
|
|
561
|
-
SecurityGroupArns?: string[];
|
|
558
|
+
VpcEndpointId?: string | undefined;
|
|
559
|
+
PrivateLinkEndpoint?: string | undefined;
|
|
560
|
+
SubnetArns?: string[] | undefined;
|
|
561
|
+
SecurityGroupArns?: string[] | undefined;
|
|
562
562
|
}
|
|
563
563
|
export interface DescribeAgentResponse {
|
|
564
|
-
AgentArn?: string;
|
|
565
|
-
Name?: string;
|
|
566
|
-
Status?: AgentStatus;
|
|
567
|
-
LastConnectionTime?: Date;
|
|
568
|
-
CreationTime?: Date;
|
|
569
|
-
EndpointType?: EndpointType;
|
|
570
|
-
PrivateLinkConfig?: PrivateLinkConfig;
|
|
571
|
-
Platform?: Platform;
|
|
564
|
+
AgentArn?: string | undefined;
|
|
565
|
+
Name?: string | undefined;
|
|
566
|
+
Status?: AgentStatus | undefined;
|
|
567
|
+
LastConnectionTime?: Date | undefined;
|
|
568
|
+
CreationTime?: Date | undefined;
|
|
569
|
+
EndpointType?: EndpointType | undefined;
|
|
570
|
+
PrivateLinkConfig?: PrivateLinkConfig | undefined;
|
|
571
|
+
Platform?: Platform | undefined;
|
|
572
572
|
}
|
|
573
573
|
export interface DescribeDiscoveryJobRequest {
|
|
574
574
|
DiscoveryJobArn: string | undefined;
|
|
@@ -585,141 +585,141 @@ export declare const DiscoveryJobStatus: {
|
|
|
585
585
|
export type DiscoveryJobStatus =
|
|
586
586
|
(typeof DiscoveryJobStatus)[keyof typeof DiscoveryJobStatus];
|
|
587
587
|
export interface DescribeDiscoveryJobResponse {
|
|
588
|
-
StorageSystemArn?: string;
|
|
589
|
-
DiscoveryJobArn?: string;
|
|
590
|
-
CollectionDurationMinutes?: number;
|
|
591
|
-
Status?: DiscoveryJobStatus;
|
|
592
|
-
JobStartTime?: Date;
|
|
593
|
-
JobEndTime?: Date;
|
|
588
|
+
StorageSystemArn?: string | undefined;
|
|
589
|
+
DiscoveryJobArn?: string | undefined;
|
|
590
|
+
CollectionDurationMinutes?: number | undefined;
|
|
591
|
+
Status?: DiscoveryJobStatus | undefined;
|
|
592
|
+
JobStartTime?: Date | undefined;
|
|
593
|
+
JobEndTime?: Date | undefined;
|
|
594
594
|
}
|
|
595
595
|
export interface DescribeLocationAzureBlobRequest {
|
|
596
596
|
LocationArn: string | undefined;
|
|
597
597
|
}
|
|
598
598
|
export interface DescribeLocationAzureBlobResponse {
|
|
599
|
-
LocationArn?: string;
|
|
600
|
-
LocationUri?: string;
|
|
601
|
-
AuthenticationType?: AzureBlobAuthenticationType;
|
|
602
|
-
BlobType?: AzureBlobType;
|
|
603
|
-
AccessTier?: AzureAccessTier;
|
|
604
|
-
AgentArns?: string[];
|
|
605
|
-
CreationTime?: Date;
|
|
599
|
+
LocationArn?: string | undefined;
|
|
600
|
+
LocationUri?: string | undefined;
|
|
601
|
+
AuthenticationType?: AzureBlobAuthenticationType | undefined;
|
|
602
|
+
BlobType?: AzureBlobType | undefined;
|
|
603
|
+
AccessTier?: AzureAccessTier | undefined;
|
|
604
|
+
AgentArns?: string[] | undefined;
|
|
605
|
+
CreationTime?: Date | undefined;
|
|
606
606
|
}
|
|
607
607
|
export interface DescribeLocationEfsRequest {
|
|
608
608
|
LocationArn: string | undefined;
|
|
609
609
|
}
|
|
610
610
|
export interface DescribeLocationEfsResponse {
|
|
611
|
-
LocationArn?: string;
|
|
612
|
-
LocationUri?: string;
|
|
613
|
-
Ec2Config?: Ec2Config;
|
|
614
|
-
CreationTime?: Date;
|
|
615
|
-
AccessPointArn?: string;
|
|
616
|
-
FileSystemAccessRoleArn?: string;
|
|
617
|
-
InTransitEncryption?: EfsInTransitEncryption;
|
|
611
|
+
LocationArn?: string | undefined;
|
|
612
|
+
LocationUri?: string | undefined;
|
|
613
|
+
Ec2Config?: Ec2Config | undefined;
|
|
614
|
+
CreationTime?: Date | undefined;
|
|
615
|
+
AccessPointArn?: string | undefined;
|
|
616
|
+
FileSystemAccessRoleArn?: string | undefined;
|
|
617
|
+
InTransitEncryption?: EfsInTransitEncryption | undefined;
|
|
618
618
|
}
|
|
619
619
|
export interface DescribeLocationFsxLustreRequest {
|
|
620
620
|
LocationArn: string | undefined;
|
|
621
621
|
}
|
|
622
622
|
export interface DescribeLocationFsxLustreResponse {
|
|
623
|
-
LocationArn?: string;
|
|
624
|
-
LocationUri?: string;
|
|
625
|
-
SecurityGroupArns?: string[];
|
|
626
|
-
CreationTime?: Date;
|
|
623
|
+
LocationArn?: string | undefined;
|
|
624
|
+
LocationUri?: string | undefined;
|
|
625
|
+
SecurityGroupArns?: string[] | undefined;
|
|
626
|
+
CreationTime?: Date | undefined;
|
|
627
627
|
}
|
|
628
628
|
export interface DescribeLocationFsxOntapRequest {
|
|
629
629
|
LocationArn: string | undefined;
|
|
630
630
|
}
|
|
631
631
|
export interface DescribeLocationFsxOntapResponse {
|
|
632
|
-
CreationTime?: Date;
|
|
633
|
-
LocationArn?: string;
|
|
634
|
-
LocationUri?: string;
|
|
635
|
-
Protocol?: FsxProtocol;
|
|
636
|
-
SecurityGroupArns?: string[];
|
|
637
|
-
StorageVirtualMachineArn?: string;
|
|
638
|
-
FsxFilesystemArn?: string;
|
|
632
|
+
CreationTime?: Date | undefined;
|
|
633
|
+
LocationArn?: string | undefined;
|
|
634
|
+
LocationUri?: string | undefined;
|
|
635
|
+
Protocol?: FsxProtocol | undefined;
|
|
636
|
+
SecurityGroupArns?: string[] | undefined;
|
|
637
|
+
StorageVirtualMachineArn?: string | undefined;
|
|
638
|
+
FsxFilesystemArn?: string | undefined;
|
|
639
639
|
}
|
|
640
640
|
export interface DescribeLocationFsxOpenZfsRequest {
|
|
641
641
|
LocationArn: string | undefined;
|
|
642
642
|
}
|
|
643
643
|
export interface DescribeLocationFsxOpenZfsResponse {
|
|
644
|
-
LocationArn?: string;
|
|
645
|
-
LocationUri?: string;
|
|
646
|
-
SecurityGroupArns?: string[];
|
|
647
|
-
Protocol?: FsxProtocol;
|
|
648
|
-
CreationTime?: Date;
|
|
644
|
+
LocationArn?: string | undefined;
|
|
645
|
+
LocationUri?: string | undefined;
|
|
646
|
+
SecurityGroupArns?: string[] | undefined;
|
|
647
|
+
Protocol?: FsxProtocol | undefined;
|
|
648
|
+
CreationTime?: Date | undefined;
|
|
649
649
|
}
|
|
650
650
|
export interface DescribeLocationFsxWindowsRequest {
|
|
651
651
|
LocationArn: string | undefined;
|
|
652
652
|
}
|
|
653
653
|
export interface DescribeLocationFsxWindowsResponse {
|
|
654
|
-
LocationArn?: string;
|
|
655
|
-
LocationUri?: string;
|
|
656
|
-
SecurityGroupArns?: string[];
|
|
657
|
-
CreationTime?: Date;
|
|
658
|
-
User?: string;
|
|
659
|
-
Domain?: string;
|
|
654
|
+
LocationArn?: string | undefined;
|
|
655
|
+
LocationUri?: string | undefined;
|
|
656
|
+
SecurityGroupArns?: string[] | undefined;
|
|
657
|
+
CreationTime?: Date | undefined;
|
|
658
|
+
User?: string | undefined;
|
|
659
|
+
Domain?: string | undefined;
|
|
660
660
|
}
|
|
661
661
|
export interface DescribeLocationHdfsRequest {
|
|
662
662
|
LocationArn: string | undefined;
|
|
663
663
|
}
|
|
664
664
|
export interface DescribeLocationHdfsResponse {
|
|
665
|
-
LocationArn?: string;
|
|
666
|
-
LocationUri?: string;
|
|
667
|
-
NameNodes?: HdfsNameNode[];
|
|
668
|
-
BlockSize?: number;
|
|
669
|
-
ReplicationFactor?: number;
|
|
670
|
-
KmsKeyProviderUri?: string;
|
|
671
|
-
QopConfiguration?: QopConfiguration;
|
|
672
|
-
AuthenticationType?: HdfsAuthenticationType;
|
|
673
|
-
SimpleUser?: string;
|
|
674
|
-
KerberosPrincipal?: string;
|
|
675
|
-
AgentArns?: string[];
|
|
676
|
-
CreationTime?: Date;
|
|
665
|
+
LocationArn?: string | undefined;
|
|
666
|
+
LocationUri?: string | undefined;
|
|
667
|
+
NameNodes?: HdfsNameNode[] | undefined;
|
|
668
|
+
BlockSize?: number | undefined;
|
|
669
|
+
ReplicationFactor?: number | undefined;
|
|
670
|
+
KmsKeyProviderUri?: string | undefined;
|
|
671
|
+
QopConfiguration?: QopConfiguration | undefined;
|
|
672
|
+
AuthenticationType?: HdfsAuthenticationType | undefined;
|
|
673
|
+
SimpleUser?: string | undefined;
|
|
674
|
+
KerberosPrincipal?: string | undefined;
|
|
675
|
+
AgentArns?: string[] | undefined;
|
|
676
|
+
CreationTime?: Date | undefined;
|
|
677
677
|
}
|
|
678
678
|
export interface DescribeLocationNfsRequest {
|
|
679
679
|
LocationArn: string | undefined;
|
|
680
680
|
}
|
|
681
681
|
export interface DescribeLocationNfsResponse {
|
|
682
|
-
LocationArn?: string;
|
|
683
|
-
LocationUri?: string;
|
|
684
|
-
OnPremConfig?: OnPremConfig;
|
|
685
|
-
MountOptions?: NfsMountOptions;
|
|
686
|
-
CreationTime?: Date;
|
|
682
|
+
LocationArn?: string | undefined;
|
|
683
|
+
LocationUri?: string | undefined;
|
|
684
|
+
OnPremConfig?: OnPremConfig | undefined;
|
|
685
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
686
|
+
CreationTime?: Date | undefined;
|
|
687
687
|
}
|
|
688
688
|
export interface DescribeLocationObjectStorageRequest {
|
|
689
689
|
LocationArn: string | undefined;
|
|
690
690
|
}
|
|
691
691
|
export interface DescribeLocationObjectStorageResponse {
|
|
692
|
-
LocationArn?: string;
|
|
693
|
-
LocationUri?: string;
|
|
694
|
-
AccessKey?: string;
|
|
695
|
-
ServerPort?: number;
|
|
696
|
-
ServerProtocol?: ObjectStorageServerProtocol;
|
|
697
|
-
AgentArns?: string[];
|
|
698
|
-
CreationTime?: Date;
|
|
699
|
-
ServerCertificate?: Uint8Array;
|
|
692
|
+
LocationArn?: string | undefined;
|
|
693
|
+
LocationUri?: string | undefined;
|
|
694
|
+
AccessKey?: string | undefined;
|
|
695
|
+
ServerPort?: number | undefined;
|
|
696
|
+
ServerProtocol?: ObjectStorageServerProtocol | undefined;
|
|
697
|
+
AgentArns?: string[] | undefined;
|
|
698
|
+
CreationTime?: Date | undefined;
|
|
699
|
+
ServerCertificate?: Uint8Array | undefined;
|
|
700
700
|
}
|
|
701
701
|
export interface DescribeLocationS3Request {
|
|
702
702
|
LocationArn: string | undefined;
|
|
703
703
|
}
|
|
704
704
|
export interface DescribeLocationS3Response {
|
|
705
|
-
LocationArn?: string;
|
|
706
|
-
LocationUri?: string;
|
|
707
|
-
S3StorageClass?: S3StorageClass;
|
|
708
|
-
S3Config?: S3Config;
|
|
709
|
-
AgentArns?: string[];
|
|
710
|
-
CreationTime?: Date;
|
|
705
|
+
LocationArn?: string | undefined;
|
|
706
|
+
LocationUri?: string | undefined;
|
|
707
|
+
S3StorageClass?: S3StorageClass | undefined;
|
|
708
|
+
S3Config?: S3Config | undefined;
|
|
709
|
+
AgentArns?: string[] | undefined;
|
|
710
|
+
CreationTime?: Date | undefined;
|
|
711
711
|
}
|
|
712
712
|
export interface DescribeLocationSmbRequest {
|
|
713
713
|
LocationArn: string | undefined;
|
|
714
714
|
}
|
|
715
715
|
export interface DescribeLocationSmbResponse {
|
|
716
|
-
LocationArn?: string;
|
|
717
|
-
LocationUri?: string;
|
|
718
|
-
AgentArns?: string[];
|
|
719
|
-
User?: string;
|
|
720
|
-
Domain?: string;
|
|
721
|
-
MountOptions?: SmbMountOptions;
|
|
722
|
-
CreationTime?: Date;
|
|
716
|
+
LocationArn?: string | undefined;
|
|
717
|
+
LocationUri?: string | undefined;
|
|
718
|
+
AgentArns?: string[] | undefined;
|
|
719
|
+
User?: string | undefined;
|
|
720
|
+
Domain?: string | undefined;
|
|
721
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
722
|
+
CreationTime?: Date | undefined;
|
|
723
723
|
}
|
|
724
724
|
export interface DescribeStorageSystemRequest {
|
|
725
725
|
StorageSystemArn: string | undefined;
|
|
@@ -732,16 +732,16 @@ export declare const StorageSystemConnectivityStatus: {
|
|
|
732
732
|
export type StorageSystemConnectivityStatus =
|
|
733
733
|
(typeof StorageSystemConnectivityStatus)[keyof typeof StorageSystemConnectivityStatus];
|
|
734
734
|
export interface DescribeStorageSystemResponse {
|
|
735
|
-
StorageSystemArn?: string;
|
|
736
|
-
ServerConfiguration?: DiscoveryServerConfiguration;
|
|
737
|
-
SystemType?: DiscoverySystemType;
|
|
738
|
-
AgentArns?: string[];
|
|
739
|
-
Name?: string;
|
|
740
|
-
ErrorMessage?: string;
|
|
741
|
-
ConnectivityStatus?: StorageSystemConnectivityStatus;
|
|
742
|
-
CloudWatchLogGroupArn?: string;
|
|
743
|
-
CreationTime?: Date;
|
|
744
|
-
SecretsManagerArn?: string;
|
|
735
|
+
StorageSystemArn?: string | undefined;
|
|
736
|
+
ServerConfiguration?: DiscoveryServerConfiguration | undefined;
|
|
737
|
+
SystemType?: DiscoverySystemType | undefined;
|
|
738
|
+
AgentArns?: string[] | undefined;
|
|
739
|
+
Name?: string | undefined;
|
|
740
|
+
ErrorMessage?: string | undefined;
|
|
741
|
+
ConnectivityStatus?: StorageSystemConnectivityStatus | undefined;
|
|
742
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
743
|
+
CreationTime?: Date | undefined;
|
|
744
|
+
SecretsManagerArn?: string | undefined;
|
|
745
745
|
}
|
|
746
746
|
export declare const DiscoveryResourceType: {
|
|
747
747
|
readonly CLUSTER: "CLUSTER";
|
|
@@ -754,43 +754,43 @@ export interface DescribeStorageSystemResourceMetricsRequest {
|
|
|
754
754
|
DiscoveryJobArn: string | undefined;
|
|
755
755
|
ResourceType: DiscoveryResourceType | undefined;
|
|
756
756
|
ResourceId: string | undefined;
|
|
757
|
-
StartTime?: Date;
|
|
758
|
-
EndTime?: Date;
|
|
759
|
-
MaxResults?: number;
|
|
760
|
-
NextToken?: string;
|
|
757
|
+
StartTime?: Date | undefined;
|
|
758
|
+
EndTime?: Date | undefined;
|
|
759
|
+
MaxResults?: number | undefined;
|
|
760
|
+
NextToken?: string | undefined;
|
|
761
761
|
}
|
|
762
762
|
export interface IOPS {
|
|
763
|
-
Read?: number;
|
|
764
|
-
Write?: number;
|
|
765
|
-
Other?: number;
|
|
766
|
-
Total?: number;
|
|
763
|
+
Read?: number | undefined;
|
|
764
|
+
Write?: number | undefined;
|
|
765
|
+
Other?: number | undefined;
|
|
766
|
+
Total?: number | undefined;
|
|
767
767
|
}
|
|
768
768
|
export interface Latency {
|
|
769
|
-
Read?: number;
|
|
770
|
-
Write?: number;
|
|
771
|
-
Other?: number;
|
|
769
|
+
Read?: number | undefined;
|
|
770
|
+
Write?: number | undefined;
|
|
771
|
+
Other?: number | undefined;
|
|
772
772
|
}
|
|
773
773
|
export interface Throughput {
|
|
774
|
-
Read?: number;
|
|
775
|
-
Write?: number;
|
|
776
|
-
Other?: number;
|
|
777
|
-
Total?: number;
|
|
774
|
+
Read?: number | undefined;
|
|
775
|
+
Write?: number | undefined;
|
|
776
|
+
Other?: number | undefined;
|
|
777
|
+
Total?: number | undefined;
|
|
778
778
|
}
|
|
779
779
|
export interface P95Metrics {
|
|
780
|
-
IOPS?: IOPS;
|
|
781
|
-
Throughput?: Throughput;
|
|
782
|
-
Latency?: Latency;
|
|
780
|
+
IOPS?: IOPS | undefined;
|
|
781
|
+
Throughput?: Throughput | undefined;
|
|
782
|
+
Latency?: Latency | undefined;
|
|
783
783
|
}
|
|
784
784
|
export interface ResourceMetrics {
|
|
785
|
-
Timestamp?: Date;
|
|
786
|
-
P95Metrics?: P95Metrics;
|
|
787
|
-
Capacity?: Capacity;
|
|
788
|
-
ResourceId?: string;
|
|
789
|
-
ResourceType?: DiscoveryResourceType;
|
|
785
|
+
Timestamp?: Date | undefined;
|
|
786
|
+
P95Metrics?: P95Metrics | undefined;
|
|
787
|
+
Capacity?: Capacity | undefined;
|
|
788
|
+
ResourceId?: string | undefined;
|
|
789
|
+
ResourceType?: DiscoveryResourceType | undefined;
|
|
790
790
|
}
|
|
791
791
|
export interface DescribeStorageSystemResourceMetricsResponse {
|
|
792
|
-
Metrics?: ResourceMetrics[];
|
|
793
|
-
NextToken?: string;
|
|
792
|
+
Metrics?: ResourceMetrics[] | undefined;
|
|
793
|
+
NextToken?: string | undefined;
|
|
794
794
|
}
|
|
795
795
|
export declare const DiscoveryResourceFilter: {
|
|
796
796
|
readonly SVM: "SVM";
|
|
@@ -800,28 +800,28 @@ export type DiscoveryResourceFilter =
|
|
|
800
800
|
export interface DescribeStorageSystemResourcesRequest {
|
|
801
801
|
DiscoveryJobArn: string | undefined;
|
|
802
802
|
ResourceType: DiscoveryResourceType | undefined;
|
|
803
|
-
ResourceIds?: string[];
|
|
804
|
-
Filter?: Partial<Record<DiscoveryResourceFilter, string[]
|
|
805
|
-
MaxResults?: number;
|
|
806
|
-
NextToken?: string;
|
|
803
|
+
ResourceIds?: string[] | undefined;
|
|
804
|
+
Filter?: Partial<Record<DiscoveryResourceFilter, string[]>> | undefined;
|
|
805
|
+
MaxResults?: number | undefined;
|
|
806
|
+
NextToken?: string | undefined;
|
|
807
807
|
}
|
|
808
808
|
export interface MaxP95Performance {
|
|
809
|
-
IopsRead?: number;
|
|
810
|
-
IopsWrite?: number;
|
|
811
|
-
IopsOther?: number;
|
|
812
|
-
IopsTotal?: number;
|
|
813
|
-
ThroughputRead?: number;
|
|
814
|
-
ThroughputWrite?: number;
|
|
815
|
-
ThroughputOther?: number;
|
|
816
|
-
ThroughputTotal?: number;
|
|
817
|
-
LatencyRead?: number;
|
|
818
|
-
LatencyWrite?: number;
|
|
819
|
-
LatencyOther?: number;
|
|
809
|
+
IopsRead?: number | undefined;
|
|
810
|
+
IopsWrite?: number | undefined;
|
|
811
|
+
IopsOther?: number | undefined;
|
|
812
|
+
IopsTotal?: number | undefined;
|
|
813
|
+
ThroughputRead?: number | undefined;
|
|
814
|
+
ThroughputWrite?: number | undefined;
|
|
815
|
+
ThroughputOther?: number | undefined;
|
|
816
|
+
ThroughputTotal?: number | undefined;
|
|
817
|
+
LatencyRead?: number | undefined;
|
|
818
|
+
LatencyWrite?: number | undefined;
|
|
819
|
+
LatencyOther?: number | undefined;
|
|
820
820
|
}
|
|
821
821
|
export interface Recommendation {
|
|
822
|
-
StorageType?: string;
|
|
823
|
-
StorageConfiguration?: Record<string, string
|
|
824
|
-
EstimatedMonthlyStorageCost?: string;
|
|
822
|
+
StorageType?: string | undefined;
|
|
823
|
+
StorageConfiguration?: Record<string, string> | undefined;
|
|
824
|
+
EstimatedMonthlyStorageCost?: string | undefined;
|
|
825
825
|
}
|
|
826
826
|
export declare const RecommendationStatus: {
|
|
827
827
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -832,60 +832,60 @@ export declare const RecommendationStatus: {
|
|
|
832
832
|
export type RecommendationStatus =
|
|
833
833
|
(typeof RecommendationStatus)[keyof typeof RecommendationStatus];
|
|
834
834
|
export interface NetAppONTAPCluster {
|
|
835
|
-
CifsShareCount?: number;
|
|
836
|
-
NfsExportedVolumes?: number;
|
|
837
|
-
ResourceId?: string;
|
|
838
|
-
ClusterName?: string;
|
|
839
|
-
MaxP95Performance?: MaxP95Performance;
|
|
840
|
-
ClusterBlockStorageSize?: number;
|
|
841
|
-
ClusterBlockStorageUsed?: number;
|
|
842
|
-
ClusterBlockStorageLogicalUsed?: number;
|
|
843
|
-
Recommendations?: Recommendation[];
|
|
844
|
-
RecommendationStatus?: RecommendationStatus;
|
|
845
|
-
LunCount?: number;
|
|
846
|
-
ClusterCloudStorageUsed?: number;
|
|
835
|
+
CifsShareCount?: number | undefined;
|
|
836
|
+
NfsExportedVolumes?: number | undefined;
|
|
837
|
+
ResourceId?: string | undefined;
|
|
838
|
+
ClusterName?: string | undefined;
|
|
839
|
+
MaxP95Performance?: MaxP95Performance | undefined;
|
|
840
|
+
ClusterBlockStorageSize?: number | undefined;
|
|
841
|
+
ClusterBlockStorageUsed?: number | undefined;
|
|
842
|
+
ClusterBlockStorageLogicalUsed?: number | undefined;
|
|
843
|
+
Recommendations?: Recommendation[] | undefined;
|
|
844
|
+
RecommendationStatus?: RecommendationStatus | undefined;
|
|
845
|
+
LunCount?: number | undefined;
|
|
846
|
+
ClusterCloudStorageUsed?: number | undefined;
|
|
847
847
|
}
|
|
848
848
|
export interface NetAppONTAPSVM {
|
|
849
|
-
ClusterUuid?: string;
|
|
850
|
-
ResourceId?: string;
|
|
851
|
-
SvmName?: string;
|
|
852
|
-
CifsShareCount?: number;
|
|
853
|
-
EnabledProtocols?: string[];
|
|
854
|
-
TotalCapacityUsed?: number;
|
|
855
|
-
TotalCapacityProvisioned?: number;
|
|
856
|
-
TotalLogicalCapacityUsed?: number;
|
|
857
|
-
MaxP95Performance?: MaxP95Performance;
|
|
858
|
-
Recommendations?: Recommendation[];
|
|
859
|
-
NfsExportedVolumes?: number;
|
|
860
|
-
RecommendationStatus?: RecommendationStatus;
|
|
861
|
-
TotalSnapshotCapacityUsed?: number;
|
|
862
|
-
LunCount?: number;
|
|
849
|
+
ClusterUuid?: string | undefined;
|
|
850
|
+
ResourceId?: string | undefined;
|
|
851
|
+
SvmName?: string | undefined;
|
|
852
|
+
CifsShareCount?: number | undefined;
|
|
853
|
+
EnabledProtocols?: string[] | undefined;
|
|
854
|
+
TotalCapacityUsed?: number | undefined;
|
|
855
|
+
TotalCapacityProvisioned?: number | undefined;
|
|
856
|
+
TotalLogicalCapacityUsed?: number | undefined;
|
|
857
|
+
MaxP95Performance?: MaxP95Performance | undefined;
|
|
858
|
+
Recommendations?: Recommendation[] | undefined;
|
|
859
|
+
NfsExportedVolumes?: number | undefined;
|
|
860
|
+
RecommendationStatus?: RecommendationStatus | undefined;
|
|
861
|
+
TotalSnapshotCapacityUsed?: number | undefined;
|
|
862
|
+
LunCount?: number | undefined;
|
|
863
863
|
}
|
|
864
864
|
export interface NetAppONTAPVolume {
|
|
865
|
-
VolumeName?: string;
|
|
866
|
-
ResourceId?: string;
|
|
867
|
-
CifsShareCount?: number;
|
|
868
|
-
SecurityStyle?: string;
|
|
869
|
-
SvmUuid?: string;
|
|
870
|
-
SvmName?: string;
|
|
871
|
-
CapacityUsed?: number;
|
|
872
|
-
CapacityProvisioned?: number;
|
|
873
|
-
LogicalCapacityUsed?: number;
|
|
874
|
-
NfsExported?: boolean;
|
|
875
|
-
SnapshotCapacityUsed?: number;
|
|
876
|
-
MaxP95Performance?: MaxP95Performance;
|
|
877
|
-
Recommendations?: Recommendation[];
|
|
878
|
-
RecommendationStatus?: RecommendationStatus;
|
|
879
|
-
LunCount?: number;
|
|
865
|
+
VolumeName?: string | undefined;
|
|
866
|
+
ResourceId?: string | undefined;
|
|
867
|
+
CifsShareCount?: number | undefined;
|
|
868
|
+
SecurityStyle?: string | undefined;
|
|
869
|
+
SvmUuid?: string | undefined;
|
|
870
|
+
SvmName?: string | undefined;
|
|
871
|
+
CapacityUsed?: number | undefined;
|
|
872
|
+
CapacityProvisioned?: number | undefined;
|
|
873
|
+
LogicalCapacityUsed?: number | undefined;
|
|
874
|
+
NfsExported?: boolean | undefined;
|
|
875
|
+
SnapshotCapacityUsed?: number | undefined;
|
|
876
|
+
MaxP95Performance?: MaxP95Performance | undefined;
|
|
877
|
+
Recommendations?: Recommendation[] | undefined;
|
|
878
|
+
RecommendationStatus?: RecommendationStatus | undefined;
|
|
879
|
+
LunCount?: number | undefined;
|
|
880
880
|
}
|
|
881
881
|
export interface ResourceDetails {
|
|
882
|
-
NetAppONTAPSVMs?: NetAppONTAPSVM[];
|
|
883
|
-
NetAppONTAPVolumes?: NetAppONTAPVolume[];
|
|
884
|
-
NetAppONTAPClusters?: NetAppONTAPCluster[];
|
|
882
|
+
NetAppONTAPSVMs?: NetAppONTAPSVM[] | undefined;
|
|
883
|
+
NetAppONTAPVolumes?: NetAppONTAPVolume[] | undefined;
|
|
884
|
+
NetAppONTAPClusters?: NetAppONTAPCluster[] | undefined;
|
|
885
885
|
}
|
|
886
886
|
export interface DescribeStorageSystemResourcesResponse {
|
|
887
|
-
ResourceDetails?: ResourceDetails;
|
|
888
|
-
NextToken?: string;
|
|
887
|
+
ResourceDetails?: ResourceDetails | undefined;
|
|
888
|
+
NextToken?: string | undefined;
|
|
889
889
|
}
|
|
890
890
|
export interface DescribeTaskRequest {
|
|
891
891
|
TaskArn: string | undefined;
|
|
@@ -897,9 +897,9 @@ export declare const ScheduleDisabledBy: {
|
|
|
897
897
|
export type ScheduleDisabledBy =
|
|
898
898
|
(typeof ScheduleDisabledBy)[keyof typeof ScheduleDisabledBy];
|
|
899
899
|
export interface TaskScheduleDetails {
|
|
900
|
-
StatusUpdateTime?: Date;
|
|
901
|
-
DisabledReason?: string;
|
|
902
|
-
DisabledBy?: ScheduleDisabledBy;
|
|
900
|
+
StatusUpdateTime?: Date | undefined;
|
|
901
|
+
DisabledReason?: string | undefined;
|
|
902
|
+
DisabledBy?: ScheduleDisabledBy | undefined;
|
|
903
903
|
}
|
|
904
904
|
export declare const TaskStatus: {
|
|
905
905
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -910,39 +910,39 @@ export declare const TaskStatus: {
|
|
|
910
910
|
};
|
|
911
911
|
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
912
912
|
export interface DescribeTaskResponse {
|
|
913
|
-
TaskArn?: string;
|
|
914
|
-
Status?: TaskStatus;
|
|
915
|
-
Name?: string;
|
|
916
|
-
CurrentTaskExecutionArn?: string;
|
|
917
|
-
SourceLocationArn?: string;
|
|
918
|
-
DestinationLocationArn?: string;
|
|
919
|
-
CloudWatchLogGroupArn?: string;
|
|
920
|
-
SourceNetworkInterfaceArns?: string[];
|
|
921
|
-
DestinationNetworkInterfaceArns?: string[];
|
|
922
|
-
Options?: Options;
|
|
923
|
-
Excludes?: FilterRule[];
|
|
924
|
-
Schedule?: TaskSchedule;
|
|
925
|
-
ErrorCode?: string;
|
|
926
|
-
ErrorDetail?: string;
|
|
927
|
-
CreationTime?: Date;
|
|
928
|
-
Includes?: FilterRule[];
|
|
929
|
-
ManifestConfig?: ManifestConfig;
|
|
930
|
-
TaskReportConfig?: TaskReportConfig;
|
|
931
|
-
ScheduleDetails?: TaskScheduleDetails;
|
|
932
|
-
TaskMode?: TaskMode;
|
|
913
|
+
TaskArn?: string | undefined;
|
|
914
|
+
Status?: TaskStatus | undefined;
|
|
915
|
+
Name?: string | undefined;
|
|
916
|
+
CurrentTaskExecutionArn?: string | undefined;
|
|
917
|
+
SourceLocationArn?: string | undefined;
|
|
918
|
+
DestinationLocationArn?: string | undefined;
|
|
919
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
920
|
+
SourceNetworkInterfaceArns?: string[] | undefined;
|
|
921
|
+
DestinationNetworkInterfaceArns?: string[] | undefined;
|
|
922
|
+
Options?: Options | undefined;
|
|
923
|
+
Excludes?: FilterRule[] | undefined;
|
|
924
|
+
Schedule?: TaskSchedule | undefined;
|
|
925
|
+
ErrorCode?: string | undefined;
|
|
926
|
+
ErrorDetail?: string | undefined;
|
|
927
|
+
CreationTime?: Date | undefined;
|
|
928
|
+
Includes?: FilterRule[] | undefined;
|
|
929
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
930
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
931
|
+
ScheduleDetails?: TaskScheduleDetails | undefined;
|
|
932
|
+
TaskMode?: TaskMode | undefined;
|
|
933
933
|
}
|
|
934
934
|
export interface DescribeTaskExecutionRequest {
|
|
935
935
|
TaskExecutionArn: string | undefined;
|
|
936
936
|
}
|
|
937
937
|
export interface TaskExecutionFilesFailedDetail {
|
|
938
|
-
Prepare?: number;
|
|
939
|
-
Transfer?: number;
|
|
940
|
-
Verify?: number;
|
|
941
|
-
Delete?: number;
|
|
938
|
+
Prepare?: number | undefined;
|
|
939
|
+
Transfer?: number | undefined;
|
|
940
|
+
Verify?: number | undefined;
|
|
941
|
+
Delete?: number | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface TaskExecutionFilesListedDetail {
|
|
944
|
-
AtSource?: number;
|
|
945
|
-
AtDestinationForDelete?: number;
|
|
944
|
+
AtSource?: number | undefined;
|
|
945
|
+
AtDestinationForDelete?: number | undefined;
|
|
946
946
|
}
|
|
947
947
|
export declare const PhaseStatus: {
|
|
948
948
|
readonly ERROR: "ERROR";
|
|
@@ -951,20 +951,20 @@ export declare const PhaseStatus: {
|
|
|
951
951
|
};
|
|
952
952
|
export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
|
|
953
953
|
export interface ReportResult {
|
|
954
|
-
Status?: PhaseStatus;
|
|
955
|
-
ErrorCode?: string;
|
|
956
|
-
ErrorDetail?: string;
|
|
954
|
+
Status?: PhaseStatus | undefined;
|
|
955
|
+
ErrorCode?: string | undefined;
|
|
956
|
+
ErrorDetail?: string | undefined;
|
|
957
957
|
}
|
|
958
958
|
export interface TaskExecutionResultDetail {
|
|
959
|
-
PrepareDuration?: number;
|
|
960
|
-
PrepareStatus?: PhaseStatus;
|
|
961
|
-
TotalDuration?: number;
|
|
962
|
-
TransferDuration?: number;
|
|
963
|
-
TransferStatus?: PhaseStatus;
|
|
964
|
-
VerifyDuration?: number;
|
|
965
|
-
VerifyStatus?: PhaseStatus;
|
|
966
|
-
ErrorCode?: string;
|
|
967
|
-
ErrorDetail?: string;
|
|
959
|
+
PrepareDuration?: number | undefined;
|
|
960
|
+
PrepareStatus?: PhaseStatus | undefined;
|
|
961
|
+
TotalDuration?: number | undefined;
|
|
962
|
+
TransferDuration?: number | undefined;
|
|
963
|
+
TransferStatus?: PhaseStatus | undefined;
|
|
964
|
+
VerifyDuration?: number | undefined;
|
|
965
|
+
VerifyStatus?: PhaseStatus | undefined;
|
|
966
|
+
ErrorCode?: string | undefined;
|
|
967
|
+
ErrorDetail?: string | undefined;
|
|
968
968
|
}
|
|
969
969
|
export declare const TaskExecutionStatus: {
|
|
970
970
|
readonly CANCELLING: "CANCELLING";
|
|
@@ -979,34 +979,34 @@ export declare const TaskExecutionStatus: {
|
|
|
979
979
|
export type TaskExecutionStatus =
|
|
980
980
|
(typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
|
|
981
981
|
export interface DescribeTaskExecutionResponse {
|
|
982
|
-
TaskExecutionArn?: string;
|
|
983
|
-
Status?: TaskExecutionStatus;
|
|
984
|
-
Options?: Options;
|
|
985
|
-
Excludes?: FilterRule[];
|
|
986
|
-
Includes?: FilterRule[];
|
|
987
|
-
ManifestConfig?: ManifestConfig;
|
|
988
|
-
StartTime?: Date;
|
|
989
|
-
EstimatedFilesToTransfer?: number;
|
|
990
|
-
EstimatedBytesToTransfer?: number;
|
|
991
|
-
FilesTransferred?: number;
|
|
992
|
-
BytesWritten?: number;
|
|
993
|
-
BytesTransferred?: number;
|
|
994
|
-
BytesCompressed?: number;
|
|
995
|
-
Result?: TaskExecutionResultDetail;
|
|
996
|
-
TaskReportConfig?: TaskReportConfig;
|
|
997
|
-
FilesDeleted?: number;
|
|
998
|
-
FilesSkipped?: number;
|
|
999
|
-
FilesVerified?: number;
|
|
1000
|
-
ReportResult?: ReportResult;
|
|
1001
|
-
EstimatedFilesToDelete?: number;
|
|
1002
|
-
TaskMode?: TaskMode;
|
|
1003
|
-
FilesPrepared?: number;
|
|
1004
|
-
FilesListed?: TaskExecutionFilesListedDetail;
|
|
1005
|
-
FilesFailed?: TaskExecutionFilesFailedDetail;
|
|
982
|
+
TaskExecutionArn?: string | undefined;
|
|
983
|
+
Status?: TaskExecutionStatus | undefined;
|
|
984
|
+
Options?: Options | undefined;
|
|
985
|
+
Excludes?: FilterRule[] | undefined;
|
|
986
|
+
Includes?: FilterRule[] | undefined;
|
|
987
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
988
|
+
StartTime?: Date | undefined;
|
|
989
|
+
EstimatedFilesToTransfer?: number | undefined;
|
|
990
|
+
EstimatedBytesToTransfer?: number | undefined;
|
|
991
|
+
FilesTransferred?: number | undefined;
|
|
992
|
+
BytesWritten?: number | undefined;
|
|
993
|
+
BytesTransferred?: number | undefined;
|
|
994
|
+
BytesCompressed?: number | undefined;
|
|
995
|
+
Result?: TaskExecutionResultDetail | undefined;
|
|
996
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
997
|
+
FilesDeleted?: number | undefined;
|
|
998
|
+
FilesSkipped?: number | undefined;
|
|
999
|
+
FilesVerified?: number | undefined;
|
|
1000
|
+
ReportResult?: ReportResult | undefined;
|
|
1001
|
+
EstimatedFilesToDelete?: number | undefined;
|
|
1002
|
+
TaskMode?: TaskMode | undefined;
|
|
1003
|
+
FilesPrepared?: number | undefined;
|
|
1004
|
+
FilesListed?: TaskExecutionFilesListedDetail | undefined;
|
|
1005
|
+
FilesFailed?: TaskExecutionFilesFailedDetail | undefined;
|
|
1006
1006
|
}
|
|
1007
1007
|
export interface DiscoveryJobListEntry {
|
|
1008
|
-
DiscoveryJobArn?: string;
|
|
1009
|
-
Status?: DiscoveryJobStatus;
|
|
1008
|
+
DiscoveryJobArn?: string | undefined;
|
|
1009
|
+
Status?: DiscoveryJobStatus | undefined;
|
|
1010
1010
|
}
|
|
1011
1011
|
export interface GenerateRecommendationsRequest {
|
|
1012
1012
|
DiscoveryJobArn: string | undefined;
|
|
@@ -1015,21 +1015,21 @@ export interface GenerateRecommendationsRequest {
|
|
|
1015
1015
|
}
|
|
1016
1016
|
export interface GenerateRecommendationsResponse {}
|
|
1017
1017
|
export interface ListAgentsRequest {
|
|
1018
|
-
MaxResults?: number;
|
|
1019
|
-
NextToken?: string;
|
|
1018
|
+
MaxResults?: number | undefined;
|
|
1019
|
+
NextToken?: string | undefined;
|
|
1020
1020
|
}
|
|
1021
1021
|
export interface ListAgentsResponse {
|
|
1022
|
-
Agents?: AgentListEntry[];
|
|
1023
|
-
NextToken?: string;
|
|
1022
|
+
Agents?: AgentListEntry[] | undefined;
|
|
1023
|
+
NextToken?: string | undefined;
|
|
1024
1024
|
}
|
|
1025
1025
|
export interface ListDiscoveryJobsRequest {
|
|
1026
|
-
StorageSystemArn?: string;
|
|
1027
|
-
MaxResults?: number;
|
|
1028
|
-
NextToken?: string;
|
|
1026
|
+
StorageSystemArn?: string | undefined;
|
|
1027
|
+
MaxResults?: number | undefined;
|
|
1028
|
+
NextToken?: string | undefined;
|
|
1029
1029
|
}
|
|
1030
1030
|
export interface ListDiscoveryJobsResponse {
|
|
1031
|
-
DiscoveryJobs?: DiscoveryJobListEntry[];
|
|
1032
|
-
NextToken?: string;
|
|
1031
|
+
DiscoveryJobs?: DiscoveryJobListEntry[] | undefined;
|
|
1032
|
+
NextToken?: string | undefined;
|
|
1033
1033
|
}
|
|
1034
1034
|
export declare const LocationFilterName: {
|
|
1035
1035
|
readonly CreationTime: "CreationTime";
|
|
@@ -1057,52 +1057,52 @@ export interface LocationFilter {
|
|
|
1057
1057
|
Operator: Operator | undefined;
|
|
1058
1058
|
}
|
|
1059
1059
|
export interface ListLocationsRequest {
|
|
1060
|
-
MaxResults?: number;
|
|
1061
|
-
NextToken?: string;
|
|
1062
|
-
Filters?: LocationFilter[];
|
|
1060
|
+
MaxResults?: number | undefined;
|
|
1061
|
+
NextToken?: string | undefined;
|
|
1062
|
+
Filters?: LocationFilter[] | undefined;
|
|
1063
1063
|
}
|
|
1064
1064
|
export interface LocationListEntry {
|
|
1065
|
-
LocationArn?: string;
|
|
1066
|
-
LocationUri?: string;
|
|
1065
|
+
LocationArn?: string | undefined;
|
|
1066
|
+
LocationUri?: string | undefined;
|
|
1067
1067
|
}
|
|
1068
1068
|
export interface ListLocationsResponse {
|
|
1069
|
-
Locations?: LocationListEntry[];
|
|
1070
|
-
NextToken?: string;
|
|
1069
|
+
Locations?: LocationListEntry[] | undefined;
|
|
1070
|
+
NextToken?: string | undefined;
|
|
1071
1071
|
}
|
|
1072
1072
|
export interface ListStorageSystemsRequest {
|
|
1073
|
-
MaxResults?: number;
|
|
1074
|
-
NextToken?: string;
|
|
1073
|
+
MaxResults?: number | undefined;
|
|
1074
|
+
NextToken?: string | undefined;
|
|
1075
1075
|
}
|
|
1076
1076
|
export interface StorageSystemListEntry {
|
|
1077
|
-
StorageSystemArn?: string;
|
|
1078
|
-
Name?: string;
|
|
1077
|
+
StorageSystemArn?: string | undefined;
|
|
1078
|
+
Name?: string | undefined;
|
|
1079
1079
|
}
|
|
1080
1080
|
export interface ListStorageSystemsResponse {
|
|
1081
|
-
StorageSystems?: StorageSystemListEntry[];
|
|
1082
|
-
NextToken?: string;
|
|
1081
|
+
StorageSystems?: StorageSystemListEntry[] | undefined;
|
|
1082
|
+
NextToken?: string | undefined;
|
|
1083
1083
|
}
|
|
1084
1084
|
export interface ListTagsForResourceRequest {
|
|
1085
1085
|
ResourceArn: string | undefined;
|
|
1086
|
-
MaxResults?: number;
|
|
1087
|
-
NextToken?: string;
|
|
1086
|
+
MaxResults?: number | undefined;
|
|
1087
|
+
NextToken?: string | undefined;
|
|
1088
1088
|
}
|
|
1089
1089
|
export interface ListTagsForResourceResponse {
|
|
1090
|
-
Tags?: TagListEntry[];
|
|
1091
|
-
NextToken?: string;
|
|
1090
|
+
Tags?: TagListEntry[] | undefined;
|
|
1091
|
+
NextToken?: string | undefined;
|
|
1092
1092
|
}
|
|
1093
1093
|
export interface ListTaskExecutionsRequest {
|
|
1094
|
-
TaskArn?: string;
|
|
1095
|
-
MaxResults?: number;
|
|
1096
|
-
NextToken?: string;
|
|
1094
|
+
TaskArn?: string | undefined;
|
|
1095
|
+
MaxResults?: number | undefined;
|
|
1096
|
+
NextToken?: string | undefined;
|
|
1097
1097
|
}
|
|
1098
1098
|
export interface TaskExecutionListEntry {
|
|
1099
|
-
TaskExecutionArn?: string;
|
|
1100
|
-
Status?: TaskExecutionStatus;
|
|
1101
|
-
TaskMode?: TaskMode;
|
|
1099
|
+
TaskExecutionArn?: string | undefined;
|
|
1100
|
+
Status?: TaskExecutionStatus | undefined;
|
|
1101
|
+
TaskMode?: TaskMode | undefined;
|
|
1102
1102
|
}
|
|
1103
1103
|
export interface ListTaskExecutionsResponse {
|
|
1104
|
-
TaskExecutions?: TaskExecutionListEntry[];
|
|
1105
|
-
NextToken?: string;
|
|
1104
|
+
TaskExecutions?: TaskExecutionListEntry[] | undefined;
|
|
1105
|
+
NextToken?: string | undefined;
|
|
1106
1106
|
}
|
|
1107
1107
|
export declare const TaskFilterName: {
|
|
1108
1108
|
readonly CreationTime: "CreationTime";
|
|
@@ -1116,19 +1116,19 @@ export interface TaskFilter {
|
|
|
1116
1116
|
Operator: Operator | undefined;
|
|
1117
1117
|
}
|
|
1118
1118
|
export interface ListTasksRequest {
|
|
1119
|
-
MaxResults?: number;
|
|
1120
|
-
NextToken?: string;
|
|
1121
|
-
Filters?: TaskFilter[];
|
|
1119
|
+
MaxResults?: number | undefined;
|
|
1120
|
+
NextToken?: string | undefined;
|
|
1121
|
+
Filters?: TaskFilter[] | undefined;
|
|
1122
1122
|
}
|
|
1123
1123
|
export interface TaskListEntry {
|
|
1124
|
-
TaskArn?: string;
|
|
1125
|
-
Status?: TaskStatus;
|
|
1126
|
-
Name?: string;
|
|
1127
|
-
TaskMode?: TaskMode;
|
|
1124
|
+
TaskArn?: string | undefined;
|
|
1125
|
+
Status?: TaskStatus | undefined;
|
|
1126
|
+
Name?: string | undefined;
|
|
1127
|
+
TaskMode?: TaskMode | undefined;
|
|
1128
1128
|
}
|
|
1129
1129
|
export interface ListTasksResponse {
|
|
1130
|
-
Tasks?: TaskListEntry[];
|
|
1131
|
-
NextToken?: string;
|
|
1130
|
+
Tasks?: TaskListEntry[] | undefined;
|
|
1131
|
+
NextToken?: string | undefined;
|
|
1132
1132
|
}
|
|
1133
1133
|
export interface RemoveStorageSystemRequest {
|
|
1134
1134
|
StorageSystemArn: string | undefined;
|
|
@@ -1137,23 +1137,23 @@ export interface RemoveStorageSystemResponse {}
|
|
|
1137
1137
|
export interface StartDiscoveryJobRequest {
|
|
1138
1138
|
StorageSystemArn: string | undefined;
|
|
1139
1139
|
CollectionDurationMinutes: number | undefined;
|
|
1140
|
-
ClientToken?: string;
|
|
1141
|
-
Tags?: TagListEntry[];
|
|
1140
|
+
ClientToken?: string | undefined;
|
|
1141
|
+
Tags?: TagListEntry[] | undefined;
|
|
1142
1142
|
}
|
|
1143
1143
|
export interface StartDiscoveryJobResponse {
|
|
1144
|
-
DiscoveryJobArn?: string;
|
|
1144
|
+
DiscoveryJobArn?: string | undefined;
|
|
1145
1145
|
}
|
|
1146
1146
|
export interface StartTaskExecutionRequest {
|
|
1147
1147
|
TaskArn: string | undefined;
|
|
1148
|
-
OverrideOptions?: Options;
|
|
1149
|
-
Includes?: FilterRule[];
|
|
1150
|
-
Excludes?: FilterRule[];
|
|
1151
|
-
ManifestConfig?: ManifestConfig;
|
|
1152
|
-
TaskReportConfig?: TaskReportConfig;
|
|
1153
|
-
Tags?: TagListEntry[];
|
|
1148
|
+
OverrideOptions?: Options | undefined;
|
|
1149
|
+
Includes?: FilterRule[] | undefined;
|
|
1150
|
+
Excludes?: FilterRule[] | undefined;
|
|
1151
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
1152
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
1153
|
+
Tags?: TagListEntry[] | undefined;
|
|
1154
1154
|
}
|
|
1155
1155
|
export interface StartTaskExecutionResponse {
|
|
1156
|
-
TaskExecutionArn?: string;
|
|
1156
|
+
TaskExecutionArn?: string | undefined;
|
|
1157
1157
|
}
|
|
1158
1158
|
export interface StopDiscoveryJobRequest {
|
|
1159
1159
|
DiscoveryJobArn: string | undefined;
|
|
@@ -1171,7 +1171,7 @@ export interface UntagResourceRequest {
|
|
|
1171
1171
|
export interface UntagResourceResponse {}
|
|
1172
1172
|
export interface UpdateAgentRequest {
|
|
1173
1173
|
AgentArn: string | undefined;
|
|
1174
|
-
Name?: string;
|
|
1174
|
+
Name?: string | undefined;
|
|
1175
1175
|
}
|
|
1176
1176
|
export interface UpdateAgentResponse {}
|
|
1177
1177
|
export interface UpdateDiscoveryJobRequest {
|
|
@@ -1181,77 +1181,77 @@ export interface UpdateDiscoveryJobRequest {
|
|
|
1181
1181
|
export interface UpdateDiscoveryJobResponse {}
|
|
1182
1182
|
export interface UpdateLocationAzureBlobRequest {
|
|
1183
1183
|
LocationArn: string | undefined;
|
|
1184
|
-
Subdirectory?: string;
|
|
1185
|
-
AuthenticationType?: AzureBlobAuthenticationType;
|
|
1186
|
-
SasConfiguration?: AzureBlobSasConfiguration;
|
|
1187
|
-
BlobType?: AzureBlobType;
|
|
1188
|
-
AccessTier?: AzureAccessTier;
|
|
1189
|
-
AgentArns?: string[];
|
|
1184
|
+
Subdirectory?: string | undefined;
|
|
1185
|
+
AuthenticationType?: AzureBlobAuthenticationType | undefined;
|
|
1186
|
+
SasConfiguration?: AzureBlobSasConfiguration | undefined;
|
|
1187
|
+
BlobType?: AzureBlobType | undefined;
|
|
1188
|
+
AccessTier?: AzureAccessTier | undefined;
|
|
1189
|
+
AgentArns?: string[] | undefined;
|
|
1190
1190
|
}
|
|
1191
1191
|
export interface UpdateLocationAzureBlobResponse {}
|
|
1192
1192
|
export interface UpdateLocationHdfsRequest {
|
|
1193
1193
|
LocationArn: string | undefined;
|
|
1194
|
-
Subdirectory?: string;
|
|
1195
|
-
NameNodes?: HdfsNameNode[];
|
|
1196
|
-
BlockSize?: number;
|
|
1197
|
-
ReplicationFactor?: number;
|
|
1198
|
-
KmsKeyProviderUri?: string;
|
|
1199
|
-
QopConfiguration?: QopConfiguration;
|
|
1200
|
-
AuthenticationType?: HdfsAuthenticationType;
|
|
1201
|
-
SimpleUser?: string;
|
|
1202
|
-
KerberosPrincipal?: string;
|
|
1203
|
-
KerberosKeytab?: Uint8Array;
|
|
1204
|
-
KerberosKrb5Conf?: Uint8Array;
|
|
1205
|
-
AgentArns?: string[];
|
|
1194
|
+
Subdirectory?: string | undefined;
|
|
1195
|
+
NameNodes?: HdfsNameNode[] | undefined;
|
|
1196
|
+
BlockSize?: number | undefined;
|
|
1197
|
+
ReplicationFactor?: number | undefined;
|
|
1198
|
+
KmsKeyProviderUri?: string | undefined;
|
|
1199
|
+
QopConfiguration?: QopConfiguration | undefined;
|
|
1200
|
+
AuthenticationType?: HdfsAuthenticationType | undefined;
|
|
1201
|
+
SimpleUser?: string | undefined;
|
|
1202
|
+
KerberosPrincipal?: string | undefined;
|
|
1203
|
+
KerberosKeytab?: Uint8Array | undefined;
|
|
1204
|
+
KerberosKrb5Conf?: Uint8Array | undefined;
|
|
1205
|
+
AgentArns?: string[] | undefined;
|
|
1206
1206
|
}
|
|
1207
1207
|
export interface UpdateLocationHdfsResponse {}
|
|
1208
1208
|
export interface UpdateLocationNfsRequest {
|
|
1209
1209
|
LocationArn: string | undefined;
|
|
1210
|
-
Subdirectory?: string;
|
|
1211
|
-
OnPremConfig?: OnPremConfig;
|
|
1212
|
-
MountOptions?: NfsMountOptions;
|
|
1210
|
+
Subdirectory?: string | undefined;
|
|
1211
|
+
OnPremConfig?: OnPremConfig | undefined;
|
|
1212
|
+
MountOptions?: NfsMountOptions | undefined;
|
|
1213
1213
|
}
|
|
1214
1214
|
export interface UpdateLocationNfsResponse {}
|
|
1215
1215
|
export interface UpdateLocationObjectStorageRequest {
|
|
1216
1216
|
LocationArn: string | undefined;
|
|
1217
|
-
ServerPort?: number;
|
|
1218
|
-
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1219
|
-
Subdirectory?: string;
|
|
1220
|
-
AccessKey?: string;
|
|
1221
|
-
SecretKey?: string;
|
|
1222
|
-
AgentArns?: string[];
|
|
1223
|
-
ServerCertificate?: Uint8Array;
|
|
1217
|
+
ServerPort?: number | undefined;
|
|
1218
|
+
ServerProtocol?: ObjectStorageServerProtocol | undefined;
|
|
1219
|
+
Subdirectory?: string | undefined;
|
|
1220
|
+
AccessKey?: string | undefined;
|
|
1221
|
+
SecretKey?: string | undefined;
|
|
1222
|
+
AgentArns?: string[] | undefined;
|
|
1223
|
+
ServerCertificate?: Uint8Array | undefined;
|
|
1224
1224
|
}
|
|
1225
1225
|
export interface UpdateLocationObjectStorageResponse {}
|
|
1226
1226
|
export interface UpdateLocationSmbRequest {
|
|
1227
1227
|
LocationArn: string | undefined;
|
|
1228
|
-
Subdirectory?: string;
|
|
1229
|
-
User?: string;
|
|
1230
|
-
Domain?: string;
|
|
1231
|
-
Password?: string;
|
|
1232
|
-
AgentArns?: string[];
|
|
1233
|
-
MountOptions?: SmbMountOptions;
|
|
1228
|
+
Subdirectory?: string | undefined;
|
|
1229
|
+
User?: string | undefined;
|
|
1230
|
+
Domain?: string | undefined;
|
|
1231
|
+
Password?: string | undefined;
|
|
1232
|
+
AgentArns?: string[] | undefined;
|
|
1233
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
1234
1234
|
}
|
|
1235
1235
|
export interface UpdateLocationSmbResponse {}
|
|
1236
1236
|
export interface UpdateStorageSystemRequest {
|
|
1237
1237
|
StorageSystemArn: string | undefined;
|
|
1238
|
-
ServerConfiguration?: DiscoveryServerConfiguration;
|
|
1239
|
-
AgentArns?: string[];
|
|
1240
|
-
Name?: string;
|
|
1241
|
-
CloudWatchLogGroupArn?: string;
|
|
1242
|
-
Credentials?: Credentials;
|
|
1238
|
+
ServerConfiguration?: DiscoveryServerConfiguration | undefined;
|
|
1239
|
+
AgentArns?: string[] | undefined;
|
|
1240
|
+
Name?: string | undefined;
|
|
1241
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
1242
|
+
Credentials?: Credentials | undefined;
|
|
1243
1243
|
}
|
|
1244
1244
|
export interface UpdateStorageSystemResponse {}
|
|
1245
1245
|
export interface UpdateTaskRequest {
|
|
1246
1246
|
TaskArn: string | undefined;
|
|
1247
|
-
Options?: Options;
|
|
1248
|
-
Excludes?: FilterRule[];
|
|
1249
|
-
Schedule?: TaskSchedule;
|
|
1250
|
-
Name?: string;
|
|
1251
|
-
CloudWatchLogGroupArn?: string;
|
|
1252
|
-
Includes?: FilterRule[];
|
|
1253
|
-
ManifestConfig?: ManifestConfig;
|
|
1254
|
-
TaskReportConfig?: TaskReportConfig;
|
|
1247
|
+
Options?: Options | undefined;
|
|
1248
|
+
Excludes?: FilterRule[] | undefined;
|
|
1249
|
+
Schedule?: TaskSchedule | undefined;
|
|
1250
|
+
Name?: string | undefined;
|
|
1251
|
+
CloudWatchLogGroupArn?: string | undefined;
|
|
1252
|
+
Includes?: FilterRule[] | undefined;
|
|
1253
|
+
ManifestConfig?: ManifestConfig | undefined;
|
|
1254
|
+
TaskReportConfig?: TaskReportConfig | undefined;
|
|
1255
1255
|
}
|
|
1256
1256
|
export interface UpdateTaskResponse {}
|
|
1257
1257
|
export interface UpdateTaskExecutionRequest {
|