@aws-sdk/client-identitystore 3.533.0 → 3.535.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 (42) hide show
  1. package/dist-types/Identitystore.d.ts +1 -1
  2. package/dist-types/IdentitystoreClient.d.ts +1 -1
  3. package/dist-types/commands/CreateGroupCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateGroupMembershipCommand.d.ts +2 -1
  5. package/dist-types/commands/CreateUserCommand.d.ts +2 -1
  6. package/dist-types/commands/DeleteGroupCommand.d.ts +2 -1
  7. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteUserCommand.d.ts +2 -1
  9. package/dist-types/commands/DescribeGroupCommand.d.ts +2 -1
  10. package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +2 -1
  11. package/dist-types/commands/DescribeUserCommand.d.ts +2 -1
  12. package/dist-types/commands/GetGroupIdCommand.d.ts +2 -1
  13. package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +2 -1
  14. package/dist-types/commands/GetUserIdCommand.d.ts +2 -1
  15. package/dist-types/commands/IsMemberInGroupsCommand.d.ts +2 -1
  16. package/dist-types/commands/ListGroupMembershipsCommand.d.ts +2 -1
  17. package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +2 -1
  18. package/dist-types/commands/ListGroupsCommand.d.ts +2 -1
  19. package/dist-types/commands/ListUsersCommand.d.ts +2 -1
  20. package/dist-types/commands/UpdateGroupCommand.d.ts +2 -1
  21. package/dist-types/commands/UpdateUserCommand.d.ts +2 -1
  22. package/dist-types/models/models_0.d.ts +202 -202
  23. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +9 -0
  42. package/package.json +40 -40
@@ -136,7 +136,6 @@ export interface Identitystore {
136
136
  updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
137
137
  }
138
138
  /**
139
- * @public
140
139
  * <p>The Identity Store service used by IAM Identity Center provides a single place to retrieve all of
141
140
  * your identities (users and groups). For more information, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">IAM Identity Center User
142
141
  * Guide</a>.</p>
@@ -145,6 +144,7 @@ export interface Identitystore {
145
144
  * <note>
146
145
  * <p>IAM Identity Center uses the <code>sso</code> and <code>identitystore</code> API namespaces.</p>
147
146
  * </note>
147
+ * @public
148
148
  */
149
149
  export declare class Identitystore extends IdentitystoreClient implements Identitystore {
150
150
  }
@@ -170,7 +170,6 @@ export type IdentitystoreClientResolvedConfigType = __SmithyResolvedConfiguratio
170
170
  export interface IdentitystoreClientResolvedConfig extends IdentitystoreClientResolvedConfigType {
171
171
  }
172
172
  /**
173
- * @public
174
173
  * <p>The Identity Store service used by IAM Identity Center provides a single place to retrieve all of
175
174
  * your identities (users and groups). For more information, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">IAM Identity Center User
176
175
  * Guide</a>.</p>
@@ -179,6 +178,7 @@ export interface IdentitystoreClientResolvedConfig extends IdentitystoreClientRe
179
178
  * <note>
180
179
  * <p>IAM Identity Center uses the <code>sso</code> and <code>identitystore</code> API namespaces.</p>
181
180
  * </note>
181
+ * @public
182
182
  */
183
183
  export declare class IdentitystoreClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IdentitystoreClientResolvedConfig> {
184
184
  /**
@@ -22,10 +22,10 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
22
22
  }
23
23
  declare const CreateGroupCommand_base: {
24
24
  new (input: CreateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a group within the specified identity store.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -85,6 +85,7 @@ declare const CreateGroupCommand_base: {
85
85
  * @throws {@link IdentitystoreServiceException}
86
86
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class CreateGroupCommand extends CreateGroupCommand_base {
90
91
  }
@@ -22,10 +22,10 @@ export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershi
22
22
  }
23
23
  declare const CreateGroupMembershipCommand_base: {
24
24
  new (input: CreateGroupMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateGroupMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <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>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -87,6 +87,7 @@ declare const CreateGroupMembershipCommand_base: {
87
87
  * @throws {@link IdentitystoreServiceException}
88
88
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class CreateGroupMembershipCommand extends CreateGroupMembershipCommand_base {
92
93
  }
@@ -22,10 +22,10 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
22
22
  }
23
23
  declare const CreateUserCommand_base: {
24
24
  new (input: CreateUserCommandInput): import("@smithy/smithy-client").CommandImpl<CreateUserCommandInput, CreateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateUserCommandInput): import("@smithy/smithy-client").CommandImpl<CreateUserCommandInput, CreateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a user within the specified identity store.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -126,6 +126,7 @@ declare const CreateUserCommand_base: {
126
126
  * @throws {@link IdentitystoreServiceException}
127
127
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
128
128
  *
129
+ * @public
129
130
  */
130
131
  export declare class CreateUserCommand extends CreateUserCommand_base {
131
132
  }
@@ -22,10 +22,10 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat
22
22
  }
23
23
  declare const DeleteGroupCommand_base: {
24
24
  new (input: DeleteGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Delete a group within an identity store given <code>GroupId</code>.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -78,6 +78,7 @@ declare const DeleteGroupCommand_base: {
78
78
  * @throws {@link IdentitystoreServiceException}
79
79
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class DeleteGroupCommand extends DeleteGroupCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershi
22
22
  }
23
23
  declare const DeleteGroupMembershipCommand_base: {
24
24
  new (input: DeleteGroupMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteGroupMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Delete a membership within a group given <code>MembershipId</code>.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -78,6 +78,7 @@ declare const DeleteGroupMembershipCommand_base: {
78
78
  * @throws {@link IdentitystoreServiceException}
79
79
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class DeleteGroupMembershipCommand extends DeleteGroupMembershipCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB
22
22
  }
23
23
  declare const DeleteUserCommand_base: {
24
24
  new (input: DeleteUserCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteUserCommandInput, DeleteUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteUserCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteUserCommandInput, DeleteUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a user within an identity store given <code>UserId</code>.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -78,6 +78,7 @@ declare const DeleteUserCommand_base: {
78
78
  * @throws {@link IdentitystoreServiceException}
79
79
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class DeleteUserCommand extends DeleteUserCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __Met
22
22
  }
23
23
  declare const DescribeGroupCommand_base: {
24
24
  new (input: DescribeGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeGroupCommandInput, DescribeGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeGroupCommandInput, DescribeGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity
30
30
  * store.</p>
31
31
  * <note>
@@ -84,6 +84,7 @@ declare const DescribeGroupCommand_base: {
84
84
  * @throws {@link IdentitystoreServiceException}
85
85
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
86
86
  *
87
+ * @public
87
88
  */
88
89
  export declare class DescribeGroupCommand extends DescribeGroupCommand_base {
89
90
  }
@@ -22,10 +22,10 @@ export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembe
22
22
  }
23
23
  declare const DescribeGroupMembershipCommand_base: {
24
24
  new (input: DescribeGroupMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeGroupMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves membership metadata and attributes from <code>MembershipId</code> in an identity store.</p>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -79,6 +79,7 @@ declare const DescribeGroupMembershipCommand_base: {
79
79
  * @throws {@link IdentitystoreServiceException}
80
80
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
81
81
  *
82
+ * @public
82
83
  */
83
84
  export declare class DescribeGroupMembershipCommand extends DescribeGroupMembershipCommand_base {
84
85
  }
@@ -22,10 +22,10 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
22
22
  }
23
23
  declare const DescribeUserCommand_base: {
24
24
  new (input: DescribeUserCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeUserCommandInput, DescribeUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeUserCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeUserCommandInput, DescribeUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the user metadata and attributes from the <code>UserId</code> in an identity store.</p>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -124,6 +124,7 @@ declare const DescribeUserCommand_base: {
124
124
  * @throws {@link IdentitystoreServiceException}
125
125
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
126
126
  *
127
+ * @public
127
128
  */
128
129
  export declare class DescribeUserCommand extends DescribeUserCommand_base {
129
130
  }
@@ -22,10 +22,10 @@ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataB
22
22
  }
23
23
  declare const GetGroupIdCommand_base: {
24
24
  new (input: GetGroupIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupIdCommandInput, GetGroupIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetGroupIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupIdCommandInput, GetGroupIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves <code>GroupId</code> in an identity store.</p>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -84,6 +84,7 @@ declare const GetGroupIdCommand_base: {
84
84
  * @throws {@link IdentitystoreServiceException}
85
85
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
86
86
  *
87
+ * @public
87
88
  */
88
89
  export declare class GetGroupIdCommand extends GetGroupIdCommand_base {
89
90
  }
@@ -22,10 +22,10 @@ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdR
22
22
  }
23
23
  declare const GetGroupMembershipIdCommand_base: {
24
24
  new (input: GetGroupMembershipIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetGroupMembershipIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the <code>MembershipId</code> in an identity store.</p>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -78,6 +78,7 @@ declare const GetGroupMembershipIdCommand_base: {
78
78
  * @throws {@link IdentitystoreServiceException}
79
79
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class GetGroupMembershipIdCommand extends GetGroupMembershipIdCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBea
22
22
  }
23
23
  declare const GetUserIdCommand_base: {
24
24
  new (input: GetUserIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetUserIdCommandInput, GetUserIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetUserIdCommandInput): import("@smithy/smithy-client").CommandImpl<GetUserIdCommandInput, GetUserIdCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the <code>UserId</code> in an identity store.</p>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -84,6 +84,7 @@ declare const GetUserIdCommand_base: {
84
84
  * @throws {@link IdentitystoreServiceException}
85
85
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
86
86
  *
87
+ * @public
87
88
  */
88
89
  export declare class GetUserIdCommand extends GetUserIdCommand_base {
89
90
  }
@@ -22,10 +22,10 @@ export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse,
22
22
  }
23
23
  declare const IsMemberInGroupsCommand_base: {
24
24
  new (input: IsMemberInGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: IsMemberInGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Checks the user's membership in all requested groups and returns if the member exists in all queried groups.</p>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -87,6 +87,7 @@ declare const IsMemberInGroupsCommand_base: {
87
87
  * @throws {@link IdentitystoreServiceException}
88
88
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class IsMemberInGroupsCommand extends IsMemberInGroupsCommand_base {
92
93
  }
@@ -22,10 +22,10 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR
22
22
  }
23
23
  declare const ListGroupMembershipsCommand_base: {
24
24
  new (input: ListGroupMembershipsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListGroupMembershipsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <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>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -86,6 +86,7 @@ declare const ListGroupMembershipsCommand_base: {
86
86
  * @throws {@link IdentitystoreServiceException}
87
87
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class ListGroupMembershipsCommand extends ListGroupMembershipsCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMem
22
22
  }
23
23
  declare const ListGroupMembershipsForMemberCommand_base: {
24
24
  new (input: ListGroupMembershipsForMemberCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListGroupMembershipsForMemberCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <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>
30
30
  * <note>
31
31
  * <p>If you have administrator access to a member account, you can use this API from the member account.
@@ -88,6 +88,7 @@ declare const ListGroupMembershipsForMemberCommand_base: {
88
88
  * @throws {@link IdentitystoreServiceException}
89
89
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
90
90
  *
91
+ * @public
91
92
  */
92
93
  export declare class ListGroupMembershipsForMemberCommand extends ListGroupMembershipsForMemberCommand_base {
93
94
  }
@@ -22,10 +22,10 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
22
22
  }
23
23
  declare const ListGroupsCommand_base: {
24
24
  new (input: ListGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects.
30
30
  * Filtering for a <code>Group</code> by the <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</p>
31
31
  * <note>
@@ -96,6 +96,7 @@ declare const ListGroupsCommand_base: {
96
96
  * @throws {@link IdentitystoreServiceException}
97
97
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
98
98
  *
99
+ * @public
99
100
  */
100
101
  export declare class ListGroupsCommand extends ListGroupsCommand_base {
101
102
  }
@@ -22,10 +22,10 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
22
22
  }
23
23
  declare const ListUsersCommand_base: {
24
24
  new (input: ListUsersCommandInput): import("@smithy/smithy-client").CommandImpl<ListUsersCommandInput, ListUsersCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListUsersCommandInput): import("@smithy/smithy-client").CommandImpl<ListUsersCommandInput, ListUsersCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects.
30
30
  * Filtering for a <code>User</code> by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</p>
31
31
  * <note>
@@ -137,6 +137,7 @@ declare const ListUsersCommand_base: {
137
137
  * @throws {@link IdentitystoreServiceException}
138
138
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
139
139
  *
140
+ * @public
140
141
  */
141
142
  export declare class ListUsersCommand extends ListUsersCommand_base {
142
143
  }
@@ -22,10 +22,10 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat
22
22
  }
23
23
  declare const UpdateGroupCommand_base: {
24
24
  new (input: UpdateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGroupCommandInput, UpdateGroupCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>For the specified group in the specified identity store, updates the group metadata and attributes.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -87,6 +87,7 @@ declare const UpdateGroupCommand_base: {
87
87
  * @throws {@link IdentitystoreServiceException}
88
88
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class UpdateGroupCommand extends UpdateGroupCommand_base {
92
93
  }
@@ -22,10 +22,10 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
22
22
  }
23
23
  declare const UpdateUserCommand_base: {
24
24
  new (input: UpdateUserCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateUserCommandInput, UpdateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateUserCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateUserCommandInput, UpdateUserCommandOutput, IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>For the specified user in the specified identity store, updates the user metadata and attributes.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -87,6 +87,7 @@ declare const UpdateUserCommand_base: {
87
87
  * @throws {@link IdentitystoreServiceException}
88
88
  * <p>Base exception class for all service exceptions from Identitystore service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class UpdateUserCommand extends UpdateUserCommand_base {
92
93
  }