@aws-sdk/client-rds 3.488.0 → 3.490.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-cjs/RDSClient.js +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-cjs/runtimeConfig.shared.js +1 -1
- package/dist-es/RDSClient.js +8 -8
- package/dist-es/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/RDSClient.d.ts +2 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/dist-types/ts3.4/RDSClient.d.ts +2 -2
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +6 -6
- package/package.json +14 -14
package/dist-cjs/RDSClient.js
CHANGED
|
@@ -17,14 +17,6 @@ const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
|
17
17
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
18
18
|
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
19
19
|
class RDSClient extends smithy_client_1.Client {
|
|
20
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
21
|
-
return httpAuthSchemeProvider_1.defaultRDSHttpAuthSchemeParametersProvider;
|
|
22
|
-
}
|
|
23
|
-
getIdentityProviderConfigProvider() {
|
|
24
|
-
return async (config) => new core_1.DefaultIdentityProviderConfig({
|
|
25
|
-
"aws.auth#sigv4": config.credentials,
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
20
|
constructor(...[configuration]) {
|
|
29
21
|
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
30
22
|
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
@@ -52,5 +44,13 @@ class RDSClient extends smithy_client_1.Client {
|
|
|
52
44
|
destroy() {
|
|
53
45
|
super.destroy();
|
|
54
46
|
}
|
|
47
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
48
|
+
return httpAuthSchemeProvider_1.defaultRDSHttpAuthSchemeParametersProvider;
|
|
49
|
+
}
|
|
50
|
+
getIdentityProviderConfigProvider() {
|
|
51
|
+
return async (config) => new core_1.DefaultIdentityProviderConfig({
|
|
52
|
+
"aws.auth#sigv4": config.credentials,
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
55
|
}
|
|
56
56
|
exports.RDSClient = RDSClient;
|
|
@@ -39,7 +39,7 @@ const defaultRDSHttpAuthSchemeProvider = (authParameters) => {
|
|
|
39
39
|
};
|
|
40
40
|
exports.defaultRDSHttpAuthSchemeProvider = defaultRDSHttpAuthSchemeProvider;
|
|
41
41
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
42
|
-
const config_0 = (0, core_1.
|
|
42
|
+
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
43
43
|
return {
|
|
44
44
|
...config_0,
|
|
45
45
|
};
|
|
@@ -21,7 +21,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
21
|
{
|
|
22
22
|
schemeId: "aws.auth#sigv4",
|
|
23
23
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
24
|
-
signer: new core_1.
|
|
24
|
+
signer: new core_1.AwsSdkSigV4Signer(),
|
|
25
25
|
},
|
|
26
26
|
],
|
|
27
27
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
package/dist-es/RDSClient.js
CHANGED
|
@@ -14,14 +14,6 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class RDSClient extends __Client {
|
|
17
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
18
|
-
return defaultRDSHttpAuthSchemeParametersProvider;
|
|
19
|
-
}
|
|
20
|
-
getIdentityProviderConfigProvider() {
|
|
21
|
-
return async (config) => new DefaultIdentityProviderConfig({
|
|
22
|
-
"aws.auth#sigv4": config.credentials,
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
17
|
constructor(...[configuration]) {
|
|
26
18
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
27
19
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -49,4 +41,12 @@ export class RDSClient extends __Client {
|
|
|
49
41
|
destroy() {
|
|
50
42
|
super.destroy();
|
|
51
43
|
}
|
|
44
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
45
|
+
return defaultRDSHttpAuthSchemeParametersProvider;
|
|
46
|
+
}
|
|
47
|
+
getIdentityProviderConfigProvider() {
|
|
48
|
+
return async (config) => new DefaultIdentityProviderConfig({
|
|
49
|
+
"aws.auth#sigv4": config.credentials,
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
52
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultRDSHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
|
@@ -34,7 +34,7 @@ export const defaultRDSHttpAuthSchemeProvider = (authParameters) => {
|
|
|
34
34
|
return options;
|
|
35
35
|
};
|
|
36
36
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
|
37
|
-
const config_0 =
|
|
37
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
38
38
|
return {
|
|
39
39
|
...config_0,
|
|
40
40
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
2
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
3
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
4
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -18,7 +18,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
18
18
|
{
|
|
19
19
|
schemeId: "aws.auth#sigv4",
|
|
20
20
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
21
|
-
signer: new
|
|
21
|
+
signer: new AwsSdkSigV4Signer(),
|
|
22
22
|
},
|
|
23
23
|
],
|
|
24
24
|
logger: config?.logger ?? new NoOpLogger(),
|
|
@@ -367,8 +367,6 @@ export declare class RDSClient extends __Client<__HttpHandlerOptions, ServiceInp
|
|
|
367
367
|
* The resolved configuration of RDSClient class. This is resolved and normalized from the {@link RDSClientConfig | constructor configuration interface}.
|
|
368
368
|
*/
|
|
369
369
|
readonly config: RDSClientResolvedConfig;
|
|
370
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
371
|
-
private getIdentityProviderConfigProvider;
|
|
372
370
|
constructor(...[configuration]: __CheckOptionalClientConfig<RDSClientConfig>);
|
|
373
371
|
/**
|
|
374
372
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -376,4 +374,6 @@ export declare class RDSClient extends __Client<__HttpHandlerOptions, ServiceInp
|
|
|
376
374
|
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
377
375
|
*/
|
|
378
376
|
destroy(): void;
|
|
377
|
+
private getDefaultHttpAuthSchemeParametersProvider;
|
|
378
|
+
private getIdentityProviderConfigProvider;
|
|
379
379
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
2
2
|
import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
|
|
3
3
|
import { RDSClientResolvedConfig } from "../RDSClient";
|
|
4
4
|
/**
|
|
@@ -28,7 +28,7 @@ export declare const defaultRDSHttpAuthSchemeProvider: RDSHttpAuthSchemeProvider
|
|
|
28
28
|
/**
|
|
29
29
|
* @internal
|
|
30
30
|
*/
|
|
31
|
-
export interface HttpAuthSchemeInputConfig extends
|
|
31
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
33
33
|
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
34
|
* @internal
|
|
@@ -43,7 +43,7 @@ export interface HttpAuthSchemeInputConfig extends AWSSDKSigV4AuthInputConfig {
|
|
|
43
43
|
/**
|
|
44
44
|
* @internal
|
|
45
45
|
*/
|
|
46
|
-
export interface HttpAuthSchemeResolvedConfig extends
|
|
46
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
47
47
|
/**
|
|
48
48
|
* experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
49
|
* @internal
|
|
@@ -58,4 +58,4 @@ export interface HttpAuthSchemeResolvedConfig extends AWSSDKSigV4AuthResolvedCon
|
|
|
58
58
|
/**
|
|
59
59
|
* @internal
|
|
60
60
|
*/
|
|
61
|
-
export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig &
|
|
61
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1046,8 +1046,8 @@ export declare class RDSClient extends __Client<
|
|
|
1046
1046
|
RDSClientResolvedConfig
|
|
1047
1047
|
> {
|
|
1048
1048
|
readonly config: RDSClientResolvedConfig;
|
|
1049
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
1050
|
-
private getIdentityProviderConfigProvider;
|
|
1051
1049
|
constructor(...[configuration]: __CheckOptionalClientConfig<RDSClientConfig>);
|
|
1052
1050
|
destroy(): void;
|
|
1051
|
+
private getDefaultHttpAuthSchemeParametersProvider;
|
|
1052
|
+
private getIdentityProviderConfigProvider;
|
|
1053
1053
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
5
|
} from "@aws-sdk/core";
|
|
6
6
|
import {
|
|
7
7
|
HandlerExecutionContext,
|
|
@@ -29,15 +29,15 @@ export declare const defaultRDSHttpAuthSchemeParametersProvider: (
|
|
|
29
29
|
export interface RDSHttpAuthSchemeProvider
|
|
30
30
|
extends HttpAuthSchemeProvider<RDSHttpAuthSchemeParameters> {}
|
|
31
31
|
export declare const defaultRDSHttpAuthSchemeProvider: RDSHttpAuthSchemeProvider;
|
|
32
|
-
export interface HttpAuthSchemeInputConfig extends
|
|
32
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
33
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
34
34
|
httpAuthSchemeProvider?: RDSHttpAuthSchemeProvider;
|
|
35
35
|
}
|
|
36
36
|
export interface HttpAuthSchemeResolvedConfig
|
|
37
|
-
extends
|
|
37
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
38
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
39
39
|
readonly httpAuthSchemeProvider: RDSHttpAuthSchemeProvider;
|
|
40
40
|
}
|
|
41
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
42
|
-
config: T & HttpAuthSchemeInputConfig &
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
43
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.490.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,19 +20,19 @@
|
|
|
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/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.490.0",
|
|
24
|
+
"@aws-sdk/core": "3.490.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.490.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.489.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.489.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.489.0",
|
|
29
|
+
"@aws-sdk/middleware-sdk-rds": "3.489.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.489.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.489.0",
|
|
32
|
+
"@aws-sdk/types": "3.489.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.489.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.489.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.489.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.23",
|
|
37
37
|
"@smithy/core": "^1.2.2",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.3.2",
|