@effect-aws/client-timestream-influxdb 2.0.0-beta.4 → 2.0.0-beta.7
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/dts/TimestreamInfluxDBService.d.ts +26 -1
- package/dist/dts/TimestreamInfluxDBService.d.ts.map +1 -1
- package/dist/dts/TimestreamInfluxDBServiceConfig.d.ts.map +1 -1
- package/dist/esm/TimestreamInfluxDBService.js +7 -1
- package/dist/esm/TimestreamInfluxDBService.js.map +1 -1
- package/package.json +3 -3
- package/src/TimestreamInfluxDBService.ts +130 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
|
-
import { type CreateDbClusterCommandInput, type CreateDbClusterCommandOutput, type CreateDbInstanceCommandInput, type CreateDbInstanceCommandOutput, type CreateDbParameterGroupCommandInput, type CreateDbParameterGroupCommandOutput, type DeleteDbClusterCommandInput, type DeleteDbClusterCommandOutput, type DeleteDbInstanceCommandInput, type DeleteDbInstanceCommandOutput, type GetDbClusterCommandInput, type GetDbClusterCommandOutput, type GetDbInstanceCommandInput, type GetDbInstanceCommandOutput, type GetDbParameterGroupCommandInput, type GetDbParameterGroupCommandOutput, type ListDbClustersCommandInput, type ListDbClustersCommandOutput, type ListDbInstancesCommandInput, type ListDbInstancesCommandOutput, type ListDbInstancesForClusterCommandInput, type ListDbInstancesForClusterCommandOutput, type ListDbParameterGroupsCommandInput, type ListDbParameterGroupsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type RebootDbClusterCommandInput, type RebootDbClusterCommandOutput, type RebootDbInstanceCommandInput, type RebootDbInstanceCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TimestreamInfluxDBClient, type TimestreamInfluxDBClientConfig, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateDbClusterCommandInput, type UpdateDbClusterCommandOutput, type UpdateDbInstanceCommandInput, type UpdateDbInstanceCommandOutput } from "@aws-sdk/client-timestream-influxdb";
|
|
4
|
+
import { type CreateDbBackupCommandInput, type CreateDbBackupCommandOutput, type CreateDbClusterCommandInput, type CreateDbClusterCommandOutput, type CreateDbInstanceCommandInput, type CreateDbInstanceCommandOutput, type CreateDbParameterGroupCommandInput, type CreateDbParameterGroupCommandOutput, type DeleteDbBackupCommandInput, type DeleteDbBackupCommandOutput, type DeleteDbClusterCommandInput, type DeleteDbClusterCommandOutput, type DeleteDbInstanceCommandInput, type DeleteDbInstanceCommandOutput, type GetDbBackupCommandInput, type GetDbBackupCommandOutput, type GetDbClusterCommandInput, type GetDbClusterCommandOutput, type GetDbInstanceCommandInput, type GetDbInstanceCommandOutput, type GetDbParameterGroupCommandInput, type GetDbParameterGroupCommandOutput, type ListDbBackupsCommandInput, type ListDbBackupsCommandOutput, type ListDbClustersCommandInput, type ListDbClustersCommandOutput, type ListDbInstancesCommandInput, type ListDbInstancesCommandOutput, type ListDbInstancesForClusterCommandInput, type ListDbInstancesForClusterCommandOutput, type ListDbParameterGroupsCommandInput, type ListDbParameterGroupsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type RebootDbClusterCommandInput, type RebootDbClusterCommandOutput, type RebootDbInstanceCommandInput, type RebootDbInstanceCommandOutput, type RestoreFromDbBackupCommandInput, type RestoreFromDbBackupCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TimestreamInfluxDBClient, type TimestreamInfluxDBClientConfig, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateDbClusterCommandInput, type UpdateDbClusterCommandOutput, type UpdateDbInstanceCommandInput, type UpdateDbInstanceCommandOutput } from "@aws-sdk/client-timestream-influxdb";
|
|
5
5
|
import type * as ServiceLogger from "@effect-aws/commons/ServiceLogger";
|
|
6
6
|
import type { HttpHandlerOptions } from "@effect-aws/commons/Types";
|
|
7
7
|
import type * as Cause from "effect/Cause";
|
|
@@ -11,7 +11,15 @@ import * as Layer from "effect/Layer";
|
|
|
11
11
|
import type * as Stream from "effect/Stream";
|
|
12
12
|
import type { AccessDeniedError, ConflictError, InternalServerError, ResourceNotFoundError, SdkError, ServiceQuotaExceededError, ThrottlingError, ValidationError } from "./Errors.js";
|
|
13
13
|
import * as Instance from "./TimestreamInfluxDBClientInstance.js";
|
|
14
|
+
/**
|
|
15
|
+
* @since 1.0.0
|
|
16
|
+
* @category models
|
|
17
|
+
*/
|
|
14
18
|
export interface TimestreamInfluxDBService$ {
|
|
19
|
+
/**
|
|
20
|
+
* @see {@link CreateDbBackupCommand}
|
|
21
|
+
*/
|
|
22
|
+
createDbBackup(args: CreateDbBackupCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDbBackupCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
15
23
|
/**
|
|
16
24
|
* @see {@link CreateDbClusterCommand}
|
|
17
25
|
*/
|
|
@@ -24,6 +32,10 @@ export interface TimestreamInfluxDBService$ {
|
|
|
24
32
|
* @see {@link CreateDbParameterGroupCommand}
|
|
25
33
|
*/
|
|
26
34
|
createDbParameterGroup(args: CreateDbParameterGroupCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDbParameterGroupCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link DeleteDbBackupCommand}
|
|
37
|
+
*/
|
|
38
|
+
deleteDbBackup(args: DeleteDbBackupCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDbBackupCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
27
39
|
/**
|
|
28
40
|
* @see {@link DeleteDbClusterCommand}
|
|
29
41
|
*/
|
|
@@ -32,6 +44,10 @@ export interface TimestreamInfluxDBService$ {
|
|
|
32
44
|
* @see {@link DeleteDbInstanceCommand}
|
|
33
45
|
*/
|
|
34
46
|
deleteDbInstance(args: DeleteDbInstanceCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDbInstanceCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link GetDbBackupCommand}
|
|
49
|
+
*/
|
|
50
|
+
getDbBackup(args: GetDbBackupCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDbBackupCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
35
51
|
/**
|
|
36
52
|
* @see {@link GetDbClusterCommand}
|
|
37
53
|
*/
|
|
@@ -44,6 +60,11 @@ export interface TimestreamInfluxDBService$ {
|
|
|
44
60
|
* @see {@link GetDbParameterGroupCommand}
|
|
45
61
|
*/
|
|
46
62
|
getDbParameterGroup(args: GetDbParameterGroupCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDbParameterGroupCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link ListDbBackupsCommand}
|
|
65
|
+
*/
|
|
66
|
+
listDbBackups(args: ListDbBackupsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDbBackupsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
67
|
+
listDbBackupsStream(args: ListDbBackupsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDbBackupsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
47
68
|
/**
|
|
48
69
|
* @see {@link ListDbClustersCommand}
|
|
49
70
|
*/
|
|
@@ -76,6 +97,10 @@ export interface TimestreamInfluxDBService$ {
|
|
|
76
97
|
* @see {@link RebootDbInstanceCommand}
|
|
77
98
|
*/
|
|
78
99
|
rebootDbInstance(args: RebootDbInstanceCommandInput, options?: HttpHandlerOptions): Effect.Effect<RebootDbInstanceCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
100
|
+
/**
|
|
101
|
+
* @see {@link RestoreFromDbBackupCommand}
|
|
102
|
+
*/
|
|
103
|
+
restoreFromDbBackup(args: RestoreFromDbBackupCommandInput, options?: HttpHandlerOptions): Effect.Effect<RestoreFromDbBackupCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
79
104
|
/**
|
|
80
105
|
* @see {@link TagResourceCommand}
|
|
81
106
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimestreamInfluxDBService.d.ts","sourceRoot":"","sources":["../../src/TimestreamInfluxDBService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAE/B,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,
|
|
1
|
+
{"version":3,"file":"TimestreamInfluxDBService.d.ts","sourceRoot":"","sources":["../../src/TimestreamInfluxDBService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimestreamInfluxDBServiceConfig.d.ts","sourceRoot":"","sources":["../../src/TimestreamInfluxDBServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AAG1F,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,KAAK,KAAK,MAAM,cAAc,CAAC;AACtC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAWhF;;;GAGG;AACH,eAAO,MAAM,mCAAmC,EAAE;IAChD,CAAC,MAAM,EAAE,yBAAyB,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAChH,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,yBAAyB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAK7G,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kCAAkC,
|
|
1
|
+
{"version":3,"file":"TimestreamInfluxDBServiceConfig.d.ts","sourceRoot":"","sources":["../../src/TimestreamInfluxDBServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,qCAAqC,CAAC;AAG1F,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,KAAK,KAAK,MAAM,cAAc,CAAC;AACtC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAWhF;;;GAGG;AACH,eAAO,MAAM,mCAAmC,EAAE;IAChD,CAAC,MAAM,EAAE,yBAAyB,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAChH,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,yBAAyB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAK7G,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kCAAkC,GAAI,QAAQ,yBAAyB,CAAC,MAAM,qCAC5B,CAAC;AAEhE;;;GAGG;AACH,eAAO,MAAM,gCAAgC,EAAE,MAAM,CAAC,MAAM,CAAC,8BAA8B,CAQzF,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
|
-
import { CreateDbClusterCommand, CreateDbInstanceCommand, CreateDbParameterGroupCommand, DeleteDbClusterCommand, DeleteDbInstanceCommand, GetDbClusterCommand, GetDbInstanceCommand, GetDbParameterGroupCommand, ListDbClustersCommand, ListDbInstancesCommand, ListDbInstancesForClusterCommand, ListDbParameterGroupsCommand, ListTagsForResourceCommand, paginateListDbClusters, paginateListDbInstances, paginateListDbInstancesForCluster, paginateListDbParameterGroups, RebootDbClusterCommand, RebootDbInstanceCommand, TagResourceCommand, UntagResourceCommand, UpdateDbClusterCommand, UpdateDbInstanceCommand, } from "@aws-sdk/client-timestream-influxdb";
|
|
4
|
+
import { CreateDbBackupCommand, CreateDbClusterCommand, CreateDbInstanceCommand, CreateDbParameterGroupCommand, DeleteDbBackupCommand, DeleteDbClusterCommand, DeleteDbInstanceCommand, GetDbBackupCommand, GetDbClusterCommand, GetDbInstanceCommand, GetDbParameterGroupCommand, ListDbBackupsCommand, ListDbClustersCommand, ListDbInstancesCommand, ListDbInstancesForClusterCommand, ListDbParameterGroupsCommand, ListTagsForResourceCommand, paginateListDbBackups, paginateListDbClusters, paginateListDbInstances, paginateListDbInstancesForCluster, paginateListDbParameterGroups, RebootDbClusterCommand, RebootDbInstanceCommand, RestoreFromDbBackupCommand, TagResourceCommand, UntagResourceCommand, UpdateDbClusterCommand, UpdateDbInstanceCommand, } from "@aws-sdk/client-timestream-influxdb";
|
|
5
5
|
import * as Service from "@effect-aws/commons/Service";
|
|
6
6
|
import * as Context from "effect/Context";
|
|
7
7
|
import * as Effect from "effect/Effect";
|
|
@@ -10,14 +10,18 @@ import { AllServiceErrors } from "./Errors.js";
|
|
|
10
10
|
import * as Instance from "./TimestreamInfluxDBClientInstance.js";
|
|
11
11
|
import * as TimestreamInfluxDBServiceConfig from "./TimestreamInfluxDBServiceConfig.js";
|
|
12
12
|
const commands = {
|
|
13
|
+
CreateDbBackupCommand,
|
|
13
14
|
CreateDbClusterCommand,
|
|
14
15
|
CreateDbInstanceCommand,
|
|
15
16
|
CreateDbParameterGroupCommand,
|
|
17
|
+
DeleteDbBackupCommand,
|
|
16
18
|
DeleteDbClusterCommand,
|
|
17
19
|
DeleteDbInstanceCommand,
|
|
20
|
+
GetDbBackupCommand,
|
|
18
21
|
GetDbClusterCommand,
|
|
19
22
|
GetDbInstanceCommand,
|
|
20
23
|
GetDbParameterGroupCommand,
|
|
24
|
+
ListDbBackupsCommand,
|
|
21
25
|
ListDbClustersCommand,
|
|
22
26
|
ListDbInstancesCommand,
|
|
23
27
|
ListDbInstancesForClusterCommand,
|
|
@@ -25,12 +29,14 @@ const commands = {
|
|
|
25
29
|
ListTagsForResourceCommand,
|
|
26
30
|
RebootDbClusterCommand,
|
|
27
31
|
RebootDbInstanceCommand,
|
|
32
|
+
RestoreFromDbBackupCommand,
|
|
28
33
|
TagResourceCommand,
|
|
29
34
|
UntagResourceCommand,
|
|
30
35
|
UpdateDbClusterCommand,
|
|
31
36
|
UpdateDbInstanceCommand,
|
|
32
37
|
};
|
|
33
38
|
const paginators = {
|
|
39
|
+
paginateListDbBackups,
|
|
34
40
|
paginateListDbClusters,
|
|
35
41
|
paginateListDbInstances,
|
|
36
42
|
paginateListDbInstancesForCluster,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimestreamInfluxDBService.js","sourceRoot":"","sources":["../../src/TimestreamInfluxDBService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EACL,sBAAsB,EAGtB,uBAAuB,EAGvB,6BAA6B,EAG7B,sBAAsB,EAGtB,uBAAuB,EAGvB,mBAAmB,EAGnB,oBAAoB,EAGpB,0BAA0B,EAG1B,qBAAqB,EAGrB,sBAAsB,EAGtB,gCAAgC,EAGhC,4BAA4B,EAG5B,0BAA0B,EAG1B,sBAAsB,EACtB,uBAAuB,EACvB,iCAAiC,EACjC,6BAA6B,EAC7B,sBAAsB,EAGtB,uBAAuB,EAGvB,kBAAkB,EAKlB,oBAAoB,EAGpB,sBAAsB,EAGtB,uBAAuB,GAGxB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,KAAK,OAAO,MAAM,6BAA6B,CAAC;AAIvD,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAC1C,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,KAAK,MAAM,cAAc,CAAC;AAYtC,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,KAAK,QAAQ,MAAM,uCAAuC,CAAC;AAClE,OAAO,KAAK,+BAA+B,MAAM,sCAAsC,CAAC;AAExF,MAAM,QAAQ,GAAG;IACf,sBAAsB;IACtB,uBAAuB;IACvB,6BAA6B;IAC7B,sBAAsB;IACtB,uBAAuB;IACvB,mBAAmB;IACnB,oBAAoB;IACpB,0BAA0B;IAC1B,qBAAqB;IACrB,sBAAsB;IACtB,gCAAgC;IAChC,4BAA4B;IAC5B,0BAA0B;IAC1B,sBAAsB;IACtB,uBAAuB;IACvB,kBAAkB;IAClB,oBAAoB;IACpB,sBAAsB;IACtB,uBAAuB;CACxB,CAAC;AAEF,MAAM,UAAU,GAAG;IACjB,sBAAsB;IACtB,uBAAuB;IACvB,iCAAiC;IACjC,6BAA6B;CAC9B,CAAC;
|
|
1
|
+
{"version":3,"file":"TimestreamInfluxDBService.js","sourceRoot":"","sources":["../../src/TimestreamInfluxDBService.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-aws/client-timestream-influxdb",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.7",
|
|
4
4
|
"description": "Effectful AWS Timestream InfluxDB client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"homepage": "https://floydspace.github.io/effect-aws/docs/client-timestream-influxdb",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@aws-sdk/client-timestream-influxdb": "^3",
|
|
19
|
-
"@effect-aws/commons": "^1.0.0-beta.
|
|
19
|
+
"@effect-aws/commons": "^1.0.0-beta.5"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"effect": ">=4.0.0 <5.0.0"
|
|
22
|
+
"effect": ">=4.0.0-beta.66 <5.0.0"
|
|
23
23
|
},
|
|
24
24
|
"module": "./dist/esm/index.js",
|
|
25
25
|
"types": "./dist/dts/index.d.ts",
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import {
|
|
5
|
+
CreateDbBackupCommand,
|
|
6
|
+
type CreateDbBackupCommandInput,
|
|
7
|
+
type CreateDbBackupCommandOutput,
|
|
5
8
|
CreateDbClusterCommand,
|
|
6
9
|
type CreateDbClusterCommandInput,
|
|
7
10
|
type CreateDbClusterCommandOutput,
|
|
@@ -11,12 +14,18 @@ import {
|
|
|
11
14
|
CreateDbParameterGroupCommand,
|
|
12
15
|
type CreateDbParameterGroupCommandInput,
|
|
13
16
|
type CreateDbParameterGroupCommandOutput,
|
|
17
|
+
DeleteDbBackupCommand,
|
|
18
|
+
type DeleteDbBackupCommandInput,
|
|
19
|
+
type DeleteDbBackupCommandOutput,
|
|
14
20
|
DeleteDbClusterCommand,
|
|
15
21
|
type DeleteDbClusterCommandInput,
|
|
16
22
|
type DeleteDbClusterCommandOutput,
|
|
17
23
|
DeleteDbInstanceCommand,
|
|
18
24
|
type DeleteDbInstanceCommandInput,
|
|
19
25
|
type DeleteDbInstanceCommandOutput,
|
|
26
|
+
GetDbBackupCommand,
|
|
27
|
+
type GetDbBackupCommandInput,
|
|
28
|
+
type GetDbBackupCommandOutput,
|
|
20
29
|
GetDbClusterCommand,
|
|
21
30
|
type GetDbClusterCommandInput,
|
|
22
31
|
type GetDbClusterCommandOutput,
|
|
@@ -26,6 +35,9 @@ import {
|
|
|
26
35
|
GetDbParameterGroupCommand,
|
|
27
36
|
type GetDbParameterGroupCommandInput,
|
|
28
37
|
type GetDbParameterGroupCommandOutput,
|
|
38
|
+
ListDbBackupsCommand,
|
|
39
|
+
type ListDbBackupsCommandInput,
|
|
40
|
+
type ListDbBackupsCommandOutput,
|
|
29
41
|
ListDbClustersCommand,
|
|
30
42
|
type ListDbClustersCommandInput,
|
|
31
43
|
type ListDbClustersCommandOutput,
|
|
@@ -41,6 +53,7 @@ import {
|
|
|
41
53
|
ListTagsForResourceCommand,
|
|
42
54
|
type ListTagsForResourceCommandInput,
|
|
43
55
|
type ListTagsForResourceCommandOutput,
|
|
56
|
+
paginateListDbBackups,
|
|
44
57
|
paginateListDbClusters,
|
|
45
58
|
paginateListDbInstances,
|
|
46
59
|
paginateListDbInstancesForCluster,
|
|
@@ -51,6 +64,9 @@ import {
|
|
|
51
64
|
RebootDbInstanceCommand,
|
|
52
65
|
type RebootDbInstanceCommandInput,
|
|
53
66
|
type RebootDbInstanceCommandOutput,
|
|
67
|
+
RestoreFromDbBackupCommand,
|
|
68
|
+
type RestoreFromDbBackupCommandInput,
|
|
69
|
+
type RestoreFromDbBackupCommandOutput,
|
|
54
70
|
TagResourceCommand,
|
|
55
71
|
type TagResourceCommandInput,
|
|
56
72
|
type TagResourceCommandOutput,
|
|
@@ -89,14 +105,18 @@ import * as Instance from "./TimestreamInfluxDBClientInstance.js";
|
|
|
89
105
|
import * as TimestreamInfluxDBServiceConfig from "./TimestreamInfluxDBServiceConfig.js";
|
|
90
106
|
|
|
91
107
|
const commands = {
|
|
108
|
+
CreateDbBackupCommand,
|
|
92
109
|
CreateDbClusterCommand,
|
|
93
110
|
CreateDbInstanceCommand,
|
|
94
111
|
CreateDbParameterGroupCommand,
|
|
112
|
+
DeleteDbBackupCommand,
|
|
95
113
|
DeleteDbClusterCommand,
|
|
96
114
|
DeleteDbInstanceCommand,
|
|
115
|
+
GetDbBackupCommand,
|
|
97
116
|
GetDbClusterCommand,
|
|
98
117
|
GetDbInstanceCommand,
|
|
99
118
|
GetDbParameterGroupCommand,
|
|
119
|
+
ListDbBackupsCommand,
|
|
100
120
|
ListDbClustersCommand,
|
|
101
121
|
ListDbInstancesCommand,
|
|
102
122
|
ListDbInstancesForClusterCommand,
|
|
@@ -104,6 +124,7 @@ const commands = {
|
|
|
104
124
|
ListTagsForResourceCommand,
|
|
105
125
|
RebootDbClusterCommand,
|
|
106
126
|
RebootDbInstanceCommand,
|
|
127
|
+
RestoreFromDbBackupCommand,
|
|
107
128
|
TagResourceCommand,
|
|
108
129
|
UntagResourceCommand,
|
|
109
130
|
UpdateDbClusterCommand,
|
|
@@ -111,13 +132,37 @@ const commands = {
|
|
|
111
132
|
};
|
|
112
133
|
|
|
113
134
|
const paginators = {
|
|
135
|
+
paginateListDbBackups,
|
|
114
136
|
paginateListDbClusters,
|
|
115
137
|
paginateListDbInstances,
|
|
116
138
|
paginateListDbInstancesForCluster,
|
|
117
139
|
paginateListDbParameterGroups,
|
|
118
140
|
};
|
|
119
141
|
|
|
142
|
+
/**
|
|
143
|
+
* @since 1.0.0
|
|
144
|
+
* @category models
|
|
145
|
+
*/
|
|
120
146
|
export interface TimestreamInfluxDBService$ {
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link CreateDbBackupCommand}
|
|
149
|
+
*/
|
|
150
|
+
createDbBackup(
|
|
151
|
+
args: CreateDbBackupCommandInput,
|
|
152
|
+
options?: HttpHandlerOptions,
|
|
153
|
+
): Effect.Effect<
|
|
154
|
+
CreateDbBackupCommandOutput,
|
|
155
|
+
| Cause.TimeoutError
|
|
156
|
+
| SdkError
|
|
157
|
+
| AccessDeniedError
|
|
158
|
+
| ConflictError
|
|
159
|
+
| InternalServerError
|
|
160
|
+
| ResourceNotFoundError
|
|
161
|
+
| ServiceQuotaExceededError
|
|
162
|
+
| ThrottlingError
|
|
163
|
+
| ValidationError
|
|
164
|
+
>;
|
|
165
|
+
|
|
121
166
|
/**
|
|
122
167
|
* @see {@link CreateDbClusterCommand}
|
|
123
168
|
*/
|
|
@@ -175,6 +220,24 @@ export interface TimestreamInfluxDBService$ {
|
|
|
175
220
|
| ValidationError
|
|
176
221
|
>;
|
|
177
222
|
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link DeleteDbBackupCommand}
|
|
225
|
+
*/
|
|
226
|
+
deleteDbBackup(
|
|
227
|
+
args: DeleteDbBackupCommandInput,
|
|
228
|
+
options?: HttpHandlerOptions,
|
|
229
|
+
): Effect.Effect<
|
|
230
|
+
DeleteDbBackupCommandOutput,
|
|
231
|
+
| Cause.TimeoutError
|
|
232
|
+
| SdkError
|
|
233
|
+
| AccessDeniedError
|
|
234
|
+
| ConflictError
|
|
235
|
+
| InternalServerError
|
|
236
|
+
| ResourceNotFoundError
|
|
237
|
+
| ThrottlingError
|
|
238
|
+
| ValidationError
|
|
239
|
+
>;
|
|
240
|
+
|
|
178
241
|
/**
|
|
179
242
|
* @see {@link DeleteDbClusterCommand}
|
|
180
243
|
*/
|
|
@@ -211,6 +274,23 @@ export interface TimestreamInfluxDBService$ {
|
|
|
211
274
|
| ValidationError
|
|
212
275
|
>;
|
|
213
276
|
|
|
277
|
+
/**
|
|
278
|
+
* @see {@link GetDbBackupCommand}
|
|
279
|
+
*/
|
|
280
|
+
getDbBackup(
|
|
281
|
+
args: GetDbBackupCommandInput,
|
|
282
|
+
options?: HttpHandlerOptions,
|
|
283
|
+
): Effect.Effect<
|
|
284
|
+
GetDbBackupCommandOutput,
|
|
285
|
+
| Cause.TimeoutError
|
|
286
|
+
| SdkError
|
|
287
|
+
| AccessDeniedError
|
|
288
|
+
| InternalServerError
|
|
289
|
+
| ResourceNotFoundError
|
|
290
|
+
| ThrottlingError
|
|
291
|
+
| ValidationError
|
|
292
|
+
>;
|
|
293
|
+
|
|
214
294
|
/**
|
|
215
295
|
* @see {@link GetDbClusterCommand}
|
|
216
296
|
*/
|
|
@@ -262,6 +342,37 @@ export interface TimestreamInfluxDBService$ {
|
|
|
262
342
|
| ValidationError
|
|
263
343
|
>;
|
|
264
344
|
|
|
345
|
+
/**
|
|
346
|
+
* @see {@link ListDbBackupsCommand}
|
|
347
|
+
*/
|
|
348
|
+
listDbBackups(
|
|
349
|
+
args: ListDbBackupsCommandInput,
|
|
350
|
+
options?: HttpHandlerOptions,
|
|
351
|
+
): Effect.Effect<
|
|
352
|
+
ListDbBackupsCommandOutput,
|
|
353
|
+
| Cause.TimeoutError
|
|
354
|
+
| SdkError
|
|
355
|
+
| AccessDeniedError
|
|
356
|
+
| InternalServerError
|
|
357
|
+
| ResourceNotFoundError
|
|
358
|
+
| ThrottlingError
|
|
359
|
+
| ValidationError
|
|
360
|
+
>;
|
|
361
|
+
|
|
362
|
+
listDbBackupsStream(
|
|
363
|
+
args: ListDbBackupsCommandInput,
|
|
364
|
+
options?: HttpHandlerOptions,
|
|
365
|
+
): Stream.Stream<
|
|
366
|
+
ListDbBackupsCommandOutput,
|
|
367
|
+
| Cause.TimeoutError
|
|
368
|
+
| SdkError
|
|
369
|
+
| AccessDeniedError
|
|
370
|
+
| InternalServerError
|
|
371
|
+
| ResourceNotFoundError
|
|
372
|
+
| ThrottlingError
|
|
373
|
+
| ValidationError
|
|
374
|
+
>;
|
|
375
|
+
|
|
265
376
|
/**
|
|
266
377
|
* @see {@link ListDbClustersCommand}
|
|
267
378
|
*/
|
|
@@ -433,6 +544,25 @@ export interface TimestreamInfluxDBService$ {
|
|
|
433
544
|
| ValidationError
|
|
434
545
|
>;
|
|
435
546
|
|
|
547
|
+
/**
|
|
548
|
+
* @see {@link RestoreFromDbBackupCommand}
|
|
549
|
+
*/
|
|
550
|
+
restoreFromDbBackup(
|
|
551
|
+
args: RestoreFromDbBackupCommandInput,
|
|
552
|
+
options?: HttpHandlerOptions,
|
|
553
|
+
): Effect.Effect<
|
|
554
|
+
RestoreFromDbBackupCommandOutput,
|
|
555
|
+
| Cause.TimeoutError
|
|
556
|
+
| SdkError
|
|
557
|
+
| AccessDeniedError
|
|
558
|
+
| ConflictError
|
|
559
|
+
| InternalServerError
|
|
560
|
+
| ResourceNotFoundError
|
|
561
|
+
| ServiceQuotaExceededError
|
|
562
|
+
| ThrottlingError
|
|
563
|
+
| ValidationError
|
|
564
|
+
>;
|
|
565
|
+
|
|
436
566
|
/**
|
|
437
567
|
* @see {@link TagResourceCommand}
|
|
438
568
|
*/
|