@aws-sdk/client-rds-data 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/RDSData.d.ts +106 -35
- package/dist-types/ts3.4/RDSDataClient.d.ts +140 -79
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BeginTransactionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CommitTransactionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ExecuteSqlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RollbackTransactionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/RDSDataServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +576 -674
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ExecuteStatementRequest,
|
|
10
|
+
ExecuteStatementResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RDSDataClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RDSDataClient";
|
|
17
|
+
export interface ExecuteStatementCommandInput extends ExecuteStatementRequest {}
|
|
18
|
+
export interface ExecuteStatementCommandOutput
|
|
19
|
+
extends ExecuteStatementResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ExecuteStatementCommand extends $Command<
|
|
22
|
+
ExecuteStatementCommandInput,
|
|
23
|
+
ExecuteStatementCommandOutput,
|
|
24
|
+
RDSDataClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ExecuteStatementCommandInput;
|
|
27
|
+
constructor(input: ExecuteStatementCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: RDSDataClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ExecuteStatementCommandInput, ExecuteStatementCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
RollbackTransactionRequest,
|
|
10
|
+
RollbackTransactionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RDSDataClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RDSDataClient";
|
|
17
|
+
export interface RollbackTransactionCommandInput
|
|
18
|
+
extends RollbackTransactionRequest {}
|
|
19
|
+
export interface RollbackTransactionCommandOutput
|
|
20
|
+
extends RollbackTransactionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class RollbackTransactionCommand extends $Command<
|
|
23
|
+
RollbackTransactionCommandInput,
|
|
24
|
+
RollbackTransactionCommandOutput,
|
|
25
|
+
RDSDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: RollbackTransactionCommandInput;
|
|
28
|
+
constructor(input: RollbackTransactionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RDSDataClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<RollbackTransactionCommandInput, RollbackTransactionCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./BatchExecuteStatementCommand";
|
|
2
|
-
export * from "./BeginTransactionCommand";
|
|
3
|
-
export * from "./CommitTransactionCommand";
|
|
4
|
-
export * from "./ExecuteSqlCommand";
|
|
5
|
-
export * from "./ExecuteStatementCommand";
|
|
6
|
-
export * from "./RollbackTransactionCommand";
|
|
1
|
+
export * from "./BatchExecuteStatementCommand";
|
|
2
|
+
export * from "./BeginTransactionCommand";
|
|
3
|
+
export * from "./CommitTransactionCommand";
|
|
4
|
+
export * from "./ExecuteSqlCommand";
|
|
5
|
+
export * from "./ExecuteStatementCommand";
|
|
6
|
+
export * from "./RollbackTransactionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./RDSData";
|
|
2
|
-
export * from "./RDSDataClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { RDSDataServiceException } from "./models/RDSDataServiceException";
|
|
1
|
+
export * from "./RDSData";
|
|
2
|
+
export * from "./RDSDataClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { RDSDataServiceException } from "./models/RDSDataServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class RDSDataServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|