@aws-sdk/client-sso-oidc 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/SSOOIDC.d.ts +55 -20
- package/dist-types/ts3.4/SSOOIDCClient.d.ts +114 -73
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +3 -3
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/SSOOIDCServiceException.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 +169 -196
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -11
- 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-oidc
|
|
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-oidc
|
|
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-oidc
|
|
@@ -1,20 +1,55 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateTokenCommandInput,
|
|
4
|
+
CreateTokenCommandOutput,
|
|
5
|
+
} from "./commands/CreateTokenCommand";
|
|
6
|
+
import {
|
|
7
|
+
RegisterClientCommandInput,
|
|
8
|
+
RegisterClientCommandOutput,
|
|
9
|
+
} from "./commands/RegisterClientCommand";
|
|
10
|
+
import {
|
|
11
|
+
StartDeviceAuthorizationCommandInput,
|
|
12
|
+
StartDeviceAuthorizationCommandOutput,
|
|
13
|
+
} from "./commands/StartDeviceAuthorizationCommand";
|
|
14
|
+
import { SSOOIDCClient } from "./SSOOIDCClient";
|
|
15
|
+
export declare class SSOOIDC extends SSOOIDCClient {
|
|
16
|
+
createToken(
|
|
17
|
+
args: CreateTokenCommandInput,
|
|
18
|
+
options?: __HttpHandlerOptions
|
|
19
|
+
): Promise<CreateTokenCommandOutput>;
|
|
20
|
+
createToken(
|
|
21
|
+
args: CreateTokenCommandInput,
|
|
22
|
+
cb: (err: any, data?: CreateTokenCommandOutput) => void
|
|
23
|
+
): void;
|
|
24
|
+
createToken(
|
|
25
|
+
args: CreateTokenCommandInput,
|
|
26
|
+
options: __HttpHandlerOptions,
|
|
27
|
+
cb: (err: any, data?: CreateTokenCommandOutput) => void
|
|
28
|
+
): void;
|
|
29
|
+
registerClient(
|
|
30
|
+
args: RegisterClientCommandInput,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Promise<RegisterClientCommandOutput>;
|
|
33
|
+
registerClient(
|
|
34
|
+
args: RegisterClientCommandInput,
|
|
35
|
+
cb: (err: any, data?: RegisterClientCommandOutput) => void
|
|
36
|
+
): void;
|
|
37
|
+
registerClient(
|
|
38
|
+
args: RegisterClientCommandInput,
|
|
39
|
+
options: __HttpHandlerOptions,
|
|
40
|
+
cb: (err: any, data?: RegisterClientCommandOutput) => void
|
|
41
|
+
): void;
|
|
42
|
+
startDeviceAuthorization(
|
|
43
|
+
args: StartDeviceAuthorizationCommandInput,
|
|
44
|
+
options?: __HttpHandlerOptions
|
|
45
|
+
): Promise<StartDeviceAuthorizationCommandOutput>;
|
|
46
|
+
startDeviceAuthorization(
|
|
47
|
+
args: StartDeviceAuthorizationCommandInput,
|
|
48
|
+
cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void
|
|
49
|
+
): void;
|
|
50
|
+
startDeviceAuthorization(
|
|
51
|
+
args: StartDeviceAuthorizationCommandInput,
|
|
52
|
+
options: __HttpHandlerOptions,
|
|
53
|
+
cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void
|
|
54
|
+
): void;
|
|
55
|
+
}
|
|
@@ -1,73 +1,114 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
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
|
+
CreateTokenCommandInput,
|
|
42
|
+
CreateTokenCommandOutput,
|
|
43
|
+
} from "./commands/CreateTokenCommand";
|
|
44
|
+
import {
|
|
45
|
+
RegisterClientCommandInput,
|
|
46
|
+
RegisterClientCommandOutput,
|
|
47
|
+
} from "./commands/RegisterClientCommand";
|
|
48
|
+
import {
|
|
49
|
+
StartDeviceAuthorizationCommandInput,
|
|
50
|
+
StartDeviceAuthorizationCommandOutput,
|
|
51
|
+
} from "./commands/StartDeviceAuthorizationCommand";
|
|
52
|
+
export declare type ServiceInputTypes =
|
|
53
|
+
| CreateTokenCommandInput
|
|
54
|
+
| RegisterClientCommandInput
|
|
55
|
+
| StartDeviceAuthorizationCommandInput;
|
|
56
|
+
export declare type ServiceOutputTypes =
|
|
57
|
+
| CreateTokenCommandOutput
|
|
58
|
+
| RegisterClientCommandOutput
|
|
59
|
+
| StartDeviceAuthorizationCommandOutput;
|
|
60
|
+
export interface ClientDefaults
|
|
61
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
62
|
+
requestHandler?: __HttpHandler;
|
|
63
|
+
sha256?: __HashConstructor;
|
|
64
|
+
urlParser?: __UrlParser;
|
|
65
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
66
|
+
streamCollector?: __StreamCollector;
|
|
67
|
+
base64Decoder?: __Decoder;
|
|
68
|
+
base64Encoder?: __Encoder;
|
|
69
|
+
utf8Decoder?: __Decoder;
|
|
70
|
+
utf8Encoder?: __Encoder;
|
|
71
|
+
runtime?: string;
|
|
72
|
+
disableHostPrefix?: boolean;
|
|
73
|
+
maxAttempts?: number | __Provider<number>;
|
|
74
|
+
retryMode?: string | __Provider<string>;
|
|
75
|
+
logger?: __Logger;
|
|
76
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
77
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
78
|
+
serviceId?: string;
|
|
79
|
+
region?: string | __Provider<string>;
|
|
80
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
81
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
82
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
83
|
+
}
|
|
84
|
+
declare type SSOOIDCClientConfigType = Partial<
|
|
85
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
86
|
+
> &
|
|
87
|
+
ClientDefaults &
|
|
88
|
+
RegionInputConfig &
|
|
89
|
+
EndpointsInputConfig &
|
|
90
|
+
RetryInputConfig &
|
|
91
|
+
HostHeaderInputConfig &
|
|
92
|
+
UserAgentInputConfig;
|
|
93
|
+
export interface SSOOIDCClientConfig extends SSOOIDCClientConfigType {}
|
|
94
|
+
declare type SSOOIDCClientResolvedConfigType =
|
|
95
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
96
|
+
Required<ClientDefaults> &
|
|
97
|
+
RegionResolvedConfig &
|
|
98
|
+
EndpointsResolvedConfig &
|
|
99
|
+
RetryResolvedConfig &
|
|
100
|
+
HostHeaderResolvedConfig &
|
|
101
|
+
UserAgentResolvedConfig;
|
|
102
|
+
export interface SSOOIDCClientResolvedConfig
|
|
103
|
+
extends SSOOIDCClientResolvedConfigType {}
|
|
104
|
+
export declare class SSOOIDCClient extends __Client<
|
|
105
|
+
__HttpHandlerOptions,
|
|
106
|
+
ServiceInputTypes,
|
|
107
|
+
ServiceOutputTypes,
|
|
108
|
+
SSOOIDCClientResolvedConfig
|
|
109
|
+
> {
|
|
110
|
+
readonly config: SSOOIDCClientResolvedConfig;
|
|
111
|
+
constructor(configuration: SSOOIDCClientConfig);
|
|
112
|
+
destroy(): void;
|
|
113
|
+
}
|
|
114
|
+
export {};
|
|
@@ -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 { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
SSOOIDCClientResolvedConfig,
|
|
13
|
+
} from "../SSOOIDCClient";
|
|
14
|
+
export interface CreateTokenCommandInput extends CreateTokenRequest {}
|
|
15
|
+
export interface CreateTokenCommandOutput
|
|
16
|
+
extends CreateTokenResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class CreateTokenCommand extends $Command<
|
|
19
|
+
CreateTokenCommandInput,
|
|
20
|
+
CreateTokenCommandOutput,
|
|
21
|
+
SSOOIDCClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: CreateTokenCommandInput;
|
|
24
|
+
constructor(input: CreateTokenCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SSOOIDCClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<CreateTokenCommandInput, CreateTokenCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
RegisterClientRequest,
|
|
10
|
+
RegisterClientResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SSOOIDCClientResolvedConfig,
|
|
16
|
+
} from "../SSOOIDCClient";
|
|
17
|
+
export interface RegisterClientCommandInput extends RegisterClientRequest {}
|
|
18
|
+
export interface RegisterClientCommandOutput
|
|
19
|
+
extends RegisterClientResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class RegisterClientCommand extends $Command<
|
|
22
|
+
RegisterClientCommandInput,
|
|
23
|
+
RegisterClientCommandOutput,
|
|
24
|
+
SSOOIDCClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: RegisterClientCommandInput;
|
|
27
|
+
constructor(input: RegisterClientCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: SSOOIDCClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<RegisterClientCommandInput, RegisterClientCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
StartDeviceAuthorizationRequest,
|
|
10
|
+
StartDeviceAuthorizationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SSOOIDCClientResolvedConfig,
|
|
16
|
+
} from "../SSOOIDCClient";
|
|
17
|
+
export interface StartDeviceAuthorizationCommandInput
|
|
18
|
+
extends StartDeviceAuthorizationRequest {}
|
|
19
|
+
export interface StartDeviceAuthorizationCommandOutput
|
|
20
|
+
extends StartDeviceAuthorizationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartDeviceAuthorizationCommand extends $Command<
|
|
23
|
+
StartDeviceAuthorizationCommandInput,
|
|
24
|
+
StartDeviceAuthorizationCommandOutput,
|
|
25
|
+
SSOOIDCClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartDeviceAuthorizationCommandInput;
|
|
28
|
+
constructor(input: StartDeviceAuthorizationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: SSOOIDCClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
StartDeviceAuthorizationCommandInput,
|
|
35
|
+
StartDeviceAuthorizationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./CreateTokenCommand";
|
|
2
|
-
export * from "./RegisterClientCommand";
|
|
3
|
-
export * from "./StartDeviceAuthorizationCommand";
|
|
1
|
+
export * from "./CreateTokenCommand";
|
|
2
|
+
export * from "./RegisterClientCommand";
|
|
3
|
+
export * from "./StartDeviceAuthorizationCommand";
|
|
@@ -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,5 +1,5 @@
|
|
|
1
|
-
export * from "./SSOOIDC";
|
|
2
|
-
export * from "./SSOOIDCClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { SSOOIDCServiceException } from "./models/SSOOIDCServiceException";
|
|
1
|
+
export * from "./SSOOIDC";
|
|
2
|
+
export * from "./SSOOIDCClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { SSOOIDCServiceException } from "./models/SSOOIDCServiceException";
|
|
@@ -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 SSOOIDCServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|