@aws-sdk/client-s3tables 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 +44 -43
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +43 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -128
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +123 -0
- package/dist-types/models/errors.d.ts +86 -0
- package/dist-types/models/models_0.d.ts +1 -209
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +60 -0
- package/dist-types/ts3.4/models/errors.d.ts +45 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -105
- 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
package/dist-cjs/index.js
CHANGED
|
@@ -201,49 +201,6 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends S3Tables
|
|
|
201
201
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
202
202
|
}
|
|
203
203
|
};
|
|
204
|
-
const SSEAlgorithm = {
|
|
205
|
-
AES256: "AES256",
|
|
206
|
-
AWS_KMS: "aws:kms",
|
|
207
|
-
};
|
|
208
|
-
const OpenTableFormat = {
|
|
209
|
-
ICEBERG: "ICEBERG",
|
|
210
|
-
};
|
|
211
|
-
const TableType = {
|
|
212
|
-
AWS: "aws",
|
|
213
|
-
CUSTOMER: "customer",
|
|
214
|
-
};
|
|
215
|
-
const TableBucketType = {
|
|
216
|
-
AWS: "aws",
|
|
217
|
-
CUSTOMER: "customer",
|
|
218
|
-
};
|
|
219
|
-
const TableBucketMaintenanceType = {
|
|
220
|
-
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
221
|
-
};
|
|
222
|
-
const MaintenanceStatus = {
|
|
223
|
-
DISABLED: "disabled",
|
|
224
|
-
ENABLED: "enabled",
|
|
225
|
-
};
|
|
226
|
-
const TableMaintenanceType = {
|
|
227
|
-
ICEBERG_COMPACTION: "icebergCompaction",
|
|
228
|
-
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
229
|
-
};
|
|
230
|
-
const IcebergCompactionStrategy = {
|
|
231
|
-
AUTO: "auto",
|
|
232
|
-
BINPACK: "binpack",
|
|
233
|
-
SORT: "sort",
|
|
234
|
-
ZORDER: "z-order",
|
|
235
|
-
};
|
|
236
|
-
const TableMaintenanceJobType = {
|
|
237
|
-
ICEBERG_COMPACTION: "icebergCompaction",
|
|
238
|
-
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
239
|
-
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
240
|
-
};
|
|
241
|
-
const JobStatus = {
|
|
242
|
-
DISABLED: "Disabled",
|
|
243
|
-
FAILED: "Failed",
|
|
244
|
-
NOT_YET_RUN: "Not_Yet_Run",
|
|
245
|
-
SUCCESSFUL: "Successful",
|
|
246
|
-
};
|
|
247
204
|
|
|
248
205
|
const _ADE = "AccessDeniedException";
|
|
249
206
|
const _BRE = "BadRequestException";
|
|
@@ -1903,6 +1860,50 @@ const paginateListTableBuckets = core.createPaginator(S3TablesClient, ListTableB
|
|
|
1903
1860
|
|
|
1904
1861
|
const paginateListTables = core.createPaginator(S3TablesClient, ListTablesCommand, "continuationToken", "continuationToken", "maxTables");
|
|
1905
1862
|
|
|
1863
|
+
const SSEAlgorithm = {
|
|
1864
|
+
AES256: "AES256",
|
|
1865
|
+
AWS_KMS: "aws:kms",
|
|
1866
|
+
};
|
|
1867
|
+
const OpenTableFormat = {
|
|
1868
|
+
ICEBERG: "ICEBERG",
|
|
1869
|
+
};
|
|
1870
|
+
const TableType = {
|
|
1871
|
+
AWS: "aws",
|
|
1872
|
+
CUSTOMER: "customer",
|
|
1873
|
+
};
|
|
1874
|
+
const TableBucketType = {
|
|
1875
|
+
AWS: "aws",
|
|
1876
|
+
CUSTOMER: "customer",
|
|
1877
|
+
};
|
|
1878
|
+
const TableBucketMaintenanceType = {
|
|
1879
|
+
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
1880
|
+
};
|
|
1881
|
+
const MaintenanceStatus = {
|
|
1882
|
+
DISABLED: "disabled",
|
|
1883
|
+
ENABLED: "enabled",
|
|
1884
|
+
};
|
|
1885
|
+
const TableMaintenanceType = {
|
|
1886
|
+
ICEBERG_COMPACTION: "icebergCompaction",
|
|
1887
|
+
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
1888
|
+
};
|
|
1889
|
+
const IcebergCompactionStrategy = {
|
|
1890
|
+
AUTO: "auto",
|
|
1891
|
+
BINPACK: "binpack",
|
|
1892
|
+
SORT: "sort",
|
|
1893
|
+
ZORDER: "z-order",
|
|
1894
|
+
};
|
|
1895
|
+
const TableMaintenanceJobType = {
|
|
1896
|
+
ICEBERG_COMPACTION: "icebergCompaction",
|
|
1897
|
+
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
1898
|
+
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
1899
|
+
};
|
|
1900
|
+
const JobStatus = {
|
|
1901
|
+
DISABLED: "Disabled",
|
|
1902
|
+
FAILED: "Failed",
|
|
1903
|
+
NOT_YET_RUN: "Not_Yet_Run",
|
|
1904
|
+
SUCCESSFUL: "Successful",
|
|
1905
|
+
};
|
|
1906
|
+
|
|
1906
1907
|
Object.defineProperty(exports, "$Command", {
|
|
1907
1908
|
enumerable: true,
|
|
1908
1909
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./S3TablesClient";
|
|
|
2
2
|
export * from "./S3Tables";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { S3TablesServiceException } from "./models/S3TablesServiceException";
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export const SSEAlgorithm = {
|
|
2
|
+
AES256: "AES256",
|
|
3
|
+
AWS_KMS: "aws:kms",
|
|
4
|
+
};
|
|
5
|
+
export const OpenTableFormat = {
|
|
6
|
+
ICEBERG: "ICEBERG",
|
|
7
|
+
};
|
|
8
|
+
export const TableType = {
|
|
9
|
+
AWS: "aws",
|
|
10
|
+
CUSTOMER: "customer",
|
|
11
|
+
};
|
|
12
|
+
export const TableBucketType = {
|
|
13
|
+
AWS: "aws",
|
|
14
|
+
CUSTOMER: "customer",
|
|
15
|
+
};
|
|
16
|
+
export const TableBucketMaintenanceType = {
|
|
17
|
+
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
18
|
+
};
|
|
19
|
+
export const MaintenanceStatus = {
|
|
20
|
+
DISABLED: "disabled",
|
|
21
|
+
ENABLED: "enabled",
|
|
22
|
+
};
|
|
23
|
+
export const TableMaintenanceType = {
|
|
24
|
+
ICEBERG_COMPACTION: "icebergCompaction",
|
|
25
|
+
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
26
|
+
};
|
|
27
|
+
export const IcebergCompactionStrategy = {
|
|
28
|
+
AUTO: "auto",
|
|
29
|
+
BINPACK: "binpack",
|
|
30
|
+
SORT: "sort",
|
|
31
|
+
ZORDER: "z-order",
|
|
32
|
+
};
|
|
33
|
+
export const TableMaintenanceJobType = {
|
|
34
|
+
ICEBERG_COMPACTION: "icebergCompaction",
|
|
35
|
+
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
36
|
+
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
37
|
+
};
|
|
38
|
+
export const JobStatus = {
|
|
39
|
+
DISABLED: "Disabled",
|
|
40
|
+
FAILED: "Failed",
|
|
41
|
+
NOT_YET_RUN: "Not_Yet_Run",
|
|
42
|
+
SUCCESSFUL: "Successful",
|
|
43
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { S3TablesServiceException as __BaseException } from "./S3TablesServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class BadRequestException extends __BaseException {
|
|
15
|
+
name = "BadRequestException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "BadRequestException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ConflictException extends __BaseException {
|
|
27
|
+
name = "ConflictException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ConflictException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ForbiddenException extends __BaseException {
|
|
39
|
+
name = "ForbiddenException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ForbiddenException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class InternalServerErrorException extends __BaseException {
|
|
51
|
+
name = "InternalServerErrorException";
|
|
52
|
+
$fault = "server";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "InternalServerErrorException",
|
|
56
|
+
$fault: "server",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class NotFoundException extends __BaseException {
|
|
63
|
+
name = "NotFoundException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "NotFoundException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class TooManyRequestsException extends __BaseException {
|
|
75
|
+
name = "TooManyRequestsException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "TooManyRequestsException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -1,128 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class BadRequestException extends __BaseException {
|
|
15
|
-
name = "BadRequestException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "BadRequestException",
|
|
20
|
-
$fault: "client",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
export class ConflictException extends __BaseException {
|
|
27
|
-
name = "ConflictException";
|
|
28
|
-
$fault = "client";
|
|
29
|
-
constructor(opts) {
|
|
30
|
-
super({
|
|
31
|
-
name: "ConflictException",
|
|
32
|
-
$fault: "client",
|
|
33
|
-
...opts,
|
|
34
|
-
});
|
|
35
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
export class ForbiddenException extends __BaseException {
|
|
39
|
-
name = "ForbiddenException";
|
|
40
|
-
$fault = "client";
|
|
41
|
-
constructor(opts) {
|
|
42
|
-
super({
|
|
43
|
-
name: "ForbiddenException",
|
|
44
|
-
$fault: "client",
|
|
45
|
-
...opts,
|
|
46
|
-
});
|
|
47
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export class InternalServerErrorException extends __BaseException {
|
|
51
|
-
name = "InternalServerErrorException";
|
|
52
|
-
$fault = "server";
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
super({
|
|
55
|
-
name: "InternalServerErrorException",
|
|
56
|
-
$fault: "server",
|
|
57
|
-
...opts,
|
|
58
|
-
});
|
|
59
|
-
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export class NotFoundException extends __BaseException {
|
|
63
|
-
name = "NotFoundException";
|
|
64
|
-
$fault = "client";
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "NotFoundException",
|
|
68
|
-
$fault: "client",
|
|
69
|
-
...opts,
|
|
70
|
-
});
|
|
71
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
export class TooManyRequestsException extends __BaseException {
|
|
75
|
-
name = "TooManyRequestsException";
|
|
76
|
-
$fault = "client";
|
|
77
|
-
constructor(opts) {
|
|
78
|
-
super({
|
|
79
|
-
name: "TooManyRequestsException",
|
|
80
|
-
$fault: "client",
|
|
81
|
-
...opts,
|
|
82
|
-
});
|
|
83
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
export const SSEAlgorithm = {
|
|
87
|
-
AES256: "AES256",
|
|
88
|
-
AWS_KMS: "aws:kms",
|
|
89
|
-
};
|
|
90
|
-
export const OpenTableFormat = {
|
|
91
|
-
ICEBERG: "ICEBERG",
|
|
92
|
-
};
|
|
93
|
-
export const TableType = {
|
|
94
|
-
AWS: "aws",
|
|
95
|
-
CUSTOMER: "customer",
|
|
96
|
-
};
|
|
97
|
-
export const TableBucketType = {
|
|
98
|
-
AWS: "aws",
|
|
99
|
-
CUSTOMER: "customer",
|
|
100
|
-
};
|
|
101
|
-
export const TableBucketMaintenanceType = {
|
|
102
|
-
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
103
|
-
};
|
|
104
|
-
export const MaintenanceStatus = {
|
|
105
|
-
DISABLED: "disabled",
|
|
106
|
-
ENABLED: "enabled",
|
|
107
|
-
};
|
|
108
|
-
export const TableMaintenanceType = {
|
|
109
|
-
ICEBERG_COMPACTION: "icebergCompaction",
|
|
110
|
-
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
111
|
-
};
|
|
112
|
-
export const IcebergCompactionStrategy = {
|
|
113
|
-
AUTO: "auto",
|
|
114
|
-
BINPACK: "binpack",
|
|
115
|
-
SORT: "sort",
|
|
116
|
-
ZORDER: "z-order",
|
|
117
|
-
};
|
|
118
|
-
export const TableMaintenanceJobType = {
|
|
119
|
-
ICEBERG_COMPACTION: "icebergCompaction",
|
|
120
|
-
ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",
|
|
121
|
-
ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",
|
|
122
|
-
};
|
|
123
|
-
export const JobStatus = {
|
|
124
|
-
DISABLED: "Disabled",
|
|
125
|
-
FAILED: "Failed",
|
|
126
|
-
NOT_YET_RUN: "Not_Yet_Run",
|
|
127
|
-
SUCCESSFUL: "Successful",
|
|
128
|
-
};
|
|
1
|
+
export {};
|
|
@@ -189,7 +189,7 @@ const _vT = "versionToken";
|
|
|
189
189
|
const _wL = "warehouseLocation";
|
|
190
190
|
const n0 = "com.amazonaws.s3tables";
|
|
191
191
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
192
|
-
import { AccessDeniedException as __AccessDeniedException, BadRequestException as __BadRequestException, ConflictException as __ConflictException, ForbiddenException as __ForbiddenException, InternalServerErrorException as __InternalServerErrorException, NotFoundException as __NotFoundException, TooManyRequestsException as __TooManyRequestsException, } from "../models/
|
|
192
|
+
import { AccessDeniedException as __AccessDeniedException, BadRequestException as __BadRequestException, ConflictException as __ConflictException, ForbiddenException as __ForbiddenException, InternalServerErrorException as __InternalServerErrorException, NotFoundException as __NotFoundException, TooManyRequestsException as __TooManyRequestsException, } from "../models/errors";
|
|
193
193
|
import { S3TablesServiceException as __S3TablesServiceException } from "../models/S3TablesServiceException";
|
|
194
194
|
export var AccessDeniedException = [
|
|
195
195
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { S3TablesExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { S3TablesServiceException } from "./models/S3TablesServiceException";
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const SSEAlgorithm: {
|
|
6
|
+
readonly AES256: "AES256";
|
|
7
|
+
readonly AWS_KMS: "aws:kms";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type SSEAlgorithm = (typeof SSEAlgorithm)[keyof typeof SSEAlgorithm];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const OpenTableFormat: {
|
|
18
|
+
readonly ICEBERG: "ICEBERG";
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export type OpenTableFormat = (typeof OpenTableFormat)[keyof typeof OpenTableFormat];
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* @enum
|
|
27
|
+
*/
|
|
28
|
+
export declare const TableType: {
|
|
29
|
+
readonly AWS: "aws";
|
|
30
|
+
readonly CUSTOMER: "customer";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type TableType = (typeof TableType)[keyof typeof TableType];
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* @enum
|
|
39
|
+
*/
|
|
40
|
+
export declare const TableBucketType: {
|
|
41
|
+
readonly AWS: "aws";
|
|
42
|
+
readonly CUSTOMER: "customer";
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export type TableBucketType = (typeof TableBucketType)[keyof typeof TableBucketType];
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* @enum
|
|
51
|
+
*/
|
|
52
|
+
export declare const TableBucketMaintenanceType: {
|
|
53
|
+
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export type TableBucketMaintenanceType = (typeof TableBucketMaintenanceType)[keyof typeof TableBucketMaintenanceType];
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
* @enum
|
|
62
|
+
*/
|
|
63
|
+
export declare const MaintenanceStatus: {
|
|
64
|
+
readonly DISABLED: "disabled";
|
|
65
|
+
readonly ENABLED: "enabled";
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export type MaintenanceStatus = (typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
* @enum
|
|
74
|
+
*/
|
|
75
|
+
export declare const TableMaintenanceType: {
|
|
76
|
+
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
77
|
+
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export type TableMaintenanceType = (typeof TableMaintenanceType)[keyof typeof TableMaintenanceType];
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
* @enum
|
|
86
|
+
*/
|
|
87
|
+
export declare const IcebergCompactionStrategy: {
|
|
88
|
+
readonly AUTO: "auto";
|
|
89
|
+
readonly BINPACK: "binpack";
|
|
90
|
+
readonly SORT: "sort";
|
|
91
|
+
readonly ZORDER: "z-order";
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export type IcebergCompactionStrategy = (typeof IcebergCompactionStrategy)[keyof typeof IcebergCompactionStrategy];
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
* @enum
|
|
100
|
+
*/
|
|
101
|
+
export declare const TableMaintenanceJobType: {
|
|
102
|
+
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
103
|
+
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
104
|
+
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
export type TableMaintenanceJobType = (typeof TableMaintenanceJobType)[keyof typeof TableMaintenanceJobType];
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
* @enum
|
|
113
|
+
*/
|
|
114
|
+
export declare const JobStatus: {
|
|
115
|
+
readonly DISABLED: "Disabled";
|
|
116
|
+
readonly FAILED: "Failed";
|
|
117
|
+
readonly NOT_YET_RUN: "Not_Yet_Run";
|
|
118
|
+
readonly SUCCESSFUL: "Successful";
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { S3TablesServiceException as __BaseException } from "./S3TablesServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The request is invalid or malformed.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class BadRequestException extends __BaseException {
|
|
20
|
+
readonly name: "BadRequestException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ConflictException extends __BaseException {
|
|
32
|
+
readonly name: "ConflictException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class ForbiddenException extends __BaseException {
|
|
44
|
+
readonly name: "ForbiddenException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>The request failed due to an internal server error.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
56
|
+
readonly name: "InternalServerErrorException";
|
|
57
|
+
readonly $fault: "server";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class NotFoundException extends __BaseException {
|
|
68
|
+
readonly name: "NotFoundException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
80
|
+
readonly name: "TooManyRequestsException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
86
|
+
}
|
|
@@ -1,41 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { S3TablesServiceException as __BaseException } from "./S3TablesServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* <p>The request is invalid or malformed.</p>
|
|
17
|
-
* @public
|
|
18
|
-
*/
|
|
19
|
-
export declare class BadRequestException extends __BaseException {
|
|
20
|
-
readonly name: "BadRequestException";
|
|
21
|
-
readonly $fault: "client";
|
|
22
|
-
/**
|
|
23
|
-
* @internal
|
|
24
|
-
*/
|
|
25
|
-
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
export declare class ConflictException extends __BaseException {
|
|
32
|
-
readonly name: "ConflictException";
|
|
33
|
-
readonly $fault: "client";
|
|
34
|
-
/**
|
|
35
|
-
* @internal
|
|
36
|
-
*/
|
|
37
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
|
-
}
|
|
1
|
+
import { IcebergCompactionStrategy, JobStatus, MaintenanceStatus, OpenTableFormat, SSEAlgorithm, TableBucketMaintenanceType, TableBucketType, TableMaintenanceJobType, TableMaintenanceType, TableType } from "./enums";
|
|
39
2
|
/**
|
|
40
3
|
* @public
|
|
41
4
|
*/
|
|
@@ -66,66 +29,6 @@ export interface CreateNamespaceResponse {
|
|
|
66
29
|
*/
|
|
67
30
|
namespace: string[] | undefined;
|
|
68
31
|
}
|
|
69
|
-
/**
|
|
70
|
-
* <p>The caller isn't authorized to make the request.</p>
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
export declare class ForbiddenException extends __BaseException {
|
|
74
|
-
readonly name: "ForbiddenException";
|
|
75
|
-
readonly $fault: "client";
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
80
|
-
}
|
|
81
|
-
/**
|
|
82
|
-
* <p>The request failed due to an internal server error.</p>
|
|
83
|
-
* @public
|
|
84
|
-
*/
|
|
85
|
-
export declare class InternalServerErrorException extends __BaseException {
|
|
86
|
-
readonly name: "InternalServerErrorException";
|
|
87
|
-
readonly $fault: "server";
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
92
|
-
}
|
|
93
|
-
/**
|
|
94
|
-
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
export declare class NotFoundException extends __BaseException {
|
|
98
|
-
readonly name: "NotFoundException";
|
|
99
|
-
readonly $fault: "client";
|
|
100
|
-
/**
|
|
101
|
-
* @internal
|
|
102
|
-
*/
|
|
103
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
104
|
-
}
|
|
105
|
-
/**
|
|
106
|
-
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
107
|
-
* @public
|
|
108
|
-
*/
|
|
109
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
110
|
-
readonly name: "TooManyRequestsException";
|
|
111
|
-
readonly $fault: "client";
|
|
112
|
-
/**
|
|
113
|
-
* @internal
|
|
114
|
-
*/
|
|
115
|
-
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
116
|
-
}
|
|
117
|
-
/**
|
|
118
|
-
* @public
|
|
119
|
-
* @enum
|
|
120
|
-
*/
|
|
121
|
-
export declare const SSEAlgorithm: {
|
|
122
|
-
readonly AES256: "AES256";
|
|
123
|
-
readonly AWS_KMS: "aws:kms";
|
|
124
|
-
};
|
|
125
|
-
/**
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
export type SSEAlgorithm = (typeof SSEAlgorithm)[keyof typeof SSEAlgorithm];
|
|
129
32
|
/**
|
|
130
33
|
* <p>Configuration specifying how data should be encrypted. This structure defines the encryption algorithm and optional KMS key to be used for server-side encryption.</p>
|
|
131
34
|
* @public
|
|
@@ -142,17 +45,6 @@ export interface EncryptionConfiguration {
|
|
|
142
45
|
*/
|
|
143
46
|
kmsKeyArn?: string | undefined;
|
|
144
47
|
}
|
|
145
|
-
/**
|
|
146
|
-
* @public
|
|
147
|
-
* @enum
|
|
148
|
-
*/
|
|
149
|
-
export declare const OpenTableFormat: {
|
|
150
|
-
readonly ICEBERG: "ICEBERG";
|
|
151
|
-
};
|
|
152
|
-
/**
|
|
153
|
-
* @public
|
|
154
|
-
*/
|
|
155
|
-
export type OpenTableFormat = (typeof OpenTableFormat)[keyof typeof OpenTableFormat];
|
|
156
48
|
/**
|
|
157
49
|
* <p>Contains details about a schema field.</p>
|
|
158
50
|
* @public
|
|
@@ -489,18 +381,6 @@ export interface GetTableRequest {
|
|
|
489
381
|
*/
|
|
490
382
|
tableArn?: string | undefined;
|
|
491
383
|
}
|
|
492
|
-
/**
|
|
493
|
-
* @public
|
|
494
|
-
* @enum
|
|
495
|
-
*/
|
|
496
|
-
export declare const TableType: {
|
|
497
|
-
readonly AWS: "aws";
|
|
498
|
-
readonly CUSTOMER: "customer";
|
|
499
|
-
};
|
|
500
|
-
/**
|
|
501
|
-
* @public
|
|
502
|
-
*/
|
|
503
|
-
export type TableType = (typeof TableType)[keyof typeof TableType];
|
|
504
384
|
/**
|
|
505
385
|
* @public
|
|
506
386
|
*/
|
|
@@ -596,18 +476,6 @@ export interface GetTableBucketRequest {
|
|
|
596
476
|
*/
|
|
597
477
|
tableBucketARN: string | undefined;
|
|
598
478
|
}
|
|
599
|
-
/**
|
|
600
|
-
* @public
|
|
601
|
-
* @enum
|
|
602
|
-
*/
|
|
603
|
-
export declare const TableBucketType: {
|
|
604
|
-
readonly AWS: "aws";
|
|
605
|
-
readonly CUSTOMER: "customer";
|
|
606
|
-
};
|
|
607
|
-
/**
|
|
608
|
-
* @public
|
|
609
|
-
*/
|
|
610
|
-
export type TableBucketType = (typeof TableBucketType)[keyof typeof TableBucketType];
|
|
611
479
|
/**
|
|
612
480
|
* @public
|
|
613
481
|
*/
|
|
@@ -673,17 +541,6 @@ export interface GetTableBucketMaintenanceConfigurationRequest {
|
|
|
673
541
|
*/
|
|
674
542
|
tableBucketARN: string | undefined;
|
|
675
543
|
}
|
|
676
|
-
/**
|
|
677
|
-
* @public
|
|
678
|
-
* @enum
|
|
679
|
-
*/
|
|
680
|
-
export declare const TableBucketMaintenanceType: {
|
|
681
|
-
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
682
|
-
};
|
|
683
|
-
/**
|
|
684
|
-
* @public
|
|
685
|
-
*/
|
|
686
|
-
export type TableBucketMaintenanceType = (typeof TableBucketMaintenanceType)[keyof typeof TableBucketMaintenanceType];
|
|
687
544
|
/**
|
|
688
545
|
* <p>Contains details about the unreferenced file removal settings for an Iceberg table bucket.</p>
|
|
689
546
|
* @public
|
|
@@ -733,18 +590,6 @@ export declare namespace TableBucketMaintenanceSettings {
|
|
|
733
590
|
_: (name: string, value: any) => T;
|
|
734
591
|
}
|
|
735
592
|
}
|
|
736
|
-
/**
|
|
737
|
-
* @public
|
|
738
|
-
* @enum
|
|
739
|
-
*/
|
|
740
|
-
export declare const MaintenanceStatus: {
|
|
741
|
-
readonly DISABLED: "disabled";
|
|
742
|
-
readonly ENABLED: "enabled";
|
|
743
|
-
};
|
|
744
|
-
/**
|
|
745
|
-
* @public
|
|
746
|
-
*/
|
|
747
|
-
export type MaintenanceStatus = (typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
|
|
748
593
|
/**
|
|
749
594
|
* <p>Details about the values that define the maintenance configuration for a table bucket.</p>
|
|
750
595
|
* @public
|
|
@@ -871,32 +716,6 @@ export interface GetTableMaintenanceConfigurationRequest {
|
|
|
871
716
|
*/
|
|
872
717
|
name: string | undefined;
|
|
873
718
|
}
|
|
874
|
-
/**
|
|
875
|
-
* @public
|
|
876
|
-
* @enum
|
|
877
|
-
*/
|
|
878
|
-
export declare const TableMaintenanceType: {
|
|
879
|
-
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
880
|
-
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
881
|
-
};
|
|
882
|
-
/**
|
|
883
|
-
* @public
|
|
884
|
-
*/
|
|
885
|
-
export type TableMaintenanceType = (typeof TableMaintenanceType)[keyof typeof TableMaintenanceType];
|
|
886
|
-
/**
|
|
887
|
-
* @public
|
|
888
|
-
* @enum
|
|
889
|
-
*/
|
|
890
|
-
export declare const IcebergCompactionStrategy: {
|
|
891
|
-
readonly AUTO: "auto";
|
|
892
|
-
readonly BINPACK: "binpack";
|
|
893
|
-
readonly SORT: "sort";
|
|
894
|
-
readonly ZORDER: "z-order";
|
|
895
|
-
};
|
|
896
|
-
/**
|
|
897
|
-
* @public
|
|
898
|
-
*/
|
|
899
|
-
export type IcebergCompactionStrategy = (typeof IcebergCompactionStrategy)[keyof typeof IcebergCompactionStrategy];
|
|
900
719
|
/**
|
|
901
720
|
* <p>Contains details about the compaction settings for an Iceberg table.</p>
|
|
902
721
|
* @public
|
|
@@ -1025,33 +844,6 @@ export interface GetTableMaintenanceJobStatusRequest {
|
|
|
1025
844
|
*/
|
|
1026
845
|
name: string | undefined;
|
|
1027
846
|
}
|
|
1028
|
-
/**
|
|
1029
|
-
* @public
|
|
1030
|
-
* @enum
|
|
1031
|
-
*/
|
|
1032
|
-
export declare const TableMaintenanceJobType: {
|
|
1033
|
-
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
1034
|
-
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
1035
|
-
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
1036
|
-
};
|
|
1037
|
-
/**
|
|
1038
|
-
* @public
|
|
1039
|
-
*/
|
|
1040
|
-
export type TableMaintenanceJobType = (typeof TableMaintenanceJobType)[keyof typeof TableMaintenanceJobType];
|
|
1041
|
-
/**
|
|
1042
|
-
* @public
|
|
1043
|
-
* @enum
|
|
1044
|
-
*/
|
|
1045
|
-
export declare const JobStatus: {
|
|
1046
|
-
readonly DISABLED: "Disabled";
|
|
1047
|
-
readonly FAILED: "Failed";
|
|
1048
|
-
readonly NOT_YET_RUN: "Not_Yet_Run";
|
|
1049
|
-
readonly SUCCESSFUL: "Successful";
|
|
1050
|
-
};
|
|
1051
|
-
/**
|
|
1052
|
-
* @public
|
|
1053
|
-
*/
|
|
1054
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
1055
847
|
/**
|
|
1056
848
|
* <p>Details about the status of a maintenance job.</p>
|
|
1057
849
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { S3TablesExtensionConfiguration } 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 { S3TablesServiceException } from "./models/S3TablesServiceException";
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export declare const SSEAlgorithm: {
|
|
2
|
+
readonly AES256: "AES256";
|
|
3
|
+
readonly AWS_KMS: "aws:kms";
|
|
4
|
+
};
|
|
5
|
+
export type SSEAlgorithm = (typeof SSEAlgorithm)[keyof typeof SSEAlgorithm];
|
|
6
|
+
export declare const OpenTableFormat: {
|
|
7
|
+
readonly ICEBERG: "ICEBERG";
|
|
8
|
+
};
|
|
9
|
+
export type OpenTableFormat =
|
|
10
|
+
(typeof OpenTableFormat)[keyof typeof OpenTableFormat];
|
|
11
|
+
export declare const TableType: {
|
|
12
|
+
readonly AWS: "aws";
|
|
13
|
+
readonly CUSTOMER: "customer";
|
|
14
|
+
};
|
|
15
|
+
export type TableType = (typeof TableType)[keyof typeof TableType];
|
|
16
|
+
export declare const TableBucketType: {
|
|
17
|
+
readonly AWS: "aws";
|
|
18
|
+
readonly CUSTOMER: "customer";
|
|
19
|
+
};
|
|
20
|
+
export type TableBucketType =
|
|
21
|
+
(typeof TableBucketType)[keyof typeof TableBucketType];
|
|
22
|
+
export declare const TableBucketMaintenanceType: {
|
|
23
|
+
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
24
|
+
};
|
|
25
|
+
export type TableBucketMaintenanceType =
|
|
26
|
+
(typeof TableBucketMaintenanceType)[keyof typeof TableBucketMaintenanceType];
|
|
27
|
+
export declare const MaintenanceStatus: {
|
|
28
|
+
readonly DISABLED: "disabled";
|
|
29
|
+
readonly ENABLED: "enabled";
|
|
30
|
+
};
|
|
31
|
+
export type MaintenanceStatus =
|
|
32
|
+
(typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
|
|
33
|
+
export declare const TableMaintenanceType: {
|
|
34
|
+
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
35
|
+
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
36
|
+
};
|
|
37
|
+
export type TableMaintenanceType =
|
|
38
|
+
(typeof TableMaintenanceType)[keyof typeof TableMaintenanceType];
|
|
39
|
+
export declare const IcebergCompactionStrategy: {
|
|
40
|
+
readonly AUTO: "auto";
|
|
41
|
+
readonly BINPACK: "binpack";
|
|
42
|
+
readonly SORT: "sort";
|
|
43
|
+
readonly ZORDER: "z-order";
|
|
44
|
+
};
|
|
45
|
+
export type IcebergCompactionStrategy =
|
|
46
|
+
(typeof IcebergCompactionStrategy)[keyof typeof IcebergCompactionStrategy];
|
|
47
|
+
export declare const TableMaintenanceJobType: {
|
|
48
|
+
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
49
|
+
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
50
|
+
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
51
|
+
};
|
|
52
|
+
export type TableMaintenanceJobType =
|
|
53
|
+
(typeof TableMaintenanceJobType)[keyof typeof TableMaintenanceJobType];
|
|
54
|
+
export declare const JobStatus: {
|
|
55
|
+
readonly DISABLED: "Disabled";
|
|
56
|
+
readonly FAILED: "Failed";
|
|
57
|
+
readonly NOT_YET_RUN: "Not_Yet_Run";
|
|
58
|
+
readonly SUCCESSFUL: "Successful";
|
|
59
|
+
};
|
|
60
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { S3TablesServiceException as __BaseException } from "./S3TablesServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class BadRequestException extends __BaseException {
|
|
11
|
+
readonly name: "BadRequestException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ConflictException extends __BaseException {
|
|
18
|
+
readonly name: "ConflictException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
21
|
+
}
|
|
22
|
+
export declare class ForbiddenException extends __BaseException {
|
|
23
|
+
readonly name: "ForbiddenException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
28
|
+
readonly name: "InternalServerErrorException";
|
|
29
|
+
readonly $fault: "server";
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class NotFoundException extends __BaseException {
|
|
35
|
+
readonly name: "NotFoundException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
40
|
+
readonly name: "TooManyRequestsException";
|
|
41
|
+
readonly $fault: "client";
|
|
42
|
+
constructor(
|
|
43
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
44
|
+
);
|
|
45
|
+
}
|
|
@@ -1,24 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
constructor(
|
|
14
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
15
|
-
);
|
|
16
|
-
}
|
|
17
|
-
export declare class ConflictException extends __BaseException {
|
|
18
|
-
readonly name: "ConflictException";
|
|
19
|
-
readonly $fault: "client";
|
|
20
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
21
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
IcebergCompactionStrategy,
|
|
3
|
+
JobStatus,
|
|
4
|
+
MaintenanceStatus,
|
|
5
|
+
OpenTableFormat,
|
|
6
|
+
SSEAlgorithm,
|
|
7
|
+
TableBucketMaintenanceType,
|
|
8
|
+
TableBucketType,
|
|
9
|
+
TableMaintenanceJobType,
|
|
10
|
+
TableMaintenanceType,
|
|
11
|
+
TableType,
|
|
12
|
+
} from "./enums";
|
|
22
13
|
export interface CreateNamespaceRequest {
|
|
23
14
|
tableBucketARN: string | undefined;
|
|
24
15
|
namespace: string[] | undefined;
|
|
@@ -27,44 +18,10 @@ export interface CreateNamespaceResponse {
|
|
|
27
18
|
tableBucketARN: string | undefined;
|
|
28
19
|
namespace: string[] | undefined;
|
|
29
20
|
}
|
|
30
|
-
export declare class ForbiddenException extends __BaseException {
|
|
31
|
-
readonly name: "ForbiddenException";
|
|
32
|
-
readonly $fault: "client";
|
|
33
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
34
|
-
}
|
|
35
|
-
export declare class InternalServerErrorException extends __BaseException {
|
|
36
|
-
readonly name: "InternalServerErrorException";
|
|
37
|
-
readonly $fault: "server";
|
|
38
|
-
constructor(
|
|
39
|
-
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
40
|
-
);
|
|
41
|
-
}
|
|
42
|
-
export declare class NotFoundException extends __BaseException {
|
|
43
|
-
readonly name: "NotFoundException";
|
|
44
|
-
readonly $fault: "client";
|
|
45
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
46
|
-
}
|
|
47
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
48
|
-
readonly name: "TooManyRequestsException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
constructor(
|
|
51
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
52
|
-
);
|
|
53
|
-
}
|
|
54
|
-
export declare const SSEAlgorithm: {
|
|
55
|
-
readonly AES256: "AES256";
|
|
56
|
-
readonly AWS_KMS: "aws:kms";
|
|
57
|
-
};
|
|
58
|
-
export type SSEAlgorithm = (typeof SSEAlgorithm)[keyof typeof SSEAlgorithm];
|
|
59
21
|
export interface EncryptionConfiguration {
|
|
60
22
|
sseAlgorithm: SSEAlgorithm | undefined;
|
|
61
23
|
kmsKeyArn?: string | undefined;
|
|
62
24
|
}
|
|
63
|
-
export declare const OpenTableFormat: {
|
|
64
|
-
readonly ICEBERG: "ICEBERG";
|
|
65
|
-
};
|
|
66
|
-
export type OpenTableFormat =
|
|
67
|
-
(typeof OpenTableFormat)[keyof typeof OpenTableFormat];
|
|
68
25
|
export interface SchemaField {
|
|
69
26
|
name: string | undefined;
|
|
70
27
|
type: string | undefined;
|
|
@@ -159,11 +116,6 @@ export interface GetTableRequest {
|
|
|
159
116
|
name?: string | undefined;
|
|
160
117
|
tableArn?: string | undefined;
|
|
161
118
|
}
|
|
162
|
-
export declare const TableType: {
|
|
163
|
-
readonly AWS: "aws";
|
|
164
|
-
readonly CUSTOMER: "customer";
|
|
165
|
-
};
|
|
166
|
-
export type TableType = (typeof TableType)[keyof typeof TableType];
|
|
167
119
|
export interface GetTableResponse {
|
|
168
120
|
name: string | undefined;
|
|
169
121
|
type: TableType | undefined;
|
|
@@ -185,12 +137,6 @@ export interface GetTableResponse {
|
|
|
185
137
|
export interface GetTableBucketRequest {
|
|
186
138
|
tableBucketARN: string | undefined;
|
|
187
139
|
}
|
|
188
|
-
export declare const TableBucketType: {
|
|
189
|
-
readonly AWS: "aws";
|
|
190
|
-
readonly CUSTOMER: "customer";
|
|
191
|
-
};
|
|
192
|
-
export type TableBucketType =
|
|
193
|
-
(typeof TableBucketType)[keyof typeof TableBucketType];
|
|
194
140
|
export interface GetTableBucketResponse {
|
|
195
141
|
arn: string | undefined;
|
|
196
142
|
name: string | undefined;
|
|
@@ -208,11 +154,6 @@ export interface GetTableBucketEncryptionResponse {
|
|
|
208
154
|
export interface GetTableBucketMaintenanceConfigurationRequest {
|
|
209
155
|
tableBucketARN: string | undefined;
|
|
210
156
|
}
|
|
211
|
-
export declare const TableBucketMaintenanceType: {
|
|
212
|
-
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
213
|
-
};
|
|
214
|
-
export type TableBucketMaintenanceType =
|
|
215
|
-
(typeof TableBucketMaintenanceType)[keyof typeof TableBucketMaintenanceType];
|
|
216
157
|
export interface IcebergUnreferencedFileRemovalSettings {
|
|
217
158
|
unreferencedDays?: number | undefined;
|
|
218
159
|
nonCurrentDays?: number | undefined;
|
|
@@ -236,12 +177,6 @@ export declare namespace TableBucketMaintenanceSettings {
|
|
|
236
177
|
_: (name: string, value: any) => T;
|
|
237
178
|
}
|
|
238
179
|
}
|
|
239
|
-
export declare const MaintenanceStatus: {
|
|
240
|
-
readonly DISABLED: "disabled";
|
|
241
|
-
readonly ENABLED: "enabled";
|
|
242
|
-
};
|
|
243
|
-
export type MaintenanceStatus =
|
|
244
|
-
(typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
|
|
245
180
|
export interface TableBucketMaintenanceConfigurationValue {
|
|
246
181
|
status?: MaintenanceStatus | undefined;
|
|
247
182
|
settings?: TableBucketMaintenanceSettings | undefined;
|
|
@@ -283,20 +218,6 @@ export interface GetTableMaintenanceConfigurationRequest {
|
|
|
283
218
|
namespace: string | undefined;
|
|
284
219
|
name: string | undefined;
|
|
285
220
|
}
|
|
286
|
-
export declare const TableMaintenanceType: {
|
|
287
|
-
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
288
|
-
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
289
|
-
};
|
|
290
|
-
export type TableMaintenanceType =
|
|
291
|
-
(typeof TableMaintenanceType)[keyof typeof TableMaintenanceType];
|
|
292
|
-
export declare const IcebergCompactionStrategy: {
|
|
293
|
-
readonly AUTO: "auto";
|
|
294
|
-
readonly BINPACK: "binpack";
|
|
295
|
-
readonly SORT: "sort";
|
|
296
|
-
readonly ZORDER: "z-order";
|
|
297
|
-
};
|
|
298
|
-
export type IcebergCompactionStrategy =
|
|
299
|
-
(typeof IcebergCompactionStrategy)[keyof typeof IcebergCompactionStrategy];
|
|
300
221
|
export interface IcebergCompactionSettings {
|
|
301
222
|
targetFileSizeMB?: number | undefined;
|
|
302
223
|
strategy?: IcebergCompactionStrategy | undefined;
|
|
@@ -346,20 +267,6 @@ export interface GetTableMaintenanceJobStatusRequest {
|
|
|
346
267
|
namespace: string | undefined;
|
|
347
268
|
name: string | undefined;
|
|
348
269
|
}
|
|
349
|
-
export declare const TableMaintenanceJobType: {
|
|
350
|
-
readonly ICEBERG_COMPACTION: "icebergCompaction";
|
|
351
|
-
readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
|
|
352
|
-
readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
|
|
353
|
-
};
|
|
354
|
-
export type TableMaintenanceJobType =
|
|
355
|
-
(typeof TableMaintenanceJobType)[keyof typeof TableMaintenanceJobType];
|
|
356
|
-
export declare const JobStatus: {
|
|
357
|
-
readonly DISABLED: "Disabled";
|
|
358
|
-
readonly FAILED: "Failed";
|
|
359
|
-
readonly NOT_YET_RUN: "Not_Yet_Run";
|
|
360
|
-
readonly SUCCESSFUL: "Successful";
|
|
361
|
-
};
|
|
362
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
363
270
|
export interface TableMaintenanceJobStatusValue {
|
|
364
271
|
status: JobStatus | undefined;
|
|
365
272
|
lastRunTimestamp?: Date | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3tables",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3tables Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3tables",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|