@aws-sdk/client-s3tables 3.952.0 → 3.953.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 +557 -374
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateNamespaceCommand.js +2 -2
- package/dist-es/commands/CreateTableBucketCommand.js +2 -2
- package/dist-es/commands/CreateTableCommand.js +2 -2
- package/dist-es/commands/DeleteNamespaceCommand.js +2 -2
- package/dist-es/commands/DeleteTableBucketCommand.js +2 -2
- package/dist-es/commands/DeleteTableBucketEncryptionCommand.js +2 -2
- package/dist-es/commands/DeleteTableBucketMetricsConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteTableBucketPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteTableBucketReplicationCommand.js +2 -2
- package/dist-es/commands/DeleteTableCommand.js +2 -2
- package/dist-es/commands/DeleteTablePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteTableReplicationCommand.js +2 -2
- package/dist-es/commands/GetNamespaceCommand.js +2 -2
- package/dist-es/commands/GetTableBucketCommand.js +2 -2
- package/dist-es/commands/GetTableBucketEncryptionCommand.js +2 -2
- package/dist-es/commands/GetTableBucketMaintenanceConfigurationCommand.js +2 -2
- package/dist-es/commands/GetTableBucketMetricsConfigurationCommand.js +2 -2
- package/dist-es/commands/GetTableBucketPolicyCommand.js +2 -2
- package/dist-es/commands/GetTableBucketReplicationCommand.js +2 -2
- package/dist-es/commands/GetTableBucketStorageClassCommand.js +2 -2
- package/dist-es/commands/GetTableCommand.js +2 -2
- package/dist-es/commands/GetTableEncryptionCommand.js +2 -2
- package/dist-es/commands/GetTableMaintenanceConfigurationCommand.js +2 -2
- package/dist-es/commands/GetTableMaintenanceJobStatusCommand.js +2 -2
- package/dist-es/commands/GetTableMetadataLocationCommand.js +2 -2
- package/dist-es/commands/GetTablePolicyCommand.js +2 -2
- package/dist-es/commands/GetTableRecordExpirationConfigurationCommand.js +2 -2
- package/dist-es/commands/GetTableRecordExpirationJobStatusCommand.js +2 -2
- package/dist-es/commands/GetTableReplicationCommand.js +2 -2
- package/dist-es/commands/GetTableReplicationStatusCommand.js +2 -2
- package/dist-es/commands/GetTableStorageClassCommand.js +2 -2
- package/dist-es/commands/ListNamespacesCommand.js +2 -2
- package/dist-es/commands/ListTableBucketsCommand.js +2 -2
- package/dist-es/commands/ListTablesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutTableBucketEncryptionCommand.js +2 -2
- package/dist-es/commands/PutTableBucketMaintenanceConfigurationCommand.js +2 -2
- package/dist-es/commands/PutTableBucketMetricsConfigurationCommand.js +2 -2
- package/dist-es/commands/PutTableBucketPolicyCommand.js +2 -2
- package/dist-es/commands/PutTableBucketReplicationCommand.js +2 -2
- package/dist-es/commands/PutTableBucketStorageClassCommand.js +2 -2
- package/dist-es/commands/PutTableMaintenanceConfigurationCommand.js +2 -2
- package/dist-es/commands/PutTablePolicyCommand.js +2 -2
- package/dist-es/commands/PutTableRecordExpirationConfigurationCommand.js +2 -2
- package/dist-es/commands/PutTableReplicationCommand.js +2 -2
- package/dist-es/commands/RenameTableCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateTableMetadataLocationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +322 -306
- package/dist-types/S3TablesClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +168 -184
- package/dist-types/ts3.4/S3TablesClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +167 -185
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.s3tables",
|
|
32
|
+
version: "2018-05-10",
|
|
33
|
+
serviceTarget: "S3TableBuckets",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "S3Tables",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateNamespace } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateNamespace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateNamespaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateNamespaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "CreateNamespace", {})
|
|
13
13
|
.n("S3TablesClient", "CreateNamespaceCommand")
|
|
14
|
-
.sc(CreateNamespace)
|
|
14
|
+
.sc(CreateNamespace$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTableBucket } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTableBucket$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTableBucketCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTableBucketCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "CreateTableBucket", {})
|
|
13
13
|
.n("S3TablesClient", "CreateTableBucketCommand")
|
|
14
|
-
.sc(CreateTableBucket)
|
|
14
|
+
.sc(CreateTableBucket$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTable } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTableCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "CreateTable", {})
|
|
13
13
|
.n("S3TablesClient", "CreateTableCommand")
|
|
14
|
-
.sc(CreateTable)
|
|
14
|
+
.sc(CreateTable$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteNamespace } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteNamespace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteNamespaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteNamespaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteNamespace", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteNamespaceCommand")
|
|
14
|
-
.sc(DeleteNamespace)
|
|
14
|
+
.sc(DeleteNamespace$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTableBucket } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTableBucket$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableBucketCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTableBucketCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTableBucket", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTableBucketCommand")
|
|
14
|
-
.sc(DeleteTableBucket)
|
|
14
|
+
.sc(DeleteTableBucket$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTableBucketEncryption } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTableBucketEncryption$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableBucketEncryptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTableBucketEncryptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTableBucketEncryption", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTableBucketEncryptionCommand")
|
|
14
|
-
.sc(DeleteTableBucketEncryption)
|
|
14
|
+
.sc(DeleteTableBucketEncryption$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTableBucketMetricsConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTableBucketMetricsConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableBucketMetricsConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTableBucketMetricsConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTableBucketMetricsConfiguration", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTableBucketMetricsConfigurationCommand")
|
|
14
|
-
.sc(DeleteTableBucketMetricsConfiguration)
|
|
14
|
+
.sc(DeleteTableBucketMetricsConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTableBucketPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTableBucketPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableBucketPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTableBucketPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTableBucketPolicy", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTableBucketPolicyCommand")
|
|
14
|
-
.sc(DeleteTableBucketPolicy)
|
|
14
|
+
.sc(DeleteTableBucketPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTableBucketReplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTableBucketReplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableBucketReplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTableBucketReplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTableBucketReplication", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTableBucketReplicationCommand")
|
|
14
|
-
.sc(DeleteTableBucketReplication)
|
|
14
|
+
.sc(DeleteTableBucketReplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTable } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTableCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTable", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTableCommand")
|
|
14
|
-
.sc(DeleteTable)
|
|
14
|
+
.sc(DeleteTable$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTablePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTablePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTablePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTablePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTablePolicy", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTablePolicyCommand")
|
|
14
|
-
.sc(DeleteTablePolicy)
|
|
14
|
+
.sc(DeleteTablePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTableReplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTableReplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableReplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTableReplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "DeleteTableReplication", {})
|
|
13
13
|
.n("S3TablesClient", "DeleteTableReplicationCommand")
|
|
14
|
-
.sc(DeleteTableReplication)
|
|
14
|
+
.sc(DeleteTableReplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetNamespace } from "../schemas/schemas_0";
|
|
4
|
+
import { GetNamespace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetNamespaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetNamespaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetNamespace", {})
|
|
13
13
|
.n("S3TablesClient", "GetNamespaceCommand")
|
|
14
|
-
.sc(GetNamespace)
|
|
14
|
+
.sc(GetNamespace$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableBucket } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableBucket$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableBucketCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableBucketCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableBucket", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableBucketCommand")
|
|
14
|
-
.sc(GetTableBucket)
|
|
14
|
+
.sc(GetTableBucket$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableBucketEncryption } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableBucketEncryption$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableBucketEncryptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableBucketEncryptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableBucketEncryption", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableBucketEncryptionCommand")
|
|
14
|
-
.sc(GetTableBucketEncryption)
|
|
14
|
+
.sc(GetTableBucketEncryption$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableBucketMaintenanceConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableBucketMaintenanceConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableBucketMaintenanceConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableBucketMaintenanceConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableBucketMaintenanceConfiguration", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableBucketMaintenanceConfigurationCommand")
|
|
14
|
-
.sc(GetTableBucketMaintenanceConfiguration)
|
|
14
|
+
.sc(GetTableBucketMaintenanceConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableBucketMetricsConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableBucketMetricsConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableBucketMetricsConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableBucketMetricsConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableBucketMetricsConfiguration", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableBucketMetricsConfigurationCommand")
|
|
14
|
-
.sc(GetTableBucketMetricsConfiguration)
|
|
14
|
+
.sc(GetTableBucketMetricsConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableBucketPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableBucketPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableBucketPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableBucketPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableBucketPolicy", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableBucketPolicyCommand")
|
|
14
|
-
.sc(GetTableBucketPolicy)
|
|
14
|
+
.sc(GetTableBucketPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableBucketReplication } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableBucketReplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableBucketReplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableBucketReplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableBucketReplication", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableBucketReplicationCommand")
|
|
14
|
-
.sc(GetTableBucketReplication)
|
|
14
|
+
.sc(GetTableBucketReplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableBucketStorageClass } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableBucketStorageClass$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableBucketStorageClassCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableBucketStorageClassCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableBucketStorageClass", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableBucketStorageClassCommand")
|
|
14
|
-
.sc(GetTableBucketStorageClass)
|
|
14
|
+
.sc(GetTableBucketStorageClass$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTable } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTable", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableCommand")
|
|
14
|
-
.sc(GetTable)
|
|
14
|
+
.sc(GetTable$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableEncryption } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableEncryption$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableEncryptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableEncryptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableEncryption", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableEncryptionCommand")
|
|
14
|
-
.sc(GetTableEncryption)
|
|
14
|
+
.sc(GetTableEncryption$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableMaintenanceConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableMaintenanceConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableMaintenanceConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableMaintenanceConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableMaintenanceConfiguration", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableMaintenanceConfigurationCommand")
|
|
14
|
-
.sc(GetTableMaintenanceConfiguration)
|
|
14
|
+
.sc(GetTableMaintenanceConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableMaintenanceJobStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableMaintenanceJobStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableMaintenanceJobStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableMaintenanceJobStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableMaintenanceJobStatus", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableMaintenanceJobStatusCommand")
|
|
14
|
-
.sc(GetTableMaintenanceJobStatus)
|
|
14
|
+
.sc(GetTableMaintenanceJobStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableMetadataLocation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableMetadataLocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableMetadataLocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableMetadataLocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableMetadataLocation", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableMetadataLocationCommand")
|
|
14
|
-
.sc(GetTableMetadataLocation)
|
|
14
|
+
.sc(GetTableMetadataLocation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTablePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTablePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTablePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTablePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTablePolicy", {})
|
|
13
13
|
.n("S3TablesClient", "GetTablePolicyCommand")
|
|
14
|
-
.sc(GetTablePolicy)
|
|
14
|
+
.sc(GetTablePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableRecordExpirationConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableRecordExpirationConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableRecordExpirationConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableRecordExpirationConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableRecordExpirationConfiguration", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableRecordExpirationConfigurationCommand")
|
|
14
|
-
.sc(GetTableRecordExpirationConfiguration)
|
|
14
|
+
.sc(GetTableRecordExpirationConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableRecordExpirationJobStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableRecordExpirationJobStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableRecordExpirationJobStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableRecordExpirationJobStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableRecordExpirationJobStatus", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableRecordExpirationJobStatusCommand")
|
|
14
|
-
.sc(GetTableRecordExpirationJobStatus)
|
|
14
|
+
.sc(GetTableRecordExpirationJobStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableReplication } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableReplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableReplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableReplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableReplication", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableReplicationCommand")
|
|
14
|
-
.sc(GetTableReplication)
|
|
14
|
+
.sc(GetTableReplication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableReplicationStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableReplicationStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableReplicationStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableReplicationStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableReplicationStatus", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableReplicationStatusCommand")
|
|
14
|
-
.sc(GetTableReplicationStatus)
|
|
14
|
+
.sc(GetTableReplicationStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTableStorageClass } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTableStorageClass$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTableStorageClassCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTableStorageClassCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "GetTableStorageClass", {})
|
|
13
13
|
.n("S3TablesClient", "GetTableStorageClassCommand")
|
|
14
|
-
.sc(GetTableStorageClass)
|
|
14
|
+
.sc(GetTableStorageClass$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListNamespaces } from "../schemas/schemas_0";
|
|
4
|
+
import { ListNamespaces$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListNamespacesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListNamespacesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "ListNamespaces", {})
|
|
13
13
|
.n("S3TablesClient", "ListNamespacesCommand")
|
|
14
|
-
.sc(ListNamespaces)
|
|
14
|
+
.sc(ListNamespaces$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTableBuckets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTableBuckets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTableBucketsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTableBucketsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "ListTableBuckets", {})
|
|
13
13
|
.n("S3TablesClient", "ListTableBucketsCommand")
|
|
14
|
-
.sc(ListTableBuckets)
|
|
14
|
+
.sc(ListTableBuckets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTables } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTables$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTablesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTablesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "ListTables", {})
|
|
13
13
|
.n("S3TablesClient", "ListTablesCommand")
|
|
14
|
-
.sc(ListTables)
|
|
14
|
+
.sc(ListTables$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("S3TableBuckets", "ListTagsForResource", {})
|
|
13
13
|
.n("S3TablesClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|