@cdk8s/awscdk-resolver 0.0.95 → 0.0.96
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/.jsii +3 -3
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +4 -2
- package/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js +64 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1024 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +49 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +40 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +52 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthSchemeProvider.js +58 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +10 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +5 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +217 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +409 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +44 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +36 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +212 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +162 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +244 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +50 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +734 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +52 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +144 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +110 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +114 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +49 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +100 -0
- package/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sts/README.md +273 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +56 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +20 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1457 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +63 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +40 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/STS.js +23 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +52 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +67 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +16 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +10 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +130 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +885 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +58 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +36 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +71 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +182 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +257 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +282 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +291 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +230 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +154 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1213 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +74 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +54 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +52 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +143 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +165 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +206 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +110 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sts/package.json +102 -0
- package/node_modules/@aws-sdk/credential-provider-node/package.json +1 -1
- package/package.json +3 -3
package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
3
|
+
import {
|
4
|
+
RegisterClientRequest,
|
5
|
+
RegisterClientResponse,
|
6
|
+
} from "../models/models_0";
|
7
|
+
import {
|
8
|
+
ServiceInputTypes,
|
9
|
+
ServiceOutputTypes,
|
10
|
+
SSOOIDCClientResolvedConfig,
|
11
|
+
} from "../SSOOIDCClient";
|
12
|
+
export { __MetadataBearer, $Command };
|
13
|
+
export interface RegisterClientCommandInput extends RegisterClientRequest {}
|
14
|
+
export interface RegisterClientCommandOutput
|
15
|
+
extends RegisterClientResponse,
|
16
|
+
__MetadataBearer {}
|
17
|
+
declare const RegisterClientCommand_base: {
|
18
|
+
new (
|
19
|
+
input: RegisterClientCommandInput
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
21
|
+
RegisterClientCommandInput,
|
22
|
+
RegisterClientCommandOutput,
|
23
|
+
SSOOIDCClientResolvedConfig,
|
24
|
+
ServiceInputTypes,
|
25
|
+
ServiceOutputTypes
|
26
|
+
>;
|
27
|
+
new (
|
28
|
+
__0_0: RegisterClientCommandInput
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
30
|
+
RegisterClientCommandInput,
|
31
|
+
RegisterClientCommandOutput,
|
32
|
+
SSOOIDCClientResolvedConfig,
|
33
|
+
ServiceInputTypes,
|
34
|
+
ServiceOutputTypes
|
35
|
+
>;
|
36
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
37
|
+
};
|
38
|
+
export declare class RegisterClientCommand extends RegisterClientCommand_base {}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
3
|
+
import {
|
4
|
+
StartDeviceAuthorizationRequest,
|
5
|
+
StartDeviceAuthorizationResponse,
|
6
|
+
} from "../models/models_0";
|
7
|
+
import {
|
8
|
+
ServiceInputTypes,
|
9
|
+
ServiceOutputTypes,
|
10
|
+
SSOOIDCClientResolvedConfig,
|
11
|
+
} from "../SSOOIDCClient";
|
12
|
+
export { __MetadataBearer, $Command };
|
13
|
+
export interface StartDeviceAuthorizationCommandInput
|
14
|
+
extends StartDeviceAuthorizationRequest {}
|
15
|
+
export interface StartDeviceAuthorizationCommandOutput
|
16
|
+
extends StartDeviceAuthorizationResponse,
|
17
|
+
__MetadataBearer {}
|
18
|
+
declare const StartDeviceAuthorizationCommand_base: {
|
19
|
+
new (
|
20
|
+
input: StartDeviceAuthorizationCommandInput
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
22
|
+
StartDeviceAuthorizationCommandInput,
|
23
|
+
StartDeviceAuthorizationCommandOutput,
|
24
|
+
SSOOIDCClientResolvedConfig,
|
25
|
+
ServiceInputTypes,
|
26
|
+
ServiceOutputTypes
|
27
|
+
>;
|
28
|
+
new (
|
29
|
+
__0_0: StartDeviceAuthorizationCommandInput
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
31
|
+
StartDeviceAuthorizationCommandInput,
|
32
|
+
StartDeviceAuthorizationCommandOutput,
|
33
|
+
SSOOIDCClientResolvedConfig,
|
34
|
+
ServiceInputTypes,
|
35
|
+
ServiceOutputTypes
|
36
|
+
>;
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
38
|
+
};
|
39
|
+
export declare class StartDeviceAuthorizationCommand extends StartDeviceAuthorizationCommand_base {}
|
package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
import {
|
2
|
+
Endpoint,
|
3
|
+
EndpointParameters as __EndpointParameters,
|
4
|
+
EndpointV2,
|
5
|
+
Provider,
|
6
|
+
} from "@smithy/types";
|
7
|
+
export interface ClientInputEndpointParameters {
|
8
|
+
region?: string | Provider<string>;
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
11
|
+
endpoint?:
|
12
|
+
| string
|
13
|
+
| Provider<string>
|
14
|
+
| Endpoint
|
15
|
+
| Provider<Endpoint>
|
16
|
+
| EndpointV2
|
17
|
+
| Provider<EndpointV2>;
|
18
|
+
}
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
20
|
+
defaultSigningName: string;
|
21
|
+
};
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
23
|
+
options: T & ClientInputEndpointParameters
|
24
|
+
) => T &
|
25
|
+
ClientInputEndpointParameters & {
|
26
|
+
defaultSigningName: string;
|
27
|
+
};
|
28
|
+
export declare const commonParams: {
|
29
|
+
readonly UseFIPS: {
|
30
|
+
readonly type: "builtInParams";
|
31
|
+
readonly name: "useFipsEndpoint";
|
32
|
+
};
|
33
|
+
readonly Endpoint: {
|
34
|
+
readonly type: "builtInParams";
|
35
|
+
readonly name: "endpoint";
|
36
|
+
};
|
37
|
+
readonly Region: {
|
38
|
+
readonly type: "builtInParams";
|
39
|
+
readonly name: "region";
|
40
|
+
};
|
41
|
+
readonly UseDualStack: {
|
42
|
+
readonly type: "builtInParams";
|
43
|
+
readonly name: "useDualstackEndpoint";
|
44
|
+
};
|
45
|
+
};
|
46
|
+
export interface EndpointParameters extends __EndpointParameters {
|
47
|
+
Region?: string;
|
48
|
+
UseDualStack?: boolean;
|
49
|
+
UseFIPS?: boolean;
|
50
|
+
Endpoint?: string;
|
51
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
5
|
+
export interface SSOOIDCExtensionConfiguration
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
7
|
+
DefaultExtensionConfiguration,
|
8
|
+
AwsRegionExtensionConfiguration,
|
9
|
+
HttpAuthExtensionConfiguration {}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export * from "./SSOOIDCClient";
|
2
|
+
export * from "./SSOOIDC";
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
5
|
+
export { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
|
6
|
+
export * from "./commands";
|
7
|
+
export * from "./models";
|
8
|
+
export { SSOOIDCServiceException } from "./models/SSOOIDCServiceException";
|
package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
import {
|
2
|
+
ServiceException as __ServiceException,
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
4
|
+
} from "@smithy/smithy-client";
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
6
|
+
export declare class SSOOIDCServiceException extends __ServiceException {
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
8
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./models_0";
|
@@ -0,0 +1,201 @@
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
2
|
+
import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
4
|
+
readonly name: "AccessDeniedException";
|
5
|
+
readonly $fault: "client";
|
6
|
+
error?: string;
|
7
|
+
error_description?: string;
|
8
|
+
constructor(
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
10
|
+
);
|
11
|
+
}
|
12
|
+
export declare class AuthorizationPendingException extends __BaseException {
|
13
|
+
readonly name: "AuthorizationPendingException";
|
14
|
+
readonly $fault: "client";
|
15
|
+
error?: string;
|
16
|
+
error_description?: string;
|
17
|
+
constructor(
|
18
|
+
opts: __ExceptionOptionType<AuthorizationPendingException, __BaseException>
|
19
|
+
);
|
20
|
+
}
|
21
|
+
export interface CreateTokenRequest {
|
22
|
+
clientId: string | undefined;
|
23
|
+
clientSecret: string | undefined;
|
24
|
+
grantType: string | undefined;
|
25
|
+
deviceCode?: string;
|
26
|
+
code?: string;
|
27
|
+
refreshToken?: string;
|
28
|
+
scope?: string[];
|
29
|
+
redirectUri?: string;
|
30
|
+
}
|
31
|
+
export interface CreateTokenResponse {
|
32
|
+
accessToken?: string;
|
33
|
+
tokenType?: string;
|
34
|
+
expiresIn?: number;
|
35
|
+
refreshToken?: string;
|
36
|
+
idToken?: string;
|
37
|
+
}
|
38
|
+
export declare class ExpiredTokenException extends __BaseException {
|
39
|
+
readonly name: "ExpiredTokenException";
|
40
|
+
readonly $fault: "client";
|
41
|
+
error?: string;
|
42
|
+
error_description?: string;
|
43
|
+
constructor(
|
44
|
+
opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
|
45
|
+
);
|
46
|
+
}
|
47
|
+
export declare class InternalServerException extends __BaseException {
|
48
|
+
readonly name: "InternalServerException";
|
49
|
+
readonly $fault: "server";
|
50
|
+
error?: string;
|
51
|
+
error_description?: string;
|
52
|
+
constructor(
|
53
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
54
|
+
);
|
55
|
+
}
|
56
|
+
export declare class InvalidClientException extends __BaseException {
|
57
|
+
readonly name: "InvalidClientException";
|
58
|
+
readonly $fault: "client";
|
59
|
+
error?: string;
|
60
|
+
error_description?: string;
|
61
|
+
constructor(
|
62
|
+
opts: __ExceptionOptionType<InvalidClientException, __BaseException>
|
63
|
+
);
|
64
|
+
}
|
65
|
+
export declare class InvalidGrantException extends __BaseException {
|
66
|
+
readonly name: "InvalidGrantException";
|
67
|
+
readonly $fault: "client";
|
68
|
+
error?: string;
|
69
|
+
error_description?: string;
|
70
|
+
constructor(
|
71
|
+
opts: __ExceptionOptionType<InvalidGrantException, __BaseException>
|
72
|
+
);
|
73
|
+
}
|
74
|
+
export declare class InvalidRequestException extends __BaseException {
|
75
|
+
readonly name: "InvalidRequestException";
|
76
|
+
readonly $fault: "client";
|
77
|
+
error?: string;
|
78
|
+
error_description?: string;
|
79
|
+
constructor(
|
80
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
81
|
+
);
|
82
|
+
}
|
83
|
+
export declare class InvalidScopeException extends __BaseException {
|
84
|
+
readonly name: "InvalidScopeException";
|
85
|
+
readonly $fault: "client";
|
86
|
+
error?: string;
|
87
|
+
error_description?: string;
|
88
|
+
constructor(
|
89
|
+
opts: __ExceptionOptionType<InvalidScopeException, __BaseException>
|
90
|
+
);
|
91
|
+
}
|
92
|
+
export declare class SlowDownException extends __BaseException {
|
93
|
+
readonly name: "SlowDownException";
|
94
|
+
readonly $fault: "client";
|
95
|
+
error?: string;
|
96
|
+
error_description?: string;
|
97
|
+
constructor(opts: __ExceptionOptionType<SlowDownException, __BaseException>);
|
98
|
+
}
|
99
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
100
|
+
readonly name: "UnauthorizedClientException";
|
101
|
+
readonly $fault: "client";
|
102
|
+
error?: string;
|
103
|
+
error_description?: string;
|
104
|
+
constructor(
|
105
|
+
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
106
|
+
);
|
107
|
+
}
|
108
|
+
export declare class UnsupportedGrantTypeException extends __BaseException {
|
109
|
+
readonly name: "UnsupportedGrantTypeException";
|
110
|
+
readonly $fault: "client";
|
111
|
+
error?: string;
|
112
|
+
error_description?: string;
|
113
|
+
constructor(
|
114
|
+
opts: __ExceptionOptionType<UnsupportedGrantTypeException, __BaseException>
|
115
|
+
);
|
116
|
+
}
|
117
|
+
export interface CreateTokenWithIAMRequest {
|
118
|
+
clientId: string | undefined;
|
119
|
+
grantType: string | undefined;
|
120
|
+
code?: string;
|
121
|
+
refreshToken?: string;
|
122
|
+
assertion?: string;
|
123
|
+
scope?: string[];
|
124
|
+
redirectUri?: string;
|
125
|
+
subjectToken?: string;
|
126
|
+
subjectTokenType?: string;
|
127
|
+
requestedTokenType?: string;
|
128
|
+
}
|
129
|
+
export interface CreateTokenWithIAMResponse {
|
130
|
+
accessToken?: string;
|
131
|
+
tokenType?: string;
|
132
|
+
expiresIn?: number;
|
133
|
+
refreshToken?: string;
|
134
|
+
idToken?: string;
|
135
|
+
issuedTokenType?: string;
|
136
|
+
scope?: string[];
|
137
|
+
}
|
138
|
+
export declare class InvalidRequestRegionException extends __BaseException {
|
139
|
+
readonly name: "InvalidRequestRegionException";
|
140
|
+
readonly $fault: "client";
|
141
|
+
error?: string;
|
142
|
+
error_description?: string;
|
143
|
+
endpoint?: string;
|
144
|
+
region?: string;
|
145
|
+
constructor(
|
146
|
+
opts: __ExceptionOptionType<InvalidRequestRegionException, __BaseException>
|
147
|
+
);
|
148
|
+
}
|
149
|
+
export declare class InvalidClientMetadataException extends __BaseException {
|
150
|
+
readonly name: "InvalidClientMetadataException";
|
151
|
+
readonly $fault: "client";
|
152
|
+
error?: string;
|
153
|
+
error_description?: string;
|
154
|
+
constructor(
|
155
|
+
opts: __ExceptionOptionType<InvalidClientMetadataException, __BaseException>
|
156
|
+
);
|
157
|
+
}
|
158
|
+
export interface RegisterClientRequest {
|
159
|
+
clientName: string | undefined;
|
160
|
+
clientType: string | undefined;
|
161
|
+
scopes?: string[];
|
162
|
+
}
|
163
|
+
export interface RegisterClientResponse {
|
164
|
+
clientId?: string;
|
165
|
+
clientSecret?: string;
|
166
|
+
clientIdIssuedAt?: number;
|
167
|
+
clientSecretExpiresAt?: number;
|
168
|
+
authorizationEndpoint?: string;
|
169
|
+
tokenEndpoint?: string;
|
170
|
+
}
|
171
|
+
export interface StartDeviceAuthorizationRequest {
|
172
|
+
clientId: string | undefined;
|
173
|
+
clientSecret: string | undefined;
|
174
|
+
startUrl: string | undefined;
|
175
|
+
}
|
176
|
+
export interface StartDeviceAuthorizationResponse {
|
177
|
+
deviceCode?: string;
|
178
|
+
userCode?: string;
|
179
|
+
verificationUri?: string;
|
180
|
+
verificationUriComplete?: string;
|
181
|
+
expiresIn?: number;
|
182
|
+
interval?: number;
|
183
|
+
}
|
184
|
+
export declare const CreateTokenRequestFilterSensitiveLog: (
|
185
|
+
obj: CreateTokenRequest
|
186
|
+
) => any;
|
187
|
+
export declare const CreateTokenResponseFilterSensitiveLog: (
|
188
|
+
obj: CreateTokenResponse
|
189
|
+
) => any;
|
190
|
+
export declare const CreateTokenWithIAMRequestFilterSensitiveLog: (
|
191
|
+
obj: CreateTokenWithIAMRequest
|
192
|
+
) => any;
|
193
|
+
export declare const CreateTokenWithIAMResponseFilterSensitiveLog: (
|
194
|
+
obj: CreateTokenWithIAMResponse
|
195
|
+
) => any;
|
196
|
+
export declare const RegisterClientResponseFilterSensitiveLog: (
|
197
|
+
obj: RegisterClientResponse
|
198
|
+
) => any;
|
199
|
+
export declare const StartDeviceAuthorizationRequestFilterSensitiveLog: (
|
200
|
+
obj: StartDeviceAuthorizationRequest
|
201
|
+
) => any;
|
@@ -0,0 +1,53 @@
|
|
1
|
+
import {
|
2
|
+
HttpRequest as __HttpRequest,
|
3
|
+
HttpResponse as __HttpResponse,
|
4
|
+
} from "@smithy/protocol-http";
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
6
|
+
import {
|
7
|
+
CreateTokenCommandInput,
|
8
|
+
CreateTokenCommandOutput,
|
9
|
+
} from "../commands/CreateTokenCommand";
|
10
|
+
import {
|
11
|
+
CreateTokenWithIAMCommandInput,
|
12
|
+
CreateTokenWithIAMCommandOutput,
|
13
|
+
} from "../commands/CreateTokenWithIAMCommand";
|
14
|
+
import {
|
15
|
+
RegisterClientCommandInput,
|
16
|
+
RegisterClientCommandOutput,
|
17
|
+
} from "../commands/RegisterClientCommand";
|
18
|
+
import {
|
19
|
+
StartDeviceAuthorizationCommandInput,
|
20
|
+
StartDeviceAuthorizationCommandOutput,
|
21
|
+
} from "../commands/StartDeviceAuthorizationCommand";
|
22
|
+
export declare const se_CreateTokenCommand: (
|
23
|
+
input: CreateTokenCommandInput,
|
24
|
+
context: __SerdeContext
|
25
|
+
) => Promise<__HttpRequest>;
|
26
|
+
export declare const se_CreateTokenWithIAMCommand: (
|
27
|
+
input: CreateTokenWithIAMCommandInput,
|
28
|
+
context: __SerdeContext
|
29
|
+
) => Promise<__HttpRequest>;
|
30
|
+
export declare const se_RegisterClientCommand: (
|
31
|
+
input: RegisterClientCommandInput,
|
32
|
+
context: __SerdeContext
|
33
|
+
) => Promise<__HttpRequest>;
|
34
|
+
export declare const se_StartDeviceAuthorizationCommand: (
|
35
|
+
input: StartDeviceAuthorizationCommandInput,
|
36
|
+
context: __SerdeContext
|
37
|
+
) => Promise<__HttpRequest>;
|
38
|
+
export declare const de_CreateTokenCommand: (
|
39
|
+
output: __HttpResponse,
|
40
|
+
context: __SerdeContext
|
41
|
+
) => Promise<CreateTokenCommandOutput>;
|
42
|
+
export declare const de_CreateTokenWithIAMCommand: (
|
43
|
+
output: __HttpResponse,
|
44
|
+
context: __SerdeContext
|
45
|
+
) => Promise<CreateTokenWithIAMCommandOutput>;
|
46
|
+
export declare const de_RegisterClientCommand: (
|
47
|
+
output: __HttpResponse,
|
48
|
+
context: __SerdeContext
|
49
|
+
) => Promise<RegisterClientCommandOutput>;
|
50
|
+
export declare const de_StartDeviceAuthorizationCommand: (
|
51
|
+
output: __HttpResponse,
|
52
|
+
context: __SerdeContext
|
53
|
+
) => Promise<StartDeviceAuthorizationCommandOutput>;
|
@@ -0,0 +1,110 @@
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
2
|
+
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
3
|
+
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
4
|
+
runtime: string;
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
7
|
+
>;
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
9
|
+
credentialDefaultProvider: (
|
10
|
+
input: any
|
11
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
12
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
13
|
+
import("@smithy/types").UserAgent
|
14
|
+
>;
|
15
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
16
|
+
region: string | import("@smithy/types").Provider<any>;
|
17
|
+
requestHandler:
|
18
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
19
|
+
| RequestHandler;
|
20
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
21
|
+
sha256: import("@smithy/types").HashConstructor;
|
22
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
23
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
24
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
25
|
+
apiVersion: string;
|
26
|
+
urlParser: import("@smithy/types").UrlParser;
|
27
|
+
base64Decoder: import("@smithy/types").Decoder;
|
28
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
29
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
30
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
31
|
+
disableHostPrefix: boolean;
|
32
|
+
serviceId: string;
|
33
|
+
logger: import("@smithy/types").Logger;
|
34
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
35
|
+
endpoint?:
|
36
|
+
| ((
|
37
|
+
| string
|
38
|
+
| import("@smithy/types").Endpoint
|
39
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
40
|
+
| import("@smithy/types").EndpointV2
|
41
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
42
|
+
) &
|
43
|
+
(
|
44
|
+
| string
|
45
|
+
| import("@smithy/types").Provider<string>
|
46
|
+
| import("@smithy/types").Endpoint
|
47
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
48
|
+
| import("@smithy/types").EndpointV2
|
49
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
50
|
+
))
|
51
|
+
| undefined;
|
52
|
+
endpointProvider: (
|
53
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
54
|
+
context?: {
|
55
|
+
logger?: import("@smithy/types").Logger | undefined;
|
56
|
+
}
|
57
|
+
) => import("@smithy/types").EndpointV2;
|
58
|
+
tls?: boolean | undefined;
|
59
|
+
retryStrategy?:
|
60
|
+
| import("@smithy/types").RetryStrategy
|
61
|
+
| import("@smithy/types").RetryStrategyV2
|
62
|
+
| undefined;
|
63
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
64
|
+
httpAuthSchemes:
|
65
|
+
| import("@smithy/types").HttpAuthScheme[]
|
66
|
+
| (
|
67
|
+
| {
|
68
|
+
schemeId: string;
|
69
|
+
identityProvider: (
|
70
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
71
|
+
) =>
|
72
|
+
| import("@smithy/types").IdentityProvider<
|
73
|
+
import("@smithy/types").Identity
|
74
|
+
>
|
75
|
+
| undefined;
|
76
|
+
signer: import("@aws-sdk/core").AwsSdkSigV4Signer;
|
77
|
+
}
|
78
|
+
| {
|
79
|
+
schemeId: string;
|
80
|
+
identityProvider: (
|
81
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
82
|
+
) =>
|
83
|
+
| import("@smithy/types").IdentityProvider<
|
84
|
+
import("@smithy/types").Identity
|
85
|
+
>
|
86
|
+
| (() => Promise<{}>);
|
87
|
+
signer: import("@smithy/core").NoAuthSigner;
|
88
|
+
}
|
89
|
+
)[];
|
90
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
91
|
+
credentials?:
|
92
|
+
| import("@smithy/types").AwsCredentialIdentity
|
93
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
94
|
+
| undefined;
|
95
|
+
signer?:
|
96
|
+
| import("@smithy/types").RequestSigner
|
97
|
+
| ((
|
98
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
99
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
100
|
+
| undefined;
|
101
|
+
signingEscapePath?: boolean | undefined;
|
102
|
+
systemClockOffset?: number | undefined;
|
103
|
+
signingRegion?: string | undefined;
|
104
|
+
signerConstructor?:
|
105
|
+
| (new (
|
106
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
107
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
108
|
+
) => import("@smithy/types").RequestSigner)
|
109
|
+
| undefined;
|
110
|
+
};
|
@@ -0,0 +1,114 @@
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
2
|
+
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
3
|
+
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
4
|
+
runtime: string;
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
7
|
+
>;
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
9
|
+
credentialDefaultProvider: (
|
10
|
+
init?:
|
11
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
12
|
+
| undefined
|
13
|
+
) => import("@smithy/types").MemoizedProvider<
|
14
|
+
import("@smithy/types").AwsCredentialIdentity
|
15
|
+
>;
|
16
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
17
|
+
import("@smithy/types").UserAgent
|
18
|
+
>;
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
20
|
+
region: string | import("@smithy/types").Provider<string>;
|
21
|
+
requestHandler:
|
22
|
+
| RequestHandler
|
23
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
24
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
25
|
+
sha256: import("@smithy/types").HashConstructor;
|
26
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
27
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
28
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
29
|
+
apiVersion: string;
|
30
|
+
urlParser: import("@smithy/types").UrlParser;
|
31
|
+
base64Decoder: import("@smithy/types").Decoder;
|
32
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
33
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
34
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
35
|
+
disableHostPrefix: boolean;
|
36
|
+
serviceId: string;
|
37
|
+
logger: import("@smithy/types").Logger;
|
38
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
39
|
+
endpoint?:
|
40
|
+
| ((
|
41
|
+
| string
|
42
|
+
| import("@smithy/types").Endpoint
|
43
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
44
|
+
| import("@smithy/types").EndpointV2
|
45
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
46
|
+
) &
|
47
|
+
(
|
48
|
+
| string
|
49
|
+
| import("@smithy/types").Provider<string>
|
50
|
+
| import("@smithy/types").Endpoint
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
52
|
+
| import("@smithy/types").EndpointV2
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
54
|
+
))
|
55
|
+
| undefined;
|
56
|
+
endpointProvider: (
|
57
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
58
|
+
context?: {
|
59
|
+
logger?: import("@smithy/types").Logger | undefined;
|
60
|
+
}
|
61
|
+
) => import("@smithy/types").EndpointV2;
|
62
|
+
tls?: boolean | undefined;
|
63
|
+
retryStrategy?:
|
64
|
+
| import("@smithy/types").RetryStrategy
|
65
|
+
| import("@smithy/types").RetryStrategyV2
|
66
|
+
| undefined;
|
67
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
68
|
+
httpAuthSchemes:
|
69
|
+
| import("@smithy/types").HttpAuthScheme[]
|
70
|
+
| (
|
71
|
+
| {
|
72
|
+
schemeId: string;
|
73
|
+
identityProvider: (
|
74
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
75
|
+
) =>
|
76
|
+
| import("@smithy/types").IdentityProvider<
|
77
|
+
import("@smithy/types").Identity
|
78
|
+
>
|
79
|
+
| undefined;
|
80
|
+
signer: import("@aws-sdk/core").AwsSdkSigV4Signer;
|
81
|
+
}
|
82
|
+
| {
|
83
|
+
schemeId: string;
|
84
|
+
identityProvider: (
|
85
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
86
|
+
) =>
|
87
|
+
| import("@smithy/types").IdentityProvider<
|
88
|
+
import("@smithy/types").Identity
|
89
|
+
>
|
90
|
+
| (() => Promise<{}>);
|
91
|
+
signer: import("@smithy/core").NoAuthSigner;
|
92
|
+
}
|
93
|
+
)[];
|
94
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
95
|
+
credentials?:
|
96
|
+
| import("@smithy/types").AwsCredentialIdentity
|
97
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
98
|
+
| undefined;
|
99
|
+
signer?:
|
100
|
+
| import("@smithy/types").RequestSigner
|
101
|
+
| ((
|
102
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
103
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
104
|
+
| undefined;
|
105
|
+
signingEscapePath?: boolean | undefined;
|
106
|
+
systemClockOffset?: number | undefined;
|
107
|
+
signingRegion?: string | undefined;
|
108
|
+
signerConstructor?:
|
109
|
+
| (new (
|
110
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
111
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
112
|
+
) => import("@smithy/types").RequestSigner)
|
113
|
+
| undefined;
|
114
|
+
};
|