@aws-sdk/client-directory-service 3.856.0 → 3.857.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/README.md +63 -7
- package/dist-cjs/index.js +489 -7
- package/dist-es/DirectoryService.js +14 -0
- package/dist-es/commands/CreateHybridADCommand.js +22 -0
- package/dist-es/commands/DeleteADAssessmentCommand.js +22 -0
- package/dist-es/commands/DescribeADAssessmentCommand.js +22 -0
- package/dist-es/commands/DescribeHybridADUpdateCommand.js +22 -0
- package/dist-es/commands/ListADAssessmentsCommand.js +22 -0
- package/dist-es/commands/StartADAssessmentCommand.js +22 -0
- package/dist-es/commands/UpdateHybridADCommand.js +22 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +25 -5
- package/dist-es/pagination/ListADAssessmentsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +263 -1
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForHybridADUpdated.js +54 -0
- package/dist-types/DirectoryService.d.ts +51 -0
- package/dist-types/DirectoryServiceClient.d.ts +9 -2
- package/dist-types/commands/CreateHybridADCommand.d.ts +115 -0
- package/dist-types/commands/DeleteADAssessmentCommand.d.ts +91 -0
- package/dist-types/commands/DescribeADAssessmentCommand.d.ts +129 -0
- package/dist-types/commands/DescribeDirectoriesCommand.d.ts +8 -0
- package/dist-types/commands/DescribeHybridADUpdateCommand.d.ts +148 -0
- package/dist-types/commands/ListADAssessmentsCommand.d.ts +105 -0
- package/dist-types/commands/StartADAssessmentCommand.d.ts +132 -0
- package/dist-types/commands/UpdateHybridADCommand.d.ts +122 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +689 -16
- package/dist-types/pagination/ListADAssessmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
- package/dist-types/ts3.4/DirectoryService.d.ts +121 -0
- package/dist-types/ts3.4/DirectoryServiceClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateHybridADCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteADAssessmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeADAssessmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeHybridADUpdateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListADAssessmentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartADAssessmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateHybridADCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +158 -6
- package/dist-types/ts3.4/pagination/ListADAssessmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForHybridADUpdated.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForHybridADUpdated.d.ts +14 -0
- package/package.json +12 -11
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteADAssessmentRequest,
|
|
10
|
+
DeleteADAssessmentResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteADAssessmentCommandInput
|
|
15
|
+
extends DeleteADAssessmentRequest {}
|
|
16
|
+
export interface DeleteADAssessmentCommandOutput
|
|
17
|
+
extends DeleteADAssessmentResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteADAssessmentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteADAssessmentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteADAssessmentCommandInput,
|
|
24
|
+
DeleteADAssessmentCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteADAssessmentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteADAssessmentCommandInput,
|
|
33
|
+
DeleteADAssessmentCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteADAssessmentCommand extends DeleteADAssessmentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteADAssessmentRequest;
|
|
44
|
+
output: DeleteADAssessmentResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteADAssessmentCommandInput;
|
|
48
|
+
output: DeleteADAssessmentCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeADAssessmentRequest,
|
|
10
|
+
DescribeADAssessmentResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeADAssessmentCommandInput
|
|
15
|
+
extends DescribeADAssessmentRequest {}
|
|
16
|
+
export interface DescribeADAssessmentCommandOutput
|
|
17
|
+
extends DescribeADAssessmentResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeADAssessmentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeADAssessmentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeADAssessmentCommandInput,
|
|
24
|
+
DescribeADAssessmentCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeADAssessmentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeADAssessmentCommandInput,
|
|
33
|
+
DescribeADAssessmentCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeADAssessmentCommand extends DescribeADAssessmentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeADAssessmentRequest;
|
|
44
|
+
output: DescribeADAssessmentResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeADAssessmentCommandInput;
|
|
48
|
+
output: DescribeADAssessmentCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeHybridADUpdateRequest,
|
|
10
|
+
DescribeHybridADUpdateResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeHybridADUpdateCommandInput
|
|
15
|
+
extends DescribeHybridADUpdateRequest {}
|
|
16
|
+
export interface DescribeHybridADUpdateCommandOutput
|
|
17
|
+
extends DescribeHybridADUpdateResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeHybridADUpdateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeHybridADUpdateCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeHybridADUpdateCommandInput,
|
|
24
|
+
DescribeHybridADUpdateCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeHybridADUpdateCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeHybridADUpdateCommandInput,
|
|
33
|
+
DescribeHybridADUpdateCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeHybridADUpdateCommand extends DescribeHybridADUpdateCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeHybridADUpdateRequest;
|
|
44
|
+
output: DescribeHybridADUpdateResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeHybridADUpdateCommandInput;
|
|
48
|
+
output: DescribeHybridADUpdateCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
ListADAssessmentsRequest,
|
|
10
|
+
ListADAssessmentsResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListADAssessmentsCommandInput
|
|
15
|
+
extends ListADAssessmentsRequest {}
|
|
16
|
+
export interface ListADAssessmentsCommandOutput
|
|
17
|
+
extends ListADAssessmentsResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListADAssessmentsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListADAssessmentsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListADAssessmentsCommandInput,
|
|
24
|
+
ListADAssessmentsCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListADAssessmentsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListADAssessmentsCommandInput,
|
|
33
|
+
ListADAssessmentsCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListADAssessmentsCommand extends ListADAssessmentsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListADAssessmentsRequest;
|
|
44
|
+
output: ListADAssessmentsResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListADAssessmentsCommandInput;
|
|
48
|
+
output: ListADAssessmentsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
StartADAssessmentRequest,
|
|
10
|
+
StartADAssessmentResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartADAssessmentCommandInput
|
|
15
|
+
extends StartADAssessmentRequest {}
|
|
16
|
+
export interface StartADAssessmentCommandOutput
|
|
17
|
+
extends StartADAssessmentResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartADAssessmentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartADAssessmentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartADAssessmentCommandInput,
|
|
24
|
+
StartADAssessmentCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [StartADAssessmentCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartADAssessmentCommandInput,
|
|
33
|
+
StartADAssessmentCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartADAssessmentCommand extends StartADAssessmentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartADAssessmentRequest;
|
|
44
|
+
output: StartADAssessmentResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartADAssessmentCommandInput;
|
|
48
|
+
output: StartADAssessmentCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateHybridADRequest,
|
|
10
|
+
UpdateHybridADResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateHybridADCommandInput extends UpdateHybridADRequest {}
|
|
15
|
+
export interface UpdateHybridADCommandOutput
|
|
16
|
+
extends UpdateHybridADResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateHybridADCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateHybridADCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateHybridADCommandInput,
|
|
23
|
+
UpdateHybridADCommandOutput,
|
|
24
|
+
DirectoryServiceClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UpdateHybridADCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateHybridADCommandInput,
|
|
32
|
+
UpdateHybridADCommandOutput,
|
|
33
|
+
DirectoryServiceClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateHybridADCommand extends UpdateHybridADCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateHybridADRequest;
|
|
43
|
+
output: UpdateHybridADResult;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateHybridADCommandInput;
|
|
47
|
+
output: UpdateHybridADCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -8,10 +8,12 @@ export * from "./CreateAliasCommand";
|
|
|
8
8
|
export * from "./CreateComputerCommand";
|
|
9
9
|
export * from "./CreateConditionalForwarderCommand";
|
|
10
10
|
export * from "./CreateDirectoryCommand";
|
|
11
|
+
export * from "./CreateHybridADCommand";
|
|
11
12
|
export * from "./CreateLogSubscriptionCommand";
|
|
12
13
|
export * from "./CreateMicrosoftADCommand";
|
|
13
14
|
export * from "./CreateSnapshotCommand";
|
|
14
15
|
export * from "./CreateTrustCommand";
|
|
16
|
+
export * from "./DeleteADAssessmentCommand";
|
|
15
17
|
export * from "./DeleteConditionalForwarderCommand";
|
|
16
18
|
export * from "./DeleteDirectoryCommand";
|
|
17
19
|
export * from "./DeleteLogSubscriptionCommand";
|
|
@@ -19,6 +21,7 @@ export * from "./DeleteSnapshotCommand";
|
|
|
19
21
|
export * from "./DeleteTrustCommand";
|
|
20
22
|
export * from "./DeregisterCertificateCommand";
|
|
21
23
|
export * from "./DeregisterEventTopicCommand";
|
|
24
|
+
export * from "./DescribeADAssessmentCommand";
|
|
22
25
|
export * from "./DescribeCertificateCommand";
|
|
23
26
|
export * from "./DescribeClientAuthenticationSettingsCommand";
|
|
24
27
|
export * from "./DescribeConditionalForwardersCommand";
|
|
@@ -26,6 +29,7 @@ export * from "./DescribeDirectoriesCommand";
|
|
|
26
29
|
export * from "./DescribeDirectoryDataAccessCommand";
|
|
27
30
|
export * from "./DescribeDomainControllersCommand";
|
|
28
31
|
export * from "./DescribeEventTopicsCommand";
|
|
32
|
+
export * from "./DescribeHybridADUpdateCommand";
|
|
29
33
|
export * from "./DescribeLDAPSSettingsCommand";
|
|
30
34
|
export * from "./DescribeRegionsCommand";
|
|
31
35
|
export * from "./DescribeSettingsCommand";
|
|
@@ -45,6 +49,7 @@ export * from "./EnableRadiusCommand";
|
|
|
45
49
|
export * from "./EnableSsoCommand";
|
|
46
50
|
export * from "./GetDirectoryLimitsCommand";
|
|
47
51
|
export * from "./GetSnapshotLimitsCommand";
|
|
52
|
+
export * from "./ListADAssessmentsCommand";
|
|
48
53
|
export * from "./ListCertificatesCommand";
|
|
49
54
|
export * from "./ListIpRoutesCommand";
|
|
50
55
|
export * from "./ListLogSubscriptionsCommand";
|
|
@@ -59,10 +64,12 @@ export * from "./RemoveTagsFromResourceCommand";
|
|
|
59
64
|
export * from "./ResetUserPasswordCommand";
|
|
60
65
|
export * from "./RestoreFromSnapshotCommand";
|
|
61
66
|
export * from "./ShareDirectoryCommand";
|
|
67
|
+
export * from "./StartADAssessmentCommand";
|
|
62
68
|
export * from "./StartSchemaExtensionCommand";
|
|
63
69
|
export * from "./UnshareDirectoryCommand";
|
|
64
70
|
export * from "./UpdateConditionalForwarderCommand";
|
|
65
71
|
export * from "./UpdateDirectorySetupCommand";
|
|
72
|
+
export * from "./UpdateHybridADCommand";
|
|
66
73
|
export * from "./UpdateNumberOfDomainControllersCommand";
|
|
67
74
|
export * from "./UpdateRadiusCommand";
|
|
68
75
|
export * from "./UpdateSettingsCommand";
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { DirectoryServiceExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./waiters";
|
|
8
9
|
export * from "./models";
|
|
9
10
|
export { DirectoryServiceServiceException } from "./models/DirectoryServiceServiceException";
|
|
@@ -87,6 +87,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
87
87
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
88
88
|
);
|
|
89
89
|
}
|
|
90
|
+
export declare class ADAssessmentLimitExceededException extends __BaseException {
|
|
91
|
+
readonly name: "ADAssessmentLimitExceededException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
Message?: string | undefined;
|
|
94
|
+
RequestId?: string | undefined;
|
|
95
|
+
constructor(
|
|
96
|
+
opts: __ExceptionOptionType<
|
|
97
|
+
ADAssessmentLimitExceededException,
|
|
98
|
+
__BaseException
|
|
99
|
+
>
|
|
100
|
+
);
|
|
101
|
+
}
|
|
90
102
|
export interface IpRoute {
|
|
91
103
|
CidrIp?: string | undefined;
|
|
92
104
|
Description?: string | undefined;
|
|
@@ -191,6 +203,53 @@ export declare class TagLimitExceededException extends __BaseException {
|
|
|
191
203
|
opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
|
|
192
204
|
);
|
|
193
205
|
}
|
|
206
|
+
export interface Assessment {
|
|
207
|
+
AssessmentId?: string | undefined;
|
|
208
|
+
DirectoryId?: string | undefined;
|
|
209
|
+
DnsName?: string | undefined;
|
|
210
|
+
StartTime?: Date | undefined;
|
|
211
|
+
LastUpdateDateTime?: Date | undefined;
|
|
212
|
+
Status?: string | undefined;
|
|
213
|
+
StatusCode?: string | undefined;
|
|
214
|
+
StatusReason?: string | undefined;
|
|
215
|
+
CustomerDnsIps?: string[] | undefined;
|
|
216
|
+
VpcId?: string | undefined;
|
|
217
|
+
SubnetIds?: string[] | undefined;
|
|
218
|
+
SecurityGroupIds?: string[] | undefined;
|
|
219
|
+
SelfManagedInstanceIds?: string[] | undefined;
|
|
220
|
+
ReportType?: string | undefined;
|
|
221
|
+
Version?: string | undefined;
|
|
222
|
+
}
|
|
223
|
+
export interface AssessmentConfiguration {
|
|
224
|
+
CustomerDnsIps: string[] | undefined;
|
|
225
|
+
DnsName: string | undefined;
|
|
226
|
+
VpcSettings: DirectoryVpcSettings | undefined;
|
|
227
|
+
InstanceIds: string[] | undefined;
|
|
228
|
+
SecurityGroupIds?: string[] | undefined;
|
|
229
|
+
}
|
|
230
|
+
export interface AssessmentValidation {
|
|
231
|
+
Category?: string | undefined;
|
|
232
|
+
Name?: string | undefined;
|
|
233
|
+
Status?: string | undefined;
|
|
234
|
+
StatusCode?: string | undefined;
|
|
235
|
+
StatusReason?: string | undefined;
|
|
236
|
+
StartTime?: Date | undefined;
|
|
237
|
+
LastUpdateDateTime?: Date | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface AssessmentReport {
|
|
240
|
+
DomainControllerIp?: string | undefined;
|
|
241
|
+
Validations?: AssessmentValidation[] | undefined;
|
|
242
|
+
}
|
|
243
|
+
export interface AssessmentSummary {
|
|
244
|
+
AssessmentId?: string | undefined;
|
|
245
|
+
DirectoryId?: string | undefined;
|
|
246
|
+
DnsName?: string | undefined;
|
|
247
|
+
StartTime?: Date | undefined;
|
|
248
|
+
LastUpdateDateTime?: Date | undefined;
|
|
249
|
+
Status?: string | undefined;
|
|
250
|
+
CustomerDnsIps?: string[] | undefined;
|
|
251
|
+
ReportType?: string | undefined;
|
|
252
|
+
}
|
|
194
253
|
export interface Attribute {
|
|
195
254
|
Name?: string | undefined;
|
|
196
255
|
Value?: string | undefined;
|
|
@@ -393,6 +452,14 @@ export interface CreateDirectoryRequest {
|
|
|
393
452
|
export interface CreateDirectoryResult {
|
|
394
453
|
DirectoryId?: string | undefined;
|
|
395
454
|
}
|
|
455
|
+
export interface CreateHybridADRequest {
|
|
456
|
+
SecretArn: string | undefined;
|
|
457
|
+
AssessmentId: string | undefined;
|
|
458
|
+
Tags?: Tag[] | undefined;
|
|
459
|
+
}
|
|
460
|
+
export interface CreateHybridADResult {
|
|
461
|
+
DirectoryId?: string | undefined;
|
|
462
|
+
}
|
|
396
463
|
export interface CreateLogSubscriptionRequest {
|
|
397
464
|
DirectoryId: string | undefined;
|
|
398
465
|
LogGroupName: string | undefined;
|
|
@@ -482,6 +549,12 @@ export declare const DataAccessStatus: {
|
|
|
482
549
|
};
|
|
483
550
|
export type DataAccessStatus =
|
|
484
551
|
(typeof DataAccessStatus)[keyof typeof DataAccessStatus];
|
|
552
|
+
export interface DeleteADAssessmentRequest {
|
|
553
|
+
AssessmentId: string | undefined;
|
|
554
|
+
}
|
|
555
|
+
export interface DeleteADAssessmentResult {
|
|
556
|
+
AssessmentId?: string | undefined;
|
|
557
|
+
}
|
|
485
558
|
export interface DeleteConditionalForwarderRequest {
|
|
486
559
|
DirectoryId: string | undefined;
|
|
487
560
|
RemoteDomainName: string | undefined;
|
|
@@ -520,6 +593,13 @@ export interface DeregisterEventTopicRequest {
|
|
|
520
593
|
TopicName: string | undefined;
|
|
521
594
|
}
|
|
522
595
|
export interface DeregisterEventTopicResult {}
|
|
596
|
+
export interface DescribeADAssessmentRequest {
|
|
597
|
+
AssessmentId: string | undefined;
|
|
598
|
+
}
|
|
599
|
+
export interface DescribeADAssessmentResult {
|
|
600
|
+
Assessment?: Assessment | undefined;
|
|
601
|
+
AssessmentReports?: AssessmentReport[] | undefined;
|
|
602
|
+
}
|
|
523
603
|
export interface DescribeCertificateRequest {
|
|
524
604
|
DirectoryId: string | undefined;
|
|
525
605
|
CertificateId: string | undefined;
|
|
@@ -559,6 +639,10 @@ export interface DirectoryConnectSettingsDescription {
|
|
|
559
639
|
AvailabilityZones?: string[] | undefined;
|
|
560
640
|
ConnectIps?: string[] | undefined;
|
|
561
641
|
}
|
|
642
|
+
export interface HybridSettingsDescription {
|
|
643
|
+
SelfManagedDnsIpAddrs?: string[] | undefined;
|
|
644
|
+
SelfManagedInstanceIds?: string[] | undefined;
|
|
645
|
+
}
|
|
562
646
|
export declare const OSVersion: {
|
|
563
647
|
readonly VERSION_2012: "SERVER_2012";
|
|
564
648
|
readonly VERSION_2019: "SERVER_2019";
|
|
@@ -656,6 +740,7 @@ export interface DirectoryDescription {
|
|
|
656
740
|
OwnerDirectoryDescription?: OwnerDirectoryDescription | undefined;
|
|
657
741
|
RegionsInfo?: RegionsInfo | undefined;
|
|
658
742
|
OsVersion?: OSVersion | undefined;
|
|
743
|
+
HybridSettings?: HybridSettingsDescription | undefined;
|
|
659
744
|
}
|
|
660
745
|
export interface DescribeDirectoriesResult {
|
|
661
746
|
DirectoryDescriptions?: DirectoryDescription[] | undefined;
|
|
@@ -731,6 +816,45 @@ export interface EventTopic {
|
|
|
731
816
|
export interface DescribeEventTopicsResult {
|
|
732
817
|
EventTopics?: EventTopic[] | undefined;
|
|
733
818
|
}
|
|
819
|
+
export declare const HybridUpdateType: {
|
|
820
|
+
readonly HYBRID_ADMINISTRATOR_ACCOUNT: "HybridAdministratorAccount";
|
|
821
|
+
readonly SELF_MANAGED_INSTANCES: "SelfManagedInstances";
|
|
822
|
+
};
|
|
823
|
+
export type HybridUpdateType =
|
|
824
|
+
(typeof HybridUpdateType)[keyof typeof HybridUpdateType];
|
|
825
|
+
export interface DescribeHybridADUpdateRequest {
|
|
826
|
+
DirectoryId: string | undefined;
|
|
827
|
+
UpdateType?: HybridUpdateType | undefined;
|
|
828
|
+
NextToken?: string | undefined;
|
|
829
|
+
}
|
|
830
|
+
export interface HybridUpdateValue {
|
|
831
|
+
InstanceIds?: string[] | undefined;
|
|
832
|
+
DnsIps?: string[] | undefined;
|
|
833
|
+
}
|
|
834
|
+
export declare const UpdateStatus: {
|
|
835
|
+
readonly UPDATED: "Updated";
|
|
836
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
837
|
+
readonly UPDATING: "Updating";
|
|
838
|
+
};
|
|
839
|
+
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
840
|
+
export interface HybridUpdateInfoEntry {
|
|
841
|
+
Status?: UpdateStatus | undefined;
|
|
842
|
+
StatusReason?: string | undefined;
|
|
843
|
+
InitiatedBy?: string | undefined;
|
|
844
|
+
NewValue?: HybridUpdateValue | undefined;
|
|
845
|
+
PreviousValue?: HybridUpdateValue | undefined;
|
|
846
|
+
StartTime?: Date | undefined;
|
|
847
|
+
LastUpdatedDateTime?: Date | undefined;
|
|
848
|
+
AssessmentId?: string | undefined;
|
|
849
|
+
}
|
|
850
|
+
export interface HybridUpdateActivities {
|
|
851
|
+
SelfManagedInstances?: HybridUpdateInfoEntry[] | undefined;
|
|
852
|
+
HybridAdministratorAccount?: HybridUpdateInfoEntry[] | undefined;
|
|
853
|
+
}
|
|
854
|
+
export interface DescribeHybridADUpdateResult {
|
|
855
|
+
UpdateActivities?: HybridUpdateActivities | undefined;
|
|
856
|
+
NextToken?: string | undefined;
|
|
857
|
+
}
|
|
734
858
|
export declare const LDAPSType: {
|
|
735
859
|
readonly CLIENT: "Client";
|
|
736
860
|
};
|
|
@@ -909,12 +1033,6 @@ export interface OSUpdateSettings {
|
|
|
909
1033
|
export interface UpdateValue {
|
|
910
1034
|
OSUpdateSettings?: OSUpdateSettings | undefined;
|
|
911
1035
|
}
|
|
912
|
-
export declare const UpdateStatus: {
|
|
913
|
-
readonly UPDATED: "Updated";
|
|
914
|
-
readonly UPDATE_FAILED: "UpdateFailed";
|
|
915
|
-
readonly UPDATING: "Updating";
|
|
916
|
-
};
|
|
917
|
-
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
918
1036
|
export interface UpdateInfoEntry {
|
|
919
1037
|
Region?: string | undefined;
|
|
920
1038
|
Status?: UpdateStatus | undefined;
|
|
@@ -1058,6 +1176,15 @@ export interface SnapshotLimits {
|
|
|
1058
1176
|
export interface GetSnapshotLimitsResult {
|
|
1059
1177
|
SnapshotLimits?: SnapshotLimits | undefined;
|
|
1060
1178
|
}
|
|
1179
|
+
export interface ListADAssessmentsRequest {
|
|
1180
|
+
DirectoryId?: string | undefined;
|
|
1181
|
+
NextToken?: string | undefined;
|
|
1182
|
+
Limit?: number | undefined;
|
|
1183
|
+
}
|
|
1184
|
+
export interface ListADAssessmentsResult {
|
|
1185
|
+
Assessments?: AssessmentSummary[] | undefined;
|
|
1186
|
+
NextToken?: string | undefined;
|
|
1187
|
+
}
|
|
1061
1188
|
export interface ListCertificatesRequest {
|
|
1062
1189
|
DirectoryId: string | undefined;
|
|
1063
1190
|
NextToken?: string | undefined;
|
|
@@ -1263,6 +1390,13 @@ export declare class ShareLimitExceededException extends __BaseException {
|
|
|
1263
1390
|
opts: __ExceptionOptionType<ShareLimitExceededException, __BaseException>
|
|
1264
1391
|
);
|
|
1265
1392
|
}
|
|
1393
|
+
export interface StartADAssessmentRequest {
|
|
1394
|
+
AssessmentConfiguration?: AssessmentConfiguration | undefined;
|
|
1395
|
+
DirectoryId?: string | undefined;
|
|
1396
|
+
}
|
|
1397
|
+
export interface StartADAssessmentResult {
|
|
1398
|
+
AssessmentId?: string | undefined;
|
|
1399
|
+
}
|
|
1266
1400
|
export interface StartSchemaExtensionRequest {
|
|
1267
1401
|
DirectoryId: string | undefined;
|
|
1268
1402
|
CreateSnapshotBeforeSchemaExtension: boolean | undefined;
|
|
@@ -1296,6 +1430,24 @@ export interface UpdateDirectorySetupRequest {
|
|
|
1296
1430
|
CreateSnapshotBeforeUpdate?: boolean | undefined;
|
|
1297
1431
|
}
|
|
1298
1432
|
export interface UpdateDirectorySetupResult {}
|
|
1433
|
+
export interface HybridAdministratorAccountUpdate {
|
|
1434
|
+
SecretArn: string | undefined;
|
|
1435
|
+
}
|
|
1436
|
+
export interface HybridCustomerInstancesSettings {
|
|
1437
|
+
CustomerDnsIps: string[] | undefined;
|
|
1438
|
+
InstanceIds: string[] | undefined;
|
|
1439
|
+
}
|
|
1440
|
+
export interface UpdateHybridADRequest {
|
|
1441
|
+
DirectoryId: string | undefined;
|
|
1442
|
+
HybridAdministratorAccountUpdate?:
|
|
1443
|
+
| HybridAdministratorAccountUpdate
|
|
1444
|
+
| undefined;
|
|
1445
|
+
SelfManagedInstancesSettings?: HybridCustomerInstancesSettings | undefined;
|
|
1446
|
+
}
|
|
1447
|
+
export interface UpdateHybridADResult {
|
|
1448
|
+
DirectoryId?: string | undefined;
|
|
1449
|
+
AssessmentId?: string | undefined;
|
|
1450
|
+
}
|
|
1299
1451
|
export declare class DomainControllerLimitExceededException extends __BaseException {
|
|
1300
1452
|
readonly name: "DomainControllerLimitExceededException";
|
|
1301
1453
|
readonly $fault: "client";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListADAssessmentsCommandInput,
|
|
4
|
+
ListADAssessmentsCommandOutput,
|
|
5
|
+
} from "../commands/ListADAssessmentsCommand";
|
|
6
|
+
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListADAssessments: (
|
|
8
|
+
config: DirectoryServicePaginationConfiguration,
|
|
9
|
+
input: ListADAssessmentsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListADAssessmentsCommandOutput>;
|
|
@@ -8,6 +8,7 @@ export * from "./DescribeSnapshotsPaginator";
|
|
|
8
8
|
export * from "./DescribeTrustsPaginator";
|
|
9
9
|
export * from "./DescribeUpdateDirectoryPaginator";
|
|
10
10
|
export * from "./Interfaces";
|
|
11
|
+
export * from "./ListADAssessmentsPaginator";
|
|
11
12
|
export * from "./ListCertificatesPaginator";
|
|
12
13
|
export * from "./ListIpRoutesPaginator";
|
|
13
14
|
export * from "./ListLogSubscriptionsPaginator";
|