@aws-sdk/client-timestream-write 3.417.0 → 3.421.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/README.md +7 -7
- package/dist-cjs/commands/CreateBatchLoadTaskCommand.js +5 -0
- package/dist-cjs/commands/CreateDatabaseCommand.js +5 -0
- package/dist-cjs/commands/CreateTableCommand.js +5 -0
- package/dist-cjs/commands/DeleteDatabaseCommand.js +5 -0
- package/dist-cjs/commands/DeleteTableCommand.js +5 -0
- package/dist-cjs/commands/DescribeBatchLoadTaskCommand.js +5 -0
- package/dist-cjs/commands/DescribeDatabaseCommand.js +5 -0
- package/dist-cjs/commands/DescribeEndpointsCommand.js +5 -0
- package/dist-cjs/commands/DescribeTableCommand.js +5 -0
- package/dist-cjs/commands/ListBatchLoadTasksCommand.js +5 -0
- package/dist-cjs/commands/ListDatabasesCommand.js +5 -0
- package/dist-cjs/commands/ListTablesCommand.js +5 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +5 -0
- package/dist-cjs/commands/ResumeBatchLoadTaskCommand.js +5 -0
- package/dist-cjs/commands/TagResourceCommand.js +5 -0
- package/dist-cjs/commands/UntagResourceCommand.js +5 -0
- package/dist-cjs/commands/UpdateDatabaseCommand.js +5 -0
- package/dist-cjs/commands/UpdateTableCommand.js +5 -0
- package/dist-cjs/commands/WriteRecordsCommand.js +5 -0
- package/dist-es/commands/CreateBatchLoadTaskCommand.js +5 -0
- package/dist-es/commands/CreateDatabaseCommand.js +5 -0
- package/dist-es/commands/CreateTableCommand.js +5 -0
- package/dist-es/commands/DeleteDatabaseCommand.js +5 -0
- package/dist-es/commands/DeleteTableCommand.js +5 -0
- package/dist-es/commands/DescribeBatchLoadTaskCommand.js +5 -0
- package/dist-es/commands/DescribeDatabaseCommand.js +5 -0
- package/dist-es/commands/DescribeEndpointsCommand.js +5 -0
- package/dist-es/commands/DescribeTableCommand.js +5 -0
- package/dist-es/commands/ListBatchLoadTasksCommand.js +5 -0
- package/dist-es/commands/ListDatabasesCommand.js +5 -0
- package/dist-es/commands/ListTablesCommand.js +5 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +5 -0
- package/dist-es/commands/ResumeBatchLoadTaskCommand.js +5 -0
- package/dist-es/commands/TagResourceCommand.js +5 -0
- package/dist-es/commands/UntagResourceCommand.js +5 -0
- package/dist-es/commands/UpdateDatabaseCommand.js +5 -0
- package/dist-es/commands/UpdateTableCommand.js +5 -0
- package/dist-es/commands/WriteRecordsCommand.js +5 -0
- package/package.json +32 -32
package/README.md
CHANGED
|
@@ -36,16 +36,16 @@ using your favorite package manager:
|
|
|
36
36
|
|
|
37
37
|
The AWS SDK is modulized by clients and commands.
|
|
38
38
|
To send a request, you only need to import the `TimestreamWriteClient` and
|
|
39
|
-
the commands you need, for example `
|
|
39
|
+
the commands you need, for example `ListTablesCommand`:
|
|
40
40
|
|
|
41
41
|
```js
|
|
42
42
|
// ES5 example
|
|
43
|
-
const { TimestreamWriteClient,
|
|
43
|
+
const { TimestreamWriteClient, ListTablesCommand } = require("@aws-sdk/client-timestream-write");
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
```ts
|
|
47
47
|
// ES6+ example
|
|
48
|
-
import { TimestreamWriteClient,
|
|
48
|
+
import { TimestreamWriteClient, ListTablesCommand } from "@aws-sdk/client-timestream-write";
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
### Usage
|
|
@@ -64,7 +64,7 @@ const client = new TimestreamWriteClient({ region: "REGION" });
|
|
|
64
64
|
const params = {
|
|
65
65
|
/** input parameters */
|
|
66
66
|
};
|
|
67
|
-
const command = new
|
|
67
|
+
const command = new ListTablesCommand(params);
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
#### Async/await
|
|
@@ -143,7 +143,7 @@ const client = new AWS.TimestreamWrite({ region: "REGION" });
|
|
|
143
143
|
|
|
144
144
|
// async/await.
|
|
145
145
|
try {
|
|
146
|
-
const data = await client.
|
|
146
|
+
const data = await client.listTables(params);
|
|
147
147
|
// process data.
|
|
148
148
|
} catch (error) {
|
|
149
149
|
// error handling.
|
|
@@ -151,7 +151,7 @@ try {
|
|
|
151
151
|
|
|
152
152
|
// Promises.
|
|
153
153
|
client
|
|
154
|
-
.
|
|
154
|
+
.listTables(params)
|
|
155
155
|
.then((data) => {
|
|
156
156
|
// process data.
|
|
157
157
|
})
|
|
@@ -160,7 +160,7 @@ client
|
|
|
160
160
|
});
|
|
161
161
|
|
|
162
162
|
// callbacks.
|
|
163
|
-
client.
|
|
163
|
+
client.listTables(params, (err, data) => {
|
|
164
164
|
// process err and data.
|
|
165
165
|
});
|
|
166
166
|
```
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const models_0_1 = require("../models/models_0");
|
|
10
11
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
11
12
|
class CreateBatchLoadTaskCommand extends smithy_client_1.Command {
|
|
@@ -35,6 +36,10 @@ class CreateBatchLoadTaskCommand extends smithy_client_1.Command {
|
|
|
35
36
|
commandName,
|
|
36
37
|
inputFilterSensitiveLog: models_0_1.CreateBatchLoadTaskRequestFilterSensitiveLog,
|
|
37
38
|
outputFilterSensitiveLog: (_) => _,
|
|
39
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
40
|
+
service: "Timestream_20181101",
|
|
41
|
+
operation: "CreateBatchLoadTask",
|
|
42
|
+
},
|
|
38
43
|
};
|
|
39
44
|
const { requestHandler } = configuration;
|
|
40
45
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class CreateDatabaseCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class CreateDatabaseCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "CreateDatabase",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class CreateTableCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class CreateTableCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "CreateTable",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class DeleteDatabaseCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DeleteDatabaseCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "DeleteDatabase",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class DeleteTableCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DeleteTableCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "DeleteTable",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class DescribeBatchLoadTaskCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DescribeBatchLoadTaskCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "DescribeBatchLoadTask",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class DescribeDatabaseCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DescribeDatabaseCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "DescribeDatabase",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
8
9
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
10
|
class DescribeEndpointsCommand extends smithy_client_1.Command {
|
|
10
11
|
static getEndpointParameterInstructions() {
|
|
@@ -32,6 +33,10 @@ class DescribeEndpointsCommand extends smithy_client_1.Command {
|
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: (_) => _,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "Timestream_20181101",
|
|
38
|
+
operation: "DescribeEndpoints",
|
|
39
|
+
},
|
|
35
40
|
};
|
|
36
41
|
const { requestHandler } = configuration;
|
|
37
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class DescribeTableCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class DescribeTableCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "DescribeTable",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class ListBatchLoadTasksCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ListBatchLoadTasksCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "ListBatchLoadTasks",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class ListDatabasesCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ListDatabasesCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "ListDatabases",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class ListTablesCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ListTablesCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "ListTables",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "ListTagsForResource",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class ResumeBatchLoadTaskCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class ResumeBatchLoadTaskCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "ResumeBatchLoadTask",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class TagResourceCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class TagResourceCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "TagResource",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class UntagResourceCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "UntagResource",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class UpdateDatabaseCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class UpdateDatabaseCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "UpdateDatabase",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class UpdateTableCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class UpdateTableCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "UpdateTable",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -6,6 +6,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
6
6
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
7
7
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
8
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
9
|
+
const types_1 = require("@smithy/types");
|
|
9
10
|
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
10
11
|
class WriteRecordsCommand extends smithy_client_1.Command {
|
|
11
12
|
static getEndpointParameterInstructions() {
|
|
@@ -34,6 +35,10 @@ class WriteRecordsCommand extends smithy_client_1.Command {
|
|
|
34
35
|
commandName,
|
|
35
36
|
inputFilterSensitiveLog: (_) => _,
|
|
36
37
|
outputFilterSensitiveLog: (_) => _,
|
|
38
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
39
|
+
service: "Timestream_20181101",
|
|
40
|
+
operation: "WriteRecords",
|
|
41
|
+
},
|
|
37
42
|
};
|
|
38
43
|
const { requestHandler } = configuration;
|
|
39
44
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { CreateBatchLoadTaskRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
7
|
import { de_CreateBatchLoadTaskCommand, se_CreateBatchLoadTaskCommand } from "../protocols/Aws_json1_0";
|
|
7
8
|
export { $Command };
|
|
@@ -32,6 +33,10 @@ export class CreateBatchLoadTaskCommand extends $Command {
|
|
|
32
33
|
commandName,
|
|
33
34
|
inputFilterSensitiveLog: CreateBatchLoadTaskRequestFilterSensitiveLog,
|
|
34
35
|
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "Timestream_20181101",
|
|
38
|
+
operation: "CreateBatchLoadTask",
|
|
39
|
+
},
|
|
35
40
|
};
|
|
36
41
|
const { requestHandler } = configuration;
|
|
37
42
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_CreateDatabaseCommand, se_CreateDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreateDatabaseCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class CreateDatabaseCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "CreateDatabase",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_CreateTableCommand, se_CreateTableCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreateTableCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class CreateTableCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "CreateTable",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_DeleteDatabaseCommand, se_DeleteDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DeleteDatabaseCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class DeleteDatabaseCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "DeleteDatabase",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_DeleteTableCommand, se_DeleteTableCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DeleteTableCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class DeleteTableCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "DeleteTable",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_DescribeBatchLoadTaskCommand, se_DescribeBatchLoadTaskCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribeBatchLoadTaskCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class DescribeBatchLoadTaskCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "DescribeBatchLoadTask",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_DescribeDatabaseCommand, se_DescribeDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribeDatabaseCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class DescribeDatabaseCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "DescribeDatabase",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
4
5
|
import { de_DescribeEndpointsCommand, se_DescribeEndpointsCommand } from "../protocols/Aws_json1_0";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class DescribeEndpointsCommand extends $Command {
|
|
@@ -29,6 +30,10 @@ export class DescribeEndpointsCommand extends $Command {
|
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
32
|
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "Timestream_20181101",
|
|
35
|
+
operation: "DescribeEndpoints",
|
|
36
|
+
},
|
|
32
37
|
};
|
|
33
38
|
const { requestHandler } = configuration;
|
|
34
39
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_DescribeTableCommand, se_DescribeTableCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class DescribeTableCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class DescribeTableCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "DescribeTable",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_ListBatchLoadTasksCommand, se_ListBatchLoadTasksCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListBatchLoadTasksCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class ListBatchLoadTasksCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "ListBatchLoadTasks",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_ListDatabasesCommand, se_ListDatabasesCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListDatabasesCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class ListDatabasesCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "ListDatabases",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_ListTablesCommand, se_ListTablesCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListTablesCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class ListTablesCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "ListTables",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListTagsForResourceCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class ListTagsForResourceCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "ListTagsForResource",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_ResumeBatchLoadTaskCommand, se_ResumeBatchLoadTaskCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ResumeBatchLoadTaskCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class ResumeBatchLoadTaskCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "ResumeBatchLoadTask",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class TagResourceCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class TagResourceCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "TagResource",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UntagResourceCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class UntagResourceCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "UntagResource",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_UpdateDatabaseCommand, se_UpdateDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateDatabaseCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class UpdateDatabaseCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "UpdateDatabase",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_UpdateTableCommand, se_UpdateTableCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateTableCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class UpdateTableCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "UpdateTable",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -2,6 +2,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
2
2
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
3
3
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
5
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
6
|
import { de_WriteRecordsCommand, se_WriteRecordsCommand } from "../protocols/Aws_json1_0";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class WriteRecordsCommand extends $Command {
|
|
@@ -31,6 +32,10 @@ export class WriteRecordsCommand extends $Command {
|
|
|
31
32
|
commandName,
|
|
32
33
|
inputFilterSensitiveLog: (_) => _,
|
|
33
34
|
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
36
|
+
service: "Timestream_20181101",
|
|
37
|
+
operation: "WriteRecords",
|
|
38
|
+
},
|
|
34
39
|
};
|
|
35
40
|
const { requestHandler } = configuration;
|
|
36
41
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-write",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Write Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.421.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,40 +21,40 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.1.
|
|
39
|
-
"@smithy/hash-node": "^2.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.0.
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
44
|
-
"@smithy/middleware-serde": "^2.0.
|
|
45
|
-
"@smithy/middleware-stack": "^2.0.
|
|
46
|
-
"@smithy/node-config-provider": "^2.0.
|
|
47
|
-
"@smithy/node-http-handler": "^2.1.
|
|
48
|
-
"@smithy/protocol-http": "^3.0.
|
|
49
|
-
"@smithy/smithy-client": "^2.1.
|
|
50
|
-
"@smithy/types": "^2.3.
|
|
51
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.421.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.421.0",
|
|
26
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.418.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.418.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.418.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.418.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.418.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.418.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.418.0",
|
|
33
|
+
"@aws-sdk/types": "3.418.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.418.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.418.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.418.0",
|
|
37
|
+
"@smithy/config-resolver": "^2.0.10",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.1.5",
|
|
39
|
+
"@smithy/hash-node": "^2.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.0.9",
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.12",
|
|
44
|
+
"@smithy/middleware-serde": "^2.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^2.0.2",
|
|
46
|
+
"@smithy/node-config-provider": "^2.0.12",
|
|
47
|
+
"@smithy/node-http-handler": "^2.1.5",
|
|
48
|
+
"@smithy/protocol-http": "^3.0.5",
|
|
49
|
+
"@smithy/smithy-client": "^2.1.6",
|
|
50
|
+
"@smithy/types": "^2.3.3",
|
|
51
|
+
"@smithy/url-parser": "^2.0.9",
|
|
52
52
|
"@smithy/util-base64": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
57
|
-
"@smithy/util-retry": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.10",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.12",
|
|
57
|
+
"@smithy/util-retry": "^2.0.2",
|
|
58
58
|
"@smithy/util-utf8": "^2.0.0",
|
|
59
59
|
"tslib": "^2.5.0",
|
|
60
60
|
"uuid": "^8.3.2"
|