@aws-sdk/client-directory-service-data 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.
Files changed (59) hide show
  1. package/dist-cjs/index.js +25 -173
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/AddGroupMemberCommand.js +2 -14
  4. package/dist-es/commands/CreateGroupCommand.js +2 -14
  5. package/dist-es/commands/CreateUserCommand.js +2 -14
  6. package/dist-es/commands/DeleteGroupCommand.js +2 -14
  7. package/dist-es/commands/DeleteUserCommand.js +2 -14
  8. package/dist-es/commands/DescribeGroupCommand.js +2 -14
  9. package/dist-es/commands/DescribeUserCommand.js +2 -14
  10. package/dist-es/commands/DisableUserCommand.js +2 -14
  11. package/dist-es/commands/ListGroupMembersCommand.js +2 -14
  12. package/dist-es/commands/ListGroupsCommand.js +2 -14
  13. package/dist-es/commands/ListGroupsForMemberCommand.js +2 -14
  14. package/dist-es/commands/ListUsersCommand.js +2 -14
  15. package/dist-es/commands/RemoveGroupMemberCommand.js +2 -14
  16. package/dist-es/commands/SearchGroupsCommand.js +2 -14
  17. package/dist-es/commands/SearchUsersCommand.js +2 -14
  18. package/dist-es/commands/UpdateGroupCommand.js +2 -14
  19. package/dist-es/commands/UpdateUserCommand.js +2 -14
  20. package/dist-es/index.js +1 -0
  21. package/dist-types/commandBuilder.d.ts +18 -0
  22. package/dist-types/commands/AddGroupMemberCommand.d.ts +3 -8
  23. package/dist-types/commands/CreateGroupCommand.d.ts +3 -8
  24. package/dist-types/commands/CreateUserCommand.d.ts +3 -8
  25. package/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
  26. package/dist-types/commands/DeleteUserCommand.d.ts +3 -8
  27. package/dist-types/commands/DescribeGroupCommand.d.ts +3 -8
  28. package/dist-types/commands/DescribeUserCommand.d.ts +3 -8
  29. package/dist-types/commands/DisableUserCommand.d.ts +3 -8
  30. package/dist-types/commands/ListGroupMembersCommand.d.ts +3 -8
  31. package/dist-types/commands/ListGroupsCommand.d.ts +3 -8
  32. package/dist-types/commands/ListGroupsForMemberCommand.d.ts +3 -8
  33. package/dist-types/commands/ListUsersCommand.d.ts +3 -8
  34. package/dist-types/commands/RemoveGroupMemberCommand.d.ts +3 -8
  35. package/dist-types/commands/SearchGroupsCommand.d.ts +3 -8
  36. package/dist-types/commands/SearchUsersCommand.d.ts +3 -8
  37. package/dist-types/commands/UpdateGroupCommand.d.ts +3 -8
  38. package/dist-types/commands/UpdateUserCommand.d.ts +3 -8
  39. package/dist-types/index.d.ts +1 -0
  40. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  41. package/dist-types/ts3.4/commands/AddGroupMemberCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/ListGroupMembersCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/ListGroupsForMemberCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/RemoveGroupMemberCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/package.json +8 -8
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { CreateGroupRequest, CreateGroupResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateGroupCommandInput extends CreateGroupRequest {}
12
5
  export interface CreateGroupCommandOutput
13
6
  extends CreateGroupResult,
@@ -18,22 +11,20 @@ declare const CreateGroupCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreateGroupCommandInput,
20
13
  CreateGroupCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreateGroupCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreateGroupCommandInput,
29
22
  CreateGroupCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CreateGroupCommand extends CreateGroupCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { CreateUserRequest, CreateUserResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateUserCommandInput extends CreateUserRequest {}
12
5
  export interface CreateUserCommandOutput
13
6
  extends CreateUserResult,
@@ -18,22 +11,20 @@ declare const CreateUserCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreateUserCommandInput,
20
13
  CreateUserCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreateUserCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreateUserCommandInput,
29
22
  CreateUserCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CreateUserCommand extends CreateUserCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { DeleteGroupRequest, DeleteGroupResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteGroupCommandInput extends DeleteGroupRequest {}
12
5
  export interface DeleteGroupCommandOutput
13
6
  extends DeleteGroupResult,
@@ -18,22 +11,20 @@ declare const DeleteGroupCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteGroupCommandInput,
20
13
  DeleteGroupCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteGroupCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteGroupCommandInput,
29
22
  DeleteGroupCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeleteGroupCommand extends DeleteGroupCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { DeleteUserRequest, DeleteUserResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteUserCommandInput extends DeleteUserRequest {}
12
5
  export interface DeleteUserCommandOutput
13
6
  extends DeleteUserResult,
@@ -18,22 +11,20 @@ declare const DeleteUserCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteUserCommandInput,
20
13
  DeleteUserCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteUserCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteUserCommandInput,
29
22
  DeleteUserCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeleteUserCommand extends DeleteUserCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { DescribeGroupRequest, DescribeGroupResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DescribeGroupCommandInput extends DescribeGroupRequest {}
12
5
  export interface DescribeGroupCommandOutput
13
6
  extends DescribeGroupResult,
@@ -18,22 +11,20 @@ declare const DescribeGroupCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DescribeGroupCommandInput,
20
13
  DescribeGroupCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DescribeGroupCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DescribeGroupCommandInput,
29
22
  DescribeGroupCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DescribeGroupCommand extends DescribeGroupCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { DescribeUserRequest, DescribeUserResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DescribeUserCommandInput extends DescribeUserRequest {}
12
5
  export interface DescribeUserCommandOutput
13
6
  extends DescribeUserResult,
@@ -18,22 +11,20 @@ declare const DescribeUserCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DescribeUserCommandInput,
20
13
  DescribeUserCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DescribeUserCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DescribeUserCommandInput,
29
22
  DescribeUserCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DescribeUserCommand extends DescribeUserCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { DisableUserRequest, DisableUserResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DisableUserCommandInput extends DisableUserRequest {}
12
5
  export interface DisableUserCommandOutput
13
6
  extends DisableUserResult,
@@ -18,22 +11,20 @@ declare const DisableUserCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DisableUserCommandInput,
20
13
  DisableUserCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DisableUserCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DisableUserCommandInput,
29
22
  DisableUserCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DisableUserCommand extends DisableUserCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import {
9
3
  ListGroupMembersRequest,
10
4
  ListGroupMembersResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListGroupMembersCommandInput extends ListGroupMembersRequest {}
15
8
  export interface ListGroupMembersCommandOutput
16
9
  extends ListGroupMembersResult,
@@ -21,22 +14,20 @@ declare const ListGroupMembersCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListGroupMembersCommandInput,
23
16
  ListGroupMembersCommandOutput,
24
- DirectoryServiceDataClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").DirectoryServiceDataClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: ListGroupMembersCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListGroupMembersCommandInput,
32
25
  ListGroupMembersCommandOutput,
33
- DirectoryServiceDataClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").DirectoryServiceDataClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListGroupMembersCommand extends ListGroupMembersCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { ListGroupsRequest, ListGroupsResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListGroupsCommandInput extends ListGroupsRequest {}
12
5
  export interface ListGroupsCommandOutput
13
6
  extends ListGroupsResult,
@@ -18,22 +11,20 @@ declare const ListGroupsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListGroupsCommandInput,
20
13
  ListGroupsCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: ListGroupsCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListGroupsCommandInput,
29
22
  ListGroupsCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListGroupsCommand extends ListGroupsCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import {
9
3
  ListGroupsForMemberRequest,
10
4
  ListGroupsForMemberResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListGroupsForMemberCommandInput
15
8
  extends ListGroupsForMemberRequest {}
16
9
  export interface ListGroupsForMemberCommandOutput
@@ -22,22 +15,20 @@ declare const ListGroupsForMemberCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListGroupsForMemberCommandInput,
24
17
  ListGroupsForMemberCommandOutput,
25
- DirectoryServiceDataClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").DirectoryServiceDataClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListGroupsForMemberCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListGroupsForMemberCommandInput,
33
26
  ListGroupsForMemberCommandOutput,
34
- DirectoryServiceDataClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").DirectoryServiceDataClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListGroupsForMemberCommand extends ListGroupsForMemberCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { ListUsersRequest, ListUsersResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListUsersCommandInput extends ListUsersRequest {}
12
5
  export interface ListUsersCommandOutput
13
6
  extends ListUsersResult,
@@ -16,20 +9,18 @@ declare const ListUsersCommand_base: {
16
9
  new (input: ListUsersCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  ListUsersCommandInput,
18
11
  ListUsersCommandOutput,
19
- DirectoryServiceDataClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").DirectoryServiceDataClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: ListUsersCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  ListUsersCommandInput,
25
18
  ListUsersCommandOutput,
26
- DirectoryServiceDataClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").DirectoryServiceDataClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class ListUsersCommand extends ListUsersCommand_base {
35
26
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import {
9
3
  RemoveGroupMemberRequest,
10
4
  RemoveGroupMemberResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface RemoveGroupMemberCommandInput
15
8
  extends RemoveGroupMemberRequest {}
16
9
  export interface RemoveGroupMemberCommandOutput
@@ -22,22 +15,20 @@ declare const RemoveGroupMemberCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  RemoveGroupMemberCommandInput,
24
17
  RemoveGroupMemberCommandOutput,
25
- DirectoryServiceDataClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").DirectoryServiceDataClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: RemoveGroupMemberCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  RemoveGroupMemberCommandInput,
33
26
  RemoveGroupMemberCommandOutput,
34
- DirectoryServiceDataClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").DirectoryServiceDataClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class RemoveGroupMemberCommand extends RemoveGroupMemberCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { SearchGroupsRequest, SearchGroupsResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SearchGroupsCommandInput extends SearchGroupsRequest {}
12
5
  export interface SearchGroupsCommandOutput
13
6
  extends SearchGroupsResult,
@@ -18,22 +11,20 @@ declare const SearchGroupsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  SearchGroupsCommandInput,
20
13
  SearchGroupsCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: SearchGroupsCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  SearchGroupsCommandInput,
29
22
  SearchGroupsCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class SearchGroupsCommand extends SearchGroupsCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DirectoryServiceDataClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../DirectoryServiceDataClient";
8
2
  import { SearchUsersRequest, SearchUsersResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SearchUsersCommandInput extends SearchUsersRequest {}
12
5
  export interface SearchUsersCommandOutput
13
6
  extends SearchUsersResult,
@@ -18,22 +11,20 @@ declare const SearchUsersCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  SearchUsersCommandInput,
20
13
  SearchUsersCommandOutput,
21
- DirectoryServiceDataClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").DirectoryServiceDataClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: SearchUsersCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  SearchUsersCommandInput,
29
22
  SearchUsersCommandOutput,
30
- DirectoryServiceDataClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").DirectoryServiceDataClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class SearchUsersCommand extends SearchUsersCommand_base {
39
30
  protected static __types: {