@aws-sdk/client-identitystore 3.926.0 → 3.928.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.
- package/dist-cjs/index.js +835 -1048
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/IdentitystoreClient.js +2 -0
- package/dist-es/commands/CreateGroupCommand.js +3 -10
- package/dist-es/commands/CreateGroupMembershipCommand.js +3 -9
- package/dist-es/commands/CreateUserCommand.js +3 -10
- package/dist-es/commands/DeleteGroupCommand.js +3 -9
- package/dist-es/commands/DeleteGroupMembershipCommand.js +3 -9
- package/dist-es/commands/DeleteUserCommand.js +3 -9
- package/dist-es/commands/DescribeGroupCommand.js +3 -10
- package/dist-es/commands/DescribeGroupMembershipCommand.js +3 -9
- package/dist-es/commands/DescribeUserCommand.js +3 -10
- package/dist-es/commands/GetGroupIdCommand.js +3 -10
- package/dist-es/commands/GetGroupMembershipIdCommand.js +3 -9
- package/dist-es/commands/GetUserIdCommand.js +3 -10
- package/dist-es/commands/IsMemberInGroupsCommand.js +3 -10
- package/dist-es/commands/ListGroupMembershipsCommand.js +3 -9
- package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +3 -9
- package/dist-es/commands/ListGroupsCommand.js +3 -10
- package/dist-es/commands/ListUsersCommand.js +3 -10
- package/dist-es/commands/UpdateGroupCommand.js +3 -9
- package/dist-es/commands/UpdateUserCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -170
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +776 -0
- package/dist-types/IdentitystoreClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -88
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +100 -0
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -48
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +106 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -707
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -173
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -233
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
11
11
|
import { CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput } from "./commands/CreateGroupMembershipCommand";
|
|
@@ -160,6 +160,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
160
160
|
* Optional extensions
|
|
161
161
|
*/
|
|
162
162
|
extensions?: RuntimeExtension[];
|
|
163
|
+
/**
|
|
164
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
165
|
+
* may be overridden. A default will always be set by the client.
|
|
166
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
167
|
+
* the client.
|
|
168
|
+
* @alpha
|
|
169
|
+
*
|
|
170
|
+
*/
|
|
171
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
163
172
|
/**
|
|
164
173
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
165
174
|
*/
|
|
@@ -1630,91 +1630,3 @@ export interface UpdateUserRequest {
|
|
|
1630
1630
|
*/
|
|
1631
1631
|
export interface UpdateUserResponse {
|
|
1632
1632
|
}
|
|
1633
|
-
/**
|
|
1634
|
-
* @internal
|
|
1635
|
-
*/
|
|
1636
|
-
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1637
|
-
/**
|
|
1638
|
-
* @internal
|
|
1639
|
-
*/
|
|
1640
|
-
export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
|
|
1641
|
-
/**
|
|
1642
|
-
* @internal
|
|
1643
|
-
*/
|
|
1644
|
-
export declare const AlternateIdentifierFilterSensitiveLog: (obj: AlternateIdentifier) => any;
|
|
1645
|
-
/**
|
|
1646
|
-
* @internal
|
|
1647
|
-
*/
|
|
1648
|
-
export declare const GetGroupIdRequestFilterSensitiveLog: (obj: GetGroupIdRequest) => any;
|
|
1649
|
-
/**
|
|
1650
|
-
* @internal
|
|
1651
|
-
*/
|
|
1652
|
-
export declare const GetUserIdRequestFilterSensitiveLog: (obj: GetUserIdRequest) => any;
|
|
1653
|
-
/**
|
|
1654
|
-
* @internal
|
|
1655
|
-
*/
|
|
1656
|
-
export declare const CreateGroupRequestFilterSensitiveLog: (obj: CreateGroupRequest) => any;
|
|
1657
|
-
/**
|
|
1658
|
-
* @internal
|
|
1659
|
-
*/
|
|
1660
|
-
export declare const DescribeGroupResponseFilterSensitiveLog: (obj: DescribeGroupResponse) => any;
|
|
1661
|
-
/**
|
|
1662
|
-
* @internal
|
|
1663
|
-
*/
|
|
1664
|
-
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
1665
|
-
/**
|
|
1666
|
-
* @internal
|
|
1667
|
-
*/
|
|
1668
|
-
export declare const ListGroupsRequestFilterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
1669
|
-
/**
|
|
1670
|
-
* @internal
|
|
1671
|
-
*/
|
|
1672
|
-
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
1673
|
-
/**
|
|
1674
|
-
* @internal
|
|
1675
|
-
*/
|
|
1676
|
-
export declare const ListGroupsResponseFilterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
1677
|
-
/**
|
|
1678
|
-
* @internal
|
|
1679
|
-
*/
|
|
1680
|
-
export declare const GroupMembershipExistenceResultFilterSensitiveLog: (obj: GroupMembershipExistenceResult) => any;
|
|
1681
|
-
/**
|
|
1682
|
-
* @internal
|
|
1683
|
-
*/
|
|
1684
|
-
export declare const IsMemberInGroupsResponseFilterSensitiveLog: (obj: IsMemberInGroupsResponse) => any;
|
|
1685
|
-
/**
|
|
1686
|
-
* @internal
|
|
1687
|
-
*/
|
|
1688
|
-
export declare const EmailFilterSensitiveLog: (obj: Email) => any;
|
|
1689
|
-
/**
|
|
1690
|
-
* @internal
|
|
1691
|
-
*/
|
|
1692
|
-
export declare const NameFilterSensitiveLog: (obj: Name) => any;
|
|
1693
|
-
/**
|
|
1694
|
-
* @internal
|
|
1695
|
-
*/
|
|
1696
|
-
export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
|
|
1697
|
-
/**
|
|
1698
|
-
* @internal
|
|
1699
|
-
*/
|
|
1700
|
-
export declare const PhotoFilterSensitiveLog: (obj: Photo) => any;
|
|
1701
|
-
/**
|
|
1702
|
-
* @internal
|
|
1703
|
-
*/
|
|
1704
|
-
export declare const CreateUserRequestFilterSensitiveLog: (obj: CreateUserRequest) => any;
|
|
1705
|
-
/**
|
|
1706
|
-
* @internal
|
|
1707
|
-
*/
|
|
1708
|
-
export declare const DescribeUserResponseFilterSensitiveLog: (obj: DescribeUserResponse) => any;
|
|
1709
|
-
/**
|
|
1710
|
-
* @internal
|
|
1711
|
-
*/
|
|
1712
|
-
export declare const ListUsersRequestFilterSensitiveLog: (obj: ListUsersRequest) => any;
|
|
1713
|
-
/**
|
|
1714
|
-
* @internal
|
|
1715
|
-
*/
|
|
1716
|
-
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
1717
|
-
/**
|
|
1718
|
-
* @internal
|
|
1719
|
-
*/
|
|
1720
|
-
export declare const ListUsersResponseFilterSensitiveLog: (obj: ListUsersResponse) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").IdentitystoreHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var ExternalIdIdentifier: StaticSimpleSchema;
|
|
3
|
+
export declare var ExternalIdIssuer: StaticSimpleSchema;
|
|
4
|
+
export declare var GroupDisplayName: StaticSimpleSchema;
|
|
5
|
+
export declare var SensitiveBooleanType: StaticSimpleSchema;
|
|
6
|
+
export declare var SensitiveStringType: StaticSimpleSchema;
|
|
7
|
+
export declare var UserName: StaticSimpleSchema;
|
|
8
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
9
|
+
export declare var Address: StaticStructureSchema;
|
|
10
|
+
export declare var AttributeOperation: StaticStructureSchema;
|
|
11
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
12
|
+
export declare var CreateGroupMembershipRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateGroupMembershipResponse: StaticStructureSchema;
|
|
14
|
+
export declare var CreateGroupRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateGroupResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateUserRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateUserResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteGroupMembershipRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteGroupMembershipResponse: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteGroupRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteGroupResponse: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteUserRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteUserResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DescribeGroupMembershipRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DescribeGroupMembershipResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DescribeGroupRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DescribeGroupResponse: StaticStructureSchema;
|
|
28
|
+
export declare var DescribeUserRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DescribeUserResponse: StaticStructureSchema;
|
|
30
|
+
export declare var Email: StaticStructureSchema;
|
|
31
|
+
export declare var ExternalId: StaticStructureSchema;
|
|
32
|
+
export declare var Filter: StaticStructureSchema;
|
|
33
|
+
export declare var GetGroupIdRequest: StaticStructureSchema;
|
|
34
|
+
export declare var GetGroupIdResponse: StaticStructureSchema;
|
|
35
|
+
export declare var GetGroupMembershipIdRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetGroupMembershipIdResponse: StaticStructureSchema;
|
|
37
|
+
export declare var GetUserIdRequest: StaticStructureSchema;
|
|
38
|
+
export declare var GetUserIdResponse: StaticStructureSchema;
|
|
39
|
+
export declare var Group: StaticStructureSchema;
|
|
40
|
+
export declare var GroupMembership: StaticStructureSchema;
|
|
41
|
+
export declare var GroupMembershipExistenceResult: StaticStructureSchema;
|
|
42
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
43
|
+
export declare var IsMemberInGroupsRequest: StaticStructureSchema;
|
|
44
|
+
export declare var IsMemberInGroupsResponse: StaticStructureSchema;
|
|
45
|
+
export declare var ListGroupMembershipsForMemberRequest: StaticStructureSchema;
|
|
46
|
+
export declare var ListGroupMembershipsForMemberResponse: StaticStructureSchema;
|
|
47
|
+
export declare var ListGroupMembershipsRequest: StaticStructureSchema;
|
|
48
|
+
export declare var ListGroupMembershipsResponse: StaticStructureSchema;
|
|
49
|
+
export declare var ListGroupsRequest: StaticStructureSchema;
|
|
50
|
+
export declare var ListGroupsResponse: StaticStructureSchema;
|
|
51
|
+
export declare var ListUsersRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ListUsersResponse: StaticStructureSchema;
|
|
53
|
+
export declare var Name: StaticStructureSchema;
|
|
54
|
+
export declare var PhoneNumber: StaticStructureSchema;
|
|
55
|
+
export declare var Photo: StaticStructureSchema;
|
|
56
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
57
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
58
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
59
|
+
export declare var UniqueAttribute: StaticStructureSchema;
|
|
60
|
+
export declare var UpdateGroupRequest: StaticStructureSchema;
|
|
61
|
+
export declare var UpdateGroupResponse: StaticStructureSchema;
|
|
62
|
+
export declare var UpdateUserRequest: StaticStructureSchema;
|
|
63
|
+
export declare var UpdateUserResponse: StaticStructureSchema;
|
|
64
|
+
export declare var User: StaticStructureSchema;
|
|
65
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
66
|
+
export declare var __Unit: "unit";
|
|
67
|
+
export declare var IdentitystoreServiceException: StaticErrorSchema;
|
|
68
|
+
export declare var Addresses: StaticListSchema;
|
|
69
|
+
export declare var AttributeOperations: StaticListSchema;
|
|
70
|
+
export declare var Emails: StaticListSchema;
|
|
71
|
+
export declare var ExternalIds: StaticListSchema;
|
|
72
|
+
export declare var Filters: StaticListSchema;
|
|
73
|
+
export declare var GroupIds: number;
|
|
74
|
+
export declare var GroupMembershipExistenceResults: StaticListSchema;
|
|
75
|
+
export declare var GroupMemberships: StaticListSchema;
|
|
76
|
+
export declare var Groups: StaticListSchema;
|
|
77
|
+
export declare var PhoneNumbers: StaticListSchema;
|
|
78
|
+
export declare var Photos: StaticListSchema;
|
|
79
|
+
export declare var Users: StaticListSchema;
|
|
80
|
+
export declare var AlternateIdentifier: StaticStructureSchema;
|
|
81
|
+
export declare var MemberId: StaticStructureSchema;
|
|
82
|
+
export declare var CreateGroup: StaticOperationSchema;
|
|
83
|
+
export declare var CreateGroupMembership: StaticOperationSchema;
|
|
84
|
+
export declare var CreateUser: StaticOperationSchema;
|
|
85
|
+
export declare var DeleteGroup: StaticOperationSchema;
|
|
86
|
+
export declare var DeleteGroupMembership: StaticOperationSchema;
|
|
87
|
+
export declare var DeleteUser: StaticOperationSchema;
|
|
88
|
+
export declare var DescribeGroup: StaticOperationSchema;
|
|
89
|
+
export declare var DescribeGroupMembership: StaticOperationSchema;
|
|
90
|
+
export declare var DescribeUser: StaticOperationSchema;
|
|
91
|
+
export declare var GetGroupId: StaticOperationSchema;
|
|
92
|
+
export declare var GetGroupMembershipId: StaticOperationSchema;
|
|
93
|
+
export declare var GetUserId: StaticOperationSchema;
|
|
94
|
+
export declare var IsMemberInGroups: StaticOperationSchema;
|
|
95
|
+
export declare var ListGroupMemberships: StaticOperationSchema;
|
|
96
|
+
export declare var ListGroupMembershipsForMember: StaticOperationSchema;
|
|
97
|
+
export declare var ListGroups: StaticOperationSchema;
|
|
98
|
+
export declare var ListUsers: StaticOperationSchema;
|
|
99
|
+
export declare var UpdateGroup: StaticOperationSchema;
|
|
100
|
+
export declare var UpdateUser: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -192,6 +195,7 @@ export interface ClientDefaults
|
|
|
192
195
|
retryMode?: string | __Provider<string>;
|
|
193
196
|
logger?: __Logger;
|
|
194
197
|
extensions?: RuntimeExtension[];
|
|
198
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
195
199
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
196
200
|
}
|
|
197
201
|
export type IdentitystoreClientConfigType = Partial<
|
|
@@ -461,51 +461,3 @@ export interface UpdateUserRequest {
|
|
|
461
461
|
Operations: AttributeOperation[] | undefined;
|
|
462
462
|
}
|
|
463
463
|
export interface UpdateUserResponse {}
|
|
464
|
-
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
465
|
-
export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
|
|
466
|
-
export declare const AlternateIdentifierFilterSensitiveLog: (
|
|
467
|
-
obj: AlternateIdentifier
|
|
468
|
-
) => any;
|
|
469
|
-
export declare const GetGroupIdRequestFilterSensitiveLog: (
|
|
470
|
-
obj: GetGroupIdRequest
|
|
471
|
-
) => any;
|
|
472
|
-
export declare const GetUserIdRequestFilterSensitiveLog: (
|
|
473
|
-
obj: GetUserIdRequest
|
|
474
|
-
) => any;
|
|
475
|
-
export declare const CreateGroupRequestFilterSensitiveLog: (
|
|
476
|
-
obj: CreateGroupRequest
|
|
477
|
-
) => any;
|
|
478
|
-
export declare const DescribeGroupResponseFilterSensitiveLog: (
|
|
479
|
-
obj: DescribeGroupResponse
|
|
480
|
-
) => any;
|
|
481
|
-
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
482
|
-
export declare const ListGroupsRequestFilterSensitiveLog: (
|
|
483
|
-
obj: ListGroupsRequest
|
|
484
|
-
) => any;
|
|
485
|
-
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
486
|
-
export declare const ListGroupsResponseFilterSensitiveLog: (
|
|
487
|
-
obj: ListGroupsResponse
|
|
488
|
-
) => any;
|
|
489
|
-
export declare const GroupMembershipExistenceResultFilterSensitiveLog: (
|
|
490
|
-
obj: GroupMembershipExistenceResult
|
|
491
|
-
) => any;
|
|
492
|
-
export declare const IsMemberInGroupsResponseFilterSensitiveLog: (
|
|
493
|
-
obj: IsMemberInGroupsResponse
|
|
494
|
-
) => any;
|
|
495
|
-
export declare const EmailFilterSensitiveLog: (obj: Email) => any;
|
|
496
|
-
export declare const NameFilterSensitiveLog: (obj: Name) => any;
|
|
497
|
-
export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
|
|
498
|
-
export declare const PhotoFilterSensitiveLog: (obj: Photo) => any;
|
|
499
|
-
export declare const CreateUserRequestFilterSensitiveLog: (
|
|
500
|
-
obj: CreateUserRequest
|
|
501
|
-
) => any;
|
|
502
|
-
export declare const DescribeUserResponseFilterSensitiveLog: (
|
|
503
|
-
obj: DescribeUserResponse
|
|
504
|
-
) => any;
|
|
505
|
-
export declare const ListUsersRequestFilterSensitiveLog: (
|
|
506
|
-
obj: ListUsersRequest
|
|
507
|
-
) => any;
|
|
508
|
-
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
509
|
-
export declare const ListUsersResponseFilterSensitiveLog: (
|
|
510
|
-
obj: ListUsersResponse
|
|
511
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").IdentitystoreHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var ExternalIdIdentifier: StaticSimpleSchema;
|
|
9
|
+
export declare var ExternalIdIssuer: StaticSimpleSchema;
|
|
10
|
+
export declare var GroupDisplayName: StaticSimpleSchema;
|
|
11
|
+
export declare var SensitiveBooleanType: StaticSimpleSchema;
|
|
12
|
+
export declare var SensitiveStringType: StaticSimpleSchema;
|
|
13
|
+
export declare var UserName: StaticSimpleSchema;
|
|
14
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
15
|
+
export declare var Address: StaticStructureSchema;
|
|
16
|
+
export declare var AttributeOperation: StaticStructureSchema;
|
|
17
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
18
|
+
export declare var CreateGroupMembershipRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateGroupMembershipResponse: StaticStructureSchema;
|
|
20
|
+
export declare var CreateGroupRequest: StaticStructureSchema;
|
|
21
|
+
export declare var CreateGroupResponse: StaticStructureSchema;
|
|
22
|
+
export declare var CreateUserRequest: StaticStructureSchema;
|
|
23
|
+
export declare var CreateUserResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteGroupMembershipRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteGroupMembershipResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteGroupRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteGroupResponse: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteUserRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteUserResponse: StaticStructureSchema;
|
|
30
|
+
export declare var DescribeGroupMembershipRequest: StaticStructureSchema;
|
|
31
|
+
export declare var DescribeGroupMembershipResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DescribeGroupRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DescribeGroupResponse: StaticStructureSchema;
|
|
34
|
+
export declare var DescribeUserRequest: StaticStructureSchema;
|
|
35
|
+
export declare var DescribeUserResponse: StaticStructureSchema;
|
|
36
|
+
export declare var Email: StaticStructureSchema;
|
|
37
|
+
export declare var ExternalId: StaticStructureSchema;
|
|
38
|
+
export declare var Filter: StaticStructureSchema;
|
|
39
|
+
export declare var GetGroupIdRequest: StaticStructureSchema;
|
|
40
|
+
export declare var GetGroupIdResponse: StaticStructureSchema;
|
|
41
|
+
export declare var GetGroupMembershipIdRequest: StaticStructureSchema;
|
|
42
|
+
export declare var GetGroupMembershipIdResponse: StaticStructureSchema;
|
|
43
|
+
export declare var GetUserIdRequest: StaticStructureSchema;
|
|
44
|
+
export declare var GetUserIdResponse: StaticStructureSchema;
|
|
45
|
+
export declare var Group: StaticStructureSchema;
|
|
46
|
+
export declare var GroupMembership: StaticStructureSchema;
|
|
47
|
+
export declare var GroupMembershipExistenceResult: StaticStructureSchema;
|
|
48
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
49
|
+
export declare var IsMemberInGroupsRequest: StaticStructureSchema;
|
|
50
|
+
export declare var IsMemberInGroupsResponse: StaticStructureSchema;
|
|
51
|
+
export declare var ListGroupMembershipsForMemberRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ListGroupMembershipsForMemberResponse: StaticStructureSchema;
|
|
53
|
+
export declare var ListGroupMembershipsRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListGroupMembershipsResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListGroupsRequest: StaticStructureSchema;
|
|
56
|
+
export declare var ListGroupsResponse: StaticStructureSchema;
|
|
57
|
+
export declare var ListUsersRequest: StaticStructureSchema;
|
|
58
|
+
export declare var ListUsersResponse: StaticStructureSchema;
|
|
59
|
+
export declare var Name: StaticStructureSchema;
|
|
60
|
+
export declare var PhoneNumber: StaticStructureSchema;
|
|
61
|
+
export declare var Photo: StaticStructureSchema;
|
|
62
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
63
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
64
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
65
|
+
export declare var UniqueAttribute: StaticStructureSchema;
|
|
66
|
+
export declare var UpdateGroupRequest: StaticStructureSchema;
|
|
67
|
+
export declare var UpdateGroupResponse: StaticStructureSchema;
|
|
68
|
+
export declare var UpdateUserRequest: StaticStructureSchema;
|
|
69
|
+
export declare var UpdateUserResponse: StaticStructureSchema;
|
|
70
|
+
export declare var User: StaticStructureSchema;
|
|
71
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
72
|
+
export declare var __Unit: "unit";
|
|
73
|
+
export declare var IdentitystoreServiceException: StaticErrorSchema;
|
|
74
|
+
export declare var Addresses: StaticListSchema;
|
|
75
|
+
export declare var AttributeOperations: StaticListSchema;
|
|
76
|
+
export declare var Emails: StaticListSchema;
|
|
77
|
+
export declare var ExternalIds: StaticListSchema;
|
|
78
|
+
export declare var Filters: StaticListSchema;
|
|
79
|
+
export declare var GroupIds: number;
|
|
80
|
+
export declare var GroupMembershipExistenceResults: StaticListSchema;
|
|
81
|
+
export declare var GroupMemberships: StaticListSchema;
|
|
82
|
+
export declare var Groups: StaticListSchema;
|
|
83
|
+
export declare var PhoneNumbers: StaticListSchema;
|
|
84
|
+
export declare var Photos: StaticListSchema;
|
|
85
|
+
export declare var Users: StaticListSchema;
|
|
86
|
+
export declare var AlternateIdentifier: StaticStructureSchema;
|
|
87
|
+
export declare var MemberId: StaticStructureSchema;
|
|
88
|
+
export declare var CreateGroup: StaticOperationSchema;
|
|
89
|
+
export declare var CreateGroupMembership: StaticOperationSchema;
|
|
90
|
+
export declare var CreateUser: StaticOperationSchema;
|
|
91
|
+
export declare var DeleteGroup: StaticOperationSchema;
|
|
92
|
+
export declare var DeleteGroupMembership: StaticOperationSchema;
|
|
93
|
+
export declare var DeleteUser: StaticOperationSchema;
|
|
94
|
+
export declare var DescribeGroup: StaticOperationSchema;
|
|
95
|
+
export declare var DescribeGroupMembership: StaticOperationSchema;
|
|
96
|
+
export declare var DescribeUser: StaticOperationSchema;
|
|
97
|
+
export declare var GetGroupId: StaticOperationSchema;
|
|
98
|
+
export declare var GetGroupMembershipId: StaticOperationSchema;
|
|
99
|
+
export declare var GetUserId: StaticOperationSchema;
|
|
100
|
+
export declare var IsMemberInGroups: StaticOperationSchema;
|
|
101
|
+
export declare var ListGroupMemberships: StaticOperationSchema;
|
|
102
|
+
export declare var ListGroupMembershipsForMember: StaticOperationSchema;
|
|
103
|
+
export declare var ListGroups: StaticOperationSchema;
|
|
104
|
+
export declare var ListUsers: StaticOperationSchema;
|
|
105
|
+
export declare var UpdateGroup: StaticOperationSchema;
|
|
106
|
+
export declare var UpdateUser: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-identitystore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Identitystore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.928.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-identitystore",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.928.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|