@aws-sdk/client-directory-service-data 3.928.0 → 3.930.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 +922 -1035
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/DirectoryServiceDataClient.js +2 -0
- package/dist-es/commands/AddGroupMemberCommand.js +3 -9
- package/dist-es/commands/CreateGroupCommand.js +3 -10
- package/dist-es/commands/CreateUserCommand.js +3 -10
- package/dist-es/commands/DeleteGroupCommand.js +3 -9
- package/dist-es/commands/DeleteUserCommand.js +3 -9
- package/dist-es/commands/DescribeGroupCommand.js +3 -10
- package/dist-es/commands/DescribeUserCommand.js +3 -10
- package/dist-es/commands/DisableUserCommand.js +3 -9
- package/dist-es/commands/ListGroupMembersCommand.js +3 -10
- package/dist-es/commands/ListGroupsCommand.js +3 -10
- package/dist-es/commands/ListGroupsForMemberCommand.js +3 -10
- package/dist-es/commands/ListUsersCommand.js +3 -10
- package/dist-es/commands/RemoveGroupMemberCommand.js +3 -9
- package/dist-es/commands/SearchGroupsCommand.js +3 -10
- package/dist-es/commands/SearchUsersCommand.js +3 -10
- package/dist-es/commands/UpdateGroupCommand.js +3 -10
- package/dist-es/commands/UpdateUserCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -151
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +869 -0
- package/dist-types/DirectoryServiceDataClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +4 -89
- 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 +85 -0
- package/dist-types/ts3.4/DirectoryServiceDataClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -61
- 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 +92 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -726
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -155
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -209
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { AddGroupMemberCommandInput, AddGroupMemberCommandOutput } from "../commands/AddGroupMemberCommand";
|
|
4
|
-
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "../commands/CreateGroupCommand";
|
|
5
|
-
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
6
|
-
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
|
|
7
|
-
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
8
|
-
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "../commands/DescribeGroupCommand";
|
|
9
|
-
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "../commands/DescribeUserCommand";
|
|
10
|
-
import { DisableUserCommandInput, DisableUserCommandOutput } from "../commands/DisableUserCommand";
|
|
11
|
-
import { ListGroupMembersCommandInput, ListGroupMembersCommandOutput } from "../commands/ListGroupMembersCommand";
|
|
12
|
-
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
13
|
-
import { ListGroupsForMemberCommandInput, ListGroupsForMemberCommandOutput } from "../commands/ListGroupsForMemberCommand";
|
|
14
|
-
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
15
|
-
import { RemoveGroupMemberCommandInput, RemoveGroupMemberCommandOutput } from "../commands/RemoveGroupMemberCommand";
|
|
16
|
-
import { SearchGroupsCommandInput, SearchGroupsCommandOutput } from "../commands/SearchGroupsCommand";
|
|
17
|
-
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand";
|
|
18
|
-
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "../commands/UpdateGroupCommand";
|
|
19
|
-
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "../commands/UpdateUserCommand";
|
|
20
|
-
/**
|
|
21
|
-
* serializeAws_restJson1AddGroupMemberCommand
|
|
22
|
-
*/
|
|
23
|
-
export declare const se_AddGroupMemberCommand: (input: AddGroupMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
-
/**
|
|
25
|
-
* serializeAws_restJson1CreateGroupCommand
|
|
26
|
-
*/
|
|
27
|
-
export declare const se_CreateGroupCommand: (input: CreateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
-
/**
|
|
29
|
-
* serializeAws_restJson1CreateUserCommand
|
|
30
|
-
*/
|
|
31
|
-
export declare const se_CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
-
/**
|
|
33
|
-
* serializeAws_restJson1DeleteGroupCommand
|
|
34
|
-
*/
|
|
35
|
-
export declare const se_DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
-
/**
|
|
37
|
-
* serializeAws_restJson1DeleteUserCommand
|
|
38
|
-
*/
|
|
39
|
-
export declare const se_DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
-
/**
|
|
41
|
-
* serializeAws_restJson1DescribeGroupCommand
|
|
42
|
-
*/
|
|
43
|
-
export declare const se_DescribeGroupCommand: (input: DescribeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
-
/**
|
|
45
|
-
* serializeAws_restJson1DescribeUserCommand
|
|
46
|
-
*/
|
|
47
|
-
export declare const se_DescribeUserCommand: (input: DescribeUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
-
/**
|
|
49
|
-
* serializeAws_restJson1DisableUserCommand
|
|
50
|
-
*/
|
|
51
|
-
export declare const se_DisableUserCommand: (input: DisableUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
-
/**
|
|
53
|
-
* serializeAws_restJson1ListGroupMembersCommand
|
|
54
|
-
*/
|
|
55
|
-
export declare const se_ListGroupMembersCommand: (input: ListGroupMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
-
/**
|
|
57
|
-
* serializeAws_restJson1ListGroupsCommand
|
|
58
|
-
*/
|
|
59
|
-
export declare const se_ListGroupsCommand: (input: ListGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
-
/**
|
|
61
|
-
* serializeAws_restJson1ListGroupsForMemberCommand
|
|
62
|
-
*/
|
|
63
|
-
export declare const se_ListGroupsForMemberCommand: (input: ListGroupsForMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
-
/**
|
|
65
|
-
* serializeAws_restJson1ListUsersCommand
|
|
66
|
-
*/
|
|
67
|
-
export declare const se_ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
-
/**
|
|
69
|
-
* serializeAws_restJson1RemoveGroupMemberCommand
|
|
70
|
-
*/
|
|
71
|
-
export declare const se_RemoveGroupMemberCommand: (input: RemoveGroupMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
-
/**
|
|
73
|
-
* serializeAws_restJson1SearchGroupsCommand
|
|
74
|
-
*/
|
|
75
|
-
export declare const se_SearchGroupsCommand: (input: SearchGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
-
/**
|
|
77
|
-
* serializeAws_restJson1SearchUsersCommand
|
|
78
|
-
*/
|
|
79
|
-
export declare const se_SearchUsersCommand: (input: SearchUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
-
/**
|
|
81
|
-
* serializeAws_restJson1UpdateGroupCommand
|
|
82
|
-
*/
|
|
83
|
-
export declare const se_UpdateGroupCommand: (input: UpdateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
-
/**
|
|
85
|
-
* serializeAws_restJson1UpdateUserCommand
|
|
86
|
-
*/
|
|
87
|
-
export declare const se_UpdateUserCommand: (input: UpdateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
-
/**
|
|
89
|
-
* deserializeAws_restJson1AddGroupMemberCommand
|
|
90
|
-
*/
|
|
91
|
-
export declare const de_AddGroupMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddGroupMemberCommandOutput>;
|
|
92
|
-
/**
|
|
93
|
-
* deserializeAws_restJson1CreateGroupCommand
|
|
94
|
-
*/
|
|
95
|
-
export declare const de_CreateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupCommandOutput>;
|
|
96
|
-
/**
|
|
97
|
-
* deserializeAws_restJson1CreateUserCommand
|
|
98
|
-
*/
|
|
99
|
-
export declare const de_CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
100
|
-
/**
|
|
101
|
-
* deserializeAws_restJson1DeleteGroupCommand
|
|
102
|
-
*/
|
|
103
|
-
export declare const de_DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
104
|
-
/**
|
|
105
|
-
* deserializeAws_restJson1DeleteUserCommand
|
|
106
|
-
*/
|
|
107
|
-
export declare const de_DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
108
|
-
/**
|
|
109
|
-
* deserializeAws_restJson1DescribeGroupCommand
|
|
110
|
-
*/
|
|
111
|
-
export declare const de_DescribeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupCommandOutput>;
|
|
112
|
-
/**
|
|
113
|
-
* deserializeAws_restJson1DescribeUserCommand
|
|
114
|
-
*/
|
|
115
|
-
export declare const de_DescribeUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserCommandOutput>;
|
|
116
|
-
/**
|
|
117
|
-
* deserializeAws_restJson1DisableUserCommand
|
|
118
|
-
*/
|
|
119
|
-
export declare const de_DisableUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableUserCommandOutput>;
|
|
120
|
-
/**
|
|
121
|
-
* deserializeAws_restJson1ListGroupMembersCommand
|
|
122
|
-
*/
|
|
123
|
-
export declare const de_ListGroupMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupMembersCommandOutput>;
|
|
124
|
-
/**
|
|
125
|
-
* deserializeAws_restJson1ListGroupsCommand
|
|
126
|
-
*/
|
|
127
|
-
export declare const de_ListGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupsCommandOutput>;
|
|
128
|
-
/**
|
|
129
|
-
* deserializeAws_restJson1ListGroupsForMemberCommand
|
|
130
|
-
*/
|
|
131
|
-
export declare const de_ListGroupsForMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupsForMemberCommandOutput>;
|
|
132
|
-
/**
|
|
133
|
-
* deserializeAws_restJson1ListUsersCommand
|
|
134
|
-
*/
|
|
135
|
-
export declare const de_ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
136
|
-
/**
|
|
137
|
-
* deserializeAws_restJson1RemoveGroupMemberCommand
|
|
138
|
-
*/
|
|
139
|
-
export declare const de_RemoveGroupMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveGroupMemberCommandOutput>;
|
|
140
|
-
/**
|
|
141
|
-
* deserializeAws_restJson1SearchGroupsCommand
|
|
142
|
-
*/
|
|
143
|
-
export declare const de_SearchGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchGroupsCommandOutput>;
|
|
144
|
-
/**
|
|
145
|
-
* deserializeAws_restJson1SearchUsersCommand
|
|
146
|
-
*/
|
|
147
|
-
export declare const de_SearchUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchUsersCommandOutput>;
|
|
148
|
-
/**
|
|
149
|
-
* deserializeAws_restJson1UpdateGroupCommand
|
|
150
|
-
*/
|
|
151
|
-
export declare const de_UpdateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGroupCommandOutput>;
|
|
152
|
-
/**
|
|
153
|
-
* deserializeAws_restJson1UpdateUserCommand
|
|
154
|
-
*/
|
|
155
|
-
export declare const de_UpdateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserCommandOutput>;
|
|
@@ -1,209 +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
|
-
AddGroupMemberCommandInput,
|
|
8
|
-
AddGroupMemberCommandOutput,
|
|
9
|
-
} from "../commands/AddGroupMemberCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateGroupCommandInput,
|
|
12
|
-
CreateGroupCommandOutput,
|
|
13
|
-
} from "../commands/CreateGroupCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateUserCommandInput,
|
|
16
|
-
CreateUserCommandOutput,
|
|
17
|
-
} from "../commands/CreateUserCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteGroupCommandInput,
|
|
20
|
-
DeleteGroupCommandOutput,
|
|
21
|
-
} from "../commands/DeleteGroupCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteUserCommandInput,
|
|
24
|
-
DeleteUserCommandOutput,
|
|
25
|
-
} from "../commands/DeleteUserCommand";
|
|
26
|
-
import {
|
|
27
|
-
DescribeGroupCommandInput,
|
|
28
|
-
DescribeGroupCommandOutput,
|
|
29
|
-
} from "../commands/DescribeGroupCommand";
|
|
30
|
-
import {
|
|
31
|
-
DescribeUserCommandInput,
|
|
32
|
-
DescribeUserCommandOutput,
|
|
33
|
-
} from "../commands/DescribeUserCommand";
|
|
34
|
-
import {
|
|
35
|
-
DisableUserCommandInput,
|
|
36
|
-
DisableUserCommandOutput,
|
|
37
|
-
} from "../commands/DisableUserCommand";
|
|
38
|
-
import {
|
|
39
|
-
ListGroupMembersCommandInput,
|
|
40
|
-
ListGroupMembersCommandOutput,
|
|
41
|
-
} from "../commands/ListGroupMembersCommand";
|
|
42
|
-
import {
|
|
43
|
-
ListGroupsCommandInput,
|
|
44
|
-
ListGroupsCommandOutput,
|
|
45
|
-
} from "../commands/ListGroupsCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListGroupsForMemberCommandInput,
|
|
48
|
-
ListGroupsForMemberCommandOutput,
|
|
49
|
-
} from "../commands/ListGroupsForMemberCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListUsersCommandInput,
|
|
52
|
-
ListUsersCommandOutput,
|
|
53
|
-
} from "../commands/ListUsersCommand";
|
|
54
|
-
import {
|
|
55
|
-
RemoveGroupMemberCommandInput,
|
|
56
|
-
RemoveGroupMemberCommandOutput,
|
|
57
|
-
} from "../commands/RemoveGroupMemberCommand";
|
|
58
|
-
import {
|
|
59
|
-
SearchGroupsCommandInput,
|
|
60
|
-
SearchGroupsCommandOutput,
|
|
61
|
-
} from "../commands/SearchGroupsCommand";
|
|
62
|
-
import {
|
|
63
|
-
SearchUsersCommandInput,
|
|
64
|
-
SearchUsersCommandOutput,
|
|
65
|
-
} from "../commands/SearchUsersCommand";
|
|
66
|
-
import {
|
|
67
|
-
UpdateGroupCommandInput,
|
|
68
|
-
UpdateGroupCommandOutput,
|
|
69
|
-
} from "../commands/UpdateGroupCommand";
|
|
70
|
-
import {
|
|
71
|
-
UpdateUserCommandInput,
|
|
72
|
-
UpdateUserCommandOutput,
|
|
73
|
-
} from "../commands/UpdateUserCommand";
|
|
74
|
-
export declare const se_AddGroupMemberCommand: (
|
|
75
|
-
input: AddGroupMemberCommandInput,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const se_CreateGroupCommand: (
|
|
79
|
-
input: CreateGroupCommandInput,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const se_CreateUserCommand: (
|
|
83
|
-
input: CreateUserCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_DeleteGroupCommand: (
|
|
87
|
-
input: DeleteGroupCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_DeleteUserCommand: (
|
|
91
|
-
input: DeleteUserCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_DescribeGroupCommand: (
|
|
95
|
-
input: DescribeGroupCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_DescribeUserCommand: (
|
|
99
|
-
input: DescribeUserCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_DisableUserCommand: (
|
|
103
|
-
input: DisableUserCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_ListGroupMembersCommand: (
|
|
107
|
-
input: ListGroupMembersCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_ListGroupsCommand: (
|
|
111
|
-
input: ListGroupsCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_ListGroupsForMemberCommand: (
|
|
115
|
-
input: ListGroupsForMemberCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_ListUsersCommand: (
|
|
119
|
-
input: ListUsersCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_RemoveGroupMemberCommand: (
|
|
123
|
-
input: RemoveGroupMemberCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_SearchGroupsCommand: (
|
|
127
|
-
input: SearchGroupsCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_SearchUsersCommand: (
|
|
131
|
-
input: SearchUsersCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_UpdateGroupCommand: (
|
|
135
|
-
input: UpdateGroupCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_UpdateUserCommand: (
|
|
139
|
-
input: UpdateUserCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const de_AddGroupMemberCommand: (
|
|
143
|
-
output: __HttpResponse,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<AddGroupMemberCommandOutput>;
|
|
146
|
-
export declare const de_CreateGroupCommand: (
|
|
147
|
-
output: __HttpResponse,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<CreateGroupCommandOutput>;
|
|
150
|
-
export declare const de_CreateUserCommand: (
|
|
151
|
-
output: __HttpResponse,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<CreateUserCommandOutput>;
|
|
154
|
-
export declare const de_DeleteGroupCommand: (
|
|
155
|
-
output: __HttpResponse,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<DeleteGroupCommandOutput>;
|
|
158
|
-
export declare const de_DeleteUserCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<DeleteUserCommandOutput>;
|
|
162
|
-
export declare const de_DescribeGroupCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<DescribeGroupCommandOutput>;
|
|
166
|
-
export declare const de_DescribeUserCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<DescribeUserCommandOutput>;
|
|
170
|
-
export declare const de_DisableUserCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<DisableUserCommandOutput>;
|
|
174
|
-
export declare const de_ListGroupMembersCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<ListGroupMembersCommandOutput>;
|
|
178
|
-
export declare const de_ListGroupsCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<ListGroupsCommandOutput>;
|
|
182
|
-
export declare const de_ListGroupsForMemberCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<ListGroupsForMemberCommandOutput>;
|
|
186
|
-
export declare const de_ListUsersCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<ListUsersCommandOutput>;
|
|
190
|
-
export declare const de_RemoveGroupMemberCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<RemoveGroupMemberCommandOutput>;
|
|
194
|
-
export declare const de_SearchGroupsCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<SearchGroupsCommandOutput>;
|
|
198
|
-
export declare const de_SearchUsersCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<SearchUsersCommandOutput>;
|
|
202
|
-
export declare const de_UpdateGroupCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<UpdateGroupCommandOutput>;
|
|
206
|
-
export declare const de_UpdateUserCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<UpdateUserCommandOutput>;
|