@aws-sdk/client-identitystore 3.299.0 → 3.301.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-types/commands/CreateGroupCommand.d.ts +5 -0
- package/dist-types/commands/CreateGroupMembershipCommand.d.ts +7 -0
- package/dist-types/commands/CreateUserCommand.d.ts +46 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
- package/dist-types/commands/DescribeGroupCommand.d.ts +4 -0
- package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +4 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +4 -0
- package/dist-types/commands/GetGroupIdCommand.d.ts +13 -0
- package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +7 -0
- package/dist-types/commands/GetUserIdCommand.d.ts +13 -0
- package/dist-types/commands/IsMemberInGroupsCommand.d.ts +9 -0
- package/dist-types/commands/ListGroupMembershipsCommand.d.ts +6 -0
- package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +8 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +11 -0
- package/dist-types/commands/ListUsersCommand.d.ts +11 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +10 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +10 -0
- package/package.json +8 -8
|
@@ -26,6 +26,11 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
|
|
|
26
26
|
* import { IdentitystoreClient, CreateGroupCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, CreateGroupCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // CreateGroupRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* DisplayName: "STRING_VALUE",
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new CreateGroupCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershi
|
|
|
26
26
|
* import { IdentitystoreClient, CreateGroupMembershipCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, CreateGroupMembershipCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // CreateGroupMembershipRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* GroupId: "STRING_VALUE", // required
|
|
32
|
+
* MemberId: { // MemberId Union: only one key present
|
|
33
|
+
* UserId: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* };
|
|
29
36
|
* const command = new CreateGroupMembershipCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,52 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
26
26
|
* import { IdentitystoreClient, CreateUserCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, CreateUserCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // CreateUserRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* UserName: "STRING_VALUE",
|
|
32
|
+
* Name: { // Name
|
|
33
|
+
* Formatted: "STRING_VALUE",
|
|
34
|
+
* FamilyName: "STRING_VALUE",
|
|
35
|
+
* GivenName: "STRING_VALUE",
|
|
36
|
+
* MiddleName: "STRING_VALUE",
|
|
37
|
+
* HonorificPrefix: "STRING_VALUE",
|
|
38
|
+
* HonorificSuffix: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* DisplayName: "STRING_VALUE",
|
|
41
|
+
* NickName: "STRING_VALUE",
|
|
42
|
+
* ProfileUrl: "STRING_VALUE",
|
|
43
|
+
* Emails: [ // Emails
|
|
44
|
+
* { // Email
|
|
45
|
+
* Value: "STRING_VALUE",
|
|
46
|
+
* Type: "STRING_VALUE",
|
|
47
|
+
* Primary: true || false,
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* Addresses: [ // Addresses
|
|
51
|
+
* { // Address
|
|
52
|
+
* StreetAddress: "STRING_VALUE",
|
|
53
|
+
* Locality: "STRING_VALUE",
|
|
54
|
+
* Region: "STRING_VALUE",
|
|
55
|
+
* PostalCode: "STRING_VALUE",
|
|
56
|
+
* Country: "STRING_VALUE",
|
|
57
|
+
* Formatted: "STRING_VALUE",
|
|
58
|
+
* Type: "STRING_VALUE",
|
|
59
|
+
* Primary: true || false,
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* PhoneNumbers: [ // PhoneNumbers
|
|
63
|
+
* { // PhoneNumber
|
|
64
|
+
* Value: "STRING_VALUE",
|
|
65
|
+
* Type: "STRING_VALUE",
|
|
66
|
+
* Primary: true || false,
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* UserType: "STRING_VALUE",
|
|
70
|
+
* Title: "STRING_VALUE",
|
|
71
|
+
* PreferredLanguage: "STRING_VALUE",
|
|
72
|
+
* Locale: "STRING_VALUE",
|
|
73
|
+
* Timezone: "STRING_VALUE",
|
|
74
|
+
* };
|
|
29
75
|
* const command = new CreateUserCommand(input);
|
|
30
76
|
* const response = await client.send(command);
|
|
31
77
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat
|
|
|
26
26
|
* import { IdentitystoreClient, DeleteGroupCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, DeleteGroupCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // DeleteGroupRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* GroupId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteGroupCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershi
|
|
|
26
26
|
* import { IdentitystoreClient, DeleteGroupMembershipCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, DeleteGroupMembershipCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // DeleteGroupMembershipRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* MembershipId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteGroupMembershipCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB
|
|
|
26
26
|
* import { IdentitystoreClient, DeleteUserCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, DeleteUserCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // DeleteUserRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* UserId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteUserCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __Met
|
|
|
27
27
|
* import { IdentitystoreClient, DescribeGroupCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
28
28
|
* // const { IdentitystoreClient, DescribeGroupCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
29
29
|
* const client = new IdentitystoreClient(config);
|
|
30
|
+
* const input = { // DescribeGroupRequest
|
|
31
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
32
|
+
* GroupId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DescribeGroupCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembe
|
|
|
26
26
|
* import { IdentitystoreClient, DescribeGroupMembershipCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, DescribeGroupMembershipCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // DescribeGroupMembershipRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* MembershipId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeGroupMembershipCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
|
|
|
26
26
|
* import { IdentitystoreClient, DescribeUserCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, DescribeUserCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // DescribeUserRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* UserId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeUserCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataB
|
|
|
26
26
|
* import { IdentitystoreClient, GetGroupIdCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, GetGroupIdCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // GetGroupIdRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* AlternateIdentifier: { // AlternateIdentifier Union: only one key present
|
|
32
|
+
* ExternalId: { // ExternalId
|
|
33
|
+
* Issuer: "STRING_VALUE", // required
|
|
34
|
+
* Id: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* UniqueAttribute: { // UniqueAttribute
|
|
37
|
+
* AttributePath: "STRING_VALUE", // required
|
|
38
|
+
* AttributeValue: "DOCUMENT_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* },
|
|
41
|
+
* };
|
|
29
42
|
* const command = new GetGroupIdCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdR
|
|
|
26
26
|
* import { IdentitystoreClient, GetGroupMembershipIdCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, GetGroupMembershipIdCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // GetGroupMembershipIdRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* GroupId: "STRING_VALUE", // required
|
|
32
|
+
* MemberId: { // MemberId Union: only one key present
|
|
33
|
+
* UserId: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* };
|
|
29
36
|
* const command = new GetGroupMembershipIdCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBea
|
|
|
26
26
|
* import { IdentitystoreClient, GetUserIdCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, GetUserIdCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // GetUserIdRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* AlternateIdentifier: { // AlternateIdentifier Union: only one key present
|
|
32
|
+
* ExternalId: { // ExternalId
|
|
33
|
+
* Issuer: "STRING_VALUE", // required
|
|
34
|
+
* Id: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* UniqueAttribute: { // UniqueAttribute
|
|
37
|
+
* AttributePath: "STRING_VALUE", // required
|
|
38
|
+
* AttributeValue: "DOCUMENT_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* },
|
|
41
|
+
* };
|
|
29
42
|
* const command = new GetUserIdCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse,
|
|
|
26
26
|
* import { IdentitystoreClient, IsMemberInGroupsCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, IsMemberInGroupsCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // IsMemberInGroupsRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* MemberId: { // MemberId Union: only one key present
|
|
32
|
+
* UserId: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* GroupIds: [ // GroupIds // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
29
38
|
* const command = new IsMemberInGroupsCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR
|
|
|
26
26
|
* import { IdentitystoreClient, ListGroupMembershipsCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, ListGroupMembershipsCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // ListGroupMembershipsRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* GroupId: "STRING_VALUE", // required
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListGroupMembershipsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMem
|
|
|
26
26
|
* import { IdentitystoreClient, ListGroupMembershipsForMemberCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, ListGroupMembershipsForMemberCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // ListGroupMembershipsForMemberRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* MemberId: { // MemberId Union: only one key present
|
|
32
|
+
* UserId: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
29
37
|
* const command = new ListGroupMembershipsForMemberCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -27,6 +27,17 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
|
|
|
27
27
|
* import { IdentitystoreClient, ListGroupsCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
28
28
|
* // const { IdentitystoreClient, ListGroupsCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
29
29
|
* const client = new IdentitystoreClient(config);
|
|
30
|
+
* const input = { // ListGroupsRequest
|
|
31
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* Filters: [ // Filters
|
|
35
|
+
* { // Filter
|
|
36
|
+
* AttributePath: "STRING_VALUE", // required
|
|
37
|
+
* AttributeValue: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
30
41
|
* const command = new ListGroupsCommand(input);
|
|
31
42
|
* const response = await client.send(command);
|
|
32
43
|
* ```
|
|
@@ -27,6 +27,17 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
27
27
|
* import { IdentitystoreClient, ListUsersCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
28
28
|
* // const { IdentitystoreClient, ListUsersCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
29
29
|
* const client = new IdentitystoreClient(config);
|
|
30
|
+
* const input = { // ListUsersRequest
|
|
31
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* Filters: [ // Filters
|
|
35
|
+
* { // Filter
|
|
36
|
+
* AttributePath: "STRING_VALUE", // required
|
|
37
|
+
* AttributeValue: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
30
41
|
* const command = new ListUsersCommand(input);
|
|
31
42
|
* const response = await client.send(command);
|
|
32
43
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat
|
|
|
26
26
|
* import { IdentitystoreClient, UpdateGroupCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, UpdateGroupCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // UpdateGroupRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* GroupId: "STRING_VALUE", // required
|
|
32
|
+
* Operations: [ // AttributeOperations // required
|
|
33
|
+
* { // AttributeOperation
|
|
34
|
+
* AttributePath: "STRING_VALUE", // required
|
|
35
|
+
* AttributeValue: "DOCUMENT_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
29
39
|
* const command = new UpdateGroupCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
|
|
|
26
26
|
* import { IdentitystoreClient, UpdateUserCommand } from "@aws-sdk/client-identitystore"; // ES Modules import
|
|
27
27
|
* // const { IdentitystoreClient, UpdateUserCommand } = require("@aws-sdk/client-identitystore"); // CommonJS import
|
|
28
28
|
* const client = new IdentitystoreClient(config);
|
|
29
|
+
* const input = { // UpdateUserRequest
|
|
30
|
+
* IdentityStoreId: "STRING_VALUE", // required
|
|
31
|
+
* UserId: "STRING_VALUE", // required
|
|
32
|
+
* Operations: [ // AttributeOperations // required
|
|
33
|
+
* { // AttributeOperation
|
|
34
|
+
* AttributePath: "STRING_VALUE", // required
|
|
35
|
+
* AttributeValue: "DOCUMENT_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
29
39
|
* const command = new UpdateUserCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
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.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|