@aws-sdk/client-timestream-write 3.289.0 → 3.292.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-types/commands/CreateBatchLoadTaskCommand.d.ts +30 -0
- package/dist-types/commands/CreateDatabaseCommand.d.ts +26 -0
- package/dist-types/commands/CreateTableCommand.d.ts +30 -0
- package/dist-types/commands/DeleteDatabaseCommand.d.ts +23 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +23 -0
- package/dist-types/commands/DescribeBatchLoadTaskCommand.d.ts +20 -0
- package/dist-types/commands/DescribeDatabaseCommand.d.ts +23 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeTableCommand.d.ts +23 -0
- package/dist-types/commands/ListBatchLoadTasksCommand.d.ts +19 -0
- package/dist-types/commands/ListDatabasesCommand.d.ts +19 -0
- package/dist-types/commands/ListTablesCommand.d.ts +23 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +15 -0
- package/dist-types/commands/ResumeBatchLoadTaskCommand.d.ts +23 -0
- package/dist-types/commands/TagResourceCommand.d.ts +18 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +18 -0
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +26 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +23 -0
- package/dist-types/commands/WriteRecordsCommand.d.ts +55 -0
- package/package.json +36 -41
|
@@ -37,6 +37,36 @@ export interface CreateBatchLoadTaskCommandOutput extends CreateBatchLoadTaskRes
|
|
|
37
37
|
* @see {@link CreateBatchLoadTaskCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform this action.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ConflictException} (client fault)
|
|
44
|
+
* <p>Timestream was unable to process this request because it contains resource that
|
|
45
|
+
* already exists.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerException} (server fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
50
|
+
* error.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
53
|
+
* <p>The requested endpoint was not valid.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
57
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
60
|
+
* <p> The instance quota of resource exceeded for this account.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
63
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
64
|
+
* was throttled.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* <p> An invalid or malformed request.</p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
40
70
|
*/
|
|
41
71
|
export declare class CreateBatchLoadTaskCommand extends $Command<CreateBatchLoadTaskCommandInput, CreateBatchLoadTaskCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
42
72
|
readonly input: CreateBatchLoadTaskCommandInput;
|
|
@@ -32,6 +32,32 @@ export interface CreateDatabaseCommandOutput extends CreateDatabaseResponse, __M
|
|
|
32
32
|
* @see {@link CreateDatabaseCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>Timestream was unable to process this request because it contains resource that
|
|
40
|
+
* already exists.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>
|
|
44
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
45
|
+
* error.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
48
|
+
* <p>The requested endpoint was not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
51
|
+
* <p> The instance quota of resource exceeded for this account.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
55
|
+
* was throttled.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p> An invalid or malformed request.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
35
61
|
*/
|
|
36
62
|
export declare class CreateDatabaseCommand extends $Command<CreateDatabaseCommandInput, CreateDatabaseCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
37
63
|
readonly input: CreateDatabaseCommandInput;
|
|
@@ -34,6 +34,36 @@ export interface CreateTableCommandOutput extends CreateTableResponse, __Metadat
|
|
|
34
34
|
* @see {@link CreateTableCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>You are not authorized to perform this action.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>Timestream was unable to process this request because it contains resource that
|
|
42
|
+
* already exists.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerException} (server fault)
|
|
45
|
+
* <p>
|
|
46
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
47
|
+
* error.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
50
|
+
* <p>The requested endpoint was not valid.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
54
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
57
|
+
* <p> The instance quota of resource exceeded for this account.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
60
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
61
|
+
* was throttled.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ValidationException} (client fault)
|
|
64
|
+
* <p> An invalid or malformed request.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
37
67
|
*/
|
|
38
68
|
export declare class CreateTableCommand extends $Command<CreateTableCommandInput, CreateTableCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
39
69
|
readonly input: CreateTableCommandInput;
|
|
@@ -40,6 +40,29 @@ export interface DeleteDatabaseCommandOutput extends __MetadataBearer {
|
|
|
40
40
|
* @see {@link DeleteDatabaseCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
44
|
+
* <p>You are not authorized to perform this action.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerException} (server fault)
|
|
47
|
+
* <p>
|
|
48
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
49
|
+
* error.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
52
|
+
* <p>The requested endpoint was not valid.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
56
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
59
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
60
|
+
* was throttled.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
* <p> An invalid or malformed request.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
43
66
|
*/
|
|
44
67
|
export declare class DeleteDatabaseCommand extends $Command<DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
45
68
|
readonly input: DeleteDatabaseCommandInput;
|
|
@@ -37,6 +37,29 @@ export interface DeleteTableCommandOutput extends __MetadataBearer {
|
|
|
37
37
|
* @see {@link DeleteTableCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform this action.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>
|
|
45
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
46
|
+
* error.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
49
|
+
* <p>The requested endpoint was not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
53
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
56
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
57
|
+
* was throttled.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ValidationException} (client fault)
|
|
60
|
+
* <p> An invalid or malformed request.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
40
63
|
*/
|
|
41
64
|
export declare class DeleteTableCommand extends $Command<DeleteTableCommandInput, DeleteTableCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
42
65
|
readonly input: DeleteTableCommandInput;
|
|
@@ -32,6 +32,26 @@ export interface DescribeBatchLoadTaskCommandOutput extends DescribeBatchLoadTas
|
|
|
32
32
|
* @see {@link DescribeBatchLoadTaskCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>
|
|
40
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
41
|
+
* error.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
44
|
+
* <p>The requested endpoint was not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
48
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
52
|
+
* was throttled.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
35
55
|
*/
|
|
36
56
|
export declare class DescribeBatchLoadTaskCommand extends $Command<DescribeBatchLoadTaskCommandInput, DescribeBatchLoadTaskCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
37
57
|
readonly input: DescribeBatchLoadTaskCommandInput;
|
|
@@ -32,6 +32,29 @@ export interface DescribeDatabaseCommandOutput extends DescribeDatabaseResponse,
|
|
|
32
32
|
* @see {@link DescribeDatabaseCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>
|
|
40
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
41
|
+
* error.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
44
|
+
* <p>The requested endpoint was not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
48
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
52
|
+
* was throttled.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p> An invalid or malformed request.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
35
58
|
*/
|
|
36
59
|
export declare class DescribeDatabaseCommand extends $Command<DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
37
60
|
readonly input: DescribeDatabaseCommandInput;
|
|
@@ -49,6 +49,19 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
|
|
|
49
49
|
* @see {@link DescribeEndpointsCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link InternalServerException} (server fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
55
|
+
* error.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
58
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
59
|
+
* was throttled.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ValidationException} (client fault)
|
|
62
|
+
* <p> An invalid or malformed request.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
52
65
|
*/
|
|
53
66
|
export declare class DescribeEndpointsCommand extends $Command<DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
54
67
|
readonly input: DescribeEndpointsCommandInput;
|
|
@@ -32,6 +32,29 @@ export interface DescribeTableCommandOutput extends DescribeTableResponse, __Met
|
|
|
32
32
|
* @see {@link DescribeTableCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>
|
|
40
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
41
|
+
* error.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
44
|
+
* <p>The requested endpoint was not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
48
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
52
|
+
* was throttled.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p> An invalid or malformed request.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
35
58
|
*/
|
|
36
59
|
export declare class DescribeTableCommand extends $Command<DescribeTableCommandInput, DescribeTableCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
37
60
|
readonly input: DescribeTableCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface ListBatchLoadTasksCommandOutput extends ListBatchLoadTasksRespo
|
|
|
31
31
|
* @see {@link ListBatchLoadTasksCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
40
|
+
* error.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
43
|
+
* <p>The requested endpoint was not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
47
|
+
* was throttled.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p> An invalid or malformed request.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class ListBatchLoadTasksCommand extends $Command<ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
36
55
|
readonly input: ListBatchLoadTasksCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface ListDatabasesCommandOutput extends ListDatabasesResponse, __Met
|
|
|
31
31
|
* @see {@link ListDatabasesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
40
|
+
* error.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
43
|
+
* <p>The requested endpoint was not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
47
|
+
* was throttled.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p> An invalid or malformed request.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class ListDatabasesCommand extends $Command<ListDatabasesCommandInput, ListDatabasesCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
36
55
|
readonly input: ListDatabasesCommandInput;
|
|
@@ -31,6 +31,29 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB
|
|
|
31
31
|
* @see {@link ListTablesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to perform this action.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>
|
|
39
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
40
|
+
* error.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
43
|
+
* <p>The requested endpoint was not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
47
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
51
|
+
* was throttled.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p> An invalid or malformed request.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
34
57
|
*/
|
|
35
58
|
export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
36
59
|
readonly input: ListTablesCommandInput;
|
|
@@ -29,6 +29,21 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
33
|
+
* <p>The requested endpoint was not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
37
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
40
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
41
|
+
* was throttled.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ValidationException} (client fault)
|
|
44
|
+
* <p> An invalid or malformed request.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
32
47
|
*/
|
|
33
48
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
34
49
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -30,6 +30,29 @@ export interface ResumeBatchLoadTaskCommandOutput extends ResumeBatchLoadTaskRes
|
|
|
30
30
|
* @see {@link ResumeBatchLoadTaskCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You are not authorized to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>
|
|
38
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
39
|
+
* error.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
42
|
+
* <p>The requested endpoint was not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
46
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
50
|
+
* was throttled.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ValidationException} (client fault)
|
|
53
|
+
* <p> An invalid or malformed request.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
33
56
|
*/
|
|
34
57
|
export declare class ResumeBatchLoadTaskCommand extends $Command<ResumeBatchLoadTaskCommandInput, ResumeBatchLoadTaskCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
35
58
|
readonly input: ResumeBatchLoadTaskCommandInput;
|
|
@@ -31,6 +31,24 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
35
|
+
* <p>The requested endpoint was not valid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
39
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
42
|
+
* <p> The instance quota of resource exceeded for this account.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
46
|
+
* was throttled.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p> An invalid or malformed request.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
34
52
|
*/
|
|
35
53
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
36
54
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
33
|
+
* <p>The requested endpoint was not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
37
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
40
|
+
* <p> The instance quota of resource exceeded for this account.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
44
|
+
* was throttled.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p> An invalid or malformed request.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
34
52
|
readonly input: UntagResourceCommandInput;
|
|
@@ -33,6 +33,32 @@ export interface UpdateDatabaseCommandOutput extends UpdateDatabaseResponse, __M
|
|
|
33
33
|
* @see {@link UpdateDatabaseCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You are not authorized to perform this action.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>
|
|
41
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
42
|
+
* error.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
45
|
+
* <p>The requested endpoint was not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
49
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
52
|
+
* <p> The instance quota of resource exceeded for this account.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
56
|
+
* was throttled.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p> An invalid or malformed request.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
36
62
|
*/
|
|
37
63
|
export declare class UpdateDatabaseCommand extends $Command<UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
38
64
|
readonly input: UpdateDatabaseCommandInput;
|
|
@@ -34,6 +34,29 @@ export interface UpdateTableCommandOutput extends UpdateTableResponse, __Metadat
|
|
|
34
34
|
* @see {@link UpdateTableCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>You are not authorized to perform this action.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>
|
|
42
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
43
|
+
* error.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
46
|
+
* <p>The requested endpoint was not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
50
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
54
|
+
* was throttled.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ValidationException} (client fault)
|
|
57
|
+
* <p> An invalid or malformed request.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
37
60
|
*/
|
|
38
61
|
export declare class UpdateTableCommand extends $Command<UpdateTableCommandInput, UpdateTableCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
39
62
|
readonly input: UpdateTableCommandInput;
|
|
@@ -67,6 +67,61 @@ export interface WriteRecordsCommandOutput extends WriteRecordsResponse, __Metad
|
|
|
67
67
|
* @see {@link WriteRecordsCommandOutput} for command's `response` shape.
|
|
68
68
|
* @see {@link TimestreamWriteClientResolvedConfig | config} for TimestreamWriteClient's `config` shape.
|
|
69
69
|
*
|
|
70
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
71
|
+
* <p>You are not authorized to perform this action.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InternalServerException} (server fault)
|
|
74
|
+
* <p>
|
|
75
|
+
* Timestream was unable to fully process this request because of an internal server
|
|
76
|
+
* error.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
79
|
+
* <p>The requested endpoint was not valid.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link RejectedRecordsException} (client fault)
|
|
82
|
+
* <p> WriteRecords would throw this exception in the following cases: </p>
|
|
83
|
+
* <ul>
|
|
84
|
+
* <li>
|
|
85
|
+
* <p>Records with duplicate data where there are multiple records with the same
|
|
86
|
+
* dimensions, timestamps, and measure names but: </p>
|
|
87
|
+
* <ul>
|
|
88
|
+
* <li>
|
|
89
|
+
* <p>Measure values are different</p>
|
|
90
|
+
* </li>
|
|
91
|
+
* <li>
|
|
92
|
+
* <p>Version is not present in the request <i>or</i> the value of
|
|
93
|
+
* version in the new record is equal to or lower than the existing value</p>
|
|
94
|
+
* </li>
|
|
95
|
+
* </ul>
|
|
96
|
+
* <p> In this case, if Timestream rejects data, the
|
|
97
|
+
* <code>ExistingVersion</code> field in the <code>RejectedRecords</code> response
|
|
98
|
+
* will indicate the current record’s version. To force an update, you can resend the
|
|
99
|
+
* request with a version for the record set to a value greater than the
|
|
100
|
+
* <code>ExistingVersion</code>.</p>
|
|
101
|
+
* </li>
|
|
102
|
+
* <li>
|
|
103
|
+
* <p> Records with timestamps that lie outside the retention duration of the memory
|
|
104
|
+
* store. </p>
|
|
105
|
+
* </li>
|
|
106
|
+
* <li>
|
|
107
|
+
* <p> Records with dimensions or measures that exceed the Timestream defined
|
|
108
|
+
* limits. </p>
|
|
109
|
+
* </li>
|
|
110
|
+
* </ul>
|
|
111
|
+
* <p> For more information, see <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html">Quotas</a> in the Amazon Timestream Developer Guide. </p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
114
|
+
* <p>The operation tried to access a nonexistent resource. The resource might not be
|
|
115
|
+
* specified correctly, or its status might not be ACTIVE.</p>
|
|
116
|
+
*
|
|
117
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
118
|
+
* <p> Too many requests were made by a user and they exceeded the service quotas. The request
|
|
119
|
+
* was throttled.</p>
|
|
120
|
+
*
|
|
121
|
+
* @throws {@link ValidationException} (client fault)
|
|
122
|
+
* <p> An invalid or malformed request.</p>
|
|
123
|
+
*
|
|
124
|
+
*
|
|
70
125
|
*/
|
|
71
126
|
export declare class WriteRecordsCommand extends $Command<WriteRecordsCommandInput, WriteRecordsCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
72
127
|
readonly input: WriteRecordsCommandInput;
|
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.292.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",
|
|
@@ -20,58 +20,53 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
44
|
+
"@aws-sdk/types": "3.292.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
56
56
|
"tslib": "^2.3.1",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|
|
64
64
|
"concurrently": "7.0.0",
|
|
65
65
|
"downlevel-dts": "0.10.1",
|
|
66
66
|
"rimraf": "3.0.2",
|
|
67
|
-
"typedoc": "0.
|
|
67
|
+
"typedoc": "0.23.23",
|
|
68
68
|
"typescript": "~4.6.2"
|
|
69
69
|
},
|
|
70
|
-
"overrides": {
|
|
71
|
-
"typedoc": {
|
|
72
|
-
"typescript": "~4.6.2"
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
70
|
"engines": {
|
|
76
71
|
"node": ">=14.0.0"
|
|
77
72
|
},
|