@aws-sdk/client-redshift-data 3.36.0 → 3.36.1
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/CHANGELOG.md +11 -0
- package/dist-cjs/RedshiftData.js +0 -7
- package/dist-cjs/RedshiftDataClient.js +0 -12
- package/dist-cjs/commands/BatchExecuteStatementCommand.js +0 -38
- package/dist-cjs/commands/CancelStatementCommand.js +0 -24
- package/dist-cjs/commands/DescribeStatementCommand.js +0 -26
- package/dist-cjs/commands/DescribeTableCommand.js +0 -39
- package/dist-cjs/commands/ExecuteStatementCommand.js +0 -38
- package/dist-cjs/commands/GetStatementResultCommand.js +0 -25
- package/dist-cjs/commands/ListDatabasesCommand.js +0 -38
- package/dist-cjs/commands/ListSchemasCommand.js +0 -38
- package/dist-cjs/commands/ListStatementsCommand.js +0 -25
- package/dist-cjs/commands/ListTablesCommand.js +0 -39
- package/dist-cjs/models/models_0.js +0 -96
- package/dist-cjs/pagination/DescribeTablePaginator.js +0 -10
- package/dist-cjs/pagination/GetStatementResultPaginator.js +0 -10
- package/dist-cjs/pagination/ListDatabasesPaginator.js +0 -10
- package/dist-cjs/pagination/ListSchemasPaginator.js +0 -10
- package/dist-cjs/pagination/ListStatementsPaginator.js +0 -10
- package/dist-cjs/pagination/ListTablesPaginator.js +0 -10
- package/dist-cjs/protocols/Aws_json1_1.js +0 -5
- package/dist-cjs/runtimeConfig.browser.js +1 -5
- package/dist-cjs/runtimeConfig.js +1 -5
- package/dist-cjs/runtimeConfig.native.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +0 -3
- package/dist-types/ts3.4/RedshiftData.d.ts +11 -127
- package/dist-types/ts3.4/RedshiftDataClient.d.ts +24 -93
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +2 -34
- package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/DescribeStatementCommand.d.ts +2 -22
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +2 -35
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +2 -34
- package/dist-types/ts3.4/commands/GetStatementResultCommand.d.ts +2 -21
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +2 -34
- package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +2 -34
- package/dist-types/ts3.4/commands/ListStatementsCommand.d.ts +2 -21
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +2 -35
- package/dist-types/ts3.4/models/models_0.d.ts +198 -688
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -3
- package/package.json +3 -3
|
@@ -6,43 +6,11 @@ export interface ListSchemasCommandInput extends ListSchemasRequest {
|
|
|
6
6
|
}
|
|
7
7
|
export interface ListSchemasCommandOutput extends ListSchemasResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
* <p>Lists the schemas in a database.
|
|
11
|
-
* A token is returned to page through the schema list.
|
|
12
|
-
* Depending on the authorization method, use one of the
|
|
13
|
-
* following combinations of request parameters: </p>
|
|
14
|
-
* <ul>
|
|
15
|
-
* <li>
|
|
16
|
-
* <p>Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the
|
|
17
|
-
* cluster identifier that matches the cluster in the secret. </p>
|
|
18
|
-
* </li>
|
|
19
|
-
* <li>
|
|
20
|
-
* <p>Temporary credentials - specify the cluster identifier, the database name, and the
|
|
21
|
-
* database user name. Permission to call the <code>redshift:GetClusterCredentials</code>
|
|
22
|
-
* operation is required to use this method. </p>
|
|
23
|
-
* </li>
|
|
24
|
-
* </ul>
|
|
25
|
-
* @example
|
|
26
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
27
|
-
* ```javascript
|
|
28
|
-
* import { RedshiftDataClient, ListSchemasCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
29
|
-
* // const { RedshiftDataClient, ListSchemasCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
30
|
-
* const client = new RedshiftDataClient(config);
|
|
31
|
-
* const command = new ListSchemasCommand(input);
|
|
32
|
-
* const response = await client.send(command);
|
|
33
|
-
* ```
|
|
34
|
-
*
|
|
35
|
-
* @see {@link ListSchemasCommandInput} for command's `input` shape.
|
|
36
|
-
* @see {@link ListSchemasCommandOutput} for command's `response` shape.
|
|
37
|
-
* @see {@link RedshiftDataClientResolvedConfig | config} for command's `input` shape.
|
|
38
|
-
*
|
|
39
|
-
*/
|
|
9
|
+
|
|
40
10
|
export declare class ListSchemasCommand extends $Command<ListSchemasCommandInput, ListSchemasCommandOutput, RedshiftDataClientResolvedConfig> {
|
|
41
11
|
readonly input: ListSchemasCommandInput;
|
|
42
12
|
constructor(input: ListSchemasCommandInput);
|
|
43
|
-
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
13
|
+
|
|
46
14
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSchemasCommandInput, ListSchemasCommandOutput>;
|
|
47
15
|
private serialize;
|
|
48
16
|
private deserialize;
|
|
@@ -6,30 +6,11 @@ export interface ListStatementsCommandInput extends ListStatementsRequest {
|
|
|
6
6
|
}
|
|
7
7
|
export interface ListStatementsCommandOutput extends ListStatementsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
* <p>List of SQL statements. By default, only finished statements are shown.
|
|
11
|
-
* A token is returned to page through the statement list. </p>
|
|
12
|
-
* @example
|
|
13
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
-
* ```javascript
|
|
15
|
-
* import { RedshiftDataClient, ListStatementsCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
16
|
-
* // const { RedshiftDataClient, ListStatementsCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
17
|
-
* const client = new RedshiftDataClient(config);
|
|
18
|
-
* const command = new ListStatementsCommand(input);
|
|
19
|
-
* const response = await client.send(command);
|
|
20
|
-
* ```
|
|
21
|
-
*
|
|
22
|
-
* @see {@link ListStatementsCommandInput} for command's `input` shape.
|
|
23
|
-
* @see {@link ListStatementsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link RedshiftDataClientResolvedConfig | config} for command's `input` shape.
|
|
25
|
-
*
|
|
26
|
-
*/
|
|
9
|
+
|
|
27
10
|
export declare class ListStatementsCommand extends $Command<ListStatementsCommandInput, ListStatementsCommandOutput, RedshiftDataClientResolvedConfig> {
|
|
28
11
|
readonly input: ListStatementsCommandInput;
|
|
29
12
|
constructor(input: ListStatementsCommandInput);
|
|
30
|
-
|
|
31
|
-
* @internal
|
|
32
|
-
*/
|
|
13
|
+
|
|
33
14
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStatementsCommandInput, ListStatementsCommandOutput>;
|
|
34
15
|
private serialize;
|
|
35
16
|
private deserialize;
|
|
@@ -6,44 +6,11 @@ export interface ListTablesCommandInput extends ListTablesRequest {
|
|
|
6
6
|
}
|
|
7
7
|
export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
* <p>List the tables in a database. If neither <code>SchemaPattern</code> nor <code>TablePattern</code> are specified, then
|
|
11
|
-
* all tables in the database are returned.
|
|
12
|
-
* A token is returned to page through the table list.
|
|
13
|
-
* Depending on the authorization method, use one of the
|
|
14
|
-
* following combinations of request parameters: </p>
|
|
15
|
-
* <ul>
|
|
16
|
-
* <li>
|
|
17
|
-
* <p>Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the
|
|
18
|
-
* cluster identifier that matches the cluster in the secret. </p>
|
|
19
|
-
* </li>
|
|
20
|
-
* <li>
|
|
21
|
-
* <p>Temporary credentials - specify the cluster identifier, the database name, and the
|
|
22
|
-
* database user name. Permission to call the <code>redshift:GetClusterCredentials</code>
|
|
23
|
-
* operation is required to use this method. </p>
|
|
24
|
-
* </li>
|
|
25
|
-
* </ul>
|
|
26
|
-
* @example
|
|
27
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
28
|
-
* ```javascript
|
|
29
|
-
* import { RedshiftDataClient, ListTablesCommand } from "@aws-sdk/client-redshift-data"; // ES Modules import
|
|
30
|
-
* // const { RedshiftDataClient, ListTablesCommand } = require("@aws-sdk/client-redshift-data"); // CommonJS import
|
|
31
|
-
* const client = new RedshiftDataClient(config);
|
|
32
|
-
* const command = new ListTablesCommand(input);
|
|
33
|
-
* const response = await client.send(command);
|
|
34
|
-
* ```
|
|
35
|
-
*
|
|
36
|
-
* @see {@link ListTablesCommandInput} for command's `input` shape.
|
|
37
|
-
* @see {@link ListTablesCommandOutput} for command's `response` shape.
|
|
38
|
-
* @see {@link RedshiftDataClientResolvedConfig | config} for command's `input` shape.
|
|
39
|
-
*
|
|
40
|
-
*/
|
|
9
|
+
|
|
41
10
|
export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, RedshiftDataClientResolvedConfig> {
|
|
42
11
|
readonly input: ListTablesCommandInput;
|
|
43
12
|
constructor(input: ListTablesCommandInput);
|
|
44
|
-
|
|
45
|
-
* @internal
|
|
46
|
-
*/
|
|
13
|
+
|
|
47
14
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
|
|
48
15
|
private serialize;
|
|
49
16
|
private deserialize;
|