@aws-sdk/client-identitystore 3.159.0 → 3.162.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 (99) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +9 -18
  3. package/dist-cjs/Identitystore.js +225 -0
  4. package/dist-cjs/commands/CreateGroupCommand.js +36 -0
  5. package/dist-cjs/commands/CreateGroupMembershipCommand.js +36 -0
  6. package/dist-cjs/commands/CreateUserCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteGroupCommand.js +36 -0
  8. package/dist-cjs/commands/DeleteGroupMembershipCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteUserCommand.js +36 -0
  10. package/dist-cjs/commands/DescribeGroupMembershipCommand.js +36 -0
  11. package/dist-cjs/commands/GetGroupIdCommand.js +36 -0
  12. package/dist-cjs/commands/GetGroupMembershipIdCommand.js +36 -0
  13. package/dist-cjs/commands/GetUserIdCommand.js +36 -0
  14. package/dist-cjs/commands/IsMemberInGroupsCommand.js +36 -0
  15. package/dist-cjs/commands/ListGroupMembershipsCommand.js +36 -0
  16. package/dist-cjs/commands/ListGroupMembershipsForMemberCommand.js +36 -0
  17. package/dist-cjs/commands/UpdateGroupCommand.js +36 -0
  18. package/dist-cjs/commands/UpdateUserCommand.js +36 -0
  19. package/dist-cjs/commands/index.js +15 -0
  20. package/dist-cjs/endpoints.js +1 -0
  21. package/dist-cjs/models/models_0.js +360 -35
  22. package/dist-cjs/pagination/ListGroupMembershipsForMemberPaginator.js +36 -0
  23. package/dist-cjs/pagination/ListGroupMembershipsPaginator.js +36 -0
  24. package/dist-cjs/pagination/index.js +2 -0
  25. package/dist-cjs/protocols/Aws_json1_1.js +1475 -93
  26. package/dist-es/Identitystore.js +225 -0
  27. package/dist-es/commands/CreateGroupCommand.js +39 -0
  28. package/dist-es/commands/CreateGroupMembershipCommand.js +39 -0
  29. package/dist-es/commands/CreateUserCommand.js +39 -0
  30. package/dist-es/commands/DeleteGroupCommand.js +39 -0
  31. package/dist-es/commands/DeleteGroupMembershipCommand.js +39 -0
  32. package/dist-es/commands/DeleteUserCommand.js +39 -0
  33. package/dist-es/commands/DescribeGroupMembershipCommand.js +39 -0
  34. package/dist-es/commands/GetGroupIdCommand.js +39 -0
  35. package/dist-es/commands/GetGroupMembershipIdCommand.js +39 -0
  36. package/dist-es/commands/GetUserIdCommand.js +39 -0
  37. package/dist-es/commands/IsMemberInGroupsCommand.js +39 -0
  38. package/dist-es/commands/ListGroupMembershipsCommand.js +39 -0
  39. package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +39 -0
  40. package/dist-es/commands/UpdateGroupCommand.js +39 -0
  41. package/dist-es/commands/UpdateUserCommand.js +39 -0
  42. package/dist-es/commands/index.js +15 -0
  43. package/dist-es/endpoints.js +1 -0
  44. package/dist-es/models/models_0.js +156 -34
  45. package/dist-es/pagination/ListGroupMembershipsForMemberPaginator.js +75 -0
  46. package/dist-es/pagination/ListGroupMembershipsPaginator.js +75 -0
  47. package/dist-es/pagination/index.js +2 -0
  48. package/dist-es/protocols/Aws_json1_1.js +1675 -50
  49. package/dist-types/Identitystore.d.ts +117 -23
  50. package/dist-types/IdentitystoreClient.d.ts +19 -13
  51. package/dist-types/commands/CreateGroupCommand.d.ts +35 -0
  52. package/dist-types/commands/CreateGroupMembershipCommand.d.ts +35 -0
  53. package/dist-types/commands/CreateUserCommand.d.ts +35 -0
  54. package/dist-types/commands/DeleteGroupCommand.d.ts +35 -0
  55. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +35 -0
  56. package/dist-types/commands/DeleteUserCommand.d.ts +35 -0
  57. package/dist-types/commands/DescribeGroupCommand.d.ts +1 -2
  58. package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +35 -0
  59. package/dist-types/commands/DescribeUserCommand.d.ts +1 -2
  60. package/dist-types/commands/GetGroupIdCommand.d.ts +35 -0
  61. package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +35 -0
  62. package/dist-types/commands/GetUserIdCommand.d.ts +35 -0
  63. package/dist-types/commands/IsMemberInGroupsCommand.d.ts +35 -0
  64. package/dist-types/commands/ListGroupMembershipsCommand.d.ts +35 -0
  65. package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +35 -0
  66. package/dist-types/commands/ListGroupsCommand.d.ts +4 -4
  67. package/dist-types/commands/ListUsersCommand.d.ts +4 -4
  68. package/dist-types/commands/UpdateGroupCommand.d.ts +35 -0
  69. package/dist-types/commands/UpdateUserCommand.d.ts +35 -0
  70. package/dist-types/commands/index.d.ts +15 -0
  71. package/dist-types/models/models_0.d.ts +1097 -127
  72. package/dist-types/pagination/ListGroupMembershipsForMemberPaginator.d.ts +4 -0
  73. package/dist-types/pagination/ListGroupMembershipsPaginator.d.ts +4 -0
  74. package/dist-types/pagination/index.d.ts +2 -0
  75. package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
  76. package/dist-types/ts3.4/Identitystore.d.ts +75 -0
  77. package/dist-types/ts3.4/IdentitystoreClient.d.ts +17 -2
  78. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +17 -0
  79. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +17 -0
  80. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +17 -0
  81. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +17 -0
  82. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +17 -0
  83. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +17 -0
  84. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +17 -0
  85. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +17 -0
  90. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +17 -0
  91. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +17 -0
  92. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +17 -0
  93. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  94. package/dist-types/ts3.4/models/models_0.d.ts +565 -29
  95. package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +4 -0
  96. package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +4 -0
  97. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  98. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +45 -0
  99. package/package.json +26 -26
@@ -1,54 +1,148 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
3
+ import { CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput } from "./commands/CreateGroupMembershipCommand";
4
+ import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
5
+ import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
6
+ import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "./commands/DeleteGroupMembershipCommand";
7
+ import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
2
8
  import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
9
+ import { DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput } from "./commands/DescribeGroupMembershipCommand";
3
10
  import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
11
+ import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "./commands/GetGroupIdCommand";
12
+ import { GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput } from "./commands/GetGroupMembershipIdCommand";
13
+ import { GetUserIdCommandInput, GetUserIdCommandOutput } from "./commands/GetUserIdCommand";
14
+ import { IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput } from "./commands/IsMemberInGroupsCommand";
15
+ import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "./commands/ListGroupMembershipsCommand";
16
+ import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "./commands/ListGroupMembershipsForMemberCommand";
4
17
  import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
5
18
  import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
19
+ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
20
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
6
21
  import { IdentitystoreClient } from "./IdentitystoreClient";
7
22
  /**
8
- * <p>The Identity Store service used by Amazon Web Services Single Sign On provides a single place to retrieve all of
9
- * your identities (users and groups). For more information, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">Amazon Web Services SSO User
23
+ * <p>The AWS Single Sign-On (SSO) Identity Store service provides a single place to retrieve all of your
24
+ * identities (users and groups). For more information about AWS, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On User
10
25
  * Guide</a>.</p>
11
- *
12
- * <note>
13
- * <p>Although Amazon Web Services Single Sign-On was renamed, the <code>sso</code> and
14
- * <code>identitystore</code> API namespaces will continue to retain their original name for
15
- * backward compatibility purposes. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed">Amazon Web Services SSO rename</a>.</p>
16
- * </note>
17
- *
18
- * <p>This reference guide describes the identity store operations that you can call
19
- * programatically and includes detailed information on data types and errors.</p>
20
26
  */
21
27
  export declare class Identitystore extends IdentitystoreClient {
22
28
  /**
23
- * <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity
24
- * store.</p>
29
+ * <p>Creates a group within the specified identity store.</p>
30
+ */
31
+ createGroup(args: CreateGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCommandOutput>;
32
+ createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
33
+ createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
34
+ /**
35
+ * <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>
36
+ */
37
+ createGroupMembership(args: CreateGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupMembershipCommandOutput>;
38
+ createGroupMembership(args: CreateGroupMembershipCommandInput, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
39
+ createGroupMembership(args: CreateGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
40
+ /**
41
+ * <p>Creates a new user within the specified identity store.</p>
42
+ */
43
+ createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
44
+ createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
45
+ createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
46
+ /**
47
+ * <p>Delete a group within an identity store given <code>GroupId</code>.</p>
48
+ */
49
+ deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
50
+ deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
51
+ deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
52
+ /**
53
+ * <p>Delete a membership within a group given <code>MembershipId</code>.</p>
54
+ */
55
+ deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupMembershipCommandOutput>;
56
+ deleteGroupMembership(args: DeleteGroupMembershipCommandInput, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
57
+ deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
58
+ /**
59
+ * <p>Deletes a user within an identity store given <code>UserId</code>.</p>
60
+ */
61
+ deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
62
+ deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
63
+ deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
64
+ /**
65
+ * <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity store.</p>
25
66
  */
26
67
  describeGroup(args: DescribeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupCommandOutput>;
27
68
  describeGroup(args: DescribeGroupCommandInput, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
28
69
  describeGroup(args: DescribeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
29
70
  /**
30
- * <p>Retrieves the user metadata and attributes from <code>UserId</code> in an identity
31
- * store.</p>
71
+ * <p>Retrieves membership metadata and attributes from <code>MembershipId</code> in a group.</p>
72
+ */
73
+ describeGroupMembership(args: DescribeGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupMembershipCommandOutput>;
74
+ describeGroupMembership(args: DescribeGroupMembershipCommandInput, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
75
+ describeGroupMembership(args: DescribeGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
76
+ /**
77
+ * <p>Retrieves the user metadata and attributes from the <code>UserId</code> in an identity store.</p>
32
78
  */
33
79
  describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
34
80
  describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
35
81
  describeUser(args: DescribeUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
36
82
  /**
37
- * <p>Lists the attribute name and value of the group that you specified in the search. We
38
- * only support <code>DisplayName</code> as a valid filter attribute path currently, and
39
- * filter is required. This API returns minimum attributes, including <code>GroupId</code> and
40
- * group <code>DisplayName</code> in the response.</p>
83
+ * <p>Retrieves <code>GroupId</code> in an identity store.</p>
84
+ */
85
+ getGroupId(args: GetGroupIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupIdCommandOutput>;
86
+ getGroupId(args: GetGroupIdCommandInput, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
87
+ getGroupId(args: GetGroupIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
88
+ /**
89
+ * <p>Retrieves the <code>MembershipId</code> in a group.</p>
90
+ */
91
+ getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupMembershipIdCommandOutput>;
92
+ getGroupMembershipId(args: GetGroupMembershipIdCommandInput, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
93
+ getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
94
+ /**
95
+ * <p>Retrieves the <code>UserId</code> in an identity store.</p>
96
+ */
97
+ getUserId(args: GetUserIdCommandInput, options?: __HttpHandlerOptions): Promise<GetUserIdCommandOutput>;
98
+ getUserId(args: GetUserIdCommandInput, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
99
+ getUserId(args: GetUserIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
100
+ /**
101
+ * <p>Returns if a member exists in specified groups.</p>
102
+ */
103
+ isMemberInGroups(args: IsMemberInGroupsCommandInput, options?: __HttpHandlerOptions): Promise<IsMemberInGroupsCommandOutput>;
104
+ isMemberInGroups(args: IsMemberInGroupsCommandInput, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
105
+ isMemberInGroups(args: IsMemberInGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
106
+ /**
107
+ * <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>
108
+ */
109
+ listGroupMemberships(args: ListGroupMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsCommandOutput>;
110
+ listGroupMemberships(args: ListGroupMembershipsCommandInput, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
111
+ listGroupMemberships(args: ListGroupMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
112
+ /**
113
+ * <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>
114
+ */
115
+ listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsForMemberCommandOutput>;
116
+ listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
117
+ listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
118
+ /**
119
+ * <p>
120
+ * <i>Filtering for a group by the group <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</i>
121
+ * </p>
122
+ * <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects.</p>
41
123
  */
42
124
  listGroups(args: ListGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupsCommandOutput>;
43
125
  listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
44
126
  listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
45
127
  /**
46
- * <p>Lists the attribute name and value of the user that you specified in the search. We only
47
- * support <code>UserName</code> as a valid filter attribute path currently, and filter is
48
- * required. This API returns minimum attributes, including <code>UserId</code> and
49
- * <code>UserName</code> in the response.</p>
128
+ * <p>
129
+ * <i>Filtering for a user by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</i>
130
+ * </p>
131
+ * <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects.</p>
50
132
  */
51
133
  listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
52
134
  listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
53
135
  listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
136
+ /**
137
+ * <p>For the specified group in the specified identity store, updates the group metadata and attributes.</p>
138
+ */
139
+ updateGroup(args: UpdateGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCommandOutput>;
140
+ updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
141
+ updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
142
+ /**
143
+ * <p>For the specified user in the specified identity store, updates the user metadata and attributes.</p>
144
+ */
145
+ updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
146
+ updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
147
+ updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
54
148
  }
@@ -6,12 +6,27 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
10
+ import { CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput } from "./commands/CreateGroupMembershipCommand";
11
+ import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
12
+ import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
13
+ import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "./commands/DeleteGroupMembershipCommand";
14
+ import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
9
15
  import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
16
+ import { DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput } from "./commands/DescribeGroupMembershipCommand";
10
17
  import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
18
+ import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "./commands/GetGroupIdCommand";
19
+ import { GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput } from "./commands/GetGroupMembershipIdCommand";
20
+ import { GetUserIdCommandInput, GetUserIdCommandOutput } from "./commands/GetUserIdCommand";
21
+ import { IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput } from "./commands/IsMemberInGroupsCommand";
22
+ import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "./commands/ListGroupMembershipsCommand";
23
+ import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "./commands/ListGroupMembershipsForMemberCommand";
11
24
  import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
12
25
  import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
13
- export declare type ServiceInputTypes = DescribeGroupCommandInput | DescribeUserCommandInput | ListGroupsCommandInput | ListUsersCommandInput;
14
- export declare type ServiceOutputTypes = DescribeGroupCommandOutput | DescribeUserCommandOutput | ListGroupsCommandOutput | ListUsersCommandOutput;
26
+ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
27
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
28
+ export declare type ServiceInputTypes = CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateUserCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteUserCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeUserCommandInput | GetGroupIdCommandInput | GetGroupMembershipIdCommandInput | GetUserIdCommandInput | IsMemberInGroupsCommandInput | ListGroupMembershipsCommandInput | ListGroupMembershipsForMemberCommandInput | ListGroupsCommandInput | ListUsersCommandInput | UpdateGroupCommandInput | UpdateUserCommandInput;
29
+ export declare type ServiceOutputTypes = CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateUserCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteUserCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeUserCommandOutput | GetGroupIdCommandOutput | GetGroupMembershipIdCommandOutput | GetUserIdCommandOutput | IsMemberInGroupsCommandOutput | ListGroupMembershipsCommandOutput | ListGroupMembershipsForMemberCommandOutput | ListGroupsCommandOutput | ListUsersCommandOutput | UpdateGroupCommandOutput | UpdateUserCommandOutput;
15
30
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
16
31
  /**
17
32
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -130,18 +145,9 @@ declare type IdentitystoreClientResolvedConfigType = __SmithyResolvedConfigurati
130
145
  export interface IdentitystoreClientResolvedConfig extends IdentitystoreClientResolvedConfigType {
131
146
  }
132
147
  /**
133
- * <p>The Identity Store service used by Amazon Web Services Single Sign On provides a single place to retrieve all of
134
- * your identities (users and groups). For more information, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">Amazon Web Services SSO User
148
+ * <p>The AWS Single Sign-On (SSO) Identity Store service provides a single place to retrieve all of your
149
+ * identities (users and groups). For more information about AWS, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On User
135
150
  * Guide</a>.</p>
136
- *
137
- * <note>
138
- * <p>Although Amazon Web Services Single Sign-On was renamed, the <code>sso</code> and
139
- * <code>identitystore</code> API namespaces will continue to retain their original name for
140
- * backward compatibility purposes. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed">Amazon Web Services SSO rename</a>.</p>
141
- * </note>
142
- *
143
- * <p>This reference guide describes the identity store operations that you can call
144
- * programatically and includes detailed information on data types and errors.</p>
145
151
  */
146
152
  export declare class IdentitystoreClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IdentitystoreClientResolvedConfig> {
147
153
  /**
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
5
+ export interface CreateGroupCommandInput extends CreateGroupRequest {
6
+ }
7
+ export interface CreateGroupCommandOutput extends CreateGroupResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a group within the specified identity store.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, CreateGroupCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, CreateGroupCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new CreateGroupCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link CreateGroupCommandInput} for command's `input` shape.
22
+ * @see {@link CreateGroupCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: CreateGroupCommandInput;
28
+ constructor(input: CreateGroupCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGroupCommandInput, CreateGroupCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { CreateGroupMembershipRequest, CreateGroupMembershipResponse } from "../models/models_0";
5
+ export interface CreateGroupMembershipCommandInput extends CreateGroupMembershipRequest {
6
+ }
7
+ export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershipResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <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>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, CreateGroupMembershipCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, CreateGroupMembershipCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new CreateGroupMembershipCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link CreateGroupMembershipCommandInput} for command's `input` shape.
22
+ * @see {@link CreateGroupMembershipCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class CreateGroupMembershipCommand extends $Command<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: CreateGroupMembershipCommandInput;
28
+ constructor(input: CreateGroupMembershipCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { CreateUserRequest, CreateUserResponse } from "../models/models_0";
5
+ export interface CreateUserCommandInput extends CreateUserRequest {
6
+ }
7
+ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a new user within the specified identity store.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, CreateUserCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, CreateUserCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new CreateUserCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link CreateUserCommandInput} for command's `input` shape.
22
+ * @see {@link CreateUserCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: CreateUserCommandInput;
28
+ constructor(input: CreateUserCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateUserCommandInput, CreateUserCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0";
5
+ export interface DeleteGroupCommandInput extends DeleteGroupRequest {
6
+ }
7
+ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Delete a group within an identity store given <code>GroupId</code>.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, DeleteGroupCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, DeleteGroupCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new DeleteGroupCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link DeleteGroupCommandInput} for command's `input` shape.
22
+ * @see {@link DeleteGroupCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class DeleteGroupCommand extends $Command<DeleteGroupCommandInput, DeleteGroupCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: DeleteGroupCommandInput;
28
+ constructor(input: DeleteGroupCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGroupCommandInput, DeleteGroupCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_0";
5
+ export interface DeleteGroupMembershipCommandInput extends DeleteGroupMembershipRequest {
6
+ }
7
+ export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershipResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Delete a membership within a group given <code>MembershipId</code>.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, DeleteGroupMembershipCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, DeleteGroupMembershipCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new DeleteGroupMembershipCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link DeleteGroupMembershipCommandInput} for command's `input` shape.
22
+ * @see {@link DeleteGroupMembershipCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class DeleteGroupMembershipCommand extends $Command<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: DeleteGroupMembershipCommandInput;
28
+ constructor(input: DeleteGroupMembershipCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { DeleteUserRequest, DeleteUserResponse } from "../models/models_0";
5
+ export interface DeleteUserCommandInput extends DeleteUserRequest {
6
+ }
7
+ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Deletes a user within an identity store given <code>UserId</code>.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, DeleteUserCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, DeleteUserCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new DeleteUserCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link DeleteUserCommandInput} for command's `input` shape.
22
+ * @see {@link DeleteUserCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class DeleteUserCommand extends $Command<DeleteUserCommandInput, DeleteUserCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: DeleteUserCommandInput;
28
+ constructor(input: DeleteUserCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteUserCommandInput, DeleteUserCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -7,8 +7,7 @@ export interface DescribeGroupCommandInput extends DescribeGroupRequest {
7
7
  export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity
11
- * store.</p>
10
+ * <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity store.</p>
12
11
  * @example
13
12
  * Use a bare-bones client and the command you need to make an API call.
14
13
  * ```javascript
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { DescribeGroupMembershipRequest, DescribeGroupMembershipResponse } from "../models/models_0";
5
+ export interface DescribeGroupMembershipCommandInput extends DescribeGroupMembershipRequest {
6
+ }
7
+ export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembershipResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Retrieves membership metadata and attributes from <code>MembershipId</code> in a group.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, DescribeGroupMembershipCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, DescribeGroupMembershipCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new DescribeGroupMembershipCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link DescribeGroupMembershipCommandInput} for command's `input` shape.
22
+ * @see {@link DescribeGroupMembershipCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class DescribeGroupMembershipCommand extends $Command<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: DescribeGroupMembershipCommandInput;
28
+ constructor(input: DescribeGroupMembershipCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -7,8 +7,7 @@ export interface DescribeUserCommandInput extends DescribeUserRequest {
7
7
  export interface DescribeUserCommandOutput extends DescribeUserResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Retrieves the user metadata and attributes from <code>UserId</code> in an identity
11
- * store.</p>
10
+ * <p>Retrieves the user metadata and attributes from the <code>UserId</code> in an identity store.</p>
12
11
  * @example
13
12
  * Use a bare-bones client and the command you need to make an API call.
14
13
  * ```javascript
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { GetGroupIdRequest, GetGroupIdResponse } from "../models/models_0";
5
+ export interface GetGroupIdCommandInput extends GetGroupIdRequest {
6
+ }
7
+ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Retrieves <code>GroupId</code> in an identity store.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, GetGroupIdCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, GetGroupIdCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new GetGroupIdCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetGroupIdCommandInput} for command's `input` shape.
22
+ * @see {@link GetGroupIdCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetGroupIdCommand extends $Command<GetGroupIdCommandInput, GetGroupIdCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: GetGroupIdCommandInput;
28
+ constructor(input: GetGroupIdCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupIdCommandInput, GetGroupIdCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { GetGroupMembershipIdRequest, GetGroupMembershipIdResponse } from "../models/models_0";
5
+ export interface GetGroupMembershipIdCommandInput extends GetGroupMembershipIdRequest {
6
+ }
7
+ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Retrieves the <code>MembershipId</code> in a group.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, GetGroupMembershipIdCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, GetGroupMembershipIdCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new GetGroupMembershipIdCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetGroupMembershipIdCommandInput} for command's `input` shape.
22
+ * @see {@link GetGroupMembershipIdCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetGroupMembershipIdCommand extends $Command<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: GetGroupMembershipIdCommandInput;
28
+ constructor(input: GetGroupMembershipIdCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
+ import { GetUserIdRequest, GetUserIdResponse } from "../models/models_0";
5
+ export interface GetUserIdCommandInput extends GetUserIdRequest {
6
+ }
7
+ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Retrieves the <code>UserId</code> in an identity store.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { IdentitystoreClient, GetUserIdCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
15
+ * // const { IdentitystoreClient, GetUserIdCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
16
+ * const client = new IdentitystoreClient(config);
17
+ * const command = new GetUserIdCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetUserIdCommandInput} for command's `input` shape.
22
+ * @see {@link GetUserIdCommandOutput} for command's `response` shape.
23
+ * @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetUserIdCommand extends $Command<GetUserIdCommandInput, GetUserIdCommandOutput, IdentitystoreClientResolvedConfig> {
27
+ readonly input: GetUserIdCommandInput;
28
+ constructor(input: GetUserIdCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUserIdCommandInput, GetUserIdCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }