@aws-sdk/client-identitystore 3.168.0 → 3.170.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Identitystore.d.ts +346 -100
  3. package/dist-types/ts3.4/IdentitystoreClient.d.ts +244 -92
  4. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +8 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +739 -696
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  35. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  40. package/package.json +34 -34
@@ -1,92 +1,244 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
10
- import { CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput } from "./commands/CreateGroupMembershipCommand";
11
- import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
12
- import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
13
- import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "./commands/DeleteGroupMembershipCommand";
14
- import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
15
- import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
16
- import { DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput } from "./commands/DescribeGroupMembershipCommand";
17
- import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
18
- import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "./commands/GetGroupIdCommand";
19
- import { GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput } from "./commands/GetGroupMembershipIdCommand";
20
- import { GetUserIdCommandInput, GetUserIdCommandOutput } from "./commands/GetUserIdCommand";
21
- import { IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput } from "./commands/IsMemberInGroupsCommand";
22
- import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "./commands/ListGroupMembershipsCommand";
23
- import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "./commands/ListGroupMembershipsForMemberCommand";
24
- import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
25
- import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
26
- import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
27
- import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
28
- export declare type ServiceInputTypes = CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateUserCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteUserCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeUserCommandInput | GetGroupIdCommandInput | GetGroupMembershipIdCommandInput | GetUserIdCommandInput | IsMemberInGroupsCommandInput | ListGroupMembershipsCommandInput | ListGroupMembershipsForMemberCommandInput | ListGroupsCommandInput | ListUsersCommandInput | UpdateGroupCommandInput | UpdateUserCommandInput;
29
- export declare type ServiceOutputTypes = CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateUserCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteUserCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeUserCommandOutput | GetGroupIdCommandOutput | GetGroupMembershipIdCommandOutput | GetUserIdCommandOutput | IsMemberInGroupsCommandOutput | ListGroupMembershipsCommandOutput | ListGroupMembershipsForMemberCommandOutput | ListGroupsCommandOutput | ListUsersCommandOutput | UpdateGroupCommandOutput | UpdateUserCommandOutput;
30
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
31
-
32
- requestHandler?: __HttpHandler;
33
-
34
- sha256?: __HashConstructor;
35
-
36
- urlParser?: __UrlParser;
37
-
38
- bodyLengthChecker?: __BodyLengthCalculator;
39
-
40
- streamCollector?: __StreamCollector;
41
-
42
- base64Decoder?: __Decoder;
43
-
44
- base64Encoder?: __Encoder;
45
-
46
- utf8Decoder?: __Decoder;
47
-
48
- utf8Encoder?: __Encoder;
49
-
50
- runtime?: string;
51
-
52
- disableHostPrefix?: boolean;
53
-
54
- maxAttempts?: number | __Provider<number>;
55
-
56
- retryMode?: string | __Provider<string>;
57
-
58
- logger?: __Logger;
59
-
60
- useDualstackEndpoint?: boolean | __Provider<boolean>;
61
-
62
- useFipsEndpoint?: boolean | __Provider<boolean>;
63
-
64
- serviceId?: string;
65
-
66
- region?: string | __Provider<string>;
67
-
68
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
69
-
70
- regionInfoProvider?: RegionInfoProvider;
71
-
72
- defaultUserAgentProvider?: Provider<__UserAgent>;
73
-
74
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
75
- }
76
- declare type IdentitystoreClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
77
-
78
- export interface IdentitystoreClientConfig extends IdentitystoreClientConfigType {
79
- }
80
- declare type IdentitystoreClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
81
-
82
- export interface IdentitystoreClientResolvedConfig extends IdentitystoreClientResolvedConfigType {
83
- }
84
-
85
- export declare class IdentitystoreClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IdentitystoreClientResolvedConfig> {
86
-
87
- readonly config: IdentitystoreClientResolvedConfig;
88
- constructor(configuration: IdentitystoreClientConfig);
89
-
90
- destroy(): void;
91
- }
92
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateGroupCommandInput,
47
+ CreateGroupCommandOutput,
48
+ } from "./commands/CreateGroupCommand";
49
+ import {
50
+ CreateGroupMembershipCommandInput,
51
+ CreateGroupMembershipCommandOutput,
52
+ } from "./commands/CreateGroupMembershipCommand";
53
+ import {
54
+ CreateUserCommandInput,
55
+ CreateUserCommandOutput,
56
+ } from "./commands/CreateUserCommand";
57
+ import {
58
+ DeleteGroupCommandInput,
59
+ DeleteGroupCommandOutput,
60
+ } from "./commands/DeleteGroupCommand";
61
+ import {
62
+ DeleteGroupMembershipCommandInput,
63
+ DeleteGroupMembershipCommandOutput,
64
+ } from "./commands/DeleteGroupMembershipCommand";
65
+ import {
66
+ DeleteUserCommandInput,
67
+ DeleteUserCommandOutput,
68
+ } from "./commands/DeleteUserCommand";
69
+ import {
70
+ DescribeGroupCommandInput,
71
+ DescribeGroupCommandOutput,
72
+ } from "./commands/DescribeGroupCommand";
73
+ import {
74
+ DescribeGroupMembershipCommandInput,
75
+ DescribeGroupMembershipCommandOutput,
76
+ } from "./commands/DescribeGroupMembershipCommand";
77
+ import {
78
+ DescribeUserCommandInput,
79
+ DescribeUserCommandOutput,
80
+ } from "./commands/DescribeUserCommand";
81
+ import {
82
+ GetGroupIdCommandInput,
83
+ GetGroupIdCommandOutput,
84
+ } from "./commands/GetGroupIdCommand";
85
+ import {
86
+ GetGroupMembershipIdCommandInput,
87
+ GetGroupMembershipIdCommandOutput,
88
+ } from "./commands/GetGroupMembershipIdCommand";
89
+ import {
90
+ GetUserIdCommandInput,
91
+ GetUserIdCommandOutput,
92
+ } from "./commands/GetUserIdCommand";
93
+ import {
94
+ IsMemberInGroupsCommandInput,
95
+ IsMemberInGroupsCommandOutput,
96
+ } from "./commands/IsMemberInGroupsCommand";
97
+ import {
98
+ ListGroupMembershipsCommandInput,
99
+ ListGroupMembershipsCommandOutput,
100
+ } from "./commands/ListGroupMembershipsCommand";
101
+ import {
102
+ ListGroupMembershipsForMemberCommandInput,
103
+ ListGroupMembershipsForMemberCommandOutput,
104
+ } from "./commands/ListGroupMembershipsForMemberCommand";
105
+ import {
106
+ ListGroupsCommandInput,
107
+ ListGroupsCommandOutput,
108
+ } from "./commands/ListGroupsCommand";
109
+ import {
110
+ ListUsersCommandInput,
111
+ ListUsersCommandOutput,
112
+ } from "./commands/ListUsersCommand";
113
+ import {
114
+ UpdateGroupCommandInput,
115
+ UpdateGroupCommandOutput,
116
+ } from "./commands/UpdateGroupCommand";
117
+ import {
118
+ UpdateUserCommandInput,
119
+ UpdateUserCommandOutput,
120
+ } from "./commands/UpdateUserCommand";
121
+ export declare type ServiceInputTypes =
122
+ | CreateGroupCommandInput
123
+ | CreateGroupMembershipCommandInput
124
+ | CreateUserCommandInput
125
+ | DeleteGroupCommandInput
126
+ | DeleteGroupMembershipCommandInput
127
+ | DeleteUserCommandInput
128
+ | DescribeGroupCommandInput
129
+ | DescribeGroupMembershipCommandInput
130
+ | DescribeUserCommandInput
131
+ | GetGroupIdCommandInput
132
+ | GetGroupMembershipIdCommandInput
133
+ | GetUserIdCommandInput
134
+ | IsMemberInGroupsCommandInput
135
+ | ListGroupMembershipsCommandInput
136
+ | ListGroupMembershipsForMemberCommandInput
137
+ | ListGroupsCommandInput
138
+ | ListUsersCommandInput
139
+ | UpdateGroupCommandInput
140
+ | UpdateUserCommandInput;
141
+ export declare type ServiceOutputTypes =
142
+ | CreateGroupCommandOutput
143
+ | CreateGroupMembershipCommandOutput
144
+ | CreateUserCommandOutput
145
+ | DeleteGroupCommandOutput
146
+ | DeleteGroupMembershipCommandOutput
147
+ | DeleteUserCommandOutput
148
+ | DescribeGroupCommandOutput
149
+ | DescribeGroupMembershipCommandOutput
150
+ | DescribeUserCommandOutput
151
+ | GetGroupIdCommandOutput
152
+ | GetGroupMembershipIdCommandOutput
153
+ | GetUserIdCommandOutput
154
+ | IsMemberInGroupsCommandOutput
155
+ | ListGroupMembershipsCommandOutput
156
+ | ListGroupMembershipsForMemberCommandOutput
157
+ | ListGroupsCommandOutput
158
+ | ListUsersCommandOutput
159
+ | UpdateGroupCommandOutput
160
+ | UpdateUserCommandOutput;
161
+ export interface ClientDefaults
162
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
163
+ requestHandler?: __HttpHandler;
164
+
165
+ sha256?: __HashConstructor;
166
+
167
+ urlParser?: __UrlParser;
168
+
169
+ bodyLengthChecker?: __BodyLengthCalculator;
170
+
171
+ streamCollector?: __StreamCollector;
172
+
173
+ base64Decoder?: __Decoder;
174
+
175
+ base64Encoder?: __Encoder;
176
+
177
+ utf8Decoder?: __Decoder;
178
+
179
+ utf8Encoder?: __Encoder;
180
+
181
+ runtime?: string;
182
+
183
+ disableHostPrefix?: boolean;
184
+
185
+ maxAttempts?: number | __Provider<number>;
186
+
187
+ retryMode?: string | __Provider<string>;
188
+
189
+ logger?: __Logger;
190
+
191
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
192
+
193
+ useFipsEndpoint?: boolean | __Provider<boolean>;
194
+
195
+ serviceId?: string;
196
+
197
+ region?: string | __Provider<string>;
198
+
199
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
200
+
201
+ regionInfoProvider?: RegionInfoProvider;
202
+
203
+ defaultUserAgentProvider?: Provider<__UserAgent>;
204
+
205
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
206
+ }
207
+ declare type IdentitystoreClientConfigType = Partial<
208
+ __SmithyConfiguration<__HttpHandlerOptions>
209
+ > &
210
+ ClientDefaults &
211
+ RegionInputConfig &
212
+ EndpointsInputConfig &
213
+ RetryInputConfig &
214
+ HostHeaderInputConfig &
215
+ AwsAuthInputConfig &
216
+ UserAgentInputConfig;
217
+
218
+ export interface IdentitystoreClientConfig
219
+ extends IdentitystoreClientConfigType {}
220
+ declare type IdentitystoreClientResolvedConfigType =
221
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
222
+ Required<ClientDefaults> &
223
+ RegionResolvedConfig &
224
+ EndpointsResolvedConfig &
225
+ RetryResolvedConfig &
226
+ HostHeaderResolvedConfig &
227
+ AwsAuthResolvedConfig &
228
+ UserAgentResolvedConfig;
229
+
230
+ export interface IdentitystoreClientResolvedConfig
231
+ extends IdentitystoreClientResolvedConfigType {}
232
+
233
+ export declare class IdentitystoreClient extends __Client<
234
+ __HttpHandlerOptions,
235
+ ServiceInputTypes,
236
+ ServiceOutputTypes,
237
+ IdentitystoreClientResolvedConfig
238
+ > {
239
+ readonly config: IdentitystoreClientResolvedConfig;
240
+ constructor(configuration: IdentitystoreClientConfig);
241
+
242
+ destroy(): void;
243
+ }
244
+ export {};
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
- import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
5
- export interface CreateGroupCommandInput extends CreateGroupRequest {
6
- }
7
- export interface CreateGroupCommandOutput extends CreateGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig> {
11
- readonly input: CreateGroupCommandInput;
12
- constructor(input: CreateGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGroupCommandInput, CreateGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IdentitystoreClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IdentitystoreClient";
13
+ import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
14
+ export interface CreateGroupCommandInput extends CreateGroupRequest {}
15
+ export interface CreateGroupCommandOutput
16
+ extends CreateGroupResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateGroupCommand extends $Command<
20
+ CreateGroupCommandInput,
21
+ CreateGroupCommandOutput,
22
+ IdentitystoreClientResolvedConfig
23
+ > {
24
+ readonly input: CreateGroupCommandInput;
25
+ constructor(input: CreateGroupCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: IdentitystoreClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateGroupCommandInput, CreateGroupCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
- import { CreateGroupMembershipRequest, CreateGroupMembershipResponse } from "../models/models_0";
5
- export interface CreateGroupMembershipCommandInput extends CreateGroupMembershipRequest {
6
- }
7
- export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershipResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateGroupMembershipCommand extends $Command<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
11
- readonly input: CreateGroupMembershipCommandInput;
12
- constructor(input: CreateGroupMembershipCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IdentitystoreClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IdentitystoreClient";
13
+ import {
14
+ CreateGroupMembershipRequest,
15
+ CreateGroupMembershipResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateGroupMembershipCommandInput
18
+ extends CreateGroupMembershipRequest {}
19
+ export interface CreateGroupMembershipCommandOutput
20
+ extends CreateGroupMembershipResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateGroupMembershipCommand extends $Command<
24
+ CreateGroupMembershipCommandInput,
25
+ CreateGroupMembershipCommandOutput,
26
+ IdentitystoreClientResolvedConfig
27
+ > {
28
+ readonly input: CreateGroupMembershipCommandInput;
29
+ constructor(input: CreateGroupMembershipCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: IdentitystoreClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateGroupMembershipCommandInput,
37
+ CreateGroupMembershipCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
- import { CreateUserRequest, CreateUserResponse } from "../models/models_0";
5
- export interface CreateUserCommandInput extends CreateUserRequest {
6
- }
7
- export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, IdentitystoreClientResolvedConfig> {
11
- readonly input: CreateUserCommandInput;
12
- constructor(input: CreateUserCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateUserCommandInput, CreateUserCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IdentitystoreClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IdentitystoreClient";
13
+ import { CreateUserRequest, CreateUserResponse } from "../models/models_0";
14
+ export interface CreateUserCommandInput extends CreateUserRequest {}
15
+ export interface CreateUserCommandOutput
16
+ extends CreateUserResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateUserCommand extends $Command<
20
+ CreateUserCommandInput,
21
+ CreateUserCommandOutput,
22
+ IdentitystoreClientResolvedConfig
23
+ > {
24
+ readonly input: CreateUserCommandInput;
25
+ constructor(input: CreateUserCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: IdentitystoreClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateUserCommandInput, CreateUserCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
- import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0";
5
- export interface DeleteGroupCommandInput extends DeleteGroupRequest {
6
- }
7
- export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteGroupCommand extends $Command<DeleteGroupCommandInput, DeleteGroupCommandOutput, IdentitystoreClientResolvedConfig> {
11
- readonly input: DeleteGroupCommandInput;
12
- constructor(input: DeleteGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGroupCommandInput, DeleteGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IdentitystoreClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IdentitystoreClient";
13
+ import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0";
14
+ export interface DeleteGroupCommandInput extends DeleteGroupRequest {}
15
+ export interface DeleteGroupCommandOutput
16
+ extends DeleteGroupResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteGroupCommand extends $Command<
20
+ DeleteGroupCommandInput,
21
+ DeleteGroupCommandOutput,
22
+ IdentitystoreClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteGroupCommandInput;
25
+ constructor(input: DeleteGroupCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: IdentitystoreClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteGroupCommandInput, DeleteGroupCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
4
- import { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_0";
5
- export interface DeleteGroupMembershipCommandInput extends DeleteGroupMembershipRequest {
6
- }
7
- export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershipResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteGroupMembershipCommand extends $Command<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
11
- readonly input: DeleteGroupMembershipCommandInput;
12
- constructor(input: DeleteGroupMembershipCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IdentitystoreClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IdentitystoreClient";
13
+ import {
14
+ DeleteGroupMembershipRequest,
15
+ DeleteGroupMembershipResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteGroupMembershipCommandInput
18
+ extends DeleteGroupMembershipRequest {}
19
+ export interface DeleteGroupMembershipCommandOutput
20
+ extends DeleteGroupMembershipResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteGroupMembershipCommand extends $Command<
24
+ DeleteGroupMembershipCommandInput,
25
+ DeleteGroupMembershipCommandOutput,
26
+ IdentitystoreClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteGroupMembershipCommandInput;
29
+ constructor(input: DeleteGroupMembershipCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: IdentitystoreClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteGroupMembershipCommandInput,
37
+ DeleteGroupMembershipCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }