@aws-sdk/client-sso-oidc 3.169.0 → 3.170.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 CHANGED
@@ -3,6 +3,14 @@
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-sso-oidc
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-sso-oidc
@@ -1,20 +1,58 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
3
- import { RegisterClientCommandInput, RegisterClientCommandOutput } from "./commands/RegisterClientCommand";
4
- import { StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput } from "./commands/StartDeviceAuthorizationCommand";
5
- import { SSOOIDCClient } from "./SSOOIDCClient";
6
-
7
- export declare class SSOOIDC extends SSOOIDCClient {
8
-
9
- createToken(args: CreateTokenCommandInput, options?: __HttpHandlerOptions): Promise<CreateTokenCommandOutput>;
10
- createToken(args: CreateTokenCommandInput, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
11
- createToken(args: CreateTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
12
-
13
- registerClient(args: RegisterClientCommandInput, options?: __HttpHandlerOptions): Promise<RegisterClientCommandOutput>;
14
- registerClient(args: RegisterClientCommandInput, cb: (err: any, data?: RegisterClientCommandOutput) => void): void;
15
- registerClient(args: RegisterClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterClientCommandOutput) => void): void;
16
-
17
- startDeviceAuthorization(args: StartDeviceAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<StartDeviceAuthorizationCommandOutput>;
18
- startDeviceAuthorization(args: StartDeviceAuthorizationCommandInput, cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void): void;
19
- startDeviceAuthorization(args: StartDeviceAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void): void;
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
+
16
+ export declare class SSOOIDC extends SSOOIDCClient {
17
+ createToken(
18
+ args: CreateTokenCommandInput,
19
+ options?: __HttpHandlerOptions
20
+ ): Promise<CreateTokenCommandOutput>;
21
+ createToken(
22
+ args: CreateTokenCommandInput,
23
+ cb: (err: any, data?: CreateTokenCommandOutput) => void
24
+ ): void;
25
+ createToken(
26
+ args: CreateTokenCommandInput,
27
+ options: __HttpHandlerOptions,
28
+ cb: (err: any, data?: CreateTokenCommandOutput) => void
29
+ ): void;
30
+
31
+ registerClient(
32
+ args: RegisterClientCommandInput,
33
+ options?: __HttpHandlerOptions
34
+ ): Promise<RegisterClientCommandOutput>;
35
+ registerClient(
36
+ args: RegisterClientCommandInput,
37
+ cb: (err: any, data?: RegisterClientCommandOutput) => void
38
+ ): void;
39
+ registerClient(
40
+ args: RegisterClientCommandInput,
41
+ options: __HttpHandlerOptions,
42
+ cb: (err: any, data?: RegisterClientCommandOutput) => void
43
+ ): void;
44
+
45
+ startDeviceAuthorization(
46
+ args: StartDeviceAuthorizationCommandInput,
47
+ options?: __HttpHandlerOptions
48
+ ): Promise<StartDeviceAuthorizationCommandOutput>;
49
+ startDeviceAuthorization(
50
+ args: StartDeviceAuthorizationCommandInput,
51
+ cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void
52
+ ): void;
53
+ startDeviceAuthorization(
54
+ args: StartDeviceAuthorizationCommandInput,
55
+ options: __HttpHandlerOptions,
56
+ cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void
57
+ ): void;
58
+ }
@@ -1,73 +1,138 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
5
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
6
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
7
- import { BodyLengthCalculator as __BodyLengthCalculator, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
- import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
9
- import { RegisterClientCommandInput, RegisterClientCommandOutput } from "./commands/RegisterClientCommand";
10
- import { StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput } from "./commands/StartDeviceAuthorizationCommand";
11
- export declare type ServiceInputTypes = CreateTokenCommandInput | RegisterClientCommandInput | StartDeviceAuthorizationCommandInput;
12
- export declare type ServiceOutputTypes = CreateTokenCommandOutput | RegisterClientCommandOutput | StartDeviceAuthorizationCommandOutput;
13
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
14
-
15
- requestHandler?: __HttpHandler;
16
-
17
- sha256?: __HashConstructor;
18
-
19
- urlParser?: __UrlParser;
20
-
21
- bodyLengthChecker?: __BodyLengthCalculator;
22
-
23
- streamCollector?: __StreamCollector;
24
-
25
- base64Decoder?: __Decoder;
26
-
27
- base64Encoder?: __Encoder;
28
-
29
- utf8Decoder?: __Decoder;
30
-
31
- utf8Encoder?: __Encoder;
32
-
33
- runtime?: string;
34
-
35
- disableHostPrefix?: boolean;
36
-
37
- maxAttempts?: number | __Provider<number>;
38
-
39
- retryMode?: string | __Provider<string>;
40
-
41
- logger?: __Logger;
42
-
43
- useDualstackEndpoint?: boolean | __Provider<boolean>;
44
-
45
- useFipsEndpoint?: boolean | __Provider<boolean>;
46
-
47
- serviceId?: string;
48
-
49
- region?: string | __Provider<string>;
50
-
51
- regionInfoProvider?: RegionInfoProvider;
52
-
53
- defaultUserAgentProvider?: Provider<__UserAgent>;
54
-
55
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
56
- }
57
- declare type SSOOIDCClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & UserAgentInputConfig;
58
-
59
- export interface SSOOIDCClientConfig extends SSOOIDCClientConfigType {
60
- }
61
- declare type SSOOIDCClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & UserAgentResolvedConfig;
62
-
63
- export interface SSOOIDCClientResolvedConfig extends SSOOIDCClientResolvedConfigType {
64
- }
65
-
66
- export declare class SSOOIDCClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig> {
67
-
68
- readonly config: SSOOIDCClientResolvedConfig;
69
- constructor(configuration: SSOOIDCClientConfig);
70
-
71
- destroy(): void;
72
- }
73
- export {};
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
+
64
+ sha256?: __HashConstructor;
65
+
66
+ urlParser?: __UrlParser;
67
+
68
+ bodyLengthChecker?: __BodyLengthCalculator;
69
+
70
+ streamCollector?: __StreamCollector;
71
+
72
+ base64Decoder?: __Decoder;
73
+
74
+ base64Encoder?: __Encoder;
75
+
76
+ utf8Decoder?: __Decoder;
77
+
78
+ utf8Encoder?: __Encoder;
79
+
80
+ runtime?: string;
81
+
82
+ disableHostPrefix?: boolean;
83
+
84
+ maxAttempts?: number | __Provider<number>;
85
+
86
+ retryMode?: string | __Provider<string>;
87
+
88
+ logger?: __Logger;
89
+
90
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
91
+
92
+ useFipsEndpoint?: boolean | __Provider<boolean>;
93
+
94
+ serviceId?: string;
95
+
96
+ region?: string | __Provider<string>;
97
+
98
+ regionInfoProvider?: RegionInfoProvider;
99
+
100
+ defaultUserAgentProvider?: Provider<__UserAgent>;
101
+
102
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
103
+ }
104
+ declare type SSOOIDCClientConfigType = Partial<
105
+ __SmithyConfiguration<__HttpHandlerOptions>
106
+ > &
107
+ ClientDefaults &
108
+ RegionInputConfig &
109
+ EndpointsInputConfig &
110
+ RetryInputConfig &
111
+ HostHeaderInputConfig &
112
+ UserAgentInputConfig;
113
+
114
+ export interface SSOOIDCClientConfig extends SSOOIDCClientConfigType {}
115
+ declare type SSOOIDCClientResolvedConfigType =
116
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
117
+ Required<ClientDefaults> &
118
+ RegionResolvedConfig &
119
+ EndpointsResolvedConfig &
120
+ RetryResolvedConfig &
121
+ HostHeaderResolvedConfig &
122
+ UserAgentResolvedConfig;
123
+
124
+ export interface SSOOIDCClientResolvedConfig
125
+ extends SSOOIDCClientResolvedConfigType {}
126
+
127
+ export declare class SSOOIDCClient extends __Client<
128
+ __HttpHandlerOptions,
129
+ ServiceInputTypes,
130
+ ServiceOutputTypes,
131
+ SSOOIDCClientResolvedConfig
132
+ > {
133
+ readonly config: SSOOIDCClientResolvedConfig;
134
+ constructor(configuration: SSOOIDCClientConfig);
135
+
136
+ destroy(): void;
137
+ }
138
+ export {};
@@ -1,17 +1,34 @@
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 { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
5
- export interface CreateTokenCommandInput extends CreateTokenRequest {
6
- }
7
- export interface CreateTokenCommandOutput extends CreateTokenResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateTokenCommand extends $Command<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig> {
11
- readonly input: CreateTokenCommandInput;
12
- constructor(input: CreateTokenCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOOIDCClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTokenCommandInput, CreateTokenCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
19
+ export declare class CreateTokenCommand extends $Command<
20
+ CreateTokenCommandInput,
21
+ CreateTokenCommandOutput,
22
+ SSOOIDCClientResolvedConfig
23
+ > {
24
+ readonly input: CreateTokenCommandInput;
25
+ constructor(input: CreateTokenCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SSOOIDCClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateTokenCommandInput, CreateTokenCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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 { RegisterClientRequest, RegisterClientResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
5
- export interface RegisterClientCommandInput extends RegisterClientRequest {
6
- }
7
- export interface RegisterClientCommandOutput extends RegisterClientResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RegisterClientCommand extends $Command<RegisterClientCommandInput, RegisterClientCommandOutput, SSOOIDCClientResolvedConfig> {
11
- readonly input: RegisterClientCommandInput;
12
- constructor(input: RegisterClientCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOOIDCClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterClientCommandInput, RegisterClientCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
22
+ export declare class RegisterClientCommand extends $Command<
23
+ RegisterClientCommandInput,
24
+ RegisterClientCommandOutput,
25
+ SSOOIDCClientResolvedConfig
26
+ > {
27
+ readonly input: RegisterClientCommandInput;
28
+ constructor(input: RegisterClientCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SSOOIDCClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<RegisterClientCommandInput, RegisterClientCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { StartDeviceAuthorizationRequest, StartDeviceAuthorizationResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
5
- export interface StartDeviceAuthorizationCommandInput extends StartDeviceAuthorizationRequest {
6
- }
7
- export interface StartDeviceAuthorizationCommandOutput extends StartDeviceAuthorizationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartDeviceAuthorizationCommand extends $Command<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput, SSOOIDCClientResolvedConfig> {
11
- readonly input: StartDeviceAuthorizationCommandInput;
12
- constructor(input: StartDeviceAuthorizationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOOIDCClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+
23
+ export declare class StartDeviceAuthorizationCommand extends $Command<
24
+ StartDeviceAuthorizationCommandInput,
25
+ StartDeviceAuthorizationCommandOutput,
26
+ SSOOIDCClientResolvedConfig
27
+ > {
28
+ readonly input: StartDeviceAuthorizationCommandInput;
29
+ constructor(input: StartDeviceAuthorizationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SSOOIDCClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ StartDeviceAuthorizationCommandInput,
37
+ StartDeviceAuthorizationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SSOOIDCServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class SSOOIDCServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";