@aws-sdk/client-sso-admin 3.1075.0 → 3.1077.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/dist-cjs/index.js +2350 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +3 -2
- package/dist-types/commands/ListInstancesCommand.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +36 -26
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SSOAdminServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -107
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1973
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
3
2
|
import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
|
|
4
3
|
import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
5
4
|
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
@@ -23,7 +22,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
22
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
23
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
24
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
-
sha256: config?.sha256 ?? Sha256,
|
|
27
25
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
26
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
27
|
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -5,7 +5,7 @@ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credentia
|
|
|
5
5
|
import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
6
6
|
import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
7
7
|
import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
|
|
8
|
-
import { calculateBodyLength
|
|
8
|
+
import { calculateBodyLength } from "@smithy/core/serde";
|
|
9
9
|
import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
|
|
10
10
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
11
11
|
export const getRuntimeConfig = (config) => {
|
|
@@ -35,7 +35,6 @@ export const getRuntimeConfig = (config) => {
|
|
|
35
35
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
36
36
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
37
37
|
}, config),
|
|
38
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
39
38
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
40
39
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
41
40
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
2
1
|
import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
|
|
3
2
|
export const getRuntimeConfig = (config) => {
|
|
4
3
|
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
|
|
|
6
5
|
...browserDefaults,
|
|
7
6
|
...config,
|
|
8
7
|
runtime: "react-native",
|
|
9
|
-
sha256: config?.sha256 ?? Sha256,
|
|
10
8
|
};
|
|
11
9
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
3
|
+
import { Sha256 } from "@smithy/core/checksum";
|
|
3
4
|
import { NoOpLogger } from "@smithy/core/client";
|
|
4
5
|
import { parseUrl } from "@smithy/core/protocols";
|
|
5
6
|
import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
|
|
@@ -31,6 +32,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
31
32
|
serviceTarget: "SWBExternalService",
|
|
32
33
|
},
|
|
33
34
|
serviceId: config?.serviceId ?? "SSO Admin",
|
|
35
|
+
sha256: config?.sha256 ?? Sha256,
|
|
34
36
|
urlParser: config?.urlParser ?? parseUrl,
|
|
35
37
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
38
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -321,6 +321,7 @@ const _PPS = "ProvisionPermissionSet";
|
|
|
321
321
|
const _PPSR = "ProvisionPermissionSetRequest";
|
|
322
322
|
const _PPSRI = "ProvisionPermissionSetRequestId";
|
|
323
323
|
const _PPSRr = "ProvisionPermissionSetResponse";
|
|
324
|
+
const _PR = "PrimaryRegion";
|
|
324
325
|
const _PS = "PermissionSet";
|
|
325
326
|
const _PSA = "PermissionSetArn";
|
|
326
327
|
const _PSPS = "PermissionSetProvisioningStatus";
|
|
@@ -970,8 +971,8 @@ export var InstanceAccessControlAttributeConfiguration$ = [3, n0, _IACAC,
|
|
|
970
971
|
];
|
|
971
972
|
export var InstanceMetadata$ = [3, n0, _IM,
|
|
972
973
|
0,
|
|
973
|
-
[_IA, _ISI, _OAI, _N, _CD, _St, _SR],
|
|
974
|
-
[0, 0, 0, 0, 4, 0, 0]
|
|
974
|
+
[_IA, _ISI, _OAI, _N, _CD, _St, _SR, _PR, _Re],
|
|
975
|
+
[0, 0, 0, 0, 4, 0, 0, 0, () => RegionMetadataList]
|
|
975
976
|
];
|
|
976
977
|
export var JwtBearerGrant$ = [3, n0, _JBG,
|
|
977
978
|
0,
|
|
@@ -54,6 +54,15 @@ declare const ListInstancesCommand_base: {
|
|
|
54
54
|
* // CreatedDate: new Date("TIMESTAMP"),
|
|
55
55
|
* // Status: "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "DELETE_IN_PROGRESS" || "ACTIVE",
|
|
56
56
|
* // StatusReason: "STRING_VALUE",
|
|
57
|
+
* // PrimaryRegion: "STRING_VALUE",
|
|
58
|
+
* // Regions: [ // RegionMetadataList
|
|
59
|
+
* // { // RegionMetadata
|
|
60
|
+
* // RegionName: "STRING_VALUE",
|
|
61
|
+
* // Status: "ACTIVE" || "ADDING" || "REMOVING",
|
|
62
|
+
* // AddedDate: new Date("TIMESTAMP"),
|
|
63
|
+
* // IsPrimaryRegion: true || false,
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
57
66
|
* // },
|
|
58
67
|
* // ],
|
|
59
68
|
* // NextToken: "STRING_VALUE",
|
|
@@ -2190,6 +2190,32 @@ export interface GetPermissionsBoundaryForPermissionSetResponse {
|
|
|
2190
2190
|
*/
|
|
2191
2191
|
PermissionsBoundary?: PermissionsBoundary | undefined;
|
|
2192
2192
|
}
|
|
2193
|
+
/**
|
|
2194
|
+
* <p>Contains information about an enabled Region of an IAM Identity Center instance, including the Region name, status, date added, and whether it is the primary Region.</p>
|
|
2195
|
+
* @public
|
|
2196
|
+
*/
|
|
2197
|
+
export interface RegionMetadata {
|
|
2198
|
+
/**
|
|
2199
|
+
* <p>The Amazon Web Services Region name.</p>
|
|
2200
|
+
* @public
|
|
2201
|
+
*/
|
|
2202
|
+
RegionName?: string | undefined;
|
|
2203
|
+
/**
|
|
2204
|
+
* <p>The current status of the Region. Valid values are ACTIVE (Region is operational), ADDING (Region extension workflow is in progress), or REMOVING (Region removal workflow is in progress).</p>
|
|
2205
|
+
* @public
|
|
2206
|
+
*/
|
|
2207
|
+
Status?: RegionStatus | undefined;
|
|
2208
|
+
/**
|
|
2209
|
+
* <p>The timestamp when the Region was added to the IAM Identity Center instance. For the primary Region, this is the instance creation time.</p>
|
|
2210
|
+
* @public
|
|
2211
|
+
*/
|
|
2212
|
+
AddedDate?: Date | undefined;
|
|
2213
|
+
/**
|
|
2214
|
+
* <p>Indicates whether this is the primary Region where the IAM Identity Center instance was originally enabled. The primary Region cannot be removed.</p>
|
|
2215
|
+
* @public
|
|
2216
|
+
*/
|
|
2217
|
+
IsPrimaryRegion?: boolean | undefined;
|
|
2218
|
+
}
|
|
2193
2219
|
/**
|
|
2194
2220
|
* <p>Provides information about the IAM Identity Center instance.</p>
|
|
2195
2221
|
* @public
|
|
@@ -2230,6 +2256,16 @@ export interface InstanceMetadata {
|
|
|
2230
2256
|
* @public
|
|
2231
2257
|
*/
|
|
2232
2258
|
StatusReason?: string | undefined;
|
|
2259
|
+
/**
|
|
2260
|
+
* <p>The primary Region where the IAM Identity Center instance was originally enabled. The primary Region cannot be removed.</p>
|
|
2261
|
+
* @public
|
|
2262
|
+
*/
|
|
2263
|
+
PrimaryRegion?: string | undefined;
|
|
2264
|
+
/**
|
|
2265
|
+
* <p>The list of Regions enabled in the IAM Identity Center instance, including Regions with ACTIVE, ADDING, or REMOVING status.</p>
|
|
2266
|
+
* @public
|
|
2267
|
+
*/
|
|
2268
|
+
Regions?: RegionMetadata[] | undefined;
|
|
2233
2269
|
}
|
|
2234
2270
|
/**
|
|
2235
2271
|
* <p>Filters the operation status list based on the passed attribute value.</p>
|
|
@@ -2926,32 +2962,6 @@ export interface ListRegionsRequest {
|
|
|
2926
2962
|
*/
|
|
2927
2963
|
NextToken?: string | undefined;
|
|
2928
2964
|
}
|
|
2929
|
-
/**
|
|
2930
|
-
* <p>Contains information about an enabled Region of an IAM Identity Center instance, including the Region name, status, date added, and whether it is the primary Region.</p>
|
|
2931
|
-
* @public
|
|
2932
|
-
*/
|
|
2933
|
-
export interface RegionMetadata {
|
|
2934
|
-
/**
|
|
2935
|
-
* <p>The Amazon Web Services Region name.</p>
|
|
2936
|
-
* @public
|
|
2937
|
-
*/
|
|
2938
|
-
RegionName?: string | undefined;
|
|
2939
|
-
/**
|
|
2940
|
-
* <p>The current status of the Region. Valid values are ACTIVE (Region is operational), ADDING (Region extension workflow is in progress), or REMOVING (Region removal workflow is in progress).</p>
|
|
2941
|
-
* @public
|
|
2942
|
-
*/
|
|
2943
|
-
Status?: RegionStatus | undefined;
|
|
2944
|
-
/**
|
|
2945
|
-
* <p>The timestamp when the Region was added to the IAM Identity Center instance. For the primary Region, this is the instance creation time.</p>
|
|
2946
|
-
* @public
|
|
2947
|
-
*/
|
|
2948
|
-
AddedDate?: Date | undefined;
|
|
2949
|
-
/**
|
|
2950
|
-
* <p>Indicates whether this is the primary Region where the IAM Identity Center instance was originally enabled. The primary Region cannot be removed.</p>
|
|
2951
|
-
* @public
|
|
2952
|
-
*/
|
|
2953
|
-
IsPrimaryRegion?: boolean | undefined;
|
|
2954
|
-
}
|
|
2955
2965
|
/**
|
|
2956
2966
|
* @public
|
|
2957
2967
|
*/
|
|
@@ -13,8 +13,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
|
|
17
|
-
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
17
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
18
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
19
|
cacheMiddleware?: boolean | undefined;
|
|
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
24
23
|
[setting: string]: unknown;
|
|
25
24
|
};
|
|
26
25
|
apiVersion: string;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
29
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -14,8 +14,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
14
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
15
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
16
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
-
|
|
18
|
-
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
20
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
26
25
|
[setting: string]: unknown;
|
|
27
26
|
};
|
|
28
27
|
apiVersion: string;
|
|
28
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
29
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
30
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -4,7 +4,6 @@ import type { SSOAdminClientConfig } from "./SSOAdminClient";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
8
7
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
8
|
cacheMiddleware?: boolean;
|
|
10
9
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
@@ -13,9 +12,10 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
13
12
|
[setting: string]: unknown;
|
|
14
13
|
};
|
|
15
14
|
apiVersion: string;
|
|
15
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
16
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: import("
|
|
18
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
19
|
base64Decoder: import("@smithy/types").Decoder;
|
|
20
20
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
21
21
|
defaultNamespace?: string;
|
|
22
22
|
};
|
|
23
23
|
serviceId: string;
|
|
24
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
27
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
@@ -629,6 +629,12 @@ export interface PermissionsBoundary {
|
|
|
629
629
|
export interface GetPermissionsBoundaryForPermissionSetResponse {
|
|
630
630
|
PermissionsBoundary?: PermissionsBoundary | undefined;
|
|
631
631
|
}
|
|
632
|
+
export interface RegionMetadata {
|
|
633
|
+
RegionName?: string | undefined;
|
|
634
|
+
Status?: RegionStatus | undefined;
|
|
635
|
+
AddedDate?: Date | undefined;
|
|
636
|
+
IsPrimaryRegion?: boolean | undefined;
|
|
637
|
+
}
|
|
632
638
|
export interface InstanceMetadata {
|
|
633
639
|
InstanceArn?: string | undefined;
|
|
634
640
|
IdentityStoreId?: string | undefined;
|
|
@@ -637,6 +643,8 @@ export interface InstanceMetadata {
|
|
|
637
643
|
CreatedDate?: Date | undefined;
|
|
638
644
|
Status?: InstanceStatus | undefined;
|
|
639
645
|
StatusReason?: string | undefined;
|
|
646
|
+
PrimaryRegion?: string | undefined;
|
|
647
|
+
Regions?: RegionMetadata[] | undefined;
|
|
640
648
|
}
|
|
641
649
|
export interface OperationStatusFilter {
|
|
642
650
|
Status?: StatusValues | undefined;
|
|
@@ -820,12 +828,6 @@ export interface ListRegionsRequest {
|
|
|
820
828
|
MaxResults?: number | undefined;
|
|
821
829
|
NextToken?: string | undefined;
|
|
822
830
|
}
|
|
823
|
-
export interface RegionMetadata {
|
|
824
|
-
RegionName?: string | undefined;
|
|
825
|
-
Status?: RegionStatus | undefined;
|
|
826
|
-
AddedDate?: Date | undefined;
|
|
827
|
-
IsPrimaryRegion?: boolean | undefined;
|
|
828
|
-
}
|
|
829
831
|
export interface ListRegionsResponse {
|
|
830
832
|
Regions?: RegionMetadata[] | undefined;
|
|
831
833
|
NextToken?: string | undefined;
|
|
@@ -20,8 +20,13 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
20
20
|
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
21
|
| RequestHandler;
|
|
22
22
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
streamCollector: (
|
|
24
|
+
stream:
|
|
25
|
+
| import("stream").Readable
|
|
26
|
+
| import("stream/web").ReadableStream
|
|
27
|
+
| ReadableStream
|
|
28
|
+
| Blob
|
|
29
|
+
) => Promise<Uint8Array>;
|
|
25
30
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
31
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
32
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
@@ -36,6 +41,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
36
41
|
[setting: string]: unknown;
|
|
37
42
|
};
|
|
38
43
|
apiVersion: string;
|
|
44
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
45
|
urlParser: import("@smithy/types").UrlParser;
|
|
40
46
|
base64Decoder: import("@smithy/types").Decoder;
|
|
41
47
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -21,8 +21,13 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
21
21
|
| RequestHandler
|
|
22
22
|
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
23
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
streamCollector: (
|
|
25
|
+
stream:
|
|
26
|
+
| import("stream").Readable
|
|
27
|
+
| import("stream/web").ReadableStream
|
|
28
|
+
| ReadableStream
|
|
29
|
+
| Blob
|
|
30
|
+
) => Promise<Uint8Array>;
|
|
26
31
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
32
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
33
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -36,6 +41,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
36
41
|
[setting: string]: unknown;
|
|
37
42
|
};
|
|
38
43
|
apiVersion: string;
|
|
44
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
45
|
urlParser: import("@smithy/types").UrlParser;
|
|
40
46
|
base64Decoder: import("@smithy/types").Decoder;
|
|
41
47
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { SSOAdminClientConfig } from "./SSOAdminClient";
|
|
2
2
|
export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
3
3
|
runtime: string;
|
|
4
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
5
4
|
requestHandler:
|
|
6
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
6
|
| import("@smithy/types").FetchHttpHandlerOptions
|
|
@@ -18,9 +17,16 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
18
17
|
[setting: string]: unknown;
|
|
19
18
|
};
|
|
20
19
|
apiVersion: string;
|
|
20
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
-
streamCollector:
|
|
23
|
+
streamCollector: (
|
|
24
|
+
stream:
|
|
25
|
+
| import("stream").Readable
|
|
26
|
+
| import("stream/web").ReadableStream
|
|
27
|
+
| ReadableStream
|
|
28
|
+
| Blob
|
|
29
|
+
) => Promise<Uint8Array>;
|
|
24
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
25
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
32
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -24,6 +24,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
24
24
|
defaultNamespace?: string;
|
|
25
25
|
};
|
|
26
26
|
serviceId: string;
|
|
27
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
28
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
30
|
utf8Encoder: (input: Uint8Array | string) => string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso-admin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Admin Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1077.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,15 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-
|
|
23
|
-
"@aws-
|
|
24
|
-
"@aws-sdk/
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
27
|
-
"@smithy/
|
|
28
|
-
"@smithy/
|
|
29
|
-
"@smithy/node-http-handler": "^4.7.6",
|
|
30
|
-
"@smithy/types": "^4.14.3",
|
|
22
|
+
"@aws-sdk/core": "^3.974.25",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.60",
|
|
24
|
+
"@aws-sdk/types": "^3.973.14",
|
|
25
|
+
"@smithy/core": "^3.28.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.1",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.1",
|
|
28
|
+
"@smithy/types": "^4.15.0",
|
|
31
29
|
"tslib": "^2.6.2"
|
|
32
30
|
},
|
|
33
31
|
"devDependencies": {
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
-
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
3
|
-
exports.defaultSSOAdminHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
|
-
return {
|
|
5
|
-
operation: getSmithyContext(context).operation,
|
|
6
|
-
region: await normalizeProvider(config.region)() || (() => {
|
|
7
|
-
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
8
|
-
})(),
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
12
|
-
return {
|
|
13
|
-
schemeId: "aws.auth#sigv4",
|
|
14
|
-
signingProperties: {
|
|
15
|
-
name: "sso",
|
|
16
|
-
region: authParameters.region,
|
|
17
|
-
},
|
|
18
|
-
propertiesExtractor: (config, context) => ({
|
|
19
|
-
signingProperties: {
|
|
20
|
-
config,
|
|
21
|
-
context,
|
|
22
|
-
},
|
|
23
|
-
}),
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
exports.defaultSSOAdminHttpAuthSchemeProvider = (authParameters) => {
|
|
27
|
-
const options = [];
|
|
28
|
-
switch (authParameters.operation) {
|
|
29
|
-
default: {
|
|
30
|
-
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
return options;
|
|
34
|
-
};
|
|
35
|
-
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
36
|
-
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
37
|
-
return Object.assign(config_0, {
|
|
38
|
-
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
39
|
-
});
|
|
40
|
-
};
|
package/dist-cjs/endpoint/bdd.js
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
|
|
2
|
-
const k = "ref";
|
|
3
|
-
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
4
|
-
const _data = {
|
|
5
|
-
conditions: [
|
|
6
|
-
[c, [g]],
|
|
7
|
-
[c, j],
|
|
8
|
-
["aws.partition", j, d],
|
|
9
|
-
[e, [{ [k]: "UseFIPS" }, b]],
|
|
10
|
-
[e, [{ [k]: "UseDualStack" }, b]],
|
|
11
|
-
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
12
|
-
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
13
|
-
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
14
|
-
],
|
|
15
|
-
results: [
|
|
16
|
-
[a],
|
|
17
|
-
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
18
|
-
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
19
|
-
[g, i],
|
|
20
|
-
["https://sso-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
21
|
-
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
22
|
-
["https://sso.{Region}.amazonaws.com", i],
|
|
23
|
-
["https://sso-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
24
|
-
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
25
|
-
["https://sso.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
26
|
-
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
27
|
-
["https://sso.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
28
|
-
[a, "Invalid Configuration: Missing Region"]
|
|
29
|
-
]
|
|
30
|
-
};
|
|
31
|
-
const root = 2;
|
|
32
|
-
const r = 100_000_000;
|
|
33
|
-
const nodes = new Int32Array([
|
|
34
|
-
-1, 1, -1,
|
|
35
|
-
0, 13, 3,
|
|
36
|
-
1, 4, r + 12,
|
|
37
|
-
2, 5, r + 12,
|
|
38
|
-
3, 8, 6,
|
|
39
|
-
4, 7, r + 11,
|
|
40
|
-
5, r + 9, r + 10,
|
|
41
|
-
4, 11, 9,
|
|
42
|
-
6, 10, r + 8,
|
|
43
|
-
7, r + 6, r + 7,
|
|
44
|
-
5, 12, r + 5,
|
|
45
|
-
6, r + 4, r + 5,
|
|
46
|
-
3, r + 1, 14,
|
|
47
|
-
4, r + 2, r + 3,
|
|
48
|
-
]);
|
|
49
|
-
exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
const { awsEndpointFunctions } = require("@aws-sdk/core/client");
|
|
2
|
-
const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
|
|
3
|
-
const { bdd } = require("./bdd");
|
|
4
|
-
const cache = new EndpointCache({
|
|
5
|
-
size: 50,
|
|
6
|
-
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
-
});
|
|
8
|
-
exports.defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
-
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
10
|
-
endpointParams: endpointParams,
|
|
11
|
-
logger: context.logger,
|
|
12
|
-
}));
|
|
13
|
-
};
|
|
14
|
-
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
-
exports.__ServiceException = __ServiceException;
|
|
3
|
-
exports.SSOAdminServiceException = class SSOAdminServiceException extends __ServiceException {
|
|
4
|
-
constructor(options) {
|
|
5
|
-
super(options);
|
|
6
|
-
Object.setPrototypeOf(this, SSOAdminServiceException.prototype);
|
|
7
|
-
}
|
|
8
|
-
};
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
const { SSOAdminServiceException: __BaseException } = require("./SSOAdminServiceException");
|
|
2
|
-
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
Reason;
|
|
7
|
-
constructor(opts) {
|
|
8
|
-
super({
|
|
9
|
-
name: "AccessDeniedException",
|
|
10
|
-
$fault: "client",
|
|
11
|
-
...opts,
|
|
12
|
-
});
|
|
13
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
14
|
-
this.Message = opts.Message;
|
|
15
|
-
this.Reason = opts.Reason;
|
|
16
|
-
}
|
|
17
|
-
};
|
|
18
|
-
exports.ConflictException = class ConflictException extends __BaseException {
|
|
19
|
-
name = "ConflictException";
|
|
20
|
-
$fault = "client";
|
|
21
|
-
Message;
|
|
22
|
-
constructor(opts) {
|
|
23
|
-
super({
|
|
24
|
-
name: "ConflictException",
|
|
25
|
-
$fault: "client",
|
|
26
|
-
...opts,
|
|
27
|
-
});
|
|
28
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
29
|
-
this.Message = opts.Message;
|
|
30
|
-
}
|
|
31
|
-
};
|
|
32
|
-
exports.InternalServerException = class InternalServerException extends __BaseException {
|
|
33
|
-
name = "InternalServerException";
|
|
34
|
-
$fault = "server";
|
|
35
|
-
Message;
|
|
36
|
-
constructor(opts) {
|
|
37
|
-
super({
|
|
38
|
-
name: "InternalServerException",
|
|
39
|
-
$fault: "server",
|
|
40
|
-
...opts,
|
|
41
|
-
});
|
|
42
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
43
|
-
this.Message = opts.Message;
|
|
44
|
-
}
|
|
45
|
-
};
|
|
46
|
-
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
47
|
-
name = "ServiceQuotaExceededException";
|
|
48
|
-
$fault = "client";
|
|
49
|
-
Message;
|
|
50
|
-
constructor(opts) {
|
|
51
|
-
super({
|
|
52
|
-
name: "ServiceQuotaExceededException",
|
|
53
|
-
$fault: "client",
|
|
54
|
-
...opts,
|
|
55
|
-
});
|
|
56
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
57
|
-
this.Message = opts.Message;
|
|
58
|
-
}
|
|
59
|
-
};
|
|
60
|
-
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
61
|
-
name = "ThrottlingException";
|
|
62
|
-
$fault = "client";
|
|
63
|
-
Message;
|
|
64
|
-
Reason;
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "ThrottlingException",
|
|
68
|
-
$fault: "client",
|
|
69
|
-
...opts,
|
|
70
|
-
});
|
|
71
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
72
|
-
this.Message = opts.Message;
|
|
73
|
-
this.Reason = opts.Reason;
|
|
74
|
-
}
|
|
75
|
-
};
|
|
76
|
-
exports.ValidationException = class ValidationException extends __BaseException {
|
|
77
|
-
name = "ValidationException";
|
|
78
|
-
$fault = "client";
|
|
79
|
-
Message;
|
|
80
|
-
Reason;
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "ValidationException",
|
|
84
|
-
$fault: "client",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
88
|
-
this.Message = opts.Message;
|
|
89
|
-
this.Reason = opts.Reason;
|
|
90
|
-
}
|
|
91
|
-
};
|
|
92
|
-
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
93
|
-
name = "ResourceNotFoundException";
|
|
94
|
-
$fault = "client";
|
|
95
|
-
Message;
|
|
96
|
-
Reason;
|
|
97
|
-
constructor(opts) {
|
|
98
|
-
super({
|
|
99
|
-
name: "ResourceNotFoundException",
|
|
100
|
-
$fault: "client",
|
|
101
|
-
...opts,
|
|
102
|
-
});
|
|
103
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
104
|
-
this.Message = opts.Message;
|
|
105
|
-
this.Reason = opts.Reason;
|
|
106
|
-
}
|
|
107
|
-
};
|