@aws-sdk/nested-clients 3.997.25 → 3.997.27
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/submodules/cognito-identity/index.js +10 -23
- package/dist-cjs/submodules/signin/index.js +10 -15
- package/dist-cjs/submodules/sso/index.js +9 -13
- package/dist-cjs/submodules/sso-oidc/index.js +9 -13
- package/dist-cjs/submodules/sts/index.js +10 -23
- package/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
- package/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
- package/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
- package/dist-es/submodules/cognito-identity/index.js +1 -0
- package/dist-es/submodules/signin/commandBuilder.js +8 -0
- package/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -17
- package/dist-es/submodules/signin/index.js +1 -0
- package/dist-es/submodules/sso/commandBuilder.js +6 -0
- package/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
- package/dist-es/submodules/sso/index.js +1 -0
- package/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
- package/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
- package/dist-es/submodules/sso-oidc/index.js +1 -0
- package/dist-es/submodules/sts/commandBuilder.js +6 -0
- package/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
- package/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
- package/dist-es/submodules/sts/index.js +1 -0
- package/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -8
- package/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -8
- package/dist-types/submodules/cognito-identity/index.d.ts +1 -0
- package/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/dist-types/submodules/signin/index.d.ts +1 -0
- package/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/dist-types/submodules/sso/index.d.ts +1 -0
- package/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/dist-types/submodules/sso-oidc/index.d.ts +1 -0
- package/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -8
- package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -8
- package/dist-types/submodules/sts/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
- package/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
- package/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
- package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServiceInputTypes,
|
|
4
|
+
ServiceOutputTypes,
|
|
5
|
+
STSClientResolvedConfig,
|
|
6
|
+
} from "./STSClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
STSClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
STSClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
STSClientResolvedConfig,
|
|
8
|
-
} from "../STSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface AssumeRoleCommandInput extends AssumeRoleRequest {}
|
|
12
5
|
export interface AssumeRoleCommandOutput
|
|
13
6
|
extends AssumeRoleResponse,
|
|
@@ -18,22 +11,20 @@ declare const AssumeRoleCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
AssumeRoleCommandInput,
|
|
20
13
|
AssumeRoleCommandOutput,
|
|
21
|
-
STSClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").STSClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: AssumeRoleCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
AssumeRoleCommandInput,
|
|
29
22
|
AssumeRoleCommandOutput,
|
|
30
|
-
STSClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").STSClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class AssumeRoleCommand extends AssumeRoleCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
AssumeRoleWithWebIdentityRequest,
|
|
5
4
|
AssumeRoleWithWebIdentityResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
STSClientResolvedConfig,
|
|
11
|
-
} from "../STSClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface AssumeRoleWithWebIdentityCommandInput
|
|
15
8
|
extends AssumeRoleWithWebIdentityRequest {}
|
|
16
9
|
export interface AssumeRoleWithWebIdentityCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const AssumeRoleWithWebIdentityCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
AssumeRoleWithWebIdentityCommandInput,
|
|
24
17
|
AssumeRoleWithWebIdentityCommandOutput,
|
|
25
|
-
STSClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").STSClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: AssumeRoleWithWebIdentityCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
AssumeRoleWithWebIdentityCommandInput,
|
|
33
26
|
AssumeRoleWithWebIdentityCommandOutput,
|
|
34
|
-
STSClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").STSClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class AssumeRoleWithWebIdentityCommand extends AssumeRoleWithWebIdentityCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { STSExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/nested-clients",
|
|
3
|
-
"version": "3.997.
|
|
3
|
+
"version": "3.997.27",
|
|
4
4
|
"description": "Nested clients for AWS SDK packages.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
},
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@aws-sdk/core": "^3.974.
|
|
32
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
34
|
-
"@smithy/core": "^3.
|
|
35
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
36
|
-
"@smithy/node-http-handler": "^4.9.
|
|
37
|
-
"@smithy/types": "^4.15.
|
|
31
|
+
"@aws-sdk/core": "^3.974.27",
|
|
32
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.38",
|
|
33
|
+
"@aws-sdk/types": "^3.973.15",
|
|
34
|
+
"@smithy/core": "^3.29.0",
|
|
35
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
36
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
37
|
+
"@smithy/types": "^4.15.1",
|
|
38
38
|
"tslib": "^2.6.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|