@aws-sdk/client-directory-service 3.315.0 → 3.316.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.
|
@@ -67,622 +67,426 @@ import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "./comma
|
|
|
67
67
|
import { UpdateTrustCommandInput, UpdateTrustCommandOutput } from "./commands/UpdateTrustCommand";
|
|
68
68
|
import { VerifyTrustCommandInput, VerifyTrustCommandOutput } from "./commands/VerifyTrustCommand";
|
|
69
69
|
import { DirectoryServiceClient } from "./DirectoryServiceClient";
|
|
70
|
-
|
|
71
|
-
* @public
|
|
72
|
-
* <fullname>Directory Service</fullname>
|
|
73
|
-
* <p>Directory Service is a web service that makes it easy for you to setup and run directories in the
|
|
74
|
-
* Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active
|
|
75
|
-
* Directory. This guide provides detailed information about Directory Service operations, data types,
|
|
76
|
-
* parameters, and errors. For information about Directory Services features, see <a href="https://aws.amazon.com/directoryservice/">Directory Service</a> and the <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html">Directory Service
|
|
77
|
-
* Administration Guide</a>.</p>
|
|
78
|
-
* <note>
|
|
79
|
-
* <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various
|
|
80
|
-
* programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs
|
|
81
|
-
* provide a convenient way to create programmatic access to Directory Service and other Amazon Web Services
|
|
82
|
-
* services. For more information about the Amazon Web Services SDKs, including how to download and
|
|
83
|
-
* install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web
|
|
84
|
-
* Services</a>.</p>
|
|
85
|
-
* </note>
|
|
86
|
-
*/
|
|
87
|
-
export declare class DirectoryService extends DirectoryServiceClient {
|
|
70
|
+
export interface DirectoryService {
|
|
88
71
|
/**
|
|
89
|
-
* @
|
|
90
|
-
* <p>Accepts a directory sharing request that was sent from the directory owner account.</p>
|
|
72
|
+
* @see {@link AcceptSharedDirectoryCommand}
|
|
91
73
|
*/
|
|
92
74
|
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<AcceptSharedDirectoryCommandOutput>;
|
|
93
75
|
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, cb: (err: any, data?: AcceptSharedDirectoryCommandOutput) => void): void;
|
|
94
76
|
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptSharedDirectoryCommandOutput) => void): void;
|
|
95
77
|
/**
|
|
96
|
-
* @
|
|
97
|
-
* <p>If the DNS server for your self-managed domain uses a publicly addressable IP address,
|
|
98
|
-
* you must add a CIDR address block to correctly route traffic to and from your Microsoft AD
|
|
99
|
-
* on Amazon Web Services. <i>AddIpRoutes</i> adds this address block. You can
|
|
100
|
-
* also use <i>AddIpRoutes</i> to facilitate routing traffic that uses public IP
|
|
101
|
-
* ranges from your Microsoft AD on Amazon Web Services to a peer VPC. </p>
|
|
102
|
-
* <p>Before you call <i>AddIpRoutes</i>, ensure that all of the required
|
|
103
|
-
* permissions have been explicitly granted through a policy. For details about what
|
|
104
|
-
* permissions are required to run the <i>AddIpRoutes</i> operation, see <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html">Directory Service API Permissions: Actions, Resources, and Conditions Reference</a>.</p>
|
|
78
|
+
* @see {@link AddIpRoutesCommand}
|
|
105
79
|
*/
|
|
106
80
|
addIpRoutes(args: AddIpRoutesCommandInput, options?: __HttpHandlerOptions): Promise<AddIpRoutesCommandOutput>;
|
|
107
81
|
addIpRoutes(args: AddIpRoutesCommandInput, cb: (err: any, data?: AddIpRoutesCommandOutput) => void): void;
|
|
108
82
|
addIpRoutes(args: AddIpRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddIpRoutesCommandOutput) => void): void;
|
|
109
83
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Adds two domain controllers in the specified Region for the specified directory.</p>
|
|
84
|
+
* @see {@link AddRegionCommand}
|
|
112
85
|
*/
|
|
113
86
|
addRegion(args: AddRegionCommandInput, options?: __HttpHandlerOptions): Promise<AddRegionCommandOutput>;
|
|
114
87
|
addRegion(args: AddRegionCommandInput, cb: (err: any, data?: AddRegionCommandOutput) => void): void;
|
|
115
88
|
addRegion(args: AddRegionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddRegionCommandOutput) => void): void;
|
|
116
89
|
/**
|
|
117
|
-
* @
|
|
118
|
-
* <p>Adds or overwrites one or more tags for the specified directory. Each directory can
|
|
119
|
-
* have a maximum of 50 tags. Each tag consists of a key and optional value. Tag keys must be
|
|
120
|
-
* unique to each resource.</p>
|
|
90
|
+
* @see {@link AddTagsToResourceCommand}
|
|
121
91
|
*/
|
|
122
92
|
addTagsToResource(args: AddTagsToResourceCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsToResourceCommandOutput>;
|
|
123
93
|
addTagsToResource(args: AddTagsToResourceCommandInput, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
124
94
|
addTagsToResource(args: AddTagsToResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
125
95
|
/**
|
|
126
|
-
* @
|
|
127
|
-
* <p>Cancels an in-progress schema extension to a Microsoft AD directory. Once a schema
|
|
128
|
-
* extension has started replicating to all domain controllers, the task can no longer be
|
|
129
|
-
* canceled. A schema extension can be canceled during any of the following states;
|
|
130
|
-
* <code>Initializing</code>, <code>CreatingSnapshot</code>, and
|
|
131
|
-
* <code>UpdatingSchema</code>.</p>
|
|
96
|
+
* @see {@link CancelSchemaExtensionCommand}
|
|
132
97
|
*/
|
|
133
98
|
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, options?: __HttpHandlerOptions): Promise<CancelSchemaExtensionCommandOutput>;
|
|
134
99
|
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, cb: (err: any, data?: CancelSchemaExtensionCommandOutput) => void): void;
|
|
135
100
|
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelSchemaExtensionCommandOutput) => void): void;
|
|
136
101
|
/**
|
|
137
|
-
* @
|
|
138
|
-
* <p>Creates an AD Connector to connect to a self-managed directory.</p>
|
|
139
|
-
* <p>Before you call <code>ConnectDirectory</code>, ensure that all of the required permissions
|
|
140
|
-
* have been explicitly granted through a policy. For details about what permissions are required
|
|
141
|
-
* to run the <code>ConnectDirectory</code> operation, see <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html">Directory Service API Permissions: Actions, Resources, and Conditions
|
|
142
|
-
* Reference</a>.</p>
|
|
102
|
+
* @see {@link ConnectDirectoryCommand}
|
|
143
103
|
*/
|
|
144
104
|
connectDirectory(args: ConnectDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<ConnectDirectoryCommandOutput>;
|
|
145
105
|
connectDirectory(args: ConnectDirectoryCommandInput, cb: (err: any, data?: ConnectDirectoryCommandOutput) => void): void;
|
|
146
106
|
connectDirectory(args: ConnectDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConnectDirectoryCommandOutput) => void): void;
|
|
147
107
|
/**
|
|
148
|
-
* @
|
|
149
|
-
* <p>Creates an alias for a directory and assigns the alias to the directory. The alias is used
|
|
150
|
-
* to construct the access URL for the directory, such as
|
|
151
|
-
* <code>http://<alias>.awsapps.com</code>.</p>
|
|
152
|
-
* <important>
|
|
153
|
-
* <p>After an alias has been created, it cannot be deleted or reused, so this operation should only be used when absolutely necessary.</p>
|
|
154
|
-
* </important>
|
|
108
|
+
* @see {@link CreateAliasCommand}
|
|
155
109
|
*/
|
|
156
110
|
createAlias(args: CreateAliasCommandInput, options?: __HttpHandlerOptions): Promise<CreateAliasCommandOutput>;
|
|
157
111
|
createAlias(args: CreateAliasCommandInput, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
|
|
158
112
|
createAlias(args: CreateAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
|
|
159
113
|
/**
|
|
160
|
-
* @
|
|
161
|
-
* <p>Creates an Active Directory computer object in the specified directory.</p>
|
|
114
|
+
* @see {@link CreateComputerCommand}
|
|
162
115
|
*/
|
|
163
116
|
createComputer(args: CreateComputerCommandInput, options?: __HttpHandlerOptions): Promise<CreateComputerCommandOutput>;
|
|
164
117
|
createComputer(args: CreateComputerCommandInput, cb: (err: any, data?: CreateComputerCommandOutput) => void): void;
|
|
165
118
|
createComputer(args: CreateComputerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComputerCommandOutput) => void): void;
|
|
166
119
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>Creates a conditional forwarder associated with your Amazon Web Services directory. Conditional
|
|
169
|
-
* forwarders are required in order to set up a trust relationship with another domain. The
|
|
170
|
-
* conditional forwarder points to the trusted domain.</p>
|
|
120
|
+
* @see {@link CreateConditionalForwarderCommand}
|
|
171
121
|
*/
|
|
172
122
|
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, options?: __HttpHandlerOptions): Promise<CreateConditionalForwarderCommandOutput>;
|
|
173
123
|
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, cb: (err: any, data?: CreateConditionalForwarderCommandOutput) => void): void;
|
|
174
124
|
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConditionalForwarderCommandOutput) => void): void;
|
|
175
125
|
/**
|
|
176
|
-
* @
|
|
177
|
-
* <p>Creates a Simple AD directory. For more information, see <a href="https://docs.aws.amazon.com/directoryservice/latest/admin-guide/directory_simple_ad.html">Simple Active Directory</a> in the <i>Directory Service Admin
|
|
178
|
-
* Guide</i>.</p>
|
|
179
|
-
* <p>Before you call <code>CreateDirectory</code>, ensure that all of the required permissions
|
|
180
|
-
* have been explicitly granted through a policy. For details about what permissions are required
|
|
181
|
-
* to run the <code>CreateDirectory</code> operation, see <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html">Directory Service API Permissions: Actions, Resources, and Conditions
|
|
182
|
-
* Reference</a>.</p>
|
|
126
|
+
* @see {@link CreateDirectoryCommand}
|
|
183
127
|
*/
|
|
184
128
|
createDirectory(args: CreateDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateDirectoryCommandOutput>;
|
|
185
129
|
createDirectory(args: CreateDirectoryCommandInput, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
|
|
186
130
|
createDirectory(args: CreateDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
|
|
187
131
|
/**
|
|
188
|
-
* @
|
|
189
|
-
* <p>Creates a subscription to forward real-time Directory Service domain controller security
|
|
190
|
-
* logs to the specified Amazon CloudWatch log group in your Amazon Web Services account.</p>
|
|
132
|
+
* @see {@link CreateLogSubscriptionCommand}
|
|
191
133
|
*/
|
|
192
134
|
createLogSubscription(args: CreateLogSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<CreateLogSubscriptionCommandOutput>;
|
|
193
135
|
createLogSubscription(args: CreateLogSubscriptionCommandInput, cb: (err: any, data?: CreateLogSubscriptionCommandOutput) => void): void;
|
|
194
136
|
createLogSubscription(args: CreateLogSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLogSubscriptionCommandOutput) => void): void;
|
|
195
137
|
/**
|
|
196
|
-
* @
|
|
197
|
-
* <p>Creates a Microsoft AD directory in the Amazon Web Services Cloud. For more information, see <a href="https://docs.aws.amazon.com/directoryservice/latest/admin-guide/directory_microsoft_ad.html">Managed Microsoft AD</a> in the <i>Directory Service Admin Guide</i>.</p>
|
|
198
|
-
* <p>Before you call <i>CreateMicrosoftAD</i>, ensure that all of the required
|
|
199
|
-
* permissions have been explicitly granted through a policy. For details about what permissions
|
|
200
|
-
* are required to run the <i>CreateMicrosoftAD</i> operation, see <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html">Directory Service API Permissions: Actions, Resources, and Conditions Reference</a>.</p>
|
|
138
|
+
* @see {@link CreateMicrosoftADCommand}
|
|
201
139
|
*/
|
|
202
140
|
createMicrosoftAD(args: CreateMicrosoftADCommandInput, options?: __HttpHandlerOptions): Promise<CreateMicrosoftADCommandOutput>;
|
|
203
141
|
createMicrosoftAD(args: CreateMicrosoftADCommandInput, cb: (err: any, data?: CreateMicrosoftADCommandOutput) => void): void;
|
|
204
142
|
createMicrosoftAD(args: CreateMicrosoftADCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMicrosoftADCommandOutput) => void): void;
|
|
205
143
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* <p>Creates a snapshot of a Simple AD or Microsoft AD directory in the Amazon Web Services cloud.</p>
|
|
208
|
-
* <note>
|
|
209
|
-
* <p>You cannot take snapshots of AD Connector directories.</p>
|
|
210
|
-
* </note>
|
|
144
|
+
* @see {@link CreateSnapshotCommand}
|
|
211
145
|
*/
|
|
212
146
|
createSnapshot(args: CreateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotCommandOutput>;
|
|
213
147
|
createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
214
148
|
createSnapshot(args: CreateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
215
149
|
/**
|
|
216
|
-
* @
|
|
217
|
-
* <p>Directory Service for Microsoft Active Directory allows you to configure trust relationships. For
|
|
218
|
-
* example, you can establish a trust between your Managed Microsoft AD directory, and your existing
|
|
219
|
-
* self-managed Microsoft Active Directory. This would allow you to provide users and groups
|
|
220
|
-
* access to resources in either domain, with a single set of credentials.</p>
|
|
221
|
-
* <p>This action initiates the creation of the Amazon Web Services side of a trust relationship between an
|
|
222
|
-
* Managed Microsoft AD directory and an external domain. You can create either a forest trust or an
|
|
223
|
-
* external trust.</p>
|
|
150
|
+
* @see {@link CreateTrustCommand}
|
|
224
151
|
*/
|
|
225
152
|
createTrust(args: CreateTrustCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrustCommandOutput>;
|
|
226
153
|
createTrust(args: CreateTrustCommandInput, cb: (err: any, data?: CreateTrustCommandOutput) => void): void;
|
|
227
154
|
createTrust(args: CreateTrustCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrustCommandOutput) => void): void;
|
|
228
155
|
/**
|
|
229
|
-
* @
|
|
230
|
-
* <p>Deletes a conditional forwarder that has been set up for your Amazon Web Services
|
|
231
|
-
* directory.</p>
|
|
156
|
+
* @see {@link DeleteConditionalForwarderCommand}
|
|
232
157
|
*/
|
|
233
158
|
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConditionalForwarderCommandOutput>;
|
|
234
159
|
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, cb: (err: any, data?: DeleteConditionalForwarderCommandOutput) => void): void;
|
|
235
160
|
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConditionalForwarderCommandOutput) => void): void;
|
|
236
161
|
/**
|
|
237
|
-
* @
|
|
238
|
-
* <p>Deletes an Directory Service directory.</p>
|
|
239
|
-
* <p>Before you call <code>DeleteDirectory</code>, ensure that all of the required permissions
|
|
240
|
-
* have been explicitly granted through a policy. For details about what permissions are required
|
|
241
|
-
* to run the <code>DeleteDirectory</code> operation, see <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html">Directory Service API Permissions: Actions, Resources, and Conditions
|
|
242
|
-
* Reference</a>.</p>
|
|
162
|
+
* @see {@link DeleteDirectoryCommand}
|
|
243
163
|
*/
|
|
244
164
|
deleteDirectory(args: DeleteDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDirectoryCommandOutput>;
|
|
245
165
|
deleteDirectory(args: DeleteDirectoryCommandInput, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
|
|
246
166
|
deleteDirectory(args: DeleteDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
|
|
247
167
|
/**
|
|
248
|
-
* @
|
|
249
|
-
* <p>Deletes the specified log subscription.</p>
|
|
168
|
+
* @see {@link DeleteLogSubscriptionCommand}
|
|
250
169
|
*/
|
|
251
170
|
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLogSubscriptionCommandOutput>;
|
|
252
171
|
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, cb: (err: any, data?: DeleteLogSubscriptionCommandOutput) => void): void;
|
|
253
172
|
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLogSubscriptionCommandOutput) => void): void;
|
|
254
173
|
/**
|
|
255
|
-
* @
|
|
256
|
-
* <p>Deletes a directory snapshot.</p>
|
|
174
|
+
* @see {@link DeleteSnapshotCommand}
|
|
257
175
|
*/
|
|
258
176
|
deleteSnapshot(args: DeleteSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotCommandOutput>;
|
|
259
177
|
deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
260
178
|
deleteSnapshot(args: DeleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
261
179
|
/**
|
|
262
|
-
* @
|
|
263
|
-
* <p>Deletes an existing trust relationship between your Managed Microsoft AD directory and an external
|
|
264
|
-
* domain.</p>
|
|
180
|
+
* @see {@link DeleteTrustCommand}
|
|
265
181
|
*/
|
|
266
182
|
deleteTrust(args: DeleteTrustCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrustCommandOutput>;
|
|
267
183
|
deleteTrust(args: DeleteTrustCommandInput, cb: (err: any, data?: DeleteTrustCommandOutput) => void): void;
|
|
268
184
|
deleteTrust(args: DeleteTrustCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrustCommandOutput) => void): void;
|
|
269
185
|
/**
|
|
270
|
-
* @
|
|
271
|
-
* <p>Deletes from the system the certificate that was registered for secure LDAP or client certificate authentication.</p>
|
|
186
|
+
* @see {@link DeregisterCertificateCommand}
|
|
272
187
|
*/
|
|
273
188
|
deregisterCertificate(args: DeregisterCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterCertificateCommandOutput>;
|
|
274
189
|
deregisterCertificate(args: DeregisterCertificateCommandInput, cb: (err: any, data?: DeregisterCertificateCommandOutput) => void): void;
|
|
275
190
|
deregisterCertificate(args: DeregisterCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterCertificateCommandOutput) => void): void;
|
|
276
191
|
/**
|
|
277
|
-
* @
|
|
278
|
-
* <p>Removes the specified directory as a publisher to the specified Amazon SNS topic.</p>
|
|
192
|
+
* @see {@link DeregisterEventTopicCommand}
|
|
279
193
|
*/
|
|
280
194
|
deregisterEventTopic(args: DeregisterEventTopicCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterEventTopicCommandOutput>;
|
|
281
195
|
deregisterEventTopic(args: DeregisterEventTopicCommandInput, cb: (err: any, data?: DeregisterEventTopicCommandOutput) => void): void;
|
|
282
196
|
deregisterEventTopic(args: DeregisterEventTopicCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterEventTopicCommandOutput) => void): void;
|
|
283
197
|
/**
|
|
284
|
-
* @
|
|
285
|
-
* <p>Displays information about the certificate registered for secure LDAP or client certificate authentication.</p>
|
|
198
|
+
* @see {@link DescribeCertificateCommand}
|
|
286
199
|
*/
|
|
287
200
|
describeCertificate(args: DescribeCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificateCommandOutput>;
|
|
288
201
|
describeCertificate(args: DescribeCertificateCommandInput, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
|
|
289
202
|
describeCertificate(args: DescribeCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
|
|
290
203
|
/**
|
|
291
|
-
* @
|
|
292
|
-
* <p>Retrieves information about the type of client authentication for the specified directory, if the type is specified. If no type is specified, information about all client authentication types that are supported for the specified directory is retrieved. Currently, only <code>SmartCard</code> is supported.
|
|
293
|
-
* </p>
|
|
204
|
+
* @see {@link DescribeClientAuthenticationSettingsCommand}
|
|
294
205
|
*/
|
|
295
206
|
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientAuthenticationSettingsCommandOutput>;
|
|
296
207
|
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, cb: (err: any, data?: DescribeClientAuthenticationSettingsCommandOutput) => void): void;
|
|
297
208
|
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientAuthenticationSettingsCommandOutput) => void): void;
|
|
298
209
|
/**
|
|
299
|
-
* @
|
|
300
|
-
* <p>Obtains information about the conditional forwarders for this account.</p>
|
|
301
|
-
* <p>If no input parameters are provided for RemoteDomainNames, this request describes all
|
|
302
|
-
* conditional forwarders for the specified directory ID.</p>
|
|
210
|
+
* @see {@link DescribeConditionalForwardersCommand}
|
|
303
211
|
*/
|
|
304
212
|
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConditionalForwardersCommandOutput>;
|
|
305
213
|
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, cb: (err: any, data?: DescribeConditionalForwardersCommandOutput) => void): void;
|
|
306
214
|
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConditionalForwardersCommandOutput) => void): void;
|
|
307
215
|
/**
|
|
308
|
-
* @
|
|
309
|
-
* <p>Obtains information about the directories that belong to this account.</p>
|
|
310
|
-
* <p>You can retrieve information about specific directories by passing the directory
|
|
311
|
-
* identifiers in the <code>DirectoryIds</code> parameter. Otherwise, all directories that belong
|
|
312
|
-
* to the current account are returned.</p>
|
|
313
|
-
* <p>This operation supports pagination with the use of the <code>NextToken</code> request and
|
|
314
|
-
* response parameters. If more results are available, the
|
|
315
|
-
* <code>DescribeDirectoriesResult.NextToken</code> member contains a token that you pass in
|
|
316
|
-
* the next call to <a>DescribeDirectories</a> to retrieve the next set of
|
|
317
|
-
* items.</p>
|
|
318
|
-
* <p>You can also specify a maximum number of return results with the <code>Limit</code>
|
|
319
|
-
* parameter.</p>
|
|
216
|
+
* @see {@link DescribeDirectoriesCommand}
|
|
320
217
|
*/
|
|
321
218
|
describeDirectories(args: DescribeDirectoriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDirectoriesCommandOutput>;
|
|
322
219
|
describeDirectories(args: DescribeDirectoriesCommandInput, cb: (err: any, data?: DescribeDirectoriesCommandOutput) => void): void;
|
|
323
220
|
describeDirectories(args: DescribeDirectoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDirectoriesCommandOutput) => void): void;
|
|
324
221
|
/**
|
|
325
|
-
* @
|
|
326
|
-
* <p>Provides information about any domain controllers in your directory.</p>
|
|
222
|
+
* @see {@link DescribeDomainControllersCommand}
|
|
327
223
|
*/
|
|
328
224
|
describeDomainControllers(args: DescribeDomainControllersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDomainControllersCommandOutput>;
|
|
329
225
|
describeDomainControllers(args: DescribeDomainControllersCommandInput, cb: (err: any, data?: DescribeDomainControllersCommandOutput) => void): void;
|
|
330
226
|
describeDomainControllers(args: DescribeDomainControllersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainControllersCommandOutput) => void): void;
|
|
331
227
|
/**
|
|
332
|
-
* @
|
|
333
|
-
* <p>Obtains information about which Amazon SNS topics receive status messages from the specified
|
|
334
|
-
* directory.</p>
|
|
335
|
-
* <p>If no input parameters are provided, such as DirectoryId or TopicName, this request
|
|
336
|
-
* describes all of the associations in the account.</p>
|
|
228
|
+
* @see {@link DescribeEventTopicsCommand}
|
|
337
229
|
*/
|
|
338
230
|
describeEventTopics(args: DescribeEventTopicsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventTopicsCommandOutput>;
|
|
339
231
|
describeEventTopics(args: DescribeEventTopicsCommandInput, cb: (err: any, data?: DescribeEventTopicsCommandOutput) => void): void;
|
|
340
232
|
describeEventTopics(args: DescribeEventTopicsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventTopicsCommandOutput) => void): void;
|
|
341
233
|
/**
|
|
342
|
-
* @
|
|
343
|
-
* <p>Describes the status of LDAP security for the specified directory.</p>
|
|
234
|
+
* @see {@link DescribeLDAPSSettingsCommand}
|
|
344
235
|
*/
|
|
345
236
|
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLDAPSSettingsCommandOutput>;
|
|
346
237
|
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, cb: (err: any, data?: DescribeLDAPSSettingsCommandOutput) => void): void;
|
|
347
238
|
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLDAPSSettingsCommandOutput) => void): void;
|
|
348
239
|
/**
|
|
349
|
-
* @
|
|
350
|
-
* <p>Provides information about the Regions that are configured for multi-Region
|
|
351
|
-
* replication.</p>
|
|
240
|
+
* @see {@link DescribeRegionsCommand}
|
|
352
241
|
*/
|
|
353
242
|
describeRegions(args: DescribeRegionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRegionsCommandOutput>;
|
|
354
243
|
describeRegions(args: DescribeRegionsCommandInput, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
|
|
355
244
|
describeRegions(args: DescribeRegionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
|
|
356
245
|
/**
|
|
357
|
-
* @
|
|
358
|
-
* <p>Retrieves information about the configurable settings for the specified directory.</p>
|
|
246
|
+
* @see {@link DescribeSettingsCommand}
|
|
359
247
|
*/
|
|
360
248
|
describeSettings(args: DescribeSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSettingsCommandOutput>;
|
|
361
249
|
describeSettings(args: DescribeSettingsCommandInput, cb: (err: any, data?: DescribeSettingsCommandOutput) => void): void;
|
|
362
250
|
describeSettings(args: DescribeSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSettingsCommandOutput) => void): void;
|
|
363
251
|
/**
|
|
364
|
-
* @
|
|
365
|
-
* <p>Returns the shared directories in your account. </p>
|
|
252
|
+
* @see {@link DescribeSharedDirectoriesCommand}
|
|
366
253
|
*/
|
|
367
254
|
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSharedDirectoriesCommandOutput>;
|
|
368
255
|
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, cb: (err: any, data?: DescribeSharedDirectoriesCommandOutput) => void): void;
|
|
369
256
|
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSharedDirectoriesCommandOutput) => void): void;
|
|
370
257
|
/**
|
|
371
|
-
* @
|
|
372
|
-
* <p>Obtains information about the directory snapshots that belong to this account.</p>
|
|
373
|
-
* <p>This operation supports pagination with the use of the <i>NextToken</i> request and
|
|
374
|
-
* response parameters. If more results are available, the <i>DescribeSnapshots.NextToken</i>
|
|
375
|
-
* member contains a token that you pass in the next call to <a>DescribeSnapshots</a> to
|
|
376
|
-
* retrieve the next set of items.</p>
|
|
377
|
-
* <p>You can also specify a maximum number of return results with the <i>Limit</i>
|
|
378
|
-
* parameter.</p>
|
|
258
|
+
* @see {@link DescribeSnapshotsCommand}
|
|
379
259
|
*/
|
|
380
260
|
describeSnapshots(args: DescribeSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotsCommandOutput>;
|
|
381
261
|
describeSnapshots(args: DescribeSnapshotsCommandInput, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
|
|
382
262
|
describeSnapshots(args: DescribeSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
|
|
383
263
|
/**
|
|
384
|
-
* @
|
|
385
|
-
* <p>Obtains information about the trust relationships for this account.</p>
|
|
386
|
-
* <p>If no input parameters are provided, such as DirectoryId or TrustIds, this request
|
|
387
|
-
* describes all the trust relationships belonging to the account.</p>
|
|
264
|
+
* @see {@link DescribeTrustsCommand}
|
|
388
265
|
*/
|
|
389
266
|
describeTrusts(args: DescribeTrustsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTrustsCommandOutput>;
|
|
390
267
|
describeTrusts(args: DescribeTrustsCommandInput, cb: (err: any, data?: DescribeTrustsCommandOutput) => void): void;
|
|
391
268
|
describeTrusts(args: DescribeTrustsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrustsCommandOutput) => void): void;
|
|
392
269
|
/**
|
|
393
|
-
* @
|
|
394
|
-
* <p>
|
|
395
|
-
* Describes the updates of a directory for a particular update type.
|
|
396
|
-
* </p>
|
|
270
|
+
* @see {@link DescribeUpdateDirectoryCommand}
|
|
397
271
|
*/
|
|
398
272
|
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUpdateDirectoryCommandOutput>;
|
|
399
273
|
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, cb: (err: any, data?: DescribeUpdateDirectoryCommandOutput) => void): void;
|
|
400
274
|
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUpdateDirectoryCommandOutput) => void): void;
|
|
401
275
|
/**
|
|
402
|
-
* @
|
|
403
|
-
* <p>Disables alternative client authentication methods for the specified directory. </p>
|
|
276
|
+
* @see {@link DisableClientAuthenticationCommand}
|
|
404
277
|
*/
|
|
405
278
|
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, options?: __HttpHandlerOptions): Promise<DisableClientAuthenticationCommandOutput>;
|
|
406
279
|
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, cb: (err: any, data?: DisableClientAuthenticationCommandOutput) => void): void;
|
|
407
280
|
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableClientAuthenticationCommandOutput) => void): void;
|
|
408
281
|
/**
|
|
409
|
-
* @
|
|
410
|
-
* <p>Deactivates LDAP secure calls for the specified directory.</p>
|
|
282
|
+
* @see {@link DisableLDAPSCommand}
|
|
411
283
|
*/
|
|
412
284
|
disableLDAPS(args: DisableLDAPSCommandInput, options?: __HttpHandlerOptions): Promise<DisableLDAPSCommandOutput>;
|
|
413
285
|
disableLDAPS(args: DisableLDAPSCommandInput, cb: (err: any, data?: DisableLDAPSCommandOutput) => void): void;
|
|
414
286
|
disableLDAPS(args: DisableLDAPSCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableLDAPSCommandOutput) => void): void;
|
|
415
287
|
/**
|
|
416
|
-
* @
|
|
417
|
-
* <p>Disables multi-factor authentication (MFA) with the Remote Authentication Dial In
|
|
418
|
-
* User Service (RADIUS) server for an AD Connector or Microsoft AD directory.</p>
|
|
288
|
+
* @see {@link DisableRadiusCommand}
|
|
419
289
|
*/
|
|
420
290
|
disableRadius(args: DisableRadiusCommandInput, options?: __HttpHandlerOptions): Promise<DisableRadiusCommandOutput>;
|
|
421
291
|
disableRadius(args: DisableRadiusCommandInput, cb: (err: any, data?: DisableRadiusCommandOutput) => void): void;
|
|
422
292
|
disableRadius(args: DisableRadiusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableRadiusCommandOutput) => void): void;
|
|
423
293
|
/**
|
|
424
|
-
* @
|
|
425
|
-
* <p>Disables single-sign on for a directory.</p>
|
|
294
|
+
* @see {@link DisableSsoCommand}
|
|
426
295
|
*/
|
|
427
296
|
disableSso(args: DisableSsoCommandInput, options?: __HttpHandlerOptions): Promise<DisableSsoCommandOutput>;
|
|
428
297
|
disableSso(args: DisableSsoCommandInput, cb: (err: any, data?: DisableSsoCommandOutput) => void): void;
|
|
429
298
|
disableSso(args: DisableSsoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableSsoCommandOutput) => void): void;
|
|
430
299
|
/**
|
|
431
|
-
* @
|
|
432
|
-
* <p>Enables alternative client authentication methods for the specified directory.</p>
|
|
300
|
+
* @see {@link EnableClientAuthenticationCommand}
|
|
433
301
|
*/
|
|
434
302
|
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, options?: __HttpHandlerOptions): Promise<EnableClientAuthenticationCommandOutput>;
|
|
435
303
|
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, cb: (err: any, data?: EnableClientAuthenticationCommandOutput) => void): void;
|
|
436
304
|
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableClientAuthenticationCommandOutput) => void): void;
|
|
437
305
|
/**
|
|
438
|
-
* @
|
|
439
|
-
* <p>Activates the switch for the specific directory to always use LDAP secure calls.</p>
|
|
306
|
+
* @see {@link EnableLDAPSCommand}
|
|
440
307
|
*/
|
|
441
308
|
enableLDAPS(args: EnableLDAPSCommandInput, options?: __HttpHandlerOptions): Promise<EnableLDAPSCommandOutput>;
|
|
442
309
|
enableLDAPS(args: EnableLDAPSCommandInput, cb: (err: any, data?: EnableLDAPSCommandOutput) => void): void;
|
|
443
310
|
enableLDAPS(args: EnableLDAPSCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableLDAPSCommandOutput) => void): void;
|
|
444
311
|
/**
|
|
445
|
-
* @
|
|
446
|
-
* <p>Enables multi-factor authentication (MFA) with the Remote Authentication Dial In User
|
|
447
|
-
* Service (RADIUS) server for an AD Connector or Microsoft AD directory.</p>
|
|
312
|
+
* @see {@link EnableRadiusCommand}
|
|
448
313
|
*/
|
|
449
314
|
enableRadius(args: EnableRadiusCommandInput, options?: __HttpHandlerOptions): Promise<EnableRadiusCommandOutput>;
|
|
450
315
|
enableRadius(args: EnableRadiusCommandInput, cb: (err: any, data?: EnableRadiusCommandOutput) => void): void;
|
|
451
316
|
enableRadius(args: EnableRadiusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableRadiusCommandOutput) => void): void;
|
|
452
317
|
/**
|
|
453
|
-
* @
|
|
454
|
-
* <p>Enables single sign-on for a directory. Single sign-on allows users in your directory to
|
|
455
|
-
* access certain Amazon Web Services services from a computer joined to the directory without having to enter
|
|
456
|
-
* their credentials separately.</p>
|
|
318
|
+
* @see {@link EnableSsoCommand}
|
|
457
319
|
*/
|
|
458
320
|
enableSso(args: EnableSsoCommandInput, options?: __HttpHandlerOptions): Promise<EnableSsoCommandOutput>;
|
|
459
321
|
enableSso(args: EnableSsoCommandInput, cb: (err: any, data?: EnableSsoCommandOutput) => void): void;
|
|
460
322
|
enableSso(args: EnableSsoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableSsoCommandOutput) => void): void;
|
|
461
323
|
/**
|
|
462
|
-
* @
|
|
463
|
-
* <p>Obtains directory limit information for the current Region.</p>
|
|
324
|
+
* @see {@link GetDirectoryLimitsCommand}
|
|
464
325
|
*/
|
|
465
326
|
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, options?: __HttpHandlerOptions): Promise<GetDirectoryLimitsCommandOutput>;
|
|
466
327
|
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, cb: (err: any, data?: GetDirectoryLimitsCommandOutput) => void): void;
|
|
467
328
|
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDirectoryLimitsCommandOutput) => void): void;
|
|
468
329
|
/**
|
|
469
|
-
* @
|
|
470
|
-
* <p>Obtains the manual snapshot limits for a directory.</p>
|
|
330
|
+
* @see {@link GetSnapshotLimitsCommand}
|
|
471
331
|
*/
|
|
472
332
|
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, options?: __HttpHandlerOptions): Promise<GetSnapshotLimitsCommandOutput>;
|
|
473
333
|
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, cb: (err: any, data?: GetSnapshotLimitsCommandOutput) => void): void;
|
|
474
334
|
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSnapshotLimitsCommandOutput) => void): void;
|
|
475
335
|
/**
|
|
476
|
-
* @
|
|
477
|
-
* <p>For the specified directory, lists all the certificates registered for a secure LDAP or client certificate authentication.</p>
|
|
336
|
+
* @see {@link ListCertificatesCommand}
|
|
478
337
|
*/
|
|
479
338
|
listCertificates(args: ListCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCertificatesCommandOutput>;
|
|
480
339
|
listCertificates(args: ListCertificatesCommandInput, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
|
|
481
340
|
listCertificates(args: ListCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
|
|
482
341
|
/**
|
|
483
|
-
* @
|
|
484
|
-
* <p>Lists the address blocks that you have added to a directory.</p>
|
|
342
|
+
* @see {@link ListIpRoutesCommand}
|
|
485
343
|
*/
|
|
486
344
|
listIpRoutes(args: ListIpRoutesCommandInput, options?: __HttpHandlerOptions): Promise<ListIpRoutesCommandOutput>;
|
|
487
345
|
listIpRoutes(args: ListIpRoutesCommandInput, cb: (err: any, data?: ListIpRoutesCommandOutput) => void): void;
|
|
488
346
|
listIpRoutes(args: ListIpRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIpRoutesCommandOutput) => void): void;
|
|
489
347
|
/**
|
|
490
|
-
* @
|
|
491
|
-
* <p>Lists the active log subscriptions for the Amazon Web Services account.</p>
|
|
348
|
+
* @see {@link ListLogSubscriptionsCommand}
|
|
492
349
|
*/
|
|
493
350
|
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLogSubscriptionsCommandOutput>;
|
|
494
351
|
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, cb: (err: any, data?: ListLogSubscriptionsCommandOutput) => void): void;
|
|
495
352
|
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLogSubscriptionsCommandOutput) => void): void;
|
|
496
353
|
/**
|
|
497
|
-
* @
|
|
498
|
-
* <p>Lists all schema extensions applied to a Microsoft AD Directory.</p>
|
|
354
|
+
* @see {@link ListSchemaExtensionsCommand}
|
|
499
355
|
*/
|
|
500
356
|
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSchemaExtensionsCommandOutput>;
|
|
501
357
|
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, cb: (err: any, data?: ListSchemaExtensionsCommandOutput) => void): void;
|
|
502
358
|
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchemaExtensionsCommandOutput) => void): void;
|
|
503
359
|
/**
|
|
504
|
-
* @
|
|
505
|
-
* <p>Lists all tags on a directory.</p>
|
|
360
|
+
* @see {@link ListTagsForResourceCommand}
|
|
506
361
|
*/
|
|
507
362
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
508
363
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
509
364
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
510
365
|
/**
|
|
511
|
-
* @
|
|
512
|
-
* <p>Registers a certificate for a secure LDAP or client certificate authentication.</p>
|
|
366
|
+
* @see {@link RegisterCertificateCommand}
|
|
513
367
|
*/
|
|
514
368
|
registerCertificate(args: RegisterCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RegisterCertificateCommandOutput>;
|
|
515
369
|
registerCertificate(args: RegisterCertificateCommandInput, cb: (err: any, data?: RegisterCertificateCommandOutput) => void): void;
|
|
516
370
|
registerCertificate(args: RegisterCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterCertificateCommandOutput) => void): void;
|
|
517
371
|
/**
|
|
518
|
-
* @
|
|
519
|
-
* <p>Associates a directory with an Amazon SNS topic. This establishes the directory as a
|
|
520
|
-
* publisher to the specified Amazon SNS topic. You can then receive email or text (SMS) messages when
|
|
521
|
-
* the status of your directory changes. You get notified if your directory goes from an Active
|
|
522
|
-
* status to an Impaired or Inoperable status. You also receive a notification when the directory
|
|
523
|
-
* returns to an Active status.</p>
|
|
372
|
+
* @see {@link RegisterEventTopicCommand}
|
|
524
373
|
*/
|
|
525
374
|
registerEventTopic(args: RegisterEventTopicCommandInput, options?: __HttpHandlerOptions): Promise<RegisterEventTopicCommandOutput>;
|
|
526
375
|
registerEventTopic(args: RegisterEventTopicCommandInput, cb: (err: any, data?: RegisterEventTopicCommandOutput) => void): void;
|
|
527
376
|
registerEventTopic(args: RegisterEventTopicCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterEventTopicCommandOutput) => void): void;
|
|
528
377
|
/**
|
|
529
|
-
* @
|
|
530
|
-
* <p>Rejects a directory sharing request that was sent from the directory owner account.</p>
|
|
378
|
+
* @see {@link RejectSharedDirectoryCommand}
|
|
531
379
|
*/
|
|
532
380
|
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<RejectSharedDirectoryCommandOutput>;
|
|
533
381
|
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, cb: (err: any, data?: RejectSharedDirectoryCommandOutput) => void): void;
|
|
534
382
|
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectSharedDirectoryCommandOutput) => void): void;
|
|
535
383
|
/**
|
|
536
|
-
* @
|
|
537
|
-
* <p>Removes IP address blocks from a directory.</p>
|
|
384
|
+
* @see {@link RemoveIpRoutesCommand}
|
|
538
385
|
*/
|
|
539
386
|
removeIpRoutes(args: RemoveIpRoutesCommandInput, options?: __HttpHandlerOptions): Promise<RemoveIpRoutesCommandOutput>;
|
|
540
387
|
removeIpRoutes(args: RemoveIpRoutesCommandInput, cb: (err: any, data?: RemoveIpRoutesCommandOutput) => void): void;
|
|
541
388
|
removeIpRoutes(args: RemoveIpRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveIpRoutesCommandOutput) => void): void;
|
|
542
389
|
/**
|
|
543
|
-
* @
|
|
544
|
-
* <p>Stops all replication and removes the domain controllers from the specified Region. You
|
|
545
|
-
* cannot remove the primary Region with this operation. Instead, use the
|
|
546
|
-
* <code>DeleteDirectory</code> API.</p>
|
|
390
|
+
* @see {@link RemoveRegionCommand}
|
|
547
391
|
*/
|
|
548
392
|
removeRegion(args: RemoveRegionCommandInput, options?: __HttpHandlerOptions): Promise<RemoveRegionCommandOutput>;
|
|
549
393
|
removeRegion(args: RemoveRegionCommandInput, cb: (err: any, data?: RemoveRegionCommandOutput) => void): void;
|
|
550
394
|
removeRegion(args: RemoveRegionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveRegionCommandOutput) => void): void;
|
|
551
395
|
/**
|
|
552
|
-
* @
|
|
553
|
-
* <p>Removes tags from a directory.</p>
|
|
396
|
+
* @see {@link RemoveTagsFromResourceCommand}
|
|
554
397
|
*/
|
|
555
398
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsFromResourceCommandOutput>;
|
|
556
399
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
|
|
557
400
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
|
|
558
401
|
/**
|
|
559
|
-
* @
|
|
560
|
-
* <p>Resets the password for any user in your Managed Microsoft AD or Simple AD
|
|
561
|
-
* directory.</p>
|
|
562
|
-
* <p>You can reset the password for any user in your directory with the following
|
|
563
|
-
* exceptions:</p>
|
|
564
|
-
* <ul>
|
|
565
|
-
* <li>
|
|
566
|
-
* <p>For Simple AD, you cannot reset the password for any user that is a member of either
|
|
567
|
-
* the <b>Domain Admins</b> or <b>Enterprise
|
|
568
|
-
* Admins</b> group except for the administrator user.</p>
|
|
569
|
-
* </li>
|
|
570
|
-
* <li>
|
|
571
|
-
* <p>For Managed Microsoft AD, you can only reset the password for a user that is in an
|
|
572
|
-
* OU based off of the NetBIOS name that you typed when you created your directory. For
|
|
573
|
-
* example, you cannot reset the password for a user in the <b>Amazon Web Services
|
|
574
|
-
* Reserved</b> OU. For more information about the OU structure for an Managed Microsoft AD directory, see <a href="https://docs.aws.amazon.com/directoryservice/latest/admin-guide/ms_ad_getting_started_what_gets_created.html">What Gets Created</a> in the <i>Directory Service Administration
|
|
575
|
-
* Guide</i>.</p>
|
|
576
|
-
* </li>
|
|
577
|
-
* </ul>
|
|
402
|
+
* @see {@link ResetUserPasswordCommand}
|
|
578
403
|
*/
|
|
579
404
|
resetUserPassword(args: ResetUserPasswordCommandInput, options?: __HttpHandlerOptions): Promise<ResetUserPasswordCommandOutput>;
|
|
580
405
|
resetUserPassword(args: ResetUserPasswordCommandInput, cb: (err: any, data?: ResetUserPasswordCommandOutput) => void): void;
|
|
581
406
|
resetUserPassword(args: ResetUserPasswordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetUserPasswordCommandOutput) => void): void;
|
|
582
407
|
/**
|
|
583
|
-
* @
|
|
584
|
-
* <p>Restores a directory using an existing directory snapshot.</p>
|
|
585
|
-
* <p>When you restore a directory from a snapshot, any changes made to the directory after the snapshot date are overwritten.</p>
|
|
586
|
-
* <p>This action returns as soon as the restore operation is initiated. You can monitor the
|
|
587
|
-
* progress of the restore operation by calling the <a>DescribeDirectories</a> operation with
|
|
588
|
-
* the directory identifier. When the <b>DirectoryDescription.Stage</b> value changes to
|
|
589
|
-
* <code>Active</code>, the restore operation is complete.</p>
|
|
408
|
+
* @see {@link RestoreFromSnapshotCommand}
|
|
590
409
|
*/
|
|
591
410
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreFromSnapshotCommandOutput>;
|
|
592
411
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
593
412
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
594
413
|
/**
|
|
595
|
-
* @
|
|
596
|
-
* <p>Shares a specified directory (<code>DirectoryId</code>) in your Amazon Web Services account (directory
|
|
597
|
-
* owner) with another Amazon Web Services account (directory consumer). With this operation you can use your
|
|
598
|
-
* directory from any Amazon Web Services account and from any Amazon VPC within an Amazon Web Services Region.</p>
|
|
599
|
-
* <p>When you share your Managed Microsoft AD directory, Directory Service creates a
|
|
600
|
-
* shared directory in the directory consumer account. This shared directory contains the
|
|
601
|
-
* metadata to provide access to the directory within the directory owner account. The shared
|
|
602
|
-
* directory is visible in all VPCs in the directory consumer account.</p>
|
|
603
|
-
* <p>The <code>ShareMethod</code> parameter determines whether the specified directory can be
|
|
604
|
-
* shared between Amazon Web Services accounts inside the same Amazon Web Services organization (<code>ORGANIZATIONS</code>). It
|
|
605
|
-
* also determines whether you can share the directory with any other Amazon Web Services account either inside
|
|
606
|
-
* or outside of the organization (<code>HANDSHAKE</code>).</p>
|
|
607
|
-
* <p>The <code>ShareNotes</code> parameter is only used when <code>HANDSHAKE</code> is called,
|
|
608
|
-
* which sends a directory sharing request to the directory consumer. </p>
|
|
414
|
+
* @see {@link ShareDirectoryCommand}
|
|
609
415
|
*/
|
|
610
416
|
shareDirectory(args: ShareDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<ShareDirectoryCommandOutput>;
|
|
611
417
|
shareDirectory(args: ShareDirectoryCommandInput, cb: (err: any, data?: ShareDirectoryCommandOutput) => void): void;
|
|
612
418
|
shareDirectory(args: ShareDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ShareDirectoryCommandOutput) => void): void;
|
|
613
419
|
/**
|
|
614
|
-
* @
|
|
615
|
-
* <p>Applies a schema extension to a Microsoft AD directory.</p>
|
|
420
|
+
* @see {@link StartSchemaExtensionCommand}
|
|
616
421
|
*/
|
|
617
422
|
startSchemaExtension(args: StartSchemaExtensionCommandInput, options?: __HttpHandlerOptions): Promise<StartSchemaExtensionCommandOutput>;
|
|
618
423
|
startSchemaExtension(args: StartSchemaExtensionCommandInput, cb: (err: any, data?: StartSchemaExtensionCommandOutput) => void): void;
|
|
619
424
|
startSchemaExtension(args: StartSchemaExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSchemaExtensionCommandOutput) => void): void;
|
|
620
425
|
/**
|
|
621
|
-
* @
|
|
622
|
-
* <p>Stops the directory sharing between the directory owner and consumer accounts. </p>
|
|
426
|
+
* @see {@link UnshareDirectoryCommand}
|
|
623
427
|
*/
|
|
624
428
|
unshareDirectory(args: UnshareDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<UnshareDirectoryCommandOutput>;
|
|
625
429
|
unshareDirectory(args: UnshareDirectoryCommandInput, cb: (err: any, data?: UnshareDirectoryCommandOutput) => void): void;
|
|
626
430
|
unshareDirectory(args: UnshareDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnshareDirectoryCommandOutput) => void): void;
|
|
627
431
|
/**
|
|
628
|
-
* @
|
|
629
|
-
* <p>Updates a conditional forwarder that has been set up for your Amazon Web Services
|
|
630
|
-
* directory.</p>
|
|
432
|
+
* @see {@link UpdateConditionalForwarderCommand}
|
|
631
433
|
*/
|
|
632
434
|
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConditionalForwarderCommandOutput>;
|
|
633
435
|
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, cb: (err: any, data?: UpdateConditionalForwarderCommandOutput) => void): void;
|
|
634
436
|
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConditionalForwarderCommandOutput) => void): void;
|
|
635
437
|
/**
|
|
636
|
-
* @
|
|
637
|
-
* <p>
|
|
638
|
-
* Updates the directory for a particular update type.
|
|
639
|
-
* </p>
|
|
438
|
+
* @see {@link UpdateDirectorySetupCommand}
|
|
640
439
|
*/
|
|
641
440
|
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDirectorySetupCommandOutput>;
|
|
642
441
|
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, cb: (err: any, data?: UpdateDirectorySetupCommandOutput) => void): void;
|
|
643
442
|
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDirectorySetupCommandOutput) => void): void;
|
|
644
443
|
/**
|
|
645
|
-
* @
|
|
646
|
-
* <p>Adds or removes domain controllers to or from the directory. Based on the difference
|
|
647
|
-
* between current value and new value (provided through this API call), domain controllers will
|
|
648
|
-
* be added or removed. It may take up to 45 minutes for any new domain controllers to become
|
|
649
|
-
* fully active once the requested number of domain controllers is updated. During this time, you
|
|
650
|
-
* cannot make another update request.</p>
|
|
444
|
+
* @see {@link UpdateNumberOfDomainControllersCommand}
|
|
651
445
|
*/
|
|
652
446
|
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNumberOfDomainControllersCommandOutput>;
|
|
653
447
|
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, cb: (err: any, data?: UpdateNumberOfDomainControllersCommandOutput) => void): void;
|
|
654
448
|
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNumberOfDomainControllersCommandOutput) => void): void;
|
|
655
449
|
/**
|
|
656
|
-
* @
|
|
657
|
-
* <p>Updates the Remote Authentication Dial In User Service (RADIUS) server information
|
|
658
|
-
* for an AD Connector or Microsoft AD directory.</p>
|
|
450
|
+
* @see {@link UpdateRadiusCommand}
|
|
659
451
|
*/
|
|
660
452
|
updateRadius(args: UpdateRadiusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRadiusCommandOutput>;
|
|
661
453
|
updateRadius(args: UpdateRadiusCommandInput, cb: (err: any, data?: UpdateRadiusCommandOutput) => void): void;
|
|
662
454
|
updateRadius(args: UpdateRadiusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRadiusCommandOutput) => void): void;
|
|
663
455
|
/**
|
|
664
|
-
* @
|
|
665
|
-
* <p>Updates the configurable settings for the specified directory.</p>
|
|
456
|
+
* @see {@link UpdateSettingsCommand}
|
|
666
457
|
*/
|
|
667
458
|
updateSettings(args: UpdateSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSettingsCommandOutput>;
|
|
668
459
|
updateSettings(args: UpdateSettingsCommandInput, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
669
460
|
updateSettings(args: UpdateSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
670
461
|
/**
|
|
671
|
-
* @
|
|
672
|
-
* <p>Updates the trust that has been set up between your Managed Microsoft AD directory and an
|
|
673
|
-
* self-managed Active Directory.</p>
|
|
462
|
+
* @see {@link UpdateTrustCommand}
|
|
674
463
|
*/
|
|
675
464
|
updateTrust(args: UpdateTrustCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrustCommandOutput>;
|
|
676
465
|
updateTrust(args: UpdateTrustCommandInput, cb: (err: any, data?: UpdateTrustCommandOutput) => void): void;
|
|
677
466
|
updateTrust(args: UpdateTrustCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrustCommandOutput) => void): void;
|
|
678
467
|
/**
|
|
679
|
-
* @
|
|
680
|
-
* <p>Directory Service for Microsoft Active Directory allows you to configure and verify trust
|
|
681
|
-
* relationships.</p>
|
|
682
|
-
* <p>This action verifies a trust relationship between your Managed Microsoft AD directory and an
|
|
683
|
-
* external domain.</p>
|
|
468
|
+
* @see {@link VerifyTrustCommand}
|
|
684
469
|
*/
|
|
685
470
|
verifyTrust(args: VerifyTrustCommandInput, options?: __HttpHandlerOptions): Promise<VerifyTrustCommandOutput>;
|
|
686
471
|
verifyTrust(args: VerifyTrustCommandInput, cb: (err: any, data?: VerifyTrustCommandOutput) => void): void;
|
|
687
472
|
verifyTrust(args: VerifyTrustCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyTrustCommandOutput) => void): void;
|
|
688
473
|
}
|
|
474
|
+
/**
|
|
475
|
+
* @public
|
|
476
|
+
* <fullname>Directory Service</fullname>
|
|
477
|
+
* <p>Directory Service is a web service that makes it easy for you to setup and run directories in the
|
|
478
|
+
* Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active
|
|
479
|
+
* Directory. This guide provides detailed information about Directory Service operations, data types,
|
|
480
|
+
* parameters, and errors. For information about Directory Services features, see <a href="https://aws.amazon.com/directoryservice/">Directory Service</a> and the <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html">Directory Service
|
|
481
|
+
* Administration Guide</a>.</p>
|
|
482
|
+
* <note>
|
|
483
|
+
* <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various
|
|
484
|
+
* programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs
|
|
485
|
+
* provide a convenient way to create programmatic access to Directory Service and other Amazon Web Services
|
|
486
|
+
* services. For more information about the Amazon Web Services SDKs, including how to download and
|
|
487
|
+
* install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web
|
|
488
|
+
* Services</a>.</p>
|
|
489
|
+
* </note>
|
|
490
|
+
*/
|
|
491
|
+
export declare class DirectoryService extends DirectoryServiceClient implements DirectoryService {
|
|
492
|
+
}
|