@aws-sdk/client-identitystore 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/DescribeGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeUserCommand.js +2 -2
- package/dist-cjs/commands/ListGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListUsersCommand.js +2 -2
- package/dist-cjs/models/models_0.js +51 -73
- package/dist-cjs/protocols/Aws_json1_1.js +20 -35
- package/dist-es/commands/DescribeGroupCommand.js +3 -3
- package/dist-es/commands/DescribeUserCommand.js +3 -3
- package/dist-es/commands/ListGroupsCommand.js +3 -3
- package/dist-es/commands/ListUsersCommand.js +3 -3
- package/dist-es/models/models_0.js +11 -44
- package/dist-es/protocols/Aws_json1_1.js +33 -36
- package/dist-types/models/models_0.d.ts +44 -66
- package/dist-types/ts3.4/models/models_0.d.ts +22 -44
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,39 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **codegen:** general data mapping function ([#3830](https://github.com/aws/aws-sdk-js-v3/issues/3830)) ([9417eae](https://github.com/aws/aws-sdk-js-v3/commit/9417eae722806799fb4c15c07921574268c1165c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
7
40
|
|
|
8
41
|
**Note:** Version bump only for package @aws-sdk/client-identitystore
|
package/README.md
CHANGED
|
@@ -167,7 +167,7 @@ try {
|
|
|
167
167
|
const data = await client.send(command);
|
|
168
168
|
// process data.
|
|
169
169
|
} catch (error) {
|
|
170
|
-
const { requestId, cfId, extendedRequestId } = error
|
|
170
|
+
const { requestId, cfId, extendedRequestId } = error.$$metadata;
|
|
171
171
|
console.log({ requestId, cfId, extendedRequestId });
|
|
172
172
|
/**
|
|
173
173
|
* The keys within exceptions are also parsed.
|
|
@@ -20,8 +20,8 @@ class DescribeGroupCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeGroupResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeUserCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeUserRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeUserResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListGroupsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListGroupsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListGroupsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListUsersCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListUsersRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListUsersResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ListUsersResponseFilterSensitiveLog = exports.UserFilterSensitiveLog = exports.ListUsersRequestFilterSensitiveLog = exports.ListGroupsResponseFilterSensitiveLog = exports.GroupFilterSensitiveLog = exports.ListGroupsRequestFilterSensitiveLog = exports.FilterFilterSensitiveLog = exports.DescribeUserResponseFilterSensitiveLog = exports.DescribeUserRequestFilterSensitiveLog = exports.DescribeGroupResponseFilterSensitiveLog = exports.DescribeGroupRequestFilterSensitiveLog = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.ResourceType = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
5
|
const IdentitystoreServiceException_1 = require("./IdentitystoreServiceException");
|
|
6
6
|
class AccessDeniedException extends IdentitystoreServiceException_1.IdentitystoreServiceException {
|
|
@@ -18,18 +18,6 @@ class AccessDeniedException extends IdentitystoreServiceException_1.Identitystor
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
exports.AccessDeniedException = AccessDeniedException;
|
|
21
|
-
var DescribeGroupRequest;
|
|
22
|
-
(function (DescribeGroupRequest) {
|
|
23
|
-
DescribeGroupRequest.filterSensitiveLog = (obj) => ({
|
|
24
|
-
...obj,
|
|
25
|
-
});
|
|
26
|
-
})(DescribeGroupRequest = exports.DescribeGroupRequest || (exports.DescribeGroupRequest = {}));
|
|
27
|
-
var DescribeGroupResponse;
|
|
28
|
-
(function (DescribeGroupResponse) {
|
|
29
|
-
DescribeGroupResponse.filterSensitiveLog = (obj) => ({
|
|
30
|
-
...obj,
|
|
31
|
-
});
|
|
32
|
-
})(DescribeGroupResponse = exports.DescribeGroupResponse || (exports.DescribeGroupResponse = {}));
|
|
33
21
|
class InternalServerException extends IdentitystoreServiceException_1.IdentitystoreServiceException {
|
|
34
22
|
constructor(opts) {
|
|
35
23
|
super({
|
|
@@ -98,63 +86,53 @@ class ValidationException extends IdentitystoreServiceException_1.IdentitystoreS
|
|
|
98
86
|
}
|
|
99
87
|
}
|
|
100
88
|
exports.ValidationException = ValidationException;
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
(
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
})
|
|
139
|
-
})
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
(
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
...(obj.UserName && { UserName: smithy_client_1.SENSITIVE_STRING }),
|
|
152
|
-
});
|
|
153
|
-
})(User = exports.User || (exports.User = {}));
|
|
154
|
-
var ListUsersResponse;
|
|
155
|
-
(function (ListUsersResponse) {
|
|
156
|
-
ListUsersResponse.filterSensitiveLog = (obj) => ({
|
|
157
|
-
...obj,
|
|
158
|
-
...(obj.Users && { Users: obj.Users.map((item) => User.filterSensitiveLog(item)) }),
|
|
159
|
-
});
|
|
160
|
-
})(ListUsersResponse = exports.ListUsersResponse || (exports.ListUsersResponse = {}));
|
|
89
|
+
const DescribeGroupRequestFilterSensitiveLog = (obj) => ({
|
|
90
|
+
...obj,
|
|
91
|
+
});
|
|
92
|
+
exports.DescribeGroupRequestFilterSensitiveLog = DescribeGroupRequestFilterSensitiveLog;
|
|
93
|
+
const DescribeGroupResponseFilterSensitiveLog = (obj) => ({
|
|
94
|
+
...obj,
|
|
95
|
+
});
|
|
96
|
+
exports.DescribeGroupResponseFilterSensitiveLog = DescribeGroupResponseFilterSensitiveLog;
|
|
97
|
+
const DescribeUserRequestFilterSensitiveLog = (obj) => ({
|
|
98
|
+
...obj,
|
|
99
|
+
});
|
|
100
|
+
exports.DescribeUserRequestFilterSensitiveLog = DescribeUserRequestFilterSensitiveLog;
|
|
101
|
+
const DescribeUserResponseFilterSensitiveLog = (obj) => ({
|
|
102
|
+
...obj,
|
|
103
|
+
...(obj.UserName && { UserName: smithy_client_1.SENSITIVE_STRING }),
|
|
104
|
+
});
|
|
105
|
+
exports.DescribeUserResponseFilterSensitiveLog = DescribeUserResponseFilterSensitiveLog;
|
|
106
|
+
const FilterFilterSensitiveLog = (obj) => ({
|
|
107
|
+
...obj,
|
|
108
|
+
...(obj.AttributeValue && { AttributeValue: smithy_client_1.SENSITIVE_STRING }),
|
|
109
|
+
});
|
|
110
|
+
exports.FilterFilterSensitiveLog = FilterFilterSensitiveLog;
|
|
111
|
+
const ListGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
112
|
+
...obj,
|
|
113
|
+
...(obj.Filters && { Filters: obj.Filters.map((item) => (0, exports.FilterFilterSensitiveLog)(item)) }),
|
|
114
|
+
});
|
|
115
|
+
exports.ListGroupsRequestFilterSensitiveLog = ListGroupsRequestFilterSensitiveLog;
|
|
116
|
+
const GroupFilterSensitiveLog = (obj) => ({
|
|
117
|
+
...obj,
|
|
118
|
+
});
|
|
119
|
+
exports.GroupFilterSensitiveLog = GroupFilterSensitiveLog;
|
|
120
|
+
const ListGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
121
|
+
...obj,
|
|
122
|
+
});
|
|
123
|
+
exports.ListGroupsResponseFilterSensitiveLog = ListGroupsResponseFilterSensitiveLog;
|
|
124
|
+
const ListUsersRequestFilterSensitiveLog = (obj) => ({
|
|
125
|
+
...obj,
|
|
126
|
+
...(obj.Filters && { Filters: obj.Filters.map((item) => (0, exports.FilterFilterSensitiveLog)(item)) }),
|
|
127
|
+
});
|
|
128
|
+
exports.ListUsersRequestFilterSensitiveLog = ListUsersRequestFilterSensitiveLog;
|
|
129
|
+
const UserFilterSensitiveLog = (obj) => ({
|
|
130
|
+
...obj,
|
|
131
|
+
...(obj.UserName && { UserName: smithy_client_1.SENSITIVE_STRING }),
|
|
132
|
+
});
|
|
133
|
+
exports.UserFilterSensitiveLog = UserFilterSensitiveLog;
|
|
134
|
+
const ListUsersResponseFilterSensitiveLog = (obj) => ({
|
|
135
|
+
...obj,
|
|
136
|
+
...(obj.Users && { Users: obj.Users.map((item) => (0, exports.UserFilterSensitiveLog)(item)) }),
|
|
137
|
+
});
|
|
138
|
+
exports.ListUsersResponseFilterSensitiveLog = ListUsersResponseFilterSensitiveLog;
|
|
@@ -64,7 +64,6 @@ const deserializeAws_json1_1DescribeGroupCommandError = async (output, context)
|
|
|
64
64
|
...output,
|
|
65
65
|
body: await parseBody(output.body, context),
|
|
66
66
|
};
|
|
67
|
-
let response;
|
|
68
67
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
69
68
|
switch (errorCode) {
|
|
70
69
|
case "AccessDeniedException":
|
|
@@ -84,14 +83,12 @@ const deserializeAws_json1_1DescribeGroupCommandError = async (output, context)
|
|
|
84
83
|
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
85
84
|
default:
|
|
86
85
|
const parsedBody = parsedOutput.body;
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
$metadata,
|
|
86
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
87
|
+
output,
|
|
88
|
+
parsedBody,
|
|
89
|
+
exceptionCtor: IdentitystoreServiceException_1.IdentitystoreServiceException,
|
|
90
|
+
errorCode,
|
|
93
91
|
});
|
|
94
|
-
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
95
92
|
}
|
|
96
93
|
};
|
|
97
94
|
const deserializeAws_json1_1DescribeUserCommand = async (output, context) => {
|
|
@@ -113,7 +110,6 @@ const deserializeAws_json1_1DescribeUserCommandError = async (output, context) =
|
|
|
113
110
|
...output,
|
|
114
111
|
body: await parseBody(output.body, context),
|
|
115
112
|
};
|
|
116
|
-
let response;
|
|
117
113
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
118
114
|
switch (errorCode) {
|
|
119
115
|
case "AccessDeniedException":
|
|
@@ -133,14 +129,12 @@ const deserializeAws_json1_1DescribeUserCommandError = async (output, context) =
|
|
|
133
129
|
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
134
130
|
default:
|
|
135
131
|
const parsedBody = parsedOutput.body;
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
$metadata,
|
|
132
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
133
|
+
output,
|
|
134
|
+
parsedBody,
|
|
135
|
+
exceptionCtor: IdentitystoreServiceException_1.IdentitystoreServiceException,
|
|
136
|
+
errorCode,
|
|
142
137
|
});
|
|
143
|
-
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
144
138
|
}
|
|
145
139
|
};
|
|
146
140
|
const deserializeAws_json1_1ListGroupsCommand = async (output, context) => {
|
|
@@ -162,7 +156,6 @@ const deserializeAws_json1_1ListGroupsCommandError = async (output, context) =>
|
|
|
162
156
|
...output,
|
|
163
157
|
body: await parseBody(output.body, context),
|
|
164
158
|
};
|
|
165
|
-
let response;
|
|
166
159
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
167
160
|
switch (errorCode) {
|
|
168
161
|
case "AccessDeniedException":
|
|
@@ -182,14 +175,12 @@ const deserializeAws_json1_1ListGroupsCommandError = async (output, context) =>
|
|
|
182
175
|
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
183
176
|
default:
|
|
184
177
|
const parsedBody = parsedOutput.body;
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
$metadata,
|
|
178
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
179
|
+
output,
|
|
180
|
+
parsedBody,
|
|
181
|
+
exceptionCtor: IdentitystoreServiceException_1.IdentitystoreServiceException,
|
|
182
|
+
errorCode,
|
|
191
183
|
});
|
|
192
|
-
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
193
184
|
}
|
|
194
185
|
};
|
|
195
186
|
const deserializeAws_json1_1ListUsersCommand = async (output, context) => {
|
|
@@ -211,7 +202,6 @@ const deserializeAws_json1_1ListUsersCommandError = async (output, context) => {
|
|
|
211
202
|
...output,
|
|
212
203
|
body: await parseBody(output.body, context),
|
|
213
204
|
};
|
|
214
|
-
let response;
|
|
215
205
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
216
206
|
switch (errorCode) {
|
|
217
207
|
case "AccessDeniedException":
|
|
@@ -231,14 +221,12 @@ const deserializeAws_json1_1ListUsersCommandError = async (output, context) => {
|
|
|
231
221
|
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
232
222
|
default:
|
|
233
223
|
const parsedBody = parsedOutput.body;
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
$metadata,
|
|
224
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
225
|
+
output,
|
|
226
|
+
parsedBody,
|
|
227
|
+
exceptionCtor: IdentitystoreServiceException_1.IdentitystoreServiceException,
|
|
228
|
+
errorCode,
|
|
240
229
|
});
|
|
241
|
-
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
242
230
|
}
|
|
243
231
|
};
|
|
244
232
|
const deserializeAws_json1_1AccessDeniedExceptionResponse = async (parsedOutput, context) => {
|
|
@@ -308,9 +296,6 @@ const serializeAws_json1_1Filters = (input, context) => {
|
|
|
308
296
|
return input
|
|
309
297
|
.filter((e) => e != null)
|
|
310
298
|
.map((entry) => {
|
|
311
|
-
if (entry === null) {
|
|
312
|
-
return null;
|
|
313
|
-
}
|
|
314
299
|
return serializeAws_json1_1Filter(entry, context);
|
|
315
300
|
});
|
|
316
301
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeGroupRequestFilterSensitiveLog, DescribeGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeGroupCommand, serializeAws_json1_1DescribeGroupCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeGroupCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeGroupCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeGroupCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeGroupRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeGroupResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeUserRequestFilterSensitiveLog, DescribeUserResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeUserCommand, serializeAws_json1_1DescribeUserCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeUserCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeUserCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeUserCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeUserRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeUserResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListGroupsRequestFilterSensitiveLog, ListGroupsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListGroupsCommand, serializeAws_json1_1ListGroupsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListGroupsCommand = (function (_super) {
|
|
7
7
|
__extends(ListGroupsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListGroupsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListGroupsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListGroupsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListUsersRequestFilterSensitiveLog, ListUsersResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListUsersCommand, serializeAws_json1_1ListUsersCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListUsersCommand = (function (_super) {
|
|
7
7
|
__extends(ListUsersCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListUsersCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListUsersRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListUsersResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -15,14 +15,6 @@ var AccessDeniedException = (function (_super) {
|
|
|
15
15
|
return AccessDeniedException;
|
|
16
16
|
}(__BaseException));
|
|
17
17
|
export { AccessDeniedException };
|
|
18
|
-
export var DescribeGroupRequest;
|
|
19
|
-
(function (DescribeGroupRequest) {
|
|
20
|
-
DescribeGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
21
|
-
})(DescribeGroupRequest || (DescribeGroupRequest = {}));
|
|
22
|
-
export var DescribeGroupResponse;
|
|
23
|
-
(function (DescribeGroupResponse) {
|
|
24
|
-
DescribeGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
25
|
-
})(DescribeGroupResponse || (DescribeGroupResponse = {}));
|
|
26
18
|
var InternalServerException = (function (_super) {
|
|
27
19
|
__extends(InternalServerException, _super);
|
|
28
20
|
function InternalServerException(opts) {
|
|
@@ -87,39 +79,14 @@ var ValidationException = (function (_super) {
|
|
|
87
79
|
return ValidationException;
|
|
88
80
|
}(__BaseException));
|
|
89
81
|
export { ValidationException };
|
|
90
|
-
export var
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
export var
|
|
95
|
-
(function (
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
export var
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
})(Filter || (Filter = {}));
|
|
102
|
-
export var ListGroupsRequest;
|
|
103
|
-
(function (ListGroupsRequest) {
|
|
104
|
-
ListGroupsRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Filters && { Filters: obj.Filters.map(function (item) { return Filter.filterSensitiveLog(item); }) }))); };
|
|
105
|
-
})(ListGroupsRequest || (ListGroupsRequest = {}));
|
|
106
|
-
export var Group;
|
|
107
|
-
(function (Group) {
|
|
108
|
-
Group.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
|
-
})(Group || (Group = {}));
|
|
110
|
-
export var ListGroupsResponse;
|
|
111
|
-
(function (ListGroupsResponse) {
|
|
112
|
-
ListGroupsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
113
|
-
})(ListGroupsResponse || (ListGroupsResponse = {}));
|
|
114
|
-
export var ListUsersRequest;
|
|
115
|
-
(function (ListUsersRequest) {
|
|
116
|
-
ListUsersRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Filters && { Filters: obj.Filters.map(function (item) { return Filter.filterSensitiveLog(item); }) }))); };
|
|
117
|
-
})(ListUsersRequest || (ListUsersRequest = {}));
|
|
118
|
-
export var User;
|
|
119
|
-
(function (User) {
|
|
120
|
-
User.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.UserName && { UserName: SENSITIVE_STRING }))); };
|
|
121
|
-
})(User || (User = {}));
|
|
122
|
-
export var ListUsersResponse;
|
|
123
|
-
(function (ListUsersResponse) {
|
|
124
|
-
ListUsersResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Users && { Users: obj.Users.map(function (item) { return User.filterSensitiveLog(item); }) }))); };
|
|
125
|
-
})(ListUsersResponse || (ListUsersResponse = {}));
|
|
82
|
+
export var DescribeGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
83
|
+
export var DescribeGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
84
|
+
export var DescribeUserRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
85
|
+
export var DescribeUserResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.UserName && { UserName: SENSITIVE_STRING }))); };
|
|
86
|
+
export var FilterFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeValue && { AttributeValue: SENSITIVE_STRING }))); };
|
|
87
|
+
export var ListGroupsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Filters && { Filters: obj.Filters.map(function (item) { return FilterFilterSensitiveLog(item); }) }))); };
|
|
88
|
+
export var GroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
89
|
+
export var ListGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
90
|
+
export var ListUsersRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Filters && { Filters: obj.Filters.map(function (item) { return FilterFilterSensitiveLog(item); }) }))); };
|
|
91
|
+
export var UserFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.UserName && { UserName: SENSITIVE_STRING }))); };
|
|
92
|
+
export var ListUsersResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Users && { Users: obj.Users.map(function (item) { return UserFilterSensitiveLog(item); }) }))); };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
|
|
3
|
-
import { decorateServiceException as __decorateServiceException, expectString as __expectString, } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { decorateServiceException as __decorateServiceException, expectString as __expectString, throwDefaultError, } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { IdentitystoreServiceException as __BaseException } from "../models/IdentitystoreServiceException";
|
|
5
5
|
import { AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
6
6
|
export var serializeAws_json1_1DescribeGroupCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
@@ -66,7 +66,7 @@ export var deserializeAws_json1_1DescribeGroupCommand = function (output, contex
|
|
|
66
66
|
});
|
|
67
67
|
}); };
|
|
68
68
|
var deserializeAws_json1_1DescribeGroupCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
69
|
-
var parsedOutput, _a,
|
|
69
|
+
var parsedOutput, _a, errorCode, _b, parsedBody;
|
|
70
70
|
var _c;
|
|
71
71
|
return __generator(this, function (_d) {
|
|
72
72
|
switch (_d.label) {
|
|
@@ -103,14 +103,14 @@ var deserializeAws_json1_1DescribeGroupCommandError = function (output, context)
|
|
|
103
103
|
case 11: throw _d.sent();
|
|
104
104
|
case 12:
|
|
105
105
|
parsedBody = parsedOutput.body;
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
$metadata: $metadata,
|
|
106
|
+
throwDefaultError({
|
|
107
|
+
output: output,
|
|
108
|
+
parsedBody: parsedBody,
|
|
109
|
+
exceptionCtor: __BaseException,
|
|
110
|
+
errorCode: errorCode,
|
|
112
111
|
});
|
|
113
|
-
|
|
112
|
+
_d.label = 13;
|
|
113
|
+
case 13: return [2];
|
|
114
114
|
}
|
|
115
115
|
});
|
|
116
116
|
}); };
|
|
@@ -133,7 +133,7 @@ export var deserializeAws_json1_1DescribeUserCommand = function (output, context
|
|
|
133
133
|
});
|
|
134
134
|
}); };
|
|
135
135
|
var deserializeAws_json1_1DescribeUserCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
136
|
-
var parsedOutput, _a,
|
|
136
|
+
var parsedOutput, _a, errorCode, _b, parsedBody;
|
|
137
137
|
var _c;
|
|
138
138
|
return __generator(this, function (_d) {
|
|
139
139
|
switch (_d.label) {
|
|
@@ -170,14 +170,14 @@ var deserializeAws_json1_1DescribeUserCommandError = function (output, context)
|
|
|
170
170
|
case 11: throw _d.sent();
|
|
171
171
|
case 12:
|
|
172
172
|
parsedBody = parsedOutput.body;
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
$metadata: $metadata,
|
|
173
|
+
throwDefaultError({
|
|
174
|
+
output: output,
|
|
175
|
+
parsedBody: parsedBody,
|
|
176
|
+
exceptionCtor: __BaseException,
|
|
177
|
+
errorCode: errorCode,
|
|
179
178
|
});
|
|
180
|
-
|
|
179
|
+
_d.label = 13;
|
|
180
|
+
case 13: return [2];
|
|
181
181
|
}
|
|
182
182
|
});
|
|
183
183
|
}); };
|
|
@@ -200,7 +200,7 @@ export var deserializeAws_json1_1ListGroupsCommand = function (output, context)
|
|
|
200
200
|
});
|
|
201
201
|
}); };
|
|
202
202
|
var deserializeAws_json1_1ListGroupsCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
203
|
-
var parsedOutput, _a,
|
|
203
|
+
var parsedOutput, _a, errorCode, _b, parsedBody;
|
|
204
204
|
var _c;
|
|
205
205
|
return __generator(this, function (_d) {
|
|
206
206
|
switch (_d.label) {
|
|
@@ -237,14 +237,14 @@ var deserializeAws_json1_1ListGroupsCommandError = function (output, context) {
|
|
|
237
237
|
case 11: throw _d.sent();
|
|
238
238
|
case 12:
|
|
239
239
|
parsedBody = parsedOutput.body;
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
$metadata: $metadata,
|
|
240
|
+
throwDefaultError({
|
|
241
|
+
output: output,
|
|
242
|
+
parsedBody: parsedBody,
|
|
243
|
+
exceptionCtor: __BaseException,
|
|
244
|
+
errorCode: errorCode,
|
|
246
245
|
});
|
|
247
|
-
|
|
246
|
+
_d.label = 13;
|
|
247
|
+
case 13: return [2];
|
|
248
248
|
}
|
|
249
249
|
});
|
|
250
250
|
}); };
|
|
@@ -267,7 +267,7 @@ export var deserializeAws_json1_1ListUsersCommand = function (output, context) {
|
|
|
267
267
|
});
|
|
268
268
|
}); };
|
|
269
269
|
var deserializeAws_json1_1ListUsersCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
270
|
-
var parsedOutput, _a,
|
|
270
|
+
var parsedOutput, _a, errorCode, _b, parsedBody;
|
|
271
271
|
var _c;
|
|
272
272
|
return __generator(this, function (_d) {
|
|
273
273
|
switch (_d.label) {
|
|
@@ -304,14 +304,14 @@ var deserializeAws_json1_1ListUsersCommandError = function (output, context) { r
|
|
|
304
304
|
case 11: throw _d.sent();
|
|
305
305
|
case 12:
|
|
306
306
|
parsedBody = parsedOutput.body;
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
$metadata: $metadata,
|
|
307
|
+
throwDefaultError({
|
|
308
|
+
output: output,
|
|
309
|
+
parsedBody: parsedBody,
|
|
310
|
+
exceptionCtor: __BaseException,
|
|
311
|
+
errorCode: errorCode,
|
|
313
312
|
});
|
|
314
|
-
|
|
313
|
+
_d.label = 13;
|
|
314
|
+
case 13: return [2];
|
|
315
315
|
}
|
|
316
316
|
});
|
|
317
317
|
}); };
|
|
@@ -373,9 +373,6 @@ var serializeAws_json1_1Filters = function (input, context) {
|
|
|
373
373
|
return input
|
|
374
374
|
.filter(function (e) { return e != null; })
|
|
375
375
|
.map(function (entry) {
|
|
376
|
-
if (entry === null) {
|
|
377
|
-
return null;
|
|
378
|
-
}
|
|
379
376
|
return serializeAws_json1_1Filter(entry, context);
|
|
380
377
|
});
|
|
381
378
|
};
|
|
@@ -30,12 +30,6 @@ export interface DescribeGroupRequest {
|
|
|
30
30
|
*/
|
|
31
31
|
GroupId: string | undefined;
|
|
32
32
|
}
|
|
33
|
-
export declare namespace DescribeGroupRequest {
|
|
34
|
-
/**
|
|
35
|
-
* @internal
|
|
36
|
-
*/
|
|
37
|
-
const filterSensitiveLog: (obj: DescribeGroupRequest) => any;
|
|
38
|
-
}
|
|
39
33
|
export interface DescribeGroupResponse {
|
|
40
34
|
/**
|
|
41
35
|
* <p>The identifier for a group in the identity store.</p>
|
|
@@ -51,12 +45,6 @@ export interface DescribeGroupResponse {
|
|
|
51
45
|
*/
|
|
52
46
|
DisplayName: string | undefined;
|
|
53
47
|
}
|
|
54
|
-
export declare namespace DescribeGroupResponse {
|
|
55
|
-
/**
|
|
56
|
-
* @internal
|
|
57
|
-
*/
|
|
58
|
-
const filterSensitiveLog: (obj: DescribeGroupResponse) => any;
|
|
59
|
-
}
|
|
60
48
|
/**
|
|
61
49
|
* <p>The request processing has failed because of an unknown error, exception or failure with an internal server.</p>
|
|
62
50
|
*/
|
|
@@ -148,12 +136,6 @@ export interface DescribeUserRequest {
|
|
|
148
136
|
*/
|
|
149
137
|
UserId: string | undefined;
|
|
150
138
|
}
|
|
151
|
-
export declare namespace DescribeUserRequest {
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
const filterSensitiveLog: (obj: DescribeUserRequest) => any;
|
|
156
|
-
}
|
|
157
139
|
export interface DescribeUserResponse {
|
|
158
140
|
/**
|
|
159
141
|
* <p>Contains the user’s user name value. The length limit is 128 characters. This value can
|
|
@@ -167,12 +149,6 @@ export interface DescribeUserResponse {
|
|
|
167
149
|
*/
|
|
168
150
|
UserId: string | undefined;
|
|
169
151
|
}
|
|
170
|
-
export declare namespace DescribeUserResponse {
|
|
171
|
-
/**
|
|
172
|
-
* @internal
|
|
173
|
-
*/
|
|
174
|
-
const filterSensitiveLog: (obj: DescribeUserResponse) => any;
|
|
175
|
-
}
|
|
176
152
|
/**
|
|
177
153
|
* <p>A query filter used by <code>ListUsers</code> and <code>ListGroup</code>. This filter object provides the attribute name and attribute value to
|
|
178
154
|
* search users or groups.</p>
|
|
@@ -190,12 +166,6 @@ export interface Filter {
|
|
|
190
166
|
*/
|
|
191
167
|
AttributeValue: string | undefined;
|
|
192
168
|
}
|
|
193
|
-
export declare namespace Filter {
|
|
194
|
-
/**
|
|
195
|
-
* @internal
|
|
196
|
-
*/
|
|
197
|
-
const filterSensitiveLog: (obj: Filter) => any;
|
|
198
|
-
}
|
|
199
169
|
export interface ListGroupsRequest {
|
|
200
170
|
/**
|
|
201
171
|
* <p>The globally unique identifier for the identity store, such as
|
|
@@ -223,12 +193,6 @@ export interface ListGroupsRequest {
|
|
|
223
193
|
*/
|
|
224
194
|
Filters?: Filter[];
|
|
225
195
|
}
|
|
226
|
-
export declare namespace ListGroupsRequest {
|
|
227
|
-
/**
|
|
228
|
-
* @internal
|
|
229
|
-
*/
|
|
230
|
-
const filterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
231
|
-
}
|
|
232
196
|
/**
|
|
233
197
|
* <p>A group object, which contains a specified group’s metadata and attributes.</p>
|
|
234
198
|
*/
|
|
@@ -246,12 +210,6 @@ export interface Group {
|
|
|
246
210
|
*/
|
|
247
211
|
DisplayName: string | undefined;
|
|
248
212
|
}
|
|
249
|
-
export declare namespace Group {
|
|
250
|
-
/**
|
|
251
|
-
* @internal
|
|
252
|
-
*/
|
|
253
|
-
const filterSensitiveLog: (obj: Group) => any;
|
|
254
|
-
}
|
|
255
213
|
export interface ListGroupsResponse {
|
|
256
214
|
/**
|
|
257
215
|
* <p>A list of <code>Group</code> objects in the identity store.</p>
|
|
@@ -265,12 +223,6 @@ export interface ListGroupsResponse {
|
|
|
265
223
|
*/
|
|
266
224
|
NextToken?: string;
|
|
267
225
|
}
|
|
268
|
-
export declare namespace ListGroupsResponse {
|
|
269
|
-
/**
|
|
270
|
-
* @internal
|
|
271
|
-
*/
|
|
272
|
-
const filterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
273
|
-
}
|
|
274
226
|
export interface ListUsersRequest {
|
|
275
227
|
/**
|
|
276
228
|
* <p>The globally unique identifier for the identity store, such as
|
|
@@ -298,12 +250,6 @@ export interface ListUsersRequest {
|
|
|
298
250
|
*/
|
|
299
251
|
Filters?: Filter[];
|
|
300
252
|
}
|
|
301
|
-
export declare namespace ListUsersRequest {
|
|
302
|
-
/**
|
|
303
|
-
* @internal
|
|
304
|
-
*/
|
|
305
|
-
const filterSensitiveLog: (obj: ListUsersRequest) => any;
|
|
306
|
-
}
|
|
307
253
|
/**
|
|
308
254
|
* <p>A user object, which contains a specified user’s metadata and attributes.</p>
|
|
309
255
|
*/
|
|
@@ -320,12 +266,6 @@ export interface User {
|
|
|
320
266
|
*/
|
|
321
267
|
UserId: string | undefined;
|
|
322
268
|
}
|
|
323
|
-
export declare namespace User {
|
|
324
|
-
/**
|
|
325
|
-
* @internal
|
|
326
|
-
*/
|
|
327
|
-
const filterSensitiveLog: (obj: User) => any;
|
|
328
|
-
}
|
|
329
269
|
export interface ListUsersResponse {
|
|
330
270
|
/**
|
|
331
271
|
* <p>A list of <code>User</code> objects in the identity store.</p>
|
|
@@ -339,9 +279,47 @@ export interface ListUsersResponse {
|
|
|
339
279
|
*/
|
|
340
280
|
NextToken?: string;
|
|
341
281
|
}
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
282
|
+
/**
|
|
283
|
+
* @internal
|
|
284
|
+
*/
|
|
285
|
+
export declare const DescribeGroupRequestFilterSensitiveLog: (obj: DescribeGroupRequest) => any;
|
|
286
|
+
/**
|
|
287
|
+
* @internal
|
|
288
|
+
*/
|
|
289
|
+
export declare const DescribeGroupResponseFilterSensitiveLog: (obj: DescribeGroupResponse) => any;
|
|
290
|
+
/**
|
|
291
|
+
* @internal
|
|
292
|
+
*/
|
|
293
|
+
export declare const DescribeUserRequestFilterSensitiveLog: (obj: DescribeUserRequest) => any;
|
|
294
|
+
/**
|
|
295
|
+
* @internal
|
|
296
|
+
*/
|
|
297
|
+
export declare const DescribeUserResponseFilterSensitiveLog: (obj: DescribeUserResponse) => any;
|
|
298
|
+
/**
|
|
299
|
+
* @internal
|
|
300
|
+
*/
|
|
301
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
302
|
+
/**
|
|
303
|
+
* @internal
|
|
304
|
+
*/
|
|
305
|
+
export declare const ListGroupsRequestFilterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
306
|
+
/**
|
|
307
|
+
* @internal
|
|
308
|
+
*/
|
|
309
|
+
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
310
|
+
/**
|
|
311
|
+
* @internal
|
|
312
|
+
*/
|
|
313
|
+
export declare const ListGroupsResponseFilterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
314
|
+
/**
|
|
315
|
+
* @internal
|
|
316
|
+
*/
|
|
317
|
+
export declare const ListUsersRequestFilterSensitiveLog: (obj: ListUsersRequest) => any;
|
|
318
|
+
/**
|
|
319
|
+
* @internal
|
|
320
|
+
*/
|
|
321
|
+
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
322
|
+
/**
|
|
323
|
+
* @internal
|
|
324
|
+
*/
|
|
325
|
+
export declare const ListUsersResponseFilterSensitiveLog: (obj: ListUsersResponse) => any;
|
|
@@ -16,20 +16,12 @@ export interface DescribeGroupRequest {
|
|
|
16
16
|
|
|
17
17
|
GroupId: string | undefined;
|
|
18
18
|
}
|
|
19
|
-
export declare namespace DescribeGroupRequest {
|
|
20
|
-
|
|
21
|
-
const filterSensitiveLog: (obj: DescribeGroupRequest) => any;
|
|
22
|
-
}
|
|
23
19
|
export interface DescribeGroupResponse {
|
|
24
20
|
|
|
25
21
|
GroupId: string | undefined;
|
|
26
22
|
|
|
27
23
|
DisplayName: string | undefined;
|
|
28
24
|
}
|
|
29
|
-
export declare namespace DescribeGroupResponse {
|
|
30
|
-
|
|
31
|
-
const filterSensitiveLog: (obj: DescribeGroupResponse) => any;
|
|
32
|
-
}
|
|
33
25
|
|
|
34
26
|
export declare class InternalServerException extends __BaseException {
|
|
35
27
|
readonly name: "InternalServerException";
|
|
@@ -85,20 +77,12 @@ export interface DescribeUserRequest {
|
|
|
85
77
|
|
|
86
78
|
UserId: string | undefined;
|
|
87
79
|
}
|
|
88
|
-
export declare namespace DescribeUserRequest {
|
|
89
|
-
|
|
90
|
-
const filterSensitiveLog: (obj: DescribeUserRequest) => any;
|
|
91
|
-
}
|
|
92
80
|
export interface DescribeUserResponse {
|
|
93
81
|
|
|
94
82
|
UserName: string | undefined;
|
|
95
83
|
|
|
96
84
|
UserId: string | undefined;
|
|
97
85
|
}
|
|
98
|
-
export declare namespace DescribeUserResponse {
|
|
99
|
-
|
|
100
|
-
const filterSensitiveLog: (obj: DescribeUserResponse) => any;
|
|
101
|
-
}
|
|
102
86
|
|
|
103
87
|
export interface Filter {
|
|
104
88
|
|
|
@@ -106,10 +90,6 @@ export interface Filter {
|
|
|
106
90
|
|
|
107
91
|
AttributeValue: string | undefined;
|
|
108
92
|
}
|
|
109
|
-
export declare namespace Filter {
|
|
110
|
-
|
|
111
|
-
const filterSensitiveLog: (obj: Filter) => any;
|
|
112
|
-
}
|
|
113
93
|
export interface ListGroupsRequest {
|
|
114
94
|
|
|
115
95
|
IdentityStoreId: string | undefined;
|
|
@@ -120,10 +100,6 @@ export interface ListGroupsRequest {
|
|
|
120
100
|
|
|
121
101
|
Filters?: Filter[];
|
|
122
102
|
}
|
|
123
|
-
export declare namespace ListGroupsRequest {
|
|
124
|
-
|
|
125
|
-
const filterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
126
|
-
}
|
|
127
103
|
|
|
128
104
|
export interface Group {
|
|
129
105
|
|
|
@@ -131,20 +107,12 @@ export interface Group {
|
|
|
131
107
|
|
|
132
108
|
DisplayName: string | undefined;
|
|
133
109
|
}
|
|
134
|
-
export declare namespace Group {
|
|
135
|
-
|
|
136
|
-
const filterSensitiveLog: (obj: Group) => any;
|
|
137
|
-
}
|
|
138
110
|
export interface ListGroupsResponse {
|
|
139
111
|
|
|
140
112
|
Groups: Group[] | undefined;
|
|
141
113
|
|
|
142
114
|
NextToken?: string;
|
|
143
115
|
}
|
|
144
|
-
export declare namespace ListGroupsResponse {
|
|
145
|
-
|
|
146
|
-
const filterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
147
|
-
}
|
|
148
116
|
export interface ListUsersRequest {
|
|
149
117
|
|
|
150
118
|
IdentityStoreId: string | undefined;
|
|
@@ -155,10 +123,6 @@ export interface ListUsersRequest {
|
|
|
155
123
|
|
|
156
124
|
Filters?: Filter[];
|
|
157
125
|
}
|
|
158
|
-
export declare namespace ListUsersRequest {
|
|
159
|
-
|
|
160
|
-
const filterSensitiveLog: (obj: ListUsersRequest) => any;
|
|
161
|
-
}
|
|
162
126
|
|
|
163
127
|
export interface User {
|
|
164
128
|
|
|
@@ -166,17 +130,31 @@ export interface User {
|
|
|
166
130
|
|
|
167
131
|
UserId: string | undefined;
|
|
168
132
|
}
|
|
169
|
-
export declare namespace User {
|
|
170
|
-
|
|
171
|
-
const filterSensitiveLog: (obj: User) => any;
|
|
172
|
-
}
|
|
173
133
|
export interface ListUsersResponse {
|
|
174
134
|
|
|
175
135
|
Users: User[] | undefined;
|
|
176
136
|
|
|
177
137
|
NextToken?: string;
|
|
178
138
|
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
139
|
+
|
|
140
|
+
export declare const DescribeGroupRequestFilterSensitiveLog: (obj: DescribeGroupRequest) => any;
|
|
141
|
+
|
|
142
|
+
export declare const DescribeGroupResponseFilterSensitiveLog: (obj: DescribeGroupResponse) => any;
|
|
143
|
+
|
|
144
|
+
export declare const DescribeUserRequestFilterSensitiveLog: (obj: DescribeUserRequest) => any;
|
|
145
|
+
|
|
146
|
+
export declare const DescribeUserResponseFilterSensitiveLog: (obj: DescribeUserResponse) => any;
|
|
147
|
+
|
|
148
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
149
|
+
|
|
150
|
+
export declare const ListGroupsRequestFilterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
151
|
+
|
|
152
|
+
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
153
|
+
|
|
154
|
+
export declare const ListGroupsResponseFilterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
155
|
+
|
|
156
|
+
export declare const ListUsersRequestFilterSensitiveLog: (obj: ListUsersRequest) => any;
|
|
157
|
+
|
|
158
|
+
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
159
|
+
|
|
160
|
+
export declare const ListUsersResponseFilterSensitiveLog: (obj: ListUsersResponse) => any;
|
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.142.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|