@aws-sdk/nested-clients 3.803.0 → 3.804.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/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +1 -1
- package/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +1 -3
- package/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +17 -17
- package/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +15 -15
- package/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +18 -18
- package/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +1 -1
- package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +1 -1
- package/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +1 -3
- package/dist-types/submodules/sts/runtimeConfig.browser.d.ts +19 -19
- package/dist-types/submodules/sts/runtimeConfig.d.ts +18 -18
- package/dist-types/submodules/sts/runtimeConfig.native.d.ts +20 -20
- package/dist-types/submodules/sts/runtimeConfig.shared.d.ts +4 -4
- package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +1 -1
- package/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +1 -4
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +22 -32
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +19 -26
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +23 -33
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +1 -1
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +1 -4
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +25 -40
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +25 -37
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +26 -41
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +5 -7
- package/package.json +18 -18
|
@@ -8,9 +8,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
8
8
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
defaultUserAgentProvider: (
|
|
11
|
-
config?:
|
|
12
|
-
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
13
|
-
| undefined
|
|
11
|
+
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
14
12
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -27,19 +25,18 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
27
25
|
cacheMiddleware?: boolean | undefined;
|
|
28
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
base64Encoder: (_input:
|
|
28
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
31
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
utf8Encoder: (input:
|
|
30
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
33
31
|
disableHostPrefix: boolean;
|
|
34
32
|
serviceId: string;
|
|
35
|
-
profile?: string
|
|
33
|
+
profile?: string;
|
|
36
34
|
logger: import("@smithy/types").Logger;
|
|
37
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
38
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
39
37
|
retryStrategy?:
|
|
40
38
|
| import("@smithy/types").RetryStrategy
|
|
41
|
-
| import("@smithy/types").RetryStrategyV2
|
|
42
|
-
| undefined;
|
|
39
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
43
40
|
endpoint?:
|
|
44
41
|
| ((
|
|
45
42
|
| string
|
|
@@ -60,11 +57,11 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
60
57
|
endpointProvider: (
|
|
61
58
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
59
|
context?: {
|
|
63
|
-
logger?: import("@smithy/types").Logger
|
|
60
|
+
logger?: import("@smithy/types").Logger;
|
|
64
61
|
}
|
|
65
62
|
) => import("@smithy/types").EndpointV2;
|
|
66
|
-
tls?: boolean
|
|
67
|
-
serviceConfiguredEndpoint?:
|
|
63
|
+
tls?: boolean;
|
|
64
|
+
serviceConfiguredEndpoint?: never;
|
|
68
65
|
httpAuthSchemes:
|
|
69
66
|
| import("@smithy/types").HttpAuthScheme[]
|
|
70
67
|
| (
|
|
@@ -94,21 +91,17 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
94
91
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
95
92
|
credentials?:
|
|
96
93
|
| import("@smithy/types").AwsCredentialIdentity
|
|
97
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
98
|
-
| undefined;
|
|
94
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
99
95
|
signer?:
|
|
100
96
|
| import("@smithy/types").RequestSigner
|
|
101
97
|
| ((
|
|
102
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
103
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
112
|
-
) => import("@smithy/types").RequestSigner)
|
|
113
|
-
| undefined;
|
|
98
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
99
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
100
|
+
signingEscapePath?: boolean;
|
|
101
|
+
systemClockOffset?: number;
|
|
102
|
+
signingRegion?: string;
|
|
103
|
+
signerConstructor?: new (
|
|
104
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
105
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
106
|
+
) => import("@smithy/types").RequestSigner;
|
|
114
107
|
};
|
|
@@ -9,24 +9,22 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
-
cacheMiddleware?: boolean
|
|
12
|
+
cacheMiddleware?: boolean;
|
|
13
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
16
|
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
-
base64Encoder: (_input:
|
|
17
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
18
18
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
-
utf8Encoder: (input:
|
|
19
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
20
20
|
disableHostPrefix: boolean;
|
|
21
21
|
serviceId: string;
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
profile?: string
|
|
25
|
+
profile?: string;
|
|
26
26
|
defaultUserAgentProvider: (
|
|
27
|
-
config?:
|
|
28
|
-
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
|
-
| undefined
|
|
27
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
30
28
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
29
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
30
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -37,15 +35,14 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
37
35
|
| import("@smithy/types").Provider<
|
|
38
36
|
import("@smithy/smithy-client").DefaultsMode
|
|
39
37
|
>;
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
38
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
41
39
|
userAgentAppId?:
|
|
42
40
|
| string
|
|
43
|
-
|
|
|
44
|
-
| undefined
|
|
41
|
+
| undefined
|
|
42
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
45
43
|
retryStrategy?:
|
|
46
44
|
| import("@smithy/types").RetryStrategy
|
|
47
|
-
| import("@smithy/types").RetryStrategyV2
|
|
48
|
-
| undefined;
|
|
45
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
49
46
|
endpoint?:
|
|
50
47
|
| ((
|
|
51
48
|
| string
|
|
@@ -66,15 +63,12 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
66
63
|
endpointProvider: (
|
|
67
64
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
68
65
|
context?: {
|
|
69
|
-
logger?: import("@smithy/types").Logger
|
|
66
|
+
logger?: import("@smithy/types").Logger;
|
|
70
67
|
}
|
|
71
68
|
) => import("@smithy/types").EndpointV2;
|
|
72
|
-
tls?: boolean
|
|
73
|
-
serviceConfiguredEndpoint?:
|
|
74
|
-
authSchemePreference?:
|
|
75
|
-
| string[]
|
|
76
|
-
| import("@smithy/types").Provider<string[]>
|
|
77
|
-
| undefined;
|
|
69
|
+
tls?: boolean;
|
|
70
|
+
serviceConfiguredEndpoint?: never;
|
|
71
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
78
72
|
httpAuthSchemes:
|
|
79
73
|
| import("@smithy/types").HttpAuthScheme[]
|
|
80
74
|
| (
|
|
@@ -104,21 +98,17 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
104
98
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
105
99
|
credentials?:
|
|
106
100
|
| import("@smithy/types").AwsCredentialIdentity
|
|
107
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
108
|
-
| undefined;
|
|
101
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
109
102
|
signer?:
|
|
110
103
|
| import("@smithy/types").RequestSigner
|
|
111
104
|
| ((
|
|
112
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
113
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
122
|
-
) => import("@smithy/types").RequestSigner)
|
|
123
|
-
| undefined;
|
|
105
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
106
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
107
|
+
signingEscapePath?: boolean;
|
|
108
|
+
systemClockOffset?: number;
|
|
109
|
+
signingRegion?: string;
|
|
110
|
+
signerConstructor?: new (
|
|
111
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
112
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
113
|
+
) => import("@smithy/types").RequestSigner;
|
|
124
114
|
};
|
|
@@ -5,12 +5,12 @@ import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder: (_input:
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (
|
|
11
11
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
12
|
context?: {
|
|
13
|
-
logger?: import("@smithy/types").Logger
|
|
13
|
+
logger?: import("@smithy/types").Logger;
|
|
14
14
|
}
|
|
15
15
|
) => import("@smithy/types").EndpointV2;
|
|
16
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
@@ -45,5 +45,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
45
45
|
serviceId: string;
|
|
46
46
|
urlParser: import("@smithy/types").UrlParser;
|
|
47
47
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
48
|
-
utf8Encoder: (input:
|
|
48
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
49
49
|
};
|
|
@@ -27,7 +27,7 @@ declare const AssumeRoleWithWebIdentityCommand_base: {
|
|
|
27
27
|
ServiceOutputTypes
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
|
-
|
|
30
|
+
input: AssumeRoleWithWebIdentityCommandInput
|
|
31
31
|
): import("@smithy/smithy-client").CommandImpl<
|
|
32
32
|
AssumeRoleWithWebIdentityCommandInput,
|
|
33
33
|
AssumeRoleWithWebIdentityCommandOutput,
|
|
@@ -22,10 +22,7 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
22
22
|
};
|
|
23
23
|
export declare const resolveClientEndpointParameters: <T>(
|
|
24
24
|
options: T & ClientInputEndpointParameters
|
|
25
|
-
) => T &
|
|
26
|
-
ClientInputEndpointParameters & {
|
|
27
|
-
defaultSigningName: string;
|
|
28
|
-
};
|
|
25
|
+
) => T & ClientResolvedEndpointParameters;
|
|
29
26
|
export declare const commonParams: {
|
|
30
27
|
readonly UseGlobalEndpoint: {
|
|
31
28
|
readonly type: "builtInParams";
|
|
@@ -12,9 +12,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
12
12
|
_: unknown
|
|
13
13
|
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
14
|
defaultUserAgentProvider: (
|
|
15
|
-
config?:
|
|
16
|
-
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
17
|
-
| undefined
|
|
15
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
18
16
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
17
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
18
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -30,23 +28,22 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
30
28
|
cacheMiddleware?: boolean | undefined;
|
|
31
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
32
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
base64Encoder: (_input:
|
|
31
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
34
32
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
35
|
-
utf8Encoder: (input:
|
|
33
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
36
34
|
disableHostPrefix: boolean;
|
|
37
35
|
serviceId: string;
|
|
38
|
-
profile?: string
|
|
36
|
+
profile?: string;
|
|
39
37
|
logger: import("@smithy/types").Logger;
|
|
40
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
40
|
userAgentAppId?:
|
|
43
41
|
| string
|
|
44
|
-
|
|
|
45
|
-
| undefined
|
|
42
|
+
| undefined
|
|
43
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
46
44
|
retryStrategy?:
|
|
47
45
|
| import("@smithy/types").RetryStrategy
|
|
48
|
-
| import("@smithy/types").RetryStrategyV2
|
|
49
|
-
| undefined;
|
|
46
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
50
47
|
endpoint?:
|
|
51
48
|
| ((
|
|
52
49
|
| string
|
|
@@ -66,18 +63,13 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
66
63
|
| undefined;
|
|
67
64
|
endpointProvider: (
|
|
68
65
|
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
69
|
-
context?:
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
| undefined
|
|
66
|
+
context?: {
|
|
67
|
+
logger?: import("@smithy/types").Logger;
|
|
68
|
+
}
|
|
74
69
|
) => import("@smithy/types").EndpointV2;
|
|
75
|
-
tls?: boolean
|
|
76
|
-
serviceConfiguredEndpoint?:
|
|
77
|
-
authSchemePreference?:
|
|
78
|
-
| string[]
|
|
79
|
-
| import("@smithy/types").Provider<string[]>
|
|
80
|
-
| undefined;
|
|
70
|
+
tls?: boolean;
|
|
71
|
+
serviceConfiguredEndpoint?: never;
|
|
72
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
81
73
|
httpAuthSchemes:
|
|
82
74
|
| import("@smithy/types").HttpAuthScheme[]
|
|
83
75
|
| (
|
|
@@ -107,25 +99,18 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
107
99
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
|
|
108
100
|
credentials?:
|
|
109
101
|
| import("@smithy/types").AwsCredentialIdentity
|
|
110
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
111
|
-
| undefined;
|
|
102
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
112
103
|
signer?:
|
|
113
104
|
| import("@smithy/types").RequestSigner
|
|
114
105
|
| ((
|
|
115
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
116
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
) => import("@smithy/types").RequestSigner)
|
|
126
|
-
| undefined;
|
|
127
|
-
useGlobalEndpoint?:
|
|
128
|
-
| boolean
|
|
129
|
-
| import("@smithy/types").Provider<boolean>
|
|
130
|
-
| undefined;
|
|
106
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
107
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
108
|
+
signingEscapePath?: boolean;
|
|
109
|
+
systemClockOffset?: number;
|
|
110
|
+
signingRegion?: string;
|
|
111
|
+
signerConstructor?: new (
|
|
112
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
113
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
114
|
+
) => import("@smithy/types").RequestSigner;
|
|
115
|
+
useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
|
|
131
116
|
};
|
|
@@ -10,9 +10,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
10
10
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
defaultUserAgentProvider: (
|
|
13
|
-
config?:
|
|
14
|
-
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
15
|
-
| undefined
|
|
13
|
+
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
httpAuthSchemes:
|
|
18
16
|
| import("@smithy/types").HttpAuthScheme[]
|
|
@@ -42,22 +40,21 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
42
40
|
cacheMiddleware?: boolean | undefined;
|
|
43
41
|
urlParser: import("@smithy/types").UrlParser;
|
|
44
42
|
base64Decoder: import("@smithy/types").Decoder;
|
|
45
|
-
base64Encoder: (_input:
|
|
43
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
46
44
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
47
|
-
utf8Encoder: (input:
|
|
45
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
48
46
|
disableHostPrefix: boolean;
|
|
49
47
|
serviceId: string;
|
|
50
|
-
profile?: string
|
|
51
|
-
credentialDefaultProvider?:
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
profile?: string;
|
|
49
|
+
credentialDefaultProvider?: (
|
|
50
|
+
input: any
|
|
51
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
54
52
|
logger: import("@smithy/types").Logger;
|
|
55
53
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
54
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
57
55
|
retryStrategy?:
|
|
58
56
|
| import("@smithy/types").RetryStrategy
|
|
59
|
-
| import("@smithy/types").RetryStrategyV2
|
|
60
|
-
| undefined;
|
|
57
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
61
58
|
endpoint?:
|
|
62
59
|
| ((
|
|
63
60
|
| string
|
|
@@ -77,36 +74,27 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
77
74
|
| undefined;
|
|
78
75
|
endpointProvider: (
|
|
79
76
|
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
|
-
context?:
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
| undefined
|
|
77
|
+
context?: {
|
|
78
|
+
logger?: import("@smithy/types").Logger;
|
|
79
|
+
}
|
|
85
80
|
) => import("@smithy/types").EndpointV2;
|
|
86
|
-
tls?: boolean
|
|
87
|
-
serviceConfiguredEndpoint?:
|
|
81
|
+
tls?: boolean;
|
|
82
|
+
serviceConfiguredEndpoint?: never;
|
|
88
83
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
|
|
89
84
|
credentials?:
|
|
90
85
|
| import("@smithy/types").AwsCredentialIdentity
|
|
91
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
92
|
-
| undefined;
|
|
86
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
93
87
|
signer?:
|
|
94
88
|
| import("@smithy/types").RequestSigner
|
|
95
89
|
| ((
|
|
96
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
97
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
) => import("@smithy/types").RequestSigner)
|
|
107
|
-
| undefined;
|
|
108
|
-
useGlobalEndpoint?:
|
|
109
|
-
| boolean
|
|
110
|
-
| import("@smithy/types").Provider<boolean>
|
|
111
|
-
| undefined;
|
|
90
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
91
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
92
|
+
signingEscapePath?: boolean;
|
|
93
|
+
systemClockOffset?: number;
|
|
94
|
+
signingRegion?: string;
|
|
95
|
+
signerConstructor?: new (
|
|
96
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
97
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
98
|
+
) => import("@smithy/types").RequestSigner;
|
|
99
|
+
useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
|
|
112
100
|
};
|
|
@@ -9,24 +9,22 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
-
cacheMiddleware?: boolean
|
|
12
|
+
cacheMiddleware?: boolean;
|
|
13
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
16
|
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
-
base64Encoder: (_input:
|
|
17
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
18
18
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
-
utf8Encoder: (input:
|
|
19
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
20
20
|
disableHostPrefix: boolean;
|
|
21
21
|
serviceId: string;
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
profile?: string
|
|
25
|
+
profile?: string;
|
|
26
26
|
defaultUserAgentProvider: (
|
|
27
|
-
config?:
|
|
28
|
-
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
|
-
| undefined
|
|
27
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
30
28
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
29
|
credentialDefaultProvider:
|
|
32
30
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
@@ -42,15 +40,14 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
42
40
|
| import("@smithy/types").Provider<
|
|
43
41
|
import("@smithy/smithy-client").DefaultsMode
|
|
44
42
|
>;
|
|
45
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
43
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
44
|
userAgentAppId?:
|
|
47
45
|
| string
|
|
48
|
-
|
|
|
49
|
-
| undefined
|
|
46
|
+
| undefined
|
|
47
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
50
48
|
retryStrategy?:
|
|
51
49
|
| import("@smithy/types").RetryStrategy
|
|
52
|
-
| import("@smithy/types").RetryStrategyV2
|
|
53
|
-
| undefined;
|
|
50
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
54
51
|
endpoint?:
|
|
55
52
|
| ((
|
|
56
53
|
| string
|
|
@@ -70,18 +67,13 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
70
67
|
| undefined;
|
|
71
68
|
endpointProvider: (
|
|
72
69
|
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
73
|
-
context?:
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
| undefined
|
|
70
|
+
context?: {
|
|
71
|
+
logger?: import("@smithy/types").Logger;
|
|
72
|
+
}
|
|
78
73
|
) => import("@smithy/types").EndpointV2;
|
|
79
|
-
tls?: boolean
|
|
80
|
-
serviceConfiguredEndpoint?:
|
|
81
|
-
authSchemePreference?:
|
|
82
|
-
| string[]
|
|
83
|
-
| import("@smithy/types").Provider<string[]>
|
|
84
|
-
| undefined;
|
|
74
|
+
tls?: boolean;
|
|
75
|
+
serviceConfiguredEndpoint?: never;
|
|
76
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
85
77
|
httpAuthSchemes:
|
|
86
78
|
| import("@smithy/types").HttpAuthScheme[]
|
|
87
79
|
| (
|
|
@@ -111,25 +103,18 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
111
103
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
|
|
112
104
|
credentials?:
|
|
113
105
|
| import("@smithy/types").AwsCredentialIdentity
|
|
114
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
115
|
-
| undefined;
|
|
106
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
116
107
|
signer?:
|
|
117
108
|
| import("@smithy/types").RequestSigner
|
|
118
109
|
| ((
|
|
119
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
120
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
) => import("@smithy/types").RequestSigner)
|
|
130
|
-
| undefined;
|
|
131
|
-
useGlobalEndpoint?:
|
|
132
|
-
| boolean
|
|
133
|
-
| import("@smithy/types").Provider<boolean>
|
|
134
|
-
| undefined;
|
|
110
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
111
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
112
|
+
signingEscapePath?: boolean;
|
|
113
|
+
systemClockOffset?: number;
|
|
114
|
+
signingRegion?: string;
|
|
115
|
+
signerConstructor?: new (
|
|
116
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
117
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
118
|
+
) => import("@smithy/types").RequestSigner;
|
|
119
|
+
useGlobalEndpoint?: boolean | import("@smithy/types").Provider<boolean>;
|
|
135
120
|
};
|
|
@@ -5,15 +5,13 @@ import { STSClientConfig } from "./STSClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder: (_input:
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (
|
|
11
11
|
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
|
-
context?:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
| undefined
|
|
12
|
+
context?: {
|
|
13
|
+
logger?: import("@smithy/types").Logger;
|
|
14
|
+
}
|
|
17
15
|
) => import("@smithy/types").EndpointV2;
|
|
18
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
19
17
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
|
|
@@ -47,5 +45,5 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
47
45
|
serviceId: string;
|
|
48
46
|
urlParser: import("@smithy/types").UrlParser;
|
|
49
47
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
50
|
-
utf8Encoder: (input:
|
|
48
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
51
49
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/nested-clients",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.804.0",
|
|
4
4
|
"description": "Nested clients for AWS SDK packages.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -28,37 +28,37 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
30
30
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
31
|
-
"@aws-sdk/core": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
37
|
-
"@aws-sdk/types": "3.
|
|
38
|
-
"@aws-sdk/util-endpoints": "3.
|
|
39
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
31
|
+
"@aws-sdk/core": "3.804.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.804.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.804.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.804.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.804.0",
|
|
36
|
+
"@aws-sdk/region-config-resolver": "3.804.0",
|
|
37
|
+
"@aws-sdk/types": "3.804.0",
|
|
38
|
+
"@aws-sdk/util-endpoints": "3.804.0",
|
|
39
|
+
"@aws-sdk/util-user-agent-browser": "3.804.0",
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "3.804.0",
|
|
41
41
|
"@smithy/config-resolver": "^4.1.0",
|
|
42
|
-
"@smithy/core": "^3.3.
|
|
42
|
+
"@smithy/core": "^3.3.1",
|
|
43
43
|
"@smithy/fetch-http-handler": "^5.0.2",
|
|
44
44
|
"@smithy/hash-node": "^4.0.2",
|
|
45
45
|
"@smithy/invalid-dependency": "^4.0.2",
|
|
46
46
|
"@smithy/middleware-content-length": "^4.0.2",
|
|
47
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
48
|
-
"@smithy/middleware-retry": "^4.1.
|
|
47
|
+
"@smithy/middleware-endpoint": "^4.1.2",
|
|
48
|
+
"@smithy/middleware-retry": "^4.1.3",
|
|
49
49
|
"@smithy/middleware-serde": "^4.0.3",
|
|
50
50
|
"@smithy/middleware-stack": "^4.0.2",
|
|
51
51
|
"@smithy/node-config-provider": "^4.0.2",
|
|
52
52
|
"@smithy/node-http-handler": "^4.0.4",
|
|
53
53
|
"@smithy/protocol-http": "^5.1.0",
|
|
54
|
-
"@smithy/smithy-client": "^4.2.
|
|
54
|
+
"@smithy/smithy-client": "^4.2.2",
|
|
55
55
|
"@smithy/types": "^4.2.0",
|
|
56
56
|
"@smithy/url-parser": "^4.0.2",
|
|
57
57
|
"@smithy/util-base64": "^4.0.0",
|
|
58
58
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
59
59
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
60
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
61
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
60
|
+
"@smithy/util-defaults-mode-browser": "^4.0.10",
|
|
61
|
+
"@smithy/util-defaults-mode-node": "^4.0.10",
|
|
62
62
|
"@smithy/util-endpoints": "^3.0.2",
|
|
63
63
|
"@smithy/util-middleware": "^4.0.2",
|
|
64
64
|
"@smithy/util-retry": "^4.0.3",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"concurrently": "7.0.0",
|
|
70
70
|
"downlevel-dts": "0.10.1",
|
|
71
71
|
"rimraf": "3.0.2",
|
|
72
|
-
"typescript": "~5.
|
|
72
|
+
"typescript": "~5.8.3"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|