@aws-sdk/client-s3tables 3.987.0 → 3.988.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 +78 -1370
- package/dist-cjs/models/S3TablesServiceException.js +12 -0
- package/dist-cjs/models/errors.js +108 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1108 -0
- package/dist-es/models/enums.js +8 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +110 -55
- package/dist-types/commands/CreateTableCommand.d.ts +23 -0
- package/dist-types/models/enums.d.ts +24 -0
- package/dist-types/models/models_0.d.ts +101 -2
- package/dist-types/schemas/schemas_0.d.ts +17 -6
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -6
- package/package.json +13 -13
|
@@ -8,6 +8,18 @@ export declare const OpenTableFormat: {
|
|
|
8
8
|
};
|
|
9
9
|
export type OpenTableFormat =
|
|
10
10
|
(typeof OpenTableFormat)[keyof typeof OpenTableFormat];
|
|
11
|
+
export declare const IcebergSortDirection: {
|
|
12
|
+
readonly ASC: "asc";
|
|
13
|
+
readonly DESC: "desc";
|
|
14
|
+
};
|
|
15
|
+
export type IcebergSortDirection =
|
|
16
|
+
(typeof IcebergSortDirection)[keyof typeof IcebergSortDirection];
|
|
17
|
+
export declare const IcebergNullOrder: {
|
|
18
|
+
readonly NULLS_FIRST: "nulls-first";
|
|
19
|
+
readonly NULLS_LAST: "nulls-last";
|
|
20
|
+
};
|
|
21
|
+
export type IcebergNullOrder =
|
|
22
|
+
(typeof IcebergNullOrder)[keyof typeof IcebergNullOrder];
|
|
11
23
|
export declare const StorageClass: {
|
|
12
24
|
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
13
25
|
readonly STANDARD: "STANDARD";
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
IcebergCompactionStrategy,
|
|
3
|
+
IcebergNullOrder,
|
|
4
|
+
IcebergSortDirection,
|
|
3
5
|
JobStatus,
|
|
4
6
|
MaintenanceStatus,
|
|
5
7
|
OpenTableFormat,
|
|
@@ -26,7 +28,18 @@ export interface EncryptionConfiguration {
|
|
|
26
28
|
sseAlgorithm: SSEAlgorithm | undefined;
|
|
27
29
|
kmsKeyArn?: string | undefined;
|
|
28
30
|
}
|
|
31
|
+
export interface IcebergPartitionField {
|
|
32
|
+
sourceId: number | undefined;
|
|
33
|
+
transform: string | undefined;
|
|
34
|
+
name: string | undefined;
|
|
35
|
+
fieldId?: number | undefined;
|
|
36
|
+
}
|
|
37
|
+
export interface IcebergPartitionSpec {
|
|
38
|
+
fields: IcebergPartitionField[] | undefined;
|
|
39
|
+
specId?: number | undefined;
|
|
40
|
+
}
|
|
29
41
|
export interface SchemaField {
|
|
42
|
+
id?: number | undefined;
|
|
30
43
|
name: string | undefined;
|
|
31
44
|
type: string | undefined;
|
|
32
45
|
required?: boolean | undefined;
|
|
@@ -34,8 +47,20 @@ export interface SchemaField {
|
|
|
34
47
|
export interface IcebergSchema {
|
|
35
48
|
fields: SchemaField[] | undefined;
|
|
36
49
|
}
|
|
50
|
+
export interface IcebergSortField {
|
|
51
|
+
sourceId: number | undefined;
|
|
52
|
+
transform: string | undefined;
|
|
53
|
+
direction: IcebergSortDirection | undefined;
|
|
54
|
+
nullOrder: IcebergNullOrder | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface IcebergSortOrder {
|
|
57
|
+
orderId: number | undefined;
|
|
58
|
+
fields: IcebergSortField[] | undefined;
|
|
59
|
+
}
|
|
37
60
|
export interface IcebergMetadata {
|
|
38
61
|
schema: IcebergSchema | undefined;
|
|
62
|
+
partitionSpec?: IcebergPartitionSpec | undefined;
|
|
63
|
+
writeOrder?: IcebergSortOrder | undefined;
|
|
39
64
|
properties?: Record<string, string> | undefined;
|
|
40
65
|
}
|
|
41
66
|
export type TableMetadata =
|
|
@@ -1,12 +1,20 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
StaticUnionSchema,
|
|
6
7
|
} from "@smithy/types";
|
|
8
|
+
export declare var S3TablesServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
8
10
|
export declare var BadRequestException$: StaticErrorSchema;
|
|
9
11
|
export declare var ConflictException$: StaticErrorSchema;
|
|
12
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
13
|
+
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
14
|
+
export declare var MethodNotAllowedException$: StaticErrorSchema;
|
|
15
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
16
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
17
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
10
18
|
export declare var CreateNamespaceRequest$: StaticStructureSchema;
|
|
11
19
|
export declare var CreateNamespaceResponse$: StaticStructureSchema;
|
|
12
20
|
export declare var CreateTableBucketRequest$: StaticStructureSchema;
|
|
@@ -23,7 +31,6 @@ export declare var DeleteTablePolicyRequest$: StaticStructureSchema;
|
|
|
23
31
|
export declare var DeleteTableReplicationRequest$: StaticStructureSchema;
|
|
24
32
|
export declare var DeleteTableRequest$: StaticStructureSchema;
|
|
25
33
|
export declare var EncryptionConfiguration$: StaticStructureSchema;
|
|
26
|
-
export declare var ForbiddenException$: StaticErrorSchema;
|
|
27
34
|
export declare var GetNamespaceRequest$: StaticStructureSchema;
|
|
28
35
|
export declare var GetNamespaceResponse$: StaticStructureSchema;
|
|
29
36
|
export declare var GetTableBucketEncryptionRequest$: StaticStructureSchema;
|
|
@@ -64,10 +71,13 @@ export declare var GetTableStorageClassRequest$: StaticStructureSchema;
|
|
|
64
71
|
export declare var GetTableStorageClassResponse$: StaticStructureSchema;
|
|
65
72
|
export declare var IcebergCompactionSettings$: StaticStructureSchema;
|
|
66
73
|
export declare var IcebergMetadata$: StaticStructureSchema;
|
|
74
|
+
export declare var IcebergPartitionField$: StaticStructureSchema;
|
|
75
|
+
export declare var IcebergPartitionSpec$: StaticStructureSchema;
|
|
67
76
|
export declare var IcebergSchema$: StaticStructureSchema;
|
|
68
77
|
export declare var IcebergSnapshotManagementSettings$: StaticStructureSchema;
|
|
78
|
+
export declare var IcebergSortField$: StaticStructureSchema;
|
|
79
|
+
export declare var IcebergSortOrder$: StaticStructureSchema;
|
|
69
80
|
export declare var IcebergUnreferencedFileRemovalSettings$: StaticStructureSchema;
|
|
70
|
-
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
71
81
|
export declare var LastSuccessfulReplicatedUpdate$: StaticStructureSchema;
|
|
72
82
|
export declare var ListNamespacesRequest$: StaticStructureSchema;
|
|
73
83
|
export declare var ListNamespacesResponse$: StaticStructureSchema;
|
|
@@ -78,9 +88,7 @@ export declare var ListTablesResponse$: StaticStructureSchema;
|
|
|
78
88
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
79
89
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
80
90
|
export declare var ManagedTableInformation$: StaticStructureSchema;
|
|
81
|
-
export declare var MethodNotAllowedException$: StaticErrorSchema;
|
|
82
91
|
export declare var NamespaceSummary$: StaticStructureSchema;
|
|
83
|
-
export declare var NotFoundException$: StaticErrorSchema;
|
|
84
92
|
export declare var PutTableBucketEncryptionRequest$: StaticStructureSchema;
|
|
85
93
|
export declare var PutTableBucketMaintenanceConfigurationRequest$: StaticStructureSchema;
|
|
86
94
|
export declare var PutTableBucketMetricsConfigurationRequest$: StaticStructureSchema;
|
|
@@ -113,12 +121,10 @@ export declare var TableReplicationRule$: StaticStructureSchema;
|
|
|
113
121
|
export declare var TableSummary$: StaticStructureSchema;
|
|
114
122
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
115
123
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
116
|
-
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
117
124
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
118
125
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
119
126
|
export declare var UpdateTableMetadataLocationRequest$: StaticStructureSchema;
|
|
120
127
|
export declare var UpdateTableMetadataLocationResponse$: StaticStructureSchema;
|
|
121
|
-
export declare var S3TablesServiceException$: StaticErrorSchema;
|
|
122
128
|
export declare var TableBucketMaintenanceSettings$: StaticUnionSchema;
|
|
123
129
|
export declare var TableMaintenanceSettings$: StaticUnionSchema;
|
|
124
130
|
export declare var TableMetadata$: StaticUnionSchema;
|
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.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3tables",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|