@aws-sdk/nested-clients 3.997.24 → 3.997.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/dist-cjs/submodules/cognito-identity/index.js +13 -25
  2. package/dist-cjs/submodules/signin/index.js +13 -17
  3. package/dist-cjs/submodules/sso/index.js +12 -15
  4. package/dist-cjs/submodules/sso-oidc/index.js +12 -15
  5. package/dist-cjs/submodules/sts/index.js +13 -25
  6. package/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
  7. package/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
  8. package/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
  9. package/dist-es/submodules/cognito-identity/index.js +1 -0
  10. package/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +0 -2
  11. package/dist-es/submodules/cognito-identity/runtimeConfig.js +1 -2
  12. package/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
  13. package/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +2 -0
  14. package/dist-es/submodules/signin/commandBuilder.js +8 -0
  15. package/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -17
  16. package/dist-es/submodules/signin/index.js +1 -0
  17. package/dist-es/submodules/signin/runtimeConfig.browser.js +0 -2
  18. package/dist-es/submodules/signin/runtimeConfig.js +1 -2
  19. package/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
  20. package/dist-es/submodules/signin/runtimeConfig.shared.js +2 -0
  21. package/dist-es/submodules/sso/commandBuilder.js +6 -0
  22. package/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
  23. package/dist-es/submodules/sso/index.js +1 -0
  24. package/dist-es/submodules/sso/runtimeConfig.browser.js +0 -2
  25. package/dist-es/submodules/sso/runtimeConfig.js +1 -2
  26. package/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
  27. package/dist-es/submodules/sso/runtimeConfig.shared.js +2 -0
  28. package/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
  29. package/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
  30. package/dist-es/submodules/sso-oidc/index.js +1 -0
  31. package/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +0 -2
  32. package/dist-es/submodules/sso-oidc/runtimeConfig.js +1 -2
  33. package/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
  34. package/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +2 -0
  35. package/dist-es/submodules/sts/commandBuilder.js +6 -0
  36. package/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
  37. package/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
  38. package/dist-es/submodules/sts/index.js +1 -0
  39. package/dist-es/submodules/sts/runtimeConfig.browser.js +0 -2
  40. package/dist-es/submodules/sts/runtimeConfig.js +1 -2
  41. package/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
  42. package/dist-es/submodules/sts/runtimeConfig.shared.js +2 -0
  43. package/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
  44. package/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -8
  45. package/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -8
  46. package/dist-types/submodules/cognito-identity/index.d.ts +1 -0
  47. package/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +1 -1
  48. package/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +1 -1
  49. package/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +1 -1
  50. package/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  51. package/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
  52. package/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
  53. package/dist-types/submodules/signin/index.d.ts +1 -0
  54. package/dist-types/submodules/signin/runtimeConfig.browser.d.ts +1 -1
  55. package/dist-types/submodules/signin/runtimeConfig.d.ts +1 -1
  56. package/dist-types/submodules/signin/runtimeConfig.native.d.ts +1 -1
  57. package/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  58. package/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
  59. package/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
  60. package/dist-types/submodules/sso/index.d.ts +1 -0
  61. package/dist-types/submodules/sso/runtimeConfig.browser.d.ts +1 -1
  62. package/dist-types/submodules/sso/runtimeConfig.d.ts +1 -1
  63. package/dist-types/submodules/sso/runtimeConfig.native.d.ts +1 -1
  64. package/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  65. package/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
  66. package/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
  67. package/dist-types/submodules/sso-oidc/index.d.ts +1 -0
  68. package/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +1 -1
  69. package/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +1 -1
  70. package/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +1 -1
  71. package/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  72. package/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
  73. package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -8
  74. package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -8
  75. package/dist-types/submodules/sts/index.d.ts +1 -0
  76. package/dist-types/submodules/sts/runtimeConfig.browser.d.ts +1 -1
  77. package/dist-types/submodules/sts/runtimeConfig.d.ts +1 -1
  78. package/dist-types/submodules/sts/runtimeConfig.native.d.ts +1 -1
  79. package/dist-types/submodules/sts/runtimeConfig.shared.d.ts +1 -0
  80. package/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
  81. package/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +7 -16
  82. package/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +7 -16
  83. package/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
  84. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +1 -1
  85. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +1 -1
  86. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +1 -1
  87. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  88. package/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
  89. package/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
  90. package/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
  91. package/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +1 -1
  92. package/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +1 -1
  93. package/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +1 -1
  94. package/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  95. package/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
  96. package/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
  97. package/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
  98. package/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +1 -1
  99. package/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +1 -1
  100. package/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +1 -1
  101. package/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  102. package/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
  103. package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
  104. package/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
  105. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +1 -1
  106. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +1 -1
  107. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +1 -1
  108. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  109. package/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
  110. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +7 -16
  111. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +7 -16
  112. package/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
  113. package/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +1 -1
  114. package/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +1 -1
  115. package/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +1 -1
  116. package/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +1 -0
  117. package/package.json +8 -10
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  CreateOAuth2TokenRequest,
5
4
  CreateOAuth2TokenResponse,
6
5
  } from "../models/models_0";
7
- import { SigninClientResolvedConfig } from "../SigninClient";
8
6
  export { __MetadataBearer };
9
- export { $Command };
10
7
  export interface CreateOAuth2TokenCommandInput
11
8
  extends CreateOAuth2TokenRequest {}
12
9
  export interface CreateOAuth2TokenCommandOutput
@@ -18,7 +15,7 @@ declare const CreateOAuth2TokenCommand_base: {
18
15
  ): import("@smithy/core/client").CommandImpl<
19
16
  CreateOAuth2TokenCommandInput,
20
17
  CreateOAuth2TokenCommandOutput,
21
- SigninClientResolvedConfig,
18
+ import("..").SigninClientResolvedConfig,
22
19
  CreateOAuth2TokenCommandInput,
23
20
  CreateOAuth2TokenCommandOutput
24
21
  >;
@@ -27,13 +24,11 @@ declare const CreateOAuth2TokenCommand_base: {
27
24
  ): import("@smithy/core/client").CommandImpl<
28
25
  CreateOAuth2TokenCommandInput,
29
26
  CreateOAuth2TokenCommandOutput,
30
- SigninClientResolvedConfig,
27
+ import("..").SigninClientResolvedConfig,
31
28
  CreateOAuth2TokenCommandInput,
32
29
  CreateOAuth2TokenCommandOutput
33
30
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
32
  };
38
33
  export declare class CreateOAuth2TokenCommand extends CreateOAuth2TokenCommand_base {
39
34
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SigninExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/enums";
9
10
  export * from "./models/errors";
@@ -20,7 +20,6 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
20
20
  | import("@smithy/core/protocols").HttpHandler<any>
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
- sha256: import("@smithy/types").HashConstructor;
24
23
  streamCollector: (
25
24
  stream:
26
25
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -16,7 +16,6 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
16
16
  | RequestHandler
17
17
  | import("@smithy/core/protocols").HttpHandler<any>;
18
18
  retryMode: string | import("@smithy/types").Provider<string>;
19
- sha256: import("@smithy/types").HashConstructor;
20
19
  streamCollector: (
21
20
  stream:
22
21
  | import("stream").Readable
@@ -37,6 +36,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
37
36
  [setting: string]: unknown;
38
37
  };
39
38
  apiVersion: string;
39
+ sha256: import("@smithy/types").HashConstructor;
40
40
  urlParser: import("@smithy/types").UrlParser;
41
41
  base64Decoder: import("@smithy/types").Decoder;
42
42
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -1,7 +1,6 @@
1
1
  import { SigninClientConfig } from "./SigninClient";
2
2
  export declare const getRuntimeConfig: (config: SigninClientConfig) => {
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,6 +17,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
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
23
  streamCollector: (
@@ -52,6 +52,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
52
52
  defaultNamespace?: string;
53
53
  };
54
54
  serviceId: string;
55
+ sha256: import("@smithy/types").HashConstructor;
55
56
  urlParser: import("@smithy/types").UrlParser;
56
57
  utf8Decoder: import("@smithy/types").Decoder;
57
58
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import { SSOClientResolvedConfig } from "./SSOClient";
3
+ export declare const command: <
4
+ I extends import("./commands").GetRoleCredentialsCommandInput,
5
+ O extends import("./commands").GetRoleCredentialsCommandOutput
6
+ >(
7
+ added: EndpointParameterInstructions,
8
+ plugins: (
9
+ CommandCtor: any,
10
+ clientStack: any,
11
+ config: any,
12
+ options: any
13
+ ) => import("@smithy/types").Pluggable<any, any>[],
14
+ op: string,
15
+ $: import("@smithy/types").StaticOperationSchema,
16
+ smithyContext?: Record<string, unknown>
17
+ ) => {
18
+ new (input: I): import("@smithy/core/client").CommandImpl<
19
+ I,
20
+ O,
21
+ SSOClientResolvedConfig,
22
+ import("./commands").GetRoleCredentialsCommandInput,
23
+ import("./commands").GetRoleCredentialsCommandOutput
24
+ >;
25
+ new (
26
+ ...[input]: import("@smithy/types").OptionalParameter<I>
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ I,
29
+ O,
30
+ SSOClientResolvedConfig,
31
+ import("./commands").GetRoleCredentialsCommandInput,
32
+ import("./commands").GetRoleCredentialsCommandOutput
33
+ >;
34
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
35
+ };
36
+ export declare const _ep0: EndpointParameterInstructions;
37
+ export declare const _mw0: (
38
+ Command: any,
39
+ cs: any,
40
+ config: any,
41
+ o: any
42
+ ) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetRoleCredentialsRequest,
5
4
  GetRoleCredentialsResponse,
6
5
  } from "../models/models_0";
7
- import { SSOClientResolvedConfig } from "../SSOClient";
8
6
  export { __MetadataBearer };
9
- export { $Command };
10
7
  export interface GetRoleCredentialsCommandInput
11
8
  extends GetRoleCredentialsRequest {}
12
9
  export interface GetRoleCredentialsCommandOutput
@@ -18,7 +15,7 @@ declare const GetRoleCredentialsCommand_base: {
18
15
  ): import("@smithy/core/client").CommandImpl<
19
16
  GetRoleCredentialsCommandInput,
20
17
  GetRoleCredentialsCommandOutput,
21
- SSOClientResolvedConfig,
18
+ import("..").SSOClientResolvedConfig,
22
19
  GetRoleCredentialsCommandInput,
23
20
  GetRoleCredentialsCommandOutput
24
21
  >;
@@ -27,13 +24,11 @@ declare const GetRoleCredentialsCommand_base: {
27
24
  ): import("@smithy/core/client").CommandImpl<
28
25
  GetRoleCredentialsCommandInput,
29
26
  GetRoleCredentialsCommandOutput,
30
- SSOClientResolvedConfig,
27
+ import("..").SSOClientResolvedConfig,
31
28
  GetRoleCredentialsCommandInput,
32
29
  GetRoleCredentialsCommandOutput
33
30
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
32
  };
38
33
  export declare class GetRoleCredentialsCommand extends GetRoleCredentialsCommand_base {
39
34
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SSOExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
@@ -15,7 +15,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
15
15
  | import("@smithy/core/protocols").HttpHandler<any>
16
16
  | RequestHandler;
17
17
  retryMode: string | import("@smithy/types").Provider<string>;
18
- sha256: import("@smithy/types").HashConstructor;
19
18
  streamCollector: (
20
19
  stream:
21
20
  | import("stream").Readable
@@ -37,6 +36,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
37
36
  [setting: string]: unknown;
38
37
  };
39
38
  apiVersion: string;
39
+ sha256: import("@smithy/types").HashConstructor;
40
40
  urlParser: import("@smithy/types").UrlParser;
41
41
  base64Decoder: import("@smithy/types").Decoder;
42
42
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -16,7 +16,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
16
16
  | RequestHandler
17
17
  | import("@smithy/core/protocols").HttpHandler<any>;
18
18
  retryMode: string | import("@smithy/types").Provider<string>;
19
- sha256: import("@smithy/types").HashConstructor;
20
19
  streamCollector: (
21
20
  stream:
22
21
  | import("stream").Readable
@@ -37,6 +36,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
37
36
  [setting: string]: unknown;
38
37
  };
39
38
  apiVersion: string;
39
+ sha256: import("@smithy/types").HashConstructor;
40
40
  urlParser: import("@smithy/types").UrlParser;
41
41
  base64Decoder: import("@smithy/types").Decoder;
42
42
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -1,7 +1,6 @@
1
1
  import { SSOClientConfig } from "./SSOClient";
2
2
  export declare const getRuntimeConfig: (config: SSOClientConfig) => {
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,6 +17,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
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
23
  streamCollector: (
@@ -52,6 +52,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
52
52
  defaultNamespace?: string;
53
53
  };
54
54
  serviceId: string;
55
+ sha256: import("@smithy/types").HashConstructor;
55
56
  urlParser: import("@smithy/types").UrlParser;
56
57
  utf8Decoder: import("@smithy/types").Decoder;
57
58
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import { SSOOIDCClientResolvedConfig } from "./SSOOIDCClient";
3
+ export declare const command: <
4
+ I extends import("./commands").CreateTokenCommandInput,
5
+ O extends import("./commands").CreateTokenCommandOutput
6
+ >(
7
+ added: EndpointParameterInstructions,
8
+ plugins: (
9
+ CommandCtor: any,
10
+ clientStack: any,
11
+ config: any,
12
+ options: any
13
+ ) => import("@smithy/types").Pluggable<any, any>[],
14
+ op: string,
15
+ $: import("@smithy/types").StaticOperationSchema,
16
+ smithyContext?: Record<string, unknown>
17
+ ) => {
18
+ new (input: I): import("@smithy/core/client").CommandImpl<
19
+ I,
20
+ O,
21
+ SSOOIDCClientResolvedConfig,
22
+ import("./commands").CreateTokenCommandInput,
23
+ import("./commands").CreateTokenCommandOutput
24
+ >;
25
+ new (
26
+ ...[input]: import("@smithy/types").OptionalParameter<I>
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ I,
29
+ O,
30
+ SSOOIDCClientResolvedConfig,
31
+ import("./commands").CreateTokenCommandInput,
32
+ import("./commands").CreateTokenCommandOutput
33
+ >;
34
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
35
+ };
36
+ export declare const _ep0: EndpointParameterInstructions;
37
+ export declare const _mw0: (
38
+ Command: any,
39
+ cs: any,
40
+ config: any,
41
+ o: any
42
+ ) => never[];
@@ -1,9 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
4
- import { SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
5
3
  export { __MetadataBearer };
6
- export { $Command };
7
4
  export interface CreateTokenCommandInput extends CreateTokenRequest {}
8
5
  export interface CreateTokenCommandOutput
9
6
  extends CreateTokenResponse,
@@ -14,7 +11,7 @@ declare const CreateTokenCommand_base: {
14
11
  ): import("@smithy/core/client").CommandImpl<
15
12
  CreateTokenCommandInput,
16
13
  CreateTokenCommandOutput,
17
- SSOOIDCClientResolvedConfig,
14
+ import("..").SSOOIDCClientResolvedConfig,
18
15
  CreateTokenCommandInput,
19
16
  CreateTokenCommandOutput
20
17
  >;
@@ -23,13 +20,11 @@ declare const CreateTokenCommand_base: {
23
20
  ): import("@smithy/core/client").CommandImpl<
24
21
  CreateTokenCommandInput,
25
22
  CreateTokenCommandOutput,
26
- SSOOIDCClientResolvedConfig,
23
+ import("..").SSOOIDCClientResolvedConfig,
27
24
  CreateTokenCommandInput,
28
25
  CreateTokenCommandOutput
29
26
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
28
  };
34
29
  export declare class CreateTokenCommand extends CreateTokenCommand_base {
35
30
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/enums";
9
10
  export * from "./models/errors";
@@ -15,7 +15,6 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
15
15
  | import("@smithy/core/protocols").HttpHandler<any>
16
16
  | RequestHandler;
17
17
  retryMode: string | import("@smithy/types").Provider<string>;
18
- sha256: import("@smithy/types").HashConstructor;
19
18
  streamCollector: (
20
19
  stream:
21
20
  | import("stream").Readable
@@ -37,6 +36,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
37
36
  [setting: string]: unknown;
38
37
  };
39
38
  apiVersion: string;
39
+ sha256: import("@smithy/types").HashConstructor;
40
40
  urlParser: import("@smithy/types").UrlParser;
41
41
  base64Decoder: import("@smithy/types").Decoder;
42
42
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -16,7 +16,6 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
16
16
  | RequestHandler
17
17
  | import("@smithy/core/protocols").HttpHandler<any>;
18
18
  retryMode: string | import("@smithy/types").Provider<string>;
19
- sha256: import("@smithy/types").HashConstructor;
20
19
  streamCollector: (
21
20
  stream:
22
21
  | import("stream").Readable
@@ -37,6 +36,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
37
36
  [setting: string]: unknown;
38
37
  };
39
38
  apiVersion: string;
39
+ sha256: import("@smithy/types").HashConstructor;
40
40
  urlParser: import("@smithy/types").UrlParser;
41
41
  base64Decoder: import("@smithy/types").Decoder;
42
42
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -1,7 +1,6 @@
1
1
  import { SSOOIDCClientConfig } from "./SSOOIDCClient";
2
2
  export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
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,6 +17,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
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
23
  streamCollector: (
@@ -52,6 +52,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
52
52
  defaultNamespace?: string;
53
53
  };
54
54
  serviceId: string;
55
+ sha256: import("@smithy/types").HashConstructor;
55
56
  urlParser: import("@smithy/types").UrlParser;
56
57
  utf8Decoder: import("@smithy/types").Decoder;
57
58
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ STSClientResolvedConfig,
6
+ } from "./STSClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ STSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ STSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- STSClientResolvedConfig,
8
- } from "../STSClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface AssumeRoleCommandInput extends AssumeRoleRequest {}
12
5
  export interface AssumeRoleCommandOutput
13
6
  extends AssumeRoleResponse,
@@ -18,22 +11,20 @@ declare const AssumeRoleCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  AssumeRoleCommandInput,
20
13
  AssumeRoleCommandOutput,
21
- STSClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").STSClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: AssumeRoleCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  AssumeRoleCommandInput,
29
22
  AssumeRoleCommandOutput,
30
- STSClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").STSClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class AssumeRoleCommand extends AssumeRoleCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  AssumeRoleWithWebIdentityRequest,
5
4
  AssumeRoleWithWebIdentityResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- STSClientResolvedConfig,
11
- } from "../STSClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface AssumeRoleWithWebIdentityCommandInput
15
8
  extends AssumeRoleWithWebIdentityRequest {}
16
9
  export interface AssumeRoleWithWebIdentityCommandOutput
@@ -22,22 +15,20 @@ declare const AssumeRoleWithWebIdentityCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  AssumeRoleWithWebIdentityCommandInput,
24
17
  AssumeRoleWithWebIdentityCommandOutput,
25
- STSClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").STSClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: AssumeRoleWithWebIdentityCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  AssumeRoleWithWebIdentityCommandInput,
33
26
  AssumeRoleWithWebIdentityCommandOutput,
34
- STSClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").STSClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class AssumeRoleWithWebIdentityCommand extends AssumeRoleWithWebIdentityCommand_base {
43
34
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { STSExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
@@ -20,7 +20,6 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
20
20
  | import("@smithy/core/protocols").HttpHandler<any>
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
- sha256: import("@smithy/types").HashConstructor;
24
23
  streamCollector: (
25
24
  stream:
26
25
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -45,7 +45,6 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
45
45
  | RequestHandler
46
46
  | import("@smithy/core/protocols").HttpHandler<any>;
47
47
  retryMode: string | import("@smithy/types").Provider<string>;
48
- sha256: import("@smithy/types").HashConstructor;
49
48
  sigv4aSigningRegionSet:
50
49
  | string[]
51
50
  | import("@smithy/types").Provider<string[] | undefined>;
@@ -69,6 +68,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
69
68
  [setting: string]: unknown;
70
69
  };
71
70
  apiVersion: string;
71
+ sha256: import("@smithy/types").HashConstructor;
72
72
  urlParser: import("@smithy/types").UrlParser;
73
73
  base64Decoder: import("@smithy/types").Decoder;
74
74
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -1,7 +1,6 @@
1
1
  import { STSClientConfig } from "./STSClient";
2
2
  export declare const getRuntimeConfig: (config: STSClientConfig) => {
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,6 +17,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
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
23
  streamCollector: (
@@ -53,6 +53,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
53
53
  defaultNamespace?: string;
54
54
  };
55
55
  serviceId: string;
56
+ sha256: import("@smithy/types").HashConstructor;
56
57
  signerConstructor:
57
58
  | (new (
58
59
  options: import("@smithy/signature-v4").SignatureV4Init &
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/nested-clients",
3
- "version": "3.997.24",
3
+ "version": "3.997.26",
4
4
  "description": "Nested clients for AWS SDK packages.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,15 +28,13 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-crypto/sha256-browser": "5.2.0",
32
- "@aws-crypto/sha256-js": "5.2.0",
33
- "@aws-sdk/core": "^3.974.24",
34
- "@aws-sdk/signature-v4-multi-region": "^3.996.36",
35
- "@aws-sdk/types": "^3.973.14",
36
- "@smithy/core": "^3.27.0",
37
- "@smithy/fetch-http-handler": "^5.6.0",
38
- "@smithy/node-http-handler": "^4.9.0",
39
- "@smithy/types": "^4.15.0",
31
+ "@aws-sdk/core": "^3.974.26",
32
+ "@aws-sdk/signature-v4-multi-region": "^3.996.38",
33
+ "@aws-sdk/types": "^3.973.15",
34
+ "@smithy/core": "^3.29.0",
35
+ "@smithy/fetch-http-handler": "^5.6.2",
36
+ "@smithy/node-http-handler": "^4.9.2",
37
+ "@smithy/types": "^4.15.1",
40
38
  "tslib": "^2.6.2"
41
39
  },
42
40
  "devDependencies": {