@aws-sdk/client-identitystore 3.300.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.
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // CreateGroupRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * DisplayName: "STRING_VALUE",
32
32
  * Description: "STRING_VALUE",
@@ -26,10 +26,10 @@ 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 = {
29
+ * const input = { // CreateGroupMembershipRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * GroupId: "STRING_VALUE", // required
32
- * MemberId: { // Union: only one key present
32
+ * MemberId: { // MemberId Union: only one key present
33
33
  * UserId: "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -26,10 +26,10 @@ 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 = {
29
+ * const input = { // CreateUserRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * UserName: "STRING_VALUE",
32
- * Name: {
32
+ * Name: { // Name
33
33
  * Formatted: "STRING_VALUE",
34
34
  * FamilyName: "STRING_VALUE",
35
35
  * GivenName: "STRING_VALUE",
@@ -40,15 +40,15 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
40
40
  * DisplayName: "STRING_VALUE",
41
41
  * NickName: "STRING_VALUE",
42
42
  * ProfileUrl: "STRING_VALUE",
43
- * Emails: [
44
- * {
43
+ * Emails: [ // Emails
44
+ * { // Email
45
45
  * Value: "STRING_VALUE",
46
46
  * Type: "STRING_VALUE",
47
47
  * Primary: true || false,
48
48
  * },
49
49
  * ],
50
- * Addresses: [
51
- * {
50
+ * Addresses: [ // Addresses
51
+ * { // Address
52
52
  * StreetAddress: "STRING_VALUE",
53
53
  * Locality: "STRING_VALUE",
54
54
  * Region: "STRING_VALUE",
@@ -59,8 +59,8 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
59
59
  * Primary: true || false,
60
60
  * },
61
61
  * ],
62
- * PhoneNumbers: [
63
- * {
62
+ * PhoneNumbers: [ // PhoneNumbers
63
+ * { // PhoneNumber
64
64
  * Value: "STRING_VALUE",
65
65
  * Type: "STRING_VALUE",
66
66
  * Primary: true || false,
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteGroupRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * GroupId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteGroupMembershipRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * MembershipId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteUserRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * UserId: "STRING_VALUE", // required
32
32
  * };
@@ -27,7 +27,7 @@ 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 = {
30
+ * const input = { // DescribeGroupRequest
31
31
  * IdentityStoreId: "STRING_VALUE", // required
32
32
  * GroupId: "STRING_VALUE", // required
33
33
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DescribeGroupMembershipRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * MembershipId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DescribeUserRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * UserId: "STRING_VALUE", // required
32
32
  * };
@@ -26,14 +26,14 @@ 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 = {
29
+ * const input = { // GetGroupIdRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
- * AlternateIdentifier: { // Union: only one key present
32
- * ExternalId: {
31
+ * AlternateIdentifier: { // AlternateIdentifier Union: only one key present
32
+ * ExternalId: { // ExternalId
33
33
  * Issuer: "STRING_VALUE", // required
34
34
  * Id: "STRING_VALUE", // required
35
35
  * },
36
- * UniqueAttribute: {
36
+ * UniqueAttribute: { // UniqueAttribute
37
37
  * AttributePath: "STRING_VALUE", // required
38
38
  * AttributeValue: "DOCUMENT_VALUE", // required
39
39
  * },
@@ -26,10 +26,10 @@ 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 = {
29
+ * const input = { // GetGroupMembershipIdRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * GroupId: "STRING_VALUE", // required
32
- * MemberId: { // Union: only one key present
32
+ * MemberId: { // MemberId Union: only one key present
33
33
  * UserId: "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -26,14 +26,14 @@ 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 = {
29
+ * const input = { // GetUserIdRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
- * AlternateIdentifier: { // Union: only one key present
32
- * ExternalId: {
31
+ * AlternateIdentifier: { // AlternateIdentifier Union: only one key present
32
+ * ExternalId: { // ExternalId
33
33
  * Issuer: "STRING_VALUE", // required
34
34
  * Id: "STRING_VALUE", // required
35
35
  * },
36
- * UniqueAttribute: {
36
+ * UniqueAttribute: { // UniqueAttribute
37
37
  * AttributePath: "STRING_VALUE", // required
38
38
  * AttributeValue: "DOCUMENT_VALUE", // required
39
39
  * },
@@ -26,12 +26,12 @@ 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 = {
29
+ * const input = { // IsMemberInGroupsRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
- * MemberId: { // Union: only one key present
31
+ * MemberId: { // MemberId Union: only one key present
32
32
  * UserId: "STRING_VALUE",
33
33
  * },
34
- * GroupIds: [ // required
34
+ * GroupIds: [ // GroupIds // required
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListGroupMembershipsRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * GroupId: "STRING_VALUE", // required
32
32
  * MaxResults: Number("int"),
@@ -26,9 +26,9 @@ 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 = {
29
+ * const input = { // ListGroupMembershipsForMemberRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
- * MemberId: { // Union: only one key present
31
+ * MemberId: { // MemberId Union: only one key present
32
32
  * UserId: "STRING_VALUE",
33
33
  * },
34
34
  * MaxResults: Number("int"),
@@ -27,12 +27,12 @@ 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 = {
30
+ * const input = { // ListGroupsRequest
31
31
  * IdentityStoreId: "STRING_VALUE", // required
32
32
  * MaxResults: Number("int"),
33
33
  * NextToken: "STRING_VALUE",
34
- * Filters: [
35
- * {
34
+ * Filters: [ // Filters
35
+ * { // Filter
36
36
  * AttributePath: "STRING_VALUE", // required
37
37
  * AttributeValue: "STRING_VALUE", // required
38
38
  * },
@@ -27,12 +27,12 @@ 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 = {
30
+ * const input = { // ListUsersRequest
31
31
  * IdentityStoreId: "STRING_VALUE", // required
32
32
  * MaxResults: Number("int"),
33
33
  * NextToken: "STRING_VALUE",
34
- * Filters: [
35
- * {
34
+ * Filters: [ // Filters
35
+ * { // Filter
36
36
  * AttributePath: "STRING_VALUE", // required
37
37
  * AttributeValue: "STRING_VALUE", // required
38
38
  * },
@@ -26,11 +26,11 @@ 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 = {
29
+ * const input = { // UpdateGroupRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * GroupId: "STRING_VALUE", // required
32
- * Operations: [ // required
33
- * {
32
+ * Operations: [ // AttributeOperations // required
33
+ * { // AttributeOperation
34
34
  * AttributePath: "STRING_VALUE", // required
35
35
  * AttributeValue: "DOCUMENT_VALUE",
36
36
  * },
@@ -26,11 +26,11 @@ 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 = {
29
+ * const input = { // UpdateUserRequest
30
30
  * IdentityStoreId: "STRING_VALUE", // required
31
31
  * UserId: "STRING_VALUE", // required
32
- * Operations: [ // required
33
- * {
32
+ * Operations: [ // AttributeOperations // required
33
+ * { // AttributeOperation
34
34
  * AttributePath: "STRING_VALUE", // required
35
35
  * AttributeValue: "DOCUMENT_VALUE",
36
36
  * },
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.300.0",
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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "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",