@aws-sdk/client-sso 3.193.0 → 3.196.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/SSOClient.js +10 -7
  3. package/dist-cjs/commands/GetRoleCredentialsCommand.js +10 -0
  4. package/dist-cjs/commands/ListAccountRolesCommand.js +10 -0
  5. package/dist-cjs/commands/ListAccountsCommand.js +10 -0
  6. package/dist-cjs/commands/LogoutCommand.js +10 -0
  7. package/dist-cjs/endpoint/EndpointParameters.js +13 -0
  8. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  9. package/dist-cjs/endpoint/ruleset.js +318 -0
  10. package/dist-cjs/runtimeConfig.shared.js +3 -3
  11. package/dist-es/SSOClient.js +11 -8
  12. package/dist-es/commands/GetRoleCredentialsCommand.js +10 -0
  13. package/dist-es/commands/ListAccountRolesCommand.js +10 -0
  14. package/dist-es/commands/ListAccountsCommand.js +10 -0
  15. package/dist-es/commands/LogoutCommand.js +10 -0
  16. package/dist-es/endpoint/EndpointParameters.js +8 -0
  17. package/dist-es/endpoint/endpointResolver.js +8 -0
  18. package/dist-es/endpoint/ruleset.js +315 -0
  19. package/dist-es/runtimeConfig.shared.js +2 -2
  20. package/dist-types/SSOClient.d.ts +6 -9
  21. package/dist-types/commands/GetRoleCredentialsCommand.d.ts +2 -0
  22. package/dist-types/commands/ListAccountRolesCommand.d.ts +2 -0
  23. package/dist-types/commands/ListAccountsCommand.d.ts +2 -0
  24. package/dist-types/commands/LogoutCommand.d.ts +2 -0
  25. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  26. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  27. package/dist-types/endpoint/ruleset.d.ts +2 -0
  28. package/dist-types/runtimeConfig.browser.d.ts +4 -2
  29. package/dist-types/runtimeConfig.d.ts +4 -2
  30. package/dist-types/runtimeConfig.native.d.ts +4 -2
  31. package/dist-types/runtimeConfig.shared.d.ts +3 -1
  32. package/dist-types/ts3.4/SSOClient.d.ts +15 -8
  33. package/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +2 -0
  34. package/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +2 -0
  35. package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +2 -0
  36. package/dist-types/ts3.4/commands/LogoutCommand.d.ts +2 -0
  37. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
  38. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  39. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
  44. package/package.json +3 -1
  45. package/dist-cjs/endpoints.js +0 -322
  46. package/dist-es/endpoints.js +0 -318
  47. package/dist-types/endpoints.d.ts +0 -2
  48. package/dist-types/ts3.4/endpoints.d.ts +0 -2
@@ -0,0 +1,8 @@
1
+ export const resolveClientEndpointParameters = (options) => {
2
+ return {
3
+ ...options,
4
+ useDualstackEndpoint: options.useDualstackEndpoint ?? false,
5
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
6
+ defaultSigningName: "awsssoportal",
7
+ };
8
+ };
@@ -0,0 +1,8 @@
1
+ import { resolveEndpoint } from "@aws-sdk/util-endpoints";
2
+ import { ruleSet } from "./ruleset";
3
+ export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
+ return resolveEndpoint(ruleSet, {
5
+ endpointParams: endpointParams,
6
+ logger: context.logger,
7
+ });
8
+ };
@@ -0,0 +1,315 @@
1
+ export const ruleSet = {
2
+ version: "1.0",
3
+ parameters: {
4
+ Region: {
5
+ builtIn: "AWS::Region",
6
+ required: false,
7
+ documentation: "The AWS region used to dispatch the request.",
8
+ type: "String",
9
+ },
10
+ UseDualStack: {
11
+ builtIn: "AWS::UseDualStack",
12
+ required: true,
13
+ default: false,
14
+ documentation: "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
15
+ type: "Boolean",
16
+ },
17
+ UseFIPS: {
18
+ builtIn: "AWS::UseFIPS",
19
+ required: true,
20
+ default: false,
21
+ documentation: "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
22
+ type: "Boolean",
23
+ },
24
+ Endpoint: {
25
+ builtIn: "SDK::Endpoint",
26
+ required: false,
27
+ documentation: "Override the endpoint used to send this request",
28
+ type: "String",
29
+ },
30
+ },
31
+ rules: [
32
+ {
33
+ conditions: [
34
+ {
35
+ fn: "aws.partition",
36
+ argv: [
37
+ {
38
+ ref: "Region",
39
+ },
40
+ ],
41
+ assign: "PartitionResult",
42
+ },
43
+ ],
44
+ type: "tree",
45
+ rules: [
46
+ {
47
+ conditions: [
48
+ {
49
+ fn: "isSet",
50
+ argv: [
51
+ {
52
+ ref: "Endpoint",
53
+ },
54
+ ],
55
+ },
56
+ {
57
+ fn: "parseURL",
58
+ argv: [
59
+ {
60
+ ref: "Endpoint",
61
+ },
62
+ ],
63
+ assign: "url",
64
+ },
65
+ ],
66
+ type: "tree",
67
+ rules: [
68
+ {
69
+ conditions: [
70
+ {
71
+ fn: "booleanEquals",
72
+ argv: [
73
+ {
74
+ ref: "UseFIPS",
75
+ },
76
+ true,
77
+ ],
78
+ },
79
+ ],
80
+ error: "Invalid Configuration: FIPS and custom endpoint are not supported",
81
+ type: "error",
82
+ },
83
+ {
84
+ conditions: [],
85
+ type: "tree",
86
+ rules: [
87
+ {
88
+ conditions: [
89
+ {
90
+ fn: "booleanEquals",
91
+ argv: [
92
+ {
93
+ ref: "UseDualStack",
94
+ },
95
+ true,
96
+ ],
97
+ },
98
+ ],
99
+ error: "Invalid Configuration: Dualstack and custom endpoint are not supported",
100
+ type: "error",
101
+ },
102
+ {
103
+ conditions: [],
104
+ endpoint: {
105
+ url: {
106
+ ref: "Endpoint",
107
+ },
108
+ properties: {},
109
+ headers: {},
110
+ },
111
+ type: "endpoint",
112
+ },
113
+ ],
114
+ },
115
+ ],
116
+ },
117
+ {
118
+ conditions: [
119
+ {
120
+ fn: "booleanEquals",
121
+ argv: [
122
+ {
123
+ ref: "UseFIPS",
124
+ },
125
+ true,
126
+ ],
127
+ },
128
+ {
129
+ fn: "booleanEquals",
130
+ argv: [
131
+ {
132
+ ref: "UseDualStack",
133
+ },
134
+ true,
135
+ ],
136
+ },
137
+ ],
138
+ type: "tree",
139
+ rules: [
140
+ {
141
+ conditions: [
142
+ {
143
+ fn: "booleanEquals",
144
+ argv: [
145
+ true,
146
+ {
147
+ fn: "getAttr",
148
+ argv: [
149
+ {
150
+ ref: "PartitionResult",
151
+ },
152
+ "supportsFIPS",
153
+ ],
154
+ },
155
+ ],
156
+ },
157
+ {
158
+ fn: "booleanEquals",
159
+ argv: [
160
+ true,
161
+ {
162
+ fn: "getAttr",
163
+ argv: [
164
+ {
165
+ ref: "PartitionResult",
166
+ },
167
+ "supportsDualStack",
168
+ ],
169
+ },
170
+ ],
171
+ },
172
+ ],
173
+ type: "tree",
174
+ rules: [
175
+ {
176
+ conditions: [],
177
+ endpoint: {
178
+ url: "https://portal.sso-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
179
+ properties: {},
180
+ headers: {},
181
+ },
182
+ type: "endpoint",
183
+ },
184
+ ],
185
+ },
186
+ {
187
+ conditions: [],
188
+ error: "FIPS and DualStack are enabled, but this partition does not support one or both",
189
+ type: "error",
190
+ },
191
+ ],
192
+ },
193
+ {
194
+ conditions: [
195
+ {
196
+ fn: "booleanEquals",
197
+ argv: [
198
+ {
199
+ ref: "UseFIPS",
200
+ },
201
+ true,
202
+ ],
203
+ },
204
+ ],
205
+ type: "tree",
206
+ rules: [
207
+ {
208
+ conditions: [
209
+ {
210
+ fn: "booleanEquals",
211
+ argv: [
212
+ true,
213
+ {
214
+ fn: "getAttr",
215
+ argv: [
216
+ {
217
+ ref: "PartitionResult",
218
+ },
219
+ "supportsFIPS",
220
+ ],
221
+ },
222
+ ],
223
+ },
224
+ ],
225
+ type: "tree",
226
+ rules: [
227
+ {
228
+ conditions: [],
229
+ type: "tree",
230
+ rules: [
231
+ {
232
+ conditions: [],
233
+ endpoint: {
234
+ url: "https://portal.sso-fips.{Region}.{PartitionResult#dnsSuffix}",
235
+ properties: {},
236
+ headers: {},
237
+ },
238
+ type: "endpoint",
239
+ },
240
+ ],
241
+ },
242
+ ],
243
+ },
244
+ {
245
+ conditions: [],
246
+ error: "FIPS is enabled but this partition does not support FIPS",
247
+ type: "error",
248
+ },
249
+ ],
250
+ },
251
+ {
252
+ conditions: [
253
+ {
254
+ fn: "booleanEquals",
255
+ argv: [
256
+ {
257
+ ref: "UseDualStack",
258
+ },
259
+ true,
260
+ ],
261
+ },
262
+ ],
263
+ type: "tree",
264
+ rules: [
265
+ {
266
+ conditions: [
267
+ {
268
+ fn: "booleanEquals",
269
+ argv: [
270
+ true,
271
+ {
272
+ fn: "getAttr",
273
+ argv: [
274
+ {
275
+ ref: "PartitionResult",
276
+ },
277
+ "supportsDualStack",
278
+ ],
279
+ },
280
+ ],
281
+ },
282
+ ],
283
+ type: "tree",
284
+ rules: [
285
+ {
286
+ conditions: [],
287
+ endpoint: {
288
+ url: "https://portal.sso.{Region}.{PartitionResult#dualStackDnsSuffix}",
289
+ properties: {},
290
+ headers: {},
291
+ },
292
+ type: "endpoint",
293
+ },
294
+ ],
295
+ },
296
+ {
297
+ conditions: [],
298
+ error: "DualStack is enabled but this partition does not support DualStack",
299
+ type: "error",
300
+ },
301
+ ],
302
+ },
303
+ {
304
+ conditions: [],
305
+ endpoint: {
306
+ url: "https://portal.sso.{Region}.{PartitionResult#dnsSuffix}",
307
+ properties: {},
308
+ headers: {},
309
+ },
310
+ type: "endpoint",
311
+ },
312
+ ],
313
+ },
314
+ ],
315
+ };
@@ -1,10 +1,10 @@
1
1
  import { parseUrl } from "@aws-sdk/url-parser";
2
- import { defaultRegionInfoProvider } from "./endpoints";
2
+ import { defaultEndpointResolver } from "./endpoint/endpointResolver";
3
3
  export const getRuntimeConfig = (config) => ({
4
4
  apiVersion: "2019-06-10",
5
5
  disableHostPrefix: config?.disableHostPrefix ?? false,
6
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
6
7
  logger: config?.logger ?? {},
7
- regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider,
8
8
  serviceId: config?.serviceId ?? "SSO",
9
9
  urlParser: config?.urlParser ?? parseUrl,
10
10
  });
@@ -1,14 +1,16 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
1
+ import { RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@aws-sdk/middleware-endpoint";
2
3
  import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
4
  import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
5
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
6
7
  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 { BodyLengthCalculator as __BodyLengthCalculator, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
9
  import { GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput } from "./commands/GetRoleCredentialsCommand";
9
10
  import { ListAccountRolesCommandInput, ListAccountRolesCommandOutput } from "./commands/ListAccountRolesCommand";
10
11
  import { ListAccountsCommandInput, ListAccountsCommandOutput } from "./commands/ListAccountsCommand";
11
12
  import { LogoutCommandInput, LogoutCommandOutput } from "./commands/LogoutCommand";
13
+ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
12
14
  export declare type ServiceInputTypes = GetRoleCredentialsCommandInput | ListAccountRolesCommandInput | ListAccountsCommandInput | LogoutCommandInput;
13
15
  export declare type ServiceOutputTypes = GetRoleCredentialsCommandOutput | ListAccountRolesCommandOutput | ListAccountsCommandOutput | LogoutCommandOutput;
14
16
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
@@ -96,11 +98,6 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
96
98
  * The AWS region to which this client will send requests
97
99
  */
98
100
  region?: string | __Provider<string>;
99
- /**
100
- * Fetch related hostname, signing name or signing region with given region.
101
- * @internal
102
- */
103
- regionInfoProvider?: RegionInfoProvider;
104
101
  /**
105
102
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
106
103
  * @internal
@@ -111,13 +108,13 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
111
108
  */
112
109
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
113
110
  }
114
- declare type SSOClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & UserAgentInputConfig;
111
+ declare type SSOClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
115
112
  /**
116
113
  * The configuration interface of SSOClient class constructor that set the region, credentials and other options.
117
114
  */
118
115
  export interface SSOClientConfig extends SSOClientConfigType {
119
116
  }
120
- declare type SSOClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & UserAgentResolvedConfig;
117
+ declare type SSOClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
121
118
  /**
122
119
  * The resolved configuration interface of SSOClient class. This is resolved and normalized from the {@link SSOClientConfig | constructor configuration interface}.
123
120
  */
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { GetRoleCredentialsRequest, GetRoleCredentialsResponse } from "../models/models_0";
@@ -26,6 +27,7 @@ export interface GetRoleCredentialsCommandOutput extends GetRoleCredentialsRespo
26
27
  */
27
28
  export declare class GetRoleCredentialsCommand extends $Command<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, SSOClientResolvedConfig> {
28
29
  readonly input: GetRoleCredentialsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: GetRoleCredentialsCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ListAccountRolesRequest, ListAccountRolesResponse } from "../models/models_0";
@@ -25,6 +26,7 @@ export interface ListAccountRolesCommandOutput extends ListAccountRolesResponse,
25
26
  */
26
27
  export declare class ListAccountRolesCommand extends $Command<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, SSOClientResolvedConfig> {
27
28
  readonly input: ListAccountRolesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListAccountRolesCommandInput);
29
31
  /**
30
32
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0";
@@ -27,6 +28,7 @@ export interface ListAccountsCommandOutput extends ListAccountsResponse, __Metad
27
28
  */
28
29
  export declare class ListAccountsCommand extends $Command<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig> {
29
30
  readonly input: ListAccountsCommandInput;
31
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
32
  constructor(input: ListAccountsCommandInput);
31
33
  /**
32
34
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { LogoutRequest } from "../models/models_0";
@@ -40,6 +41,7 @@ export interface LogoutCommandOutput extends __MetadataBearer {
40
41
  */
41
42
  export declare class LogoutCommand extends $Command<LogoutCommandInput, LogoutCommandOutput, SSOClientResolvedConfig> {
42
43
  readonly input: LogoutCommandInput;
44
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
43
45
  constructor(input: LogoutCommandInput);
44
46
  /**
45
47
  * @internal
@@ -0,0 +1,19 @@
1
+ import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
2
+ export interface ClientInputEndpointParameters {
3
+ region?: string | Provider<string>;
4
+ useDualstackEndpoint?: boolean | Provider<boolean>;
5
+ useFipsEndpoint?: boolean | Provider<boolean>;
6
+ endpoint?: string | Provider<string>;
7
+ }
8
+ export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
9
+ defaultSigningName: string;
10
+ };
11
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export interface EndpointParameters extends __EndpointParameters {
15
+ Region?: string;
16
+ UseDualStack?: boolean;
17
+ UseFIPS?: boolean;
18
+ Endpoint?: string;
19
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -25,8 +25,10 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
25
25
  disableHostPrefix: boolean;
26
26
  logger: import("@aws-sdk/types").Logger;
27
27
  serviceId: string;
28
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
30
32
  tls?: boolean | undefined;
31
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
34
  customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
@@ -25,8 +25,10 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
25
25
  disableHostPrefix: boolean;
26
26
  logger: import("@aws-sdk/types").Logger;
27
27
  serviceId: string;
28
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
30
32
  tls?: boolean | undefined;
31
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
34
  customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
@@ -22,10 +22,12 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
22
22
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
23
  serviceId: string;
24
24
  region: string | import("@aws-sdk/types").Provider<any>;
25
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
26
25
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
27
26
  defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
+ endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
28
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
29
+ logger?: import("@aws-sdk/types").Logger | undefined;
30
+ }) => import("@aws-sdk/types").EndpointV2;
29
31
  tls?: boolean | undefined;
30
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
33
  customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
@@ -6,8 +6,10 @@ import { SSOClientConfig } from "./SSOClient";
6
6
  export declare const getRuntimeConfig: (config: SSOClientConfig) => {
7
7
  apiVersion: string;
8
8
  disableHostPrefix: boolean;
9
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
10
+ logger?: __Logger | undefined;
11
+ }) => import("@aws-sdk/types").EndpointV2;
9
12
  logger: __Logger;
10
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
11
13
  serviceId: string;
12
14
  urlParser: import("@aws-sdk/types").UrlParser;
13
15
  };
@@ -1,9 +1,11 @@
1
1
  import {
2
- EndpointsInputConfig,
3
- EndpointsResolvedConfig,
4
2
  RegionInputConfig,
5
3
  RegionResolvedConfig,
6
4
  } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
7
9
  import {
8
10
  HostHeaderInputConfig,
9
11
  HostHeaderResolvedConfig,
@@ -32,7 +34,6 @@ import {
32
34
  Logger as __Logger,
33
35
  Provider as __Provider,
34
36
  Provider,
35
- RegionInfoProvider,
36
37
  StreamCollector as __StreamCollector,
37
38
  UrlParser as __UrlParser,
38
39
  UserAgent as __UserAgent,
@@ -53,6 +54,11 @@ import {
53
54
  LogoutCommandInput,
54
55
  LogoutCommandOutput,
55
56
  } from "./commands/LogoutCommand";
57
+ import {
58
+ ClientInputEndpointParameters,
59
+ ClientResolvedEndpointParameters,
60
+ EndpointParameters,
61
+ } from "./endpoint/EndpointParameters";
56
62
  export declare type ServiceInputTypes =
57
63
  | GetRoleCredentialsCommandInput
58
64
  | ListAccountRolesCommandInput
@@ -83,7 +89,6 @@ export interface ClientDefaults
83
89
  useFipsEndpoint?: boolean | __Provider<boolean>;
84
90
  serviceId?: string;
85
91
  region?: string | __Provider<string>;
86
- regionInfoProvider?: RegionInfoProvider;
87
92
  defaultUserAgentProvider?: Provider<__UserAgent>;
88
93
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
89
94
  }
@@ -92,19 +97,21 @@ declare type SSOClientConfigType = Partial<
92
97
  > &
93
98
  ClientDefaults &
94
99
  RegionInputConfig &
95
- EndpointsInputConfig &
100
+ EndpointInputConfig<EndpointParameters> &
96
101
  RetryInputConfig &
97
102
  HostHeaderInputConfig &
98
- UserAgentInputConfig;
103
+ UserAgentInputConfig &
104
+ ClientInputEndpointParameters;
99
105
  export interface SSOClientConfig extends SSOClientConfigType {}
100
106
  declare type SSOClientResolvedConfigType =
101
107
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
102
108
  Required<ClientDefaults> &
103
109
  RegionResolvedConfig &
104
- EndpointsResolvedConfig &
110
+ EndpointResolvedConfig<EndpointParameters> &
105
111
  RetryResolvedConfig &
106
112
  HostHeaderResolvedConfig &
107
- UserAgentResolvedConfig;
113
+ UserAgentResolvedConfig &
114
+ ClientResolvedEndpointParameters;
108
115
  export interface SSOClientResolvedConfig extends SSOClientResolvedConfigType {}
109
116
  export declare class SSOClient extends __Client<
110
117
  __HttpHandlerOptions,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class GetRoleCredentialsCommand extends $Command<
25
26
  SSOClientResolvedConfig
26
27
  > {
27
28
  readonly input: GetRoleCredentialsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: GetRoleCredentialsCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class ListAccountRolesCommand extends $Command<
24
25
  SSOClientResolvedConfig
25
26
  > {
26
27
  readonly input: ListAccountRolesCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: ListAccountRolesCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListAccountsCommand extends $Command<
21
22
  SSOClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListAccountsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListAccountsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,