@aws-sdk/client-identitystore 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 (65) hide show
  1. package/dist-cjs/index.js +27 -193
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateGroupCommand.js +2 -14
  4. package/dist-es/commands/CreateGroupMembershipCommand.js +2 -14
  5. package/dist-es/commands/CreateUserCommand.js +2 -14
  6. package/dist-es/commands/DeleteGroupCommand.js +2 -14
  7. package/dist-es/commands/DeleteGroupMembershipCommand.js +2 -14
  8. package/dist-es/commands/DeleteUserCommand.js +2 -14
  9. package/dist-es/commands/DescribeGroupCommand.js +2 -14
  10. package/dist-es/commands/DescribeGroupMembershipCommand.js +2 -14
  11. package/dist-es/commands/DescribeUserCommand.js +2 -14
  12. package/dist-es/commands/GetGroupIdCommand.js +2 -14
  13. package/dist-es/commands/GetGroupMembershipIdCommand.js +2 -14
  14. package/dist-es/commands/GetUserIdCommand.js +2 -14
  15. package/dist-es/commands/IsMemberInGroupsCommand.js +2 -14
  16. package/dist-es/commands/ListGroupMembershipsCommand.js +2 -14
  17. package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +2 -14
  18. package/dist-es/commands/ListGroupsCommand.js +2 -14
  19. package/dist-es/commands/ListUsersCommand.js +2 -14
  20. package/dist-es/commands/UpdateGroupCommand.js +2 -14
  21. package/dist-es/commands/UpdateUserCommand.js +2 -14
  22. package/dist-es/index.js +1 -0
  23. package/dist-types/commandBuilder.d.ts +18 -0
  24. package/dist-types/commands/CreateGroupCommand.d.ts +3 -8
  25. package/dist-types/commands/CreateGroupMembershipCommand.d.ts +3 -8
  26. package/dist-types/commands/CreateUserCommand.d.ts +3 -8
  27. package/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
  28. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +3 -8
  29. package/dist-types/commands/DeleteUserCommand.d.ts +3 -8
  30. package/dist-types/commands/DescribeGroupCommand.d.ts +3 -8
  31. package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +3 -8
  32. package/dist-types/commands/DescribeUserCommand.d.ts +3 -8
  33. package/dist-types/commands/GetGroupIdCommand.d.ts +3 -8
  34. package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +3 -8
  35. package/dist-types/commands/GetUserIdCommand.d.ts +3 -8
  36. package/dist-types/commands/IsMemberInGroupsCommand.d.ts +3 -8
  37. package/dist-types/commands/ListGroupMembershipsCommand.d.ts +3 -8
  38. package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +3 -8
  39. package/dist-types/commands/ListGroupsCommand.d.ts +3 -8
  40. package/dist-types/commands/ListUsersCommand.d.ts +3 -8
  41. package/dist-types/commands/UpdateGroupCommand.d.ts +3 -8
  42. package/dist-types/commands/UpdateUserCommand.d.ts +3 -8
  43. package/dist-types/index.d.ts +1 -0
  44. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  45. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +7 -16
  59. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +7 -16
  60. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
  61. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -16
  62. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +7 -16
  63. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +7 -16
  64. package/dist-types/ts3.4/index.d.ts +1 -0
  65. package/package.json +8 -8
@@ -1,16 +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 { UpdateUser$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateUserCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSIdentityStore", "UpdateUser", {})
13
- .n("IdentitystoreClient", "UpdateUserCommand")
14
- .sc(UpdateUser$)
15
- .build() {
3
+ export class UpdateUserCommand extends command(_ep0, _mw0, "UpdateUser", UpdateUser$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./IdentitystoreClient";
2
2
  export * from "./Identitystore";
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,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./IdentitystoreClient";
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, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ 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
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
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 CreateGroupCommandInput extends CreateGroupRequest {
22
19
  export interface CreateGroupCommandOutput extends CreateGroupResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateGroupCommand_base: {
25
- new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a group within the specified identity store.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { CreateGroupMembershipRequest, CreateGroupMembershipResponse } from "../models/models_0";
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 CreateGroupMembershipCommandInput extends CreateGroupMembership
22
19
  export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershipResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateGroupMembershipCommand_base: {
25
- new (input: CreateGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a relationship between a member and a group. The following identifiers must be specified: <code>GroupId</code>, <code>IdentityStoreId</code>, and <code>MemberId</code>.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { CreateUserRequest, CreateUserResponse } from "../models/models_0";
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 CreateUserCommandInput extends CreateUserRequest {
22
19
  export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateUserCommand_base: {
25
- new (input: CreateUserCommandInput): import("@smithy/core/client").CommandImpl<CreateUserCommandInput, CreateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateUserCommandInput): import("@smithy/core/client").CommandImpl<CreateUserCommandInput, CreateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateUserCommandInput): import("@smithy/core/client").CommandImpl<CreateUserCommandInput, CreateUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateUserCommandInput): import("@smithy/core/client").CommandImpl<CreateUserCommandInput, CreateUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a user within the specified identity store.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0";
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 DeleteGroupCommandInput extends DeleteGroupRequest {
22
19
  export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteGroupCommand_base: {
25
- new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteGroupCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Delete a group within an identity store given <code>GroupId</code>.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_0";
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 DeleteGroupMembershipCommandInput extends DeleteGroupMembership
22
19
  export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershipResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteGroupMembershipCommand_base: {
25
- new (input: DeleteGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Delete a membership within a group given <code>MembershipId</code>.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_0";
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 DeleteUserCommandInput extends DeleteUserRequest {
22
19
  export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteUserCommand_base: {
25
- new (input: DeleteUserCommandInput): import("@smithy/core/client").CommandImpl<DeleteUserCommandInput, DeleteUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteUserCommandInput): import("@smithy/core/client").CommandImpl<DeleteUserCommandInput, DeleteUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteUserCommandInput): import("@smithy/core/client").CommandImpl<DeleteUserCommandInput, DeleteUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteUserCommandInput): import("@smithy/core/client").CommandImpl<DeleteUserCommandInput, DeleteUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a user within an identity store given <code>UserId</code>.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { DescribeGroupRequest, DescribeGroupResponse } from "../models/models_0";
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 DescribeGroupCommandInput extends DescribeGroupRequest {
22
19
  export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeGroupCommand_base: {
25
- new (input: DescribeGroupCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupCommandInput, DescribeGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeGroupCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupCommandInput, DescribeGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeGroupCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupCommandInput, DescribeGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeGroupCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupCommandInput, DescribeGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity store.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { DescribeGroupMembershipRequest, DescribeGroupMembershipResponse } from "../models/models_0";
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 DescribeGroupMembershipCommandInput extends DescribeGroupMember
22
19
  export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembershipResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeGroupMembershipCommand_base: {
25
- new (input: DescribeGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeGroupMembershipCommandInput): import("@smithy/core/client").CommandImpl<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves membership metadata and attributes from <code>MembershipId</code> in an identity store.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { DescribeUserRequest, DescribeUserResponse } from "../models/models_0";
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 DescribeUserCommandInput extends DescribeUserRequest {
22
19
  export interface DescribeUserCommandOutput extends DescribeUserResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeUserCommand_base: {
25
- new (input: DescribeUserCommandInput): import("@smithy/core/client").CommandImpl<DescribeUserCommandInput, DescribeUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeUserCommandInput): import("@smithy/core/client").CommandImpl<DescribeUserCommandInput, DescribeUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeUserCommandInput): import("@smithy/core/client").CommandImpl<DescribeUserCommandInput, DescribeUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeUserCommandInput): import("@smithy/core/client").CommandImpl<DescribeUserCommandInput, DescribeUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves the user metadata and attributes from the <code>UserId</code> in an identity store.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { GetGroupIdRequest, GetGroupIdResponse } from "../models/models_0";
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 GetGroupIdCommandInput extends GetGroupIdRequest {
22
19
  export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetGroupIdCommand_base: {
25
- new (input: GetGroupIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupIdCommandInput, GetGroupIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetGroupIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupIdCommandInput, GetGroupIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetGroupIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupIdCommandInput, GetGroupIdCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetGroupIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupIdCommandInput, GetGroupIdCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves <code>GroupId</code> in an identity store.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { GetGroupMembershipIdRequest, GetGroupMembershipIdResponse } from "../models/models_0";
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 GetGroupMembershipIdCommandInput extends GetGroupMembershipIdRe
22
19
  export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetGroupMembershipIdCommand_base: {
25
- new (input: GetGroupMembershipIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetGroupMembershipIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetGroupMembershipIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetGroupMembershipIdCommandInput): import("@smithy/core/client").CommandImpl<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves the <code>MembershipId</code> in an identity store.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { GetUserIdRequest, GetUserIdResponse } from "../models/models_0";
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 GetUserIdCommandInput extends GetUserIdRequest {
22
19
  export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetUserIdCommand_base: {
25
- new (input: GetUserIdCommandInput): import("@smithy/core/client").CommandImpl<GetUserIdCommandInput, GetUserIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetUserIdCommandInput): import("@smithy/core/client").CommandImpl<GetUserIdCommandInput, GetUserIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetUserIdCommandInput): import("@smithy/core/client").CommandImpl<GetUserIdCommandInput, GetUserIdCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetUserIdCommandInput): import("@smithy/core/client").CommandImpl<GetUserIdCommandInput, GetUserIdCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves the <code>UserId</code> in an identity store.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { IsMemberInGroupsRequest, IsMemberInGroupsResponse } from "../models/models_0";
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 IsMemberInGroupsCommandInput extends IsMemberInGroupsRequest {
22
19
  export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const IsMemberInGroupsCommand_base: {
25
- new (input: IsMemberInGroupsCommandInput): import("@smithy/core/client").CommandImpl<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: IsMemberInGroupsCommandInput): import("@smithy/core/client").CommandImpl<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: IsMemberInGroupsCommandInput): import("@smithy/core/client").CommandImpl<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: IsMemberInGroupsCommandInput): import("@smithy/core/client").CommandImpl<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Checks the user's membership in all requested groups and returns if the member exists in all queried groups.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_0";
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 ListGroupMembershipsCommandInput extends ListGroupMembershipsRe
22
19
  export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListGroupMembershipsCommand_base: {
25
- new (input: ListGroupMembershipsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListGroupMembershipsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListGroupMembershipsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListGroupMembershipsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>For the specified group in the specified identity store, returns the list of all <code> GroupMembership</code> objects and returns results in paginated form.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { ListGroupMembershipsForMemberRequest, ListGroupMembershipsForMemberResponse } from "../models/models_0";
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 ListGroupMembershipsForMemberCommandInput extends ListGroupMemb
22
19
  export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMembershipsForMemberResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListGroupMembershipsForMemberCommand_base: {
25
- new (input: ListGroupMembershipsForMemberCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListGroupMembershipsForMemberCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListGroupMembershipsForMemberCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListGroupMembershipsForMemberCommandInput): import("@smithy/core/client").CommandImpl<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>For the specified member in the specified identity store, returns the list of all <code> GroupMembership</code> objects and returns results in paginated form.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0";
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 ListGroupsCommandInput extends ListGroupsRequest {
22
19
  export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListGroupsCommand_base: {
25
- new (input: ListGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects. Filtering for a <code>Group</code> by the <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { ListUsersRequest, ListUsersResponse } from "../models/models_0";
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 ListUsersCommandInput extends ListUsersRequest {
22
19
  export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListUsersCommand_base: {
25
- new (input: ListUsersCommandInput): import("@smithy/core/client").CommandImpl<ListUsersCommandInput, ListUsersCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListUsersCommandInput): import("@smithy/core/client").CommandImpl<ListUsersCommandInput, ListUsersCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListUsersCommandInput): import("@smithy/core/client").CommandImpl<ListUsersCommandInput, ListUsersCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListUsersCommandInput): import("@smithy/core/client").CommandImpl<ListUsersCommandInput, ListUsersCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects. Filtering for a <code>User</code> by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</p> <note> <p>If you have access to a member account, you can use this API operation from the member account. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts">Limiting access to the identity store from member accounts</a> in the <i> IAM Identity Center User Guide</i>.</p> </note>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0";
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 UpdateGroupCommandInput extends UpdateGroupRequest {
22
19
  export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateGroupCommand_base: {
25
- new (input: UpdateGroupCommandInput): import("@smithy/core/client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateGroupCommandInput): import("@smithy/core/client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateGroupCommandInput): import("@smithy/core/client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateGroupCommandInput): import("@smithy/core/client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates the specified group metadata and attributes in the specified identity store.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
2
  import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
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 UpdateUserCommandInput extends UpdateUserRequest {
22
19
  export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateUserCommand_base: {
25
- new (input: UpdateUserCommandInput): import("@smithy/core/client").CommandImpl<UpdateUserCommandInput, UpdateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateUserCommandInput): import("@smithy/core/client").CommandImpl<UpdateUserCommandInput, UpdateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateUserCommandInput): import("@smithy/core/client").CommandImpl<UpdateUserCommandInput, UpdateUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateUserCommandInput): import("@smithy/core/client").CommandImpl<UpdateUserCommandInput, UpdateUserCommandOutput, import("..").IdentitystoreClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates the specified user metadata and attributes in the specified identity store.</p>