@aws-sdk/client-identitystore 3.296.0 → 3.298.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/commands/CreateGroupCommand.js +1 -1
- package/dist-cjs/commands/CreateGroupMembershipCommand.js +2 -3
- package/dist-cjs/commands/CreateUserCommand.js +1 -1
- package/dist-cjs/commands/DeleteGroupCommand.js +2 -3
- package/dist-cjs/commands/DeleteGroupMembershipCommand.js +2 -3
- package/dist-cjs/commands/DeleteUserCommand.js +2 -3
- package/dist-cjs/commands/DescribeGroupCommand.js +1 -1
- package/dist-cjs/commands/DescribeGroupMembershipCommand.js +2 -3
- package/dist-cjs/commands/DescribeUserCommand.js +1 -1
- package/dist-cjs/commands/GetGroupIdCommand.js +1 -1
- package/dist-cjs/commands/GetGroupMembershipIdCommand.js +2 -3
- package/dist-cjs/commands/GetUserIdCommand.js +1 -1
- package/dist-cjs/commands/IsMemberInGroupsCommand.js +1 -1
- package/dist-cjs/commands/ListGroupMembershipsCommand.js +2 -3
- package/dist-cjs/commands/ListGroupMembershipsForMemberCommand.js +2 -3
- package/dist-cjs/commands/UpdateGroupCommand.js +2 -3
- package/dist-cjs/commands/UpdateUserCommand.js +2 -3
- package/dist-cjs/models/models_0.js +3 -143
- package/dist-es/commands/CreateGroupCommand.js +2 -2
- package/dist-es/commands/CreateGroupMembershipCommand.js +2 -3
- package/dist-es/commands/CreateUserCommand.js +2 -2
- package/dist-es/commands/DeleteGroupCommand.js +2 -3
- package/dist-es/commands/DeleteGroupMembershipCommand.js +2 -3
- package/dist-es/commands/DeleteUserCommand.js +2 -3
- package/dist-es/commands/DescribeGroupCommand.js +2 -2
- package/dist-es/commands/DescribeGroupMembershipCommand.js +2 -3
- package/dist-es/commands/DescribeUserCommand.js +2 -2
- package/dist-es/commands/GetGroupIdCommand.js +2 -2
- package/dist-es/commands/GetGroupMembershipIdCommand.js +2 -3
- package/dist-es/commands/GetUserIdCommand.js +2 -2
- package/dist-es/commands/IsMemberInGroupsCommand.js +2 -2
- package/dist-es/commands/ListGroupMembershipsCommand.js +2 -3
- package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +2 -3
- package/dist-es/commands/UpdateGroupCommand.js +2 -3
- package/dist-es/commands/UpdateUserCommand.js +2 -3
- package/dist-es/models/models_0.js +2 -110
- package/dist-types/Identitystore.d.ts +20 -0
- package/dist-types/IdentitystoreClient.d.ts +24 -4
- package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateGroupMembershipCommand.d.ts +16 -0
- package/dist-types/commands/CreateUserCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +16 -0
- package/dist-types/commands/DescribeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupIdCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +16 -0
- package/dist-types/commands/GetUserIdCommand.d.ts +16 -0
- package/dist-types/commands/IsMemberInGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupMembershipsCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListUsersCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
- package/dist-types/models/IdentitystoreServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +147 -124
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListGroupMembershipsForMemberPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroupMembershipsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUsersPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -91
- package/package.json +4 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeGroupMembershipRequestFilterSensitiveLog, DescribeGroupMembershipResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1DescribeGroupMembershipCommand, serializeAws_json1_1DescribeGroupMembershipCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class DescribeGroupMembershipCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DescribeGroupMembershipCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeUserResponseFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeUserCommand, serializeAws_json1_1DescribeUserCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
export class DescribeUserCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -27,7 +27,7 @@ export class DescribeUserCommand extends $Command {
|
|
|
27
27
|
logger,
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
31
|
outputFilterSensitiveLog: DescribeUserResponseFilterSensitiveLog,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetGroupIdRequestFilterSensitiveLog
|
|
4
|
+
import { GetGroupIdRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetGroupIdCommand, serializeAws_json1_1GetGroupIdCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
export class GetGroupIdCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -28,7 +28,7 @@ export class GetGroupIdCommand extends $Command {
|
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
30
|
inputFilterSensitiveLog: GetGroupIdRequestFilterSensitiveLog,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
34
34
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetGroupMembershipIdRequestFilterSensitiveLog, GetGroupMembershipIdResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1GetGroupMembershipIdCommand, serializeAws_json1_1GetGroupMembershipIdCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class GetGroupMembershipIdCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class GetGroupMembershipIdCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetUserIdRequestFilterSensitiveLog
|
|
4
|
+
import { GetUserIdRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetUserIdCommand, serializeAws_json1_1GetUserIdCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
export class GetUserIdCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -28,7 +28,7 @@ export class GetUserIdCommand extends $Command {
|
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
30
|
inputFilterSensitiveLog: GetUserIdRequestFilterSensitiveLog,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
34
34
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { IsMemberInGroupsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1IsMemberInGroupsCommand, serializeAws_json1_1IsMemberInGroupsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
export class IsMemberInGroupsCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -27,7 +27,7 @@ export class IsMemberInGroupsCommand extends $Command {
|
|
|
27
27
|
logger,
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
31
|
outputFilterSensitiveLog: IsMemberInGroupsResponseFilterSensitiveLog,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListGroupMembershipsRequestFilterSensitiveLog, ListGroupMembershipsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1ListGroupMembershipsCommand, serializeAws_json1_1ListGroupMembershipsCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class ListGroupMembershipsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListGroupMembershipsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListGroupMembershipsForMemberRequestFilterSensitiveLog, ListGroupMembershipsForMemberResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1ListGroupMembershipsForMemberCommand, serializeAws_json1_1ListGroupMembershipsForMemberCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class ListGroupMembershipsForMemberCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListGroupMembershipsForMemberCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateGroupRequestFilterSensitiveLog, UpdateGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1UpdateGroupCommand, serializeAws_json1_1UpdateGroupCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class UpdateGroupCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateGroupCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateUserRequestFilterSensitiveLog, UpdateUserResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1UpdateUserCommand, serializeAws_json1_1UpdateUserCommand, } from "../protocols/Aws_json1_1";
|
|
6
5
|
export class UpdateUserCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateUserCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -153,101 +153,31 @@ export const ExternalIdFilterSensitiveLog = (obj) => ({
|
|
|
153
153
|
...(obj.Issuer && { Issuer: SENSITIVE_STRING }),
|
|
154
154
|
...(obj.Id && { Id: SENSITIVE_STRING }),
|
|
155
155
|
});
|
|
156
|
-
export const UniqueAttributeFilterSensitiveLog = (obj) => ({
|
|
157
|
-
...obj,
|
|
158
|
-
});
|
|
159
156
|
export const AlternateIdentifierFilterSensitiveLog = (obj) => {
|
|
160
157
|
if (obj.ExternalId !== undefined)
|
|
161
158
|
return { ExternalId: ExternalIdFilterSensitiveLog(obj.ExternalId) };
|
|
162
159
|
if (obj.UniqueAttribute !== undefined)
|
|
163
|
-
return { UniqueAttribute:
|
|
160
|
+
return { UniqueAttribute: obj.UniqueAttribute };
|
|
164
161
|
if (obj.$unknown !== undefined)
|
|
165
162
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
166
163
|
};
|
|
167
|
-
export const AttributeOperationFilterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
164
|
export const GetGroupIdRequestFilterSensitiveLog = (obj) => ({
|
|
171
165
|
...obj,
|
|
172
166
|
...(obj.AlternateIdentifier && {
|
|
173
167
|
AlternateIdentifier: AlternateIdentifierFilterSensitiveLog(obj.AlternateIdentifier),
|
|
174
168
|
}),
|
|
175
169
|
});
|
|
176
|
-
export const GetGroupIdResponseFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const MemberIdFilterSensitiveLog = (obj) => {
|
|
180
|
-
if (obj.UserId !== undefined)
|
|
181
|
-
return { UserId: obj.UserId };
|
|
182
|
-
if (obj.$unknown !== undefined)
|
|
183
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
184
|
-
};
|
|
185
|
-
export const GetGroupMembershipIdRequestFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
...(obj.MemberId && { MemberId: MemberIdFilterSensitiveLog(obj.MemberId) }),
|
|
188
|
-
});
|
|
189
|
-
export const GetGroupMembershipIdResponseFilterSensitiveLog = (obj) => ({
|
|
190
|
-
...obj,
|
|
191
|
-
});
|
|
192
170
|
export const GetUserIdRequestFilterSensitiveLog = (obj) => ({
|
|
193
171
|
...obj,
|
|
194
172
|
...(obj.AlternateIdentifier && {
|
|
195
173
|
AlternateIdentifier: AlternateIdentifierFilterSensitiveLog(obj.AlternateIdentifier),
|
|
196
174
|
}),
|
|
197
175
|
});
|
|
198
|
-
export const GetUserIdResponseFilterSensitiveLog = (obj) => ({
|
|
199
|
-
...obj,
|
|
200
|
-
});
|
|
201
|
-
export const CreateGroupMembershipRequestFilterSensitiveLog = (obj) => ({
|
|
202
|
-
...obj,
|
|
203
|
-
...(obj.MemberId && { MemberId: MemberIdFilterSensitiveLog(obj.MemberId) }),
|
|
204
|
-
});
|
|
205
|
-
export const CreateGroupMembershipResponseFilterSensitiveLog = (obj) => ({
|
|
206
|
-
...obj,
|
|
207
|
-
});
|
|
208
|
-
export const DeleteGroupMembershipRequestFilterSensitiveLog = (obj) => ({
|
|
209
|
-
...obj,
|
|
210
|
-
});
|
|
211
|
-
export const DeleteGroupMembershipResponseFilterSensitiveLog = (obj) => ({
|
|
212
|
-
...obj,
|
|
213
|
-
});
|
|
214
|
-
export const DescribeGroupMembershipRequestFilterSensitiveLog = (obj) => ({
|
|
215
|
-
...obj,
|
|
216
|
-
});
|
|
217
|
-
export const DescribeGroupMembershipResponseFilterSensitiveLog = (obj) => ({
|
|
218
|
-
...obj,
|
|
219
|
-
...(obj.MemberId && { MemberId: MemberIdFilterSensitiveLog(obj.MemberId) }),
|
|
220
|
-
});
|
|
221
|
-
export const ListGroupMembershipsRequestFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const GroupMembershipFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
...(obj.MemberId && { MemberId: MemberIdFilterSensitiveLog(obj.MemberId) }),
|
|
227
|
-
});
|
|
228
|
-
export const ListGroupMembershipsResponseFilterSensitiveLog = (obj) => ({
|
|
229
|
-
...obj,
|
|
230
|
-
...(obj.GroupMemberships && {
|
|
231
|
-
GroupMemberships: obj.GroupMemberships.map((item) => GroupMembershipFilterSensitiveLog(item)),
|
|
232
|
-
}),
|
|
233
|
-
});
|
|
234
176
|
export const CreateGroupRequestFilterSensitiveLog = (obj) => ({
|
|
235
177
|
...obj,
|
|
236
178
|
...(obj.DisplayName && { DisplayName: SENSITIVE_STRING }),
|
|
237
179
|
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
238
180
|
});
|
|
239
|
-
export const CreateGroupResponseFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const DeleteGroupRequestFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const DeleteGroupResponseFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const DescribeGroupRequestFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
181
|
export const DescribeGroupResponseFilterSensitiveLog = (obj) => ({
|
|
252
182
|
...obj,
|
|
253
183
|
...(obj.DisplayName && { DisplayName: SENSITIVE_STRING }),
|
|
@@ -272,35 +202,15 @@ export const ListGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
|
272
202
|
...obj,
|
|
273
203
|
...(obj.Groups && { Groups: obj.Groups.map((item) => GroupFilterSensitiveLog(item)) }),
|
|
274
204
|
});
|
|
275
|
-
export const UpdateGroupRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const UpdateGroupResponseFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
281
|
-
export const IsMemberInGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
282
|
-
...obj,
|
|
283
|
-
...(obj.MemberId && { MemberId: MemberIdFilterSensitiveLog(obj.MemberId) }),
|
|
284
|
-
});
|
|
285
205
|
export const GroupMembershipExistenceResultFilterSensitiveLog = (obj) => ({
|
|
286
206
|
...obj,
|
|
287
|
-
...(obj.MemberId && { MemberId:
|
|
207
|
+
...(obj.MemberId && { MemberId: obj.MemberId }),
|
|
288
208
|
...(obj.MembershipExists && { MembershipExists: SENSITIVE_STRING }),
|
|
289
209
|
});
|
|
290
210
|
export const IsMemberInGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
291
211
|
...obj,
|
|
292
212
|
...(obj.Results && { Results: obj.Results.map((item) => GroupMembershipExistenceResultFilterSensitiveLog(item)) }),
|
|
293
213
|
});
|
|
294
|
-
export const ListGroupMembershipsForMemberRequestFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
...(obj.MemberId && { MemberId: MemberIdFilterSensitiveLog(obj.MemberId) }),
|
|
297
|
-
});
|
|
298
|
-
export const ListGroupMembershipsForMemberResponseFilterSensitiveLog = (obj) => ({
|
|
299
|
-
...obj,
|
|
300
|
-
...(obj.GroupMemberships && {
|
|
301
|
-
GroupMemberships: obj.GroupMemberships.map((item) => GroupMembershipFilterSensitiveLog(item)),
|
|
302
|
-
}),
|
|
303
|
-
});
|
|
304
214
|
export const EmailFilterSensitiveLog = (obj) => ({
|
|
305
215
|
...obj,
|
|
306
216
|
...(obj.Value && { Value: SENSITIVE_STRING }),
|
|
@@ -338,18 +248,6 @@ export const CreateUserRequestFilterSensitiveLog = (obj) => ({
|
|
|
338
248
|
...(obj.Locale && { Locale: SENSITIVE_STRING }),
|
|
339
249
|
...(obj.Timezone && { Timezone: SENSITIVE_STRING }),
|
|
340
250
|
});
|
|
341
|
-
export const CreateUserResponseFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
344
|
-
export const DeleteUserRequestFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
export const DeleteUserResponseFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
|
-
export const DescribeUserRequestFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
});
|
|
353
251
|
export const DescribeUserResponseFilterSensitiveLog = (obj) => ({
|
|
354
252
|
...obj,
|
|
355
253
|
...(obj.UserName && { UserName: SENSITIVE_STRING }),
|
|
@@ -392,9 +290,3 @@ export const ListUsersResponseFilterSensitiveLog = (obj) => ({
|
|
|
392
290
|
...obj,
|
|
393
291
|
...(obj.Users && { Users: obj.Users.map((item) => UserFilterSensitiveLog(item)) }),
|
|
394
292
|
});
|
|
395
|
-
export const UpdateUserRequestFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
|
-
export const UpdateUserResponseFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
});
|
|
@@ -20,6 +20,7 @@ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/Up
|
|
|
20
20
|
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
21
21
|
import { IdentitystoreClient } from "./IdentitystoreClient";
|
|
22
22
|
/**
|
|
23
|
+
* @public
|
|
23
24
|
* <p>The Identity Store service used by AWS IAM Identity Center (successor to AWS Single Sign-On) provides a single place to retrieve all of
|
|
24
25
|
* 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
|
|
25
26
|
* Guide</a>.</p>
|
|
@@ -35,42 +36,49 @@ import { IdentitystoreClient } from "./IdentitystoreClient";
|
|
|
35
36
|
*/
|
|
36
37
|
export declare class Identitystore extends IdentitystoreClient {
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>Creates a group within the specified identity store.</p>
|
|
39
41
|
*/
|
|
40
42
|
createGroup(args: CreateGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCommandOutput>;
|
|
41
43
|
createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
42
44
|
createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
43
45
|
/**
|
|
46
|
+
* @public
|
|
44
47
|
* <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>
|
|
45
48
|
*/
|
|
46
49
|
createGroupMembership(args: CreateGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupMembershipCommandOutput>;
|
|
47
50
|
createGroupMembership(args: CreateGroupMembershipCommandInput, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
|
|
48
51
|
createGroupMembership(args: CreateGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
|
|
49
52
|
/**
|
|
53
|
+
* @public
|
|
50
54
|
* <p>Creates a new user within the specified identity store.</p>
|
|
51
55
|
*/
|
|
52
56
|
createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
|
|
53
57
|
createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
54
58
|
createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
55
59
|
/**
|
|
60
|
+
* @public
|
|
56
61
|
* <p>Delete a group within an identity store given <code>GroupId</code>.</p>
|
|
57
62
|
*/
|
|
58
63
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
59
64
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
60
65
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
61
66
|
/**
|
|
67
|
+
* @public
|
|
62
68
|
* <p>Delete a membership within a group given <code>MembershipId</code>.</p>
|
|
63
69
|
*/
|
|
64
70
|
deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupMembershipCommandOutput>;
|
|
65
71
|
deleteGroupMembership(args: DeleteGroupMembershipCommandInput, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
|
|
66
72
|
deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
|
|
67
73
|
/**
|
|
74
|
+
* @public
|
|
68
75
|
* <p>Deletes a user within an identity store given <code>UserId</code>.</p>
|
|
69
76
|
*/
|
|
70
77
|
deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
|
|
71
78
|
deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
72
79
|
deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
73
80
|
/**
|
|
81
|
+
* @public
|
|
74
82
|
* <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity
|
|
75
83
|
* store.</p>
|
|
76
84
|
*/
|
|
@@ -78,54 +86,63 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
78
86
|
describeGroup(args: DescribeGroupCommandInput, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
79
87
|
describeGroup(args: DescribeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
80
88
|
/**
|
|
89
|
+
* @public
|
|
81
90
|
* <p>Retrieves membership metadata and attributes from <code>MembershipId</code> in an identity store.</p>
|
|
82
91
|
*/
|
|
83
92
|
describeGroupMembership(args: DescribeGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupMembershipCommandOutput>;
|
|
84
93
|
describeGroupMembership(args: DescribeGroupMembershipCommandInput, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
|
|
85
94
|
describeGroupMembership(args: DescribeGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
|
|
86
95
|
/**
|
|
96
|
+
* @public
|
|
87
97
|
* <p>Retrieves the user metadata and attributes from the <code>UserId</code> in an identity store.</p>
|
|
88
98
|
*/
|
|
89
99
|
describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
|
|
90
100
|
describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
|
|
91
101
|
describeUser(args: DescribeUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
|
|
92
102
|
/**
|
|
103
|
+
* @public
|
|
93
104
|
* <p>Retrieves <code>GroupId</code> in an identity store.</p>
|
|
94
105
|
*/
|
|
95
106
|
getGroupId(args: GetGroupIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupIdCommandOutput>;
|
|
96
107
|
getGroupId(args: GetGroupIdCommandInput, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
|
|
97
108
|
getGroupId(args: GetGroupIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
|
|
98
109
|
/**
|
|
110
|
+
* @public
|
|
99
111
|
* <p>Retrieves the <code>MembershipId</code> in an identity store.</p>
|
|
100
112
|
*/
|
|
101
113
|
getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupMembershipIdCommandOutput>;
|
|
102
114
|
getGroupMembershipId(args: GetGroupMembershipIdCommandInput, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
|
|
103
115
|
getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
|
|
104
116
|
/**
|
|
117
|
+
* @public
|
|
105
118
|
* <p>Retrieves the <code>UserId</code> in an identity store.</p>
|
|
106
119
|
*/
|
|
107
120
|
getUserId(args: GetUserIdCommandInput, options?: __HttpHandlerOptions): Promise<GetUserIdCommandOutput>;
|
|
108
121
|
getUserId(args: GetUserIdCommandInput, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
|
|
109
122
|
getUserId(args: GetUserIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
|
|
110
123
|
/**
|
|
124
|
+
* @public
|
|
111
125
|
* <p>Checks the user's membership in all requested groups and returns if the member exists in all queried groups.</p>
|
|
112
126
|
*/
|
|
113
127
|
isMemberInGroups(args: IsMemberInGroupsCommandInput, options?: __HttpHandlerOptions): Promise<IsMemberInGroupsCommandOutput>;
|
|
114
128
|
isMemberInGroups(args: IsMemberInGroupsCommandInput, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
|
|
115
129
|
isMemberInGroups(args: IsMemberInGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
|
|
116
130
|
/**
|
|
131
|
+
* @public
|
|
117
132
|
* <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>
|
|
118
133
|
*/
|
|
119
134
|
listGroupMemberships(args: ListGroupMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsCommandOutput>;
|
|
120
135
|
listGroupMemberships(args: ListGroupMembershipsCommandInput, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
|
|
121
136
|
listGroupMemberships(args: ListGroupMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
|
|
122
137
|
/**
|
|
138
|
+
* @public
|
|
123
139
|
* <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>
|
|
124
140
|
*/
|
|
125
141
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsForMemberCommandOutput>;
|
|
126
142
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
|
|
127
143
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
|
|
128
144
|
/**
|
|
145
|
+
* @public
|
|
129
146
|
* <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects.
|
|
130
147
|
* Filtering for a <code>Group</code> by the <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</p>
|
|
131
148
|
*/
|
|
@@ -133,6 +150,7 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
133
150
|
listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
134
151
|
listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
135
152
|
/**
|
|
153
|
+
* @public
|
|
136
154
|
* <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects.
|
|
137
155
|
* Filtering for a <code>User</code> by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</p>
|
|
138
156
|
*/
|
|
@@ -140,12 +158,14 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
140
158
|
listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
141
159
|
listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
142
160
|
/**
|
|
161
|
+
* @public
|
|
143
162
|
* <p>For the specified group in the specified identity store, updates the group metadata and attributes.</p>
|
|
144
163
|
*/
|
|
145
164
|
updateGroup(args: UpdateGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCommandOutput>;
|
|
146
165
|
updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
147
166
|
updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
148
167
|
/**
|
|
168
|
+
* @public
|
|
149
169
|
* <p>For the specified user in the specified identity store, updates the user metadata and attributes.</p>
|
|
150
170
|
*/
|
|
151
171
|
updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
|
|
@@ -27,15 +27,24 @@ import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUs
|
|
|
27
27
|
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
28
28
|
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
29
29
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
30
33
|
export type ServiceInputTypes = CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateUserCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteUserCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeUserCommandInput | GetGroupIdCommandInput | GetGroupMembershipIdCommandInput | GetUserIdCommandInput | IsMemberInGroupsCommandInput | ListGroupMembershipsCommandInput | ListGroupMembershipsForMemberCommandInput | ListGroupsCommandInput | ListUsersCommandInput | UpdateGroupCommandInput | UpdateUserCommandInput;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
31
37
|
export type ServiceOutputTypes = CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateUserCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteUserCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeUserCommandOutput | GetGroupIdCommandOutput | GetGroupMembershipIdCommandOutput | GetUserIdCommandOutput | IsMemberInGroupsCommandOutput | ListGroupMembershipsCommandOutput | ListGroupMembershipsForMemberCommandOutput | ListGroupsCommandOutput | ListUsersCommandOutput | UpdateGroupCommandOutput | UpdateUserCommandOutput;
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
32
41
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
33
42
|
/**
|
|
34
43
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
35
44
|
*/
|
|
36
45
|
requestHandler?: __HttpHandler;
|
|
37
46
|
/**
|
|
38
|
-
* A constructor for a class implementing the {@link
|
|
47
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
39
48
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
40
49
|
* @internal
|
|
41
50
|
*/
|
|
@@ -125,23 +134,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
125
134
|
*/
|
|
126
135
|
logger?: __Logger;
|
|
127
136
|
/**
|
|
128
|
-
* The {@link
|
|
137
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
129
138
|
*/
|
|
130
139
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
131
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
132
144
|
type IdentitystoreClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
133
145
|
/**
|
|
134
|
-
*
|
|
146
|
+
* @public
|
|
147
|
+
*
|
|
148
|
+
* The configuration interface of IdentitystoreClient class constructor that set the region, credentials and other options.
|
|
135
149
|
*/
|
|
136
150
|
export interface IdentitystoreClientConfig extends IdentitystoreClientConfigType {
|
|
137
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
138
155
|
type IdentitystoreClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
139
156
|
/**
|
|
140
|
-
*
|
|
157
|
+
* @public
|
|
158
|
+
*
|
|
159
|
+
* The resolved configuration interface of IdentitystoreClient class. This is resolved and normalized from the {@link IdentitystoreClientConfig | constructor configuration interface}.
|
|
141
160
|
*/
|
|
142
161
|
export interface IdentitystoreClientResolvedConfig extends IdentitystoreClientResolvedConfigType {
|
|
143
162
|
}
|
|
144
163
|
/**
|
|
164
|
+
* @public
|
|
145
165
|
* <p>The Identity Store service used by AWS IAM Identity Center (successor to AWS Single Sign-On) provides a single place to retrieve all of
|
|
146
166
|
* 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
|
|
147
167
|
* Guide</a>.</p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateGroupCommandInput extends CreateGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateGroupCommandOutput extends CreateGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a group within the specified identity store.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateGroupCommandInput - {@link CreateGroupCommandInput}
|
|
34
|
+
* @returns {@link CreateGroupCommandOutput}
|
|
28
35
|
* @see {@link CreateGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
|
|
|
63
70
|
export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
64
71
|
readonly input: CreateGroupCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: CreateGroupCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGroupCommandInput, CreateGroupCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|