@aws-sdk/client-directory-service-data 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/DirectoryServiceData.d.ts +67 -97
- package/dist-types/ts3.4/DirectoryServiceDataClient.d.ts +15 -55
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddGroupMemberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListGroupMembersCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListGroupsForMemberCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/RemoveGroupMemberCommand.d.ts +5 -11
- package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +7 -23
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/SearchUsersPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AddGroupMemberRequest,
|
|
4
|
-
AddGroupMemberResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AddGroupMemberRequest, AddGroupMemberResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface AddGroupMemberCommandInput extends AddGroupMemberRequest {}
|
|
8
|
-
export interface AddGroupMemberCommandOutput
|
|
9
|
-
extends AddGroupMemberResult,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface AddGroupMemberCommandOutput extends AddGroupMemberResult, __MetadataBearer {}
|
|
11
6
|
declare const AddGroupMemberCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: AddGroupMemberCommandInput
|
|
8
|
+
input: AddGroupMemberCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
AddGroupMemberCommandInput,
|
|
16
11
|
AddGroupMemberCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const AddGroupMemberCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: AddGroupMemberCommandInput
|
|
17
|
+
input: AddGroupMemberCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
AddGroupMemberCommandInput,
|
|
25
20
|
AddGroupMemberCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateGroupRequest, CreateGroupResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateGroupCommandInput extends CreateGroupRequest {}
|
|
5
|
-
export interface CreateGroupCommandOutput
|
|
6
|
-
extends CreateGroupResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateGroupCommandOutput extends CreateGroupResult, __MetadataBearer {}
|
|
8
6
|
declare const CreateGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateGroupCommandInput
|
|
8
|
+
input: CreateGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateGroupCommandInput,
|
|
13
11
|
CreateGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateGroupCommandInput
|
|
17
|
+
input: CreateGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateGroupCommandInput,
|
|
22
20
|
CreateGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateUserRequest, CreateUserResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateUserCommandInput extends CreateUserRequest {}
|
|
5
|
-
export interface CreateUserCommandOutput
|
|
6
|
-
extends CreateUserResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateUserCommandOutput extends CreateUserResult, __MetadataBearer {}
|
|
8
6
|
declare const CreateUserCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateUserCommandInput
|
|
8
|
+
input: CreateUserCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateUserCommandInput,
|
|
13
11
|
CreateUserCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateUserCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateUserCommandInput
|
|
17
|
+
input: CreateUserCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateUserCommandInput,
|
|
22
20
|
CreateUserCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteGroupRequest, DeleteGroupResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteGroupCommandInput extends DeleteGroupRequest {}
|
|
5
|
-
export interface DeleteGroupCommandOutput
|
|
6
|
-
extends DeleteGroupResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteGroupCommandOutput extends DeleteGroupResult, __MetadataBearer {}
|
|
8
6
|
declare const DeleteGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteGroupCommandInput
|
|
8
|
+
input: DeleteGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteGroupCommandInput,
|
|
13
11
|
DeleteGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteGroupCommandInput
|
|
17
|
+
input: DeleteGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteGroupCommandInput,
|
|
22
20
|
DeleteGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteUserRequest, DeleteUserResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteUserCommandInput extends DeleteUserRequest {}
|
|
5
|
-
export interface DeleteUserCommandOutput
|
|
6
|
-
extends DeleteUserResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteUserCommandOutput extends DeleteUserResult, __MetadataBearer {}
|
|
8
6
|
declare const DeleteUserCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteUserCommandInput
|
|
8
|
+
input: DeleteUserCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteUserCommandInput,
|
|
13
11
|
DeleteUserCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteUserCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteUserCommandInput
|
|
17
|
+
input: DeleteUserCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteUserCommandInput,
|
|
22
20
|
DeleteUserCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeGroupRequest, DescribeGroupResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeGroupCommandInput extends DescribeGroupRequest {}
|
|
5
|
-
export interface DescribeGroupCommandOutput
|
|
6
|
-
extends DescribeGroupResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeGroupCommandOutput extends DescribeGroupResult, __MetadataBearer {}
|
|
8
6
|
declare const DescribeGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeGroupCommandInput
|
|
8
|
+
input: DescribeGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeGroupCommandInput,
|
|
13
11
|
DescribeGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DescribeGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DescribeGroupCommandInput
|
|
17
|
+
input: DescribeGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DescribeGroupCommandInput,
|
|
22
20
|
DescribeGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeUserRequest, DescribeUserResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeUserCommandInput extends DescribeUserRequest {}
|
|
5
|
-
export interface DescribeUserCommandOutput
|
|
6
|
-
extends DescribeUserResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeUserCommandOutput extends DescribeUserResult, __MetadataBearer {}
|
|
8
6
|
declare const DescribeUserCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeUserCommandInput
|
|
8
|
+
input: DescribeUserCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeUserCommandInput,
|
|
13
11
|
DescribeUserCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DescribeUserCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DescribeUserCommandInput
|
|
17
|
+
input: DescribeUserCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DescribeUserCommandInput,
|
|
22
20
|
DescribeUserCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DisableUserRequest, DisableUserResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DisableUserCommandInput extends DisableUserRequest {}
|
|
5
|
-
export interface DisableUserCommandOutput
|
|
6
|
-
extends DisableUserResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DisableUserCommandOutput extends DisableUserResult, __MetadataBearer {}
|
|
8
6
|
declare const DisableUserCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DisableUserCommandInput
|
|
8
|
+
input: DisableUserCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DisableUserCommandInput,
|
|
13
11
|
DisableUserCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DisableUserCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DisableUserCommandInput
|
|
17
|
+
input: DisableUserCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DisableUserCommandInput,
|
|
22
20
|
DisableUserCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListGroupMembersRequest,
|
|
4
|
-
ListGroupMembersResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListGroupMembersRequest, ListGroupMembersResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListGroupMembersCommandInput extends ListGroupMembersRequest {}
|
|
8
|
-
export interface ListGroupMembersCommandOutput
|
|
9
|
-
extends ListGroupMembersResult,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListGroupMembersCommandOutput extends ListGroupMembersResult, __MetadataBearer {}
|
|
11
6
|
declare const ListGroupMembersCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListGroupMembersCommandInput
|
|
8
|
+
input: ListGroupMembersCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListGroupMembersCommandInput,
|
|
16
11
|
ListGroupMembersCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListGroupMembersCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListGroupMembersCommandInput
|
|
17
|
+
input: ListGroupMembersCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListGroupMembersCommandInput,
|
|
25
20
|
ListGroupMembersCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListGroupsRequest, ListGroupsResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListGroupsCommandInput extends ListGroupsRequest {}
|
|
5
|
-
export interface ListGroupsCommandOutput
|
|
6
|
-
extends ListGroupsResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListGroupsCommandOutput extends ListGroupsResult, __MetadataBearer {}
|
|
8
6
|
declare const ListGroupsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListGroupsCommandInput
|
|
8
|
+
input: ListGroupsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListGroupsCommandInput,
|
|
13
11
|
ListGroupsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListGroupsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListGroupsCommandInput
|
|
17
|
+
input: ListGroupsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListGroupsCommandInput,
|
|
22
20
|
ListGroupsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListGroupsForMemberRequest,
|
|
4
|
-
ListGroupsForMemberResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListGroupsForMemberRequest, ListGroupsForMemberResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListGroupsForMemberCommandInput
|
|
8
|
-
extends ListGroupsForMemberRequest {}
|
|
4
|
+
export interface ListGroupsForMemberCommandInput extends ListGroupsForMemberRequest {}
|
|
9
5
|
export interface ListGroupsForMemberCommandOutput
|
|
10
|
-
extends ListGroupsForMemberResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListGroupsForMemberResult, __MetadataBearer {}
|
|
12
7
|
declare const ListGroupsForMemberCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListGroupsForMemberCommandInput
|
|
9
|
+
input: ListGroupsForMemberCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListGroupsForMemberCommandInput,
|
|
17
12
|
ListGroupsForMemberCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListGroupsForMemberCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListGroupsForMemberCommandInput
|
|
18
|
+
input: ListGroupsForMemberCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListGroupsForMemberCommandInput,
|
|
26
21
|
ListGroupsForMemberCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListUsersRequest, ListUsersResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListUsersCommandInput extends ListUsersRequest {}
|
|
5
|
-
export interface ListUsersCommandOutput
|
|
6
|
-
extends ListUsersResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListUsersCommandOutput extends ListUsersResult, __MetadataBearer {}
|
|
8
6
|
declare const ListUsersCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListUsersCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListUsersCommandInput,
|
|
11
11
|
ListUsersCommandOutput,
|
|
12
12
|
import("..").DirectoryServiceDataClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ListUsersCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ListUsersCommandInput,
|
|
18
20
|
ListUsersCommandOutput,
|
|
19
21
|
import("..").DirectoryServiceDataClientResolvedConfig,
|
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RemoveGroupMemberRequest,
|
|
4
|
-
RemoveGroupMemberResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RemoveGroupMemberRequest, RemoveGroupMemberResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface RemoveGroupMemberCommandInput
|
|
8
|
-
|
|
9
|
-
export interface RemoveGroupMemberCommandOutput
|
|
10
|
-
extends RemoveGroupMemberResult,
|
|
11
|
-
__MetadataBearer {}
|
|
4
|
+
export interface RemoveGroupMemberCommandInput extends RemoveGroupMemberRequest {}
|
|
5
|
+
export interface RemoveGroupMemberCommandOutput extends RemoveGroupMemberResult, __MetadataBearer {}
|
|
12
6
|
declare const RemoveGroupMemberCommand_base: {
|
|
13
7
|
new (
|
|
14
|
-
input: RemoveGroupMemberCommandInput
|
|
8
|
+
input: RemoveGroupMemberCommandInput,
|
|
15
9
|
): import("@smithy/core/client").CommandImpl<
|
|
16
10
|
RemoveGroupMemberCommandInput,
|
|
17
11
|
RemoveGroupMemberCommandOutput,
|
|
@@ -20,7 +14,7 @@ declare const RemoveGroupMemberCommand_base: {
|
|
|
20
14
|
import("..").ServiceOutputTypes
|
|
21
15
|
>;
|
|
22
16
|
new (
|
|
23
|
-
input: RemoveGroupMemberCommandInput
|
|
17
|
+
input: RemoveGroupMemberCommandInput,
|
|
24
18
|
): import("@smithy/core/client").CommandImpl<
|
|
25
19
|
RemoveGroupMemberCommandInput,
|
|
26
20
|
RemoveGroupMemberCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SearchGroupsRequest, SearchGroupsResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SearchGroupsCommandInput extends SearchGroupsRequest {}
|
|
5
|
-
export interface SearchGroupsCommandOutput
|
|
6
|
-
extends SearchGroupsResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchGroupsCommandOutput extends SearchGroupsResult, __MetadataBearer {}
|
|
8
6
|
declare const SearchGroupsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SearchGroupsCommandInput
|
|
8
|
+
input: SearchGroupsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SearchGroupsCommandInput,
|
|
13
11
|
SearchGroupsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const SearchGroupsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: SearchGroupsCommandInput
|
|
17
|
+
input: SearchGroupsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
SearchGroupsCommandInput,
|
|
22
20
|
SearchGroupsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SearchUsersRequest, SearchUsersResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SearchUsersCommandInput extends SearchUsersRequest {}
|
|
5
|
-
export interface SearchUsersCommandOutput
|
|
6
|
-
extends SearchUsersResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchUsersCommandOutput extends SearchUsersResult, __MetadataBearer {}
|
|
8
6
|
declare const SearchUsersCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SearchUsersCommandInput
|
|
8
|
+
input: SearchUsersCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SearchUsersCommandInput,
|
|
13
11
|
SearchUsersCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const SearchUsersCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: SearchUsersCommandInput
|
|
17
|
+
input: SearchUsersCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
SearchUsersCommandInput,
|
|
22
20
|
SearchUsersCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateGroupCommandInput extends UpdateGroupRequest {}
|
|
5
|
-
export interface UpdateGroupCommandOutput
|
|
6
|
-
extends UpdateGroupResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateGroupCommandOutput extends UpdateGroupResult, __MetadataBearer {}
|
|
8
6
|
declare const UpdateGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateGroupCommandInput
|
|
8
|
+
input: UpdateGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateGroupCommandInput,
|
|
13
11
|
UpdateGroupCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateGroupCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateGroupCommandInput
|
|
17
|
+
input: UpdateGroupCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateGroupCommandInput,
|
|
22
20
|
UpdateGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateUserRequest, UpdateUserResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateUserCommandInput extends UpdateUserRequest {}
|
|
5
|
-
export interface UpdateUserCommandOutput
|
|
6
|
-
extends UpdateUserResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateUserCommandOutput extends UpdateUserResult, __MetadataBearer {}
|
|
8
6
|
declare const UpdateUserCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateUserCommandInput
|
|
8
|
+
input: UpdateUserCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateUserCommandInput,
|
|
13
11
|
UpdateUserCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateUserCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateUserCommandInput
|
|
17
|
+
input: UpdateUserCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateUserCommandInput,
|
|
22
20
|
UpdateUserCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface DirectoryServiceDataExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,8 +3,7 @@ export declare const AccessDeniedReason: {
|
|
|
3
3
|
readonly DIRECTORY_AUTH: "DIRECTORY_AUTH";
|
|
4
4
|
readonly IAM_AUTH: "IAM_AUTH";
|
|
5
5
|
};
|
|
6
|
-
export type AccessDeniedReason =
|
|
7
|
-
(typeof AccessDeniedReason)[keyof typeof AccessDeniedReason];
|
|
6
|
+
export type AccessDeniedReason = (typeof AccessDeniedReason)[keyof typeof AccessDeniedReason];
|
|
8
7
|
export declare const DirectoryUnavailableReason: {
|
|
9
8
|
readonly DIRECTORY_RESOURCES_EXCEEDED: "DIRECTORY_RESOURCES_EXCEEDED";
|
|
10
9
|
readonly DIRECTORY_TIMEOUT: "DIRECTORY_TIMEOUT";
|
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
|
|
2
2
|
import { DirectoryServiceDataServiceException as __BaseException } from "./DirectoryServiceDataServiceException";
|
|
3
|
-
import {
|
|
4
|
-
AccessDeniedReason,
|
|
5
|
-
DirectoryUnavailableReason,
|
|
6
|
-
ValidationExceptionReason,
|
|
7
|
-
} from "./enums";
|
|
3
|
+
import { AccessDeniedReason, DirectoryUnavailableReason, ValidationExceptionReason } from "./enums";
|
|
8
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
9
5
|
readonly name: "AccessDeniedException";
|
|
10
6
|
readonly $fault: "client";
|
|
11
7
|
Message?: string | undefined;
|
|
12
8
|
Reason?: AccessDeniedReason | undefined;
|
|
13
|
-
constructor(
|
|
14
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
15
|
-
);
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
10
|
}
|
|
17
11
|
export declare class ConflictException extends __BaseException {
|
|
18
12
|
readonly name: "ConflictException";
|
|
@@ -26,26 +20,20 @@ export declare class DirectoryUnavailableException extends __BaseException {
|
|
|
26
20
|
$retryable: {};
|
|
27
21
|
Message?: string | undefined;
|
|
28
22
|
Reason?: DirectoryUnavailableReason | undefined;
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>
|
|
31
|
-
);
|
|
23
|
+
constructor(opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>);
|
|
32
24
|
}
|
|
33
25
|
export declare class InternalServerException extends __BaseException {
|
|
34
26
|
readonly name: "InternalServerException";
|
|
35
27
|
readonly $fault: "server";
|
|
36
28
|
$retryable: {};
|
|
37
29
|
Message?: string | undefined;
|
|
38
|
-
constructor(
|
|
39
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
40
|
-
);
|
|
30
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
41
31
|
}
|
|
42
32
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
43
33
|
readonly name: "ResourceNotFoundException";
|
|
44
34
|
readonly $fault: "client";
|
|
45
35
|
Message?: string | undefined;
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
48
|
-
);
|
|
36
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
49
37
|
}
|
|
50
38
|
export declare class ThrottlingException extends __BaseException {
|
|
51
39
|
readonly name: "ThrottlingException";
|
|
@@ -55,16 +43,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
55
43
|
};
|
|
56
44
|
Message: string | undefined;
|
|
57
45
|
RetryAfterSeconds?: number | undefined;
|
|
58
|
-
constructor(
|
|
59
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
60
|
-
);
|
|
46
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
61
47
|
}
|
|
62
48
|
export declare class ValidationException extends __BaseException {
|
|
63
49
|
readonly name: "ValidationException";
|
|
64
50
|
readonly $fault: "client";
|
|
65
51
|
Message?: string | undefined;
|
|
66
52
|
Reason?: ValidationExceptionReason | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
69
|
-
);
|
|
53
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
70
54
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { DirectoryServiceDataClient } from "../DirectoryServiceDataClient";
|
|
3
|
-
export interface DirectoryServiceDataPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface DirectoryServiceDataPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: DirectoryServiceDataClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListGroupsCommandInput,
|
|
4
|
-
ListGroupsCommandOutput,
|
|
5
|
-
} from "../commands/ListGroupsCommand";
|
|
2
|
+
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
6
3
|
import { DirectoryServiceDataPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListGroups: (
|
|
8
5
|
config: DirectoryServiceDataPaginationConfiguration,
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListUsersCommandInput,
|
|
4
|
-
ListUsersCommandOutput,
|
|
5
|
-
} from "../commands/ListUsersCommand";
|
|
2
|
+
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
6
3
|
import { DirectoryServiceDataPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListUsers: (
|
|
8
5
|
config: DirectoryServiceDataPaginationConfiguration,
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SearchUsersCommandInput,
|
|
4
|
-
SearchUsersCommandOutput,
|
|
5
|
-
} from "../commands/SearchUsersCommand";
|
|
2
|
+
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand";
|
|
6
3
|
import { DirectoryServiceDataPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateSearchUsers: (
|
|
8
5
|
config: DirectoryServiceDataPaginationConfiguration,
|