@aws-sdk/client-directory-service 3.855.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,105 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient";
|
|
4
|
+
import { ListADAssessmentsRequest, ListADAssessmentsResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListADAssessmentsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListADAssessmentsCommandInput extends ListADAssessmentsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListADAssessmentsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListADAssessmentsCommandOutput extends ListADAssessmentsResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListADAssessmentsCommand_base: {
|
|
25
|
+
new (input: ListADAssessmentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListADAssessmentsCommandInput, ListADAssessmentsCommandOutput, DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListADAssessmentsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListADAssessmentsCommandInput, ListADAssessmentsCommandOutput, DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Retrieves a list of directory assessments for the specified directory or all
|
|
31
|
+
* assessments in your account. Use this operation to monitor assessment status and manage
|
|
32
|
+
* multiple assessments.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { DirectoryServiceClient, ListADAssessmentsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
37
|
+
* // const { DirectoryServiceClient, ListADAssessmentsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
38
|
+
* const client = new DirectoryServiceClient(config);
|
|
39
|
+
* const input = { // ListADAssessmentsRequest
|
|
40
|
+
* DirectoryId: "STRING_VALUE",
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* Limit: Number("int"),
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListADAssessmentsCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListADAssessmentsResult
|
|
47
|
+
* // Assessments: [ // Assessments
|
|
48
|
+
* // { // AssessmentSummary
|
|
49
|
+
* // AssessmentId: "STRING_VALUE",
|
|
50
|
+
* // DirectoryId: "STRING_VALUE",
|
|
51
|
+
* // DnsName: "STRING_VALUE",
|
|
52
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // LastUpdateDateTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // Status: "STRING_VALUE",
|
|
55
|
+
* // CustomerDnsIps: [ // CustomerDnsIps
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // ReportType: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // NextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListADAssessmentsCommandInput - {@link ListADAssessmentsCommandInput}
|
|
67
|
+
* @returns {@link ListADAssessmentsCommandOutput}
|
|
68
|
+
* @see {@link ListADAssessmentsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListADAssessmentsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link DirectoryServiceClientResolvedConfig | config} for DirectoryServiceClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ClientException} (client fault)
|
|
73
|
+
* <p>A client exception has occurred.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link DirectoryDoesNotExistException} (client fault)
|
|
76
|
+
* <p>The specified directory does not exist in the system.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
79
|
+
* <p>One or more parameters are not valid.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ServiceException} (server fault)
|
|
82
|
+
* <p>An exception has occurred in Directory Service.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link UnsupportedOperationException} (client fault)
|
|
85
|
+
* <p>The operation is not supported.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link DirectoryServiceServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from DirectoryService service.</p>
|
|
89
|
+
*
|
|
90
|
+
*
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export declare class ListADAssessmentsCommand extends ListADAssessmentsCommand_base {
|
|
94
|
+
/** @internal type navigation helper, not in runtime. */
|
|
95
|
+
protected static __types: {
|
|
96
|
+
api: {
|
|
97
|
+
input: ListADAssessmentsRequest;
|
|
98
|
+
output: ListADAssessmentsResult;
|
|
99
|
+
};
|
|
100
|
+
sdk: {
|
|
101
|
+
input: ListADAssessmentsCommandInput;
|
|
102
|
+
output: ListADAssessmentsCommandOutput;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient";
|
|
4
|
+
import { StartADAssessmentRequest, StartADAssessmentResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StartADAssessmentCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartADAssessmentCommandInput extends StartADAssessmentRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartADAssessmentCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartADAssessmentCommandOutput extends StartADAssessmentResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StartADAssessmentCommand_base: {
|
|
25
|
+
new (input: StartADAssessmentCommandInput): import("@smithy/smithy-client").CommandImpl<StartADAssessmentCommandInput, StartADAssessmentCommandOutput, DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [StartADAssessmentCommandInput]): import("@smithy/smithy-client").CommandImpl<StartADAssessmentCommandInput, StartADAssessmentCommandOutput, DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Initiates a directory assessment to validate your self-managed AD environment for
|
|
31
|
+
* hybrid domain join. The assessment checks compatibility and connectivity of the
|
|
32
|
+
* self-managed AD environment.</p>
|
|
33
|
+
* <p>A directory assessment is automatically created when you create a hybrid directory.
|
|
34
|
+
* There are two types of assessments: <code>CUSTOMER</code> and <code>SYSTEM</code>. Your
|
|
35
|
+
* Amazon Web Services account has a limit of 100 <code>CUSTOMER</code> directory assessments.</p>
|
|
36
|
+
* <p>The assessment process typically takes 30 minutes or more to complete. The assessment
|
|
37
|
+
* process is asynchronous and you can monitor it with
|
|
38
|
+
* <code>DescribeADAssessment</code>.</p>
|
|
39
|
+
* <p>The <code>InstanceIds</code> must have a one-to-one correspondence with
|
|
40
|
+
* <code>CustomerDnsIps</code>, meaning that if the IP address for instance i-10243410
|
|
41
|
+
* is 10.24.34.100 and the IP address for instance i-10243420 is 10.24.34.200, then the
|
|
42
|
+
* input arrays must maintain the same order relationship, either [10.24.34.100,
|
|
43
|
+
* 10.24.34.200] paired with [i-10243410, i-10243420] or [10.24.34.200, 10.24.34.100]
|
|
44
|
+
* paired with [i-10243420, i-10243410].</p>
|
|
45
|
+
* <p>Note: You must provide exactly one <code>DirectoryId</code> or
|
|
46
|
+
* <code>AssessmentConfiguration</code>.</p>
|
|
47
|
+
* @example
|
|
48
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
49
|
+
* ```javascript
|
|
50
|
+
* import { DirectoryServiceClient, StartADAssessmentCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
51
|
+
* // const { DirectoryServiceClient, StartADAssessmentCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
52
|
+
* const client = new DirectoryServiceClient(config);
|
|
53
|
+
* const input = { // StartADAssessmentRequest
|
|
54
|
+
* AssessmentConfiguration: { // AssessmentConfiguration
|
|
55
|
+
* CustomerDnsIps: [ // CustomerDnsIps // required
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* DnsName: "STRING_VALUE", // required
|
|
59
|
+
* VpcSettings: { // DirectoryVpcSettings
|
|
60
|
+
* VpcId: "STRING_VALUE", // required
|
|
61
|
+
* SubnetIds: [ // SubnetIds // required
|
|
62
|
+
* "STRING_VALUE",
|
|
63
|
+
* ],
|
|
64
|
+
* },
|
|
65
|
+
* InstanceIds: [ // AssessmentInstanceIds // required
|
|
66
|
+
* "STRING_VALUE",
|
|
67
|
+
* ],
|
|
68
|
+
* SecurityGroupIds: [ // SecurityGroupIds
|
|
69
|
+
* "STRING_VALUE",
|
|
70
|
+
* ],
|
|
71
|
+
* },
|
|
72
|
+
* DirectoryId: "STRING_VALUE",
|
|
73
|
+
* };
|
|
74
|
+
* const command = new StartADAssessmentCommand(input);
|
|
75
|
+
* const response = await client.send(command);
|
|
76
|
+
* // { // StartADAssessmentResult
|
|
77
|
+
* // AssessmentId: "STRING_VALUE",
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* @param StartADAssessmentCommandInput - {@link StartADAssessmentCommandInput}
|
|
83
|
+
* @returns {@link StartADAssessmentCommandOutput}
|
|
84
|
+
* @see {@link StartADAssessmentCommandInput} for command's `input` shape.
|
|
85
|
+
* @see {@link StartADAssessmentCommandOutput} for command's `response` shape.
|
|
86
|
+
* @see {@link DirectoryServiceClientResolvedConfig | config} for DirectoryServiceClient's `config` shape.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ADAssessmentLimitExceededException} (client fault)
|
|
89
|
+
* <p>A directory assessment is automatically created when you create a hybrid directory.
|
|
90
|
+
* There are two types of assessments: <code>CUSTOMER</code> and <code>SYSTEM</code>. Your
|
|
91
|
+
* Amazon Web Services account has a limit of 100 <code>CUSTOMER</code> directory assessments.</p>
|
|
92
|
+
* <p>If you attempt to create a hybrid directory; and you already have 100
|
|
93
|
+
* <code>CUSTOMER</code> directory assessments;, you will encounter an error. Delete
|
|
94
|
+
* assessments to free up capacity before trying again.</p>
|
|
95
|
+
* <p>You can request an increase to your <code>CUSTOMER</code> directory assessment quota
|
|
96
|
+
* by contacting customer support or delete existing CUSTOMER directory assessments; to
|
|
97
|
+
* free up capacity.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ClientException} (client fault)
|
|
100
|
+
* <p>A client exception has occurred.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link DirectoryDoesNotExistException} (client fault)
|
|
103
|
+
* <p>The specified directory does not exist in the system.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
106
|
+
* <p>One or more parameters are not valid.</p>
|
|
107
|
+
*
|
|
108
|
+
* @throws {@link ServiceException} (server fault)
|
|
109
|
+
* <p>An exception has occurred in Directory Service.</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link UnsupportedOperationException} (client fault)
|
|
112
|
+
* <p>The operation is not supported.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link DirectoryServiceServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from DirectoryService service.</p>
|
|
116
|
+
*
|
|
117
|
+
*
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export declare class StartADAssessmentCommand extends StartADAssessmentCommand_base {
|
|
121
|
+
/** @internal type navigation helper, not in runtime. */
|
|
122
|
+
protected static __types: {
|
|
123
|
+
api: {
|
|
124
|
+
input: StartADAssessmentRequest;
|
|
125
|
+
output: StartADAssessmentResult;
|
|
126
|
+
};
|
|
127
|
+
sdk: {
|
|
128
|
+
input: StartADAssessmentCommandInput;
|
|
129
|
+
output: StartADAssessmentCommandOutput;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient";
|
|
4
|
+
import { UpdateHybridADRequest, UpdateHybridADResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateHybridADCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateHybridADCommandInput extends UpdateHybridADRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateHybridADCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateHybridADCommandOutput extends UpdateHybridADResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateHybridADCommand_base: {
|
|
25
|
+
new (input: UpdateHybridADCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateHybridADCommandInput, UpdateHybridADCommandOutput, DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateHybridADCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateHybridADCommandInput, UpdateHybridADCommandOutput, DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates the configuration of an existing hybrid directory. You can recover hybrid
|
|
31
|
+
* directory administrator account or modify self-managed instance settings.</p>
|
|
32
|
+
* <p>Updates are applied asynchronously. Use <a>DescribeHybridADUpdate</a> to
|
|
33
|
+
* monitor the progress of configuration changes.</p>
|
|
34
|
+
* <p>The <code>InstanceIds</code> must have a one-to-one correspondence with
|
|
35
|
+
* <code>CustomerDnsIps</code>, meaning that if the IP address for instance i-10243410
|
|
36
|
+
* is 10.24.34.100 and the IP address for instance i-10243420 is 10.24.34.200, then the
|
|
37
|
+
* input arrays must maintain the same order relationship, either [10.24.34.100,
|
|
38
|
+
* 10.24.34.200] paired with [i-10243410, i-10243420] or [10.24.34.200, 10.24.34.100]
|
|
39
|
+
* paired with [i-10243420, i-10243410].</p>
|
|
40
|
+
* <note>
|
|
41
|
+
* <p>You must provide at least one update to <a>UpdateHybridADRequest$HybridAdministratorAccountUpdate</a> or <a>UpdateHybridADRequest$SelfManagedInstancesSettings</a>.</p>
|
|
42
|
+
* </note>
|
|
43
|
+
* @example
|
|
44
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
45
|
+
* ```javascript
|
|
46
|
+
* import { DirectoryServiceClient, UpdateHybridADCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
47
|
+
* // const { DirectoryServiceClient, UpdateHybridADCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
48
|
+
* const client = new DirectoryServiceClient(config);
|
|
49
|
+
* const input = { // UpdateHybridADRequest
|
|
50
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
51
|
+
* HybridAdministratorAccountUpdate: { // HybridAdministratorAccountUpdate
|
|
52
|
+
* SecretArn: "STRING_VALUE", // required
|
|
53
|
+
* },
|
|
54
|
+
* SelfManagedInstancesSettings: { // HybridCustomerInstancesSettings
|
|
55
|
+
* CustomerDnsIps: [ // CustomerDnsIps // required
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* InstanceIds: [ // AssessmentInstanceIds // required
|
|
59
|
+
* "STRING_VALUE",
|
|
60
|
+
* ],
|
|
61
|
+
* },
|
|
62
|
+
* };
|
|
63
|
+
* const command = new UpdateHybridADCommand(input);
|
|
64
|
+
* const response = await client.send(command);
|
|
65
|
+
* // { // UpdateHybridADResult
|
|
66
|
+
* // DirectoryId: "STRING_VALUE",
|
|
67
|
+
* // AssessmentId: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
72
|
+
* @param UpdateHybridADCommandInput - {@link UpdateHybridADCommandInput}
|
|
73
|
+
* @returns {@link UpdateHybridADCommandOutput}
|
|
74
|
+
* @see {@link UpdateHybridADCommandInput} for command's `input` shape.
|
|
75
|
+
* @see {@link UpdateHybridADCommandOutput} for command's `response` shape.
|
|
76
|
+
* @see {@link DirectoryServiceClientResolvedConfig | config} for DirectoryServiceClient's `config` shape.
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ADAssessmentLimitExceededException} (client fault)
|
|
79
|
+
* <p>A directory assessment is automatically created when you create a hybrid directory.
|
|
80
|
+
* There are two types of assessments: <code>CUSTOMER</code> and <code>SYSTEM</code>. Your
|
|
81
|
+
* Amazon Web Services account has a limit of 100 <code>CUSTOMER</code> directory assessments.</p>
|
|
82
|
+
* <p>If you attempt to create a hybrid directory; and you already have 100
|
|
83
|
+
* <code>CUSTOMER</code> directory assessments;, you will encounter an error. Delete
|
|
84
|
+
* assessments to free up capacity before trying again.</p>
|
|
85
|
+
* <p>You can request an increase to your <code>CUSTOMER</code> directory assessment quota
|
|
86
|
+
* by contacting customer support or delete existing CUSTOMER directory assessments; to
|
|
87
|
+
* free up capacity.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ClientException} (client fault)
|
|
90
|
+
* <p>A client exception has occurred.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link DirectoryDoesNotExistException} (client fault)
|
|
93
|
+
* <p>The specified directory does not exist in the system.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
96
|
+
* <p>One or more parameters are not valid.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link ServiceException} (server fault)
|
|
99
|
+
* <p>An exception has occurred in Directory Service.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link UnsupportedOperationException} (client fault)
|
|
102
|
+
* <p>The operation is not supported.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link DirectoryServiceServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from DirectoryService service.</p>
|
|
106
|
+
*
|
|
107
|
+
*
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export declare class UpdateHybridADCommand extends UpdateHybridADCommand_base {
|
|
111
|
+
/** @internal type navigation helper, not in runtime. */
|
|
112
|
+
protected static __types: {
|
|
113
|
+
api: {
|
|
114
|
+
input: UpdateHybridADRequest;
|
|
115
|
+
output: UpdateHybridADResult;
|
|
116
|
+
};
|
|
117
|
+
sdk: {
|
|
118
|
+
input: UpdateHybridADCommandInput;
|
|
119
|
+
output: UpdateHybridADCommandOutput;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
}
|
|
@@ -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";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -23,5 +23,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
23
23
|
export type { DirectoryServiceExtensionConfiguration } from "./extensionConfiguration";
|
|
24
24
|
export * from "./commands";
|
|
25
25
|
export * from "./pagination";
|
|
26
|
+
export * from "./waiters";
|
|
26
27
|
export * from "./models";
|
|
27
28
|
export { DirectoryServiceServiceException } from "./models/DirectoryServiceServiceException";
|