@aws-sdk/client-directory-service 3.1137.0 → 3.1138.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +3 -3
- package/dist-es/schemas/schemas_0.js +2 -2
- package/dist-types/DirectoryService.d.ts +167 -161
- package/dist-types/ts3.4/DirectoryService.d.ts +164 -160
- package/package.json +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type WaiterResult } from "@smithy/core/client";
|
|
2
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, MetricsRecorder as __MetricsRecorder, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
3
3
|
import { type AcceptSharedDirectoryCommandInput, type AcceptSharedDirectoryCommandOutput } from "./commands/AcceptSharedDirectoryCommand";
|
|
4
4
|
import { type AddIpRoutesCommandInput, type AddIpRoutesCommandOutput } from "./commands/AddIpRoutesCommand";
|
|
5
5
|
import { type AddRegionCommandInput, type AddRegionCommandOutput } from "./commands/AddRegionCommand";
|
|
@@ -81,495 +81,501 @@ import { type UpdateSettingsCommandInput, type UpdateSettingsCommandOutput } fro
|
|
|
81
81
|
import { type UpdateTrustCommandInput, type UpdateTrustCommandOutput } from "./commands/UpdateTrustCommand";
|
|
82
82
|
import { type VerifyTrustCommandInput, type VerifyTrustCommandOutput } from "./commands/VerifyTrustCommand";
|
|
83
83
|
import { DirectoryServiceClient } from "./DirectoryServiceClient";
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export interface DirectoryServiceRequestOptions extends __HttpHandlerOptions {
|
|
88
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
89
|
+
}
|
|
84
90
|
export interface DirectoryService {
|
|
85
91
|
/**
|
|
86
92
|
* @see {@link AcceptSharedDirectoryCommand}
|
|
87
93
|
*/
|
|
88
|
-
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, options?:
|
|
94
|
+
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<AcceptSharedDirectoryCommandOutput>;
|
|
89
95
|
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, cb: (err: any, data?: AcceptSharedDirectoryCommandOutput) => void): void;
|
|
90
|
-
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, options:
|
|
96
|
+
acceptSharedDirectory(args: AcceptSharedDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: AcceptSharedDirectoryCommandOutput) => void): void;
|
|
91
97
|
/**
|
|
92
98
|
* @see {@link AddIpRoutesCommand}
|
|
93
99
|
*/
|
|
94
|
-
addIpRoutes(args: AddIpRoutesCommandInput, options?:
|
|
100
|
+
addIpRoutes(args: AddIpRoutesCommandInput, options?: DirectoryServiceRequestOptions): Promise<AddIpRoutesCommandOutput>;
|
|
95
101
|
addIpRoutes(args: AddIpRoutesCommandInput, cb: (err: any, data?: AddIpRoutesCommandOutput) => void): void;
|
|
96
|
-
addIpRoutes(args: AddIpRoutesCommandInput, options:
|
|
102
|
+
addIpRoutes(args: AddIpRoutesCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: AddIpRoutesCommandOutput) => void): void;
|
|
97
103
|
/**
|
|
98
104
|
* @see {@link AddRegionCommand}
|
|
99
105
|
*/
|
|
100
|
-
addRegion(args: AddRegionCommandInput, options?:
|
|
106
|
+
addRegion(args: AddRegionCommandInput, options?: DirectoryServiceRequestOptions): Promise<AddRegionCommandOutput>;
|
|
101
107
|
addRegion(args: AddRegionCommandInput, cb: (err: any, data?: AddRegionCommandOutput) => void): void;
|
|
102
|
-
addRegion(args: AddRegionCommandInput, options:
|
|
108
|
+
addRegion(args: AddRegionCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: AddRegionCommandOutput) => void): void;
|
|
103
109
|
/**
|
|
104
110
|
* @see {@link AddTagsToResourceCommand}
|
|
105
111
|
*/
|
|
106
|
-
addTagsToResource(args: AddTagsToResourceCommandInput, options?:
|
|
112
|
+
addTagsToResource(args: AddTagsToResourceCommandInput, options?: DirectoryServiceRequestOptions): Promise<AddTagsToResourceCommandOutput>;
|
|
107
113
|
addTagsToResource(args: AddTagsToResourceCommandInput, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
108
|
-
addTagsToResource(args: AddTagsToResourceCommandInput, options:
|
|
114
|
+
addTagsToResource(args: AddTagsToResourceCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
109
115
|
/**
|
|
110
116
|
* @see {@link CancelSchemaExtensionCommand}
|
|
111
117
|
*/
|
|
112
|
-
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, options?:
|
|
118
|
+
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, options?: DirectoryServiceRequestOptions): Promise<CancelSchemaExtensionCommandOutput>;
|
|
113
119
|
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, cb: (err: any, data?: CancelSchemaExtensionCommandOutput) => void): void;
|
|
114
|
-
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, options:
|
|
120
|
+
cancelSchemaExtension(args: CancelSchemaExtensionCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CancelSchemaExtensionCommandOutput) => void): void;
|
|
115
121
|
/**
|
|
116
122
|
* @see {@link ConnectDirectoryCommand}
|
|
117
123
|
*/
|
|
118
|
-
connectDirectory(args: ConnectDirectoryCommandInput, options?:
|
|
124
|
+
connectDirectory(args: ConnectDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<ConnectDirectoryCommandOutput>;
|
|
119
125
|
connectDirectory(args: ConnectDirectoryCommandInput, cb: (err: any, data?: ConnectDirectoryCommandOutput) => void): void;
|
|
120
|
-
connectDirectory(args: ConnectDirectoryCommandInput, options:
|
|
126
|
+
connectDirectory(args: ConnectDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ConnectDirectoryCommandOutput) => void): void;
|
|
121
127
|
/**
|
|
122
128
|
* @see {@link CreateAliasCommand}
|
|
123
129
|
*/
|
|
124
|
-
createAlias(args: CreateAliasCommandInput, options?:
|
|
130
|
+
createAlias(args: CreateAliasCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateAliasCommandOutput>;
|
|
125
131
|
createAlias(args: CreateAliasCommandInput, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
|
|
126
|
-
createAlias(args: CreateAliasCommandInput, options:
|
|
132
|
+
createAlias(args: CreateAliasCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
|
|
127
133
|
/**
|
|
128
134
|
* @see {@link CreateComputerCommand}
|
|
129
135
|
*/
|
|
130
|
-
createComputer(args: CreateComputerCommandInput, options?:
|
|
136
|
+
createComputer(args: CreateComputerCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateComputerCommandOutput>;
|
|
131
137
|
createComputer(args: CreateComputerCommandInput, cb: (err: any, data?: CreateComputerCommandOutput) => void): void;
|
|
132
|
-
createComputer(args: CreateComputerCommandInput, options:
|
|
138
|
+
createComputer(args: CreateComputerCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateComputerCommandOutput) => void): void;
|
|
133
139
|
/**
|
|
134
140
|
* @see {@link CreateConditionalForwarderCommand}
|
|
135
141
|
*/
|
|
136
|
-
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, options?:
|
|
142
|
+
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateConditionalForwarderCommandOutput>;
|
|
137
143
|
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, cb: (err: any, data?: CreateConditionalForwarderCommandOutput) => void): void;
|
|
138
|
-
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, options:
|
|
144
|
+
createConditionalForwarder(args: CreateConditionalForwarderCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateConditionalForwarderCommandOutput) => void): void;
|
|
139
145
|
/**
|
|
140
146
|
* @see {@link CreateDirectoryCommand}
|
|
141
147
|
*/
|
|
142
|
-
createDirectory(args: CreateDirectoryCommandInput, options?:
|
|
148
|
+
createDirectory(args: CreateDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateDirectoryCommandOutput>;
|
|
143
149
|
createDirectory(args: CreateDirectoryCommandInput, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
|
|
144
|
-
createDirectory(args: CreateDirectoryCommandInput, options:
|
|
150
|
+
createDirectory(args: CreateDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
|
|
145
151
|
/**
|
|
146
152
|
* @see {@link CreateHybridADCommand}
|
|
147
153
|
*/
|
|
148
|
-
createHybridAD(args: CreateHybridADCommandInput, options?:
|
|
154
|
+
createHybridAD(args: CreateHybridADCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateHybridADCommandOutput>;
|
|
149
155
|
createHybridAD(args: CreateHybridADCommandInput, cb: (err: any, data?: CreateHybridADCommandOutput) => void): void;
|
|
150
|
-
createHybridAD(args: CreateHybridADCommandInput, options:
|
|
156
|
+
createHybridAD(args: CreateHybridADCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateHybridADCommandOutput) => void): void;
|
|
151
157
|
/**
|
|
152
158
|
* @see {@link CreateLogSubscriptionCommand}
|
|
153
159
|
*/
|
|
154
|
-
createLogSubscription(args: CreateLogSubscriptionCommandInput, options?:
|
|
160
|
+
createLogSubscription(args: CreateLogSubscriptionCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateLogSubscriptionCommandOutput>;
|
|
155
161
|
createLogSubscription(args: CreateLogSubscriptionCommandInput, cb: (err: any, data?: CreateLogSubscriptionCommandOutput) => void): void;
|
|
156
|
-
createLogSubscription(args: CreateLogSubscriptionCommandInput, options:
|
|
162
|
+
createLogSubscription(args: CreateLogSubscriptionCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateLogSubscriptionCommandOutput) => void): void;
|
|
157
163
|
/**
|
|
158
164
|
* @see {@link CreateMicrosoftADCommand}
|
|
159
165
|
*/
|
|
160
|
-
createMicrosoftAD(args: CreateMicrosoftADCommandInput, options?:
|
|
166
|
+
createMicrosoftAD(args: CreateMicrosoftADCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateMicrosoftADCommandOutput>;
|
|
161
167
|
createMicrosoftAD(args: CreateMicrosoftADCommandInput, cb: (err: any, data?: CreateMicrosoftADCommandOutput) => void): void;
|
|
162
|
-
createMicrosoftAD(args: CreateMicrosoftADCommandInput, options:
|
|
168
|
+
createMicrosoftAD(args: CreateMicrosoftADCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateMicrosoftADCommandOutput) => void): void;
|
|
163
169
|
/**
|
|
164
170
|
* @see {@link CreateSnapshotCommand}
|
|
165
171
|
*/
|
|
166
|
-
createSnapshot(args: CreateSnapshotCommandInput, options?:
|
|
172
|
+
createSnapshot(args: CreateSnapshotCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateSnapshotCommandOutput>;
|
|
167
173
|
createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
168
|
-
createSnapshot(args: CreateSnapshotCommandInput, options:
|
|
174
|
+
createSnapshot(args: CreateSnapshotCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
169
175
|
/**
|
|
170
176
|
* @see {@link CreateTrustCommand}
|
|
171
177
|
*/
|
|
172
|
-
createTrust(args: CreateTrustCommandInput, options?:
|
|
178
|
+
createTrust(args: CreateTrustCommandInput, options?: DirectoryServiceRequestOptions): Promise<CreateTrustCommandOutput>;
|
|
173
179
|
createTrust(args: CreateTrustCommandInput, cb: (err: any, data?: CreateTrustCommandOutput) => void): void;
|
|
174
|
-
createTrust(args: CreateTrustCommandInput, options:
|
|
180
|
+
createTrust(args: CreateTrustCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: CreateTrustCommandOutput) => void): void;
|
|
175
181
|
/**
|
|
176
182
|
* @see {@link DeleteADAssessmentCommand}
|
|
177
183
|
*/
|
|
178
|
-
deleteADAssessment(args: DeleteADAssessmentCommandInput, options?:
|
|
184
|
+
deleteADAssessment(args: DeleteADAssessmentCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeleteADAssessmentCommandOutput>;
|
|
179
185
|
deleteADAssessment(args: DeleteADAssessmentCommandInput, cb: (err: any, data?: DeleteADAssessmentCommandOutput) => void): void;
|
|
180
|
-
deleteADAssessment(args: DeleteADAssessmentCommandInput, options:
|
|
186
|
+
deleteADAssessment(args: DeleteADAssessmentCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeleteADAssessmentCommandOutput) => void): void;
|
|
181
187
|
/**
|
|
182
188
|
* @see {@link DeleteConditionalForwarderCommand}
|
|
183
189
|
*/
|
|
184
|
-
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, options?:
|
|
190
|
+
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeleteConditionalForwarderCommandOutput>;
|
|
185
191
|
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, cb: (err: any, data?: DeleteConditionalForwarderCommandOutput) => void): void;
|
|
186
|
-
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, options:
|
|
192
|
+
deleteConditionalForwarder(args: DeleteConditionalForwarderCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeleteConditionalForwarderCommandOutput) => void): void;
|
|
187
193
|
/**
|
|
188
194
|
* @see {@link DeleteDirectoryCommand}
|
|
189
195
|
*/
|
|
190
|
-
deleteDirectory(args: DeleteDirectoryCommandInput, options?:
|
|
196
|
+
deleteDirectory(args: DeleteDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeleteDirectoryCommandOutput>;
|
|
191
197
|
deleteDirectory(args: DeleteDirectoryCommandInput, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
|
|
192
|
-
deleteDirectory(args: DeleteDirectoryCommandInput, options:
|
|
198
|
+
deleteDirectory(args: DeleteDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
|
|
193
199
|
/**
|
|
194
200
|
* @see {@link DeleteLogSubscriptionCommand}
|
|
195
201
|
*/
|
|
196
|
-
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, options?:
|
|
202
|
+
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeleteLogSubscriptionCommandOutput>;
|
|
197
203
|
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, cb: (err: any, data?: DeleteLogSubscriptionCommandOutput) => void): void;
|
|
198
|
-
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, options:
|
|
204
|
+
deleteLogSubscription(args: DeleteLogSubscriptionCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeleteLogSubscriptionCommandOutput) => void): void;
|
|
199
205
|
/**
|
|
200
206
|
* @see {@link DeleteSnapshotCommand}
|
|
201
207
|
*/
|
|
202
|
-
deleteSnapshot(args: DeleteSnapshotCommandInput, options?:
|
|
208
|
+
deleteSnapshot(args: DeleteSnapshotCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeleteSnapshotCommandOutput>;
|
|
203
209
|
deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
204
|
-
deleteSnapshot(args: DeleteSnapshotCommandInput, options:
|
|
210
|
+
deleteSnapshot(args: DeleteSnapshotCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
205
211
|
/**
|
|
206
212
|
* @see {@link DeleteTrustCommand}
|
|
207
213
|
*/
|
|
208
|
-
deleteTrust(args: DeleteTrustCommandInput, options?:
|
|
214
|
+
deleteTrust(args: DeleteTrustCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeleteTrustCommandOutput>;
|
|
209
215
|
deleteTrust(args: DeleteTrustCommandInput, cb: (err: any, data?: DeleteTrustCommandOutput) => void): void;
|
|
210
|
-
deleteTrust(args: DeleteTrustCommandInput, options:
|
|
216
|
+
deleteTrust(args: DeleteTrustCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeleteTrustCommandOutput) => void): void;
|
|
211
217
|
/**
|
|
212
218
|
* @see {@link DeregisterCertificateCommand}
|
|
213
219
|
*/
|
|
214
|
-
deregisterCertificate(args: DeregisterCertificateCommandInput, options?:
|
|
220
|
+
deregisterCertificate(args: DeregisterCertificateCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeregisterCertificateCommandOutput>;
|
|
215
221
|
deregisterCertificate(args: DeregisterCertificateCommandInput, cb: (err: any, data?: DeregisterCertificateCommandOutput) => void): void;
|
|
216
|
-
deregisterCertificate(args: DeregisterCertificateCommandInput, options:
|
|
222
|
+
deregisterCertificate(args: DeregisterCertificateCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeregisterCertificateCommandOutput) => void): void;
|
|
217
223
|
/**
|
|
218
224
|
* @see {@link DeregisterEventTopicCommand}
|
|
219
225
|
*/
|
|
220
|
-
deregisterEventTopic(args: DeregisterEventTopicCommandInput, options?:
|
|
226
|
+
deregisterEventTopic(args: DeregisterEventTopicCommandInput, options?: DirectoryServiceRequestOptions): Promise<DeregisterEventTopicCommandOutput>;
|
|
221
227
|
deregisterEventTopic(args: DeregisterEventTopicCommandInput, cb: (err: any, data?: DeregisterEventTopicCommandOutput) => void): void;
|
|
222
|
-
deregisterEventTopic(args: DeregisterEventTopicCommandInput, options:
|
|
228
|
+
deregisterEventTopic(args: DeregisterEventTopicCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DeregisterEventTopicCommandOutput) => void): void;
|
|
223
229
|
/**
|
|
224
230
|
* @see {@link DescribeADAssessmentCommand}
|
|
225
231
|
*/
|
|
226
|
-
describeADAssessment(args: DescribeADAssessmentCommandInput, options?:
|
|
232
|
+
describeADAssessment(args: DescribeADAssessmentCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeADAssessmentCommandOutput>;
|
|
227
233
|
describeADAssessment(args: DescribeADAssessmentCommandInput, cb: (err: any, data?: DescribeADAssessmentCommandOutput) => void): void;
|
|
228
|
-
describeADAssessment(args: DescribeADAssessmentCommandInput, options:
|
|
234
|
+
describeADAssessment(args: DescribeADAssessmentCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeADAssessmentCommandOutput) => void): void;
|
|
229
235
|
/**
|
|
230
236
|
* @see {@link DescribeCAEnrollmentPolicyCommand}
|
|
231
237
|
*/
|
|
232
|
-
describeCAEnrollmentPolicy(args: DescribeCAEnrollmentPolicyCommandInput, options?:
|
|
238
|
+
describeCAEnrollmentPolicy(args: DescribeCAEnrollmentPolicyCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeCAEnrollmentPolicyCommandOutput>;
|
|
233
239
|
describeCAEnrollmentPolicy(args: DescribeCAEnrollmentPolicyCommandInput, cb: (err: any, data?: DescribeCAEnrollmentPolicyCommandOutput) => void): void;
|
|
234
|
-
describeCAEnrollmentPolicy(args: DescribeCAEnrollmentPolicyCommandInput, options:
|
|
240
|
+
describeCAEnrollmentPolicy(args: DescribeCAEnrollmentPolicyCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeCAEnrollmentPolicyCommandOutput) => void): void;
|
|
235
241
|
/**
|
|
236
242
|
* @see {@link DescribeCertificateCommand}
|
|
237
243
|
*/
|
|
238
|
-
describeCertificate(args: DescribeCertificateCommandInput, options?:
|
|
244
|
+
describeCertificate(args: DescribeCertificateCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeCertificateCommandOutput>;
|
|
239
245
|
describeCertificate(args: DescribeCertificateCommandInput, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
|
|
240
|
-
describeCertificate(args: DescribeCertificateCommandInput, options:
|
|
246
|
+
describeCertificate(args: DescribeCertificateCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
|
|
241
247
|
/**
|
|
242
248
|
* @see {@link DescribeClientAuthenticationSettingsCommand}
|
|
243
249
|
*/
|
|
244
|
-
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, options?:
|
|
250
|
+
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeClientAuthenticationSettingsCommandOutput>;
|
|
245
251
|
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, cb: (err: any, data?: DescribeClientAuthenticationSettingsCommandOutput) => void): void;
|
|
246
|
-
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, options:
|
|
252
|
+
describeClientAuthenticationSettings(args: DescribeClientAuthenticationSettingsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeClientAuthenticationSettingsCommandOutput) => void): void;
|
|
247
253
|
/**
|
|
248
254
|
* @see {@link DescribeConditionalForwardersCommand}
|
|
249
255
|
*/
|
|
250
|
-
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, options?:
|
|
256
|
+
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeConditionalForwardersCommandOutput>;
|
|
251
257
|
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, cb: (err: any, data?: DescribeConditionalForwardersCommandOutput) => void): void;
|
|
252
|
-
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, options:
|
|
258
|
+
describeConditionalForwarders(args: DescribeConditionalForwardersCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeConditionalForwardersCommandOutput) => void): void;
|
|
253
259
|
/**
|
|
254
260
|
* @see {@link DescribeDirectoriesCommand}
|
|
255
261
|
*/
|
|
256
262
|
describeDirectories(): Promise<DescribeDirectoriesCommandOutput>;
|
|
257
|
-
describeDirectories(args: DescribeDirectoriesCommandInput, options?:
|
|
263
|
+
describeDirectories(args: DescribeDirectoriesCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeDirectoriesCommandOutput>;
|
|
258
264
|
describeDirectories(args: DescribeDirectoriesCommandInput, cb: (err: any, data?: DescribeDirectoriesCommandOutput) => void): void;
|
|
259
|
-
describeDirectories(args: DescribeDirectoriesCommandInput, options:
|
|
265
|
+
describeDirectories(args: DescribeDirectoriesCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeDirectoriesCommandOutput) => void): void;
|
|
260
266
|
/**
|
|
261
267
|
* @see {@link DescribeDirectoryDataAccessCommand}
|
|
262
268
|
*/
|
|
263
|
-
describeDirectoryDataAccess(args: DescribeDirectoryDataAccessCommandInput, options?:
|
|
269
|
+
describeDirectoryDataAccess(args: DescribeDirectoryDataAccessCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeDirectoryDataAccessCommandOutput>;
|
|
264
270
|
describeDirectoryDataAccess(args: DescribeDirectoryDataAccessCommandInput, cb: (err: any, data?: DescribeDirectoryDataAccessCommandOutput) => void): void;
|
|
265
|
-
describeDirectoryDataAccess(args: DescribeDirectoryDataAccessCommandInput, options:
|
|
271
|
+
describeDirectoryDataAccess(args: DescribeDirectoryDataAccessCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeDirectoryDataAccessCommandOutput) => void): void;
|
|
266
272
|
/**
|
|
267
273
|
* @see {@link DescribeDomainControllersCommand}
|
|
268
274
|
*/
|
|
269
|
-
describeDomainControllers(args: DescribeDomainControllersCommandInput, options?:
|
|
275
|
+
describeDomainControllers(args: DescribeDomainControllersCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeDomainControllersCommandOutput>;
|
|
270
276
|
describeDomainControllers(args: DescribeDomainControllersCommandInput, cb: (err: any, data?: DescribeDomainControllersCommandOutput) => void): void;
|
|
271
|
-
describeDomainControllers(args: DescribeDomainControllersCommandInput, options:
|
|
277
|
+
describeDomainControllers(args: DescribeDomainControllersCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeDomainControllersCommandOutput) => void): void;
|
|
272
278
|
/**
|
|
273
279
|
* @see {@link DescribeEventTopicsCommand}
|
|
274
280
|
*/
|
|
275
281
|
describeEventTopics(): Promise<DescribeEventTopicsCommandOutput>;
|
|
276
|
-
describeEventTopics(args: DescribeEventTopicsCommandInput, options?:
|
|
282
|
+
describeEventTopics(args: DescribeEventTopicsCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeEventTopicsCommandOutput>;
|
|
277
283
|
describeEventTopics(args: DescribeEventTopicsCommandInput, cb: (err: any, data?: DescribeEventTopicsCommandOutput) => void): void;
|
|
278
|
-
describeEventTopics(args: DescribeEventTopicsCommandInput, options:
|
|
284
|
+
describeEventTopics(args: DescribeEventTopicsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeEventTopicsCommandOutput) => void): void;
|
|
279
285
|
/**
|
|
280
286
|
* @see {@link DescribeHybridADUpdateCommand}
|
|
281
287
|
*/
|
|
282
|
-
describeHybridADUpdate(args: DescribeHybridADUpdateCommandInput, options?:
|
|
288
|
+
describeHybridADUpdate(args: DescribeHybridADUpdateCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeHybridADUpdateCommandOutput>;
|
|
283
289
|
describeHybridADUpdate(args: DescribeHybridADUpdateCommandInput, cb: (err: any, data?: DescribeHybridADUpdateCommandOutput) => void): void;
|
|
284
|
-
describeHybridADUpdate(args: DescribeHybridADUpdateCommandInput, options:
|
|
290
|
+
describeHybridADUpdate(args: DescribeHybridADUpdateCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeHybridADUpdateCommandOutput) => void): void;
|
|
285
291
|
/**
|
|
286
292
|
* @see {@link DescribeLDAPSSettingsCommand}
|
|
287
293
|
*/
|
|
288
|
-
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, options?:
|
|
294
|
+
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeLDAPSSettingsCommandOutput>;
|
|
289
295
|
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, cb: (err: any, data?: DescribeLDAPSSettingsCommandOutput) => void): void;
|
|
290
|
-
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, options:
|
|
296
|
+
describeLDAPSSettings(args: DescribeLDAPSSettingsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeLDAPSSettingsCommandOutput) => void): void;
|
|
291
297
|
/**
|
|
292
298
|
* @see {@link DescribeRegionsCommand}
|
|
293
299
|
*/
|
|
294
|
-
describeRegions(args: DescribeRegionsCommandInput, options?:
|
|
300
|
+
describeRegions(args: DescribeRegionsCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeRegionsCommandOutput>;
|
|
295
301
|
describeRegions(args: DescribeRegionsCommandInput, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
|
|
296
|
-
describeRegions(args: DescribeRegionsCommandInput, options:
|
|
302
|
+
describeRegions(args: DescribeRegionsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
|
|
297
303
|
/**
|
|
298
304
|
* @see {@link DescribeSettingsCommand}
|
|
299
305
|
*/
|
|
300
|
-
describeSettings(args: DescribeSettingsCommandInput, options?:
|
|
306
|
+
describeSettings(args: DescribeSettingsCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeSettingsCommandOutput>;
|
|
301
307
|
describeSettings(args: DescribeSettingsCommandInput, cb: (err: any, data?: DescribeSettingsCommandOutput) => void): void;
|
|
302
|
-
describeSettings(args: DescribeSettingsCommandInput, options:
|
|
308
|
+
describeSettings(args: DescribeSettingsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeSettingsCommandOutput) => void): void;
|
|
303
309
|
/**
|
|
304
310
|
* @see {@link DescribeSharedDirectoriesCommand}
|
|
305
311
|
*/
|
|
306
|
-
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options?:
|
|
312
|
+
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeSharedDirectoriesCommandOutput>;
|
|
307
313
|
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, cb: (err: any, data?: DescribeSharedDirectoriesCommandOutput) => void): void;
|
|
308
|
-
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options:
|
|
314
|
+
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeSharedDirectoriesCommandOutput) => void): void;
|
|
309
315
|
/**
|
|
310
316
|
* @see {@link DescribeSnapshotsCommand}
|
|
311
317
|
*/
|
|
312
318
|
describeSnapshots(): Promise<DescribeSnapshotsCommandOutput>;
|
|
313
|
-
describeSnapshots(args: DescribeSnapshotsCommandInput, options?:
|
|
319
|
+
describeSnapshots(args: DescribeSnapshotsCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeSnapshotsCommandOutput>;
|
|
314
320
|
describeSnapshots(args: DescribeSnapshotsCommandInput, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
|
|
315
|
-
describeSnapshots(args: DescribeSnapshotsCommandInput, options:
|
|
321
|
+
describeSnapshots(args: DescribeSnapshotsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
|
|
316
322
|
/**
|
|
317
323
|
* @see {@link DescribeTrustsCommand}
|
|
318
324
|
*/
|
|
319
325
|
describeTrusts(): Promise<DescribeTrustsCommandOutput>;
|
|
320
|
-
describeTrusts(args: DescribeTrustsCommandInput, options?:
|
|
326
|
+
describeTrusts(args: DescribeTrustsCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeTrustsCommandOutput>;
|
|
321
327
|
describeTrusts(args: DescribeTrustsCommandInput, cb: (err: any, data?: DescribeTrustsCommandOutput) => void): void;
|
|
322
|
-
describeTrusts(args: DescribeTrustsCommandInput, options:
|
|
328
|
+
describeTrusts(args: DescribeTrustsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeTrustsCommandOutput) => void): void;
|
|
323
329
|
/**
|
|
324
330
|
* @see {@link DescribeUpdateDirectoryCommand}
|
|
325
331
|
*/
|
|
326
|
-
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, options?:
|
|
332
|
+
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<DescribeUpdateDirectoryCommandOutput>;
|
|
327
333
|
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, cb: (err: any, data?: DescribeUpdateDirectoryCommandOutput) => void): void;
|
|
328
|
-
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, options:
|
|
334
|
+
describeUpdateDirectory(args: DescribeUpdateDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DescribeUpdateDirectoryCommandOutput) => void): void;
|
|
329
335
|
/**
|
|
330
336
|
* @see {@link DisableCAEnrollmentPolicyCommand}
|
|
331
337
|
*/
|
|
332
|
-
disableCAEnrollmentPolicy(args: DisableCAEnrollmentPolicyCommandInput, options?:
|
|
338
|
+
disableCAEnrollmentPolicy(args: DisableCAEnrollmentPolicyCommandInput, options?: DirectoryServiceRequestOptions): Promise<DisableCAEnrollmentPolicyCommandOutput>;
|
|
333
339
|
disableCAEnrollmentPolicy(args: DisableCAEnrollmentPolicyCommandInput, cb: (err: any, data?: DisableCAEnrollmentPolicyCommandOutput) => void): void;
|
|
334
|
-
disableCAEnrollmentPolicy(args: DisableCAEnrollmentPolicyCommandInput, options:
|
|
340
|
+
disableCAEnrollmentPolicy(args: DisableCAEnrollmentPolicyCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DisableCAEnrollmentPolicyCommandOutput) => void): void;
|
|
335
341
|
/**
|
|
336
342
|
* @see {@link DisableClientAuthenticationCommand}
|
|
337
343
|
*/
|
|
338
|
-
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, options?:
|
|
344
|
+
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, options?: DirectoryServiceRequestOptions): Promise<DisableClientAuthenticationCommandOutput>;
|
|
339
345
|
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, cb: (err: any, data?: DisableClientAuthenticationCommandOutput) => void): void;
|
|
340
|
-
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, options:
|
|
346
|
+
disableClientAuthentication(args: DisableClientAuthenticationCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DisableClientAuthenticationCommandOutput) => void): void;
|
|
341
347
|
/**
|
|
342
348
|
* @see {@link DisableDirectoryDataAccessCommand}
|
|
343
349
|
*/
|
|
344
|
-
disableDirectoryDataAccess(args: DisableDirectoryDataAccessCommandInput, options?:
|
|
350
|
+
disableDirectoryDataAccess(args: DisableDirectoryDataAccessCommandInput, options?: DirectoryServiceRequestOptions): Promise<DisableDirectoryDataAccessCommandOutput>;
|
|
345
351
|
disableDirectoryDataAccess(args: DisableDirectoryDataAccessCommandInput, cb: (err: any, data?: DisableDirectoryDataAccessCommandOutput) => void): void;
|
|
346
|
-
disableDirectoryDataAccess(args: DisableDirectoryDataAccessCommandInput, options:
|
|
352
|
+
disableDirectoryDataAccess(args: DisableDirectoryDataAccessCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DisableDirectoryDataAccessCommandOutput) => void): void;
|
|
347
353
|
/**
|
|
348
354
|
* @see {@link DisableLDAPSCommand}
|
|
349
355
|
*/
|
|
350
|
-
disableLDAPS(args: DisableLDAPSCommandInput, options?:
|
|
356
|
+
disableLDAPS(args: DisableLDAPSCommandInput, options?: DirectoryServiceRequestOptions): Promise<DisableLDAPSCommandOutput>;
|
|
351
357
|
disableLDAPS(args: DisableLDAPSCommandInput, cb: (err: any, data?: DisableLDAPSCommandOutput) => void): void;
|
|
352
|
-
disableLDAPS(args: DisableLDAPSCommandInput, options:
|
|
358
|
+
disableLDAPS(args: DisableLDAPSCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DisableLDAPSCommandOutput) => void): void;
|
|
353
359
|
/**
|
|
354
360
|
* @see {@link DisableRadiusCommand}
|
|
355
361
|
*/
|
|
356
|
-
disableRadius(args: DisableRadiusCommandInput, options?:
|
|
362
|
+
disableRadius(args: DisableRadiusCommandInput, options?: DirectoryServiceRequestOptions): Promise<DisableRadiusCommandOutput>;
|
|
357
363
|
disableRadius(args: DisableRadiusCommandInput, cb: (err: any, data?: DisableRadiusCommandOutput) => void): void;
|
|
358
|
-
disableRadius(args: DisableRadiusCommandInput, options:
|
|
364
|
+
disableRadius(args: DisableRadiusCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DisableRadiusCommandOutput) => void): void;
|
|
359
365
|
/**
|
|
360
366
|
* @see {@link DisableSsoCommand}
|
|
361
367
|
*/
|
|
362
|
-
disableSso(args: DisableSsoCommandInput, options?:
|
|
368
|
+
disableSso(args: DisableSsoCommandInput, options?: DirectoryServiceRequestOptions): Promise<DisableSsoCommandOutput>;
|
|
363
369
|
disableSso(args: DisableSsoCommandInput, cb: (err: any, data?: DisableSsoCommandOutput) => void): void;
|
|
364
|
-
disableSso(args: DisableSsoCommandInput, options:
|
|
370
|
+
disableSso(args: DisableSsoCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: DisableSsoCommandOutput) => void): void;
|
|
365
371
|
/**
|
|
366
372
|
* @see {@link EnableCAEnrollmentPolicyCommand}
|
|
367
373
|
*/
|
|
368
|
-
enableCAEnrollmentPolicy(args: EnableCAEnrollmentPolicyCommandInput, options?:
|
|
374
|
+
enableCAEnrollmentPolicy(args: EnableCAEnrollmentPolicyCommandInput, options?: DirectoryServiceRequestOptions): Promise<EnableCAEnrollmentPolicyCommandOutput>;
|
|
369
375
|
enableCAEnrollmentPolicy(args: EnableCAEnrollmentPolicyCommandInput, cb: (err: any, data?: EnableCAEnrollmentPolicyCommandOutput) => void): void;
|
|
370
|
-
enableCAEnrollmentPolicy(args: EnableCAEnrollmentPolicyCommandInput, options:
|
|
376
|
+
enableCAEnrollmentPolicy(args: EnableCAEnrollmentPolicyCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: EnableCAEnrollmentPolicyCommandOutput) => void): void;
|
|
371
377
|
/**
|
|
372
378
|
* @see {@link EnableClientAuthenticationCommand}
|
|
373
379
|
*/
|
|
374
|
-
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, options?:
|
|
380
|
+
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, options?: DirectoryServiceRequestOptions): Promise<EnableClientAuthenticationCommandOutput>;
|
|
375
381
|
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, cb: (err: any, data?: EnableClientAuthenticationCommandOutput) => void): void;
|
|
376
|
-
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, options:
|
|
382
|
+
enableClientAuthentication(args: EnableClientAuthenticationCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: EnableClientAuthenticationCommandOutput) => void): void;
|
|
377
383
|
/**
|
|
378
384
|
* @see {@link EnableDirectoryDataAccessCommand}
|
|
379
385
|
*/
|
|
380
|
-
enableDirectoryDataAccess(args: EnableDirectoryDataAccessCommandInput, options?:
|
|
386
|
+
enableDirectoryDataAccess(args: EnableDirectoryDataAccessCommandInput, options?: DirectoryServiceRequestOptions): Promise<EnableDirectoryDataAccessCommandOutput>;
|
|
381
387
|
enableDirectoryDataAccess(args: EnableDirectoryDataAccessCommandInput, cb: (err: any, data?: EnableDirectoryDataAccessCommandOutput) => void): void;
|
|
382
|
-
enableDirectoryDataAccess(args: EnableDirectoryDataAccessCommandInput, options:
|
|
388
|
+
enableDirectoryDataAccess(args: EnableDirectoryDataAccessCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: EnableDirectoryDataAccessCommandOutput) => void): void;
|
|
383
389
|
/**
|
|
384
390
|
* @see {@link EnableLDAPSCommand}
|
|
385
391
|
*/
|
|
386
|
-
enableLDAPS(args: EnableLDAPSCommandInput, options?:
|
|
392
|
+
enableLDAPS(args: EnableLDAPSCommandInput, options?: DirectoryServiceRequestOptions): Promise<EnableLDAPSCommandOutput>;
|
|
387
393
|
enableLDAPS(args: EnableLDAPSCommandInput, cb: (err: any, data?: EnableLDAPSCommandOutput) => void): void;
|
|
388
|
-
enableLDAPS(args: EnableLDAPSCommandInput, options:
|
|
394
|
+
enableLDAPS(args: EnableLDAPSCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: EnableLDAPSCommandOutput) => void): void;
|
|
389
395
|
/**
|
|
390
396
|
* @see {@link EnableRadiusCommand}
|
|
391
397
|
*/
|
|
392
|
-
enableRadius(args: EnableRadiusCommandInput, options?:
|
|
398
|
+
enableRadius(args: EnableRadiusCommandInput, options?: DirectoryServiceRequestOptions): Promise<EnableRadiusCommandOutput>;
|
|
393
399
|
enableRadius(args: EnableRadiusCommandInput, cb: (err: any, data?: EnableRadiusCommandOutput) => void): void;
|
|
394
|
-
enableRadius(args: EnableRadiusCommandInput, options:
|
|
400
|
+
enableRadius(args: EnableRadiusCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: EnableRadiusCommandOutput) => void): void;
|
|
395
401
|
/**
|
|
396
402
|
* @see {@link EnableSsoCommand}
|
|
397
403
|
*/
|
|
398
|
-
enableSso(args: EnableSsoCommandInput, options?:
|
|
404
|
+
enableSso(args: EnableSsoCommandInput, options?: DirectoryServiceRequestOptions): Promise<EnableSsoCommandOutput>;
|
|
399
405
|
enableSso(args: EnableSsoCommandInput, cb: (err: any, data?: EnableSsoCommandOutput) => void): void;
|
|
400
|
-
enableSso(args: EnableSsoCommandInput, options:
|
|
406
|
+
enableSso(args: EnableSsoCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: EnableSsoCommandOutput) => void): void;
|
|
401
407
|
/**
|
|
402
408
|
* @see {@link GetDirectoryLimitsCommand}
|
|
403
409
|
*/
|
|
404
410
|
getDirectoryLimits(): Promise<GetDirectoryLimitsCommandOutput>;
|
|
405
|
-
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, options?:
|
|
411
|
+
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, options?: DirectoryServiceRequestOptions): Promise<GetDirectoryLimitsCommandOutput>;
|
|
406
412
|
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, cb: (err: any, data?: GetDirectoryLimitsCommandOutput) => void): void;
|
|
407
|
-
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, options:
|
|
413
|
+
getDirectoryLimits(args: GetDirectoryLimitsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: GetDirectoryLimitsCommandOutput) => void): void;
|
|
408
414
|
/**
|
|
409
415
|
* @see {@link GetSnapshotLimitsCommand}
|
|
410
416
|
*/
|
|
411
|
-
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, options?:
|
|
417
|
+
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, options?: DirectoryServiceRequestOptions): Promise<GetSnapshotLimitsCommandOutput>;
|
|
412
418
|
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, cb: (err: any, data?: GetSnapshotLimitsCommandOutput) => void): void;
|
|
413
|
-
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, options:
|
|
419
|
+
getSnapshotLimits(args: GetSnapshotLimitsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: GetSnapshotLimitsCommandOutput) => void): void;
|
|
414
420
|
/**
|
|
415
421
|
* @see {@link ListADAssessmentsCommand}
|
|
416
422
|
*/
|
|
417
423
|
listADAssessments(): Promise<ListADAssessmentsCommandOutput>;
|
|
418
|
-
listADAssessments(args: ListADAssessmentsCommandInput, options?:
|
|
424
|
+
listADAssessments(args: ListADAssessmentsCommandInput, options?: DirectoryServiceRequestOptions): Promise<ListADAssessmentsCommandOutput>;
|
|
419
425
|
listADAssessments(args: ListADAssessmentsCommandInput, cb: (err: any, data?: ListADAssessmentsCommandOutput) => void): void;
|
|
420
|
-
listADAssessments(args: ListADAssessmentsCommandInput, options:
|
|
426
|
+
listADAssessments(args: ListADAssessmentsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ListADAssessmentsCommandOutput) => void): void;
|
|
421
427
|
/**
|
|
422
428
|
* @see {@link ListCertificatesCommand}
|
|
423
429
|
*/
|
|
424
|
-
listCertificates(args: ListCertificatesCommandInput, options?:
|
|
430
|
+
listCertificates(args: ListCertificatesCommandInput, options?: DirectoryServiceRequestOptions): Promise<ListCertificatesCommandOutput>;
|
|
425
431
|
listCertificates(args: ListCertificatesCommandInput, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
|
|
426
|
-
listCertificates(args: ListCertificatesCommandInput, options:
|
|
432
|
+
listCertificates(args: ListCertificatesCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
|
|
427
433
|
/**
|
|
428
434
|
* @see {@link ListIpRoutesCommand}
|
|
429
435
|
*/
|
|
430
|
-
listIpRoutes(args: ListIpRoutesCommandInput, options?:
|
|
436
|
+
listIpRoutes(args: ListIpRoutesCommandInput, options?: DirectoryServiceRequestOptions): Promise<ListIpRoutesCommandOutput>;
|
|
431
437
|
listIpRoutes(args: ListIpRoutesCommandInput, cb: (err: any, data?: ListIpRoutesCommandOutput) => void): void;
|
|
432
|
-
listIpRoutes(args: ListIpRoutesCommandInput, options:
|
|
438
|
+
listIpRoutes(args: ListIpRoutesCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ListIpRoutesCommandOutput) => void): void;
|
|
433
439
|
/**
|
|
434
440
|
* @see {@link ListLogSubscriptionsCommand}
|
|
435
441
|
*/
|
|
436
442
|
listLogSubscriptions(): Promise<ListLogSubscriptionsCommandOutput>;
|
|
437
|
-
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, options?:
|
|
443
|
+
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, options?: DirectoryServiceRequestOptions): Promise<ListLogSubscriptionsCommandOutput>;
|
|
438
444
|
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, cb: (err: any, data?: ListLogSubscriptionsCommandOutput) => void): void;
|
|
439
|
-
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, options:
|
|
445
|
+
listLogSubscriptions(args: ListLogSubscriptionsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ListLogSubscriptionsCommandOutput) => void): void;
|
|
440
446
|
/**
|
|
441
447
|
* @see {@link ListSchemaExtensionsCommand}
|
|
442
448
|
*/
|
|
443
|
-
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, options?:
|
|
449
|
+
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, options?: DirectoryServiceRequestOptions): Promise<ListSchemaExtensionsCommandOutput>;
|
|
444
450
|
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, cb: (err: any, data?: ListSchemaExtensionsCommandOutput) => void): void;
|
|
445
|
-
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, options:
|
|
451
|
+
listSchemaExtensions(args: ListSchemaExtensionsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ListSchemaExtensionsCommandOutput) => void): void;
|
|
446
452
|
/**
|
|
447
453
|
* @see {@link ListTagsForResourceCommand}
|
|
448
454
|
*/
|
|
449
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?:
|
|
455
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: DirectoryServiceRequestOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
450
456
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
451
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options:
|
|
457
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
452
458
|
/**
|
|
453
459
|
* @see {@link RegisterCertificateCommand}
|
|
454
460
|
*/
|
|
455
|
-
registerCertificate(args: RegisterCertificateCommandInput, options?:
|
|
461
|
+
registerCertificate(args: RegisterCertificateCommandInput, options?: DirectoryServiceRequestOptions): Promise<RegisterCertificateCommandOutput>;
|
|
456
462
|
registerCertificate(args: RegisterCertificateCommandInput, cb: (err: any, data?: RegisterCertificateCommandOutput) => void): void;
|
|
457
|
-
registerCertificate(args: RegisterCertificateCommandInput, options:
|
|
463
|
+
registerCertificate(args: RegisterCertificateCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: RegisterCertificateCommandOutput) => void): void;
|
|
458
464
|
/**
|
|
459
465
|
* @see {@link RegisterEventTopicCommand}
|
|
460
466
|
*/
|
|
461
|
-
registerEventTopic(args: RegisterEventTopicCommandInput, options?:
|
|
467
|
+
registerEventTopic(args: RegisterEventTopicCommandInput, options?: DirectoryServiceRequestOptions): Promise<RegisterEventTopicCommandOutput>;
|
|
462
468
|
registerEventTopic(args: RegisterEventTopicCommandInput, cb: (err: any, data?: RegisterEventTopicCommandOutput) => void): void;
|
|
463
|
-
registerEventTopic(args: RegisterEventTopicCommandInput, options:
|
|
469
|
+
registerEventTopic(args: RegisterEventTopicCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: RegisterEventTopicCommandOutput) => void): void;
|
|
464
470
|
/**
|
|
465
471
|
* @see {@link RejectSharedDirectoryCommand}
|
|
466
472
|
*/
|
|
467
|
-
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, options?:
|
|
473
|
+
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<RejectSharedDirectoryCommandOutput>;
|
|
468
474
|
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, cb: (err: any, data?: RejectSharedDirectoryCommandOutput) => void): void;
|
|
469
|
-
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, options:
|
|
475
|
+
rejectSharedDirectory(args: RejectSharedDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: RejectSharedDirectoryCommandOutput) => void): void;
|
|
470
476
|
/**
|
|
471
477
|
* @see {@link RemoveIpRoutesCommand}
|
|
472
478
|
*/
|
|
473
|
-
removeIpRoutes(args: RemoveIpRoutesCommandInput, options?:
|
|
479
|
+
removeIpRoutes(args: RemoveIpRoutesCommandInput, options?: DirectoryServiceRequestOptions): Promise<RemoveIpRoutesCommandOutput>;
|
|
474
480
|
removeIpRoutes(args: RemoveIpRoutesCommandInput, cb: (err: any, data?: RemoveIpRoutesCommandOutput) => void): void;
|
|
475
|
-
removeIpRoutes(args: RemoveIpRoutesCommandInput, options:
|
|
481
|
+
removeIpRoutes(args: RemoveIpRoutesCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: RemoveIpRoutesCommandOutput) => void): void;
|
|
476
482
|
/**
|
|
477
483
|
* @see {@link RemoveRegionCommand}
|
|
478
484
|
*/
|
|
479
|
-
removeRegion(args: RemoveRegionCommandInput, options?:
|
|
485
|
+
removeRegion(args: RemoveRegionCommandInput, options?: DirectoryServiceRequestOptions): Promise<RemoveRegionCommandOutput>;
|
|
480
486
|
removeRegion(args: RemoveRegionCommandInput, cb: (err: any, data?: RemoveRegionCommandOutput) => void): void;
|
|
481
|
-
removeRegion(args: RemoveRegionCommandInput, options:
|
|
487
|
+
removeRegion(args: RemoveRegionCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: RemoveRegionCommandOutput) => void): void;
|
|
482
488
|
/**
|
|
483
489
|
* @see {@link RemoveTagsFromResourceCommand}
|
|
484
490
|
*/
|
|
485
|
-
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options?:
|
|
491
|
+
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options?: DirectoryServiceRequestOptions): Promise<RemoveTagsFromResourceCommandOutput>;
|
|
486
492
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
|
|
487
|
-
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options:
|
|
493
|
+
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
|
|
488
494
|
/**
|
|
489
495
|
* @see {@link ResetUserPasswordCommand}
|
|
490
496
|
*/
|
|
491
|
-
resetUserPassword(args: ResetUserPasswordCommandInput, options?:
|
|
497
|
+
resetUserPassword(args: ResetUserPasswordCommandInput, options?: DirectoryServiceRequestOptions): Promise<ResetUserPasswordCommandOutput>;
|
|
492
498
|
resetUserPassword(args: ResetUserPasswordCommandInput, cb: (err: any, data?: ResetUserPasswordCommandOutput) => void): void;
|
|
493
|
-
resetUserPassword(args: ResetUserPasswordCommandInput, options:
|
|
499
|
+
resetUserPassword(args: ResetUserPasswordCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ResetUserPasswordCommandOutput) => void): void;
|
|
494
500
|
/**
|
|
495
501
|
* @see {@link RestoreFromSnapshotCommand}
|
|
496
502
|
*/
|
|
497
|
-
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options?:
|
|
503
|
+
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options?: DirectoryServiceRequestOptions): Promise<RestoreFromSnapshotCommandOutput>;
|
|
498
504
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
499
|
-
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options:
|
|
505
|
+
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
500
506
|
/**
|
|
501
507
|
* @see {@link ShareDirectoryCommand}
|
|
502
508
|
*/
|
|
503
|
-
shareDirectory(args: ShareDirectoryCommandInput, options?:
|
|
509
|
+
shareDirectory(args: ShareDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<ShareDirectoryCommandOutput>;
|
|
504
510
|
shareDirectory(args: ShareDirectoryCommandInput, cb: (err: any, data?: ShareDirectoryCommandOutput) => void): void;
|
|
505
|
-
shareDirectory(args: ShareDirectoryCommandInput, options:
|
|
511
|
+
shareDirectory(args: ShareDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: ShareDirectoryCommandOutput) => void): void;
|
|
506
512
|
/**
|
|
507
513
|
* @see {@link StartADAssessmentCommand}
|
|
508
514
|
*/
|
|
509
515
|
startADAssessment(): Promise<StartADAssessmentCommandOutput>;
|
|
510
|
-
startADAssessment(args: StartADAssessmentCommandInput, options?:
|
|
516
|
+
startADAssessment(args: StartADAssessmentCommandInput, options?: DirectoryServiceRequestOptions): Promise<StartADAssessmentCommandOutput>;
|
|
511
517
|
startADAssessment(args: StartADAssessmentCommandInput, cb: (err: any, data?: StartADAssessmentCommandOutput) => void): void;
|
|
512
|
-
startADAssessment(args: StartADAssessmentCommandInput, options:
|
|
518
|
+
startADAssessment(args: StartADAssessmentCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: StartADAssessmentCommandOutput) => void): void;
|
|
513
519
|
/**
|
|
514
520
|
* @see {@link StartSchemaExtensionCommand}
|
|
515
521
|
*/
|
|
516
|
-
startSchemaExtension(args: StartSchemaExtensionCommandInput, options?:
|
|
522
|
+
startSchemaExtension(args: StartSchemaExtensionCommandInput, options?: DirectoryServiceRequestOptions): Promise<StartSchemaExtensionCommandOutput>;
|
|
517
523
|
startSchemaExtension(args: StartSchemaExtensionCommandInput, cb: (err: any, data?: StartSchemaExtensionCommandOutput) => void): void;
|
|
518
|
-
startSchemaExtension(args: StartSchemaExtensionCommandInput, options:
|
|
524
|
+
startSchemaExtension(args: StartSchemaExtensionCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: StartSchemaExtensionCommandOutput) => void): void;
|
|
519
525
|
/**
|
|
520
526
|
* @see {@link UnshareDirectoryCommand}
|
|
521
527
|
*/
|
|
522
|
-
unshareDirectory(args: UnshareDirectoryCommandInput, options?:
|
|
528
|
+
unshareDirectory(args: UnshareDirectoryCommandInput, options?: DirectoryServiceRequestOptions): Promise<UnshareDirectoryCommandOutput>;
|
|
523
529
|
unshareDirectory(args: UnshareDirectoryCommandInput, cb: (err: any, data?: UnshareDirectoryCommandOutput) => void): void;
|
|
524
|
-
unshareDirectory(args: UnshareDirectoryCommandInput, options:
|
|
530
|
+
unshareDirectory(args: UnshareDirectoryCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UnshareDirectoryCommandOutput) => void): void;
|
|
525
531
|
/**
|
|
526
532
|
* @see {@link UpdateConditionalForwarderCommand}
|
|
527
533
|
*/
|
|
528
|
-
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, options?:
|
|
534
|
+
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, options?: DirectoryServiceRequestOptions): Promise<UpdateConditionalForwarderCommandOutput>;
|
|
529
535
|
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, cb: (err: any, data?: UpdateConditionalForwarderCommandOutput) => void): void;
|
|
530
|
-
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, options:
|
|
536
|
+
updateConditionalForwarder(args: UpdateConditionalForwarderCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UpdateConditionalForwarderCommandOutput) => void): void;
|
|
531
537
|
/**
|
|
532
538
|
* @see {@link UpdateDirectorySetupCommand}
|
|
533
539
|
*/
|
|
534
|
-
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, options?:
|
|
540
|
+
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, options?: DirectoryServiceRequestOptions): Promise<UpdateDirectorySetupCommandOutput>;
|
|
535
541
|
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, cb: (err: any, data?: UpdateDirectorySetupCommandOutput) => void): void;
|
|
536
|
-
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, options:
|
|
542
|
+
updateDirectorySetup(args: UpdateDirectorySetupCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UpdateDirectorySetupCommandOutput) => void): void;
|
|
537
543
|
/**
|
|
538
544
|
* @see {@link UpdateHybridADCommand}
|
|
539
545
|
*/
|
|
540
|
-
updateHybridAD(args: UpdateHybridADCommandInput, options?:
|
|
546
|
+
updateHybridAD(args: UpdateHybridADCommandInput, options?: DirectoryServiceRequestOptions): Promise<UpdateHybridADCommandOutput>;
|
|
541
547
|
updateHybridAD(args: UpdateHybridADCommandInput, cb: (err: any, data?: UpdateHybridADCommandOutput) => void): void;
|
|
542
|
-
updateHybridAD(args: UpdateHybridADCommandInput, options:
|
|
548
|
+
updateHybridAD(args: UpdateHybridADCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UpdateHybridADCommandOutput) => void): void;
|
|
543
549
|
/**
|
|
544
550
|
* @see {@link UpdateNumberOfDomainControllersCommand}
|
|
545
551
|
*/
|
|
546
|
-
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, options?:
|
|
552
|
+
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, options?: DirectoryServiceRequestOptions): Promise<UpdateNumberOfDomainControllersCommandOutput>;
|
|
547
553
|
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, cb: (err: any, data?: UpdateNumberOfDomainControllersCommandOutput) => void): void;
|
|
548
|
-
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, options:
|
|
554
|
+
updateNumberOfDomainControllers(args: UpdateNumberOfDomainControllersCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UpdateNumberOfDomainControllersCommandOutput) => void): void;
|
|
549
555
|
/**
|
|
550
556
|
* @see {@link UpdateRadiusCommand}
|
|
551
557
|
*/
|
|
552
|
-
updateRadius(args: UpdateRadiusCommandInput, options?:
|
|
558
|
+
updateRadius(args: UpdateRadiusCommandInput, options?: DirectoryServiceRequestOptions): Promise<UpdateRadiusCommandOutput>;
|
|
553
559
|
updateRadius(args: UpdateRadiusCommandInput, cb: (err: any, data?: UpdateRadiusCommandOutput) => void): void;
|
|
554
|
-
updateRadius(args: UpdateRadiusCommandInput, options:
|
|
560
|
+
updateRadius(args: UpdateRadiusCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UpdateRadiusCommandOutput) => void): void;
|
|
555
561
|
/**
|
|
556
562
|
* @see {@link UpdateSettingsCommand}
|
|
557
563
|
*/
|
|
558
|
-
updateSettings(args: UpdateSettingsCommandInput, options?:
|
|
564
|
+
updateSettings(args: UpdateSettingsCommandInput, options?: DirectoryServiceRequestOptions): Promise<UpdateSettingsCommandOutput>;
|
|
559
565
|
updateSettings(args: UpdateSettingsCommandInput, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
560
|
-
updateSettings(args: UpdateSettingsCommandInput, options:
|
|
566
|
+
updateSettings(args: UpdateSettingsCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
561
567
|
/**
|
|
562
568
|
* @see {@link UpdateTrustCommand}
|
|
563
569
|
*/
|
|
564
|
-
updateTrust(args: UpdateTrustCommandInput, options?:
|
|
570
|
+
updateTrust(args: UpdateTrustCommandInput, options?: DirectoryServiceRequestOptions): Promise<UpdateTrustCommandOutput>;
|
|
565
571
|
updateTrust(args: UpdateTrustCommandInput, cb: (err: any, data?: UpdateTrustCommandOutput) => void): void;
|
|
566
|
-
updateTrust(args: UpdateTrustCommandInput, options:
|
|
572
|
+
updateTrust(args: UpdateTrustCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: UpdateTrustCommandOutput) => void): void;
|
|
567
573
|
/**
|
|
568
574
|
* @see {@link VerifyTrustCommand}
|
|
569
575
|
*/
|
|
570
|
-
verifyTrust(args: VerifyTrustCommandInput, options?:
|
|
576
|
+
verifyTrust(args: VerifyTrustCommandInput, options?: DirectoryServiceRequestOptions): Promise<VerifyTrustCommandOutput>;
|
|
571
577
|
verifyTrust(args: VerifyTrustCommandInput, cb: (err: any, data?: VerifyTrustCommandOutput) => void): void;
|
|
572
|
-
verifyTrust(args: VerifyTrustCommandInput, options:
|
|
578
|
+
verifyTrust(args: VerifyTrustCommandInput, options: DirectoryServiceRequestOptions, cb: (err: any, data?: VerifyTrustCommandOutput) => void): void;
|
|
573
579
|
/**
|
|
574
580
|
* @see {@link DescribeClientAuthenticationSettingsCommand}
|
|
575
581
|
* @param args - command input.
|