@aws-sdk/client-rds-data 3.170.0 → 3.178.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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/RDSData.d.ts +0 -6
- package/dist-types/ts3.4/RDSDataClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BeginTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CommitTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExecuteSqlCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RollbackTransactionCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/RDSDataServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -132
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-rds-data
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-rds-data
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-rds-data
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
32
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
34
34
|
signingEscapePath?: boolean | undefined;
|
|
35
35
|
systemClockOffset?: number | undefined;
|
|
36
36
|
signingRegion?: string | undefined;
|
|
@@ -24,7 +24,6 @@ import {
|
|
|
24
24
|
RollbackTransactionCommandOutput,
|
|
25
25
|
} from "./commands/RollbackTransactionCommand";
|
|
26
26
|
import { RDSDataClient } from "./RDSDataClient";
|
|
27
|
-
|
|
28
27
|
export declare class RDSData extends RDSDataClient {
|
|
29
28
|
batchExecuteStatement(
|
|
30
29
|
args: BatchExecuteStatementCommandInput,
|
|
@@ -39,7 +38,6 @@ export declare class RDSData extends RDSDataClient {
|
|
|
39
38
|
options: __HttpHandlerOptions,
|
|
40
39
|
cb: (err: any, data?: BatchExecuteStatementCommandOutput) => void
|
|
41
40
|
): void;
|
|
42
|
-
|
|
43
41
|
beginTransaction(
|
|
44
42
|
args: BeginTransactionCommandInput,
|
|
45
43
|
options?: __HttpHandlerOptions
|
|
@@ -53,7 +51,6 @@ export declare class RDSData extends RDSDataClient {
|
|
|
53
51
|
options: __HttpHandlerOptions,
|
|
54
52
|
cb: (err: any, data?: BeginTransactionCommandOutput) => void
|
|
55
53
|
): void;
|
|
56
|
-
|
|
57
54
|
commitTransaction(
|
|
58
55
|
args: CommitTransactionCommandInput,
|
|
59
56
|
options?: __HttpHandlerOptions
|
|
@@ -67,7 +64,6 @@ export declare class RDSData extends RDSDataClient {
|
|
|
67
64
|
options: __HttpHandlerOptions,
|
|
68
65
|
cb: (err: any, data?: CommitTransactionCommandOutput) => void
|
|
69
66
|
): void;
|
|
70
|
-
|
|
71
67
|
executeSql(
|
|
72
68
|
args: ExecuteSqlCommandInput,
|
|
73
69
|
options?: __HttpHandlerOptions
|
|
@@ -81,7 +77,6 @@ export declare class RDSData extends RDSDataClient {
|
|
|
81
77
|
options: __HttpHandlerOptions,
|
|
82
78
|
cb: (err: any, data?: ExecuteSqlCommandOutput) => void
|
|
83
79
|
): void;
|
|
84
|
-
|
|
85
80
|
executeStatement(
|
|
86
81
|
args: ExecuteStatementCommandInput,
|
|
87
82
|
options?: __HttpHandlerOptions
|
|
@@ -95,7 +90,6 @@ export declare class RDSData extends RDSDataClient {
|
|
|
95
90
|
options: __HttpHandlerOptions,
|
|
96
91
|
cb: (err: any, data?: ExecuteStatementCommandOutput) => void
|
|
97
92
|
): void;
|
|
98
|
-
|
|
99
93
|
rollbackTransaction(
|
|
100
94
|
args: RollbackTransactionCommandInput,
|
|
101
95
|
options?: __HttpHandlerOptions
|
|
@@ -83,47 +83,26 @@ export declare type ServiceOutputTypes =
|
|
|
83
83
|
export interface ClientDefaults
|
|
84
84
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
85
85
|
requestHandler?: __HttpHandler;
|
|
86
|
-
|
|
87
86
|
sha256?: __HashConstructor;
|
|
88
|
-
|
|
89
87
|
urlParser?: __UrlParser;
|
|
90
|
-
|
|
91
88
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
92
|
-
|
|
93
89
|
streamCollector?: __StreamCollector;
|
|
94
|
-
|
|
95
90
|
base64Decoder?: __Decoder;
|
|
96
|
-
|
|
97
91
|
base64Encoder?: __Encoder;
|
|
98
|
-
|
|
99
92
|
utf8Decoder?: __Decoder;
|
|
100
|
-
|
|
101
93
|
utf8Encoder?: __Encoder;
|
|
102
|
-
|
|
103
94
|
runtime?: string;
|
|
104
|
-
|
|
105
95
|
disableHostPrefix?: boolean;
|
|
106
|
-
|
|
107
96
|
maxAttempts?: number | __Provider<number>;
|
|
108
|
-
|
|
109
97
|
retryMode?: string | __Provider<string>;
|
|
110
|
-
|
|
111
98
|
logger?: __Logger;
|
|
112
|
-
|
|
113
99
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
114
|
-
|
|
115
100
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
116
|
-
|
|
117
101
|
serviceId?: string;
|
|
118
|
-
|
|
119
102
|
region?: string | __Provider<string>;
|
|
120
|
-
|
|
121
103
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
122
|
-
|
|
123
104
|
regionInfoProvider?: RegionInfoProvider;
|
|
124
|
-
|
|
125
105
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
126
|
-
|
|
127
106
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
128
107
|
}
|
|
129
108
|
declare type RDSDataClientConfigType = Partial<
|
|
@@ -136,7 +115,6 @@ declare type RDSDataClientConfigType = Partial<
|
|
|
136
115
|
HostHeaderInputConfig &
|
|
137
116
|
AwsAuthInputConfig &
|
|
138
117
|
UserAgentInputConfig;
|
|
139
|
-
|
|
140
118
|
export interface RDSDataClientConfig extends RDSDataClientConfigType {}
|
|
141
119
|
declare type RDSDataClientResolvedConfigType =
|
|
142
120
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
@@ -147,10 +125,8 @@ declare type RDSDataClientResolvedConfigType =
|
|
|
147
125
|
HostHeaderResolvedConfig &
|
|
148
126
|
AwsAuthResolvedConfig &
|
|
149
127
|
UserAgentResolvedConfig;
|
|
150
|
-
|
|
151
128
|
export interface RDSDataClientResolvedConfig
|
|
152
129
|
extends RDSDataClientResolvedConfigType {}
|
|
153
|
-
|
|
154
130
|
export declare class RDSDataClient extends __Client<
|
|
155
131
|
__HttpHandlerOptions,
|
|
156
132
|
ServiceInputTypes,
|
|
@@ -159,7 +135,6 @@ export declare class RDSDataClient extends __Client<
|
|
|
159
135
|
> {
|
|
160
136
|
readonly config: RDSDataClientResolvedConfig;
|
|
161
137
|
constructor(configuration: RDSDataClientConfig);
|
|
162
|
-
|
|
163
138
|
destroy(): void;
|
|
164
139
|
}
|
|
165
140
|
export {};
|
|
@@ -19,7 +19,6 @@ export interface BatchExecuteStatementCommandInput
|
|
|
19
19
|
export interface BatchExecuteStatementCommandOutput
|
|
20
20
|
extends BatchExecuteStatementResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class BatchExecuteStatementCommand extends $Command<
|
|
24
23
|
BatchExecuteStatementCommandInput,
|
|
25
24
|
BatchExecuteStatementCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class BatchExecuteStatementCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: BatchExecuteStatementCommandInput;
|
|
29
28
|
constructor(input: BatchExecuteStatementCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: RDSDataClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface BeginTransactionCommandInput extends BeginTransactionRequest {}
|
|
|
18
18
|
export interface BeginTransactionCommandOutput
|
|
19
19
|
extends BeginTransactionResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class BeginTransactionCommand extends $Command<
|
|
23
22
|
BeginTransactionCommandInput,
|
|
24
23
|
BeginTransactionCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class BeginTransactionCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: BeginTransactionCommandInput;
|
|
28
27
|
constructor(input: BeginTransactionCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: RDSDataClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface CommitTransactionCommandInput
|
|
|
19
19
|
export interface CommitTransactionCommandOutput
|
|
20
20
|
extends CommitTransactionResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class CommitTransactionCommand extends $Command<
|
|
24
23
|
CommitTransactionCommandInput,
|
|
25
24
|
CommitTransactionCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class CommitTransactionCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: CommitTransactionCommandInput;
|
|
29
28
|
constructor(input: CommitTransactionCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: RDSDataClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ExecuteSqlCommandInput extends ExecuteSqlRequest {}
|
|
|
15
15
|
export interface ExecuteSqlCommandOutput
|
|
16
16
|
extends ExecuteSqlResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ExecuteSqlCommand extends $Command<
|
|
20
19
|
ExecuteSqlCommandInput,
|
|
21
20
|
ExecuteSqlCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ExecuteSqlCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ExecuteSqlCommandInput;
|
|
25
24
|
constructor(input: ExecuteSqlCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: RDSDataClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface ExecuteStatementCommandInput extends ExecuteStatementRequest {}
|
|
|
18
18
|
export interface ExecuteStatementCommandOutput
|
|
19
19
|
extends ExecuteStatementResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class ExecuteStatementCommand extends $Command<
|
|
23
22
|
ExecuteStatementCommandInput,
|
|
24
23
|
ExecuteStatementCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class ExecuteStatementCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: ExecuteStatementCommandInput;
|
|
28
27
|
constructor(input: ExecuteStatementCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: RDSDataClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface RollbackTransactionCommandInput
|
|
|
19
19
|
export interface RollbackTransactionCommandOutput
|
|
20
20
|
extends RollbackTransactionResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class RollbackTransactionCommand extends $Command<
|
|
24
23
|
RollbackTransactionCommandInput,
|
|
25
24
|
RollbackTransactionCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class RollbackTransactionCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: RollbackTransactionCommandInput;
|
|
29
28
|
constructor(input: RollbackTransactionCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: RDSDataClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class RDSDataServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export declare class BadRequestException extends __BaseException {
|
|
14
11
|
readonly name: "BadRequestException";
|
|
15
12
|
readonly $fault: "client";
|
|
16
|
-
|
|
17
13
|
constructor(
|
|
18
14
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
19
15
|
);
|
|
@@ -26,125 +22,84 @@ export declare enum TypeHint {
|
|
|
26
22
|
TIMESTAMP = "TIMESTAMP",
|
|
27
23
|
UUID = "UUID",
|
|
28
24
|
}
|
|
29
|
-
|
|
30
25
|
export declare class ForbiddenException extends __BaseException {
|
|
31
26
|
readonly name: "ForbiddenException";
|
|
32
27
|
readonly $fault: "client";
|
|
33
|
-
|
|
34
28
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
35
29
|
}
|
|
36
|
-
|
|
37
30
|
export declare class InternalServerErrorException extends __BaseException {
|
|
38
31
|
readonly name: "InternalServerErrorException";
|
|
39
32
|
readonly $fault: "server";
|
|
40
|
-
|
|
41
33
|
constructor(
|
|
42
34
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
43
35
|
);
|
|
44
36
|
}
|
|
45
|
-
|
|
46
37
|
export declare class ServiceUnavailableError extends __BaseException {
|
|
47
38
|
readonly name: "ServiceUnavailableError";
|
|
48
39
|
readonly $fault: "server";
|
|
49
|
-
|
|
50
40
|
constructor(
|
|
51
41
|
opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>
|
|
52
42
|
);
|
|
53
43
|
}
|
|
54
|
-
|
|
55
44
|
export declare class StatementTimeoutException extends __BaseException {
|
|
56
45
|
readonly name: "StatementTimeoutException";
|
|
57
46
|
readonly $fault: "client";
|
|
58
|
-
|
|
59
47
|
dbConnectionId?: number;
|
|
60
|
-
|
|
61
48
|
constructor(
|
|
62
49
|
opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>
|
|
63
50
|
);
|
|
64
51
|
}
|
|
65
|
-
|
|
66
52
|
export interface BeginTransactionRequest {
|
|
67
53
|
resourceArn: string | undefined;
|
|
68
|
-
|
|
69
54
|
secretArn: string | undefined;
|
|
70
|
-
|
|
71
55
|
database?: string;
|
|
72
|
-
|
|
73
56
|
schema?: string;
|
|
74
57
|
}
|
|
75
|
-
|
|
76
58
|
export interface BeginTransactionResponse {
|
|
77
59
|
transactionId?: string;
|
|
78
60
|
}
|
|
79
|
-
|
|
80
61
|
export interface ColumnMetadata {
|
|
81
62
|
name?: string;
|
|
82
|
-
|
|
83
63
|
type?: number;
|
|
84
|
-
|
|
85
64
|
typeName?: string;
|
|
86
|
-
|
|
87
65
|
label?: string;
|
|
88
|
-
|
|
89
66
|
schemaName?: string;
|
|
90
|
-
|
|
91
67
|
tableName?: string;
|
|
92
|
-
|
|
93
68
|
isAutoIncrement?: boolean;
|
|
94
|
-
|
|
95
69
|
isSigned?: boolean;
|
|
96
|
-
|
|
97
70
|
isCurrency?: boolean;
|
|
98
|
-
|
|
99
71
|
isCaseSensitive?: boolean;
|
|
100
|
-
|
|
101
72
|
nullable?: number;
|
|
102
|
-
|
|
103
73
|
precision?: number;
|
|
104
|
-
|
|
105
74
|
scale?: number;
|
|
106
|
-
|
|
107
75
|
arrayBaseColumnType?: number;
|
|
108
76
|
}
|
|
109
|
-
|
|
110
77
|
export interface CommitTransactionRequest {
|
|
111
78
|
resourceArn: string | undefined;
|
|
112
|
-
|
|
113
79
|
secretArn: string | undefined;
|
|
114
|
-
|
|
115
80
|
transactionId: string | undefined;
|
|
116
81
|
}
|
|
117
|
-
|
|
118
82
|
export interface CommitTransactionResponse {
|
|
119
83
|
transactionStatus?: string;
|
|
120
84
|
}
|
|
121
|
-
|
|
122
85
|
export declare class NotFoundException extends __BaseException {
|
|
123
86
|
readonly name: "NotFoundException";
|
|
124
87
|
readonly $fault: "client";
|
|
125
|
-
|
|
126
88
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
127
89
|
}
|
|
128
90
|
export declare enum DecimalReturnType {
|
|
129
91
|
DOUBLE_OR_LONG = "DOUBLE_OR_LONG",
|
|
130
92
|
STRING = "STRING",
|
|
131
93
|
}
|
|
132
|
-
|
|
133
94
|
export interface ExecuteSqlRequest {
|
|
134
95
|
dbClusterOrInstanceArn: string | undefined;
|
|
135
|
-
|
|
136
96
|
awsSecretStoreArn: string | undefined;
|
|
137
|
-
|
|
138
97
|
sqlStatements: string | undefined;
|
|
139
|
-
|
|
140
98
|
database?: string;
|
|
141
|
-
|
|
142
99
|
schema?: string;
|
|
143
100
|
}
|
|
144
|
-
|
|
145
101
|
export interface ResultSetMetadata {
|
|
146
102
|
columnCount?: number;
|
|
147
|
-
|
|
148
103
|
columnMetadata?: ColumnMetadata[];
|
|
149
104
|
}
|
|
150
105
|
export declare enum RecordsFormatType {
|
|
@@ -155,25 +110,18 @@ export declare enum LongReturnType {
|
|
|
155
110
|
LONG = "LONG",
|
|
156
111
|
STRING = "STRING",
|
|
157
112
|
}
|
|
158
|
-
|
|
159
113
|
export interface ResultSetOptions {
|
|
160
114
|
decimalReturnType?: DecimalReturnType | string;
|
|
161
|
-
|
|
162
115
|
longReturnType?: LongReturnType | string;
|
|
163
116
|
}
|
|
164
|
-
|
|
165
117
|
export interface RollbackTransactionRequest {
|
|
166
118
|
resourceArn: string | undefined;
|
|
167
|
-
|
|
168
119
|
secretArn: string | undefined;
|
|
169
|
-
|
|
170
120
|
transactionId: string | undefined;
|
|
171
121
|
}
|
|
172
|
-
|
|
173
122
|
export interface RollbackTransactionResponse {
|
|
174
123
|
transactionStatus?: string;
|
|
175
124
|
}
|
|
176
|
-
|
|
177
125
|
export declare type ArrayValue =
|
|
178
126
|
| ArrayValue.ArrayValuesMember
|
|
179
127
|
| ArrayValue.BooleanValuesMember
|
|
@@ -190,7 +138,6 @@ export declare namespace ArrayValue {
|
|
|
190
138
|
arrayValues?: never;
|
|
191
139
|
$unknown?: never;
|
|
192
140
|
}
|
|
193
|
-
|
|
194
141
|
interface LongValuesMember {
|
|
195
142
|
booleanValues?: never;
|
|
196
143
|
longValues: number[];
|
|
@@ -199,7 +146,6 @@ export declare namespace ArrayValue {
|
|
|
199
146
|
arrayValues?: never;
|
|
200
147
|
$unknown?: never;
|
|
201
148
|
}
|
|
202
|
-
|
|
203
149
|
interface DoubleValuesMember {
|
|
204
150
|
booleanValues?: never;
|
|
205
151
|
longValues?: never;
|
|
@@ -208,7 +154,6 @@ export declare namespace ArrayValue {
|
|
|
208
154
|
arrayValues?: never;
|
|
209
155
|
$unknown?: never;
|
|
210
156
|
}
|
|
211
|
-
|
|
212
157
|
interface StringValuesMember {
|
|
213
158
|
booleanValues?: never;
|
|
214
159
|
longValues?: never;
|
|
@@ -217,7 +162,6 @@ export declare namespace ArrayValue {
|
|
|
217
162
|
arrayValues?: never;
|
|
218
163
|
$unknown?: never;
|
|
219
164
|
}
|
|
220
|
-
|
|
221
165
|
interface ArrayValuesMember {
|
|
222
166
|
booleanValues?: never;
|
|
223
167
|
longValues?: never;
|
|
@@ -244,7 +188,6 @@ export declare namespace ArrayValue {
|
|
|
244
188
|
}
|
|
245
189
|
const visit: <T>(value: ArrayValue, visitor: Visitor<T>) => T;
|
|
246
190
|
}
|
|
247
|
-
|
|
248
191
|
export declare type Field =
|
|
249
192
|
| Field.ArrayValueMember
|
|
250
193
|
| Field.BlobValueMember
|
|
@@ -265,7 +208,6 @@ export declare namespace Field {
|
|
|
265
208
|
arrayValue?: never;
|
|
266
209
|
$unknown?: never;
|
|
267
210
|
}
|
|
268
|
-
|
|
269
211
|
interface BooleanValueMember {
|
|
270
212
|
isNull?: never;
|
|
271
213
|
booleanValue: boolean;
|
|
@@ -276,7 +218,6 @@ export declare namespace Field {
|
|
|
276
218
|
arrayValue?: never;
|
|
277
219
|
$unknown?: never;
|
|
278
220
|
}
|
|
279
|
-
|
|
280
221
|
interface LongValueMember {
|
|
281
222
|
isNull?: never;
|
|
282
223
|
booleanValue?: never;
|
|
@@ -287,7 +228,6 @@ export declare namespace Field {
|
|
|
287
228
|
arrayValue?: never;
|
|
288
229
|
$unknown?: never;
|
|
289
230
|
}
|
|
290
|
-
|
|
291
231
|
interface DoubleValueMember {
|
|
292
232
|
isNull?: never;
|
|
293
233
|
booleanValue?: never;
|
|
@@ -298,7 +238,6 @@ export declare namespace Field {
|
|
|
298
238
|
arrayValue?: never;
|
|
299
239
|
$unknown?: never;
|
|
300
240
|
}
|
|
301
|
-
|
|
302
241
|
interface StringValueMember {
|
|
303
242
|
isNull?: never;
|
|
304
243
|
booleanValue?: never;
|
|
@@ -309,7 +248,6 @@ export declare namespace Field {
|
|
|
309
248
|
arrayValue?: never;
|
|
310
249
|
$unknown?: never;
|
|
311
250
|
}
|
|
312
|
-
|
|
313
251
|
interface BlobValueMember {
|
|
314
252
|
isNull?: never;
|
|
315
253
|
booleanValue?: never;
|
|
@@ -320,7 +258,6 @@ export declare namespace Field {
|
|
|
320
258
|
arrayValue?: never;
|
|
321
259
|
$unknown?: never;
|
|
322
260
|
}
|
|
323
|
-
|
|
324
261
|
interface ArrayValueMember {
|
|
325
262
|
isNull?: never;
|
|
326
263
|
booleanValue?: never;
|
|
@@ -353,19 +290,14 @@ export declare namespace Field {
|
|
|
353
290
|
}
|
|
354
291
|
const visit: <T>(value: Field, visitor: Visitor<T>) => T;
|
|
355
292
|
}
|
|
356
|
-
|
|
357
293
|
export interface SqlParameter {
|
|
358
294
|
name?: string;
|
|
359
|
-
|
|
360
295
|
value?: Field;
|
|
361
|
-
|
|
362
296
|
typeHint?: TypeHint | string;
|
|
363
297
|
}
|
|
364
|
-
|
|
365
298
|
export interface UpdateResult {
|
|
366
299
|
generatedFields?: Field[];
|
|
367
300
|
}
|
|
368
|
-
|
|
369
301
|
export declare type Value =
|
|
370
302
|
| Value.ArrayValuesMember
|
|
371
303
|
| Value.BigIntValueMember
|
|
@@ -392,7 +324,6 @@ export declare namespace Value {
|
|
|
392
324
|
structValue?: never;
|
|
393
325
|
$unknown?: never;
|
|
394
326
|
}
|
|
395
|
-
|
|
396
327
|
interface BitValueMember {
|
|
397
328
|
isNull?: never;
|
|
398
329
|
bitValue: boolean;
|
|
@@ -406,7 +337,6 @@ export declare namespace Value {
|
|
|
406
337
|
structValue?: never;
|
|
407
338
|
$unknown?: never;
|
|
408
339
|
}
|
|
409
|
-
|
|
410
340
|
interface BigIntValueMember {
|
|
411
341
|
isNull?: never;
|
|
412
342
|
bitValue?: never;
|
|
@@ -420,7 +350,6 @@ export declare namespace Value {
|
|
|
420
350
|
structValue?: never;
|
|
421
351
|
$unknown?: never;
|
|
422
352
|
}
|
|
423
|
-
|
|
424
353
|
interface IntValueMember {
|
|
425
354
|
isNull?: never;
|
|
426
355
|
bitValue?: never;
|
|
@@ -434,7 +363,6 @@ export declare namespace Value {
|
|
|
434
363
|
structValue?: never;
|
|
435
364
|
$unknown?: never;
|
|
436
365
|
}
|
|
437
|
-
|
|
438
366
|
interface DoubleValueMember {
|
|
439
367
|
isNull?: never;
|
|
440
368
|
bitValue?: never;
|
|
@@ -448,7 +376,6 @@ export declare namespace Value {
|
|
|
448
376
|
structValue?: never;
|
|
449
377
|
$unknown?: never;
|
|
450
378
|
}
|
|
451
|
-
|
|
452
379
|
interface RealValueMember {
|
|
453
380
|
isNull?: never;
|
|
454
381
|
bitValue?: never;
|
|
@@ -462,7 +389,6 @@ export declare namespace Value {
|
|
|
462
389
|
structValue?: never;
|
|
463
390
|
$unknown?: never;
|
|
464
391
|
}
|
|
465
|
-
|
|
466
392
|
interface StringValueMember {
|
|
467
393
|
isNull?: never;
|
|
468
394
|
bitValue?: never;
|
|
@@ -476,7 +402,6 @@ export declare namespace Value {
|
|
|
476
402
|
structValue?: never;
|
|
477
403
|
$unknown?: never;
|
|
478
404
|
}
|
|
479
|
-
|
|
480
405
|
interface BlobValueMember {
|
|
481
406
|
isNull?: never;
|
|
482
407
|
bitValue?: never;
|
|
@@ -490,7 +415,6 @@ export declare namespace Value {
|
|
|
490
415
|
structValue?: never;
|
|
491
416
|
$unknown?: never;
|
|
492
417
|
}
|
|
493
|
-
|
|
494
418
|
interface ArrayValuesMember {
|
|
495
419
|
isNull?: never;
|
|
496
420
|
bitValue?: never;
|
|
@@ -504,7 +428,6 @@ export declare namespace Value {
|
|
|
504
428
|
structValue?: never;
|
|
505
429
|
$unknown?: never;
|
|
506
430
|
}
|
|
507
|
-
|
|
508
431
|
interface StructValueMember {
|
|
509
432
|
isNull?: never;
|
|
510
433
|
bitValue?: never;
|
|
@@ -546,163 +469,108 @@ export declare namespace Value {
|
|
|
546
469
|
}
|
|
547
470
|
const visit: <T>(value: Value, visitor: Visitor<T>) => T;
|
|
548
471
|
}
|
|
549
|
-
|
|
550
472
|
export interface ExecuteStatementRequest {
|
|
551
473
|
resourceArn: string | undefined;
|
|
552
|
-
|
|
553
474
|
secretArn: string | undefined;
|
|
554
|
-
|
|
555
475
|
sql: string | undefined;
|
|
556
|
-
|
|
557
476
|
database?: string;
|
|
558
|
-
|
|
559
477
|
schema?: string;
|
|
560
|
-
|
|
561
478
|
parameters?: SqlParameter[];
|
|
562
|
-
|
|
563
479
|
transactionId?: string;
|
|
564
|
-
|
|
565
480
|
includeResultMetadata?: boolean;
|
|
566
|
-
|
|
567
481
|
continueAfterTimeout?: boolean;
|
|
568
|
-
|
|
569
482
|
resultSetOptions?: ResultSetOptions;
|
|
570
|
-
|
|
571
483
|
formatRecordsAs?: RecordsFormatType | string;
|
|
572
484
|
}
|
|
573
|
-
|
|
574
485
|
export interface StructValue {
|
|
575
486
|
attributes?: Value[];
|
|
576
487
|
}
|
|
577
|
-
|
|
578
488
|
export interface BatchExecuteStatementRequest {
|
|
579
489
|
resourceArn: string | undefined;
|
|
580
|
-
|
|
581
490
|
secretArn: string | undefined;
|
|
582
|
-
|
|
583
491
|
sql: string | undefined;
|
|
584
|
-
|
|
585
492
|
database?: string;
|
|
586
|
-
|
|
587
493
|
schema?: string;
|
|
588
|
-
|
|
589
494
|
parameterSets?: SqlParameter[][];
|
|
590
|
-
|
|
591
495
|
transactionId?: string;
|
|
592
496
|
}
|
|
593
|
-
|
|
594
497
|
export interface BatchExecuteStatementResponse {
|
|
595
498
|
updateResults?: UpdateResult[];
|
|
596
499
|
}
|
|
597
|
-
|
|
598
500
|
export interface _Record {
|
|
599
501
|
values?: Value[];
|
|
600
502
|
}
|
|
601
|
-
|
|
602
503
|
export interface ExecuteStatementResponse {
|
|
603
504
|
records?: Field[][];
|
|
604
|
-
|
|
605
505
|
columnMetadata?: ColumnMetadata[];
|
|
606
|
-
|
|
607
506
|
numberOfRecordsUpdated?: number;
|
|
608
|
-
|
|
609
507
|
generatedFields?: Field[];
|
|
610
|
-
|
|
611
508
|
formattedRecords?: string;
|
|
612
509
|
}
|
|
613
|
-
|
|
614
510
|
export interface ResultFrame {
|
|
615
511
|
resultSetMetadata?: ResultSetMetadata;
|
|
616
|
-
|
|
617
512
|
records?: _Record[];
|
|
618
513
|
}
|
|
619
|
-
|
|
620
514
|
export interface SqlStatementResult {
|
|
621
515
|
resultFrame?: ResultFrame;
|
|
622
|
-
|
|
623
516
|
numberOfRecordsUpdated?: number;
|
|
624
517
|
}
|
|
625
|
-
|
|
626
518
|
export interface ExecuteSqlResponse {
|
|
627
519
|
sqlStatementResults?: SqlStatementResult[];
|
|
628
520
|
}
|
|
629
|
-
|
|
630
521
|
export declare const BeginTransactionRequestFilterSensitiveLog: (
|
|
631
522
|
obj: BeginTransactionRequest
|
|
632
523
|
) => any;
|
|
633
|
-
|
|
634
524
|
export declare const BeginTransactionResponseFilterSensitiveLog: (
|
|
635
525
|
obj: BeginTransactionResponse
|
|
636
526
|
) => any;
|
|
637
|
-
|
|
638
527
|
export declare const ColumnMetadataFilterSensitiveLog: (
|
|
639
528
|
obj: ColumnMetadata
|
|
640
529
|
) => any;
|
|
641
|
-
|
|
642
530
|
export declare const CommitTransactionRequestFilterSensitiveLog: (
|
|
643
531
|
obj: CommitTransactionRequest
|
|
644
532
|
) => any;
|
|
645
|
-
|
|
646
533
|
export declare const CommitTransactionResponseFilterSensitiveLog: (
|
|
647
534
|
obj: CommitTransactionResponse
|
|
648
535
|
) => any;
|
|
649
|
-
|
|
650
536
|
export declare const ExecuteSqlRequestFilterSensitiveLog: (
|
|
651
537
|
obj: ExecuteSqlRequest
|
|
652
538
|
) => any;
|
|
653
|
-
|
|
654
539
|
export declare const ResultSetMetadataFilterSensitiveLog: (
|
|
655
540
|
obj: ResultSetMetadata
|
|
656
541
|
) => any;
|
|
657
|
-
|
|
658
542
|
export declare const ResultSetOptionsFilterSensitiveLog: (
|
|
659
543
|
obj: ResultSetOptions
|
|
660
544
|
) => any;
|
|
661
|
-
|
|
662
545
|
export declare const RollbackTransactionRequestFilterSensitiveLog: (
|
|
663
546
|
obj: RollbackTransactionRequest
|
|
664
547
|
) => any;
|
|
665
|
-
|
|
666
548
|
export declare const RollbackTransactionResponseFilterSensitiveLog: (
|
|
667
549
|
obj: RollbackTransactionResponse
|
|
668
550
|
) => any;
|
|
669
|
-
|
|
670
551
|
export declare const ArrayValueFilterSensitiveLog: (obj: ArrayValue) => any;
|
|
671
|
-
|
|
672
552
|
export declare const FieldFilterSensitiveLog: (obj: Field) => any;
|
|
673
|
-
|
|
674
553
|
export declare const SqlParameterFilterSensitiveLog: (obj: SqlParameter) => any;
|
|
675
|
-
|
|
676
554
|
export declare const UpdateResultFilterSensitiveLog: (obj: UpdateResult) => any;
|
|
677
|
-
|
|
678
555
|
export declare const ValueFilterSensitiveLog: (obj: Value) => any;
|
|
679
|
-
|
|
680
556
|
export declare const ExecuteStatementRequestFilterSensitiveLog: (
|
|
681
557
|
obj: ExecuteStatementRequest
|
|
682
558
|
) => any;
|
|
683
|
-
|
|
684
559
|
export declare const StructValueFilterSensitiveLog: (obj: StructValue) => any;
|
|
685
|
-
|
|
686
560
|
export declare const BatchExecuteStatementRequestFilterSensitiveLog: (
|
|
687
561
|
obj: BatchExecuteStatementRequest
|
|
688
562
|
) => any;
|
|
689
|
-
|
|
690
563
|
export declare const BatchExecuteStatementResponseFilterSensitiveLog: (
|
|
691
564
|
obj: BatchExecuteStatementResponse
|
|
692
565
|
) => any;
|
|
693
|
-
|
|
694
566
|
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
695
|
-
|
|
696
567
|
export declare const ExecuteStatementResponseFilterSensitiveLog: (
|
|
697
568
|
obj: ExecuteStatementResponse
|
|
698
569
|
) => any;
|
|
699
|
-
|
|
700
570
|
export declare const ResultFrameFilterSensitiveLog: (obj: ResultFrame) => any;
|
|
701
|
-
|
|
702
571
|
export declare const SqlStatementResultFilterSensitiveLog: (
|
|
703
572
|
obj: SqlStatementResult
|
|
704
573
|
) => any;
|
|
705
|
-
|
|
706
574
|
export declare const ExecuteSqlResponseFilterSensitiveLog: (
|
|
707
575
|
obj: ExecuteSqlResponse
|
|
708
576
|
) => any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { RDSDataClientConfig } from "./RDSDataClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
51
50
|
| undefined;
|
|
52
51
|
signer?:
|
|
53
52
|
| import("@aws-sdk/types").RequestSigner
|
|
54
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
55
56
|
| undefined;
|
|
56
57
|
signingEscapePath?: boolean | undefined;
|
|
57
58
|
systemClockOffset?: number | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { RDSDataClientConfig } from "./RDSDataClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
51
50
|
| undefined;
|
|
52
51
|
signer?:
|
|
53
52
|
| import("@aws-sdk/types").RequestSigner
|
|
54
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
55
56
|
| undefined;
|
|
56
57
|
signingEscapePath?: boolean | undefined;
|
|
57
58
|
systemClockOffset?: number | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { RDSDataClientConfig } from "./RDSDataClient";
|
|
2
|
-
|
|
3
2
|
export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
4
3
|
runtime: string;
|
|
5
4
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
52
51
|
| undefined;
|
|
53
52
|
signer?:
|
|
54
53
|
| import("@aws-sdk/types").RequestSigner
|
|
55
|
-
|
|
|
54
|
+
| ((
|
|
55
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
56
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
56
57
|
| undefined;
|
|
57
58
|
signingEscapePath?: boolean | undefined;
|
|
58
59
|
systemClockOffset?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.178.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",
|
|
@@ -19,35 +19,35 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.178.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.178.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.178.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.178.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.178.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.178.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.178.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.178.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.178.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.178.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.178.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.178.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.178.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.178.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.178.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.178.0",
|
|
41
|
+
"@aws-sdk/types": "3.178.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.178.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.178.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.178.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|