@aws-sdk/client-sso 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SSOServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +54 -1
- package/dist-cjs/protocols/Aws_restJson1.js +61 -160
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSOServiceException.js +12 -0
- package/dist-es/models/models_0.js +50 -1
- package/dist-es/protocols/Aws_restJson1.js +101 -181
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSOServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -17
- package/dist-types/ts3.4/SSO.d.ts +25 -0
- package/dist-types/ts3.4/SSOClient.d.ts +74 -0
- package/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/LogoutCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SSOServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +143 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +14 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +31 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +31 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +30 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +30 -30
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListAccountRolesRequest, ListAccountRolesResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
|
|
5
|
+
export interface ListAccountRolesCommandInput extends ListAccountRolesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListAccountRolesCommandOutput extends ListAccountRolesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListAccountRolesCommand extends $Command<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, SSOClientResolvedConfig> {
|
|
11
|
+
readonly input: ListAccountRolesCommandInput;
|
|
12
|
+
constructor(input: ListAccountRolesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountRolesCommandInput, ListAccountRolesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
|
|
5
|
+
export interface ListAccountsCommandInput extends ListAccountsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListAccountsCommandOutput extends ListAccountsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListAccountsCommand extends $Command<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig> {
|
|
11
|
+
readonly input: ListAccountsCommandInput;
|
|
12
|
+
constructor(input: ListAccountsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountsCommandInput, ListAccountsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LogoutRequest } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient";
|
|
5
|
+
export interface LogoutCommandInput extends LogoutRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface LogoutCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class LogoutCommand extends $Command<LogoutCommandInput, LogoutCommandOutput, SSOClientResolvedConfig> {
|
|
11
|
+
readonly input: LogoutCommandInput;
|
|
12
|
+
constructor(input: LogoutCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOClientResolvedConfig, options?: __HttpHandlerOptions): Handler<LogoutCommandInput, LogoutCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SSOServiceException as __BaseException } from "./SSOServiceException";
|
|
3
|
+
|
|
4
|
+
export interface AccountInfo {
|
|
5
|
+
|
|
6
|
+
accountId?: string;
|
|
7
|
+
|
|
8
|
+
accountName?: string;
|
|
9
|
+
|
|
10
|
+
emailAddress?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace AccountInfo {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: AccountInfo) => any;
|
|
15
|
+
}
|
|
16
|
+
export interface GetRoleCredentialsRequest {
|
|
17
|
+
|
|
18
|
+
roleName: string | undefined;
|
|
19
|
+
|
|
20
|
+
accountId: string | undefined;
|
|
21
|
+
|
|
22
|
+
accessToken: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace GetRoleCredentialsRequest {
|
|
25
|
+
|
|
26
|
+
const filterSensitiveLog: (obj: GetRoleCredentialsRequest) => any;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface RoleCredentials {
|
|
30
|
+
|
|
31
|
+
accessKeyId?: string;
|
|
32
|
+
|
|
33
|
+
secretAccessKey?: string;
|
|
34
|
+
|
|
35
|
+
sessionToken?: string;
|
|
36
|
+
|
|
37
|
+
expiration?: number;
|
|
38
|
+
}
|
|
39
|
+
export declare namespace RoleCredentials {
|
|
40
|
+
|
|
41
|
+
const filterSensitiveLog: (obj: RoleCredentials) => any;
|
|
42
|
+
}
|
|
43
|
+
export interface GetRoleCredentialsResponse {
|
|
44
|
+
|
|
45
|
+
roleCredentials?: RoleCredentials;
|
|
46
|
+
}
|
|
47
|
+
export declare namespace GetRoleCredentialsResponse {
|
|
48
|
+
|
|
49
|
+
const filterSensitiveLog: (obj: GetRoleCredentialsResponse) => any;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
53
|
+
readonly name: "InvalidRequestException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
|
|
56
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
60
|
+
readonly name: "ResourceNotFoundException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
|
|
63
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
67
|
+
readonly name: "TooManyRequestsException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
|
|
70
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
74
|
+
readonly name: "UnauthorizedException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
|
|
77
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
export interface ListAccountRolesRequest {
|
|
80
|
+
|
|
81
|
+
nextToken?: string;
|
|
82
|
+
|
|
83
|
+
maxResults?: number;
|
|
84
|
+
|
|
85
|
+
accessToken: string | undefined;
|
|
86
|
+
|
|
87
|
+
accountId: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
export declare namespace ListAccountRolesRequest {
|
|
90
|
+
|
|
91
|
+
const filterSensitiveLog: (obj: ListAccountRolesRequest) => any;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface RoleInfo {
|
|
95
|
+
|
|
96
|
+
roleName?: string;
|
|
97
|
+
|
|
98
|
+
accountId?: string;
|
|
99
|
+
}
|
|
100
|
+
export declare namespace RoleInfo {
|
|
101
|
+
|
|
102
|
+
const filterSensitiveLog: (obj: RoleInfo) => any;
|
|
103
|
+
}
|
|
104
|
+
export interface ListAccountRolesResponse {
|
|
105
|
+
|
|
106
|
+
nextToken?: string;
|
|
107
|
+
|
|
108
|
+
roleList?: RoleInfo[];
|
|
109
|
+
}
|
|
110
|
+
export declare namespace ListAccountRolesResponse {
|
|
111
|
+
|
|
112
|
+
const filterSensitiveLog: (obj: ListAccountRolesResponse) => any;
|
|
113
|
+
}
|
|
114
|
+
export interface ListAccountsRequest {
|
|
115
|
+
|
|
116
|
+
nextToken?: string;
|
|
117
|
+
|
|
118
|
+
maxResults?: number;
|
|
119
|
+
|
|
120
|
+
accessToken: string | undefined;
|
|
121
|
+
}
|
|
122
|
+
export declare namespace ListAccountsRequest {
|
|
123
|
+
|
|
124
|
+
const filterSensitiveLog: (obj: ListAccountsRequest) => any;
|
|
125
|
+
}
|
|
126
|
+
export interface ListAccountsResponse {
|
|
127
|
+
|
|
128
|
+
nextToken?: string;
|
|
129
|
+
|
|
130
|
+
accountList?: AccountInfo[];
|
|
131
|
+
}
|
|
132
|
+
export declare namespace ListAccountsResponse {
|
|
133
|
+
|
|
134
|
+
const filterSensitiveLog: (obj: ListAccountsResponse) => any;
|
|
135
|
+
}
|
|
136
|
+
export interface LogoutRequest {
|
|
137
|
+
|
|
138
|
+
accessToken: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
export declare namespace LogoutRequest {
|
|
141
|
+
|
|
142
|
+
const filterSensitiveLog: (obj: LogoutRequest) => any;
|
|
143
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAccountRolesCommandInput, ListAccountRolesCommandOutput } from "../commands/ListAccountRolesCommand";
|
|
3
|
+
import { SSOPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListAccountRoles(config: SSOPaginationConfiguration, input: ListAccountRolesCommandInput, ...additionalArguments: any): Paginator<ListAccountRolesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAccountsCommandInput, ListAccountsCommandOutput } from "../commands/ListAccountsCommand";
|
|
3
|
+
import { SSOPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListAccounts(config: SSOPaginationConfiguration, input: ListAccountsCommandInput, ...additionalArguments: any): Paginator<ListAccountsCommandOutput>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput } from "../commands/GetRoleCredentialsCommand";
|
|
4
|
+
import { ListAccountRolesCommandInput, ListAccountRolesCommandOutput } from "../commands/ListAccountRolesCommand";
|
|
5
|
+
import { ListAccountsCommandInput, ListAccountsCommandOutput } from "../commands/ListAccountsCommand";
|
|
6
|
+
import { LogoutCommandInput, LogoutCommandOutput } from "../commands/LogoutCommand";
|
|
7
|
+
export declare const serializeAws_restJson1GetRoleCredentialsCommand: (input: GetRoleCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
8
|
+
export declare const serializeAws_restJson1ListAccountRolesCommand: (input: ListAccountRolesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
|
+
export declare const serializeAws_restJson1ListAccountsCommand: (input: ListAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1LogoutCommand: (input: LogoutCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
+
export declare const deserializeAws_restJson1GetRoleCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRoleCredentialsCommandOutput>;
|
|
12
|
+
export declare const deserializeAws_restJson1ListAccountRolesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccountRolesCommandOutput>;
|
|
13
|
+
export declare const deserializeAws_restJson1ListAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccountsCommandOutput>;
|
|
14
|
+
export declare const deserializeAws_restJson1LogoutCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<LogoutCommandOutput>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { SSOClientConfig } from "./SSOClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
logger: import("@aws-sdk/types").Logger;
|
|
25
|
+
serviceId: string;
|
|
26
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
31
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { SSOClientConfig } from "./SSOClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
logger: import("@aws-sdk/types").Logger;
|
|
25
|
+
serviceId: string;
|
|
26
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
31
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { SSOClientConfig } from "./SSOClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
24
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
25
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
|
+
tls?: boolean | undefined;
|
|
28
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
29
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
30
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { SSOClientConfig } from "./SSOClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
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.53.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,37 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/config-resolver": "3.
|
|
22
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
-
"@aws-sdk/hash-node": "3.
|
|
24
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
25
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-retry": "3.
|
|
29
|
-
"@aws-sdk/middleware-serde": "3.
|
|
30
|
-
"@aws-sdk/middleware-stack": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/node-config-provider": "3.
|
|
33
|
-
"@aws-sdk/node-http-handler": "3.
|
|
34
|
-
"@aws-sdk/protocol-http": "3.
|
|
35
|
-
"@aws-sdk/smithy-client": "3.
|
|
36
|
-
"@aws-sdk/types": "3.
|
|
37
|
-
"@aws-sdk/url-parser": "3.
|
|
38
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
39
|
-
"@aws-sdk/util-base64-node": "3.
|
|
40
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
41
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
42
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
43
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
44
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
45
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
47
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
22
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
23
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
25
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
32
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
33
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
34
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
35
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
36
|
+
"@aws-sdk/types": "3.53.0",
|
|
37
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
38
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
39
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
40
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
41
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
43
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
44
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
45
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
47
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
48
48
|
"tslib": "^2.3.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
51
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
52
52
|
"@tsconfig/recommended": "1.0.1",
|
|
53
53
|
"@types/node": "^12.7.5",
|
|
54
54
|
"concurrently": "7.0.0",
|