@aws-sdk/client-identitystore 3.169.0 → 3.171.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 (40) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Identitystore.d.ts +327 -100
  3. package/dist-types/ts3.4/IdentitystoreClient.d.ts +219 -92
  4. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +7 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +525 -696
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  35. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  40. package/package.json +34 -34
@@ -1,17 +1,32 @@
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 { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0";
5
- export interface UpdateGroupCommandInput extends UpdateGroupRequest {
6
- }
7
- export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateGroupCommand extends $Command<UpdateGroupCommandInput, UpdateGroupCommandOutput, IdentitystoreClientResolvedConfig> {
11
- readonly input: UpdateGroupCommandInput;
12
- constructor(input: UpdateGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGroupCommandInput, UpdateGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IdentitystoreClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IdentitystoreClient";
13
+ import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0";
14
+ export interface UpdateGroupCommandInput extends UpdateGroupRequest {}
15
+ export interface UpdateGroupCommandOutput
16
+ extends UpdateGroupResponse,
17
+ __MetadataBearer {}
18
+ export declare class UpdateGroupCommand extends $Command<
19
+ UpdateGroupCommandInput,
20
+ UpdateGroupCommandOutput,
21
+ IdentitystoreClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateGroupCommandInput;
24
+ constructor(input: UpdateGroupCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IdentitystoreClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateGroupCommandInput, UpdateGroupCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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 { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
5
- export interface UpdateUserCommandInput extends UpdateUserRequest {
6
- }
7
- export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, IdentitystoreClientResolvedConfig> {
11
- readonly input: UpdateUserCommandInput;
12
- constructor(input: UpdateUserCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateUserCommandInput, UpdateUserCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IdentitystoreClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IdentitystoreClient";
13
+ import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
14
+ export interface UpdateUserCommandInput extends UpdateUserRequest {}
15
+ export interface UpdateUserCommandOutput
16
+ extends UpdateUserResponse,
17
+ __MetadataBearer {}
18
+ export declare class UpdateUserCommand extends $Command<
19
+ UpdateUserCommandInput,
20
+ UpdateUserCommandOutput,
21
+ IdentitystoreClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateUserCommandInput;
24
+ constructor(input: UpdateUserCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IdentitystoreClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateUserCommandInput, UpdateUserCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,19 +1,19 @@
1
- export * from "./CreateGroupCommand";
2
- export * from "./CreateGroupMembershipCommand";
3
- export * from "./CreateUserCommand";
4
- export * from "./DeleteGroupCommand";
5
- export * from "./DeleteGroupMembershipCommand";
6
- export * from "./DeleteUserCommand";
7
- export * from "./DescribeGroupCommand";
8
- export * from "./DescribeGroupMembershipCommand";
9
- export * from "./DescribeUserCommand";
10
- export * from "./GetGroupIdCommand";
11
- export * from "./GetGroupMembershipIdCommand";
12
- export * from "./GetUserIdCommand";
13
- export * from "./IsMemberInGroupsCommand";
14
- export * from "./ListGroupMembershipsCommand";
15
- export * from "./ListGroupMembershipsForMemberCommand";
16
- export * from "./ListGroupsCommand";
17
- export * from "./ListUsersCommand";
18
- export * from "./UpdateGroupCommand";
19
- export * from "./UpdateUserCommand";
1
+ export * from "./CreateGroupCommand";
2
+ export * from "./CreateGroupMembershipCommand";
3
+ export * from "./CreateUserCommand";
4
+ export * from "./DeleteGroupCommand";
5
+ export * from "./DeleteGroupMembershipCommand";
6
+ export * from "./DeleteUserCommand";
7
+ export * from "./DescribeGroupCommand";
8
+ export * from "./DescribeGroupMembershipCommand";
9
+ export * from "./DescribeUserCommand";
10
+ export * from "./GetGroupIdCommand";
11
+ export * from "./GetGroupMembershipIdCommand";
12
+ export * from "./GetUserIdCommand";
13
+ export * from "./IsMemberInGroupsCommand";
14
+ export * from "./ListGroupMembershipsCommand";
15
+ export * from "./ListGroupMembershipsForMemberCommand";
16
+ export * from "./ListGroupsCommand";
17
+ export * from "./ListUsersCommand";
18
+ export * from "./UpdateGroupCommand";
19
+ export * from "./UpdateUserCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Identitystore";
2
- export * from "./IdentitystoreClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { IdentitystoreServiceException } from "./models/IdentitystoreServiceException";
1
+ export * from "./Identitystore";
2
+ export * from "./IdentitystoreClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { IdentitystoreServiceException } from "./models/IdentitystoreServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class IdentitystoreServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class IdentitystoreServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";