@aws-sdk/client-datasync 3.933.0 → 3.935.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-cjs/index.js +213 -212
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +212 -0
- package/dist-es/models/errors.js +31 -0
- package/dist-es/models/models_0.js +1 -243
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +556 -0
- package/dist-types/models/errors.d.ts +30 -0
- package/dist-types/models/models_0.d.ts +1 -586
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +277 -0
- package/dist-types/ts3.4/models/errors.d.ts +17 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -294
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DataSyncServiceException as __BaseException } from "./DataSyncServiceException";
|
|
1
|
+
import { AgentStatus, Atime, AzureAccessTier, AzureBlobAuthenticationType, AzureBlobType, EfsInTransitEncryption, EndpointType, FilterType, Gid, HdfsAuthenticationType, HdfsDataTransferProtection, HdfsRpcProtection, LocationFilterName, LogLevel, ManifestAction, ManifestFormat, Mtime, NfsVersion, ObjectStorageServerProtocol, ObjectTags, ObjectVersionIds, Operator, OverwriteMode, PhaseStatus, PosixPermissions, PreserveDeletedFiles, PreserveDevices, ReportLevel, ReportOutputType, S3StorageClass, ScheduleDisabledBy, ScheduleStatus, SmbAuthenticationType, SmbSecurityDescriptorCopyFlags, SmbVersion, TaskExecutionStatus, TaskFilterName, TaskMode, TaskQueueing, TaskStatus, TransferMode, Uid, VerifyMode } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>The platform-related details about the DataSync agent, such as the version
|
|
5
4
|
* number.</p>
|
|
@@ -12,18 +11,6 @@ export interface Platform {
|
|
|
12
11
|
*/
|
|
13
12
|
Version?: string | undefined;
|
|
14
13
|
}
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const AgentStatus: {
|
|
20
|
-
readonly OFFLINE: "OFFLINE";
|
|
21
|
-
readonly ONLINE: "ONLINE";
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
27
14
|
/**
|
|
28
15
|
* <p>Represents a single entry in a list (or array) of DataSync agents when
|
|
29
16
|
* you call the <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_ListAgents.html">ListAgents</a> operation.</p>
|
|
@@ -63,43 +50,6 @@ export interface AgentListEntry {
|
|
|
63
50
|
*/
|
|
64
51
|
Platform?: Platform | undefined;
|
|
65
52
|
}
|
|
66
|
-
/**
|
|
67
|
-
* @public
|
|
68
|
-
* @enum
|
|
69
|
-
*/
|
|
70
|
-
export declare const Atime: {
|
|
71
|
-
readonly BEST_EFFORT: "BEST_EFFORT";
|
|
72
|
-
readonly NONE: "NONE";
|
|
73
|
-
};
|
|
74
|
-
/**
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
export type Atime = (typeof Atime)[keyof typeof Atime];
|
|
78
|
-
/**
|
|
79
|
-
* @public
|
|
80
|
-
* @enum
|
|
81
|
-
*/
|
|
82
|
-
export declare const AzureAccessTier: {
|
|
83
|
-
readonly ARCHIVE: "ARCHIVE";
|
|
84
|
-
readonly COOL: "COOL";
|
|
85
|
-
readonly HOT: "HOT";
|
|
86
|
-
};
|
|
87
|
-
/**
|
|
88
|
-
* @public
|
|
89
|
-
*/
|
|
90
|
-
export type AzureAccessTier = (typeof AzureAccessTier)[keyof typeof AzureAccessTier];
|
|
91
|
-
/**
|
|
92
|
-
* @public
|
|
93
|
-
* @enum
|
|
94
|
-
*/
|
|
95
|
-
export declare const AzureBlobAuthenticationType: {
|
|
96
|
-
readonly NONE: "NONE";
|
|
97
|
-
readonly SAS: "SAS";
|
|
98
|
-
};
|
|
99
|
-
/**
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
export type AzureBlobAuthenticationType = (typeof AzureBlobAuthenticationType)[keyof typeof AzureBlobAuthenticationType];
|
|
103
53
|
/**
|
|
104
54
|
* <p>The shared access signature (SAS) configuration that allows DataSync to
|
|
105
55
|
* access your Microsoft Azure Blob Storage.</p>
|
|
@@ -119,17 +69,6 @@ export interface AzureBlobSasConfiguration {
|
|
|
119
69
|
*/
|
|
120
70
|
Token: string | undefined;
|
|
121
71
|
}
|
|
122
|
-
/**
|
|
123
|
-
* @public
|
|
124
|
-
* @enum
|
|
125
|
-
*/
|
|
126
|
-
export declare const AzureBlobType: {
|
|
127
|
-
readonly BLOCK: "BLOCK";
|
|
128
|
-
};
|
|
129
|
-
/**
|
|
130
|
-
* @public
|
|
131
|
-
*/
|
|
132
|
-
export type AzureBlobType = (typeof AzureBlobType)[keyof typeof AzureBlobType];
|
|
133
72
|
/**
|
|
134
73
|
* <p>CancelTaskExecutionRequest</p>
|
|
135
74
|
* @public
|
|
@@ -146,34 +85,6 @@ export interface CancelTaskExecutionRequest {
|
|
|
146
85
|
*/
|
|
147
86
|
export interface CancelTaskExecutionResponse {
|
|
148
87
|
}
|
|
149
|
-
/**
|
|
150
|
-
* <p>This exception is thrown when an error occurs in the DataSync
|
|
151
|
-
* service.</p>
|
|
152
|
-
* @public
|
|
153
|
-
*/
|
|
154
|
-
export declare class InternalException extends __BaseException {
|
|
155
|
-
readonly name: "InternalException";
|
|
156
|
-
readonly $fault: "server";
|
|
157
|
-
errorCode?: string | undefined;
|
|
158
|
-
/**
|
|
159
|
-
* @internal
|
|
160
|
-
*/
|
|
161
|
-
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
162
|
-
}
|
|
163
|
-
/**
|
|
164
|
-
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
165
|
-
* @public
|
|
166
|
-
*/
|
|
167
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
168
|
-
readonly name: "InvalidRequestException";
|
|
169
|
-
readonly $fault: "client";
|
|
170
|
-
errorCode?: string | undefined;
|
|
171
|
-
datasyncErrorCode?: string | undefined;
|
|
172
|
-
/**
|
|
173
|
-
* @internal
|
|
174
|
-
*/
|
|
175
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
176
|
-
}
|
|
177
88
|
/**
|
|
178
89
|
* <p>Specifies configuration information for a DataSync-managed secret, such as an
|
|
179
90
|
* authentication token or secret key that DataSync uses to access a specific storage
|
|
@@ -441,18 +352,6 @@ export interface Ec2Config {
|
|
|
441
352
|
*/
|
|
442
353
|
SecurityGroupArns: string[] | undefined;
|
|
443
354
|
}
|
|
444
|
-
/**
|
|
445
|
-
* @public
|
|
446
|
-
* @enum
|
|
447
|
-
*/
|
|
448
|
-
export declare const EfsInTransitEncryption: {
|
|
449
|
-
readonly NONE: "NONE";
|
|
450
|
-
readonly TLS1_2: "TLS1_2";
|
|
451
|
-
};
|
|
452
|
-
/**
|
|
453
|
-
* @public
|
|
454
|
-
*/
|
|
455
|
-
export type EfsInTransitEncryption = (typeof EfsInTransitEncryption)[keyof typeof EfsInTransitEncryption];
|
|
456
355
|
/**
|
|
457
356
|
* <p>CreateLocationEfsRequest</p>
|
|
458
357
|
* @public
|
|
@@ -571,20 +470,6 @@ export interface CreateLocationFsxLustreResponse {
|
|
|
571
470
|
*/
|
|
572
471
|
LocationArn?: string | undefined;
|
|
573
472
|
}
|
|
574
|
-
/**
|
|
575
|
-
* @public
|
|
576
|
-
* @enum
|
|
577
|
-
*/
|
|
578
|
-
export declare const NfsVersion: {
|
|
579
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
580
|
-
readonly NFS3: "NFS3";
|
|
581
|
-
readonly NFS4_0: "NFS4_0";
|
|
582
|
-
readonly NFS4_1: "NFS4_1";
|
|
583
|
-
};
|
|
584
|
-
/**
|
|
585
|
-
* @public
|
|
586
|
-
*/
|
|
587
|
-
export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
|
|
588
473
|
/**
|
|
589
474
|
* <p>Specifies how DataSync can access a location using the NFS protocol.</p>
|
|
590
475
|
* @public
|
|
@@ -636,21 +521,6 @@ export interface FsxProtocolNfs {
|
|
|
636
521
|
*/
|
|
637
522
|
MountOptions?: NfsMountOptions | undefined;
|
|
638
523
|
}
|
|
639
|
-
/**
|
|
640
|
-
* @public
|
|
641
|
-
* @enum
|
|
642
|
-
*/
|
|
643
|
-
export declare const SmbVersion: {
|
|
644
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
645
|
-
readonly SMB1: "SMB1";
|
|
646
|
-
readonly SMB2: "SMB2";
|
|
647
|
-
readonly SMB2_0: "SMB2_0";
|
|
648
|
-
readonly SMB3: "SMB3";
|
|
649
|
-
};
|
|
650
|
-
/**
|
|
651
|
-
* @public
|
|
652
|
-
*/
|
|
653
|
-
export type SmbVersion = (typeof SmbVersion)[keyof typeof SmbVersion];
|
|
654
524
|
/**
|
|
655
525
|
* <p>Specifies the version of the Server Message Block (SMB) protocol that DataSync uses to access an SMB file server.</p>
|
|
656
526
|
* @public
|
|
@@ -943,18 +813,6 @@ export interface CreateLocationFsxWindowsResponse {
|
|
|
943
813
|
*/
|
|
944
814
|
LocationArn?: string | undefined;
|
|
945
815
|
}
|
|
946
|
-
/**
|
|
947
|
-
* @public
|
|
948
|
-
* @enum
|
|
949
|
-
*/
|
|
950
|
-
export declare const HdfsAuthenticationType: {
|
|
951
|
-
readonly KERBEROS: "KERBEROS";
|
|
952
|
-
readonly SIMPLE: "SIMPLE";
|
|
953
|
-
};
|
|
954
|
-
/**
|
|
955
|
-
* @public
|
|
956
|
-
*/
|
|
957
|
-
export type HdfsAuthenticationType = (typeof HdfsAuthenticationType)[keyof typeof HdfsAuthenticationType];
|
|
958
816
|
/**
|
|
959
817
|
* <p>The NameNode of the Hadoop Distributed File System (HDFS). The NameNode manages the file
|
|
960
818
|
* system's namespace. The NameNode performs operations such as opening, closing, and renaming
|
|
@@ -976,34 +834,6 @@ export interface HdfsNameNode {
|
|
|
976
834
|
*/
|
|
977
835
|
Port: number | undefined;
|
|
978
836
|
}
|
|
979
|
-
/**
|
|
980
|
-
* @public
|
|
981
|
-
* @enum
|
|
982
|
-
*/
|
|
983
|
-
export declare const HdfsDataTransferProtection: {
|
|
984
|
-
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
985
|
-
readonly DISABLED: "DISABLED";
|
|
986
|
-
readonly INTEGRITY: "INTEGRITY";
|
|
987
|
-
readonly PRIVACY: "PRIVACY";
|
|
988
|
-
};
|
|
989
|
-
/**
|
|
990
|
-
* @public
|
|
991
|
-
*/
|
|
992
|
-
export type HdfsDataTransferProtection = (typeof HdfsDataTransferProtection)[keyof typeof HdfsDataTransferProtection];
|
|
993
|
-
/**
|
|
994
|
-
* @public
|
|
995
|
-
* @enum
|
|
996
|
-
*/
|
|
997
|
-
export declare const HdfsRpcProtection: {
|
|
998
|
-
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
999
|
-
readonly DISABLED: "DISABLED";
|
|
1000
|
-
readonly INTEGRITY: "INTEGRITY";
|
|
1001
|
-
readonly PRIVACY: "PRIVACY";
|
|
1002
|
-
};
|
|
1003
|
-
/**
|
|
1004
|
-
* @public
|
|
1005
|
-
*/
|
|
1006
|
-
export type HdfsRpcProtection = (typeof HdfsRpcProtection)[keyof typeof HdfsRpcProtection];
|
|
1007
837
|
/**
|
|
1008
838
|
* <p>The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC)
|
|
1009
839
|
* and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS)
|
|
@@ -1202,18 +1032,6 @@ export interface CreateLocationNfsResponse {
|
|
|
1202
1032
|
*/
|
|
1203
1033
|
LocationArn?: string | undefined;
|
|
1204
1034
|
}
|
|
1205
|
-
/**
|
|
1206
|
-
* @public
|
|
1207
|
-
* @enum
|
|
1208
|
-
*/
|
|
1209
|
-
export declare const ObjectStorageServerProtocol: {
|
|
1210
|
-
readonly HTTP: "HTTP";
|
|
1211
|
-
readonly HTTPS: "HTTPS";
|
|
1212
|
-
};
|
|
1213
|
-
/**
|
|
1214
|
-
* @public
|
|
1215
|
-
*/
|
|
1216
|
-
export type ObjectStorageServerProtocol = (typeof ObjectStorageServerProtocol)[keyof typeof ObjectStorageServerProtocol];
|
|
1217
1035
|
/**
|
|
1218
1036
|
* <p>CreateLocationObjectStorageRequest</p>
|
|
1219
1037
|
* @public
|
|
@@ -1371,24 +1189,6 @@ export interface S3Config {
|
|
|
1371
1189
|
*/
|
|
1372
1190
|
BucketAccessRoleArn: string | undefined;
|
|
1373
1191
|
}
|
|
1374
|
-
/**
|
|
1375
|
-
* @public
|
|
1376
|
-
* @enum
|
|
1377
|
-
*/
|
|
1378
|
-
export declare const S3StorageClass: {
|
|
1379
|
-
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
1380
|
-
readonly GLACIER: "GLACIER";
|
|
1381
|
-
readonly GLACIER_INSTANT_RETRIEVAL: "GLACIER_INSTANT_RETRIEVAL";
|
|
1382
|
-
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
1383
|
-
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
1384
|
-
readonly OUTPOSTS: "OUTPOSTS";
|
|
1385
|
-
readonly STANDARD: "STANDARD";
|
|
1386
|
-
readonly STANDARD_IA: "STANDARD_IA";
|
|
1387
|
-
};
|
|
1388
|
-
/**
|
|
1389
|
-
* @public
|
|
1390
|
-
*/
|
|
1391
|
-
export type S3StorageClass = (typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
1392
1192
|
/**
|
|
1393
1193
|
* <p>CreateLocationS3Request</p>
|
|
1394
1194
|
* @public
|
|
@@ -1480,18 +1280,6 @@ export interface CreateLocationS3Response {
|
|
|
1480
1280
|
*/
|
|
1481
1281
|
LocationArn?: string | undefined;
|
|
1482
1282
|
}
|
|
1483
|
-
/**
|
|
1484
|
-
* @public
|
|
1485
|
-
* @enum
|
|
1486
|
-
*/
|
|
1487
|
-
export declare const SmbAuthenticationType: {
|
|
1488
|
-
readonly KERBEROS: "KERBEROS";
|
|
1489
|
-
readonly NTLM: "NTLM";
|
|
1490
|
-
};
|
|
1491
|
-
/**
|
|
1492
|
-
* @public
|
|
1493
|
-
*/
|
|
1494
|
-
export type SmbAuthenticationType = (typeof SmbAuthenticationType)[keyof typeof SmbAuthenticationType];
|
|
1495
1283
|
/**
|
|
1496
1284
|
* <p>CreateLocationSmbRequest</p>
|
|
1497
1285
|
* @public
|
|
@@ -1613,17 +1401,6 @@ export interface CreateLocationSmbResponse {
|
|
|
1613
1401
|
*/
|
|
1614
1402
|
LocationArn?: string | undefined;
|
|
1615
1403
|
}
|
|
1616
|
-
/**
|
|
1617
|
-
* @public
|
|
1618
|
-
* @enum
|
|
1619
|
-
*/
|
|
1620
|
-
export declare const FilterType: {
|
|
1621
|
-
readonly SIMPLE_PATTERN: "SIMPLE_PATTERN";
|
|
1622
|
-
};
|
|
1623
|
-
/**
|
|
1624
|
-
* @public
|
|
1625
|
-
*/
|
|
1626
|
-
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
|
|
1627
1404
|
/**
|
|
1628
1405
|
* <p>Specifies which files, folders, and objects to include or exclude when transferring files
|
|
1629
1406
|
* from source to destination.</p>
|
|
@@ -1645,28 +1422,6 @@ export interface FilterRule {
|
|
|
1645
1422
|
*/
|
|
1646
1423
|
Value?: string | undefined;
|
|
1647
1424
|
}
|
|
1648
|
-
/**
|
|
1649
|
-
* @public
|
|
1650
|
-
* @enum
|
|
1651
|
-
*/
|
|
1652
|
-
export declare const ManifestAction: {
|
|
1653
|
-
readonly TRANSFER: "TRANSFER";
|
|
1654
|
-
};
|
|
1655
|
-
/**
|
|
1656
|
-
* @public
|
|
1657
|
-
*/
|
|
1658
|
-
export type ManifestAction = (typeof ManifestAction)[keyof typeof ManifestAction];
|
|
1659
|
-
/**
|
|
1660
|
-
* @public
|
|
1661
|
-
* @enum
|
|
1662
|
-
*/
|
|
1663
|
-
export declare const ManifestFormat: {
|
|
1664
|
-
readonly CSV: "CSV";
|
|
1665
|
-
};
|
|
1666
|
-
/**
|
|
1667
|
-
* @public
|
|
1668
|
-
*/
|
|
1669
|
-
export type ManifestFormat = (typeof ManifestFormat)[keyof typeof ManifestFormat];
|
|
1670
1425
|
/**
|
|
1671
1426
|
* <p>Specifies the S3 bucket where you're hosting the manifest that you want DataSync to use. For more information and configuration examples, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/transferring-with-manifest.html">Specifying what DataSync transfers by using a manifest</a>.</p>
|
|
1672
1427
|
* @public
|
|
@@ -1737,169 +1492,6 @@ export interface ManifestConfig {
|
|
|
1737
1492
|
*/
|
|
1738
1493
|
Source?: SourceManifestConfig | undefined;
|
|
1739
1494
|
}
|
|
1740
|
-
/**
|
|
1741
|
-
* @public
|
|
1742
|
-
* @enum
|
|
1743
|
-
*/
|
|
1744
|
-
export declare const Gid: {
|
|
1745
|
-
readonly BOTH: "BOTH";
|
|
1746
|
-
readonly INT_VALUE: "INT_VALUE";
|
|
1747
|
-
readonly NAME: "NAME";
|
|
1748
|
-
readonly NONE: "NONE";
|
|
1749
|
-
};
|
|
1750
|
-
/**
|
|
1751
|
-
* @public
|
|
1752
|
-
*/
|
|
1753
|
-
export type Gid = (typeof Gid)[keyof typeof Gid];
|
|
1754
|
-
/**
|
|
1755
|
-
* @public
|
|
1756
|
-
* @enum
|
|
1757
|
-
*/
|
|
1758
|
-
export declare const LogLevel: {
|
|
1759
|
-
readonly BASIC: "BASIC";
|
|
1760
|
-
readonly OFF: "OFF";
|
|
1761
|
-
readonly TRANSFER: "TRANSFER";
|
|
1762
|
-
};
|
|
1763
|
-
/**
|
|
1764
|
-
* @public
|
|
1765
|
-
*/
|
|
1766
|
-
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
1767
|
-
/**
|
|
1768
|
-
* @public
|
|
1769
|
-
* @enum
|
|
1770
|
-
*/
|
|
1771
|
-
export declare const Mtime: {
|
|
1772
|
-
readonly NONE: "NONE";
|
|
1773
|
-
readonly PRESERVE: "PRESERVE";
|
|
1774
|
-
};
|
|
1775
|
-
/**
|
|
1776
|
-
* @public
|
|
1777
|
-
*/
|
|
1778
|
-
export type Mtime = (typeof Mtime)[keyof typeof Mtime];
|
|
1779
|
-
/**
|
|
1780
|
-
* @public
|
|
1781
|
-
* @enum
|
|
1782
|
-
*/
|
|
1783
|
-
export declare const ObjectTags: {
|
|
1784
|
-
readonly NONE: "NONE";
|
|
1785
|
-
readonly PRESERVE: "PRESERVE";
|
|
1786
|
-
};
|
|
1787
|
-
/**
|
|
1788
|
-
* @public
|
|
1789
|
-
*/
|
|
1790
|
-
export type ObjectTags = (typeof ObjectTags)[keyof typeof ObjectTags];
|
|
1791
|
-
/**
|
|
1792
|
-
* @public
|
|
1793
|
-
* @enum
|
|
1794
|
-
*/
|
|
1795
|
-
export declare const OverwriteMode: {
|
|
1796
|
-
readonly ALWAYS: "ALWAYS";
|
|
1797
|
-
readonly NEVER: "NEVER";
|
|
1798
|
-
};
|
|
1799
|
-
/**
|
|
1800
|
-
* @public
|
|
1801
|
-
*/
|
|
1802
|
-
export type OverwriteMode = (typeof OverwriteMode)[keyof typeof OverwriteMode];
|
|
1803
|
-
/**
|
|
1804
|
-
* @public
|
|
1805
|
-
* @enum
|
|
1806
|
-
*/
|
|
1807
|
-
export declare const PosixPermissions: {
|
|
1808
|
-
readonly NONE: "NONE";
|
|
1809
|
-
readonly PRESERVE: "PRESERVE";
|
|
1810
|
-
};
|
|
1811
|
-
/**
|
|
1812
|
-
* @public
|
|
1813
|
-
*/
|
|
1814
|
-
export type PosixPermissions = (typeof PosixPermissions)[keyof typeof PosixPermissions];
|
|
1815
|
-
/**
|
|
1816
|
-
* @public
|
|
1817
|
-
* @enum
|
|
1818
|
-
*/
|
|
1819
|
-
export declare const PreserveDeletedFiles: {
|
|
1820
|
-
readonly PRESERVE: "PRESERVE";
|
|
1821
|
-
readonly REMOVE: "REMOVE";
|
|
1822
|
-
};
|
|
1823
|
-
/**
|
|
1824
|
-
* @public
|
|
1825
|
-
*/
|
|
1826
|
-
export type PreserveDeletedFiles = (typeof PreserveDeletedFiles)[keyof typeof PreserveDeletedFiles];
|
|
1827
|
-
/**
|
|
1828
|
-
* @public
|
|
1829
|
-
* @enum
|
|
1830
|
-
*/
|
|
1831
|
-
export declare const PreserveDevices: {
|
|
1832
|
-
readonly NONE: "NONE";
|
|
1833
|
-
readonly PRESERVE: "PRESERVE";
|
|
1834
|
-
};
|
|
1835
|
-
/**
|
|
1836
|
-
* @public
|
|
1837
|
-
*/
|
|
1838
|
-
export type PreserveDevices = (typeof PreserveDevices)[keyof typeof PreserveDevices];
|
|
1839
|
-
/**
|
|
1840
|
-
* @public
|
|
1841
|
-
* @enum
|
|
1842
|
-
*/
|
|
1843
|
-
export declare const SmbSecurityDescriptorCopyFlags: {
|
|
1844
|
-
readonly NONE: "NONE";
|
|
1845
|
-
readonly OWNER_DACL: "OWNER_DACL";
|
|
1846
|
-
readonly OWNER_DACL_SACL: "OWNER_DACL_SACL";
|
|
1847
|
-
};
|
|
1848
|
-
/**
|
|
1849
|
-
* @public
|
|
1850
|
-
*/
|
|
1851
|
-
export type SmbSecurityDescriptorCopyFlags = (typeof SmbSecurityDescriptorCopyFlags)[keyof typeof SmbSecurityDescriptorCopyFlags];
|
|
1852
|
-
/**
|
|
1853
|
-
* @public
|
|
1854
|
-
* @enum
|
|
1855
|
-
*/
|
|
1856
|
-
export declare const TaskQueueing: {
|
|
1857
|
-
readonly DISABLED: "DISABLED";
|
|
1858
|
-
readonly ENABLED: "ENABLED";
|
|
1859
|
-
};
|
|
1860
|
-
/**
|
|
1861
|
-
* @public
|
|
1862
|
-
*/
|
|
1863
|
-
export type TaskQueueing = (typeof TaskQueueing)[keyof typeof TaskQueueing];
|
|
1864
|
-
/**
|
|
1865
|
-
* @public
|
|
1866
|
-
* @enum
|
|
1867
|
-
*/
|
|
1868
|
-
export declare const TransferMode: {
|
|
1869
|
-
readonly ALL: "ALL";
|
|
1870
|
-
readonly CHANGED: "CHANGED";
|
|
1871
|
-
};
|
|
1872
|
-
/**
|
|
1873
|
-
* @public
|
|
1874
|
-
*/
|
|
1875
|
-
export type TransferMode = (typeof TransferMode)[keyof typeof TransferMode];
|
|
1876
|
-
/**
|
|
1877
|
-
* @public
|
|
1878
|
-
* @enum
|
|
1879
|
-
*/
|
|
1880
|
-
export declare const Uid: {
|
|
1881
|
-
readonly BOTH: "BOTH";
|
|
1882
|
-
readonly INT_VALUE: "INT_VALUE";
|
|
1883
|
-
readonly NAME: "NAME";
|
|
1884
|
-
readonly NONE: "NONE";
|
|
1885
|
-
};
|
|
1886
|
-
/**
|
|
1887
|
-
* @public
|
|
1888
|
-
*/
|
|
1889
|
-
export type Uid = (typeof Uid)[keyof typeof Uid];
|
|
1890
|
-
/**
|
|
1891
|
-
* @public
|
|
1892
|
-
* @enum
|
|
1893
|
-
*/
|
|
1894
|
-
export declare const VerifyMode: {
|
|
1895
|
-
readonly NONE: "NONE";
|
|
1896
|
-
readonly ONLY_FILES_TRANSFERRED: "ONLY_FILES_TRANSFERRED";
|
|
1897
|
-
readonly POINT_IN_TIME_CONSISTENT: "POINT_IN_TIME_CONSISTENT";
|
|
1898
|
-
};
|
|
1899
|
-
/**
|
|
1900
|
-
* @public
|
|
1901
|
-
*/
|
|
1902
|
-
export type VerifyMode = (typeof VerifyMode)[keyof typeof VerifyMode];
|
|
1903
1495
|
/**
|
|
1904
1496
|
* <p>Indicates how your transfer task is configured. These options include how DataSync handles files, objects, and their associated metadata during your transfer. You
|
|
1905
1497
|
* also can specify how to verify data integrity, set bandwidth limits for your task, among other
|
|
@@ -2257,18 +1849,6 @@ export interface Options {
|
|
|
2257
1849
|
*/
|
|
2258
1850
|
ObjectTags?: ObjectTags | undefined;
|
|
2259
1851
|
}
|
|
2260
|
-
/**
|
|
2261
|
-
* @public
|
|
2262
|
-
* @enum
|
|
2263
|
-
*/
|
|
2264
|
-
export declare const ScheduleStatus: {
|
|
2265
|
-
readonly DISABLED: "DISABLED";
|
|
2266
|
-
readonly ENABLED: "ENABLED";
|
|
2267
|
-
};
|
|
2268
|
-
/**
|
|
2269
|
-
* @public
|
|
2270
|
-
*/
|
|
2271
|
-
export type ScheduleStatus = (typeof ScheduleStatus)[keyof typeof ScheduleStatus];
|
|
2272
1852
|
/**
|
|
2273
1853
|
* <p>Configures your DataSync task to run on a <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-scheduling.html">schedule</a>
|
|
2274
1854
|
* (at a minimum interval of 1 hour).</p>
|
|
@@ -2305,18 +1885,6 @@ export interface TaskSchedule {
|
|
|
2305
1885
|
*/
|
|
2306
1886
|
Status?: ScheduleStatus | undefined;
|
|
2307
1887
|
}
|
|
2308
|
-
/**
|
|
2309
|
-
* @public
|
|
2310
|
-
* @enum
|
|
2311
|
-
*/
|
|
2312
|
-
export declare const TaskMode: {
|
|
2313
|
-
readonly BASIC: "BASIC";
|
|
2314
|
-
readonly ENHANCED: "ENHANCED";
|
|
2315
|
-
};
|
|
2316
|
-
/**
|
|
2317
|
-
* @public
|
|
2318
|
-
*/
|
|
2319
|
-
export type TaskMode = (typeof TaskMode)[keyof typeof TaskMode];
|
|
2320
1888
|
/**
|
|
2321
1889
|
* <p>Specifies the Amazon S3 bucket where DataSync uploads your <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">task
|
|
2322
1890
|
* report</a>.</p>
|
|
@@ -2354,42 +1922,6 @@ export interface ReportDestination {
|
|
|
2354
1922
|
*/
|
|
2355
1923
|
S3?: ReportDestinationS3 | undefined;
|
|
2356
1924
|
}
|
|
2357
|
-
/**
|
|
2358
|
-
* @public
|
|
2359
|
-
* @enum
|
|
2360
|
-
*/
|
|
2361
|
-
export declare const ObjectVersionIds: {
|
|
2362
|
-
readonly INCLUDE: "INCLUDE";
|
|
2363
|
-
readonly NONE: "NONE";
|
|
2364
|
-
};
|
|
2365
|
-
/**
|
|
2366
|
-
* @public
|
|
2367
|
-
*/
|
|
2368
|
-
export type ObjectVersionIds = (typeof ObjectVersionIds)[keyof typeof ObjectVersionIds];
|
|
2369
|
-
/**
|
|
2370
|
-
* @public
|
|
2371
|
-
* @enum
|
|
2372
|
-
*/
|
|
2373
|
-
export declare const ReportOutputType: {
|
|
2374
|
-
readonly STANDARD: "STANDARD";
|
|
2375
|
-
readonly SUMMARY_ONLY: "SUMMARY_ONLY";
|
|
2376
|
-
};
|
|
2377
|
-
/**
|
|
2378
|
-
* @public
|
|
2379
|
-
*/
|
|
2380
|
-
export type ReportOutputType = (typeof ReportOutputType)[keyof typeof ReportOutputType];
|
|
2381
|
-
/**
|
|
2382
|
-
* @public
|
|
2383
|
-
* @enum
|
|
2384
|
-
*/
|
|
2385
|
-
export declare const ReportLevel: {
|
|
2386
|
-
readonly ERRORS_ONLY: "ERRORS_ONLY";
|
|
2387
|
-
readonly SUCCESSES_AND_ERRORS: "SUCCESSES_AND_ERRORS";
|
|
2388
|
-
};
|
|
2389
|
-
/**
|
|
2390
|
-
* @public
|
|
2391
|
-
*/
|
|
2392
|
-
export type ReportLevel = (typeof ReportLevel)[keyof typeof ReportLevel];
|
|
2393
1925
|
/**
|
|
2394
1926
|
* <p>Specifies the level of detail for a particular aspect of your DataSync
|
|
2395
1927
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">task
|
|
@@ -2686,20 +2218,6 @@ export interface DescribeAgentRequest {
|
|
|
2686
2218
|
*/
|
|
2687
2219
|
AgentArn: string | undefined;
|
|
2688
2220
|
}
|
|
2689
|
-
/**
|
|
2690
|
-
* @public
|
|
2691
|
-
* @enum
|
|
2692
|
-
*/
|
|
2693
|
-
export declare const EndpointType: {
|
|
2694
|
-
readonly FIPS: "FIPS";
|
|
2695
|
-
readonly FIPS_PRIVATE_LINK: "FIPS_PRIVATE_LINK";
|
|
2696
|
-
readonly PRIVATE_LINK: "PRIVATE_LINK";
|
|
2697
|
-
readonly PUBLIC: "PUBLIC";
|
|
2698
|
-
};
|
|
2699
|
-
/**
|
|
2700
|
-
* @public
|
|
2701
|
-
*/
|
|
2702
|
-
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
2703
2221
|
/**
|
|
2704
2222
|
* <p>Specifies how your DataSync agent connects to Amazon Web Services using a
|
|
2705
2223
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/choose-service-endpoint.html#choose-service-endpoint-vpc">virtual private cloud (VPC) service endpoint</a>. An agent that uses a VPC endpoint
|
|
@@ -3478,18 +2996,6 @@ export interface DescribeTaskRequest {
|
|
|
3478
2996
|
*/
|
|
3479
2997
|
TaskArn: string | undefined;
|
|
3480
2998
|
}
|
|
3481
|
-
/**
|
|
3482
|
-
* @public
|
|
3483
|
-
* @enum
|
|
3484
|
-
*/
|
|
3485
|
-
export declare const ScheduleDisabledBy: {
|
|
3486
|
-
readonly SERVICE: "SERVICE";
|
|
3487
|
-
readonly USER: "USER";
|
|
3488
|
-
};
|
|
3489
|
-
/**
|
|
3490
|
-
* @public
|
|
3491
|
-
*/
|
|
3492
|
-
export type ScheduleDisabledBy = (typeof ScheduleDisabledBy)[keyof typeof ScheduleDisabledBy];
|
|
3493
2999
|
/**
|
|
3494
3000
|
* <p>Provides information about your DataSync
|
|
3495
3001
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-scheduling.html">task
|
|
@@ -3530,21 +3036,6 @@ export interface TaskScheduleDetails {
|
|
|
3530
3036
|
*/
|
|
3531
3037
|
DisabledBy?: ScheduleDisabledBy | undefined;
|
|
3532
3038
|
}
|
|
3533
|
-
/**
|
|
3534
|
-
* @public
|
|
3535
|
-
* @enum
|
|
3536
|
-
*/
|
|
3537
|
-
export declare const TaskStatus: {
|
|
3538
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
3539
|
-
readonly CREATING: "CREATING";
|
|
3540
|
-
readonly QUEUED: "QUEUED";
|
|
3541
|
-
readonly RUNNING: "RUNNING";
|
|
3542
|
-
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
3543
|
-
};
|
|
3544
|
-
/**
|
|
3545
|
-
* @public
|
|
3546
|
-
*/
|
|
3547
|
-
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
3548
3039
|
/**
|
|
3549
3040
|
* <p>DescribeTaskResponse</p>
|
|
3550
3041
|
* @public
|
|
@@ -3750,19 +3241,6 @@ export interface TaskExecutionFilesListedDetail {
|
|
|
3750
3241
|
*/
|
|
3751
3242
|
AtDestinationForDelete?: number | undefined;
|
|
3752
3243
|
}
|
|
3753
|
-
/**
|
|
3754
|
-
* @public
|
|
3755
|
-
* @enum
|
|
3756
|
-
*/
|
|
3757
|
-
export declare const PhaseStatus: {
|
|
3758
|
-
readonly ERROR: "ERROR";
|
|
3759
|
-
readonly PENDING: "PENDING";
|
|
3760
|
-
readonly SUCCESS: "SUCCESS";
|
|
3761
|
-
};
|
|
3762
|
-
/**
|
|
3763
|
-
* @public
|
|
3764
|
-
*/
|
|
3765
|
-
export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
|
|
3766
3244
|
/**
|
|
3767
3245
|
* <p>Indicates whether DataSync created a complete <a href="https://docs.aws.amazon.com/datasync/latest/userguide/task-reports.html">task report</a> for your
|
|
3768
3246
|
* transfer.</p>
|
|
@@ -3862,24 +3340,6 @@ export interface TaskExecutionResultDetail {
|
|
|
3862
3340
|
*/
|
|
3863
3341
|
ErrorDetail?: string | undefined;
|
|
3864
3342
|
}
|
|
3865
|
-
/**
|
|
3866
|
-
* @public
|
|
3867
|
-
* @enum
|
|
3868
|
-
*/
|
|
3869
|
-
export declare const TaskExecutionStatus: {
|
|
3870
|
-
readonly CANCELLING: "CANCELLING";
|
|
3871
|
-
readonly ERROR: "ERROR";
|
|
3872
|
-
readonly LAUNCHING: "LAUNCHING";
|
|
3873
|
-
readonly PREPARING: "PREPARING";
|
|
3874
|
-
readonly QUEUED: "QUEUED";
|
|
3875
|
-
readonly SUCCESS: "SUCCESS";
|
|
3876
|
-
readonly TRANSFERRING: "TRANSFERRING";
|
|
3877
|
-
readonly VERIFYING: "VERIFYING";
|
|
3878
|
-
};
|
|
3879
|
-
/**
|
|
3880
|
-
* @public
|
|
3881
|
-
*/
|
|
3882
|
-
export type TaskExecutionStatus = (typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
|
|
3883
3343
|
/**
|
|
3884
3344
|
* <p>DescribeTaskExecutionResponse</p>
|
|
3885
3345
|
* @public
|
|
@@ -4149,39 +3609,6 @@ export interface ListAgentsResponse {
|
|
|
4149
3609
|
*/
|
|
4150
3610
|
NextToken?: string | undefined;
|
|
4151
3611
|
}
|
|
4152
|
-
/**
|
|
4153
|
-
* @public
|
|
4154
|
-
* @enum
|
|
4155
|
-
*/
|
|
4156
|
-
export declare const LocationFilterName: {
|
|
4157
|
-
readonly CreationTime: "CreationTime";
|
|
4158
|
-
readonly LocationType: "LocationType";
|
|
4159
|
-
readonly LocationUri: "LocationUri";
|
|
4160
|
-
};
|
|
4161
|
-
/**
|
|
4162
|
-
* @public
|
|
4163
|
-
*/
|
|
4164
|
-
export type LocationFilterName = (typeof LocationFilterName)[keyof typeof LocationFilterName];
|
|
4165
|
-
/**
|
|
4166
|
-
* @public
|
|
4167
|
-
* @enum
|
|
4168
|
-
*/
|
|
4169
|
-
export declare const Operator: {
|
|
4170
|
-
readonly BEGINS_WITH: "BeginsWith";
|
|
4171
|
-
readonly CONTAINS: "Contains";
|
|
4172
|
-
readonly EQ: "Equals";
|
|
4173
|
-
readonly GE: "GreaterThanOrEqual";
|
|
4174
|
-
readonly GT: "GreaterThan";
|
|
4175
|
-
readonly IN: "In";
|
|
4176
|
-
readonly LE: "LessThanOrEqual";
|
|
4177
|
-
readonly LT: "LessThan";
|
|
4178
|
-
readonly NE: "NotEquals";
|
|
4179
|
-
readonly NOT_CONTAINS: "NotContains";
|
|
4180
|
-
};
|
|
4181
|
-
/**
|
|
4182
|
-
* @public
|
|
4183
|
-
*/
|
|
4184
|
-
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
4185
3612
|
/**
|
|
4186
3613
|
* <p>Narrow down the list of resources returned by <code>ListLocations</code>. For example, to
|
|
4187
3614
|
* see all your Amazon S3 locations, create a filter using <code>"Name":
|
|
@@ -4391,18 +3818,6 @@ export interface ListTaskExecutionsResponse {
|
|
|
4391
3818
|
*/
|
|
4392
3819
|
NextToken?: string | undefined;
|
|
4393
3820
|
}
|
|
4394
|
-
/**
|
|
4395
|
-
* @public
|
|
4396
|
-
* @enum
|
|
4397
|
-
*/
|
|
4398
|
-
export declare const TaskFilterName: {
|
|
4399
|
-
readonly CreationTime: "CreationTime";
|
|
4400
|
-
readonly LocationId: "LocationId";
|
|
4401
|
-
};
|
|
4402
|
-
/**
|
|
4403
|
-
* @public
|
|
4404
|
-
*/
|
|
4405
|
-
export type TaskFilterName = (typeof TaskFilterName)[keyof typeof TaskFilterName];
|
|
4406
3821
|
/**
|
|
4407
3822
|
* <p>You can use API filters to narrow down the list of resources returned by
|
|
4408
3823
|
* <code>ListTasks</code>. For example, to retrieve all tasks on a source location, you can use
|