@aws-sdk/client-redshift-serverless 3.295.0 → 3.297.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/RedshiftServerless.d.ts +41 -0
- package/dist-types/RedshiftServerlessClient.d.ts +24 -4
- package/dist-types/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/CreateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/GetCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/GetEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/GetRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/ListEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
- package/dist-types/commands/ListSnapshotsCommand.d.ts +16 -0
- package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListUsageLimitsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkgroupsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkgroupCommand.d.ts +16 -0
- package/dist-types/models/RedshiftServerlessServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +289 -4
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSnapshotsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface RedshiftServerlessPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: RedshiftServerlessClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListEndpointAccessCommandInput, ListEndpointAccessCommandOutput } from "../commands/ListEndpointAccessCommand";
|
|
3
3
|
import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListEndpointAccess(config: RedshiftServerlessPaginationConfiguration, input: ListEndpointAccessCommandInput, ...additionalArguments: any): Paginator<ListEndpointAccessCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "../commands/ListNamespacesCommand";
|
|
3
3
|
import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListNamespaces(config: RedshiftServerlessPaginationConfiguration, input: ListNamespacesCommandInput, ...additionalArguments: any): Paginator<ListNamespacesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListRecoveryPointsCommandInput, ListRecoveryPointsCommandOutput } from "../commands/ListRecoveryPointsCommand";
|
|
3
3
|
import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListRecoveryPoints(config: RedshiftServerlessPaginationConfiguration, input: ListRecoveryPointsCommandInput, ...additionalArguments: any): Paginator<ListRecoveryPointsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSnapshotsCommandInput, ListSnapshotsCommandOutput } from "../commands/ListSnapshotsCommand";
|
|
3
3
|
import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSnapshots(config: RedshiftServerlessPaginationConfiguration, input: ListSnapshotsCommandInput, ...additionalArguments: any): Paginator<ListSnapshotsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListTableRestoreStatusCommandInput, ListTableRestoreStatusCommandOutput } from "../commands/ListTableRestoreStatusCommand";
|
|
3
3
|
import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListTableRestoreStatus(config: RedshiftServerlessPaginationConfiguration, input: ListTableRestoreStatusCommandInput, ...additionalArguments: any): Paginator<ListTableRestoreStatusCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListUsageLimitsCommandInput, ListUsageLimitsCommandOutput } from "../commands/ListUsageLimitsCommand";
|
|
3
3
|
import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListUsageLimits(config: RedshiftServerlessPaginationConfiguration, input: ListUsageLimitsCommandInput, ...additionalArguments: any): Paginator<ListUsageLimitsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListWorkgroupsCommandInput, ListWorkgroupsCommandOutput } from "../commands/ListWorkgroupsCommand";
|
|
3
3
|
import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListWorkgroups(config: RedshiftServerlessPaginationConfiguration, input: ListWorkgroupsCommandInput, ...additionalArguments: any): Paginator<ListWorkgroupsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.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,37 +20,37 @@
|
|
|
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-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.295.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
55
|
"tslib": "^2.5.0"
|
|
56
56
|
},
|