@aws-sdk/client-identitystore 3.1077.0 → 3.1079.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 +27 -193
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateGroupCommand.js +2 -14
- package/dist-es/commands/CreateGroupMembershipCommand.js +2 -14
- package/dist-es/commands/CreateUserCommand.js +2 -14
- package/dist-es/commands/DeleteGroupCommand.js +2 -14
- package/dist-es/commands/DeleteGroupMembershipCommand.js +2 -14
- package/dist-es/commands/DeleteUserCommand.js +2 -14
- package/dist-es/commands/DescribeGroupCommand.js +2 -14
- package/dist-es/commands/DescribeGroupMembershipCommand.js +2 -14
- package/dist-es/commands/DescribeUserCommand.js +2 -14
- package/dist-es/commands/GetGroupIdCommand.js +2 -14
- package/dist-es/commands/GetGroupMembershipIdCommand.js +2 -14
- package/dist-es/commands/GetUserIdCommand.js +2 -14
- package/dist-es/commands/IsMemberInGroupsCommand.js +2 -14
- package/dist-es/commands/ListGroupMembershipsCommand.js +2 -14
- package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +2 -14
- package/dist-es/commands/ListGroupsCommand.js +2 -14
- package/dist-es/commands/ListUsersCommand.js +2 -14
- package/dist-es/commands/UpdateGroupCommand.js +2 -14
- package/dist-es/commands/UpdateUserCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateGroupCommand.d.ts +3 -8
- package/dist-types/commands/CreateGroupMembershipCommand.d.ts +3 -8
- package/dist-types/commands/CreateUserCommand.d.ts +3 -8
- package/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +3 -8
- package/dist-types/commands/DeleteUserCommand.d.ts +3 -8
- package/dist-types/commands/DescribeGroupCommand.d.ts +3 -8
- package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +3 -8
- package/dist-types/commands/DescribeUserCommand.d.ts +3 -8
- package/dist-types/commands/GetGroupIdCommand.d.ts +3 -8
- package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +3 -8
- package/dist-types/commands/GetUserIdCommand.d.ts +3 -8
- package/dist-types/commands/IsMemberInGroupsCommand.d.ts +3 -8
- package/dist-types/commands/ListGroupMembershipsCommand.d.ts +3 -8
- package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +3 -8
- package/dist-types/commands/ListGroupsCommand.d.ts +3 -8
- package/dist-types/commands/ListUsersCommand.d.ts +3 -8
- package/dist-types/commands/UpdateGroupCommand.d.ts +3 -8
- package/dist-types/commands/UpdateUserCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1078.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -1006,232 +1007,65 @@ class IdentitystoreClient extends Client {
|
|
|
1006
1007
|
}
|
|
1007
1008
|
}
|
|
1008
1009
|
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
})
|
|
1015
|
-
.s("AWSIdentityStore", "CreateGroup", {})
|
|
1016
|
-
.n("IdentitystoreClient", "CreateGroupCommand")
|
|
1017
|
-
.sc(CreateGroup$)
|
|
1018
|
-
.build() {
|
|
1010
|
+
const command = makeBuilder(commonParams, "AWSIdentityStore", "IdentitystoreClient", getEndpointPlugin);
|
|
1011
|
+
const _ep0 = {};
|
|
1012
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
1013
|
+
|
|
1014
|
+
class CreateGroupCommand extends command(_ep0, _mw0, "CreateGroup", CreateGroup$) {
|
|
1019
1015
|
}
|
|
1020
1016
|
|
|
1021
|
-
class CreateGroupMembershipCommand extends
|
|
1022
|
-
.classBuilder()
|
|
1023
|
-
.ep(commonParams)
|
|
1024
|
-
.m(function (Command, cs, config, o) {
|
|
1025
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1026
|
-
})
|
|
1027
|
-
.s("AWSIdentityStore", "CreateGroupMembership", {})
|
|
1028
|
-
.n("IdentitystoreClient", "CreateGroupMembershipCommand")
|
|
1029
|
-
.sc(CreateGroupMembership$)
|
|
1030
|
-
.build() {
|
|
1017
|
+
class CreateGroupMembershipCommand extends command(_ep0, _mw0, "CreateGroupMembership", CreateGroupMembership$) {
|
|
1031
1018
|
}
|
|
1032
1019
|
|
|
1033
|
-
class CreateUserCommand extends
|
|
1034
|
-
.classBuilder()
|
|
1035
|
-
.ep(commonParams)
|
|
1036
|
-
.m(function (Command, cs, config, o) {
|
|
1037
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1038
|
-
})
|
|
1039
|
-
.s("AWSIdentityStore", "CreateUser", {})
|
|
1040
|
-
.n("IdentitystoreClient", "CreateUserCommand")
|
|
1041
|
-
.sc(CreateUser$)
|
|
1042
|
-
.build() {
|
|
1020
|
+
class CreateUserCommand extends command(_ep0, _mw0, "CreateUser", CreateUser$) {
|
|
1043
1021
|
}
|
|
1044
1022
|
|
|
1045
|
-
class DeleteGroupCommand extends
|
|
1046
|
-
.classBuilder()
|
|
1047
|
-
.ep(commonParams)
|
|
1048
|
-
.m(function (Command, cs, config, o) {
|
|
1049
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1050
|
-
})
|
|
1051
|
-
.s("AWSIdentityStore", "DeleteGroup", {})
|
|
1052
|
-
.n("IdentitystoreClient", "DeleteGroupCommand")
|
|
1053
|
-
.sc(DeleteGroup$)
|
|
1054
|
-
.build() {
|
|
1023
|
+
class DeleteGroupCommand extends command(_ep0, _mw0, "DeleteGroup", DeleteGroup$) {
|
|
1055
1024
|
}
|
|
1056
1025
|
|
|
1057
|
-
class DeleteGroupMembershipCommand extends
|
|
1058
|
-
.classBuilder()
|
|
1059
|
-
.ep(commonParams)
|
|
1060
|
-
.m(function (Command, cs, config, o) {
|
|
1061
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1062
|
-
})
|
|
1063
|
-
.s("AWSIdentityStore", "DeleteGroupMembership", {})
|
|
1064
|
-
.n("IdentitystoreClient", "DeleteGroupMembershipCommand")
|
|
1065
|
-
.sc(DeleteGroupMembership$)
|
|
1066
|
-
.build() {
|
|
1026
|
+
class DeleteGroupMembershipCommand extends command(_ep0, _mw0, "DeleteGroupMembership", DeleteGroupMembership$) {
|
|
1067
1027
|
}
|
|
1068
1028
|
|
|
1069
|
-
class DeleteUserCommand extends
|
|
1070
|
-
.classBuilder()
|
|
1071
|
-
.ep(commonParams)
|
|
1072
|
-
.m(function (Command, cs, config, o) {
|
|
1073
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1074
|
-
})
|
|
1075
|
-
.s("AWSIdentityStore", "DeleteUser", {})
|
|
1076
|
-
.n("IdentitystoreClient", "DeleteUserCommand")
|
|
1077
|
-
.sc(DeleteUser$)
|
|
1078
|
-
.build() {
|
|
1029
|
+
class DeleteUserCommand extends command(_ep0, _mw0, "DeleteUser", DeleteUser$) {
|
|
1079
1030
|
}
|
|
1080
1031
|
|
|
1081
|
-
class DescribeGroupCommand extends
|
|
1082
|
-
.classBuilder()
|
|
1083
|
-
.ep(commonParams)
|
|
1084
|
-
.m(function (Command, cs, config, o) {
|
|
1085
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1086
|
-
})
|
|
1087
|
-
.s("AWSIdentityStore", "DescribeGroup", {})
|
|
1088
|
-
.n("IdentitystoreClient", "DescribeGroupCommand")
|
|
1089
|
-
.sc(DescribeGroup$)
|
|
1090
|
-
.build() {
|
|
1032
|
+
class DescribeGroupCommand extends command(_ep0, _mw0, "DescribeGroup", DescribeGroup$) {
|
|
1091
1033
|
}
|
|
1092
1034
|
|
|
1093
|
-
class DescribeGroupMembershipCommand extends
|
|
1094
|
-
.classBuilder()
|
|
1095
|
-
.ep(commonParams)
|
|
1096
|
-
.m(function (Command, cs, config, o) {
|
|
1097
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1098
|
-
})
|
|
1099
|
-
.s("AWSIdentityStore", "DescribeGroupMembership", {})
|
|
1100
|
-
.n("IdentitystoreClient", "DescribeGroupMembershipCommand")
|
|
1101
|
-
.sc(DescribeGroupMembership$)
|
|
1102
|
-
.build() {
|
|
1035
|
+
class DescribeGroupMembershipCommand extends command(_ep0, _mw0, "DescribeGroupMembership", DescribeGroupMembership$) {
|
|
1103
1036
|
}
|
|
1104
1037
|
|
|
1105
|
-
class DescribeUserCommand extends
|
|
1106
|
-
.classBuilder()
|
|
1107
|
-
.ep(commonParams)
|
|
1108
|
-
.m(function (Command, cs, config, o) {
|
|
1109
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1110
|
-
})
|
|
1111
|
-
.s("AWSIdentityStore", "DescribeUser", {})
|
|
1112
|
-
.n("IdentitystoreClient", "DescribeUserCommand")
|
|
1113
|
-
.sc(DescribeUser$)
|
|
1114
|
-
.build() {
|
|
1038
|
+
class DescribeUserCommand extends command(_ep0, _mw0, "DescribeUser", DescribeUser$) {
|
|
1115
1039
|
}
|
|
1116
1040
|
|
|
1117
|
-
class GetGroupIdCommand extends
|
|
1118
|
-
.classBuilder()
|
|
1119
|
-
.ep(commonParams)
|
|
1120
|
-
.m(function (Command, cs, config, o) {
|
|
1121
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1122
|
-
})
|
|
1123
|
-
.s("AWSIdentityStore", "GetGroupId", {})
|
|
1124
|
-
.n("IdentitystoreClient", "GetGroupIdCommand")
|
|
1125
|
-
.sc(GetGroupId$)
|
|
1126
|
-
.build() {
|
|
1041
|
+
class GetGroupIdCommand extends command(_ep0, _mw0, "GetGroupId", GetGroupId$) {
|
|
1127
1042
|
}
|
|
1128
1043
|
|
|
1129
|
-
class GetGroupMembershipIdCommand extends
|
|
1130
|
-
.classBuilder()
|
|
1131
|
-
.ep(commonParams)
|
|
1132
|
-
.m(function (Command, cs, config, o) {
|
|
1133
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1134
|
-
})
|
|
1135
|
-
.s("AWSIdentityStore", "GetGroupMembershipId", {})
|
|
1136
|
-
.n("IdentitystoreClient", "GetGroupMembershipIdCommand")
|
|
1137
|
-
.sc(GetGroupMembershipId$)
|
|
1138
|
-
.build() {
|
|
1044
|
+
class GetGroupMembershipIdCommand extends command(_ep0, _mw0, "GetGroupMembershipId", GetGroupMembershipId$) {
|
|
1139
1045
|
}
|
|
1140
1046
|
|
|
1141
|
-
class GetUserIdCommand extends
|
|
1142
|
-
.classBuilder()
|
|
1143
|
-
.ep(commonParams)
|
|
1144
|
-
.m(function (Command, cs, config, o) {
|
|
1145
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1146
|
-
})
|
|
1147
|
-
.s("AWSIdentityStore", "GetUserId", {})
|
|
1148
|
-
.n("IdentitystoreClient", "GetUserIdCommand")
|
|
1149
|
-
.sc(GetUserId$)
|
|
1150
|
-
.build() {
|
|
1047
|
+
class GetUserIdCommand extends command(_ep0, _mw0, "GetUserId", GetUserId$) {
|
|
1151
1048
|
}
|
|
1152
1049
|
|
|
1153
|
-
class IsMemberInGroupsCommand extends
|
|
1154
|
-
.classBuilder()
|
|
1155
|
-
.ep(commonParams)
|
|
1156
|
-
.m(function (Command, cs, config, o) {
|
|
1157
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1158
|
-
})
|
|
1159
|
-
.s("AWSIdentityStore", "IsMemberInGroups", {})
|
|
1160
|
-
.n("IdentitystoreClient", "IsMemberInGroupsCommand")
|
|
1161
|
-
.sc(IsMemberInGroups$)
|
|
1162
|
-
.build() {
|
|
1050
|
+
class IsMemberInGroupsCommand extends command(_ep0, _mw0, "IsMemberInGroups", IsMemberInGroups$) {
|
|
1163
1051
|
}
|
|
1164
1052
|
|
|
1165
|
-
class ListGroupMembershipsCommand extends
|
|
1166
|
-
.classBuilder()
|
|
1167
|
-
.ep(commonParams)
|
|
1168
|
-
.m(function (Command, cs, config, o) {
|
|
1169
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1170
|
-
})
|
|
1171
|
-
.s("AWSIdentityStore", "ListGroupMemberships", {})
|
|
1172
|
-
.n("IdentitystoreClient", "ListGroupMembershipsCommand")
|
|
1173
|
-
.sc(ListGroupMemberships$)
|
|
1174
|
-
.build() {
|
|
1053
|
+
class ListGroupMembershipsCommand extends command(_ep0, _mw0, "ListGroupMemberships", ListGroupMemberships$) {
|
|
1175
1054
|
}
|
|
1176
1055
|
|
|
1177
|
-
class ListGroupMembershipsForMemberCommand extends
|
|
1178
|
-
.classBuilder()
|
|
1179
|
-
.ep(commonParams)
|
|
1180
|
-
.m(function (Command, cs, config, o) {
|
|
1181
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1182
|
-
})
|
|
1183
|
-
.s("AWSIdentityStore", "ListGroupMembershipsForMember", {})
|
|
1184
|
-
.n("IdentitystoreClient", "ListGroupMembershipsForMemberCommand")
|
|
1185
|
-
.sc(ListGroupMembershipsForMember$)
|
|
1186
|
-
.build() {
|
|
1056
|
+
class ListGroupMembershipsForMemberCommand extends command(_ep0, _mw0, "ListGroupMembershipsForMember", ListGroupMembershipsForMember$) {
|
|
1187
1057
|
}
|
|
1188
1058
|
|
|
1189
|
-
class ListGroupsCommand extends
|
|
1190
|
-
.classBuilder()
|
|
1191
|
-
.ep(commonParams)
|
|
1192
|
-
.m(function (Command, cs, config, o) {
|
|
1193
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1194
|
-
})
|
|
1195
|
-
.s("AWSIdentityStore", "ListGroups", {})
|
|
1196
|
-
.n("IdentitystoreClient", "ListGroupsCommand")
|
|
1197
|
-
.sc(ListGroups$)
|
|
1198
|
-
.build() {
|
|
1059
|
+
class ListGroupsCommand extends command(_ep0, _mw0, "ListGroups", ListGroups$) {
|
|
1199
1060
|
}
|
|
1200
1061
|
|
|
1201
|
-
class ListUsersCommand extends
|
|
1202
|
-
.classBuilder()
|
|
1203
|
-
.ep(commonParams)
|
|
1204
|
-
.m(function (Command, cs, config, o) {
|
|
1205
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1206
|
-
})
|
|
1207
|
-
.s("AWSIdentityStore", "ListUsers", {})
|
|
1208
|
-
.n("IdentitystoreClient", "ListUsersCommand")
|
|
1209
|
-
.sc(ListUsers$)
|
|
1210
|
-
.build() {
|
|
1062
|
+
class ListUsersCommand extends command(_ep0, _mw0, "ListUsers", ListUsers$) {
|
|
1211
1063
|
}
|
|
1212
1064
|
|
|
1213
|
-
class UpdateGroupCommand extends
|
|
1214
|
-
.classBuilder()
|
|
1215
|
-
.ep(commonParams)
|
|
1216
|
-
.m(function (Command, cs, config, o) {
|
|
1217
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1218
|
-
})
|
|
1219
|
-
.s("AWSIdentityStore", "UpdateGroup", {})
|
|
1220
|
-
.n("IdentitystoreClient", "UpdateGroupCommand")
|
|
1221
|
-
.sc(UpdateGroup$)
|
|
1222
|
-
.build() {
|
|
1065
|
+
class UpdateGroupCommand extends command(_ep0, _mw0, "UpdateGroup", UpdateGroup$) {
|
|
1223
1066
|
}
|
|
1224
1067
|
|
|
1225
|
-
class UpdateUserCommand extends
|
|
1226
|
-
.classBuilder()
|
|
1227
|
-
.ep(commonParams)
|
|
1228
|
-
.m(function (Command, cs, config, o) {
|
|
1229
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1230
|
-
})
|
|
1231
|
-
.s("AWSIdentityStore", "UpdateUser", {})
|
|
1232
|
-
.n("IdentitystoreClient", "UpdateUserCommand")
|
|
1233
|
-
.sc(UpdateUser$)
|
|
1234
|
-
.build() {
|
|
1068
|
+
class UpdateUserCommand extends command(_ep0, _mw0, "UpdateUser", UpdateUser$) {
|
|
1235
1069
|
}
|
|
1236
1070
|
|
|
1237
1071
|
const paginateListGroupMembershipsForMember = createPaginator(IdentitystoreClient, ListGroupMembershipsForMemberCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "AWSIdentityStore", "IdentitystoreClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateGroup$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateGroupCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "CreateGroup", {})
|
|
13
|
-
.n("IdentitystoreClient", "CreateGroupCommand")
|
|
14
|
-
.sc(CreateGroup$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateGroupCommand extends command(_ep0, _mw0, "CreateGroup", CreateGroup$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateGroupMembership$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateGroupMembershipCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "CreateGroupMembership", {})
|
|
13
|
-
.n("IdentitystoreClient", "CreateGroupMembershipCommand")
|
|
14
|
-
.sc(CreateGroupMembership$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateGroupMembershipCommand extends command(_ep0, _mw0, "CreateGroupMembership", CreateGroupMembership$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateUser$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateUserCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "CreateUser", {})
|
|
13
|
-
.n("IdentitystoreClient", "CreateUserCommand")
|
|
14
|
-
.sc(CreateUser$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateUserCommand extends command(_ep0, _mw0, "CreateUser", CreateUser$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DeleteGroup$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteGroupCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "DeleteGroup", {})
|
|
13
|
-
.n("IdentitystoreClient", "DeleteGroupCommand")
|
|
14
|
-
.sc(DeleteGroup$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteGroupCommand extends command(_ep0, _mw0, "DeleteGroup", DeleteGroup$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DeleteGroupMembership$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteGroupMembershipCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "DeleteGroupMembership", {})
|
|
13
|
-
.n("IdentitystoreClient", "DeleteGroupMembershipCommand")
|
|
14
|
-
.sc(DeleteGroupMembership$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteGroupMembershipCommand extends command(_ep0, _mw0, "DeleteGroupMembership", DeleteGroupMembership$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DeleteUser$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteUserCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "DeleteUser", {})
|
|
13
|
-
.n("IdentitystoreClient", "DeleteUserCommand")
|
|
14
|
-
.sc(DeleteUser$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteUserCommand extends command(_ep0, _mw0, "DeleteUser", DeleteUser$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DescribeGroup$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DescribeGroupCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "DescribeGroup", {})
|
|
13
|
-
.n("IdentitystoreClient", "DescribeGroupCommand")
|
|
14
|
-
.sc(DescribeGroup$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DescribeGroupCommand extends command(_ep0, _mw0, "DescribeGroup", DescribeGroup$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DescribeGroupMembership$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DescribeGroupMembershipCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "DescribeGroupMembership", {})
|
|
13
|
-
.n("IdentitystoreClient", "DescribeGroupMembershipCommand")
|
|
14
|
-
.sc(DescribeGroupMembership$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DescribeGroupMembershipCommand extends command(_ep0, _mw0, "DescribeGroupMembership", DescribeGroupMembership$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DescribeUser$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DescribeUserCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "DescribeUser", {})
|
|
13
|
-
.n("IdentitystoreClient", "DescribeUserCommand")
|
|
14
|
-
.sc(DescribeUser$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DescribeUserCommand extends command(_ep0, _mw0, "DescribeUser", DescribeUser$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetGroupId$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetGroupIdCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "GetGroupId", {})
|
|
13
|
-
.n("IdentitystoreClient", "GetGroupIdCommand")
|
|
14
|
-
.sc(GetGroupId$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetGroupIdCommand extends command(_ep0, _mw0, "GetGroupId", GetGroupId$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetGroupMembershipId$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetGroupMembershipIdCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "GetGroupMembershipId", {})
|
|
13
|
-
.n("IdentitystoreClient", "GetGroupMembershipIdCommand")
|
|
14
|
-
.sc(GetGroupMembershipId$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetGroupMembershipIdCommand extends command(_ep0, _mw0, "GetGroupMembershipId", GetGroupMembershipId$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetUserId$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetUserIdCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "GetUserId", {})
|
|
13
|
-
.n("IdentitystoreClient", "GetUserIdCommand")
|
|
14
|
-
.sc(GetUserId$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetUserIdCommand extends command(_ep0, _mw0, "GetUserId", GetUserId$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { IsMemberInGroups$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class IsMemberInGroupsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "IsMemberInGroups", {})
|
|
13
|
-
.n("IdentitystoreClient", "IsMemberInGroupsCommand")
|
|
14
|
-
.sc(IsMemberInGroups$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class IsMemberInGroupsCommand extends command(_ep0, _mw0, "IsMemberInGroups", IsMemberInGroups$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListGroupMemberships$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListGroupMembershipsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "ListGroupMemberships", {})
|
|
13
|
-
.n("IdentitystoreClient", "ListGroupMembershipsCommand")
|
|
14
|
-
.sc(ListGroupMemberships$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListGroupMembershipsCommand extends command(_ep0, _mw0, "ListGroupMemberships", ListGroupMemberships$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListGroupMembershipsForMember$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListGroupMembershipsForMemberCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "ListGroupMembershipsForMember", {})
|
|
13
|
-
.n("IdentitystoreClient", "ListGroupMembershipsForMemberCommand")
|
|
14
|
-
.sc(ListGroupMembershipsForMember$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListGroupMembershipsForMemberCommand extends command(_ep0, _mw0, "ListGroupMembershipsForMember", ListGroupMembershipsForMember$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListGroups$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListGroupsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "ListGroups", {})
|
|
13
|
-
.n("IdentitystoreClient", "ListGroupsCommand")
|
|
14
|
-
.sc(ListGroups$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListGroupsCommand extends command(_ep0, _mw0, "ListGroups", ListGroups$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListUsers$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListUsersCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "ListUsers", {})
|
|
13
|
-
.n("IdentitystoreClient", "ListUsersCommand")
|
|
14
|
-
.sc(ListUsers$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListUsersCommand extends command(_ep0, _mw0, "ListUsers", ListUsers$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateGroup$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateGroupCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSIdentityStore", "UpdateGroup", {})
|
|
13
|
-
.n("IdentitystoreClient", "UpdateGroupCommand")
|
|
14
|
-
.sc(UpdateGroup$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateGroupCommand extends command(_ep0, _mw0, "UpdateGroup", UpdateGroup$) {
|
|
16
4
|
}
|