@aws-sdk/client-sso 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/SSO.d.ts +72 -25
- package/dist-types/ts3.4/SSOClient.d.ts +119 -74
- package/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/LogoutCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SSOServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +101 -123
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -14
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +45 -31
- package/dist-types/ts3.4/runtimeConfig.d.ts +45 -31
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +46 -30
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +31 -31
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-sso
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-sso
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-sso
|
|
@@ -1,25 +1,72 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetRoleCredentialsCommandInput,
|
|
4
|
+
GetRoleCredentialsCommandOutput,
|
|
5
|
+
} from "./commands/GetRoleCredentialsCommand";
|
|
6
|
+
import {
|
|
7
|
+
ListAccountRolesCommandInput,
|
|
8
|
+
ListAccountRolesCommandOutput,
|
|
9
|
+
} from "./commands/ListAccountRolesCommand";
|
|
10
|
+
import {
|
|
11
|
+
ListAccountsCommandInput,
|
|
12
|
+
ListAccountsCommandOutput,
|
|
13
|
+
} from "./commands/ListAccountsCommand";
|
|
14
|
+
import {
|
|
15
|
+
LogoutCommandInput,
|
|
16
|
+
LogoutCommandOutput,
|
|
17
|
+
} from "./commands/LogoutCommand";
|
|
18
|
+
import { SSOClient } from "./SSOClient";
|
|
19
|
+
export declare class SSO extends SSOClient {
|
|
20
|
+
getRoleCredentials(
|
|
21
|
+
args: GetRoleCredentialsCommandInput,
|
|
22
|
+
options?: __HttpHandlerOptions
|
|
23
|
+
): Promise<GetRoleCredentialsCommandOutput>;
|
|
24
|
+
getRoleCredentials(
|
|
25
|
+
args: GetRoleCredentialsCommandInput,
|
|
26
|
+
cb: (err: any, data?: GetRoleCredentialsCommandOutput) => void
|
|
27
|
+
): void;
|
|
28
|
+
getRoleCredentials(
|
|
29
|
+
args: GetRoleCredentialsCommandInput,
|
|
30
|
+
options: __HttpHandlerOptions,
|
|
31
|
+
cb: (err: any, data?: GetRoleCredentialsCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
listAccountRoles(
|
|
34
|
+
args: ListAccountRolesCommandInput,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Promise<ListAccountRolesCommandOutput>;
|
|
37
|
+
listAccountRoles(
|
|
38
|
+
args: ListAccountRolesCommandInput,
|
|
39
|
+
cb: (err: any, data?: ListAccountRolesCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
listAccountRoles(
|
|
42
|
+
args: ListAccountRolesCommandInput,
|
|
43
|
+
options: __HttpHandlerOptions,
|
|
44
|
+
cb: (err: any, data?: ListAccountRolesCommandOutput) => void
|
|
45
|
+
): void;
|
|
46
|
+
listAccounts(
|
|
47
|
+
args: ListAccountsCommandInput,
|
|
48
|
+
options?: __HttpHandlerOptions
|
|
49
|
+
): Promise<ListAccountsCommandOutput>;
|
|
50
|
+
listAccounts(
|
|
51
|
+
args: ListAccountsCommandInput,
|
|
52
|
+
cb: (err: any, data?: ListAccountsCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
listAccounts(
|
|
55
|
+
args: ListAccountsCommandInput,
|
|
56
|
+
options: __HttpHandlerOptions,
|
|
57
|
+
cb: (err: any, data?: ListAccountsCommandOutput) => void
|
|
58
|
+
): void;
|
|
59
|
+
logout(
|
|
60
|
+
args: LogoutCommandInput,
|
|
61
|
+
options?: __HttpHandlerOptions
|
|
62
|
+
): Promise<LogoutCommandOutput>;
|
|
63
|
+
logout(
|
|
64
|
+
args: LogoutCommandInput,
|
|
65
|
+
cb: (err: any, data?: LogoutCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
logout(
|
|
68
|
+
args: LogoutCommandInput,
|
|
69
|
+
options: __HttpHandlerOptions,
|
|
70
|
+
cb: (err: any, data?: LogoutCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
}
|
|
@@ -1,74 +1,119 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
UserAgentInputConfig,
|
|
17
|
+
UserAgentResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
19
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
20
|
+
import {
|
|
21
|
+
Client as __Client,
|
|
22
|
+
DefaultsMode,
|
|
23
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
24
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
25
|
+
} from "@aws-sdk/smithy-client";
|
|
26
|
+
import {
|
|
27
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
28
|
+
Decoder as __Decoder,
|
|
29
|
+
Encoder as __Encoder,
|
|
30
|
+
HashConstructor as __HashConstructor,
|
|
31
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
32
|
+
Logger as __Logger,
|
|
33
|
+
Provider as __Provider,
|
|
34
|
+
Provider,
|
|
35
|
+
RegionInfoProvider,
|
|
36
|
+
StreamCollector as __StreamCollector,
|
|
37
|
+
UrlParser as __UrlParser,
|
|
38
|
+
UserAgent as __UserAgent,
|
|
39
|
+
} from "@aws-sdk/types";
|
|
40
|
+
import {
|
|
41
|
+
GetRoleCredentialsCommandInput,
|
|
42
|
+
GetRoleCredentialsCommandOutput,
|
|
43
|
+
} from "./commands/GetRoleCredentialsCommand";
|
|
44
|
+
import {
|
|
45
|
+
ListAccountRolesCommandInput,
|
|
46
|
+
ListAccountRolesCommandOutput,
|
|
47
|
+
} from "./commands/ListAccountRolesCommand";
|
|
48
|
+
import {
|
|
49
|
+
ListAccountsCommandInput,
|
|
50
|
+
ListAccountsCommandOutput,
|
|
51
|
+
} from "./commands/ListAccountsCommand";
|
|
52
|
+
import {
|
|
53
|
+
LogoutCommandInput,
|
|
54
|
+
LogoutCommandOutput,
|
|
55
|
+
} from "./commands/LogoutCommand";
|
|
56
|
+
export declare type ServiceInputTypes =
|
|
57
|
+
| GetRoleCredentialsCommandInput
|
|
58
|
+
| ListAccountRolesCommandInput
|
|
59
|
+
| ListAccountsCommandInput
|
|
60
|
+
| LogoutCommandInput;
|
|
61
|
+
export declare type ServiceOutputTypes =
|
|
62
|
+
| GetRoleCredentialsCommandOutput
|
|
63
|
+
| ListAccountRolesCommandOutput
|
|
64
|
+
| ListAccountsCommandOutput
|
|
65
|
+
| LogoutCommandOutput;
|
|
66
|
+
export interface ClientDefaults
|
|
67
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
68
|
+
requestHandler?: __HttpHandler;
|
|
69
|
+
sha256?: __HashConstructor;
|
|
70
|
+
urlParser?: __UrlParser;
|
|
71
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
72
|
+
streamCollector?: __StreamCollector;
|
|
73
|
+
base64Decoder?: __Decoder;
|
|
74
|
+
base64Encoder?: __Encoder;
|
|
75
|
+
utf8Decoder?: __Decoder;
|
|
76
|
+
utf8Encoder?: __Encoder;
|
|
77
|
+
runtime?: string;
|
|
78
|
+
disableHostPrefix?: boolean;
|
|
79
|
+
maxAttempts?: number | __Provider<number>;
|
|
80
|
+
retryMode?: string | __Provider<string>;
|
|
81
|
+
logger?: __Logger;
|
|
82
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
83
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
84
|
+
serviceId?: string;
|
|
85
|
+
region?: string | __Provider<string>;
|
|
86
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
87
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
88
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
89
|
+
}
|
|
90
|
+
declare type SSOClientConfigType = Partial<
|
|
91
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
92
|
+
> &
|
|
93
|
+
ClientDefaults &
|
|
94
|
+
RegionInputConfig &
|
|
95
|
+
EndpointsInputConfig &
|
|
96
|
+
RetryInputConfig &
|
|
97
|
+
HostHeaderInputConfig &
|
|
98
|
+
UserAgentInputConfig;
|
|
99
|
+
export interface SSOClientConfig extends SSOClientConfigType {}
|
|
100
|
+
declare type SSOClientResolvedConfigType =
|
|
101
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
102
|
+
Required<ClientDefaults> &
|
|
103
|
+
RegionResolvedConfig &
|
|
104
|
+
EndpointsResolvedConfig &
|
|
105
|
+
RetryResolvedConfig &
|
|
106
|
+
HostHeaderResolvedConfig &
|
|
107
|
+
UserAgentResolvedConfig;
|
|
108
|
+
export interface SSOClientResolvedConfig extends SSOClientResolvedConfigType {}
|
|
109
|
+
export declare class SSOClient extends __Client<
|
|
110
|
+
__HttpHandlerOptions,
|
|
111
|
+
ServiceInputTypes,
|
|
112
|
+
ServiceOutputTypes,
|
|
113
|
+
SSOClientResolvedConfig
|
|
114
|
+
> {
|
|
115
|
+
readonly config: SSOClientResolvedConfig;
|
|
116
|
+
constructor(configuration: SSOClientConfig);
|
|
117
|
+
destroy(): void;
|
|
118
|
+
}
|
|
119
|
+
export {};
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetRoleCredentialsRequest,
|
|
10
|
+
GetRoleCredentialsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SSOClientResolvedConfig,
|
|
16
|
+
} from "../SSOClient";
|
|
17
|
+
export interface GetRoleCredentialsCommandInput
|
|
18
|
+
extends GetRoleCredentialsRequest {}
|
|
19
|
+
export interface GetRoleCredentialsCommandOutput
|
|
20
|
+
extends GetRoleCredentialsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetRoleCredentialsCommand extends $Command<
|
|
23
|
+
GetRoleCredentialsCommandInput,
|
|
24
|
+
GetRoleCredentialsCommandOutput,
|
|
25
|
+
SSOClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetRoleCredentialsCommandInput;
|
|
28
|
+
constructor(input: GetRoleCredentialsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSOClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListAccountRolesRequest,
|
|
10
|
+
ListAccountRolesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SSOClientResolvedConfig,
|
|
16
|
+
} from "../SSOClient";
|
|
17
|
+
export interface ListAccountRolesCommandInput extends ListAccountRolesRequest {}
|
|
18
|
+
export interface ListAccountRolesCommandOutput
|
|
19
|
+
extends ListAccountRolesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListAccountRolesCommand extends $Command<
|
|
22
|
+
ListAccountRolesCommandInput,
|
|
23
|
+
ListAccountRolesCommandOutput,
|
|
24
|
+
SSOClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListAccountRolesCommandInput;
|
|
27
|
+
constructor(input: ListAccountRolesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SSOClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListAccountRolesCommandInput, ListAccountRolesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SSOClientResolvedConfig,
|
|
13
|
+
} from "../SSOClient";
|
|
14
|
+
export interface ListAccountsCommandInput extends ListAccountsRequest {}
|
|
15
|
+
export interface ListAccountsCommandOutput
|
|
16
|
+
extends ListAccountsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListAccountsCommand extends $Command<
|
|
19
|
+
ListAccountsCommandInput,
|
|
20
|
+
ListAccountsCommandOutput,
|
|
21
|
+
SSOClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListAccountsCommandInput;
|
|
24
|
+
constructor(input: ListAccountsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SSOClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListAccountsCommandInput, ListAccountsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { LogoutRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SSOClientResolvedConfig,
|
|
13
|
+
} from "../SSOClient";
|
|
14
|
+
export interface LogoutCommandInput extends LogoutRequest {}
|
|
15
|
+
export interface LogoutCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class LogoutCommand extends $Command<
|
|
17
|
+
LogoutCommandInput,
|
|
18
|
+
LogoutCommandOutput,
|
|
19
|
+
SSOClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: LogoutCommandInput;
|
|
22
|
+
constructor(input: LogoutCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: SSOClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<LogoutCommandInput, LogoutCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./GetRoleCredentialsCommand";
|
|
2
|
-
export * from "./ListAccountRolesCommand";
|
|
3
|
-
export * from "./ListAccountsCommand";
|
|
4
|
-
export * from "./LogoutCommand";
|
|
1
|
+
export * from "./GetRoleCredentialsCommand";
|
|
2
|
+
export * from "./ListAccountRolesCommand";
|
|
3
|
+
export * from "./ListAccountsCommand";
|
|
4
|
+
export * from "./LogoutCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./SSO";
|
|
2
|
-
export * from "./SSOClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { SSOServiceException } from "./models/SSOServiceException";
|
|
1
|
+
export * from "./SSO";
|
|
2
|
+
export * from "./SSOClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { SSOServiceException } from "./models/SSOServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class SSOServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|