@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
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { DataSyncExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { DataSyncServiceException } from "./models/DataSyncServiceException";
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
export declare const AgentStatus: {
|
|
2
|
+
readonly OFFLINE: "OFFLINE";
|
|
3
|
+
readonly ONLINE: "ONLINE";
|
|
4
|
+
};
|
|
5
|
+
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
6
|
+
export declare const Atime: {
|
|
7
|
+
readonly BEST_EFFORT: "BEST_EFFORT";
|
|
8
|
+
readonly NONE: "NONE";
|
|
9
|
+
};
|
|
10
|
+
export type Atime = (typeof Atime)[keyof typeof Atime];
|
|
11
|
+
export declare const AzureAccessTier: {
|
|
12
|
+
readonly ARCHIVE: "ARCHIVE";
|
|
13
|
+
readonly COOL: "COOL";
|
|
14
|
+
readonly HOT: "HOT";
|
|
15
|
+
};
|
|
16
|
+
export type AzureAccessTier =
|
|
17
|
+
(typeof AzureAccessTier)[keyof typeof AzureAccessTier];
|
|
18
|
+
export declare const AzureBlobAuthenticationType: {
|
|
19
|
+
readonly NONE: "NONE";
|
|
20
|
+
readonly SAS: "SAS";
|
|
21
|
+
};
|
|
22
|
+
export type AzureBlobAuthenticationType =
|
|
23
|
+
(typeof AzureBlobAuthenticationType)[keyof typeof AzureBlobAuthenticationType];
|
|
24
|
+
export declare const AzureBlobType: {
|
|
25
|
+
readonly BLOCK: "BLOCK";
|
|
26
|
+
};
|
|
27
|
+
export type AzureBlobType = (typeof AzureBlobType)[keyof typeof AzureBlobType];
|
|
28
|
+
export declare const EfsInTransitEncryption: {
|
|
29
|
+
readonly NONE: "NONE";
|
|
30
|
+
readonly TLS1_2: "TLS1_2";
|
|
31
|
+
};
|
|
32
|
+
export type EfsInTransitEncryption =
|
|
33
|
+
(typeof EfsInTransitEncryption)[keyof typeof EfsInTransitEncryption];
|
|
34
|
+
export declare const NfsVersion: {
|
|
35
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
36
|
+
readonly NFS3: "NFS3";
|
|
37
|
+
readonly NFS4_0: "NFS4_0";
|
|
38
|
+
readonly NFS4_1: "NFS4_1";
|
|
39
|
+
};
|
|
40
|
+
export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
|
|
41
|
+
export declare const SmbVersion: {
|
|
42
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
43
|
+
readonly SMB1: "SMB1";
|
|
44
|
+
readonly SMB2: "SMB2";
|
|
45
|
+
readonly SMB2_0: "SMB2_0";
|
|
46
|
+
readonly SMB3: "SMB3";
|
|
47
|
+
};
|
|
48
|
+
export type SmbVersion = (typeof SmbVersion)[keyof typeof SmbVersion];
|
|
49
|
+
export declare const HdfsAuthenticationType: {
|
|
50
|
+
readonly KERBEROS: "KERBEROS";
|
|
51
|
+
readonly SIMPLE: "SIMPLE";
|
|
52
|
+
};
|
|
53
|
+
export type HdfsAuthenticationType =
|
|
54
|
+
(typeof HdfsAuthenticationType)[keyof typeof HdfsAuthenticationType];
|
|
55
|
+
export declare const HdfsDataTransferProtection: {
|
|
56
|
+
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
57
|
+
readonly DISABLED: "DISABLED";
|
|
58
|
+
readonly INTEGRITY: "INTEGRITY";
|
|
59
|
+
readonly PRIVACY: "PRIVACY";
|
|
60
|
+
};
|
|
61
|
+
export type HdfsDataTransferProtection =
|
|
62
|
+
(typeof HdfsDataTransferProtection)[keyof typeof HdfsDataTransferProtection];
|
|
63
|
+
export declare const HdfsRpcProtection: {
|
|
64
|
+
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
65
|
+
readonly DISABLED: "DISABLED";
|
|
66
|
+
readonly INTEGRITY: "INTEGRITY";
|
|
67
|
+
readonly PRIVACY: "PRIVACY";
|
|
68
|
+
};
|
|
69
|
+
export type HdfsRpcProtection =
|
|
70
|
+
(typeof HdfsRpcProtection)[keyof typeof HdfsRpcProtection];
|
|
71
|
+
export declare const ObjectStorageServerProtocol: {
|
|
72
|
+
readonly HTTP: "HTTP";
|
|
73
|
+
readonly HTTPS: "HTTPS";
|
|
74
|
+
};
|
|
75
|
+
export type ObjectStorageServerProtocol =
|
|
76
|
+
(typeof ObjectStorageServerProtocol)[keyof typeof ObjectStorageServerProtocol];
|
|
77
|
+
export declare const S3StorageClass: {
|
|
78
|
+
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
79
|
+
readonly GLACIER: "GLACIER";
|
|
80
|
+
readonly GLACIER_INSTANT_RETRIEVAL: "GLACIER_INSTANT_RETRIEVAL";
|
|
81
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
82
|
+
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
83
|
+
readonly OUTPOSTS: "OUTPOSTS";
|
|
84
|
+
readonly STANDARD: "STANDARD";
|
|
85
|
+
readonly STANDARD_IA: "STANDARD_IA";
|
|
86
|
+
};
|
|
87
|
+
export type S3StorageClass =
|
|
88
|
+
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
89
|
+
export declare const SmbAuthenticationType: {
|
|
90
|
+
readonly KERBEROS: "KERBEROS";
|
|
91
|
+
readonly NTLM: "NTLM";
|
|
92
|
+
};
|
|
93
|
+
export type SmbAuthenticationType =
|
|
94
|
+
(typeof SmbAuthenticationType)[keyof typeof SmbAuthenticationType];
|
|
95
|
+
export declare const FilterType: {
|
|
96
|
+
readonly SIMPLE_PATTERN: "SIMPLE_PATTERN";
|
|
97
|
+
};
|
|
98
|
+
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
|
|
99
|
+
export declare const ManifestAction: {
|
|
100
|
+
readonly TRANSFER: "TRANSFER";
|
|
101
|
+
};
|
|
102
|
+
export type ManifestAction =
|
|
103
|
+
(typeof ManifestAction)[keyof typeof ManifestAction];
|
|
104
|
+
export declare const ManifestFormat: {
|
|
105
|
+
readonly CSV: "CSV";
|
|
106
|
+
};
|
|
107
|
+
export type ManifestFormat =
|
|
108
|
+
(typeof ManifestFormat)[keyof typeof ManifestFormat];
|
|
109
|
+
export declare const Gid: {
|
|
110
|
+
readonly BOTH: "BOTH";
|
|
111
|
+
readonly INT_VALUE: "INT_VALUE";
|
|
112
|
+
readonly NAME: "NAME";
|
|
113
|
+
readonly NONE: "NONE";
|
|
114
|
+
};
|
|
115
|
+
export type Gid = (typeof Gid)[keyof typeof Gid];
|
|
116
|
+
export declare const LogLevel: {
|
|
117
|
+
readonly BASIC: "BASIC";
|
|
118
|
+
readonly OFF: "OFF";
|
|
119
|
+
readonly TRANSFER: "TRANSFER";
|
|
120
|
+
};
|
|
121
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
122
|
+
export declare const Mtime: {
|
|
123
|
+
readonly NONE: "NONE";
|
|
124
|
+
readonly PRESERVE: "PRESERVE";
|
|
125
|
+
};
|
|
126
|
+
export type Mtime = (typeof Mtime)[keyof typeof Mtime];
|
|
127
|
+
export declare const ObjectTags: {
|
|
128
|
+
readonly NONE: "NONE";
|
|
129
|
+
readonly PRESERVE: "PRESERVE";
|
|
130
|
+
};
|
|
131
|
+
export type ObjectTags = (typeof ObjectTags)[keyof typeof ObjectTags];
|
|
132
|
+
export declare const OverwriteMode: {
|
|
133
|
+
readonly ALWAYS: "ALWAYS";
|
|
134
|
+
readonly NEVER: "NEVER";
|
|
135
|
+
};
|
|
136
|
+
export type OverwriteMode = (typeof OverwriteMode)[keyof typeof OverwriteMode];
|
|
137
|
+
export declare const PosixPermissions: {
|
|
138
|
+
readonly NONE: "NONE";
|
|
139
|
+
readonly PRESERVE: "PRESERVE";
|
|
140
|
+
};
|
|
141
|
+
export type PosixPermissions =
|
|
142
|
+
(typeof PosixPermissions)[keyof typeof PosixPermissions];
|
|
143
|
+
export declare const PreserveDeletedFiles: {
|
|
144
|
+
readonly PRESERVE: "PRESERVE";
|
|
145
|
+
readonly REMOVE: "REMOVE";
|
|
146
|
+
};
|
|
147
|
+
export type PreserveDeletedFiles =
|
|
148
|
+
(typeof PreserveDeletedFiles)[keyof typeof PreserveDeletedFiles];
|
|
149
|
+
export declare const PreserveDevices: {
|
|
150
|
+
readonly NONE: "NONE";
|
|
151
|
+
readonly PRESERVE: "PRESERVE";
|
|
152
|
+
};
|
|
153
|
+
export type PreserveDevices =
|
|
154
|
+
(typeof PreserveDevices)[keyof typeof PreserveDevices];
|
|
155
|
+
export declare const SmbSecurityDescriptorCopyFlags: {
|
|
156
|
+
readonly NONE: "NONE";
|
|
157
|
+
readonly OWNER_DACL: "OWNER_DACL";
|
|
158
|
+
readonly OWNER_DACL_SACL: "OWNER_DACL_SACL";
|
|
159
|
+
};
|
|
160
|
+
export type SmbSecurityDescriptorCopyFlags =
|
|
161
|
+
(typeof SmbSecurityDescriptorCopyFlags)[keyof typeof SmbSecurityDescriptorCopyFlags];
|
|
162
|
+
export declare const TaskQueueing: {
|
|
163
|
+
readonly DISABLED: "DISABLED";
|
|
164
|
+
readonly ENABLED: "ENABLED";
|
|
165
|
+
};
|
|
166
|
+
export type TaskQueueing = (typeof TaskQueueing)[keyof typeof TaskQueueing];
|
|
167
|
+
export declare const TransferMode: {
|
|
168
|
+
readonly ALL: "ALL";
|
|
169
|
+
readonly CHANGED: "CHANGED";
|
|
170
|
+
};
|
|
171
|
+
export type TransferMode = (typeof TransferMode)[keyof typeof TransferMode];
|
|
172
|
+
export declare const Uid: {
|
|
173
|
+
readonly BOTH: "BOTH";
|
|
174
|
+
readonly INT_VALUE: "INT_VALUE";
|
|
175
|
+
readonly NAME: "NAME";
|
|
176
|
+
readonly NONE: "NONE";
|
|
177
|
+
};
|
|
178
|
+
export type Uid = (typeof Uid)[keyof typeof Uid];
|
|
179
|
+
export declare const VerifyMode: {
|
|
180
|
+
readonly NONE: "NONE";
|
|
181
|
+
readonly ONLY_FILES_TRANSFERRED: "ONLY_FILES_TRANSFERRED";
|
|
182
|
+
readonly POINT_IN_TIME_CONSISTENT: "POINT_IN_TIME_CONSISTENT";
|
|
183
|
+
};
|
|
184
|
+
export type VerifyMode = (typeof VerifyMode)[keyof typeof VerifyMode];
|
|
185
|
+
export declare const ScheduleStatus: {
|
|
186
|
+
readonly DISABLED: "DISABLED";
|
|
187
|
+
readonly ENABLED: "ENABLED";
|
|
188
|
+
};
|
|
189
|
+
export type ScheduleStatus =
|
|
190
|
+
(typeof ScheduleStatus)[keyof typeof ScheduleStatus];
|
|
191
|
+
export declare const TaskMode: {
|
|
192
|
+
readonly BASIC: "BASIC";
|
|
193
|
+
readonly ENHANCED: "ENHANCED";
|
|
194
|
+
};
|
|
195
|
+
export type TaskMode = (typeof TaskMode)[keyof typeof TaskMode];
|
|
196
|
+
export declare const ObjectVersionIds: {
|
|
197
|
+
readonly INCLUDE: "INCLUDE";
|
|
198
|
+
readonly NONE: "NONE";
|
|
199
|
+
};
|
|
200
|
+
export type ObjectVersionIds =
|
|
201
|
+
(typeof ObjectVersionIds)[keyof typeof ObjectVersionIds];
|
|
202
|
+
export declare const ReportOutputType: {
|
|
203
|
+
readonly STANDARD: "STANDARD";
|
|
204
|
+
readonly SUMMARY_ONLY: "SUMMARY_ONLY";
|
|
205
|
+
};
|
|
206
|
+
export type ReportOutputType =
|
|
207
|
+
(typeof ReportOutputType)[keyof typeof ReportOutputType];
|
|
208
|
+
export declare const ReportLevel: {
|
|
209
|
+
readonly ERRORS_ONLY: "ERRORS_ONLY";
|
|
210
|
+
readonly SUCCESSES_AND_ERRORS: "SUCCESSES_AND_ERRORS";
|
|
211
|
+
};
|
|
212
|
+
export type ReportLevel = (typeof ReportLevel)[keyof typeof ReportLevel];
|
|
213
|
+
export declare const EndpointType: {
|
|
214
|
+
readonly FIPS: "FIPS";
|
|
215
|
+
readonly FIPS_PRIVATE_LINK: "FIPS_PRIVATE_LINK";
|
|
216
|
+
readonly PRIVATE_LINK: "PRIVATE_LINK";
|
|
217
|
+
readonly PUBLIC: "PUBLIC";
|
|
218
|
+
};
|
|
219
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
220
|
+
export declare const ScheduleDisabledBy: {
|
|
221
|
+
readonly SERVICE: "SERVICE";
|
|
222
|
+
readonly USER: "USER";
|
|
223
|
+
};
|
|
224
|
+
export type ScheduleDisabledBy =
|
|
225
|
+
(typeof ScheduleDisabledBy)[keyof typeof ScheduleDisabledBy];
|
|
226
|
+
export declare const TaskStatus: {
|
|
227
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
228
|
+
readonly CREATING: "CREATING";
|
|
229
|
+
readonly QUEUED: "QUEUED";
|
|
230
|
+
readonly RUNNING: "RUNNING";
|
|
231
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
232
|
+
};
|
|
233
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
234
|
+
export declare const PhaseStatus: {
|
|
235
|
+
readonly ERROR: "ERROR";
|
|
236
|
+
readonly PENDING: "PENDING";
|
|
237
|
+
readonly SUCCESS: "SUCCESS";
|
|
238
|
+
};
|
|
239
|
+
export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
|
|
240
|
+
export declare const TaskExecutionStatus: {
|
|
241
|
+
readonly CANCELLING: "CANCELLING";
|
|
242
|
+
readonly ERROR: "ERROR";
|
|
243
|
+
readonly LAUNCHING: "LAUNCHING";
|
|
244
|
+
readonly PREPARING: "PREPARING";
|
|
245
|
+
readonly QUEUED: "QUEUED";
|
|
246
|
+
readonly SUCCESS: "SUCCESS";
|
|
247
|
+
readonly TRANSFERRING: "TRANSFERRING";
|
|
248
|
+
readonly VERIFYING: "VERIFYING";
|
|
249
|
+
};
|
|
250
|
+
export type TaskExecutionStatus =
|
|
251
|
+
(typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
|
|
252
|
+
export declare const LocationFilterName: {
|
|
253
|
+
readonly CreationTime: "CreationTime";
|
|
254
|
+
readonly LocationType: "LocationType";
|
|
255
|
+
readonly LocationUri: "LocationUri";
|
|
256
|
+
};
|
|
257
|
+
export type LocationFilterName =
|
|
258
|
+
(typeof LocationFilterName)[keyof typeof LocationFilterName];
|
|
259
|
+
export declare const Operator: {
|
|
260
|
+
readonly BEGINS_WITH: "BeginsWith";
|
|
261
|
+
readonly CONTAINS: "Contains";
|
|
262
|
+
readonly EQ: "Equals";
|
|
263
|
+
readonly GE: "GreaterThanOrEqual";
|
|
264
|
+
readonly GT: "GreaterThan";
|
|
265
|
+
readonly IN: "In";
|
|
266
|
+
readonly LE: "LessThanOrEqual";
|
|
267
|
+
readonly LT: "LessThan";
|
|
268
|
+
readonly NE: "NotEquals";
|
|
269
|
+
readonly NOT_CONTAINS: "NotContains";
|
|
270
|
+
};
|
|
271
|
+
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
272
|
+
export declare const TaskFilterName: {
|
|
273
|
+
readonly CreationTime: "CreationTime";
|
|
274
|
+
readonly LocationId: "LocationId";
|
|
275
|
+
};
|
|
276
|
+
export type TaskFilterName =
|
|
277
|
+
(typeof TaskFilterName)[keyof typeof TaskFilterName];
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DataSyncServiceException as __BaseException } from "./DataSyncServiceException";
|
|
3
|
+
export declare class InternalException extends __BaseException {
|
|
4
|
+
readonly name: "InternalException";
|
|
5
|
+
readonly $fault: "server";
|
|
6
|
+
errorCode?: string | undefined;
|
|
7
|
+
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
8
|
+
}
|
|
9
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
10
|
+
readonly name: "InvalidRequestException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
errorCode?: string | undefined;
|
|
13
|
+
datasyncErrorCode?: string | undefined;
|
|
14
|
+
constructor(
|
|
15
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
16
|
+
);
|
|
17
|
+
}
|