@aws-sdk/client-timestream-write 3.303.0 → 3.309.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/commands/CreateBatchLoadTaskCommand.js +2 -2
- package/dist-cjs/commands/CreateDatabaseCommand.js +2 -2
- package/dist-cjs/commands/CreateTableCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatabaseCommand.js +2 -2
- package/dist-cjs/commands/DeleteTableCommand.js +2 -2
- package/dist-cjs/commands/DescribeBatchLoadTaskCommand.js +2 -2
- package/dist-cjs/commands/DescribeDatabaseCommand.js +2 -2
- package/dist-cjs/commands/DescribeEndpointsCommand.js +2 -2
- package/dist-cjs/commands/DescribeTableCommand.js +2 -2
- package/dist-cjs/commands/ListBatchLoadTasksCommand.js +2 -2
- package/dist-cjs/commands/ListDatabasesCommand.js +2 -2
- package/dist-cjs/commands/ListTablesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ResumeBatchLoadTaskCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateDatabaseCommand.js +2 -2
- package/dist-cjs/commands/UpdateTableCommand.js +2 -2
- package/dist-cjs/commands/WriteRecordsCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_0.js +462 -490
- package/dist-es/commands/CreateBatchLoadTaskCommand.js +3 -3
- package/dist-es/commands/CreateDatabaseCommand.js +3 -3
- package/dist-es/commands/CreateTableCommand.js +3 -3
- package/dist-es/commands/DeleteDatabaseCommand.js +3 -3
- package/dist-es/commands/DeleteTableCommand.js +3 -3
- package/dist-es/commands/DescribeBatchLoadTaskCommand.js +3 -3
- package/dist-es/commands/DescribeDatabaseCommand.js +3 -3
- package/dist-es/commands/DescribeEndpointsCommand.js +3 -3
- package/dist-es/commands/DescribeTableCommand.js +3 -3
- package/dist-es/commands/ListBatchLoadTasksCommand.js +3 -3
- package/dist-es/commands/ListDatabasesCommand.js +3 -3
- package/dist-es/commands/ListTablesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ResumeBatchLoadTaskCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateDatabaseCommand.js +3 -3
- package/dist-es/commands/UpdateTableCommand.js +3 -3
- package/dist-es/commands/WriteRecordsCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_0.js +423 -451
- package/dist-types/protocols/Aws_json1_0.d.ts +152 -38
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +38 -38
- package/package.json +30 -30
|
@@ -3,7 +3,7 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discove
|
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
5
|
import { CreateBatchLoadTaskRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
-
import {
|
|
6
|
+
import { de_CreateBatchLoadTaskCommand, se_CreateBatchLoadTaskCommand } from "../protocols/Aws_json1_0";
|
|
7
7
|
export class CreateBatchLoadTaskCommand extends $Command {
|
|
8
8
|
static getEndpointParameterInstructions() {
|
|
9
9
|
return {
|
|
@@ -36,9 +36,9 @@ export class CreateBatchLoadTaskCommand extends $Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return
|
|
39
|
+
return se_CreateBatchLoadTaskCommand(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return
|
|
42
|
+
return de_CreateBatchLoadTaskCommand(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_CreateDatabaseCommand, se_CreateDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class CreateDatabaseCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class CreateDatabaseCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_CreateDatabaseCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_CreateDatabaseCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_CreateTableCommand, se_CreateTableCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class CreateTableCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class CreateTableCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_CreateTableCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_CreateTableCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_DeleteDatabaseCommand, se_DeleteDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class DeleteDatabaseCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class DeleteDatabaseCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DeleteDatabaseCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DeleteDatabaseCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_DeleteTableCommand, se_DeleteTableCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class DeleteTableCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class DeleteTableCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DeleteTableCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DeleteTableCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_DescribeBatchLoadTaskCommand, se_DescribeBatchLoadTaskCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class DescribeBatchLoadTaskCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class DescribeBatchLoadTaskCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DescribeBatchLoadTaskCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DescribeBatchLoadTaskCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_DescribeDatabaseCommand, se_DescribeDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class DescribeDatabaseCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class DescribeDatabaseCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DescribeDatabaseCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DescribeDatabaseCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_DescribeEndpointsCommand, se_DescribeEndpointsCommand } from "../protocols/Aws_json1_0";
|
|
5
5
|
export class DescribeEndpointsCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class DescribeEndpointsCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_DescribeEndpointsCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_DescribeEndpointsCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_DescribeTableCommand, se_DescribeTableCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class DescribeTableCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class DescribeTableCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_DescribeTableCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_DescribeTableCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_ListBatchLoadTasksCommand, se_ListBatchLoadTasksCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class ListBatchLoadTasksCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class ListBatchLoadTasksCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ListBatchLoadTasksCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ListBatchLoadTasksCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_ListDatabasesCommand, se_ListDatabasesCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class ListDatabasesCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class ListDatabasesCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ListDatabasesCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ListDatabasesCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_ListTablesCommand, se_ListTablesCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class ListTablesCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class ListTablesCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ListTablesCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ListTablesCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class ListTagsForResourceCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ListTagsForResourceCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ListTagsForResourceCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_ResumeBatchLoadTaskCommand, se_ResumeBatchLoadTaskCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class ResumeBatchLoadTaskCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class ResumeBatchLoadTaskCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_ResumeBatchLoadTaskCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_ResumeBatchLoadTaskCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class TagResourceCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class TagResourceCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_TagResourceCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_TagResourceCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class UntagResourceCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class UntagResourceCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_UntagResourceCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_UntagResourceCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_UpdateDatabaseCommand, se_UpdateDatabaseCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class UpdateDatabaseCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class UpdateDatabaseCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_UpdateDatabaseCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_UpdateDatabaseCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_UpdateTableCommand, se_UpdateTableCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class UpdateTableCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class UpdateTableCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_UpdateTableCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_UpdateTableCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
|
|
3
3
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
4
4
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
5
|
-
import {
|
|
5
|
+
import { de_WriteRecordsCommand, se_WriteRecordsCommand } from "../protocols/Aws_json1_0";
|
|
6
6
|
export class WriteRecordsCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -35,9 +35,9 @@ export class WriteRecordsCommand extends $Command {
|
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
36
36
|
}
|
|
37
37
|
serialize(input, context) {
|
|
38
|
-
return
|
|
38
|
+
return se_WriteRecordsCommand(input, context);
|
|
39
39
|
}
|
|
40
40
|
deserialize(output, context) {
|
|
41
|
-
return
|
|
41
|
+
return de_WriteRecordsCommand(output, context);
|
|
42
42
|
}
|
|
43
43
|
}
|