@aws-sdk/client-signin 3.1077.0 → 3.1079.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist-cjs/index.js +20 -106
  2. package/dist-es/commandBuilder.js +11 -0
  3. package/dist-es/commands/CreateOAuth2TokenCommand.js +2 -17
  4. package/dist-es/commands/DeleteConsoleAuthorizationConfigurationCommand.js +2 -17
  5. package/dist-es/commands/DeleteResourcePermissionStatementCommand.js +2 -17
  6. package/dist-es/commands/GetConsoleAuthorizationConfigurationCommand.js +2 -17
  7. package/dist-es/commands/GetResourcePolicyCommand.js +2 -17
  8. package/dist-es/commands/ListResourcePermissionStatementsCommand.js +2 -17
  9. package/dist-es/commands/PutConsoleAuthorizationConfigurationCommand.js +2 -17
  10. package/dist-es/commands/PutResourcePermissionStatementCommand.js +2 -17
  11. package/dist-es/index.js +1 -0
  12. package/dist-types/commandBuilder.d.ts +22 -0
  13. package/dist-types/commands/CreateOAuth2TokenCommand.d.ts +3 -8
  14. package/dist-types/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +3 -8
  15. package/dist-types/commands/DeleteResourcePermissionStatementCommand.d.ts +3 -8
  16. package/dist-types/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +3 -8
  17. package/dist-types/commands/GetResourcePolicyCommand.d.ts +3 -8
  18. package/dist-types/commands/ListResourcePermissionStatementsCommand.d.ts +3 -8
  19. package/dist-types/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +3 -8
  20. package/dist-types/commands/PutResourcePermissionStatementCommand.d.ts +3 -8
  21. package/dist-types/index.d.ts +1 -0
  22. package/dist-types/ts3.4/commandBuilder.d.ts +47 -0
  23. package/dist-types/ts3.4/commands/CreateOAuth2TokenCommand.d.ts +7 -16
  24. package/dist-types/ts3.4/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +7 -16
  25. package/dist-types/ts3.4/commands/DeleteResourcePermissionStatementCommand.d.ts +7 -16
  26. package/dist-types/ts3.4/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +7 -16
  27. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +7 -16
  28. package/dist-types/ts3.4/commands/ListResourcePermissionStatementsCommand.d.ts +7 -16
  29. package/dist-types/ts3.4/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/commands/PutResourcePermissionStatementCommand.d.ts +7 -16
  31. package/dist-types/ts3.4/index.d.ts +1 -0
  32. package/package.json +9 -9
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { NoAuthSigner, getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -78,7 +79,7 @@ const commonParams = {
78
79
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
79
80
  };
80
81
 
81
- var version = "3.1076.0";
82
+ var version = "3.1078.0";
82
83
  var packageInfo = {
83
84
  version: version};
84
85
 
@@ -730,124 +731,37 @@ class SigninClient extends Client {
730
731
  }
731
732
  }
732
733
 
733
- class CreateOAuth2TokenCommand extends Command
734
- .classBuilder()
735
- .ep({
736
- ...commonParams,
734
+ const command = makeBuilder(commonParams, "Signin", "SigninClient", getEndpointPlugin);
735
+ const _ep0 = {
737
736
  IsControlPlane: { type: "staticContextParams", value: false },
738
- })
739
- .m(function (Command, cs, config, o) {
740
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
741
- })
742
- .s("Signin", "CreateOAuth2Token", {})
743
- .n("SigninClient", "CreateOAuth2TokenCommand")
744
- .sc(CreateOAuth2Token$)
745
- .build() {
737
+ };
738
+ const _ep1 = {
739
+ IsControlPlane: { type: "staticContextParams", value: true },
740
+ };
741
+ const _mw0 = (Command, cs, config, o) => [];
742
+
743
+ class CreateOAuth2TokenCommand extends command(_ep0, _mw0, "CreateOAuth2Token", CreateOAuth2Token$) {
746
744
  }
747
745
 
748
- class DeleteConsoleAuthorizationConfigurationCommand extends Command
749
- .classBuilder()
750
- .ep({
751
- ...commonParams,
752
- IsControlPlane: { type: "staticContextParams", value: true },
753
- })
754
- .m(function (Command, cs, config, o) {
755
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
756
- })
757
- .s("Signin", "DeleteConsoleAuthorizationConfiguration", {})
758
- .n("SigninClient", "DeleteConsoleAuthorizationConfigurationCommand")
759
- .sc(DeleteConsoleAuthorizationConfiguration$)
760
- .build() {
746
+ class DeleteConsoleAuthorizationConfigurationCommand extends command(_ep1, _mw0, "DeleteConsoleAuthorizationConfiguration", DeleteConsoleAuthorizationConfiguration$) {
761
747
  }
762
748
 
763
- class DeleteResourcePermissionStatementCommand extends Command
764
- .classBuilder()
765
- .ep({
766
- ...commonParams,
767
- IsControlPlane: { type: "staticContextParams", value: true },
768
- })
769
- .m(function (Command, cs, config, o) {
770
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
771
- })
772
- .s("Signin", "DeleteResourcePermissionStatement", {})
773
- .n("SigninClient", "DeleteResourcePermissionStatementCommand")
774
- .sc(DeleteResourcePermissionStatement$)
775
- .build() {
749
+ class DeleteResourcePermissionStatementCommand extends command(_ep1, _mw0, "DeleteResourcePermissionStatement", DeleteResourcePermissionStatement$) {
776
750
  }
777
751
 
778
- class GetConsoleAuthorizationConfigurationCommand extends Command
779
- .classBuilder()
780
- .ep({
781
- ...commonParams,
782
- IsControlPlane: { type: "staticContextParams", value: true },
783
- })
784
- .m(function (Command, cs, config, o) {
785
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
786
- })
787
- .s("Signin", "GetConsoleAuthorizationConfiguration", {})
788
- .n("SigninClient", "GetConsoleAuthorizationConfigurationCommand")
789
- .sc(GetConsoleAuthorizationConfiguration$)
790
- .build() {
752
+ class GetConsoleAuthorizationConfigurationCommand extends command(_ep1, _mw0, "GetConsoleAuthorizationConfiguration", GetConsoleAuthorizationConfiguration$) {
791
753
  }
792
754
 
793
- class GetResourcePolicyCommand extends Command
794
- .classBuilder()
795
- .ep({
796
- ...commonParams,
797
- IsControlPlane: { type: "staticContextParams", value: true },
798
- })
799
- .m(function (Command, cs, config, o) {
800
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
801
- })
802
- .s("Signin", "GetResourcePolicy", {})
803
- .n("SigninClient", "GetResourcePolicyCommand")
804
- .sc(GetResourcePolicy$)
805
- .build() {
755
+ class GetResourcePolicyCommand extends command(_ep1, _mw0, "GetResourcePolicy", GetResourcePolicy$) {
806
756
  }
807
757
 
808
- class ListResourcePermissionStatementsCommand extends Command
809
- .classBuilder()
810
- .ep({
811
- ...commonParams,
812
- IsControlPlane: { type: "staticContextParams", value: true },
813
- })
814
- .m(function (Command, cs, config, o) {
815
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
816
- })
817
- .s("Signin", "ListResourcePermissionStatements", {})
818
- .n("SigninClient", "ListResourcePermissionStatementsCommand")
819
- .sc(ListResourcePermissionStatements$)
820
- .build() {
758
+ class ListResourcePermissionStatementsCommand extends command(_ep1, _mw0, "ListResourcePermissionStatements", ListResourcePermissionStatements$) {
821
759
  }
822
760
 
823
- class PutConsoleAuthorizationConfigurationCommand extends Command
824
- .classBuilder()
825
- .ep({
826
- ...commonParams,
827
- IsControlPlane: { type: "staticContextParams", value: true },
828
- })
829
- .m(function (Command, cs, config, o) {
830
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
831
- })
832
- .s("Signin", "PutConsoleAuthorizationConfiguration", {})
833
- .n("SigninClient", "PutConsoleAuthorizationConfigurationCommand")
834
- .sc(PutConsoleAuthorizationConfiguration$)
835
- .build() {
761
+ class PutConsoleAuthorizationConfigurationCommand extends command(_ep1, _mw0, "PutConsoleAuthorizationConfiguration", PutConsoleAuthorizationConfiguration$) {
836
762
  }
837
763
 
838
- class PutResourcePermissionStatementCommand extends Command
839
- .classBuilder()
840
- .ep({
841
- ...commonParams,
842
- IsControlPlane: { type: "staticContextParams", value: true },
843
- })
844
- .m(function (Command, cs, config, o) {
845
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
846
- })
847
- .s("Signin", "PutResourcePermissionStatement", {})
848
- .n("SigninClient", "PutResourcePermissionStatementCommand")
849
- .sc(PutResourcePermissionStatement$)
850
- .build() {
764
+ class PutResourcePermissionStatementCommand extends command(_ep1, _mw0, "PutResourcePermissionStatement", PutResourcePermissionStatement$) {
851
765
  }
852
766
 
853
767
  const paginateListResourcePermissionStatements = createPaginator(SigninClient, ListResourcePermissionStatementsCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,11 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "Signin", "SigninClient", getEndpointPlugin);
5
+ export const _ep0 = {
6
+ IsControlPlane: { type: "staticContextParams", value: false },
7
+ };
8
+ export const _ep1 = {
9
+ IsControlPlane: { type: "staticContextParams", value: true },
10
+ };
11
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CreateOAuth2Token$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CreateOAuth2TokenCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: false },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "CreateOAuth2Token", {})
16
- .n("SigninClient", "CreateOAuth2TokenCommand")
17
- .sc(CreateOAuth2Token$)
18
- .build() {
3
+ export class CreateOAuth2TokenCommand extends command(_ep0, _mw0, "CreateOAuth2Token", CreateOAuth2Token$) {
19
4
  }
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteConsoleAuthorizationConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteConsoleAuthorizationConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: true },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "DeleteConsoleAuthorizationConfiguration", {})
16
- .n("SigninClient", "DeleteConsoleAuthorizationConfigurationCommand")
17
- .sc(DeleteConsoleAuthorizationConfiguration$)
18
- .build() {
3
+ export class DeleteConsoleAuthorizationConfigurationCommand extends command(_ep1, _mw0, "DeleteConsoleAuthorizationConfiguration", DeleteConsoleAuthorizationConfiguration$) {
19
4
  }
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteResourcePermissionStatement$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteResourcePermissionStatementCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: true },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "DeleteResourcePermissionStatement", {})
16
- .n("SigninClient", "DeleteResourcePermissionStatementCommand")
17
- .sc(DeleteResourcePermissionStatement$)
18
- .build() {
3
+ export class DeleteResourcePermissionStatementCommand extends command(_ep1, _mw0, "DeleteResourcePermissionStatement", DeleteResourcePermissionStatement$) {
19
4
  }
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
4
2
  import { GetConsoleAuthorizationConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetConsoleAuthorizationConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: true },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "GetConsoleAuthorizationConfiguration", {})
16
- .n("SigninClient", "GetConsoleAuthorizationConfigurationCommand")
17
- .sc(GetConsoleAuthorizationConfiguration$)
18
- .build() {
3
+ export class GetConsoleAuthorizationConfigurationCommand extends command(_ep1, _mw0, "GetConsoleAuthorizationConfiguration", GetConsoleAuthorizationConfiguration$) {
19
4
  }
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
4
2
  import { GetResourcePolicy$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetResourcePolicyCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: true },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "GetResourcePolicy", {})
16
- .n("SigninClient", "GetResourcePolicyCommand")
17
- .sc(GetResourcePolicy$)
18
- .build() {
3
+ export class GetResourcePolicyCommand extends command(_ep1, _mw0, "GetResourcePolicy", GetResourcePolicy$) {
19
4
  }
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
4
2
  import { ListResourcePermissionStatements$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListResourcePermissionStatementsCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: true },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "ListResourcePermissionStatements", {})
16
- .n("SigninClient", "ListResourcePermissionStatementsCommand")
17
- .sc(ListResourcePermissionStatements$)
18
- .build() {
3
+ export class ListResourcePermissionStatementsCommand extends command(_ep1, _mw0, "ListResourcePermissionStatements", ListResourcePermissionStatements$) {
19
4
  }
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
4
2
  import { PutConsoleAuthorizationConfiguration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class PutConsoleAuthorizationConfigurationCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: true },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "PutConsoleAuthorizationConfiguration", {})
16
- .n("SigninClient", "PutConsoleAuthorizationConfigurationCommand")
17
- .sc(PutConsoleAuthorizationConfiguration$)
18
- .build() {
3
+ export class PutConsoleAuthorizationConfigurationCommand extends command(_ep1, _mw0, "PutConsoleAuthorizationConfiguration", PutConsoleAuthorizationConfiguration$) {
19
4
  }
@@ -1,19 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep1, _mw0, command } from "../commandBuilder";
4
2
  import { PutResourcePermissionStatement$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class PutResourcePermissionStatementCommand extends $Command
7
- .classBuilder()
8
- .ep({
9
- ...commonParams,
10
- IsControlPlane: { type: "staticContextParams", value: true },
11
- })
12
- .m(function (Command, cs, config, o) {
13
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
14
- })
15
- .s("Signin", "PutResourcePermissionStatement", {})
16
- .n("SigninClient", "PutResourcePermissionStatementCommand")
17
- .sc(PutResourcePermissionStatement$)
18
- .build() {
3
+ export class PutResourcePermissionStatementCommand extends command(_ep1, _mw0, "PutResourcePermissionStatement", PutResourcePermissionStatement$) {
19
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SigninClient";
2
2
  export * from "./Signin";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -0,0 +1,22 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "./SigninClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _ep1: EndpointParameterInstructions;
19
+ /**
20
+ * @internal
21
+ */
22
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateOAuth2TokenRequest, CreateOAuth2TokenResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateOAuth2TokenCommandInput extends CreateOAuth2TokenRequest
22
19
  export interface CreateOAuth2TokenCommandOutput extends CreateOAuth2TokenResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateOAuth2TokenCommand_base: {
25
- new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateOAuth2TokenCommandInput): import("@smithy/core/client").CommandImpl<CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * CreateOAuth2Token API
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteConsoleAuthorizationConfigurationInput, DeleteConsoleAuthorizationConfigurationOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteConsoleAuthorizationConfigurationCommandInput extends Del
22
19
  export interface DeleteConsoleAuthorizationConfigurationCommandOutput extends DeleteConsoleAuthorizationConfigurationOutput, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteConsoleAuthorizationConfigurationCommand_base: {
25
- new (input: DeleteConsoleAuthorizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteConsoleAuthorizationConfigurationCommandInput, DeleteConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [DeleteConsoleAuthorizationConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<DeleteConsoleAuthorizationConfigurationCommandInput, DeleteConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteConsoleAuthorizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<DeleteConsoleAuthorizationConfigurationCommandInput, DeleteConsoleAuthorizationConfigurationCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [DeleteConsoleAuthorizationConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<DeleteConsoleAuthorizationConfigurationCommandInput, DeleteConsoleAuthorizationConfigurationCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Delete console authorization configuration with automatic scope detection
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteResourcePermissionStatementInput, DeleteResourcePermissionStatementOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteResourcePermissionStatementCommandInput extends DeleteRes
22
19
  export interface DeleteResourcePermissionStatementCommandOutput extends DeleteResourcePermissionStatementOutput, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteResourcePermissionStatementCommand_base: {
25
- new (input: DeleteResourcePermissionStatementCommandInput): import("@smithy/core/client").CommandImpl<DeleteResourcePermissionStatementCommandInput, DeleteResourcePermissionStatementCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteResourcePermissionStatementCommandInput): import("@smithy/core/client").CommandImpl<DeleteResourcePermissionStatementCommandInput, DeleteResourcePermissionStatementCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteResourcePermissionStatementCommandInput): import("@smithy/core/client").CommandImpl<DeleteResourcePermissionStatementCommandInput, DeleteResourcePermissionStatementCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteResourcePermissionStatementCommandInput): import("@smithy/core/client").CommandImpl<DeleteResourcePermissionStatementCommandInput, DeleteResourcePermissionStatementCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Remove a permission statement from the account's SignIn resource-based policy
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetConsoleAuthorizationConfigurationInput, GetConsoleAuthorizationConfigurationOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetConsoleAuthorizationConfigurationCommandInput extends GetCon
22
19
  export interface GetConsoleAuthorizationConfigurationCommandOutput extends GetConsoleAuthorizationConfigurationOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetConsoleAuthorizationConfigurationCommand_base: {
25
- new (input: GetConsoleAuthorizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetConsoleAuthorizationConfigurationCommandInput, GetConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetConsoleAuthorizationConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<GetConsoleAuthorizationConfigurationCommandInput, GetConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetConsoleAuthorizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetConsoleAuthorizationConfigurationCommandInput, GetConsoleAuthorizationConfigurationCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetConsoleAuthorizationConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<GetConsoleAuthorizationConfigurationCommandInput, GetConsoleAuthorizationConfigurationCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Get console authorization configuration with automatic scope detection
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetResourcePolicyCommandInput extends GetResourcePolicyInput {
22
19
  export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetResourcePolicyCommand_base: {
25
- new (input: GetResourcePolicyCommandInput): import("@smithy/core/client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetResourcePolicyCommandInput]): import("@smithy/core/client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetResourcePolicyCommandInput): import("@smithy/core/client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetResourcePolicyCommandInput]): import("@smithy/core/client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Retrieve the account's consolidated SignIn resource-based policy
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListResourcePermissionStatementsInput, ListResourcePermissionStatementsOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListResourcePermissionStatementsCommandInput extends ListResour
22
19
  export interface ListResourcePermissionStatementsCommandOutput extends ListResourcePermissionStatementsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListResourcePermissionStatementsCommand_base: {
25
- new (input: ListResourcePermissionStatementsCommandInput): import("@smithy/core/client").CommandImpl<ListResourcePermissionStatementsCommandInput, ListResourcePermissionStatementsCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListResourcePermissionStatementsCommandInput]): import("@smithy/core/client").CommandImpl<ListResourcePermissionStatementsCommandInput, ListResourcePermissionStatementsCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListResourcePermissionStatementsCommandInput): import("@smithy/core/client").CommandImpl<ListResourcePermissionStatementsCommandInput, ListResourcePermissionStatementsCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListResourcePermissionStatementsCommandInput]): import("@smithy/core/client").CommandImpl<ListResourcePermissionStatementsCommandInput, ListResourcePermissionStatementsCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Retrieve all permission statements in the account's SignIn resource-based policy
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { PutConsoleAuthorizationConfigurationInput, PutConsoleAuthorizationConfigurationOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface PutConsoleAuthorizationConfigurationCommandInput extends PutCon
22
19
  export interface PutConsoleAuthorizationConfigurationCommandOutput extends PutConsoleAuthorizationConfigurationOutput, __MetadataBearer {
23
20
  }
24
21
  declare const PutConsoleAuthorizationConfigurationCommand_base: {
25
- new (input: PutConsoleAuthorizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutConsoleAuthorizationConfigurationCommandInput, PutConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [PutConsoleAuthorizationConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<PutConsoleAuthorizationConfigurationCommandInput, PutConsoleAuthorizationConfigurationCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: PutConsoleAuthorizationConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutConsoleAuthorizationConfigurationCommandInput, PutConsoleAuthorizationConfigurationCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [PutConsoleAuthorizationConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<PutConsoleAuthorizationConfigurationCommandInput, PutConsoleAuthorizationConfigurationCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Enable console authorization configuration with automatic scope detection
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { PutResourcePermissionStatementInput, PutResourcePermissionStatementOutput } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface PutResourcePermissionStatementCommandInput extends PutResourceP
22
19
  export interface PutResourcePermissionStatementCommandOutput extends PutResourcePermissionStatementOutput, __MetadataBearer {
23
20
  }
24
21
  declare const PutResourcePermissionStatementCommand_base: {
25
- new (input: PutResourcePermissionStatementCommandInput): import("@smithy/core/client").CommandImpl<PutResourcePermissionStatementCommandInput, PutResourcePermissionStatementCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [PutResourcePermissionStatementCommandInput]): import("@smithy/core/client").CommandImpl<PutResourcePermissionStatementCommandInput, PutResourcePermissionStatementCommandOutput, SigninClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: PutResourcePermissionStatementCommandInput): import("@smithy/core/client").CommandImpl<PutResourcePermissionStatementCommandInput, PutResourcePermissionStatementCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [PutResourcePermissionStatementCommandInput]): import("@smithy/core/client").CommandImpl<PutResourcePermissionStatementCommandInput, PutResourcePermissionStatementCommandOutput, import("..").SigninClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * Create a permission statement in the account's SignIn resource-based policy
@@ -10,6 +10,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
10
10
  export type { RuntimeExtension } from "./runtimeExtensions";
11
11
  export type { SigninExtensionConfiguration } from "./extensionConfiguration";
12
12
  export * from "./commands";
13
+ export { Command as $Command } from "@smithy/core/client";
13
14
  export * from "./schemas/schemas_0";
14
15
  export * from "./pagination";
15
16
  export * from "./models/enums";
@@ -0,0 +1,47 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ SigninClientResolvedConfig,
6
+ } from "./SigninClient";
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
+ SigninClientResolvedConfig,
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
+ SigninClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _ep1: EndpointParameterInstructions;
42
+ export declare const _mw0: (
43
+ Command: any,
44
+ cs: any,
45
+ config: any,
46
+ o: any
47
+ ) => never[];
@@ -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
  CreateOAuth2TokenRequest,
5
4
  CreateOAuth2TokenResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateOAuth2TokenCommandInput
15
8
  extends CreateOAuth2TokenRequest {}
16
9
  export interface CreateOAuth2TokenCommandOutput
@@ -22,22 +15,20 @@ declare const CreateOAuth2TokenCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateOAuth2TokenCommandInput,
24
17
  CreateOAuth2TokenCommandOutput,
25
- SigninClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SigninClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateOAuth2TokenCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateOAuth2TokenCommandInput,
33
26
  CreateOAuth2TokenCommandOutput,
34
- SigninClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SigninClientResolvedConfig,
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 CreateOAuth2TokenCommand extends CreateOAuth2TokenCommand_base {
43
34
  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
  DeleteConsoleAuthorizationConfigurationInput,
5
4
  DeleteConsoleAuthorizationConfigurationOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteConsoleAuthorizationConfigurationCommandInput
15
8
  extends DeleteConsoleAuthorizationConfigurationInput {}
16
9
  export interface DeleteConsoleAuthorizationConfigurationCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteConsoleAuthorizationConfigurationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteConsoleAuthorizationConfigurationCommandInput,
24
17
  DeleteConsoleAuthorizationConfigurationCommandOutput,
25
- SigninClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SigninClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [DeleteConsoleAuthorizationConfigurationCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteConsoleAuthorizationConfigurationCommandInput,
33
26
  DeleteConsoleAuthorizationConfigurationCommandOutput,
34
- SigninClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SigninClientResolvedConfig,
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 DeleteConsoleAuthorizationConfigurationCommand extends DeleteConsoleAuthorizationConfigurationCommand_base {
43
34
  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
  DeleteResourcePermissionStatementInput,
5
4
  DeleteResourcePermissionStatementOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteResourcePermissionStatementCommandInput
15
8
  extends DeleteResourcePermissionStatementInput {}
16
9
  export interface DeleteResourcePermissionStatementCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteResourcePermissionStatementCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteResourcePermissionStatementCommandInput,
24
17
  DeleteResourcePermissionStatementCommandOutput,
25
- SigninClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SigninClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeleteResourcePermissionStatementCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteResourcePermissionStatementCommandInput,
33
26
  DeleteResourcePermissionStatementCommandOutput,
34
- SigninClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SigninClientResolvedConfig,
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 DeleteResourcePermissionStatementCommand extends DeleteResourcePermissionStatementCommand_base {
43
34
  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
  GetConsoleAuthorizationConfigurationInput,
5
4
  GetConsoleAuthorizationConfigurationOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetConsoleAuthorizationConfigurationCommandInput
15
8
  extends GetConsoleAuthorizationConfigurationInput {}
16
9
  export interface GetConsoleAuthorizationConfigurationCommandOutput
@@ -22,22 +15,20 @@ declare const GetConsoleAuthorizationConfigurationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetConsoleAuthorizationConfigurationCommandInput,
24
17
  GetConsoleAuthorizationConfigurationCommandOutput,
25
- SigninClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SigninClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [GetConsoleAuthorizationConfigurationCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetConsoleAuthorizationConfigurationCommandInput,
33
26
  GetConsoleAuthorizationConfigurationCommandOutput,
34
- SigninClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SigninClientResolvedConfig,
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 GetConsoleAuthorizationConfigurationCommand extends GetConsoleAuthorizationConfigurationCommand_base {
43
34
  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
  GetResourcePolicyInput,
5
4
  GetResourcePolicyOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetResourcePolicyCommandInput extends GetResourcePolicyInput {}
15
8
  export interface GetResourcePolicyCommandOutput
16
9
  extends GetResourcePolicyOutput,
@@ -21,22 +14,20 @@ declare const GetResourcePolicyCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetResourcePolicyCommandInput,
23
16
  GetResourcePolicyCommandOutput,
24
- SigninClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").SigninClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  ...[input]: [] | [GetResourcePolicyCommandInput]
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetResourcePolicyCommandInput,
32
25
  GetResourcePolicyCommandOutput,
33
- SigninClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").SigninClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {
42
33
  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
  ListResourcePermissionStatementsInput,
5
4
  ListResourcePermissionStatementsOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListResourcePermissionStatementsCommandInput
15
8
  extends ListResourcePermissionStatementsInput {}
16
9
  export interface ListResourcePermissionStatementsCommandOutput
@@ -22,22 +15,20 @@ declare const ListResourcePermissionStatementsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListResourcePermissionStatementsCommandInput,
24
17
  ListResourcePermissionStatementsCommandOutput,
25
- SigninClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SigninClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListResourcePermissionStatementsCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListResourcePermissionStatementsCommandInput,
33
26
  ListResourcePermissionStatementsCommandOutput,
34
- SigninClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SigninClientResolvedConfig,
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 ListResourcePermissionStatementsCommand extends ListResourcePermissionStatementsCommand_base {
43
34
  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
  PutConsoleAuthorizationConfigurationInput,
5
4
  PutConsoleAuthorizationConfigurationOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface PutConsoleAuthorizationConfigurationCommandInput
15
8
  extends PutConsoleAuthorizationConfigurationInput {}
16
9
  export interface PutConsoleAuthorizationConfigurationCommandOutput
@@ -22,22 +15,20 @@ declare const PutConsoleAuthorizationConfigurationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  PutConsoleAuthorizationConfigurationCommandInput,
24
17
  PutConsoleAuthorizationConfigurationCommandOutput,
25
- SigninClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SigninClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [PutConsoleAuthorizationConfigurationCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  PutConsoleAuthorizationConfigurationCommandInput,
33
26
  PutConsoleAuthorizationConfigurationCommandOutput,
34
- SigninClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SigninClientResolvedConfig,
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 PutConsoleAuthorizationConfigurationCommand extends PutConsoleAuthorizationConfigurationCommand_base {
43
34
  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
  PutResourcePermissionStatementInput,
5
4
  PutResourcePermissionStatementOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- SigninClientResolvedConfig,
11
- } from "../SigninClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface PutResourcePermissionStatementCommandInput
15
8
  extends PutResourcePermissionStatementInput {}
16
9
  export interface PutResourcePermissionStatementCommandOutput
@@ -22,22 +15,20 @@ declare const PutResourcePermissionStatementCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  PutResourcePermissionStatementCommandInput,
24
17
  PutResourcePermissionStatementCommandOutput,
25
- SigninClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SigninClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [PutResourcePermissionStatementCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  PutResourcePermissionStatementCommandInput,
33
26
  PutResourcePermissionStatementCommandOutput,
34
- SigninClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SigninClientResolvedConfig,
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 PutResourcePermissionStatementCommand extends PutResourcePermissionStatementCommand_base {
43
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 "./pagination";
9
10
  export * from "./models/enums";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-signin",
3
3
  "description": "AWS SDK for JavaScript Signin Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
4
+ "version": "3.1079.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -23,17 +23,17 @@
23
23
  "module": "./dist-es/index.js",
24
24
  "sideEffects": false,
25
25
  "dependencies": {
26
- "@aws-sdk/core": "^3.974.25",
27
- "@aws-sdk/credential-provider-node": "^3.972.60",
28
- "@aws-sdk/types": "^3.973.14",
29
- "@smithy/core": "^3.28.0",
30
- "@smithy/fetch-http-handler": "^5.6.1",
31
- "@smithy/node-http-handler": "^4.9.1",
32
- "@smithy/types": "^4.15.0",
26
+ "@aws-sdk/core": "^3.974.27",
27
+ "@aws-sdk/credential-provider-node": "^3.972.62",
28
+ "@aws-sdk/types": "^3.973.15",
29
+ "@smithy/core": "^3.29.0",
30
+ "@smithy/fetch-http-handler": "^5.6.2",
31
+ "@smithy/node-http-handler": "^4.9.2",
32
+ "@smithy/types": "^4.15.1",
33
33
  "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
36
- "@smithy/snapshot-testing": "^2.2.4",
36
+ "@smithy/snapshot-testing": "^2.2.5",
37
37
  "@tsconfig/node20": "20.1.8",
38
38
  "@types/node": "^20.14.8",
39
39
  "concurrently": "7.0.0",