@aws-sdk/client-sso 3.1076.0 → 3.1078.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/index.js +15 -45
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/GetRoleCredentialsCommand.js +2 -14
- package/dist-es/commands/ListAccountRolesCommand.js +2 -14
- package/dist-es/commands/ListAccountsCommand.js +2 -14
- package/dist-es/commands/LogoutCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/dist-types/commands/ListAccountRolesCommand.d.ts +3 -8
- package/dist-types/commands/ListAccountsCommand.d.ts +3 -8
- package/dist-types/commands/LogoutCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -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/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/LogoutCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { NoAuthSigner, getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -9,9 +10,10 @@ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntim
|
|
|
9
10
|
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
11
|
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
12
|
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
-
const { toUtf8, fromUtf8, toBase64, fromBase64,
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
13
14
|
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
14
15
|
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
15
17
|
|
|
16
18
|
const defaultSSOHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
17
19
|
return {
|
|
@@ -91,7 +93,7 @@ const commonParams = {
|
|
|
91
93
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
92
94
|
};
|
|
93
95
|
|
|
94
|
-
var version = "3.
|
|
96
|
+
var version = "3.1077.0";
|
|
95
97
|
var packageInfo = {
|
|
96
98
|
version: version};
|
|
97
99
|
|
|
@@ -398,6 +400,7 @@ const getRuntimeConfig$1 = (config) => {
|
|
|
398
400
|
serviceTarget: "SWBPortalService",
|
|
399
401
|
},
|
|
400
402
|
serviceId: config?.serviceId ?? "SSO",
|
|
403
|
+
sha256: config?.sha256 ?? Sha256,
|
|
401
404
|
urlParser: config?.urlParser ?? parseUrl,
|
|
402
405
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
403
406
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -430,7 +433,6 @@ const getRuntimeConfig = (config) => {
|
|
|
430
433
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
431
434
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
432
435
|
}, config),
|
|
433
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
434
436
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
435
437
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
436
438
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -518,52 +520,20 @@ class SSOClient extends Client {
|
|
|
518
520
|
}
|
|
519
521
|
}
|
|
520
522
|
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
})
|
|
527
|
-
.s("SWBPortalService", "GetRoleCredentials", {})
|
|
528
|
-
.n("SSOClient", "GetRoleCredentialsCommand")
|
|
529
|
-
.sc(GetRoleCredentials$)
|
|
530
|
-
.build() {
|
|
523
|
+
const command = makeBuilder(commonParams, "SWBPortalService", "SSOClient", getEndpointPlugin);
|
|
524
|
+
const _ep0 = {};
|
|
525
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
526
|
+
|
|
527
|
+
class GetRoleCredentialsCommand extends command(_ep0, _mw0, "GetRoleCredentials", GetRoleCredentials$) {
|
|
531
528
|
}
|
|
532
529
|
|
|
533
|
-
class ListAccountRolesCommand extends
|
|
534
|
-
.classBuilder()
|
|
535
|
-
.ep(commonParams)
|
|
536
|
-
.m(function (Command, cs, config, o) {
|
|
537
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
538
|
-
})
|
|
539
|
-
.s("SWBPortalService", "ListAccountRoles", {})
|
|
540
|
-
.n("SSOClient", "ListAccountRolesCommand")
|
|
541
|
-
.sc(ListAccountRoles$)
|
|
542
|
-
.build() {
|
|
530
|
+
class ListAccountRolesCommand extends command(_ep0, _mw0, "ListAccountRoles", ListAccountRoles$) {
|
|
543
531
|
}
|
|
544
532
|
|
|
545
|
-
class ListAccountsCommand extends
|
|
546
|
-
.classBuilder()
|
|
547
|
-
.ep(commonParams)
|
|
548
|
-
.m(function (Command, cs, config, o) {
|
|
549
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
550
|
-
})
|
|
551
|
-
.s("SWBPortalService", "ListAccounts", {})
|
|
552
|
-
.n("SSOClient", "ListAccountsCommand")
|
|
553
|
-
.sc(ListAccounts$)
|
|
554
|
-
.build() {
|
|
533
|
+
class ListAccountsCommand extends command(_ep0, _mw0, "ListAccounts", ListAccounts$) {
|
|
555
534
|
}
|
|
556
535
|
|
|
557
|
-
class LogoutCommand extends
|
|
558
|
-
.classBuilder()
|
|
559
|
-
.ep(commonParams)
|
|
560
|
-
.m(function (Command, cs, config, o) {
|
|
561
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
562
|
-
})
|
|
563
|
-
.s("SWBPortalService", "Logout", {})
|
|
564
|
-
.n("SSOClient", "LogoutCommand")
|
|
565
|
-
.sc(Logout$)
|
|
566
|
-
.build() {
|
|
536
|
+
class LogoutCommand extends command(_ep0, _mw0, "Logout", Logout$) {
|
|
567
537
|
}
|
|
568
538
|
|
|
569
539
|
const paginateListAccountRoles = createPaginator(SSOClient, ListAccountRolesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "SWBPortalService", "SSOClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetRoleCredentials$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetRoleCredentialsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("SWBPortalService", "GetRoleCredentials", {})
|
|
13
|
-
.n("SSOClient", "GetRoleCredentialsCommand")
|
|
14
|
-
.sc(GetRoleCredentials$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetRoleCredentialsCommand extends command(_ep0, _mw0, "GetRoleCredentials", GetRoleCredentials$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListAccountRoles$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListAccountRolesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("SWBPortalService", "ListAccountRoles", {})
|
|
13
|
-
.n("SSOClient", "ListAccountRolesCommand")
|
|
14
|
-
.sc(ListAccountRoles$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListAccountRolesCommand extends command(_ep0, _mw0, "ListAccountRoles", ListAccountRoles$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListAccounts$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListAccountsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("SWBPortalService", "ListAccounts", {})
|
|
13
|
-
.n("SSOClient", "ListAccountsCommand")
|
|
14
|
-
.sc(ListAccounts$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListAccountsCommand extends command(_ep0, _mw0, "ListAccounts", ListAccounts$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { Logout$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class LogoutCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("SWBPortalService", "Logout", {})
|
|
13
|
-
.n("SSOClient", "LogoutCommand")
|
|
14
|
-
.sc(Logout$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class LogoutCommand extends command(_ep0, _mw0, "Logout", Logout$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
3
2
|
import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
|
|
4
3
|
import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
5
4
|
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
@@ -22,7 +21,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
21
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
23
22
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
24
23
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
25
|
-
sha256: config?.sha256 ?? Sha256,
|
|
26
24
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
27
25
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
28
26
|
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -4,7 +4,7 @@ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchem
|
|
|
4
4
|
import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
5
5
|
import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
6
6
|
import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
|
|
7
|
-
import { calculateBodyLength
|
|
7
|
+
import { calculateBodyLength } from "@smithy/core/serde";
|
|
8
8
|
import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
|
|
9
9
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
10
10
|
export const getRuntimeConfig = (config) => {
|
|
@@ -33,7 +33,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
33
33
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
34
34
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
35
35
|
}, config),
|
|
36
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
37
36
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
38
37
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
39
38
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
2
1
|
import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
|
|
3
2
|
export const getRuntimeConfig = (config) => {
|
|
4
3
|
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
|
|
|
6
5
|
...browserDefaults,
|
|
7
6
|
...config,
|
|
8
7
|
runtime: "react-native",
|
|
9
|
-
sha256: config?.sha256 ?? Sha256,
|
|
10
8
|
};
|
|
11
9
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoAuthSigner } from "@smithy/core";
|
|
4
|
+
import { Sha256 } from "@smithy/core/checksum";
|
|
4
5
|
import { NoOpLogger } from "@smithy/core/client";
|
|
5
6
|
import { parseUrl } from "@smithy/core/protocols";
|
|
6
7
|
import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
|
|
@@ -37,6 +38,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
37
38
|
serviceTarget: "SWBPortalService",
|
|
38
39
|
},
|
|
39
40
|
serviceId: config?.serviceId ?? "SSO",
|
|
41
|
+
sha256: config?.sha256 ?? Sha256,
|
|
40
42
|
urlParser: config?.urlParser ?? parseUrl,
|
|
41
43
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
42
44
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "./SSOClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetRoleCredentialsRequest, GetRoleCredentialsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetRoleCredentialsCommandInput extends GetRoleCredentialsReques
|
|
|
22
19
|
export interface GetRoleCredentialsCommandOutput extends GetRoleCredentialsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetRoleCredentialsCommand_base: {
|
|
25
|
-
new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns the STS short-term credentials for a given role name that is assigned to the
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListAccountRolesRequest, ListAccountRolesResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListAccountRolesCommandInput extends ListAccountRolesRequest {
|
|
|
22
19
|
export interface ListAccountRolesCommandOutput extends ListAccountRolesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListAccountRolesCommand_base: {
|
|
25
|
-
new (input: ListAccountRolesCommandInput): import("@smithy/core/client").CommandImpl<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListAccountRolesCommandInput): import("@smithy/core/client").CommandImpl<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListAccountRolesCommandInput): import("@smithy/core/client").CommandImpl<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListAccountRolesCommandInput): import("@smithy/core/client").CommandImpl<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Lists all roles that are assigned to the user for a given AWS account.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListAccountsCommandInput extends ListAccountsRequest {
|
|
|
22
19
|
export interface ListAccountsCommandOutput extends ListAccountsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListAccountsCommand_base: {
|
|
25
|
-
new (input: ListAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Lists all AWS accounts assigned to the user. These AWS accounts are assigned by the
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { LogoutRequest } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface LogoutCommandInput extends LogoutRequest {
|
|
|
22
19
|
export interface LogoutCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const LogoutCommand_base: {
|
|
25
|
-
new (input: LogoutCommandInput): import("@smithy/core/client").CommandImpl<LogoutCommandInput, LogoutCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: LogoutCommandInput): import("@smithy/core/client").CommandImpl<LogoutCommandInput, LogoutCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: LogoutCommandInput): import("@smithy/core/client").CommandImpl<LogoutCommandInput, LogoutCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: LogoutCommandInput): import("@smithy/core/client").CommandImpl<LogoutCommandInput, LogoutCommandOutput, import("..").SSOClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes the locally stored SSO tokens from the client-side cache and sends an API call to
|
package/dist-types/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
24
24
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
25
25
|
export type { SSOExtensionConfiguration } from "./extensionConfiguration";
|
|
26
26
|
export * from "./commands";
|
|
27
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
27
28
|
export * from "./schemas/schemas_0";
|
|
28
29
|
export * from "./pagination";
|
|
29
30
|
export * from "./models/errors";
|
|
@@ -12,7 +12,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
12
12
|
region: string | import("@smithy/types").Provider<any>;
|
|
13
13
|
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
14
14
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
15
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
16
15
|
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
17
16
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
18
17
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -23,6 +22,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
23
22
|
[setting: string]: unknown;
|
|
24
23
|
};
|
|
25
24
|
apiVersion: string;
|
|
25
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
26
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
28
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
17
16
|
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
17
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
18
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -25,6 +24,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
25
24
|
[setting: string]: unknown;
|
|
26
25
|
};
|
|
27
26
|
apiVersion: string;
|
|
27
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
28
28
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
29
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
30
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -4,7 +4,6 @@ import type { SSOClientConfig } from "./SSOClient";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
8
7
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
8
|
cacheMiddleware?: boolean;
|
|
10
9
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
13
12
|
[setting: string]: unknown;
|
|
14
13
|
};
|
|
15
14
|
apiVersion: string;
|
|
15
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
16
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
18
|
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
@@ -32,6 +32,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
32
32
|
defaultNamespace?: string;
|
|
33
33
|
};
|
|
34
34
|
serviceId: string;
|
|
35
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
35
36
|
urlParser: import("@smithy/types").UrlParser;
|
|
36
37
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
37
38
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServiceInputTypes,
|
|
4
|
+
ServiceOutputTypes,
|
|
5
|
+
SSOClientResolvedConfig,
|
|
6
|
+
} from "./SSOClient";
|
|
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
|
+
SSOClientResolvedConfig,
|
|
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
|
+
SSOClientResolvedConfig,
|
|
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,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
|
GetRoleCredentialsRequest,
|
|
5
4
|
GetRoleCredentialsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SSOClientResolvedConfig,
|
|
11
|
-
} from "../SSOClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetRoleCredentialsCommandInput
|
|
15
8
|
extends GetRoleCredentialsRequest {}
|
|
16
9
|
export interface GetRoleCredentialsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetRoleCredentialsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetRoleCredentialsCommandInput,
|
|
24
17
|
GetRoleCredentialsCommandOutput,
|
|
25
|
-
SSOClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SSOClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetRoleCredentialsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetRoleCredentialsCommandInput,
|
|
33
26
|
GetRoleCredentialsCommandOutput,
|
|
34
|
-
SSOClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SSOClientResolvedConfig,
|
|
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 GetRoleCredentialsCommand extends GetRoleCredentialsCommand_base {
|
|
43
34
|
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
|
ListAccountRolesRequest,
|
|
5
4
|
ListAccountRolesResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SSOClientResolvedConfig,
|
|
11
|
-
} from "../SSOClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListAccountRolesCommandInput extends ListAccountRolesRequest {}
|
|
15
8
|
export interface ListAccountRolesCommandOutput
|
|
16
9
|
extends ListAccountRolesResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListAccountRolesCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListAccountRolesCommandInput,
|
|
23
16
|
ListAccountRolesCommandOutput,
|
|
24
|
-
SSOClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SSOClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: ListAccountRolesCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListAccountRolesCommandInput,
|
|
32
25
|
ListAccountRolesCommandOutput,
|
|
33
|
-
SSOClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SSOClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListAccountRolesCommand extends ListAccountRolesCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -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 { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SSOClientResolvedConfig,
|
|
8
|
-
} from "../SSOClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListAccountsCommandInput extends ListAccountsRequest {}
|
|
12
5
|
export interface ListAccountsCommandOutput
|
|
13
6
|
extends ListAccountsResponse,
|
|
@@ -18,22 +11,20 @@ declare const ListAccountsCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListAccountsCommandInput,
|
|
20
13
|
ListAccountsCommandOutput,
|
|
21
|
-
SSOClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SSOClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: ListAccountsCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListAccountsCommandInput,
|
|
29
22
|
ListAccountsCommandOutput,
|
|
30
|
-
SSOClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SSOClientResolvedConfig,
|
|
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 ListAccountsCommand extends ListAccountsCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,33 +1,24 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { LogoutRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SSOClientResolvedConfig,
|
|
8
|
-
} from "../SSOClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface LogoutCommandInput extends LogoutRequest {}
|
|
12
5
|
export interface LogoutCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const LogoutCommand_base: {
|
|
14
7
|
new (input: LogoutCommandInput): import("@smithy/core/client").CommandImpl<
|
|
15
8
|
LogoutCommandInput,
|
|
16
9
|
LogoutCommandOutput,
|
|
17
|
-
SSOClientResolvedConfig,
|
|
18
|
-
ServiceInputTypes,
|
|
19
|
-
ServiceOutputTypes
|
|
10
|
+
import("..").SSOClientResolvedConfig,
|
|
11
|
+
import("..").ServiceInputTypes,
|
|
12
|
+
import("..").ServiceOutputTypes
|
|
20
13
|
>;
|
|
21
14
|
new (input: LogoutCommandInput): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
LogoutCommandInput,
|
|
23
16
|
LogoutCommandOutput,
|
|
24
|
-
SSOClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SSOClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
|
-
getEndpointParameterInstructions():
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
21
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
31
22
|
};
|
|
32
23
|
export declare class LogoutCommand extends LogoutCommand_base {
|
|
33
24
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SSOExtensionConfiguration } 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 "./pagination";
|
|
9
10
|
export * from "./models/errors";
|
|
@@ -15,7 +15,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
15
15
|
| import("@smithy/core/protocols").HttpHandler<any>
|
|
16
16
|
| RequestHandler;
|
|
17
17
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
18
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
19
18
|
streamCollector: (
|
|
20
19
|
stream:
|
|
21
20
|
| import("stream").Readable
|
|
@@ -37,6 +36,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
37
36
|
[setting: string]: unknown;
|
|
38
37
|
};
|
|
39
38
|
apiVersion: string;
|
|
39
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
40
40
|
urlParser: import("@smithy/types").UrlParser;
|
|
41
41
|
base64Decoder: import("@smithy/types").Decoder;
|
|
42
42
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -16,7 +16,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
16
16
|
| RequestHandler
|
|
17
17
|
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
18
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
20
19
|
streamCollector: (
|
|
21
20
|
stream:
|
|
22
21
|
| import("stream").Readable
|
|
@@ -37,6 +36,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
37
36
|
[setting: string]: unknown;
|
|
38
37
|
};
|
|
39
38
|
apiVersion: string;
|
|
39
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
40
40
|
urlParser: import("@smithy/types").UrlParser;
|
|
41
41
|
base64Decoder: import("@smithy/types").Decoder;
|
|
42
42
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { SSOClientConfig } from "./SSOClient";
|
|
2
2
|
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
3
3
|
runtime: string;
|
|
4
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
5
4
|
requestHandler:
|
|
6
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
6
|
| import("@smithy/types").FetchHttpHandlerOptions
|
|
@@ -18,6 +17,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
18
17
|
[setting: string]: unknown;
|
|
19
18
|
};
|
|
20
19
|
apiVersion: string;
|
|
20
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
@@ -52,6 +52,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
52
52
|
defaultNamespace?: string;
|
|
53
53
|
};
|
|
54
54
|
serviceId: string;
|
|
55
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
55
56
|
urlParser: import("@smithy/types").UrlParser;
|
|
56
57
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
57
58
|
utf8Encoder: (input: Uint8Array | string) => string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -23,18 +23,16 @@
|
|
|
23
23
|
"module": "./dist-es/index.js",
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-
|
|
27
|
-
"@aws-
|
|
28
|
-
"@
|
|
29
|
-
"@
|
|
30
|
-
"@smithy/
|
|
31
|
-
"@smithy/
|
|
32
|
-
"@smithy/node-http-handler": "^4.9.0",
|
|
33
|
-
"@smithy/types": "^4.15.0",
|
|
26
|
+
"@aws-sdk/core": "^3.974.26",
|
|
27
|
+
"@aws-sdk/types": "^3.973.15",
|
|
28
|
+
"@smithy/core": "^3.29.0",
|
|
29
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
30
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
31
|
+
"@smithy/types": "^4.15.1",
|
|
34
32
|
"tslib": "^2.6.2"
|
|
35
33
|
},
|
|
36
34
|
"devDependencies": {
|
|
37
|
-
"@smithy/snapshot-testing": "^2.2.
|
|
35
|
+
"@smithy/snapshot-testing": "^2.2.5",
|
|
38
36
|
"@tsconfig/node20": "20.1.8",
|
|
39
37
|
"@types/node": "^20.14.8",
|
|
40
38
|
"concurrently": "7.0.0",
|