@aws-sdk/client-identitystore 3.927.0 → 3.928.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 +835 -1048
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/IdentitystoreClient.js +2 -0
- package/dist-es/commands/CreateGroupCommand.js +3 -10
- package/dist-es/commands/CreateGroupMembershipCommand.js +3 -9
- package/dist-es/commands/CreateUserCommand.js +3 -10
- package/dist-es/commands/DeleteGroupCommand.js +3 -9
- package/dist-es/commands/DeleteGroupMembershipCommand.js +3 -9
- package/dist-es/commands/DeleteUserCommand.js +3 -9
- package/dist-es/commands/DescribeGroupCommand.js +3 -10
- package/dist-es/commands/DescribeGroupMembershipCommand.js +3 -9
- package/dist-es/commands/DescribeUserCommand.js +3 -10
- package/dist-es/commands/GetGroupIdCommand.js +3 -10
- package/dist-es/commands/GetGroupMembershipIdCommand.js +3 -9
- package/dist-es/commands/GetUserIdCommand.js +3 -10
- package/dist-es/commands/IsMemberInGroupsCommand.js +3 -10
- package/dist-es/commands/ListGroupMembershipsCommand.js +3 -9
- package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +3 -9
- package/dist-es/commands/ListGroupsCommand.js +3 -10
- package/dist-es/commands/ListUsersCommand.js +3 -10
- package/dist-es/commands/UpdateGroupCommand.js +3 -9
- package/dist-es/commands/UpdateUserCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -170
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +776 -0
- package/dist-types/IdentitystoreClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -88
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +100 -0
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -48
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +106 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -707
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -173
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -233
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "../commands/CreateGroupCommand";
|
|
4
|
-
import { CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput } from "../commands/CreateGroupMembershipCommand";
|
|
5
|
-
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
6
|
-
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
|
|
7
|
-
import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "../commands/DeleteGroupMembershipCommand";
|
|
8
|
-
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
9
|
-
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "../commands/DescribeGroupCommand";
|
|
10
|
-
import { DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput } from "../commands/DescribeGroupMembershipCommand";
|
|
11
|
-
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "../commands/DescribeUserCommand";
|
|
12
|
-
import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "../commands/GetGroupIdCommand";
|
|
13
|
-
import { GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput } from "../commands/GetGroupMembershipIdCommand";
|
|
14
|
-
import { GetUserIdCommandInput, GetUserIdCommandOutput } from "../commands/GetUserIdCommand";
|
|
15
|
-
import { IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput } from "../commands/IsMemberInGroupsCommand";
|
|
16
|
-
import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "../commands/ListGroupMembershipsCommand";
|
|
17
|
-
import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "../commands/ListGroupMembershipsForMemberCommand";
|
|
18
|
-
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
19
|
-
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
20
|
-
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "../commands/UpdateGroupCommand";
|
|
21
|
-
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "../commands/UpdateUserCommand";
|
|
22
|
-
/**
|
|
23
|
-
* serializeAws_json1_1CreateGroupCommand
|
|
24
|
-
*/
|
|
25
|
-
export declare const se_CreateGroupCommand: (input: CreateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
-
/**
|
|
27
|
-
* serializeAws_json1_1CreateGroupMembershipCommand
|
|
28
|
-
*/
|
|
29
|
-
export declare const se_CreateGroupMembershipCommand: (input: CreateGroupMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
-
/**
|
|
31
|
-
* serializeAws_json1_1CreateUserCommand
|
|
32
|
-
*/
|
|
33
|
-
export declare const se_CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
-
/**
|
|
35
|
-
* serializeAws_json1_1DeleteGroupCommand
|
|
36
|
-
*/
|
|
37
|
-
export declare const se_DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
-
/**
|
|
39
|
-
* serializeAws_json1_1DeleteGroupMembershipCommand
|
|
40
|
-
*/
|
|
41
|
-
export declare const se_DeleteGroupMembershipCommand: (input: DeleteGroupMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
-
/**
|
|
43
|
-
* serializeAws_json1_1DeleteUserCommand
|
|
44
|
-
*/
|
|
45
|
-
export declare const se_DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
-
/**
|
|
47
|
-
* serializeAws_json1_1DescribeGroupCommand
|
|
48
|
-
*/
|
|
49
|
-
export declare const se_DescribeGroupCommand: (input: DescribeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
-
/**
|
|
51
|
-
* serializeAws_json1_1DescribeGroupMembershipCommand
|
|
52
|
-
*/
|
|
53
|
-
export declare const se_DescribeGroupMembershipCommand: (input: DescribeGroupMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
/**
|
|
55
|
-
* serializeAws_json1_1DescribeUserCommand
|
|
56
|
-
*/
|
|
57
|
-
export declare const se_DescribeUserCommand: (input: DescribeUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
/**
|
|
59
|
-
* serializeAws_json1_1GetGroupIdCommand
|
|
60
|
-
*/
|
|
61
|
-
export declare const se_GetGroupIdCommand: (input: GetGroupIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
/**
|
|
63
|
-
* serializeAws_json1_1GetGroupMembershipIdCommand
|
|
64
|
-
*/
|
|
65
|
-
export declare const se_GetGroupMembershipIdCommand: (input: GetGroupMembershipIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
/**
|
|
67
|
-
* serializeAws_json1_1GetUserIdCommand
|
|
68
|
-
*/
|
|
69
|
-
export declare const se_GetUserIdCommand: (input: GetUserIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
/**
|
|
71
|
-
* serializeAws_json1_1IsMemberInGroupsCommand
|
|
72
|
-
*/
|
|
73
|
-
export declare const se_IsMemberInGroupsCommand: (input: IsMemberInGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
/**
|
|
75
|
-
* serializeAws_json1_1ListGroupMembershipsCommand
|
|
76
|
-
*/
|
|
77
|
-
export declare const se_ListGroupMembershipsCommand: (input: ListGroupMembershipsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
/**
|
|
79
|
-
* serializeAws_json1_1ListGroupMembershipsForMemberCommand
|
|
80
|
-
*/
|
|
81
|
-
export declare const se_ListGroupMembershipsForMemberCommand: (input: ListGroupMembershipsForMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
/**
|
|
83
|
-
* serializeAws_json1_1ListGroupsCommand
|
|
84
|
-
*/
|
|
85
|
-
export declare const se_ListGroupsCommand: (input: ListGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
/**
|
|
87
|
-
* serializeAws_json1_1ListUsersCommand
|
|
88
|
-
*/
|
|
89
|
-
export declare const se_ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
/**
|
|
91
|
-
* serializeAws_json1_1UpdateGroupCommand
|
|
92
|
-
*/
|
|
93
|
-
export declare const se_UpdateGroupCommand: (input: UpdateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
/**
|
|
95
|
-
* serializeAws_json1_1UpdateUserCommand
|
|
96
|
-
*/
|
|
97
|
-
export declare const se_UpdateUserCommand: (input: UpdateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
/**
|
|
99
|
-
* deserializeAws_json1_1CreateGroupCommand
|
|
100
|
-
*/
|
|
101
|
-
export declare const de_CreateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* deserializeAws_json1_1CreateGroupMembershipCommand
|
|
104
|
-
*/
|
|
105
|
-
export declare const de_CreateGroupMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupMembershipCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* deserializeAws_json1_1CreateUserCommand
|
|
108
|
-
*/
|
|
109
|
-
export declare const de_CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
110
|
-
/**
|
|
111
|
-
* deserializeAws_json1_1DeleteGroupCommand
|
|
112
|
-
*/
|
|
113
|
-
export declare const de_DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
114
|
-
/**
|
|
115
|
-
* deserializeAws_json1_1DeleteGroupMembershipCommand
|
|
116
|
-
*/
|
|
117
|
-
export declare const de_DeleteGroupMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupMembershipCommandOutput>;
|
|
118
|
-
/**
|
|
119
|
-
* deserializeAws_json1_1DeleteUserCommand
|
|
120
|
-
*/
|
|
121
|
-
export declare const de_DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
122
|
-
/**
|
|
123
|
-
* deserializeAws_json1_1DescribeGroupCommand
|
|
124
|
-
*/
|
|
125
|
-
export declare const de_DescribeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupCommandOutput>;
|
|
126
|
-
/**
|
|
127
|
-
* deserializeAws_json1_1DescribeGroupMembershipCommand
|
|
128
|
-
*/
|
|
129
|
-
export declare const de_DescribeGroupMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupMembershipCommandOutput>;
|
|
130
|
-
/**
|
|
131
|
-
* deserializeAws_json1_1DescribeUserCommand
|
|
132
|
-
*/
|
|
133
|
-
export declare const de_DescribeUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserCommandOutput>;
|
|
134
|
-
/**
|
|
135
|
-
* deserializeAws_json1_1GetGroupIdCommand
|
|
136
|
-
*/
|
|
137
|
-
export declare const de_GetGroupIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGroupIdCommandOutput>;
|
|
138
|
-
/**
|
|
139
|
-
* deserializeAws_json1_1GetGroupMembershipIdCommand
|
|
140
|
-
*/
|
|
141
|
-
export declare const de_GetGroupMembershipIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGroupMembershipIdCommandOutput>;
|
|
142
|
-
/**
|
|
143
|
-
* deserializeAws_json1_1GetUserIdCommand
|
|
144
|
-
*/
|
|
145
|
-
export declare const de_GetUserIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserIdCommandOutput>;
|
|
146
|
-
/**
|
|
147
|
-
* deserializeAws_json1_1IsMemberInGroupsCommand
|
|
148
|
-
*/
|
|
149
|
-
export declare const de_IsMemberInGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IsMemberInGroupsCommandOutput>;
|
|
150
|
-
/**
|
|
151
|
-
* deserializeAws_json1_1ListGroupMembershipsCommand
|
|
152
|
-
*/
|
|
153
|
-
export declare const de_ListGroupMembershipsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupMembershipsCommandOutput>;
|
|
154
|
-
/**
|
|
155
|
-
* deserializeAws_json1_1ListGroupMembershipsForMemberCommand
|
|
156
|
-
*/
|
|
157
|
-
export declare const de_ListGroupMembershipsForMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupMembershipsForMemberCommandOutput>;
|
|
158
|
-
/**
|
|
159
|
-
* deserializeAws_json1_1ListGroupsCommand
|
|
160
|
-
*/
|
|
161
|
-
export declare const de_ListGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupsCommandOutput>;
|
|
162
|
-
/**
|
|
163
|
-
* deserializeAws_json1_1ListUsersCommand
|
|
164
|
-
*/
|
|
165
|
-
export declare const de_ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
166
|
-
/**
|
|
167
|
-
* deserializeAws_json1_1UpdateGroupCommand
|
|
168
|
-
*/
|
|
169
|
-
export declare const de_UpdateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGroupCommandOutput>;
|
|
170
|
-
/**
|
|
171
|
-
* deserializeAws_json1_1UpdateUserCommand
|
|
172
|
-
*/
|
|
173
|
-
export declare const de_UpdateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserCommandOutput>;
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateGroupCommandInput,
|
|
8
|
-
CreateGroupCommandOutput,
|
|
9
|
-
} from "../commands/CreateGroupCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateGroupMembershipCommandInput,
|
|
12
|
-
CreateGroupMembershipCommandOutput,
|
|
13
|
-
} from "../commands/CreateGroupMembershipCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateUserCommandInput,
|
|
16
|
-
CreateUserCommandOutput,
|
|
17
|
-
} from "../commands/CreateUserCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteGroupCommandInput,
|
|
20
|
-
DeleteGroupCommandOutput,
|
|
21
|
-
} from "../commands/DeleteGroupCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteGroupMembershipCommandInput,
|
|
24
|
-
DeleteGroupMembershipCommandOutput,
|
|
25
|
-
} from "../commands/DeleteGroupMembershipCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteUserCommandInput,
|
|
28
|
-
DeleteUserCommandOutput,
|
|
29
|
-
} from "../commands/DeleteUserCommand";
|
|
30
|
-
import {
|
|
31
|
-
DescribeGroupCommandInput,
|
|
32
|
-
DescribeGroupCommandOutput,
|
|
33
|
-
} from "../commands/DescribeGroupCommand";
|
|
34
|
-
import {
|
|
35
|
-
DescribeGroupMembershipCommandInput,
|
|
36
|
-
DescribeGroupMembershipCommandOutput,
|
|
37
|
-
} from "../commands/DescribeGroupMembershipCommand";
|
|
38
|
-
import {
|
|
39
|
-
DescribeUserCommandInput,
|
|
40
|
-
DescribeUserCommandOutput,
|
|
41
|
-
} from "../commands/DescribeUserCommand";
|
|
42
|
-
import {
|
|
43
|
-
GetGroupIdCommandInput,
|
|
44
|
-
GetGroupIdCommandOutput,
|
|
45
|
-
} from "../commands/GetGroupIdCommand";
|
|
46
|
-
import {
|
|
47
|
-
GetGroupMembershipIdCommandInput,
|
|
48
|
-
GetGroupMembershipIdCommandOutput,
|
|
49
|
-
} from "../commands/GetGroupMembershipIdCommand";
|
|
50
|
-
import {
|
|
51
|
-
GetUserIdCommandInput,
|
|
52
|
-
GetUserIdCommandOutput,
|
|
53
|
-
} from "../commands/GetUserIdCommand";
|
|
54
|
-
import {
|
|
55
|
-
IsMemberInGroupsCommandInput,
|
|
56
|
-
IsMemberInGroupsCommandOutput,
|
|
57
|
-
} from "../commands/IsMemberInGroupsCommand";
|
|
58
|
-
import {
|
|
59
|
-
ListGroupMembershipsCommandInput,
|
|
60
|
-
ListGroupMembershipsCommandOutput,
|
|
61
|
-
} from "../commands/ListGroupMembershipsCommand";
|
|
62
|
-
import {
|
|
63
|
-
ListGroupMembershipsForMemberCommandInput,
|
|
64
|
-
ListGroupMembershipsForMemberCommandOutput,
|
|
65
|
-
} from "../commands/ListGroupMembershipsForMemberCommand";
|
|
66
|
-
import {
|
|
67
|
-
ListGroupsCommandInput,
|
|
68
|
-
ListGroupsCommandOutput,
|
|
69
|
-
} from "../commands/ListGroupsCommand";
|
|
70
|
-
import {
|
|
71
|
-
ListUsersCommandInput,
|
|
72
|
-
ListUsersCommandOutput,
|
|
73
|
-
} from "../commands/ListUsersCommand";
|
|
74
|
-
import {
|
|
75
|
-
UpdateGroupCommandInput,
|
|
76
|
-
UpdateGroupCommandOutput,
|
|
77
|
-
} from "../commands/UpdateGroupCommand";
|
|
78
|
-
import {
|
|
79
|
-
UpdateUserCommandInput,
|
|
80
|
-
UpdateUserCommandOutput,
|
|
81
|
-
} from "../commands/UpdateUserCommand";
|
|
82
|
-
export declare const se_CreateGroupCommand: (
|
|
83
|
-
input: CreateGroupCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_CreateGroupMembershipCommand: (
|
|
87
|
-
input: CreateGroupMembershipCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_CreateUserCommand: (
|
|
91
|
-
input: CreateUserCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_DeleteGroupCommand: (
|
|
95
|
-
input: DeleteGroupCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_DeleteGroupMembershipCommand: (
|
|
99
|
-
input: DeleteGroupMembershipCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_DeleteUserCommand: (
|
|
103
|
-
input: DeleteUserCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_DescribeGroupCommand: (
|
|
107
|
-
input: DescribeGroupCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_DescribeGroupMembershipCommand: (
|
|
111
|
-
input: DescribeGroupMembershipCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_DescribeUserCommand: (
|
|
115
|
-
input: DescribeUserCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_GetGroupIdCommand: (
|
|
119
|
-
input: GetGroupIdCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_GetGroupMembershipIdCommand: (
|
|
123
|
-
input: GetGroupMembershipIdCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_GetUserIdCommand: (
|
|
127
|
-
input: GetUserIdCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_IsMemberInGroupsCommand: (
|
|
131
|
-
input: IsMemberInGroupsCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_ListGroupMembershipsCommand: (
|
|
135
|
-
input: ListGroupMembershipsCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_ListGroupMembershipsForMemberCommand: (
|
|
139
|
-
input: ListGroupMembershipsForMemberCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_ListGroupsCommand: (
|
|
143
|
-
input: ListGroupsCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_ListUsersCommand: (
|
|
147
|
-
input: ListUsersCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_UpdateGroupCommand: (
|
|
151
|
-
input: UpdateGroupCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_UpdateUserCommand: (
|
|
155
|
-
input: UpdateUserCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const de_CreateGroupCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<CreateGroupCommandOutput>;
|
|
162
|
-
export declare const de_CreateGroupMembershipCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<CreateGroupMembershipCommandOutput>;
|
|
166
|
-
export declare const de_CreateUserCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<CreateUserCommandOutput>;
|
|
170
|
-
export declare const de_DeleteGroupCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<DeleteGroupCommandOutput>;
|
|
174
|
-
export declare const de_DeleteGroupMembershipCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<DeleteGroupMembershipCommandOutput>;
|
|
178
|
-
export declare const de_DeleteUserCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<DeleteUserCommandOutput>;
|
|
182
|
-
export declare const de_DescribeGroupCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<DescribeGroupCommandOutput>;
|
|
186
|
-
export declare const de_DescribeGroupMembershipCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<DescribeGroupMembershipCommandOutput>;
|
|
190
|
-
export declare const de_DescribeUserCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<DescribeUserCommandOutput>;
|
|
194
|
-
export declare const de_GetGroupIdCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<GetGroupIdCommandOutput>;
|
|
198
|
-
export declare const de_GetGroupMembershipIdCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<GetGroupMembershipIdCommandOutput>;
|
|
202
|
-
export declare const de_GetUserIdCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<GetUserIdCommandOutput>;
|
|
206
|
-
export declare const de_IsMemberInGroupsCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<IsMemberInGroupsCommandOutput>;
|
|
210
|
-
export declare const de_ListGroupMembershipsCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<ListGroupMembershipsCommandOutput>;
|
|
214
|
-
export declare const de_ListGroupMembershipsForMemberCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<ListGroupMembershipsForMemberCommandOutput>;
|
|
218
|
-
export declare const de_ListGroupsCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<ListGroupsCommandOutput>;
|
|
222
|
-
export declare const de_ListUsersCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<ListUsersCommandOutput>;
|
|
226
|
-
export declare const de_UpdateGroupCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<UpdateGroupCommandOutput>;
|
|
230
|
-
export declare const de_UpdateUserCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<UpdateUserCommandOutput>;
|