@aws-sdk/client-datasync 3.428.0 → 3.429.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.
|
@@ -86,7 +86,7 @@ export interface AddStorageSystemRequest {
|
|
|
86
86
|
* later.</p>
|
|
87
87
|
* </note>
|
|
88
88
|
*/
|
|
89
|
-
SystemType: DiscoverySystemType |
|
|
89
|
+
SystemType: DiscoverySystemType | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* @public
|
|
92
92
|
* <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to
|
|
@@ -197,7 +197,7 @@ export interface AgentListEntry {
|
|
|
197
197
|
* <p>The status of an agent. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/understand-agent-statuses.html">DataSync agent
|
|
198
198
|
* statuses</a>.</p>
|
|
199
199
|
*/
|
|
200
|
-
Status?: AgentStatus
|
|
200
|
+
Status?: AgentStatus;
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
203
|
* @public
|
|
@@ -381,7 +381,7 @@ export interface CreateLocationAzureBlobRequest {
|
|
|
381
381
|
* @public
|
|
382
382
|
* <p>Specifies the authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
|
|
383
383
|
*/
|
|
384
|
-
AuthenticationType: AzureBlobAuthenticationType |
|
|
384
|
+
AuthenticationType: AzureBlobAuthenticationType | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* @public
|
|
387
387
|
* <p>Specifies the SAS configuration that allows DataSync to access your Azure Blob Storage.</p>
|
|
@@ -393,12 +393,12 @@ export interface CreateLocationAzureBlobRequest {
|
|
|
393
393
|
* them into Azure Blob Storage. Currently, DataSync only supports moving data into
|
|
394
394
|
* Azure Blob Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
|
|
395
395
|
*/
|
|
396
|
-
BlobType?: AzureBlobType
|
|
396
|
+
BlobType?: AzureBlobType;
|
|
397
397
|
/**
|
|
398
398
|
* @public
|
|
399
399
|
* <p>Specifies the access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
|
|
400
400
|
*/
|
|
401
|
-
AccessTier?: AzureAccessTier
|
|
401
|
+
AccessTier?: AzureAccessTier;
|
|
402
402
|
/**
|
|
403
403
|
* @public
|
|
404
404
|
* <p>Specifies path segments if you want to limit your transfer to a virtual directory in your
|
|
@@ -523,7 +523,7 @@ export interface CreateLocationEfsRequest {
|
|
|
523
523
|
* role using <code>FileSystemAccessRoleArn</code>, you must set this parameter to
|
|
524
524
|
* <code>TLS1_2</code>.</p>
|
|
525
525
|
*/
|
|
526
|
-
InTransitEncryption?: EfsInTransitEncryption
|
|
526
|
+
InTransitEncryption?: EfsInTransitEncryption;
|
|
527
527
|
}
|
|
528
528
|
/**
|
|
529
529
|
* @public
|
|
@@ -628,7 +628,7 @@ export interface NfsMountOptions {
|
|
|
628
628
|
* <p>DataSync currently only supports NFS version 3 with Amazon FSx for NetApp ONTAP locations.</p>
|
|
629
629
|
* </note>
|
|
630
630
|
*/
|
|
631
|
-
Version?: NfsVersion
|
|
631
|
+
Version?: NfsVersion;
|
|
632
632
|
}
|
|
633
633
|
/**
|
|
634
634
|
* @public
|
|
@@ -702,7 +702,7 @@ export interface SmbMountOptions {
|
|
|
702
702
|
* </li>
|
|
703
703
|
* </ul>
|
|
704
704
|
*/
|
|
705
|
-
Version?: SmbVersion
|
|
705
|
+
Version?: SmbVersion;
|
|
706
706
|
}
|
|
707
707
|
/**
|
|
708
708
|
* @public
|
|
@@ -1035,14 +1035,14 @@ export interface QopConfiguration {
|
|
|
1035
1035
|
* your <code>hadoop.rpc.protection</code> setting in your <code>core-site.xml</code> file on
|
|
1036
1036
|
* your Hadoop cluster.</p>
|
|
1037
1037
|
*/
|
|
1038
|
-
RpcProtection?: HdfsRpcProtection
|
|
1038
|
+
RpcProtection?: HdfsRpcProtection;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* @public
|
|
1041
1041
|
* <p>The data transfer protection setting configured on the HDFS cluster. This setting
|
|
1042
1042
|
* corresponds to your <code>dfs.data.transfer.protection</code> setting in the
|
|
1043
1043
|
* <code>hdfs-site.xml</code> file on your Hadoop cluster.</p>
|
|
1044
1044
|
*/
|
|
1045
|
-
DataTransferProtection?: HdfsDataTransferProtection
|
|
1045
|
+
DataTransferProtection?: HdfsDataTransferProtection;
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
1048
1048
|
* @public
|
|
@@ -1093,7 +1093,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
1093
1093
|
* @public
|
|
1094
1094
|
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
1095
1095
|
*/
|
|
1096
|
-
AuthenticationType: HdfsAuthenticationType |
|
|
1096
|
+
AuthenticationType: HdfsAuthenticationType | undefined;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* @public
|
|
1099
1099
|
* <p>The user name used to identify the client on the host operating system. </p>
|
|
@@ -1256,7 +1256,7 @@ export interface CreateLocationObjectStorageRequest {
|
|
|
1256
1256
|
* @public
|
|
1257
1257
|
* <p>Specifies the protocol that your object storage server uses to communicate.</p>
|
|
1258
1258
|
*/
|
|
1259
|
-
ServerProtocol?: ObjectStorageServerProtocol
|
|
1259
|
+
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1260
1260
|
/**
|
|
1261
1261
|
* @public
|
|
1262
1262
|
* <p>Specifies the object prefix for your object storage server. If this is a source location,
|
|
@@ -1387,7 +1387,7 @@ export interface CreateLocationS3Request {
|
|
|
1387
1387
|
* can affect your S3 storage cost. For detailed information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Considerations
|
|
1388
1388
|
* when working with S3 storage classes in DataSync</a>.</p>
|
|
1389
1389
|
*/
|
|
1390
|
-
S3StorageClass?: S3StorageClass
|
|
1390
|
+
S3StorageClass?: S3StorageClass;
|
|
1391
1391
|
/**
|
|
1392
1392
|
* @public
|
|
1393
1393
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role used to access
|
|
@@ -1520,7 +1520,7 @@ export interface FilterRule {
|
|
|
1520
1520
|
* <p>The type of filter rule to apply. DataSync only supports the SIMPLE_PATTERN
|
|
1521
1521
|
* rule type.</p>
|
|
1522
1522
|
*/
|
|
1523
|
-
FilterType?: FilterType
|
|
1523
|
+
FilterType?: FilterType;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* @public
|
|
1526
1526
|
* <p>A single filter string that consists of the patterns to include or exclude. The patterns
|
|
@@ -1730,7 +1730,7 @@ export interface Options {
|
|
|
1730
1730
|
* the transfer. All data transmissions are still integrity-checked with checksum verification
|
|
1731
1731
|
* during the transfer.</p>
|
|
1732
1732
|
*/
|
|
1733
|
-
VerifyMode?: VerifyMode
|
|
1733
|
+
VerifyMode?: VerifyMode;
|
|
1734
1734
|
/**
|
|
1735
1735
|
* @public
|
|
1736
1736
|
* <p>Specifies whether data at the destination location should be overwritten or preserved. If
|
|
@@ -1742,7 +1742,7 @@ export interface Options {
|
|
|
1742
1742
|
* storage cost. For detailed information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Considerations
|
|
1743
1743
|
* when working with Amazon S3 storage classes in DataSync</a>.</p>
|
|
1744
1744
|
*/
|
|
1745
|
-
OverwriteMode?: OverwriteMode
|
|
1745
|
+
OverwriteMode?: OverwriteMode;
|
|
1746
1746
|
/**
|
|
1747
1747
|
* @public
|
|
1748
1748
|
* <p>Specifies whether to preserve metadata indicating the last time a file was read or
|
|
@@ -1766,7 +1766,7 @@ export interface Options {
|
|
|
1766
1766
|
* <code>NONE</code>. </p>
|
|
1767
1767
|
* </note>
|
|
1768
1768
|
*/
|
|
1769
|
-
Atime?: Atime
|
|
1769
|
+
Atime?: Atime;
|
|
1770
1770
|
/**
|
|
1771
1771
|
* @public
|
|
1772
1772
|
* <p>Specifies whether to preserve metadata indicating the last time that a file was written
|
|
@@ -1785,7 +1785,7 @@ export interface Options {
|
|
|
1785
1785
|
* to <code>NONE</code>. </p>
|
|
1786
1786
|
* </note>
|
|
1787
1787
|
*/
|
|
1788
|
-
Mtime?: Mtime
|
|
1788
|
+
Mtime?: Mtime;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* @public
|
|
1791
1791
|
* <p>Specifies the POSIX user ID (UID) of the file's owner.</p>
|
|
@@ -1797,7 +1797,7 @@ export interface Options {
|
|
|
1797
1797
|
* <p>
|
|
1798
1798
|
* <code>NONE</code>: Ignore UID and GID. </p>
|
|
1799
1799
|
*/
|
|
1800
|
-
Uid?: Uid
|
|
1800
|
+
Uid?: Uid;
|
|
1801
1801
|
/**
|
|
1802
1802
|
* @public
|
|
1803
1803
|
* <p>Specifies the POSIX group ID (GID) of the file's owners.</p>
|
|
@@ -1809,7 +1809,7 @@ export interface Options {
|
|
|
1809
1809
|
* <p>
|
|
1810
1810
|
* <code>NONE</code>: Ignore UID and GID.</p>
|
|
1811
1811
|
*/
|
|
1812
|
-
Gid?: Gid
|
|
1812
|
+
Gid?: Gid;
|
|
1813
1813
|
/**
|
|
1814
1814
|
* @public
|
|
1815
1815
|
* <p>Specifies whether files in the destination location that don't exist in the source
|
|
@@ -1829,7 +1829,7 @@ export interface Options {
|
|
|
1829
1829
|
* <code>TransferMode</code> to <code>ALL</code>. When you transfer all data, DataSync doesn't scan your destination location and doesn't know what to delete.</p>
|
|
1830
1830
|
* </note>
|
|
1831
1831
|
*/
|
|
1832
|
-
PreserveDeletedFiles?: PreserveDeletedFiles
|
|
1832
|
+
PreserveDeletedFiles?: PreserveDeletedFiles;
|
|
1833
1833
|
/**
|
|
1834
1834
|
* @public
|
|
1835
1835
|
* <p>Specifies whether DataSync should preserve the metadata of block and
|
|
@@ -1848,7 +1848,7 @@ export interface Options {
|
|
|
1848
1848
|
* <code>PRESERVE</code>: Preserve character and block device metadata. This option
|
|
1849
1849
|
* currently isn't supported for Amazon EFS. </p>
|
|
1850
1850
|
*/
|
|
1851
|
-
PreserveDevices?: PreserveDevices
|
|
1851
|
+
PreserveDevices?: PreserveDevices;
|
|
1852
1852
|
/**
|
|
1853
1853
|
* @public
|
|
1854
1854
|
* <p>Specifies which users or groups can access a file for a specific purpose such as reading,
|
|
@@ -1864,7 +1864,7 @@ export interface Options {
|
|
|
1864
1864
|
* <p>DataSync can preserve extant permissions of a source location.</p>
|
|
1865
1865
|
* </note>
|
|
1866
1866
|
*/
|
|
1867
|
-
PosixPermissions?: PosixPermissions
|
|
1867
|
+
PosixPermissions?: PosixPermissions;
|
|
1868
1868
|
/**
|
|
1869
1869
|
* @public
|
|
1870
1870
|
* <p>Limits the bandwidth used by a DataSync task. For example, if you want
|
|
@@ -1878,7 +1878,7 @@ export interface Options {
|
|
|
1878
1878
|
* when <a href="https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#running-multiple-tasks">running multiple
|
|
1879
1879
|
* tasks</a>. This is <code>ENABLED</code> by default.</p>
|
|
1880
1880
|
*/
|
|
1881
|
-
TaskQueueing?: TaskQueueing
|
|
1881
|
+
TaskQueueing?: TaskQueueing;
|
|
1882
1882
|
/**
|
|
1883
1883
|
* @public
|
|
1884
1884
|
* <p>Specifies the type of logs that DataSync publishes to a Amazon CloudWatch Logs
|
|
@@ -1888,7 +1888,7 @@ export interface Options {
|
|
|
1888
1888
|
* <code>TRANSFER</code> publishes logs for every file or object that is transferred and
|
|
1889
1889
|
* integrity checked.</p>
|
|
1890
1890
|
*/
|
|
1891
|
-
LogLevel?: LogLevel
|
|
1891
|
+
LogLevel?: LogLevel;
|
|
1892
1892
|
/**
|
|
1893
1893
|
* @public
|
|
1894
1894
|
* <p>Determines whether DataSync transfers only the data and metadata that differ
|
|
@@ -1901,7 +1901,7 @@ export interface Options {
|
|
|
1901
1901
|
* <code>ALL</code>: DataSync copies all source location content to the destination
|
|
1902
1902
|
* (without comparing what's in the destination).</p>
|
|
1903
1903
|
*/
|
|
1904
|
-
TransferMode?: TransferMode
|
|
1904
|
+
TransferMode?: TransferMode;
|
|
1905
1905
|
/**
|
|
1906
1906
|
* @public
|
|
1907
1907
|
* <p>Specifies which components of the SMB security descriptor are copied from source to
|
|
@@ -1948,7 +1948,7 @@ export interface Options {
|
|
|
1948
1948
|
* objects are owned by the user that was provided for accessing the destination location. DACLs
|
|
1949
1949
|
* and SACLs are set based on the destination server’s configuration. </p>
|
|
1950
1950
|
*/
|
|
1951
|
-
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags
|
|
1951
|
+
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* @public
|
|
1954
1954
|
* <p>Specifies whether object tags are preserved when transferring between object storage
|
|
@@ -1957,7 +1957,7 @@ export interface Options {
|
|
|
1957
1957
|
* <p>Default Value: <code>PRESERVE</code>
|
|
1958
1958
|
* </p>
|
|
1959
1959
|
*/
|
|
1960
|
-
ObjectTags?: ObjectTags
|
|
1960
|
+
ObjectTags?: ObjectTags;
|
|
1961
1961
|
}
|
|
1962
1962
|
/**
|
|
1963
1963
|
* @public
|
|
@@ -2053,7 +2053,7 @@ export interface ReportOverride {
|
|
|
2053
2053
|
* <p>Specifies whether your task report includes errors only or successes and errors.</p>
|
|
2054
2054
|
* <p>For example, your report might mostly include only what didn't go well in your transfer (<code>ERRORS_ONLY</code>). At the same time, you want to verify that your <a href="https://docs.aws.amazon.com/datasync/latest/userguide/filtering.html">task filter</a> is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn't to transfer (<code>SUCCESSES_AND_ERRORS</code>).</p>
|
|
2055
2055
|
*/
|
|
2056
|
-
ReportLevel?: ReportLevel
|
|
2056
|
+
ReportLevel?: ReportLevel;
|
|
2057
2057
|
}
|
|
2058
2058
|
/**
|
|
2059
2059
|
* @public
|
|
@@ -2112,7 +2112,7 @@ export interface TaskReportConfig {
|
|
|
2112
2112
|
* </li>
|
|
2113
2113
|
* </ul>
|
|
2114
2114
|
*/
|
|
2115
|
-
OutputType?: ReportOutputType
|
|
2115
|
+
OutputType?: ReportOutputType;
|
|
2116
2116
|
/**
|
|
2117
2117
|
* @public
|
|
2118
2118
|
* <p>Specifies whether you want your task report to include only what went wrong with your transfer or a list of what succeeded and didn't.</p>
|
|
@@ -2129,12 +2129,12 @@ export interface TaskReportConfig {
|
|
|
2129
2129
|
* </li>
|
|
2130
2130
|
* </ul>
|
|
2131
2131
|
*/
|
|
2132
|
-
ReportLevel?: ReportLevel
|
|
2132
|
+
ReportLevel?: ReportLevel;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* @public
|
|
2135
2135
|
* <p>Specifies whether your task report includes the new version of each object transferred into an S3 bucket. This only applies if you <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/manage-versioning-examples.html">enable versioning on your bucket</a>. Keep in mind that setting this to <code>INCLUDE</code> can increase the duration of your task execution.</p>
|
|
2136
2136
|
*/
|
|
2137
|
-
ObjectVersionIds?: ObjectVersionIds
|
|
2137
|
+
ObjectVersionIds?: ObjectVersionIds;
|
|
2138
2138
|
/**
|
|
2139
2139
|
* @public
|
|
2140
2140
|
* <p>Customizes the reporting level for aspects of your task report. For example, your report
|
|
@@ -2353,7 +2353,7 @@ export interface DescribeAgentResponse {
|
|
|
2353
2353
|
* the issue that caused the unhealthy state is resolved, the agent returns to ONLINE
|
|
2354
2354
|
* status.</p>
|
|
2355
2355
|
*/
|
|
2356
|
-
Status?: AgentStatus
|
|
2356
|
+
Status?: AgentStatus;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* @public
|
|
2359
2359
|
* <p>The time that the agent last connected to DataSync.</p>
|
|
@@ -2369,7 +2369,7 @@ export interface DescribeAgentResponse {
|
|
|
2369
2369
|
* <p>The type of endpoint that your agent is connected to. If the endpoint is a VPC endpoint,
|
|
2370
2370
|
* the agent is not accessible over the public internet. </p>
|
|
2371
2371
|
*/
|
|
2372
|
-
EndpointType?: EndpointType
|
|
2372
|
+
EndpointType?: EndpointType;
|
|
2373
2373
|
/**
|
|
2374
2374
|
* @public
|
|
2375
2375
|
* <p>The subnet and the security group that DataSync used to access a VPC endpoint.</p>
|
|
@@ -2427,7 +2427,7 @@ export interface DescribeDiscoveryJobResponse {
|
|
|
2427
2427
|
* @public
|
|
2428
2428
|
* <p>Indicates the status of a discovery job. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table">Discovery job statuses</a>.</p>
|
|
2429
2429
|
*/
|
|
2430
|
-
Status?: DiscoveryJobStatus
|
|
2430
|
+
Status?: DiscoveryJobStatus;
|
|
2431
2431
|
/**
|
|
2432
2432
|
* @public
|
|
2433
2433
|
* <p>The time when the discovery job started.</p>
|
|
@@ -2467,19 +2467,19 @@ export interface DescribeLocationAzureBlobResponse {
|
|
|
2467
2467
|
* @public
|
|
2468
2468
|
* <p>The authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
|
|
2469
2469
|
*/
|
|
2470
|
-
AuthenticationType?: AzureBlobAuthenticationType
|
|
2470
|
+
AuthenticationType?: AzureBlobAuthenticationType;
|
|
2471
2471
|
/**
|
|
2472
2472
|
* @public
|
|
2473
2473
|
* <p>The type of blob that you want your objects or files to be when transferring them into
|
|
2474
2474
|
* Azure Blob Storage. Currently, DataSync only supports moving data into Azure Blob
|
|
2475
2475
|
* Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
|
|
2476
2476
|
*/
|
|
2477
|
-
BlobType?: AzureBlobType
|
|
2477
|
+
BlobType?: AzureBlobType;
|
|
2478
2478
|
/**
|
|
2479
2479
|
* @public
|
|
2480
2480
|
* <p>The access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
|
|
2481
2481
|
*/
|
|
2482
|
-
AccessTier?: AzureAccessTier
|
|
2482
|
+
AccessTier?: AzureAccessTier;
|
|
2483
2483
|
/**
|
|
2484
2484
|
* @public
|
|
2485
2485
|
* <p>The ARNs of the DataSync agents that can connect with your Azure Blob Storage container.</p>
|
|
@@ -2545,7 +2545,7 @@ export interface DescribeLocationEfsResponse {
|
|
|
2545
2545
|
* <p>Describes whether DataSync uses Transport Layer Security (TLS) encryption when
|
|
2546
2546
|
* copying data to or from the Amazon EFS file system.</p>
|
|
2547
2547
|
*/
|
|
2548
|
-
InTransitEncryption?: EfsInTransitEncryption
|
|
2548
|
+
InTransitEncryption?: EfsInTransitEncryption;
|
|
2549
2549
|
}
|
|
2550
2550
|
/**
|
|
2551
2551
|
* @public
|
|
@@ -2788,7 +2788,7 @@ export interface DescribeLocationHdfsResponse {
|
|
|
2788
2788
|
* @public
|
|
2789
2789
|
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
2790
2790
|
*/
|
|
2791
|
-
AuthenticationType?: HdfsAuthenticationType
|
|
2791
|
+
AuthenticationType?: HdfsAuthenticationType;
|
|
2792
2792
|
/**
|
|
2793
2793
|
* @public
|
|
2794
2794
|
* <p>The user name used to identify the client on the host operating system. This parameter is
|
|
@@ -2900,7 +2900,7 @@ export interface DescribeLocationObjectStorageResponse {
|
|
|
2900
2900
|
* @public
|
|
2901
2901
|
* <p>The protocol that your object storage system uses to communicate.</p>
|
|
2902
2902
|
*/
|
|
2903
|
-
ServerProtocol?: ObjectStorageServerProtocol
|
|
2903
|
+
ServerProtocol?: ObjectStorageServerProtocol;
|
|
2904
2904
|
/**
|
|
2905
2905
|
* @public
|
|
2906
2906
|
* <p>The ARNs of the DataSync agents that can securely connect with your
|
|
@@ -2953,7 +2953,7 @@ export interface DescribeLocationS3Response {
|
|
|
2953
2953
|
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#using-storage-classes">Considerations
|
|
2954
2954
|
* when working with S3 storage classes in DataSync</a>.</p>
|
|
2955
2955
|
*/
|
|
2956
|
-
S3StorageClass?: S3StorageClass
|
|
2956
|
+
S3StorageClass?: S3StorageClass;
|
|
2957
2957
|
/**
|
|
2958
2958
|
* @public
|
|
2959
2959
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role used to access
|
|
@@ -3079,7 +3079,7 @@ export interface DescribeStorageSystemResponse {
|
|
|
3079
3079
|
* </p>
|
|
3080
3080
|
* </note>
|
|
3081
3081
|
*/
|
|
3082
|
-
SystemType?: DiscoverySystemType
|
|
3082
|
+
SystemType?: DiscoverySystemType;
|
|
3083
3083
|
/**
|
|
3084
3084
|
* @public
|
|
3085
3085
|
* <p>The ARN of the DataSync agent that connects to and reads from your on-premises storage
|
|
@@ -3101,7 +3101,7 @@ export interface DescribeStorageSystemResponse {
|
|
|
3101
3101
|
* @public
|
|
3102
3102
|
* <p>Indicates whether your DataSync agent can connect to your on-premises storage system.</p>
|
|
3103
3103
|
*/
|
|
3104
|
-
ConnectivityStatus?: StorageSystemConnectivityStatus
|
|
3104
|
+
ConnectivityStatus?: StorageSystemConnectivityStatus;
|
|
3105
3105
|
/**
|
|
3106
3106
|
* @public
|
|
3107
3107
|
* <p>The ARN of the Amazon CloudWatch log group that's used to monitor and log discovery
|
|
@@ -3147,7 +3147,7 @@ export interface DescribeStorageSystemResourceMetricsRequest {
|
|
|
3147
3147
|
* @public
|
|
3148
3148
|
* <p>Specifies the kind of storage system resource that you want information about.</p>
|
|
3149
3149
|
*/
|
|
3150
|
-
ResourceType: DiscoveryResourceType |
|
|
3150
|
+
ResourceType: DiscoveryResourceType | undefined;
|
|
3151
3151
|
/**
|
|
3152
3152
|
* @public
|
|
3153
3153
|
* <p>Specifies the universally unique identifier (UUID) of the storage system resource that you
|
|
@@ -3314,7 +3314,7 @@ export interface ResourceMetrics {
|
|
|
3314
3314
|
* @public
|
|
3315
3315
|
* <p>The type of on-premises storage system resource.</p>
|
|
3316
3316
|
*/
|
|
3317
|
-
ResourceType?: DiscoveryResourceType
|
|
3317
|
+
ResourceType?: DiscoveryResourceType;
|
|
3318
3318
|
}
|
|
3319
3319
|
/**
|
|
3320
3320
|
* @public
|
|
@@ -3357,7 +3357,7 @@ export interface DescribeStorageSystemResourcesRequest {
|
|
|
3357
3357
|
* @public
|
|
3358
3358
|
* <p>Specifies what kind of storage system resources that you want information about.</p>
|
|
3359
3359
|
*/
|
|
3360
|
-
ResourceType: DiscoveryResourceType |
|
|
3360
|
+
ResourceType: DiscoveryResourceType | undefined;
|
|
3361
3361
|
/**
|
|
3362
3362
|
* @public
|
|
3363
3363
|
* <p>Specifies the universally unique identifiers (UUIDs) of the storage system resources that
|
|
@@ -3370,7 +3370,7 @@ export interface DescribeStorageSystemResourcesRequest {
|
|
|
3370
3370
|
* <p>Filters the storage system resources that you want returned. For example, this might be
|
|
3371
3371
|
* volumes associated with a specific storage virtual machine (SVM).</p>
|
|
3372
3372
|
*/
|
|
3373
|
-
Filter?: Record<
|
|
3373
|
+
Filter?: Record<DiscoveryResourceFilter, string[]>;
|
|
3374
3374
|
/**
|
|
3375
3375
|
* @public
|
|
3376
3376
|
* <p>Specifies the maximum number of storage system resources that you want to list in a
|
|
@@ -3546,7 +3546,7 @@ export interface NetAppONTAPCluster {
|
|
|
3546
3546
|
* or can't be determined.</p>
|
|
3547
3547
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
|
|
3548
3548
|
*/
|
|
3549
|
-
RecommendationStatus?: RecommendationStatus
|
|
3549
|
+
RecommendationStatus?: RecommendationStatus;
|
|
3550
3550
|
/**
|
|
3551
3551
|
* @public
|
|
3552
3552
|
* <p>The number of LUNs (logical unit numbers) in the cluster.</p>
|
|
@@ -3628,7 +3628,7 @@ export interface NetAppONTAPSVM {
|
|
|
3628
3628
|
* can't be determined.</p>
|
|
3629
3629
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
|
|
3630
3630
|
*/
|
|
3631
|
-
RecommendationStatus?: RecommendationStatus
|
|
3631
|
+
RecommendationStatus?: RecommendationStatus;
|
|
3632
3632
|
/**
|
|
3633
3633
|
* @public
|
|
3634
3634
|
* <p>The amount of storage in the SVM that's being used for snapshots.</p>
|
|
@@ -3720,7 +3720,7 @@ export interface NetAppONTAPVolume {
|
|
|
3720
3720
|
* or can't be determined.</p>
|
|
3721
3721
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table">Recommendation statuses</a>.</p>
|
|
3722
3722
|
*/
|
|
3723
|
-
RecommendationStatus?: RecommendationStatus
|
|
3723
|
+
RecommendationStatus?: RecommendationStatus;
|
|
3724
3724
|
/**
|
|
3725
3725
|
* @public
|
|
3726
3726
|
* <p>The number of LUNs (logical unit numbers) in the volume.</p>
|
|
@@ -3814,7 +3814,7 @@ export interface DescribeTaskResponse {
|
|
|
3814
3814
|
* <p>For detailed information about task execution statuses, see Understanding
|
|
3815
3815
|
* Task Statuses in the <i>DataSync User Guide</i>.</p>
|
|
3816
3816
|
*/
|
|
3817
|
-
Status?: TaskStatus
|
|
3817
|
+
Status?: TaskStatus;
|
|
3818
3818
|
/**
|
|
3819
3819
|
* @public
|
|
3820
3820
|
* <p>The name of the task that was described.</p>
|
|
@@ -3945,7 +3945,7 @@ export interface ReportResult {
|
|
|
3945
3945
|
* <p>Indicates whether DataSync is still working on your report, created a report, or
|
|
3946
3946
|
* can't create a complete report.</p>
|
|
3947
3947
|
*/
|
|
3948
|
-
Status?: PhaseStatus
|
|
3948
|
+
Status?: PhaseStatus;
|
|
3949
3949
|
/**
|
|
3950
3950
|
* @public
|
|
3951
3951
|
* <p>Indicates the code associated with the error if DataSync can't create a complete
|
|
@@ -3975,7 +3975,7 @@ export interface TaskExecutionResultDetail {
|
|
|
3975
3975
|
* @public
|
|
3976
3976
|
* <p>The status of the PREPARING phase.</p>
|
|
3977
3977
|
*/
|
|
3978
|
-
PrepareStatus?: PhaseStatus
|
|
3978
|
+
PrepareStatus?: PhaseStatus;
|
|
3979
3979
|
/**
|
|
3980
3980
|
* @public
|
|
3981
3981
|
* <p>The total time in milliseconds that DataSync took to transfer the file from
|
|
@@ -3992,7 +3992,7 @@ export interface TaskExecutionResultDetail {
|
|
|
3992
3992
|
* @public
|
|
3993
3993
|
* <p>The status of the TRANSFERRING phase.</p>
|
|
3994
3994
|
*/
|
|
3995
|
-
TransferStatus?: PhaseStatus
|
|
3995
|
+
TransferStatus?: PhaseStatus;
|
|
3996
3996
|
/**
|
|
3997
3997
|
* @public
|
|
3998
3998
|
* <p>The total time in milliseconds that DataSync spent in the VERIFYING
|
|
@@ -4003,7 +4003,7 @@ export interface TaskExecutionResultDetail {
|
|
|
4003
4003
|
* @public
|
|
4004
4004
|
* <p>The status of the VERIFYING phase.</p>
|
|
4005
4005
|
*/
|
|
4006
|
-
VerifyStatus?: PhaseStatus
|
|
4006
|
+
VerifyStatus?: PhaseStatus;
|
|
4007
4007
|
/**
|
|
4008
4008
|
* @public
|
|
4009
4009
|
* <p>Errors that DataSync encountered during execution of the task. You can
|
|
@@ -4054,7 +4054,7 @@ export interface DescribeTaskExecutionResponse {
|
|
|
4054
4054
|
* @public
|
|
4055
4055
|
* <p>The status of the task execution. </p>
|
|
4056
4056
|
*/
|
|
4057
|
-
Status?: TaskExecutionStatus
|
|
4057
|
+
Status?: TaskExecutionStatus;
|
|
4058
4058
|
/**
|
|
4059
4059
|
* @public
|
|
4060
4060
|
* <p>Indicates how your transfer task is configured. These options include how DataSync handles files, objects, and their associated metadata during your transfer. You
|
|
@@ -4184,7 +4184,7 @@ export interface DiscoveryJobListEntry {
|
|
|
4184
4184
|
* @public
|
|
4185
4185
|
* <p>The status of a discovery job. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table">Discovery job statuses</a>.</p>
|
|
4186
4186
|
*/
|
|
4187
|
-
Status?: DiscoveryJobStatus
|
|
4187
|
+
Status?: DiscoveryJobStatus;
|
|
4188
4188
|
}
|
|
4189
4189
|
/**
|
|
4190
4190
|
* @public
|
|
@@ -4207,7 +4207,7 @@ export interface GenerateRecommendationsRequest {
|
|
|
4207
4207
|
* <p>Specifies the type of resource in your storage system that you want recommendations
|
|
4208
4208
|
* on.</p>
|
|
4209
4209
|
*/
|
|
4210
|
-
ResourceType: DiscoveryResourceType |
|
|
4210
|
+
ResourceType: DiscoveryResourceType | undefined;
|
|
4211
4211
|
}
|
|
4212
4212
|
/**
|
|
4213
4213
|
* @public
|
|
@@ -4337,7 +4337,7 @@ export interface LocationFilter {
|
|
|
4337
4337
|
* available for it (for example, <code>LocationType</code> for
|
|
4338
4338
|
* <code>ListLocations</code>).</p>
|
|
4339
4339
|
*/
|
|
4340
|
-
Name: LocationFilterName |
|
|
4340
|
+
Name: LocationFilterName | undefined;
|
|
4341
4341
|
/**
|
|
4342
4342
|
* @public
|
|
4343
4343
|
* <p>The values that you want to filter for. For example, you might want to display only Amazon
|
|
@@ -4349,7 +4349,7 @@ export interface LocationFilter {
|
|
|
4349
4349
|
* <p>The operator that is used to compare filter values (for example, <code>Equals</code> or
|
|
4350
4350
|
* <code>Contains</code>).</p>
|
|
4351
4351
|
*/
|
|
4352
|
-
Operator: Operator |
|
|
4352
|
+
Operator: Operator | undefined;
|
|
4353
4353
|
}
|
|
4354
4354
|
/**
|
|
4355
4355
|
* @public
|
|
@@ -4557,7 +4557,7 @@ export interface TaskExecutionListEntry {
|
|
|
4557
4557
|
* @public
|
|
4558
4558
|
* <p>The status of a task execution.</p>
|
|
4559
4559
|
*/
|
|
4560
|
-
Status?: TaskExecutionStatus
|
|
4560
|
+
Status?: TaskExecutionStatus;
|
|
4561
4561
|
}
|
|
4562
4562
|
/**
|
|
4563
4563
|
* @public
|
|
@@ -4603,7 +4603,7 @@ export interface TaskFilter {
|
|
|
4603
4603
|
* <p>The name of the filter being used. Each API call supports a list of filters that are
|
|
4604
4604
|
* available for it. For example, <code>LocationId</code> for <code>ListTasks</code>.</p>
|
|
4605
4605
|
*/
|
|
4606
|
-
Name: TaskFilterName |
|
|
4606
|
+
Name: TaskFilterName | undefined;
|
|
4607
4607
|
/**
|
|
4608
4608
|
* @public
|
|
4609
4609
|
* <p>The values that you want to filter for. For example, you might want to display only tasks
|
|
@@ -4615,7 +4615,7 @@ export interface TaskFilter {
|
|
|
4615
4615
|
* <p>The operator that is used to compare filter values (for example, <code>Equals</code> or
|
|
4616
4616
|
* <code>Contains</code>).</p>
|
|
4617
4617
|
*/
|
|
4618
|
-
Operator: Operator |
|
|
4618
|
+
Operator: Operator | undefined;
|
|
4619
4619
|
}
|
|
4620
4620
|
/**
|
|
4621
4621
|
* @public
|
|
@@ -4659,7 +4659,7 @@ export interface TaskListEntry {
|
|
|
4659
4659
|
* @public
|
|
4660
4660
|
* <p>The status of the task.</p>
|
|
4661
4661
|
*/
|
|
4662
|
-
Status?: TaskStatus
|
|
4662
|
+
Status?: TaskStatus;
|
|
4663
4663
|
/**
|
|
4664
4664
|
* @public
|
|
4665
4665
|
* <p>The name of the task.</p>
|
|
@@ -4923,7 +4923,7 @@ export interface UpdateLocationAzureBlobRequest {
|
|
|
4923
4923
|
* @public
|
|
4924
4924
|
* <p>Specifies the authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
|
|
4925
4925
|
*/
|
|
4926
|
-
AuthenticationType?: AzureBlobAuthenticationType
|
|
4926
|
+
AuthenticationType?: AzureBlobAuthenticationType;
|
|
4927
4927
|
/**
|
|
4928
4928
|
* @public
|
|
4929
4929
|
* <p>Specifies the SAS configuration that allows DataSync to access your Azure Blob Storage.</p>
|
|
@@ -4935,12 +4935,12 @@ export interface UpdateLocationAzureBlobRequest {
|
|
|
4935
4935
|
* them into Azure Blob Storage. Currently, DataSync only supports moving data into
|
|
4936
4936
|
* Azure Blob Storage as block blobs. For more information on blob types, see the <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
|
|
4937
4937
|
*/
|
|
4938
|
-
BlobType?: AzureBlobType
|
|
4938
|
+
BlobType?: AzureBlobType;
|
|
4939
4939
|
/**
|
|
4940
4940
|
* @public
|
|
4941
4941
|
* <p>Specifies the access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
|
|
4942
4942
|
*/
|
|
4943
|
-
AccessTier?: AzureAccessTier
|
|
4943
|
+
AccessTier?: AzureAccessTier;
|
|
4944
4944
|
/**
|
|
4945
4945
|
* @public
|
|
4946
4946
|
* <p>Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect with your Azure Blob Storage container.</p>
|
|
@@ -5002,7 +5002,7 @@ export interface UpdateLocationHdfsRequest {
|
|
|
5002
5002
|
* @public
|
|
5003
5003
|
* <p>The type of authentication used to determine the identity of the user. </p>
|
|
5004
5004
|
*/
|
|
5005
|
-
AuthenticationType?: HdfsAuthenticationType
|
|
5005
|
+
AuthenticationType?: HdfsAuthenticationType;
|
|
5006
5006
|
/**
|
|
5007
5007
|
* @public
|
|
5008
5008
|
* <p>The user name used to identify the client on the host operating system.</p>
|
|
@@ -5094,7 +5094,7 @@ export interface UpdateLocationObjectStorageRequest {
|
|
|
5094
5094
|
* @public
|
|
5095
5095
|
* <p>Specifies the protocol that your object storage server uses to communicate.</p>
|
|
5096
5096
|
*/
|
|
5097
|
-
ServerProtocol?: ObjectStorageServerProtocol
|
|
5097
|
+
ServerProtocol?: ObjectStorageServerProtocol;
|
|
5098
5098
|
/**
|
|
5099
5099
|
* @public
|
|
5100
5100
|
* <p>Specifies the object prefix for your object storage server. If this is a source location,
|
|
@@ -19,7 +19,7 @@ export interface TagListEntry {
|
|
|
19
19
|
}
|
|
20
20
|
export interface AddStorageSystemRequest {
|
|
21
21
|
ServerConfiguration: DiscoveryServerConfiguration | undefined;
|
|
22
|
-
SystemType: DiscoverySystemType |
|
|
22
|
+
SystemType: DiscoverySystemType | undefined;
|
|
23
23
|
AgentArns: string[] | undefined;
|
|
24
24
|
CloudWatchLogGroupArn?: string;
|
|
25
25
|
Tags?: TagListEntry[];
|
|
@@ -53,7 +53,7 @@ export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
|
53
53
|
export interface AgentListEntry {
|
|
54
54
|
AgentArn?: string;
|
|
55
55
|
Name?: string;
|
|
56
|
-
Status?: AgentStatus
|
|
56
|
+
Status?: AgentStatus;
|
|
57
57
|
}
|
|
58
58
|
export declare const Atime: {
|
|
59
59
|
readonly BEST_EFFORT: "BEST_EFFORT";
|
|
@@ -102,10 +102,10 @@ export interface CreateAgentResponse {
|
|
|
102
102
|
}
|
|
103
103
|
export interface CreateLocationAzureBlobRequest {
|
|
104
104
|
ContainerUrl: string | undefined;
|
|
105
|
-
AuthenticationType: AzureBlobAuthenticationType |
|
|
105
|
+
AuthenticationType: AzureBlobAuthenticationType | undefined;
|
|
106
106
|
SasConfiguration?: AzureBlobSasConfiguration;
|
|
107
|
-
BlobType?: AzureBlobType
|
|
108
|
-
AccessTier?: AzureAccessTier
|
|
107
|
+
BlobType?: AzureBlobType;
|
|
108
|
+
AccessTier?: AzureAccessTier;
|
|
109
109
|
Subdirectory?: string;
|
|
110
110
|
AgentArns: string[] | undefined;
|
|
111
111
|
Tags?: TagListEntry[];
|
|
@@ -130,7 +130,7 @@ export interface CreateLocationEfsRequest {
|
|
|
130
130
|
Tags?: TagListEntry[];
|
|
131
131
|
AccessPointArn?: string;
|
|
132
132
|
FileSystemAccessRoleArn?: string;
|
|
133
|
-
InTransitEncryption?: EfsInTransitEncryption
|
|
133
|
+
InTransitEncryption?: EfsInTransitEncryption;
|
|
134
134
|
}
|
|
135
135
|
export interface CreateLocationEfsResponse {
|
|
136
136
|
LocationArn?: string;
|
|
@@ -152,7 +152,7 @@ export declare const NfsVersion: {
|
|
|
152
152
|
};
|
|
153
153
|
export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
|
|
154
154
|
export interface NfsMountOptions {
|
|
155
|
-
Version?: NfsVersion
|
|
155
|
+
Version?: NfsVersion;
|
|
156
156
|
}
|
|
157
157
|
export interface FsxProtocolNfs {
|
|
158
158
|
MountOptions?: NfsMountOptions;
|
|
@@ -166,7 +166,7 @@ export declare const SmbVersion: {
|
|
|
166
166
|
};
|
|
167
167
|
export type SmbVersion = (typeof SmbVersion)[keyof typeof SmbVersion];
|
|
168
168
|
export interface SmbMountOptions {
|
|
169
|
-
Version?: SmbVersion
|
|
169
|
+
Version?: SmbVersion;
|
|
170
170
|
}
|
|
171
171
|
export interface FsxProtocolSmb {
|
|
172
172
|
Domain?: string;
|
|
@@ -237,8 +237,8 @@ export declare const HdfsRpcProtection: {
|
|
|
237
237
|
export type HdfsRpcProtection =
|
|
238
238
|
(typeof HdfsRpcProtection)[keyof typeof HdfsRpcProtection];
|
|
239
239
|
export interface QopConfiguration {
|
|
240
|
-
RpcProtection?: HdfsRpcProtection
|
|
241
|
-
DataTransferProtection?: HdfsDataTransferProtection
|
|
240
|
+
RpcProtection?: HdfsRpcProtection;
|
|
241
|
+
DataTransferProtection?: HdfsDataTransferProtection;
|
|
242
242
|
}
|
|
243
243
|
export interface CreateLocationHdfsRequest {
|
|
244
244
|
Subdirectory?: string;
|
|
@@ -247,7 +247,7 @@ export interface CreateLocationHdfsRequest {
|
|
|
247
247
|
ReplicationFactor?: number;
|
|
248
248
|
KmsKeyProviderUri?: string;
|
|
249
249
|
QopConfiguration?: QopConfiguration;
|
|
250
|
-
AuthenticationType: HdfsAuthenticationType |
|
|
250
|
+
AuthenticationType: HdfsAuthenticationType | undefined;
|
|
251
251
|
SimpleUser?: string;
|
|
252
252
|
KerberosPrincipal?: string;
|
|
253
253
|
KerberosKeytab?: Uint8Array;
|
|
@@ -280,7 +280,7 @@ export type ObjectStorageServerProtocol =
|
|
|
280
280
|
export interface CreateLocationObjectStorageRequest {
|
|
281
281
|
ServerHostname: string | undefined;
|
|
282
282
|
ServerPort?: number;
|
|
283
|
-
ServerProtocol?: ObjectStorageServerProtocol
|
|
283
|
+
ServerProtocol?: ObjectStorageServerProtocol;
|
|
284
284
|
Subdirectory?: string;
|
|
285
285
|
BucketName: string | undefined;
|
|
286
286
|
AccessKey?: string;
|
|
@@ -310,7 +310,7 @@ export type S3StorageClass =
|
|
|
310
310
|
export interface CreateLocationS3Request {
|
|
311
311
|
Subdirectory?: string;
|
|
312
312
|
S3BucketArn: string | undefined;
|
|
313
|
-
S3StorageClass?: S3StorageClass
|
|
313
|
+
S3StorageClass?: S3StorageClass;
|
|
314
314
|
S3Config: S3Config | undefined;
|
|
315
315
|
AgentArns?: string[];
|
|
316
316
|
Tags?: TagListEntry[];
|
|
@@ -336,7 +336,7 @@ export declare const FilterType: {
|
|
|
336
336
|
};
|
|
337
337
|
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
|
|
338
338
|
export interface FilterRule {
|
|
339
|
-
FilterType?: FilterType
|
|
339
|
+
FilterType?: FilterType;
|
|
340
340
|
Value?: string;
|
|
341
341
|
}
|
|
342
342
|
export declare const Gid: {
|
|
@@ -416,21 +416,21 @@ export declare const VerifyMode: {
|
|
|
416
416
|
};
|
|
417
417
|
export type VerifyMode = (typeof VerifyMode)[keyof typeof VerifyMode];
|
|
418
418
|
export interface Options {
|
|
419
|
-
VerifyMode?: VerifyMode
|
|
420
|
-
OverwriteMode?: OverwriteMode
|
|
421
|
-
Atime?: Atime
|
|
422
|
-
Mtime?: Mtime
|
|
423
|
-
Uid?: Uid
|
|
424
|
-
Gid?: Gid
|
|
425
|
-
PreserveDeletedFiles?: PreserveDeletedFiles
|
|
426
|
-
PreserveDevices?: PreserveDevices
|
|
427
|
-
PosixPermissions?: PosixPermissions
|
|
419
|
+
VerifyMode?: VerifyMode;
|
|
420
|
+
OverwriteMode?: OverwriteMode;
|
|
421
|
+
Atime?: Atime;
|
|
422
|
+
Mtime?: Mtime;
|
|
423
|
+
Uid?: Uid;
|
|
424
|
+
Gid?: Gid;
|
|
425
|
+
PreserveDeletedFiles?: PreserveDeletedFiles;
|
|
426
|
+
PreserveDevices?: PreserveDevices;
|
|
427
|
+
PosixPermissions?: PosixPermissions;
|
|
428
428
|
BytesPerSecond?: number;
|
|
429
|
-
TaskQueueing?: TaskQueueing
|
|
430
|
-
LogLevel?: LogLevel
|
|
431
|
-
TransferMode?: TransferMode
|
|
432
|
-
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags
|
|
433
|
-
ObjectTags?: ObjectTags
|
|
429
|
+
TaskQueueing?: TaskQueueing;
|
|
430
|
+
LogLevel?: LogLevel;
|
|
431
|
+
TransferMode?: TransferMode;
|
|
432
|
+
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags;
|
|
433
|
+
ObjectTags?: ObjectTags;
|
|
434
434
|
}
|
|
435
435
|
export interface TaskSchedule {
|
|
436
436
|
ScheduleExpression: string | undefined;
|
|
@@ -461,7 +461,7 @@ export declare const ReportLevel: {
|
|
|
461
461
|
};
|
|
462
462
|
export type ReportLevel = (typeof ReportLevel)[keyof typeof ReportLevel];
|
|
463
463
|
export interface ReportOverride {
|
|
464
|
-
ReportLevel?: ReportLevel
|
|
464
|
+
ReportLevel?: ReportLevel;
|
|
465
465
|
}
|
|
466
466
|
export interface ReportOverrides {
|
|
467
467
|
Transferred?: ReportOverride;
|
|
@@ -471,9 +471,9 @@ export interface ReportOverrides {
|
|
|
471
471
|
}
|
|
472
472
|
export interface TaskReportConfig {
|
|
473
473
|
Destination?: ReportDestination;
|
|
474
|
-
OutputType?: ReportOutputType
|
|
475
|
-
ReportLevel?: ReportLevel
|
|
476
|
-
ObjectVersionIds?: ObjectVersionIds
|
|
474
|
+
OutputType?: ReportOutputType;
|
|
475
|
+
ReportLevel?: ReportLevel;
|
|
476
|
+
ObjectVersionIds?: ObjectVersionIds;
|
|
477
477
|
Overrides?: ReportOverrides;
|
|
478
478
|
}
|
|
479
479
|
export interface CreateTaskRequest {
|
|
@@ -521,10 +521,10 @@ export interface PrivateLinkConfig {
|
|
|
521
521
|
export interface DescribeAgentResponse {
|
|
522
522
|
AgentArn?: string;
|
|
523
523
|
Name?: string;
|
|
524
|
-
Status?: AgentStatus
|
|
524
|
+
Status?: AgentStatus;
|
|
525
525
|
LastConnectionTime?: Date;
|
|
526
526
|
CreationTime?: Date;
|
|
527
|
-
EndpointType?: EndpointType
|
|
527
|
+
EndpointType?: EndpointType;
|
|
528
528
|
PrivateLinkConfig?: PrivateLinkConfig;
|
|
529
529
|
}
|
|
530
530
|
export interface DescribeDiscoveryJobRequest {
|
|
@@ -545,7 +545,7 @@ export interface DescribeDiscoveryJobResponse {
|
|
|
545
545
|
StorageSystemArn?: string;
|
|
546
546
|
DiscoveryJobArn?: string;
|
|
547
547
|
CollectionDurationMinutes?: number;
|
|
548
|
-
Status?: DiscoveryJobStatus
|
|
548
|
+
Status?: DiscoveryJobStatus;
|
|
549
549
|
JobStartTime?: Date;
|
|
550
550
|
JobEndTime?: Date;
|
|
551
551
|
}
|
|
@@ -555,9 +555,9 @@ export interface DescribeLocationAzureBlobRequest {
|
|
|
555
555
|
export interface DescribeLocationAzureBlobResponse {
|
|
556
556
|
LocationArn?: string;
|
|
557
557
|
LocationUri?: string;
|
|
558
|
-
AuthenticationType?: AzureBlobAuthenticationType
|
|
559
|
-
BlobType?: AzureBlobType
|
|
560
|
-
AccessTier?: AzureAccessTier
|
|
558
|
+
AuthenticationType?: AzureBlobAuthenticationType;
|
|
559
|
+
BlobType?: AzureBlobType;
|
|
560
|
+
AccessTier?: AzureAccessTier;
|
|
561
561
|
AgentArns?: string[];
|
|
562
562
|
CreationTime?: Date;
|
|
563
563
|
}
|
|
@@ -571,7 +571,7 @@ export interface DescribeLocationEfsResponse {
|
|
|
571
571
|
CreationTime?: Date;
|
|
572
572
|
AccessPointArn?: string;
|
|
573
573
|
FileSystemAccessRoleArn?: string;
|
|
574
|
-
InTransitEncryption?: EfsInTransitEncryption
|
|
574
|
+
InTransitEncryption?: EfsInTransitEncryption;
|
|
575
575
|
}
|
|
576
576
|
export interface DescribeLocationFsxLustreRequest {
|
|
577
577
|
LocationArn: string | undefined;
|
|
@@ -626,7 +626,7 @@ export interface DescribeLocationHdfsResponse {
|
|
|
626
626
|
ReplicationFactor?: number;
|
|
627
627
|
KmsKeyProviderUri?: string;
|
|
628
628
|
QopConfiguration?: QopConfiguration;
|
|
629
|
-
AuthenticationType?: HdfsAuthenticationType
|
|
629
|
+
AuthenticationType?: HdfsAuthenticationType;
|
|
630
630
|
SimpleUser?: string;
|
|
631
631
|
KerberosPrincipal?: string;
|
|
632
632
|
AgentArns?: string[];
|
|
@@ -650,7 +650,7 @@ export interface DescribeLocationObjectStorageResponse {
|
|
|
650
650
|
LocationUri?: string;
|
|
651
651
|
AccessKey?: string;
|
|
652
652
|
ServerPort?: number;
|
|
653
|
-
ServerProtocol?: ObjectStorageServerProtocol
|
|
653
|
+
ServerProtocol?: ObjectStorageServerProtocol;
|
|
654
654
|
AgentArns?: string[];
|
|
655
655
|
CreationTime?: Date;
|
|
656
656
|
ServerCertificate?: Uint8Array;
|
|
@@ -661,7 +661,7 @@ export interface DescribeLocationS3Request {
|
|
|
661
661
|
export interface DescribeLocationS3Response {
|
|
662
662
|
LocationArn?: string;
|
|
663
663
|
LocationUri?: string;
|
|
664
|
-
S3StorageClass?: S3StorageClass
|
|
664
|
+
S3StorageClass?: S3StorageClass;
|
|
665
665
|
S3Config?: S3Config;
|
|
666
666
|
AgentArns?: string[];
|
|
667
667
|
CreationTime?: Date;
|
|
@@ -691,11 +691,11 @@ export type StorageSystemConnectivityStatus =
|
|
|
691
691
|
export interface DescribeStorageSystemResponse {
|
|
692
692
|
StorageSystemArn?: string;
|
|
693
693
|
ServerConfiguration?: DiscoveryServerConfiguration;
|
|
694
|
-
SystemType?: DiscoverySystemType
|
|
694
|
+
SystemType?: DiscoverySystemType;
|
|
695
695
|
AgentArns?: string[];
|
|
696
696
|
Name?: string;
|
|
697
697
|
ErrorMessage?: string;
|
|
698
|
-
ConnectivityStatus?: StorageSystemConnectivityStatus
|
|
698
|
+
ConnectivityStatus?: StorageSystemConnectivityStatus;
|
|
699
699
|
CloudWatchLogGroupArn?: string;
|
|
700
700
|
CreationTime?: Date;
|
|
701
701
|
SecretsManagerArn?: string;
|
|
@@ -709,7 +709,7 @@ export type DiscoveryResourceType =
|
|
|
709
709
|
(typeof DiscoveryResourceType)[keyof typeof DiscoveryResourceType];
|
|
710
710
|
export interface DescribeStorageSystemResourceMetricsRequest {
|
|
711
711
|
DiscoveryJobArn: string | undefined;
|
|
712
|
-
ResourceType: DiscoveryResourceType |
|
|
712
|
+
ResourceType: DiscoveryResourceType | undefined;
|
|
713
713
|
ResourceId: string | undefined;
|
|
714
714
|
StartTime?: Date;
|
|
715
715
|
EndTime?: Date;
|
|
@@ -743,7 +743,7 @@ export interface ResourceMetrics {
|
|
|
743
743
|
P95Metrics?: P95Metrics;
|
|
744
744
|
Capacity?: Capacity;
|
|
745
745
|
ResourceId?: string;
|
|
746
|
-
ResourceType?: DiscoveryResourceType
|
|
746
|
+
ResourceType?: DiscoveryResourceType;
|
|
747
747
|
}
|
|
748
748
|
export interface DescribeStorageSystemResourceMetricsResponse {
|
|
749
749
|
Metrics?: ResourceMetrics[];
|
|
@@ -756,9 +756,9 @@ export type DiscoveryResourceFilter =
|
|
|
756
756
|
(typeof DiscoveryResourceFilter)[keyof typeof DiscoveryResourceFilter];
|
|
757
757
|
export interface DescribeStorageSystemResourcesRequest {
|
|
758
758
|
DiscoveryJobArn: string | undefined;
|
|
759
|
-
ResourceType: DiscoveryResourceType |
|
|
759
|
+
ResourceType: DiscoveryResourceType | undefined;
|
|
760
760
|
ResourceIds?: string[];
|
|
761
|
-
Filter?: Record<
|
|
761
|
+
Filter?: Record<DiscoveryResourceFilter, string[]>;
|
|
762
762
|
MaxResults?: number;
|
|
763
763
|
NextToken?: string;
|
|
764
764
|
}
|
|
@@ -798,7 +798,7 @@ export interface NetAppONTAPCluster {
|
|
|
798
798
|
ClusterBlockStorageUsed?: number;
|
|
799
799
|
ClusterBlockStorageLogicalUsed?: number;
|
|
800
800
|
Recommendations?: Recommendation[];
|
|
801
|
-
RecommendationStatus?: RecommendationStatus
|
|
801
|
+
RecommendationStatus?: RecommendationStatus;
|
|
802
802
|
LunCount?: number;
|
|
803
803
|
ClusterCloudStorageUsed?: number;
|
|
804
804
|
}
|
|
@@ -814,7 +814,7 @@ export interface NetAppONTAPSVM {
|
|
|
814
814
|
MaxP95Performance?: MaxP95Performance;
|
|
815
815
|
Recommendations?: Recommendation[];
|
|
816
816
|
NfsExportedVolumes?: number;
|
|
817
|
-
RecommendationStatus?: RecommendationStatus
|
|
817
|
+
RecommendationStatus?: RecommendationStatus;
|
|
818
818
|
TotalSnapshotCapacityUsed?: number;
|
|
819
819
|
LunCount?: number;
|
|
820
820
|
}
|
|
@@ -832,7 +832,7 @@ export interface NetAppONTAPVolume {
|
|
|
832
832
|
SnapshotCapacityUsed?: number;
|
|
833
833
|
MaxP95Performance?: MaxP95Performance;
|
|
834
834
|
Recommendations?: Recommendation[];
|
|
835
|
-
RecommendationStatus?: RecommendationStatus
|
|
835
|
+
RecommendationStatus?: RecommendationStatus;
|
|
836
836
|
LunCount?: number;
|
|
837
837
|
}
|
|
838
838
|
export interface ResourceDetails {
|
|
@@ -857,7 +857,7 @@ export declare const TaskStatus: {
|
|
|
857
857
|
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
858
858
|
export interface DescribeTaskResponse {
|
|
859
859
|
TaskArn?: string;
|
|
860
|
-
Status?: TaskStatus
|
|
860
|
+
Status?: TaskStatus;
|
|
861
861
|
Name?: string;
|
|
862
862
|
CurrentTaskExecutionArn?: string;
|
|
863
863
|
SourceLocationArn?: string;
|
|
@@ -884,18 +884,18 @@ export declare const PhaseStatus: {
|
|
|
884
884
|
};
|
|
885
885
|
export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
|
|
886
886
|
export interface ReportResult {
|
|
887
|
-
Status?: PhaseStatus
|
|
887
|
+
Status?: PhaseStatus;
|
|
888
888
|
ErrorCode?: string;
|
|
889
889
|
ErrorDetail?: string;
|
|
890
890
|
}
|
|
891
891
|
export interface TaskExecutionResultDetail {
|
|
892
892
|
PrepareDuration?: number;
|
|
893
|
-
PrepareStatus?: PhaseStatus
|
|
893
|
+
PrepareStatus?: PhaseStatus;
|
|
894
894
|
TotalDuration?: number;
|
|
895
895
|
TransferDuration?: number;
|
|
896
|
-
TransferStatus?: PhaseStatus
|
|
896
|
+
TransferStatus?: PhaseStatus;
|
|
897
897
|
VerifyDuration?: number;
|
|
898
|
-
VerifyStatus?: PhaseStatus
|
|
898
|
+
VerifyStatus?: PhaseStatus;
|
|
899
899
|
ErrorCode?: string;
|
|
900
900
|
ErrorDetail?: string;
|
|
901
901
|
}
|
|
@@ -912,7 +912,7 @@ export type TaskExecutionStatus =
|
|
|
912
912
|
(typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
|
|
913
913
|
export interface DescribeTaskExecutionResponse {
|
|
914
914
|
TaskExecutionArn?: string;
|
|
915
|
-
Status?: TaskExecutionStatus
|
|
915
|
+
Status?: TaskExecutionStatus;
|
|
916
916
|
Options?: Options;
|
|
917
917
|
Excludes?: FilterRule[];
|
|
918
918
|
Includes?: FilterRule[];
|
|
@@ -933,12 +933,12 @@ export interface DescribeTaskExecutionResponse {
|
|
|
933
933
|
}
|
|
934
934
|
export interface DiscoveryJobListEntry {
|
|
935
935
|
DiscoveryJobArn?: string;
|
|
936
|
-
Status?: DiscoveryJobStatus
|
|
936
|
+
Status?: DiscoveryJobStatus;
|
|
937
937
|
}
|
|
938
938
|
export interface GenerateRecommendationsRequest {
|
|
939
939
|
DiscoveryJobArn: string | undefined;
|
|
940
940
|
ResourceIds: string[] | undefined;
|
|
941
|
-
ResourceType: DiscoveryResourceType |
|
|
941
|
+
ResourceType: DiscoveryResourceType | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface GenerateRecommendationsResponse {}
|
|
944
944
|
export interface ListAgentsRequest {
|
|
@@ -979,9 +979,9 @@ export declare const Operator: {
|
|
|
979
979
|
};
|
|
980
980
|
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
981
981
|
export interface LocationFilter {
|
|
982
|
-
Name: LocationFilterName |
|
|
982
|
+
Name: LocationFilterName | undefined;
|
|
983
983
|
Values: string[] | undefined;
|
|
984
|
-
Operator: Operator |
|
|
984
|
+
Operator: Operator | undefined;
|
|
985
985
|
}
|
|
986
986
|
export interface ListLocationsRequest {
|
|
987
987
|
MaxResults?: number;
|
|
@@ -1024,7 +1024,7 @@ export interface ListTaskExecutionsRequest {
|
|
|
1024
1024
|
}
|
|
1025
1025
|
export interface TaskExecutionListEntry {
|
|
1026
1026
|
TaskExecutionArn?: string;
|
|
1027
|
-
Status?: TaskExecutionStatus
|
|
1027
|
+
Status?: TaskExecutionStatus;
|
|
1028
1028
|
}
|
|
1029
1029
|
export interface ListTaskExecutionsResponse {
|
|
1030
1030
|
TaskExecutions?: TaskExecutionListEntry[];
|
|
@@ -1037,9 +1037,9 @@ export declare const TaskFilterName: {
|
|
|
1037
1037
|
export type TaskFilterName =
|
|
1038
1038
|
(typeof TaskFilterName)[keyof typeof TaskFilterName];
|
|
1039
1039
|
export interface TaskFilter {
|
|
1040
|
-
Name: TaskFilterName |
|
|
1040
|
+
Name: TaskFilterName | undefined;
|
|
1041
1041
|
Values: string[] | undefined;
|
|
1042
|
-
Operator: Operator |
|
|
1042
|
+
Operator: Operator | undefined;
|
|
1043
1043
|
}
|
|
1044
1044
|
export interface ListTasksRequest {
|
|
1045
1045
|
MaxResults?: number;
|
|
@@ -1048,7 +1048,7 @@ export interface ListTasksRequest {
|
|
|
1048
1048
|
}
|
|
1049
1049
|
export interface TaskListEntry {
|
|
1050
1050
|
TaskArn?: string;
|
|
1051
|
-
Status?: TaskStatus
|
|
1051
|
+
Status?: TaskStatus;
|
|
1052
1052
|
Name?: string;
|
|
1053
1053
|
}
|
|
1054
1054
|
export interface ListTasksResponse {
|
|
@@ -1106,10 +1106,10 @@ export interface UpdateDiscoveryJobResponse {}
|
|
|
1106
1106
|
export interface UpdateLocationAzureBlobRequest {
|
|
1107
1107
|
LocationArn: string | undefined;
|
|
1108
1108
|
Subdirectory?: string;
|
|
1109
|
-
AuthenticationType?: AzureBlobAuthenticationType
|
|
1109
|
+
AuthenticationType?: AzureBlobAuthenticationType;
|
|
1110
1110
|
SasConfiguration?: AzureBlobSasConfiguration;
|
|
1111
|
-
BlobType?: AzureBlobType
|
|
1112
|
-
AccessTier?: AzureAccessTier
|
|
1111
|
+
BlobType?: AzureBlobType;
|
|
1112
|
+
AccessTier?: AzureAccessTier;
|
|
1113
1113
|
AgentArns?: string[];
|
|
1114
1114
|
}
|
|
1115
1115
|
export interface UpdateLocationAzureBlobResponse {}
|
|
@@ -1121,7 +1121,7 @@ export interface UpdateLocationHdfsRequest {
|
|
|
1121
1121
|
ReplicationFactor?: number;
|
|
1122
1122
|
KmsKeyProviderUri?: string;
|
|
1123
1123
|
QopConfiguration?: QopConfiguration;
|
|
1124
|
-
AuthenticationType?: HdfsAuthenticationType
|
|
1124
|
+
AuthenticationType?: HdfsAuthenticationType;
|
|
1125
1125
|
SimpleUser?: string;
|
|
1126
1126
|
KerberosPrincipal?: string;
|
|
1127
1127
|
KerberosKeytab?: Uint8Array;
|
|
@@ -1139,7 +1139,7 @@ export interface UpdateLocationNfsResponse {}
|
|
|
1139
1139
|
export interface UpdateLocationObjectStorageRequest {
|
|
1140
1140
|
LocationArn: string | undefined;
|
|
1141
1141
|
ServerPort?: number;
|
|
1142
|
-
ServerProtocol?: ObjectStorageServerProtocol
|
|
1142
|
+
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1143
1143
|
Subdirectory?: string;
|
|
1144
1144
|
AccessKey?: string;
|
|
1145
1145
|
SecretKey?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datasync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datasync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|