@aws-sdk/client-identitystore 3.174.0 → 3.177.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
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.177.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.176.0...v3.177.0) (2022-09-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-identitystore
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.174.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.173.0...v3.174.0) (2022-09-19)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-identitystore
|
|
@@ -126,19 +126,15 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
126
126
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
|
|
127
127
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
|
|
128
128
|
/**
|
|
129
|
-
* <p>Lists
|
|
130
|
-
*
|
|
131
|
-
* filter is required. This API returns minimum attributes, including <code>GroupId</code> and
|
|
132
|
-
* group <code>DisplayName</code> in the response.</p>
|
|
129
|
+
* <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects.
|
|
130
|
+
* Filtering for a <code>Group</code> by the <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</p>
|
|
133
131
|
*/
|
|
134
132
|
listGroups(args: ListGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupsCommandOutput>;
|
|
135
133
|
listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
136
134
|
listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
137
135
|
/**
|
|
138
|
-
* <p>Lists
|
|
139
|
-
*
|
|
140
|
-
* required. This API returns minimum attributes, including <code>UserId</code> and
|
|
141
|
-
* <code>UserName</code> in the response.</p>
|
|
136
|
+
* <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects.
|
|
137
|
+
* Filtering for a <code>User</code> by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</p>
|
|
142
138
|
*/
|
|
143
139
|
listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
|
|
144
140
|
listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
@@ -7,10 +7,8 @@ export interface ListGroupsCommandInput extends ListGroupsRequest {
|
|
|
7
7
|
export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Lists
|
|
11
|
-
*
|
|
12
|
-
* filter is required. This API returns minimum attributes, including <code>GroupId</code> and
|
|
13
|
-
* group <code>DisplayName</code> in the response.</p>
|
|
10
|
+
* <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects.
|
|
11
|
+
* Filtering for a <code>Group</code> by the <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</p>
|
|
14
12
|
* @example
|
|
15
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
14
|
* ```javascript
|
|
@@ -7,10 +7,8 @@ export interface ListUsersCommandInput extends ListUsersRequest {
|
|
|
7
7
|
export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Lists
|
|
11
|
-
*
|
|
12
|
-
* required. This API returns minimum attributes, including <code>UserId</code> and
|
|
13
|
-
* <code>UserName</code> in the response.</p>
|
|
10
|
+
* <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects.
|
|
11
|
+
* Filtering for a <code>User</code> by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</p>
|
|
14
12
|
* @example
|
|
15
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
14
|
* ```javascript
|
|
@@ -93,8 +93,8 @@ export interface UniqueAttribute {
|
|
|
93
93
|
AttributeValue: __DocumentType | undefined;
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
|
-
* <p>A unique identifier for a user or group that is not the
|
|
97
|
-
* an identifier from an external identity provider (IdP) that is associated with the group or a unique attribute. For example, a
|
|
96
|
+
* <p>A unique identifier for a user or group that is not the primary identifier. This value can be
|
|
97
|
+
* an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For example, a
|
|
98
98
|
* unique <code>GroupDisplayName</code>.</p>
|
|
99
99
|
*/
|
|
100
100
|
export declare type AlternateIdentifier = AlternateIdentifier.ExternalIdMember | AlternateIdentifier.UniqueAttributeMember | AlternateIdentifier.$UnknownMember;
|
|
@@ -148,8 +148,8 @@ export interface GetGroupIdRequest {
|
|
|
148
148
|
*/
|
|
149
149
|
IdentityStoreId: string | undefined;
|
|
150
150
|
/**
|
|
151
|
-
* <p>A unique identifier for
|
|
152
|
-
* an identifier from an external identity provider (IdP) that is associated with the group or a unique attribute. For example, a
|
|
151
|
+
* <p>A unique identifier for a user or group that is not the primary identifier. This value can be
|
|
152
|
+
* an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For example, a
|
|
153
153
|
* unique <code>GroupDisplayName</code>.</p>
|
|
154
154
|
*/
|
|
155
155
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
@@ -315,7 +315,9 @@ export interface GetUserIdRequest {
|
|
|
315
315
|
*/
|
|
316
316
|
IdentityStoreId: string | undefined;
|
|
317
317
|
/**
|
|
318
|
-
* <p>A unique identifier for
|
|
318
|
+
* <p>A unique identifier for a user or group that is not the primary identifier. This value can be
|
|
319
|
+
* an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For example, a
|
|
320
|
+
* unique <code>UserDisplayName</code>.</p>
|
|
319
321
|
*/
|
|
320
322
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
321
323
|
}
|
|
@@ -560,8 +562,7 @@ export interface DescribeGroupResponse {
|
|
|
560
562
|
/**
|
|
561
563
|
* <p>The group’s display name value. The length limit is 1,024 characters. This
|
|
562
564
|
* value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new
|
|
563
|
-
* line, carriage return, space, and nonbreaking space in this attribute.
|
|
564
|
-
* <code><>;:%</code> are excluded. This value is specified at the time that the
|
|
565
|
+
* line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time that the
|
|
565
566
|
* group is created and stored as an attribute of the group object in the identity
|
|
566
567
|
* store.</p>
|
|
567
568
|
*/
|
|
@@ -639,8 +640,7 @@ export interface Group {
|
|
|
639
640
|
/**
|
|
640
641
|
* <p>The group’s display name value. The length limit is 1,024 characters. This
|
|
641
642
|
* value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new
|
|
642
|
-
* line, carriage return, space, and nonbreaking space in this attribute.
|
|
643
|
-
* <code><>;:%</code> are excluded. This value is specified at the time the group is
|
|
643
|
+
* line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is
|
|
644
644
|
* created and stored as an attribute of the group object in the identity store.</p>
|
|
645
645
|
*/
|
|
646
646
|
DisplayName?: string;
|
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.177.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",
|