@aws-sdk/client-identitystore 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Identitystore.d.ts +346 -100
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +244 -92
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +19 -19
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +739 -696
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Identitystore } from "../Identitystore";
|
|
3
|
-
import { IdentitystoreClient } from "../IdentitystoreClient";
|
|
4
|
-
export interface IdentitystorePaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { Identitystore } from "../Identitystore";
|
|
3
|
+
import { IdentitystoreClient } from "../IdentitystoreClient";
|
|
4
|
+
export interface IdentitystorePaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: Identitystore | IdentitystoreClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGroupMembershipsForMemberCommandInput,
|
|
4
|
+
ListGroupMembershipsForMemberCommandOutput,
|
|
5
|
+
} from "../commands/ListGroupMembershipsForMemberCommand";
|
|
6
|
+
import { IdentitystorePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGroupMembershipsForMember(
|
|
8
|
+
config: IdentitystorePaginationConfiguration,
|
|
9
|
+
input: ListGroupMembershipsForMemberCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGroupMembershipsForMemberCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGroupMembershipsCommandInput,
|
|
4
|
+
ListGroupMembershipsCommandOutput,
|
|
5
|
+
} from "../commands/ListGroupMembershipsCommand";
|
|
6
|
+
import { IdentitystorePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGroupMemberships(
|
|
8
|
+
config: IdentitystorePaginationConfiguration,
|
|
9
|
+
input: ListGroupMembershipsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGroupMembershipsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGroupsCommandInput,
|
|
4
|
+
ListGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListGroupsCommand";
|
|
6
|
+
import { IdentitystorePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGroups(
|
|
8
|
+
config: IdentitystorePaginationConfiguration,
|
|
9
|
+
input: ListGroupsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGroupsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUsersCommandInput,
|
|
4
|
+
ListUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListUsersCommand";
|
|
6
|
+
import { IdentitystorePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListUsers(
|
|
8
|
+
config: IdentitystorePaginationConfiguration,
|
|
9
|
+
input: ListUsersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListUsersCommandOutput>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListGroupMembershipsForMemberPaginator";
|
|
3
|
-
export * from "./ListGroupMembershipsPaginator";
|
|
4
|
-
export * from "./ListGroupsPaginator";
|
|
5
|
-
export * from "./ListUsersPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListGroupMembershipsForMemberPaginator";
|
|
3
|
+
export * from "./ListGroupMembershipsPaginator";
|
|
4
|
+
export * from "./ListGroupsPaginator";
|
|
5
|
+
export * from "./ListUsersPaginator";
|
|
@@ -1,59 +1,233 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateGroupCommandInput,
|
|
8
|
+
CreateGroupCommandOutput,
|
|
9
|
+
} from "../commands/CreateGroupCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateGroupMembershipCommandInput,
|
|
12
|
+
CreateGroupMembershipCommandOutput,
|
|
13
|
+
} from "../commands/CreateGroupMembershipCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateUserCommandInput,
|
|
16
|
+
CreateUserCommandOutput,
|
|
17
|
+
} from "../commands/CreateUserCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteGroupCommandInput,
|
|
20
|
+
DeleteGroupCommandOutput,
|
|
21
|
+
} from "../commands/DeleteGroupCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteGroupMembershipCommandInput,
|
|
24
|
+
DeleteGroupMembershipCommandOutput,
|
|
25
|
+
} from "../commands/DeleteGroupMembershipCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteUserCommandInput,
|
|
28
|
+
DeleteUserCommandOutput,
|
|
29
|
+
} from "../commands/DeleteUserCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeGroupCommandInput,
|
|
32
|
+
DescribeGroupCommandOutput,
|
|
33
|
+
} from "../commands/DescribeGroupCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeGroupMembershipCommandInput,
|
|
36
|
+
DescribeGroupMembershipCommandOutput,
|
|
37
|
+
} from "../commands/DescribeGroupMembershipCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeUserCommandInput,
|
|
40
|
+
DescribeUserCommandOutput,
|
|
41
|
+
} from "../commands/DescribeUserCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetGroupIdCommandInput,
|
|
44
|
+
GetGroupIdCommandOutput,
|
|
45
|
+
} from "../commands/GetGroupIdCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetGroupMembershipIdCommandInput,
|
|
48
|
+
GetGroupMembershipIdCommandOutput,
|
|
49
|
+
} from "../commands/GetGroupMembershipIdCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetUserIdCommandInput,
|
|
52
|
+
GetUserIdCommandOutput,
|
|
53
|
+
} from "../commands/GetUserIdCommand";
|
|
54
|
+
import {
|
|
55
|
+
IsMemberInGroupsCommandInput,
|
|
56
|
+
IsMemberInGroupsCommandOutput,
|
|
57
|
+
} from "../commands/IsMemberInGroupsCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListGroupMembershipsCommandInput,
|
|
60
|
+
ListGroupMembershipsCommandOutput,
|
|
61
|
+
} from "../commands/ListGroupMembershipsCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListGroupMembershipsForMemberCommandInput,
|
|
64
|
+
ListGroupMembershipsForMemberCommandOutput,
|
|
65
|
+
} from "../commands/ListGroupMembershipsForMemberCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListGroupsCommandInput,
|
|
68
|
+
ListGroupsCommandOutput,
|
|
69
|
+
} from "../commands/ListGroupsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListUsersCommandInput,
|
|
72
|
+
ListUsersCommandOutput,
|
|
73
|
+
} from "../commands/ListUsersCommand";
|
|
74
|
+
import {
|
|
75
|
+
UpdateGroupCommandInput,
|
|
76
|
+
UpdateGroupCommandOutput,
|
|
77
|
+
} from "../commands/UpdateGroupCommand";
|
|
78
|
+
import {
|
|
79
|
+
UpdateUserCommandInput,
|
|
80
|
+
UpdateUserCommandOutput,
|
|
81
|
+
} from "../commands/UpdateUserCommand";
|
|
82
|
+
export declare const serializeAws_json1_1CreateGroupCommand: (
|
|
83
|
+
input: CreateGroupCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_json1_1CreateGroupMembershipCommand: (
|
|
87
|
+
input: CreateGroupMembershipCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_json1_1CreateUserCommand: (
|
|
91
|
+
input: CreateUserCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_json1_1DeleteGroupCommand: (
|
|
95
|
+
input: DeleteGroupCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_json1_1DeleteGroupMembershipCommand: (
|
|
99
|
+
input: DeleteGroupMembershipCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_json1_1DeleteUserCommand: (
|
|
103
|
+
input: DeleteUserCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_1DescribeGroupCommand: (
|
|
107
|
+
input: DescribeGroupCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1DescribeGroupMembershipCommand: (
|
|
111
|
+
input: DescribeGroupMembershipCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1DescribeUserCommand: (
|
|
115
|
+
input: DescribeUserCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1GetGroupIdCommand: (
|
|
119
|
+
input: GetGroupIdCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1GetGroupMembershipIdCommand: (
|
|
123
|
+
input: GetGroupMembershipIdCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_1GetUserIdCommand: (
|
|
127
|
+
input: GetUserIdCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1IsMemberInGroupsCommand: (
|
|
131
|
+
input: IsMemberInGroupsCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_1ListGroupMembershipsCommand: (
|
|
135
|
+
input: ListGroupMembershipsCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_1ListGroupMembershipsForMemberCommand: (
|
|
139
|
+
input: ListGroupMembershipsForMemberCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_1ListGroupsCommand: (
|
|
143
|
+
input: ListGroupsCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_1ListUsersCommand: (
|
|
147
|
+
input: ListUsersCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_1UpdateGroupCommand: (
|
|
151
|
+
input: UpdateGroupCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_1UpdateUserCommand: (
|
|
155
|
+
input: UpdateUserCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const deserializeAws_json1_1CreateGroupCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<CreateGroupCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_json1_1CreateGroupMembershipCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<CreateGroupMembershipCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_json1_1CreateUserCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<CreateUserCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_json1_1DeleteGroupCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<DeleteGroupCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_json1_1DeleteGroupMembershipCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<DeleteGroupMembershipCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_json1_1DeleteUserCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<DeleteUserCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_json1_1DescribeGroupCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<DescribeGroupCommandOutput>;
|
|
186
|
+
export declare const deserializeAws_json1_1DescribeGroupMembershipCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<DescribeGroupMembershipCommandOutput>;
|
|
190
|
+
export declare const deserializeAws_json1_1DescribeUserCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<DescribeUserCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_json1_1GetGroupIdCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<GetGroupIdCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_json1_1GetGroupMembershipIdCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<GetGroupMembershipIdCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_json1_1GetUserIdCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<GetUserIdCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_json1_1IsMemberInGroupsCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<IsMemberInGroupsCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_json1_1ListGroupMembershipsCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<ListGroupMembershipsCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_json1_1ListGroupMembershipsForMemberCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<ListGroupMembershipsForMemberCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_json1_1ListGroupsCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<ListGroupsCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_json1_1ListUsersCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<ListUsersCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_json1_1UpdateGroupCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<UpdateGroupCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_json1_1UpdateUserCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<UpdateUserCommandOutput>;
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { IdentitystoreClientConfig } from "./IdentitystoreClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { IdentitystoreClientConfig } from "./IdentitystoreClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { IdentitystoreClientConfig } from "./IdentitystoreClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { IdentitystoreClientConfig } from "./IdentitystoreClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: IdentitystoreClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|