@aws-sdk/client-identitystore 3.952.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +253 -179
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateGroupCommand.js +2 -2
- package/dist-es/commands/CreateGroupMembershipCommand.js +2 -2
- package/dist-es/commands/CreateUserCommand.js +2 -2
- package/dist-es/commands/DeleteGroupCommand.js +2 -2
- package/dist-es/commands/DeleteGroupMembershipCommand.js +2 -2
- package/dist-es/commands/DeleteUserCommand.js +2 -2
- package/dist-es/commands/DescribeGroupCommand.js +2 -2
- package/dist-es/commands/DescribeGroupMembershipCommand.js +2 -2
- package/dist-es/commands/DescribeUserCommand.js +2 -2
- package/dist-es/commands/GetGroupIdCommand.js +2 -2
- package/dist-es/commands/GetGroupMembershipIdCommand.js +2 -2
- package/dist-es/commands/GetUserIdCommand.js +2 -2
- package/dist-es/commands/IsMemberInGroupsCommand.js +2 -2
- package/dist-es/commands/ListGroupMembershipsCommand.js +2 -2
- package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +2 -2
- package/dist-es/commands/ListGroupsCommand.js +2 -2
- package/dist-es/commands/ListUsersCommand.js +2 -2
- package/dist-es/commands/UpdateGroupCommand.js +2 -2
- package/dist-es/commands/UpdateUserCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +141 -147
- package/dist-types/IdentitystoreClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +81 -101
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +80 -102
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.identitystore",
|
|
32
|
+
version: "2020-06-15",
|
|
33
|
+
serviceTarget: "AWSIdentityStore",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "identitystore",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "CreateGroup", {})
|
|
13
13
|
.n("IdentitystoreClient", "CreateGroupCommand")
|
|
14
|
-
.sc(CreateGroup)
|
|
14
|
+
.sc(CreateGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGroupMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGroupMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGroupMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateGroupMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "CreateGroupMembership", {})
|
|
13
13
|
.n("IdentitystoreClient", "CreateGroupMembershipCommand")
|
|
14
|
-
.sc(CreateGroupMembership)
|
|
14
|
+
.sc(CreateGroupMembership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateUser } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "CreateUser", {})
|
|
13
13
|
.n("IdentitystoreClient", "CreateUserCommand")
|
|
14
|
-
.sc(CreateUser)
|
|
14
|
+
.sc(CreateUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "DeleteGroup", {})
|
|
13
13
|
.n("IdentitystoreClient", "DeleteGroupCommand")
|
|
14
|
-
.sc(DeleteGroup)
|
|
14
|
+
.sc(DeleteGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteGroupMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGroupMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGroupMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteGroupMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "DeleteGroupMembership", {})
|
|
13
13
|
.n("IdentitystoreClient", "DeleteGroupMembershipCommand")
|
|
14
|
-
.sc(DeleteGroupMembership)
|
|
14
|
+
.sc(DeleteGroupMembership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "DeleteUser", {})
|
|
13
13
|
.n("IdentitystoreClient", "DeleteUserCommand")
|
|
14
|
-
.sc(DeleteUser)
|
|
14
|
+
.sc(DeleteUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "DescribeGroup", {})
|
|
13
13
|
.n("IdentitystoreClient", "DescribeGroupCommand")
|
|
14
|
-
.sc(DescribeGroup)
|
|
14
|
+
.sc(DescribeGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeGroupMembership } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeGroupMembership$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeGroupMembershipCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeGroupMembershipCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "DescribeGroupMembership", {})
|
|
13
13
|
.n("IdentitystoreClient", "DescribeGroupMembershipCommand")
|
|
14
|
-
.sc(DescribeGroupMembership)
|
|
14
|
+
.sc(DescribeGroupMembership$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "DescribeUser", {})
|
|
13
13
|
.n("IdentitystoreClient", "DescribeUserCommand")
|
|
14
|
-
.sc(DescribeUser)
|
|
14
|
+
.sc(DescribeUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGroupId } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGroupId$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGroupIdCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetGroupIdCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "GetGroupId", {})
|
|
13
13
|
.n("IdentitystoreClient", "GetGroupIdCommand")
|
|
14
|
-
.sc(GetGroupId)
|
|
14
|
+
.sc(GetGroupId$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGroupMembershipId } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGroupMembershipId$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGroupMembershipIdCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetGroupMembershipIdCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "GetGroupMembershipId", {})
|
|
13
13
|
.n("IdentitystoreClient", "GetGroupMembershipIdCommand")
|
|
14
|
-
.sc(GetGroupMembershipId)
|
|
14
|
+
.sc(GetGroupMembershipId$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetUserId } from "../schemas/schemas_0";
|
|
4
|
+
import { GetUserId$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetUserIdCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetUserIdCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "GetUserId", {})
|
|
13
13
|
.n("IdentitystoreClient", "GetUserIdCommand")
|
|
14
|
-
.sc(GetUserId)
|
|
14
|
+
.sc(GetUserId$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { IsMemberInGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { IsMemberInGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class IsMemberInGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class IsMemberInGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "IsMemberInGroups", {})
|
|
13
13
|
.n("IdentitystoreClient", "IsMemberInGroupsCommand")
|
|
14
|
-
.sc(IsMemberInGroups)
|
|
14
|
+
.sc(IsMemberInGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGroupMemberships } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGroupMemberships$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGroupMembershipsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGroupMembershipsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "ListGroupMemberships", {})
|
|
13
13
|
.n("IdentitystoreClient", "ListGroupMembershipsCommand")
|
|
14
|
-
.sc(ListGroupMemberships)
|
|
14
|
+
.sc(ListGroupMemberships$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGroupMembershipsForMember } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGroupMembershipsForMember$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGroupMembershipsForMemberCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGroupMembershipsForMemberCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "ListGroupMembershipsForMember", {})
|
|
13
13
|
.n("IdentitystoreClient", "ListGroupMembershipsForMemberCommand")
|
|
14
|
-
.sc(ListGroupMembershipsForMember)
|
|
14
|
+
.sc(ListGroupMembershipsForMember$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "ListGroups", {})
|
|
13
13
|
.n("IdentitystoreClient", "ListGroupsCommand")
|
|
14
|
-
.sc(ListGroups)
|
|
14
|
+
.sc(ListGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListUsers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListUsers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListUsersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListUsersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "ListUsers", {})
|
|
13
13
|
.n("IdentitystoreClient", "ListUsersCommand")
|
|
14
|
-
.sc(ListUsers)
|
|
14
|
+
.sc(ListUsers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "UpdateGroup", {})
|
|
13
13
|
.n("IdentitystoreClient", "UpdateGroupCommand")
|
|
14
|
-
.sc(UpdateGroup)
|
|
14
|
+
.sc(UpdateGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateUser } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSIdentityStore", "UpdateUser", {})
|
|
13
13
|
.n("IdentitystoreClient", "UpdateUserCommand")
|
|
14
|
-
.sc(UpdateUser)
|
|
14
|
+
.sc(UpdateUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.identitystore",
|
|
29
|
+
version: "2020-06-15",
|
|
30
|
+
serviceTarget: "AWSIdentityStore",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "identitystore",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|