@aws-sdk/nested-clients 3.996.0 → 3.996.1
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/cognito-identity.d.ts +7 -0
- package/cognito-identity.js +5 -0
- package/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +60 -0
- package/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +146 -0
- package/dist-cjs/submodules/cognito-identity/index.js +174 -0
- package/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +12 -0
- package/dist-cjs/submodules/cognito-identity/models/errors.js +121 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +38 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.js +53 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +15 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +50 -0
- package/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +110 -0
- package/dist-cjs/submodules/signin/endpoint/ruleset.js +128 -2
- package/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +56 -0
- package/dist-cjs/submodules/sso/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/submodules/sso/endpoint/ruleset.js +106 -0
- package/dist-cjs/submodules/sso/index.js +160 -0
- package/dist-cjs/submodules/sso/models/SSOServiceException.js +12 -0
- package/dist-cjs/submodules/sso/models/errors.js +56 -0
- package/dist-cjs/submodules/sso/runtimeConfig.browser.js +38 -0
- package/dist-cjs/submodules/sso/runtimeConfig.js +53 -0
- package/dist-cjs/submodules/sso/runtimeConfig.native.js +15 -0
- package/dist-cjs/submodules/sso/runtimeConfig.shared.js +49 -0
- package/dist-cjs/submodules/sso/schemas/schemas_0.js +90 -0
- package/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +101 -2
- package/dist-cjs/submodules/sts/endpoint/ruleset.js +140 -2
- package/dist-es/submodules/cognito-identity/CognitoIdentity.js +11 -0
- package/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +50 -0
- package/dist-es/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +54 -0
- package/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +16 -0
- package/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +16 -0
- package/dist-es/submodules/cognito-identity/commands/index.js +2 -0
- package/dist-es/submodules/cognito-identity/endpoint/EndpointParameters.js +13 -0
- package/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +14 -0
- package/dist-es/submodules/cognito-identity/endpoint/ruleset.js +143 -0
- package/dist-es/submodules/cognito-identity/extensionConfiguration.js +1 -0
- package/dist-es/submodules/cognito-identity/index.js +7 -0
- package/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +8 -0
- package/dist-es/submodules/cognito-identity/models/errors.js +109 -0
- package/dist-es/submodules/cognito-identity/models/models_0.js +1 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +33 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.js +48 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.native.js +11 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +46 -0
- package/dist-es/submodules/cognito-identity/runtimeExtensions.js +9 -0
- package/dist-es/submodules/cognito-identity/schemas/schemas_0.js +107 -0
- package/dist-es/submodules/signin/Signin.js +1 -1
- package/dist-es/submodules/signin/endpoint/ruleset.js +128 -2
- package/dist-es/submodules/sso/SSO.js +9 -0
- package/dist-es/submodules/sso/SSOClient.js +50 -0
- package/dist-es/submodules/sso/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +50 -0
- package/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +16 -0
- package/dist-es/submodules/sso/commands/index.js +1 -0
- package/dist-es/submodules/sso/endpoint/EndpointParameters.js +13 -0
- package/dist-es/submodules/sso/endpoint/endpointResolver.js +14 -0
- package/dist-es/submodules/sso/endpoint/ruleset.js +103 -0
- package/dist-es/submodules/sso/extensionConfiguration.js +1 -0
- package/dist-es/submodules/sso/index.js +7 -0
- package/dist-es/submodules/sso/models/SSOServiceException.js +8 -0
- package/dist-es/submodules/sso/models/errors.js +49 -0
- package/dist-es/submodules/sso/models/models_0.js +1 -0
- package/dist-es/submodules/sso/runtimeConfig.browser.js +33 -0
- package/dist-es/submodules/sso/runtimeConfig.js +48 -0
- package/dist-es/submodules/sso/runtimeConfig.native.js +11 -0
- package/dist-es/submodules/sso/runtimeConfig.shared.js +45 -0
- package/dist-es/submodules/sso/runtimeExtensions.js +9 -0
- package/dist-es/submodules/sso/schemas/schemas_0.js +87 -0
- package/dist-es/submodules/sso-oidc/endpoint/ruleset.js +101 -2
- package/dist-es/submodules/sts/defaultStsRoleAssumers.js +1 -1
- package/dist-es/submodules/sts/endpoint/ruleset.js +140 -2
- package/dist-types/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +198 -0
- package/dist-types/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/dist-types/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +120 -0
- package/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +107 -0
- package/dist-types/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/dist-types/submodules/cognito-identity/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/submodules/cognito-identity/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +2 -0
- package/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/dist-types/submodules/cognito-identity/index.d.ts +29 -0
- package/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +14 -0
- package/dist-types/submodules/cognito-identity/models/errors.d.ts +119 -0
- package/dist-types/submodules/cognito-identity/models/models_0.d.ts +136 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +62 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +62 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +61 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +38 -0
- package/dist-types/submodules/cognito-identity/runtimeExtensions.d.ts +17 -0
- package/dist-types/submodules/cognito-identity/schemas/schemas_0.d.ts +25 -0
- package/dist-types/submodules/signin/Signin.d.ts +1 -1
- package/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +2 -1
- package/dist-types/submodules/signin/endpoint/ruleset.d.ts +1 -1
- package/dist-types/submodules/signin/models/errors.d.ts +1 -1
- package/dist-types/submodules/sso/SSO.d.ts +32 -0
- package/dist-types/submodules/sso/SSOClient.d.ts +198 -0
- package/dist-types/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/dist-types/submodules/sso/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/dist-types/submodules/sso/commands/index.d.ts +1 -0
- package/dist-types/submodules/sso/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/submodules/sso/endpoint/ruleset.d.ts +2 -0
- package/dist-types/submodules/sso/extensionConfiguration.d.ts +9 -0
- package/dist-types/submodules/sso/index.d.ts +30 -0
- package/dist-types/submodules/sso/models/SSOServiceException.d.ts +14 -0
- package/dist-types/submodules/sso/models/errors.d.ts +53 -0
- package/dist-types/submodules/sso/models/models_0.d.ts +61 -0
- package/dist-types/submodules/sso/runtimeConfig.browser.d.ts +62 -0
- package/dist-types/submodules/sso/runtimeConfig.d.ts +62 -0
- package/dist-types/submodules/sso/runtimeConfig.native.d.ts +61 -0
- package/dist-types/submodules/sso/runtimeConfig.shared.d.ts +38 -0
- package/dist-types/submodules/sso/runtimeExtensions.d.ts +17 -0
- package/dist-types/submodules/sso/schemas/schemas_0.d.ts +17 -0
- package/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +2 -1
- package/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +1 -1
- package/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +2 -1
- package/dist-types/submodules/sts/defaultRoleAssumers.d.ts +3 -3
- package/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +3 -3
- package/dist-types/submodules/sts/endpoint/ruleset.d.ts +1 -1
- package/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +126 -0
- package/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +51 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +41 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/submodules/cognito-identity/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/submodules/cognito-identity/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +10 -0
- package/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +9 -0
- package/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +68 -0
- package/dist-types/ts3.4/submodules/cognito-identity/models/models_0.d.ts +23 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +122 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +117 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +126 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +60 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/submodules/cognito-identity/schemas/schemas_0.d.ts +24 -0
- package/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/submodules/sso/SSO.d.ts +22 -0
- package/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +117 -0
- package/dist-types/ts3.4/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/submodules/sso/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +47 -0
- package/dist-types/ts3.4/submodules/sso/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sso/index.d.ts +10 -0
- package/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sso/models/errors.d.ts +30 -0
- package/dist-types/ts3.4/submodules/sso/models/models_0.d.ts +14 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +120 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +115 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +124 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +58 -0
- package/dist-types/ts3.4/submodules/sso/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/submodules/sso/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/package.json +54 -36
- package/sso.d.ts +7 -0
- package/sso.js +5 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getRuntimeConfig = void 0;
|
|
4
|
+
const core_1 = require("@aws-sdk/core");
|
|
5
|
+
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
|
+
const core_2 = require("@smithy/core");
|
|
7
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
8
|
+
const url_parser_1 = require("@smithy/url-parser");
|
|
9
|
+
const util_base64_1 = require("@smithy/util-base64");
|
|
10
|
+
const util_utf8_1 = require("@smithy/util-utf8");
|
|
11
|
+
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
12
|
+
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
13
|
+
const schemas_0_1 = require("./schemas/schemas_0");
|
|
14
|
+
const getRuntimeConfig = (config) => {
|
|
15
|
+
return {
|
|
16
|
+
apiVersion: "2014-06-30",
|
|
17
|
+
base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64,
|
|
18
|
+
base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64,
|
|
19
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
20
|
+
endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
|
|
21
|
+
extensions: config?.extensions ?? [],
|
|
22
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? httpAuthSchemeProvider_1.defaultCognitoIdentityHttpAuthSchemeProvider,
|
|
23
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
24
|
+
{
|
|
25
|
+
schemeId: "aws.auth#sigv4",
|
|
26
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
27
|
+
signer: new core_1.AwsSdkSigV4Signer(),
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
schemeId: "smithy.api#noAuth",
|
|
31
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})),
|
|
32
|
+
signer: new core_2.NoAuthSigner(),
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
36
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
37
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
38
|
+
defaultNamespace: "com.amazonaws.cognitoidentity",
|
|
39
|
+
errorTypeRegistries: schemas_0_1.errorTypeRegistries,
|
|
40
|
+
xmlNamespace: "http://cognito-identity.amazonaws.com/doc/2014-06-30/",
|
|
41
|
+
version: "2014-06-30",
|
|
42
|
+
serviceTarget: "AWSCognitoIdentityService",
|
|
43
|
+
},
|
|
44
|
+
serviceId: config?.serviceId ?? "Cognito Identity",
|
|
45
|
+
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
46
|
+
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
47
|
+
utf8Encoder: config?.utf8Encoder ?? util_utf8_1.toUtf8,
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetId$ = exports.GetCredentialsForIdentity$ = exports.GetIdResponse$ = exports.GetIdInput$ = exports.GetCredentialsForIdentityResponse$ = exports.GetCredentialsForIdentityInput$ = exports.Credentials$ = exports.errorTypeRegistries = exports.TooManyRequestsException$ = exports.ResourceNotFoundException$ = exports.ResourceConflictException$ = exports.NotAuthorizedException$ = exports.LimitExceededException$ = exports.InvalidParameterException$ = exports.InvalidIdentityPoolConfigurationException$ = exports.InternalErrorException$ = exports.ExternalServiceException$ = exports.CognitoIdentityServiceException$ = void 0;
|
|
4
|
+
const _AI = "AccountId";
|
|
5
|
+
const _AKI = "AccessKeyId";
|
|
6
|
+
const _C = "Credentials";
|
|
7
|
+
const _CRA = "CustomRoleArn";
|
|
8
|
+
const _E = "Expiration";
|
|
9
|
+
const _ESE = "ExternalServiceException";
|
|
10
|
+
const _GCFI = "GetCredentialsForIdentity";
|
|
11
|
+
const _GCFII = "GetCredentialsForIdentityInput";
|
|
12
|
+
const _GCFIR = "GetCredentialsForIdentityResponse";
|
|
13
|
+
const _GI = "GetId";
|
|
14
|
+
const _GII = "GetIdInput";
|
|
15
|
+
const _GIR = "GetIdResponse";
|
|
16
|
+
const _IEE = "InternalErrorException";
|
|
17
|
+
const _II = "IdentityId";
|
|
18
|
+
const _IIPCE = "InvalidIdentityPoolConfigurationException";
|
|
19
|
+
const _IPE = "InvalidParameterException";
|
|
20
|
+
const _IPI = "IdentityPoolId";
|
|
21
|
+
const _IPT = "IdentityProviderToken";
|
|
22
|
+
const _L = "Logins";
|
|
23
|
+
const _LEE = "LimitExceededException";
|
|
24
|
+
const _LM = "LoginsMap";
|
|
25
|
+
const _NAE = "NotAuthorizedException";
|
|
26
|
+
const _RCE = "ResourceConflictException";
|
|
27
|
+
const _RNFE = "ResourceNotFoundException";
|
|
28
|
+
const _SK = "SecretKey";
|
|
29
|
+
const _SKS = "SecretKeyString";
|
|
30
|
+
const _ST = "SessionToken";
|
|
31
|
+
const _TMRE = "TooManyRequestsException";
|
|
32
|
+
const _c = "client";
|
|
33
|
+
const _e = "error";
|
|
34
|
+
const _hE = "httpError";
|
|
35
|
+
const _m = "message";
|
|
36
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cognitoidentity";
|
|
37
|
+
const _se = "server";
|
|
38
|
+
const n0 = "com.amazonaws.cognitoidentity";
|
|
39
|
+
const schema_1 = require("@smithy/core/schema");
|
|
40
|
+
const CognitoIdentityServiceException_1 = require("../models/CognitoIdentityServiceException");
|
|
41
|
+
const errors_1 = require("../models/errors");
|
|
42
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
43
|
+
exports.CognitoIdentityServiceException$ = [-3, _s, "CognitoIdentityServiceException", 0, [], []];
|
|
44
|
+
_s_registry.registerError(exports.CognitoIdentityServiceException$, CognitoIdentityServiceException_1.CognitoIdentityServiceException);
|
|
45
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
46
|
+
exports.ExternalServiceException$ = [-3, n0, _ESE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
47
|
+
n0_registry.registerError(exports.ExternalServiceException$, errors_1.ExternalServiceException);
|
|
48
|
+
exports.InternalErrorException$ = [-3, n0, _IEE, { [_e]: _se }, [_m], [0]];
|
|
49
|
+
n0_registry.registerError(exports.InternalErrorException$, errors_1.InternalErrorException);
|
|
50
|
+
exports.InvalidIdentityPoolConfigurationException$ = [
|
|
51
|
+
-3,
|
|
52
|
+
n0,
|
|
53
|
+
_IIPCE,
|
|
54
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
55
|
+
[_m],
|
|
56
|
+
[0],
|
|
57
|
+
];
|
|
58
|
+
n0_registry.registerError(exports.InvalidIdentityPoolConfigurationException$, errors_1.InvalidIdentityPoolConfigurationException);
|
|
59
|
+
exports.InvalidParameterException$ = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
60
|
+
n0_registry.registerError(exports.InvalidParameterException$, errors_1.InvalidParameterException);
|
|
61
|
+
exports.LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
62
|
+
n0_registry.registerError(exports.LimitExceededException$, errors_1.LimitExceededException);
|
|
63
|
+
exports.NotAuthorizedException$ = [-3, n0, _NAE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
64
|
+
n0_registry.registerError(exports.NotAuthorizedException$, errors_1.NotAuthorizedException);
|
|
65
|
+
exports.ResourceConflictException$ = [-3, n0, _RCE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
66
|
+
n0_registry.registerError(exports.ResourceConflictException$, errors_1.ResourceConflictException);
|
|
67
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
68
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
69
|
+
exports.TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
70
|
+
n0_registry.registerError(exports.TooManyRequestsException$, errors_1.TooManyRequestsException);
|
|
71
|
+
exports.errorTypeRegistries = [_s_registry, n0_registry];
|
|
72
|
+
var IdentityProviderToken = [0, n0, _IPT, 8, 0];
|
|
73
|
+
var SecretKeyString = [0, n0, _SKS, 8, 0];
|
|
74
|
+
exports.Credentials$ = [
|
|
75
|
+
3,
|
|
76
|
+
n0,
|
|
77
|
+
_C,
|
|
78
|
+
0,
|
|
79
|
+
[_AKI, _SK, _ST, _E],
|
|
80
|
+
[0, [() => SecretKeyString, 0], 0, 4],
|
|
81
|
+
];
|
|
82
|
+
exports.GetCredentialsForIdentityInput$ = [
|
|
83
|
+
3,
|
|
84
|
+
n0,
|
|
85
|
+
_GCFII,
|
|
86
|
+
0,
|
|
87
|
+
[_II, _L, _CRA],
|
|
88
|
+
[0, [() => LoginsMap, 0], 0],
|
|
89
|
+
1,
|
|
90
|
+
];
|
|
91
|
+
exports.GetCredentialsForIdentityResponse$ = [
|
|
92
|
+
3,
|
|
93
|
+
n0,
|
|
94
|
+
_GCFIR,
|
|
95
|
+
0,
|
|
96
|
+
[_II, _C],
|
|
97
|
+
[0, [() => exports.Credentials$, 0]],
|
|
98
|
+
];
|
|
99
|
+
exports.GetIdInput$ = [3, n0, _GII, 0, [_IPI, _AI, _L], [0, 0, [() => LoginsMap, 0]], 1];
|
|
100
|
+
exports.GetIdResponse$ = [3, n0, _GIR, 0, [_II], [0]];
|
|
101
|
+
var LoginsMap = [2, n0, _LM, 0, [0, 0], [() => IdentityProviderToken, 0]];
|
|
102
|
+
exports.GetCredentialsForIdentity$ = [
|
|
103
|
+
9,
|
|
104
|
+
n0,
|
|
105
|
+
_GCFI,
|
|
106
|
+
0,
|
|
107
|
+
() => exports.GetCredentialsForIdentityInput$,
|
|
108
|
+
() => exports.GetCredentialsForIdentityResponse$,
|
|
109
|
+
];
|
|
110
|
+
exports.GetId$ = [9, n0, _GI, 0, () => exports.GetIdInput$, () => exports.GetIdResponse$];
|
|
@@ -2,6 +2,132 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
4
|
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
5
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "stringEquals", i = { [u]: true,
|
|
6
|
-
const _data = {
|
|
5
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "stringEquals", i = { [u]: true, default: false, type: "boolean" }, j = { [u]: false, type: "string" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: "getAttr", [w]: [{ [x]: g }, "name"] }, p = { [v]: c, [w]: [{ [x]: "UseFIPS" }, false] }, q = { [v]: c, [w]: [{ [x]: "UseDualStack" }, false] }, r = { [v]: "getAttr", [w]: [{ [x]: g }, "supportsFIPS"] }, s = { [v]: c, [w]: [true, { [v]: "getAttr", [w]: [{ [x]: g }, "supportsDualStack"] }] }, t = [{ [x]: "Region" }];
|
|
6
|
+
const _data = {
|
|
7
|
+
version: "1.0",
|
|
8
|
+
parameters: { UseDualStack: i, UseFIPS: i, Endpoint: j, Region: j },
|
|
9
|
+
rules: [
|
|
10
|
+
{
|
|
11
|
+
conditions: [{ [v]: b, [w]: [k] }],
|
|
12
|
+
rules: [
|
|
13
|
+
{ conditions: [l], error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
14
|
+
{
|
|
15
|
+
rules: [
|
|
16
|
+
{
|
|
17
|
+
conditions: [m],
|
|
18
|
+
error: "Invalid Configuration: Dualstack and custom endpoint are not supported",
|
|
19
|
+
type: d,
|
|
20
|
+
},
|
|
21
|
+
{ endpoint: { url: k, properties: n, headers: n }, type: e },
|
|
22
|
+
],
|
|
23
|
+
type: f,
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
type: f,
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
rules: [
|
|
30
|
+
{
|
|
31
|
+
conditions: [{ [v]: b, [w]: t }],
|
|
32
|
+
rules: [
|
|
33
|
+
{
|
|
34
|
+
conditions: [{ [v]: "aws.partition", [w]: t, assign: g }],
|
|
35
|
+
rules: [
|
|
36
|
+
{
|
|
37
|
+
conditions: [{ [v]: h, [w]: [o, "aws"] }, p, q],
|
|
38
|
+
endpoint: { url: "https://{Region}.signin.aws.amazon.com", properties: n, headers: n },
|
|
39
|
+
type: e,
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
conditions: [{ [v]: h, [w]: [o, "aws-cn"] }, p, q],
|
|
43
|
+
endpoint: { url: "https://{Region}.signin.amazonaws.cn", properties: n, headers: n },
|
|
44
|
+
type: e,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
conditions: [{ [v]: h, [w]: [o, "aws-us-gov"] }, p, q],
|
|
48
|
+
endpoint: { url: "https://{Region}.signin.amazonaws-us-gov.com", properties: n, headers: n },
|
|
49
|
+
type: e,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
conditions: [l, m],
|
|
53
|
+
rules: [
|
|
54
|
+
{
|
|
55
|
+
conditions: [{ [v]: c, [w]: [a, r] }, s],
|
|
56
|
+
rules: [
|
|
57
|
+
{
|
|
58
|
+
endpoint: {
|
|
59
|
+
url: "https://signin-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
60
|
+
properties: n,
|
|
61
|
+
headers: n,
|
|
62
|
+
},
|
|
63
|
+
type: e,
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
type: f,
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
error: "FIPS and DualStack are enabled, but this partition does not support one or both",
|
|
70
|
+
type: d,
|
|
71
|
+
},
|
|
72
|
+
],
|
|
73
|
+
type: f,
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
conditions: [l, q],
|
|
77
|
+
rules: [
|
|
78
|
+
{
|
|
79
|
+
conditions: [{ [v]: c, [w]: [r, a] }],
|
|
80
|
+
rules: [
|
|
81
|
+
{
|
|
82
|
+
endpoint: {
|
|
83
|
+
url: "https://signin-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
84
|
+
properties: n,
|
|
85
|
+
headers: n,
|
|
86
|
+
},
|
|
87
|
+
type: e,
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
type: f,
|
|
91
|
+
},
|
|
92
|
+
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
93
|
+
],
|
|
94
|
+
type: f,
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
conditions: [p, m],
|
|
98
|
+
rules: [
|
|
99
|
+
{
|
|
100
|
+
conditions: [s],
|
|
101
|
+
rules: [
|
|
102
|
+
{
|
|
103
|
+
endpoint: {
|
|
104
|
+
url: "https://signin.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
105
|
+
properties: n,
|
|
106
|
+
headers: n,
|
|
107
|
+
},
|
|
108
|
+
type: e,
|
|
109
|
+
},
|
|
110
|
+
],
|
|
111
|
+
type: f,
|
|
112
|
+
},
|
|
113
|
+
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
114
|
+
],
|
|
115
|
+
type: f,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
endpoint: { url: "https://signin.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n },
|
|
119
|
+
type: e,
|
|
120
|
+
},
|
|
121
|
+
],
|
|
122
|
+
type: f,
|
|
123
|
+
},
|
|
124
|
+
],
|
|
125
|
+
type: f,
|
|
126
|
+
},
|
|
127
|
+
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
128
|
+
],
|
|
129
|
+
type: f,
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
};
|
|
7
133
|
exports.ruleSet = _data;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.resolveHttpAuthSchemeConfig = exports.defaultSSOHttpAuthSchemeProvider = exports.defaultSSOHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
+
const core_1 = require("@aws-sdk/core");
|
|
5
|
+
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
|
+
const defaultSSOHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
|
+
return {
|
|
8
|
+
operation: (0, util_middleware_1.getSmithyContext)(context).operation,
|
|
9
|
+
region: (await (0, util_middleware_1.normalizeProvider)(config.region)()) ||
|
|
10
|
+
(() => {
|
|
11
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
12
|
+
})(),
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
exports.defaultSSOHttpAuthSchemeParametersProvider = defaultSSOHttpAuthSchemeParametersProvider;
|
|
16
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
17
|
+
return {
|
|
18
|
+
schemeId: "aws.auth#sigv4",
|
|
19
|
+
signingProperties: {
|
|
20
|
+
name: "awsssoportal",
|
|
21
|
+
region: authParameters.region,
|
|
22
|
+
},
|
|
23
|
+
propertiesExtractor: (config, context) => ({
|
|
24
|
+
signingProperties: {
|
|
25
|
+
config,
|
|
26
|
+
context,
|
|
27
|
+
},
|
|
28
|
+
}),
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
function createSmithyApiNoAuthHttpAuthOption(authParameters) {
|
|
32
|
+
return {
|
|
33
|
+
schemeId: "smithy.api#noAuth",
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
const defaultSSOHttpAuthSchemeProvider = (authParameters) => {
|
|
37
|
+
const options = [];
|
|
38
|
+
switch (authParameters.operation) {
|
|
39
|
+
case "GetRoleCredentials": {
|
|
40
|
+
options.push(createSmithyApiNoAuthHttpAuthOption(authParameters));
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
exports.defaultSSOHttpAuthSchemeProvider = defaultSSOHttpAuthSchemeProvider;
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
|
+
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultEndpointResolver = void 0;
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
|
+
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
11
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
13
|
+
endpointParams: endpointParams,
|
|
14
|
+
logger: context.logger,
|
|
15
|
+
}));
|
|
16
|
+
};
|
|
17
|
+
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
18
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ruleSet = void 0;
|
|
4
|
+
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
5
|
+
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, type: "string" }, j = { [u]: true, default: false, type: "boolean" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: h, [w]: [{ [x]: g }, "supportsFIPS"] }, p = { [x]: g }, q = { [v]: c, [w]: [true, { [v]: h, [w]: [p, "supportsDualStack"] }] }, r = [l], s = [m], t = [{ [x]: "Region" }];
|
|
6
|
+
const _data = {
|
|
7
|
+
version: "1.0",
|
|
8
|
+
parameters: { Region: i, UseDualStack: j, UseFIPS: j, Endpoint: i },
|
|
9
|
+
rules: [
|
|
10
|
+
{
|
|
11
|
+
conditions: [{ [v]: b, [w]: [k] }],
|
|
12
|
+
rules: [
|
|
13
|
+
{ conditions: r, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
14
|
+
{ conditions: s, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d },
|
|
15
|
+
{ endpoint: { url: k, properties: n, headers: n }, type: e },
|
|
16
|
+
],
|
|
17
|
+
type: f,
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
conditions: [{ [v]: b, [w]: t }],
|
|
21
|
+
rules: [
|
|
22
|
+
{
|
|
23
|
+
conditions: [{ [v]: "aws.partition", [w]: t, assign: g }],
|
|
24
|
+
rules: [
|
|
25
|
+
{
|
|
26
|
+
conditions: [l, m],
|
|
27
|
+
rules: [
|
|
28
|
+
{
|
|
29
|
+
conditions: [{ [v]: c, [w]: [a, o] }, q],
|
|
30
|
+
rules: [
|
|
31
|
+
{
|
|
32
|
+
endpoint: {
|
|
33
|
+
url: "https://portal.sso-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
34
|
+
properties: n,
|
|
35
|
+
headers: n,
|
|
36
|
+
},
|
|
37
|
+
type: e,
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
type: f,
|
|
41
|
+
},
|
|
42
|
+
{ error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d },
|
|
43
|
+
],
|
|
44
|
+
type: f,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
conditions: r,
|
|
48
|
+
rules: [
|
|
49
|
+
{
|
|
50
|
+
conditions: [{ [v]: c, [w]: [o, a] }],
|
|
51
|
+
rules: [
|
|
52
|
+
{
|
|
53
|
+
conditions: [{ [v]: "stringEquals", [w]: [{ [v]: h, [w]: [p, "name"] }, "aws-us-gov"] }],
|
|
54
|
+
endpoint: { url: "https://portal.sso.{Region}.amazonaws.com", properties: n, headers: n },
|
|
55
|
+
type: e,
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
endpoint: {
|
|
59
|
+
url: "https://portal.sso-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
60
|
+
properties: n,
|
|
61
|
+
headers: n,
|
|
62
|
+
},
|
|
63
|
+
type: e,
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
type: f,
|
|
67
|
+
},
|
|
68
|
+
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
69
|
+
],
|
|
70
|
+
type: f,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
conditions: s,
|
|
74
|
+
rules: [
|
|
75
|
+
{
|
|
76
|
+
conditions: [q],
|
|
77
|
+
rules: [
|
|
78
|
+
{
|
|
79
|
+
endpoint: {
|
|
80
|
+
url: "https://portal.sso.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
81
|
+
properties: n,
|
|
82
|
+
headers: n,
|
|
83
|
+
},
|
|
84
|
+
type: e,
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
type: f,
|
|
88
|
+
},
|
|
89
|
+
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
90
|
+
],
|
|
91
|
+
type: f,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
endpoint: { url: "https://portal.sso.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n },
|
|
95
|
+
type: e,
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
type: f,
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
type: f,
|
|
102
|
+
},
|
|
103
|
+
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
104
|
+
],
|
|
105
|
+
};
|
|
106
|
+
exports.ruleSet = _data;
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var middlewareHostHeader = require('@aws-sdk/middleware-host-header');
|
|
4
|
+
var middlewareLogger = require('@aws-sdk/middleware-logger');
|
|
5
|
+
var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
|
|
6
|
+
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
|
+
var configResolver = require('@smithy/config-resolver');
|
|
8
|
+
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
10
|
+
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
|
+
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
12
|
+
var middlewareRetry = require('@smithy/middleware-retry');
|
|
13
|
+
var smithyClient = require('@smithy/smithy-client');
|
|
14
|
+
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
15
|
+
var runtimeConfig = require('./runtimeConfig');
|
|
16
|
+
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
|
+
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SSOServiceException = require('./models/SSOServiceException');
|
|
21
|
+
|
|
22
|
+
const resolveClientEndpointParameters = (options) => {
|
|
23
|
+
return Object.assign(options, {
|
|
24
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
25
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
26
|
+
defaultSigningName: "awsssoportal",
|
|
27
|
+
});
|
|
28
|
+
};
|
|
29
|
+
const commonParams = {
|
|
30
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
31
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
32
|
+
Region: { type: "builtInParams", name: "region" },
|
|
33
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
37
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
38
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
39
|
+
let _credentials = runtimeConfig.credentials;
|
|
40
|
+
return {
|
|
41
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
42
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
43
|
+
if (index === -1) {
|
|
44
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
httpAuthSchemes() {
|
|
51
|
+
return _httpAuthSchemes;
|
|
52
|
+
},
|
|
53
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
54
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
55
|
+
},
|
|
56
|
+
httpAuthSchemeProvider() {
|
|
57
|
+
return _httpAuthSchemeProvider;
|
|
58
|
+
},
|
|
59
|
+
setCredentials(credentials) {
|
|
60
|
+
_credentials = credentials;
|
|
61
|
+
},
|
|
62
|
+
credentials() {
|
|
63
|
+
return _credentials;
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
const resolveHttpAuthRuntimeConfig = (config) => {
|
|
68
|
+
return {
|
|
69
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
70
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
71
|
+
credentials: config.credentials(),
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
76
|
+
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig), smithyClient.getDefaultExtensionConfiguration(runtimeConfig), protocolHttp.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
77
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
78
|
+
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration), smithyClient.resolveDefaultRuntimeConfig(extensionConfiguration), protocolHttp.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
class SSOClient extends smithyClient.Client {
|
|
82
|
+
config;
|
|
83
|
+
constructor(...[configuration]) {
|
|
84
|
+
const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
|
|
85
|
+
super(_config_0);
|
|
86
|
+
this.initConfig = _config_0;
|
|
87
|
+
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
88
|
+
const _config_2 = middlewareUserAgent.resolveUserAgentConfig(_config_1);
|
|
89
|
+
const _config_3 = middlewareRetry.resolveRetryConfig(_config_2);
|
|
90
|
+
const _config_4 = configResolver.resolveRegionConfig(_config_3);
|
|
91
|
+
const _config_5 = middlewareHostHeader.resolveHostHeaderConfig(_config_4);
|
|
92
|
+
const _config_6 = middlewareEndpoint.resolveEndpointConfig(_config_5);
|
|
93
|
+
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
94
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
95
|
+
this.config = _config_8;
|
|
96
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
|
|
102
|
+
this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
|
|
103
|
+
this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
104
|
+
httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultSSOHttpAuthSchemeParametersProvider,
|
|
105
|
+
identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
|
|
106
|
+
"aws.auth#sigv4": config.credentials,
|
|
107
|
+
}),
|
|
108
|
+
}));
|
|
109
|
+
this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
|
|
110
|
+
}
|
|
111
|
+
destroy() {
|
|
112
|
+
super.destroy();
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
class GetRoleCredentialsCommand extends smithyClient.Command
|
|
117
|
+
.classBuilder()
|
|
118
|
+
.ep(commonParams)
|
|
119
|
+
.m(function (Command, cs, config, o) {
|
|
120
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
121
|
+
})
|
|
122
|
+
.s("SWBPortalService", "GetRoleCredentials", {})
|
|
123
|
+
.n("SSOClient", "GetRoleCredentialsCommand")
|
|
124
|
+
.sc(schemas_0.GetRoleCredentials$)
|
|
125
|
+
.build() {
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const commands = {
|
|
129
|
+
GetRoleCredentialsCommand,
|
|
130
|
+
};
|
|
131
|
+
class SSO extends SSOClient {
|
|
132
|
+
}
|
|
133
|
+
smithyClient.createAggregatedClient(commands, SSO);
|
|
134
|
+
|
|
135
|
+
exports.$Command = smithyClient.Command;
|
|
136
|
+
exports.__Client = smithyClient.Client;
|
|
137
|
+
exports.SSOServiceException = SSOServiceException.SSOServiceException;
|
|
138
|
+
exports.GetRoleCredentialsCommand = GetRoleCredentialsCommand;
|
|
139
|
+
exports.SSO = SSO;
|
|
140
|
+
exports.SSOClient = SSOClient;
|
|
141
|
+
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
142
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
143
|
+
Object.defineProperty(exports, '__proto__', {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
value: schemas_0['__proto__']
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
149
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
150
|
+
});
|
|
151
|
+
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
152
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
153
|
+
Object.defineProperty(exports, '__proto__', {
|
|
154
|
+
enumerable: true,
|
|
155
|
+
value: errors['__proto__']
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
Object.keys(errors).forEach(function (k) {
|
|
159
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
160
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SSOServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class SSOServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, SSOServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.SSOServiceException = SSOServiceException;
|