@aws-sdk/client-directory-service 3.716.0 → 3.723.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 +889 -405
- package/dist-es/DirectoryServiceClient.js +1 -0
- package/dist-es/models/models_0.js +148 -74
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class DirectoryServiceClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -16,210 +16,240 @@ export const ShareStatus = {
|
|
|
16
16
|
SHARING: "Sharing",
|
|
17
17
|
};
|
|
18
18
|
export class ClientException extends __BaseException {
|
|
19
|
+
name = "ClientException";
|
|
20
|
+
$fault = "client";
|
|
21
|
+
Message;
|
|
22
|
+
RequestId;
|
|
19
23
|
constructor(opts) {
|
|
20
24
|
super({
|
|
21
25
|
name: "ClientException",
|
|
22
26
|
$fault: "client",
|
|
23
27
|
...opts,
|
|
24
28
|
});
|
|
25
|
-
this.name = "ClientException";
|
|
26
|
-
this.$fault = "client";
|
|
27
29
|
Object.setPrototypeOf(this, ClientException.prototype);
|
|
28
30
|
this.Message = opts.Message;
|
|
29
31
|
this.RequestId = opts.RequestId;
|
|
30
32
|
}
|
|
31
33
|
}
|
|
32
34
|
export class DirectoryAlreadySharedException extends __BaseException {
|
|
35
|
+
name = "DirectoryAlreadySharedException";
|
|
36
|
+
$fault = "client";
|
|
37
|
+
Message;
|
|
38
|
+
RequestId;
|
|
33
39
|
constructor(opts) {
|
|
34
40
|
super({
|
|
35
41
|
name: "DirectoryAlreadySharedException",
|
|
36
42
|
$fault: "client",
|
|
37
43
|
...opts,
|
|
38
44
|
});
|
|
39
|
-
this.name = "DirectoryAlreadySharedException";
|
|
40
|
-
this.$fault = "client";
|
|
41
45
|
Object.setPrototypeOf(this, DirectoryAlreadySharedException.prototype);
|
|
42
46
|
this.Message = opts.Message;
|
|
43
47
|
this.RequestId = opts.RequestId;
|
|
44
48
|
}
|
|
45
49
|
}
|
|
46
50
|
export class EntityDoesNotExistException extends __BaseException {
|
|
51
|
+
name = "EntityDoesNotExistException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
Message;
|
|
54
|
+
RequestId;
|
|
47
55
|
constructor(opts) {
|
|
48
56
|
super({
|
|
49
57
|
name: "EntityDoesNotExistException",
|
|
50
58
|
$fault: "client",
|
|
51
59
|
...opts,
|
|
52
60
|
});
|
|
53
|
-
this.name = "EntityDoesNotExistException";
|
|
54
|
-
this.$fault = "client";
|
|
55
61
|
Object.setPrototypeOf(this, EntityDoesNotExistException.prototype);
|
|
56
62
|
this.Message = opts.Message;
|
|
57
63
|
this.RequestId = opts.RequestId;
|
|
58
64
|
}
|
|
59
65
|
}
|
|
60
66
|
export class InvalidParameterException extends __BaseException {
|
|
67
|
+
name = "InvalidParameterException";
|
|
68
|
+
$fault = "client";
|
|
69
|
+
Message;
|
|
70
|
+
RequestId;
|
|
61
71
|
constructor(opts) {
|
|
62
72
|
super({
|
|
63
73
|
name: "InvalidParameterException",
|
|
64
74
|
$fault: "client",
|
|
65
75
|
...opts,
|
|
66
76
|
});
|
|
67
|
-
this.name = "InvalidParameterException";
|
|
68
|
-
this.$fault = "client";
|
|
69
77
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
70
78
|
this.Message = opts.Message;
|
|
71
79
|
this.RequestId = opts.RequestId;
|
|
72
80
|
}
|
|
73
81
|
}
|
|
74
82
|
export class ServiceException extends __BaseException {
|
|
83
|
+
name = "ServiceException";
|
|
84
|
+
$fault = "server";
|
|
85
|
+
Message;
|
|
86
|
+
RequestId;
|
|
75
87
|
constructor(opts) {
|
|
76
88
|
super({
|
|
77
89
|
name: "ServiceException",
|
|
78
90
|
$fault: "server",
|
|
79
91
|
...opts,
|
|
80
92
|
});
|
|
81
|
-
this.name = "ServiceException";
|
|
82
|
-
this.$fault = "server";
|
|
83
93
|
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
84
94
|
this.Message = opts.Message;
|
|
85
95
|
this.RequestId = opts.RequestId;
|
|
86
96
|
}
|
|
87
97
|
}
|
|
88
98
|
export class AccessDeniedException extends __BaseException {
|
|
99
|
+
name = "AccessDeniedException";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
Message;
|
|
102
|
+
RequestId;
|
|
89
103
|
constructor(opts) {
|
|
90
104
|
super({
|
|
91
105
|
name: "AccessDeniedException",
|
|
92
106
|
$fault: "client",
|
|
93
107
|
...opts,
|
|
94
108
|
});
|
|
95
|
-
this.name = "AccessDeniedException";
|
|
96
|
-
this.$fault = "client";
|
|
97
109
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
98
110
|
this.Message = opts.Message;
|
|
99
111
|
this.RequestId = opts.RequestId;
|
|
100
112
|
}
|
|
101
113
|
}
|
|
102
114
|
export class DirectoryUnavailableException extends __BaseException {
|
|
115
|
+
name = "DirectoryUnavailableException";
|
|
116
|
+
$fault = "client";
|
|
117
|
+
Message;
|
|
118
|
+
RequestId;
|
|
103
119
|
constructor(opts) {
|
|
104
120
|
super({
|
|
105
121
|
name: "DirectoryUnavailableException",
|
|
106
122
|
$fault: "client",
|
|
107
123
|
...opts,
|
|
108
124
|
});
|
|
109
|
-
this.name = "DirectoryUnavailableException";
|
|
110
|
-
this.$fault = "client";
|
|
111
125
|
Object.setPrototypeOf(this, DirectoryUnavailableException.prototype);
|
|
112
126
|
this.Message = opts.Message;
|
|
113
127
|
this.RequestId = opts.RequestId;
|
|
114
128
|
}
|
|
115
129
|
}
|
|
116
130
|
export class EntityAlreadyExistsException extends __BaseException {
|
|
131
|
+
name = "EntityAlreadyExistsException";
|
|
132
|
+
$fault = "client";
|
|
133
|
+
Message;
|
|
134
|
+
RequestId;
|
|
117
135
|
constructor(opts) {
|
|
118
136
|
super({
|
|
119
137
|
name: "EntityAlreadyExistsException",
|
|
120
138
|
$fault: "client",
|
|
121
139
|
...opts,
|
|
122
140
|
});
|
|
123
|
-
this.name = "EntityAlreadyExistsException";
|
|
124
|
-
this.$fault = "client";
|
|
125
141
|
Object.setPrototypeOf(this, EntityAlreadyExistsException.prototype);
|
|
126
142
|
this.Message = opts.Message;
|
|
127
143
|
this.RequestId = opts.RequestId;
|
|
128
144
|
}
|
|
129
145
|
}
|
|
130
146
|
export class IpRouteLimitExceededException extends __BaseException {
|
|
147
|
+
name = "IpRouteLimitExceededException";
|
|
148
|
+
$fault = "client";
|
|
149
|
+
Message;
|
|
150
|
+
RequestId;
|
|
131
151
|
constructor(opts) {
|
|
132
152
|
super({
|
|
133
153
|
name: "IpRouteLimitExceededException",
|
|
134
154
|
$fault: "client",
|
|
135
155
|
...opts,
|
|
136
156
|
});
|
|
137
|
-
this.name = "IpRouteLimitExceededException";
|
|
138
|
-
this.$fault = "client";
|
|
139
157
|
Object.setPrototypeOf(this, IpRouteLimitExceededException.prototype);
|
|
140
158
|
this.Message = opts.Message;
|
|
141
159
|
this.RequestId = opts.RequestId;
|
|
142
160
|
}
|
|
143
161
|
}
|
|
144
162
|
export class DirectoryAlreadyInRegionException extends __BaseException {
|
|
163
|
+
name = "DirectoryAlreadyInRegionException";
|
|
164
|
+
$fault = "client";
|
|
165
|
+
Message;
|
|
166
|
+
RequestId;
|
|
145
167
|
constructor(opts) {
|
|
146
168
|
super({
|
|
147
169
|
name: "DirectoryAlreadyInRegionException",
|
|
148
170
|
$fault: "client",
|
|
149
171
|
...opts,
|
|
150
172
|
});
|
|
151
|
-
this.name = "DirectoryAlreadyInRegionException";
|
|
152
|
-
this.$fault = "client";
|
|
153
173
|
Object.setPrototypeOf(this, DirectoryAlreadyInRegionException.prototype);
|
|
154
174
|
this.Message = opts.Message;
|
|
155
175
|
this.RequestId = opts.RequestId;
|
|
156
176
|
}
|
|
157
177
|
}
|
|
158
178
|
export class DirectoryDoesNotExistException extends __BaseException {
|
|
179
|
+
name = "DirectoryDoesNotExistException";
|
|
180
|
+
$fault = "client";
|
|
181
|
+
Message;
|
|
182
|
+
RequestId;
|
|
159
183
|
constructor(opts) {
|
|
160
184
|
super({
|
|
161
185
|
name: "DirectoryDoesNotExistException",
|
|
162
186
|
$fault: "client",
|
|
163
187
|
...opts,
|
|
164
188
|
});
|
|
165
|
-
this.name = "DirectoryDoesNotExistException";
|
|
166
|
-
this.$fault = "client";
|
|
167
189
|
Object.setPrototypeOf(this, DirectoryDoesNotExistException.prototype);
|
|
168
190
|
this.Message = opts.Message;
|
|
169
191
|
this.RequestId = opts.RequestId;
|
|
170
192
|
}
|
|
171
193
|
}
|
|
172
194
|
export class RegionLimitExceededException extends __BaseException {
|
|
195
|
+
name = "RegionLimitExceededException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
Message;
|
|
198
|
+
RequestId;
|
|
173
199
|
constructor(opts) {
|
|
174
200
|
super({
|
|
175
201
|
name: "RegionLimitExceededException",
|
|
176
202
|
$fault: "client",
|
|
177
203
|
...opts,
|
|
178
204
|
});
|
|
179
|
-
this.name = "RegionLimitExceededException";
|
|
180
|
-
this.$fault = "client";
|
|
181
205
|
Object.setPrototypeOf(this, RegionLimitExceededException.prototype);
|
|
182
206
|
this.Message = opts.Message;
|
|
183
207
|
this.RequestId = opts.RequestId;
|
|
184
208
|
}
|
|
185
209
|
}
|
|
186
210
|
export class UnsupportedOperationException extends __BaseException {
|
|
211
|
+
name = "UnsupportedOperationException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
Message;
|
|
214
|
+
RequestId;
|
|
187
215
|
constructor(opts) {
|
|
188
216
|
super({
|
|
189
217
|
name: "UnsupportedOperationException",
|
|
190
218
|
$fault: "client",
|
|
191
219
|
...opts,
|
|
192
220
|
});
|
|
193
|
-
this.name = "UnsupportedOperationException";
|
|
194
|
-
this.$fault = "client";
|
|
195
221
|
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
196
222
|
this.Message = opts.Message;
|
|
197
223
|
this.RequestId = opts.RequestId;
|
|
198
224
|
}
|
|
199
225
|
}
|
|
200
226
|
export class TagLimitExceededException extends __BaseException {
|
|
227
|
+
name = "TagLimitExceededException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
Message;
|
|
230
|
+
RequestId;
|
|
201
231
|
constructor(opts) {
|
|
202
232
|
super({
|
|
203
233
|
name: "TagLimitExceededException",
|
|
204
234
|
$fault: "client",
|
|
205
235
|
...opts,
|
|
206
236
|
});
|
|
207
|
-
this.name = "TagLimitExceededException";
|
|
208
|
-
this.$fault = "client";
|
|
209
237
|
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
210
238
|
this.Message = opts.Message;
|
|
211
239
|
this.RequestId = opts.RequestId;
|
|
212
240
|
}
|
|
213
241
|
}
|
|
214
242
|
export class AuthenticationFailedException extends __BaseException {
|
|
243
|
+
name = "AuthenticationFailedException";
|
|
244
|
+
$fault = "client";
|
|
245
|
+
Message;
|
|
246
|
+
RequestId;
|
|
215
247
|
constructor(opts) {
|
|
216
248
|
super({
|
|
217
249
|
name: "AuthenticationFailedException",
|
|
218
250
|
$fault: "client",
|
|
219
251
|
...opts,
|
|
220
252
|
});
|
|
221
|
-
this.name = "AuthenticationFailedException";
|
|
222
|
-
this.$fault = "client";
|
|
223
253
|
Object.setPrototypeOf(this, AuthenticationFailedException.prototype);
|
|
224
254
|
this.Message = opts.Message;
|
|
225
255
|
this.RequestId = opts.RequestId;
|
|
@@ -238,56 +268,64 @@ export const CertificateType = {
|
|
|
238
268
|
CLIENT_LDAPS: "ClientLDAPS",
|
|
239
269
|
};
|
|
240
270
|
export class CertificateAlreadyExistsException extends __BaseException {
|
|
271
|
+
name = "CertificateAlreadyExistsException";
|
|
272
|
+
$fault = "client";
|
|
273
|
+
Message;
|
|
274
|
+
RequestId;
|
|
241
275
|
constructor(opts) {
|
|
242
276
|
super({
|
|
243
277
|
name: "CertificateAlreadyExistsException",
|
|
244
278
|
$fault: "client",
|
|
245
279
|
...opts,
|
|
246
280
|
});
|
|
247
|
-
this.name = "CertificateAlreadyExistsException";
|
|
248
|
-
this.$fault = "client";
|
|
249
281
|
Object.setPrototypeOf(this, CertificateAlreadyExistsException.prototype);
|
|
250
282
|
this.Message = opts.Message;
|
|
251
283
|
this.RequestId = opts.RequestId;
|
|
252
284
|
}
|
|
253
285
|
}
|
|
254
286
|
export class CertificateDoesNotExistException extends __BaseException {
|
|
287
|
+
name = "CertificateDoesNotExistException";
|
|
288
|
+
$fault = "client";
|
|
289
|
+
Message;
|
|
290
|
+
RequestId;
|
|
255
291
|
constructor(opts) {
|
|
256
292
|
super({
|
|
257
293
|
name: "CertificateDoesNotExistException",
|
|
258
294
|
$fault: "client",
|
|
259
295
|
...opts,
|
|
260
296
|
});
|
|
261
|
-
this.name = "CertificateDoesNotExistException";
|
|
262
|
-
this.$fault = "client";
|
|
263
297
|
Object.setPrototypeOf(this, CertificateDoesNotExistException.prototype);
|
|
264
298
|
this.Message = opts.Message;
|
|
265
299
|
this.RequestId = opts.RequestId;
|
|
266
300
|
}
|
|
267
301
|
}
|
|
268
302
|
export class CertificateInUseException extends __BaseException {
|
|
303
|
+
name = "CertificateInUseException";
|
|
304
|
+
$fault = "client";
|
|
305
|
+
Message;
|
|
306
|
+
RequestId;
|
|
269
307
|
constructor(opts) {
|
|
270
308
|
super({
|
|
271
309
|
name: "CertificateInUseException",
|
|
272
310
|
$fault: "client",
|
|
273
311
|
...opts,
|
|
274
312
|
});
|
|
275
|
-
this.name = "CertificateInUseException";
|
|
276
|
-
this.$fault = "client";
|
|
277
313
|
Object.setPrototypeOf(this, CertificateInUseException.prototype);
|
|
278
314
|
this.Message = opts.Message;
|
|
279
315
|
this.RequestId = opts.RequestId;
|
|
280
316
|
}
|
|
281
317
|
}
|
|
282
318
|
export class CertificateLimitExceededException extends __BaseException {
|
|
319
|
+
name = "CertificateLimitExceededException";
|
|
320
|
+
$fault = "client";
|
|
321
|
+
Message;
|
|
322
|
+
RequestId;
|
|
283
323
|
constructor(opts) {
|
|
284
324
|
super({
|
|
285
325
|
name: "CertificateLimitExceededException",
|
|
286
326
|
$fault: "client",
|
|
287
327
|
...opts,
|
|
288
328
|
});
|
|
289
|
-
this.name = "CertificateLimitExceededException";
|
|
290
|
-
this.$fault = "client";
|
|
291
329
|
Object.setPrototypeOf(this, CertificateLimitExceededException.prototype);
|
|
292
330
|
this.Message = opts.Message;
|
|
293
331
|
this.RequestId = opts.RequestId;
|
|
@@ -309,28 +347,32 @@ export const DirectorySize = {
|
|
|
309
347
|
SMALL: "Small",
|
|
310
348
|
};
|
|
311
349
|
export class DirectoryLimitExceededException extends __BaseException {
|
|
350
|
+
name = "DirectoryLimitExceededException";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
Message;
|
|
353
|
+
RequestId;
|
|
312
354
|
constructor(opts) {
|
|
313
355
|
super({
|
|
314
356
|
name: "DirectoryLimitExceededException",
|
|
315
357
|
$fault: "client",
|
|
316
358
|
...opts,
|
|
317
359
|
});
|
|
318
|
-
this.name = "DirectoryLimitExceededException";
|
|
319
|
-
this.$fault = "client";
|
|
320
360
|
Object.setPrototypeOf(this, DirectoryLimitExceededException.prototype);
|
|
321
361
|
this.Message = opts.Message;
|
|
322
362
|
this.RequestId = opts.RequestId;
|
|
323
363
|
}
|
|
324
364
|
}
|
|
325
365
|
export class InsufficientPermissionsException extends __BaseException {
|
|
366
|
+
name = "InsufficientPermissionsException";
|
|
367
|
+
$fault = "client";
|
|
368
|
+
Message;
|
|
369
|
+
RequestId;
|
|
326
370
|
constructor(opts) {
|
|
327
371
|
super({
|
|
328
372
|
name: "InsufficientPermissionsException",
|
|
329
373
|
$fault: "client",
|
|
330
374
|
...opts,
|
|
331
375
|
});
|
|
332
|
-
this.name = "InsufficientPermissionsException";
|
|
333
|
-
this.$fault = "client";
|
|
334
376
|
Object.setPrototypeOf(this, InsufficientPermissionsException.prototype);
|
|
335
377
|
this.Message = opts.Message;
|
|
336
378
|
this.RequestId = opts.RequestId;
|
|
@@ -341,14 +383,16 @@ export const DirectoryEdition = {
|
|
|
341
383
|
STANDARD: "Standard",
|
|
342
384
|
};
|
|
343
385
|
export class SnapshotLimitExceededException extends __BaseException {
|
|
386
|
+
name = "SnapshotLimitExceededException";
|
|
387
|
+
$fault = "client";
|
|
388
|
+
Message;
|
|
389
|
+
RequestId;
|
|
344
390
|
constructor(opts) {
|
|
345
391
|
super({
|
|
346
392
|
name: "SnapshotLimitExceededException",
|
|
347
393
|
$fault: "client",
|
|
348
394
|
...opts,
|
|
349
395
|
});
|
|
350
|
-
this.name = "SnapshotLimitExceededException";
|
|
351
|
-
this.$fault = "client";
|
|
352
396
|
Object.setPrototypeOf(this, SnapshotLimitExceededException.prototype);
|
|
353
397
|
this.Message = opts.Message;
|
|
354
398
|
this.RequestId = opts.RequestId;
|
|
@@ -410,14 +454,16 @@ export const DirectoryType = {
|
|
|
410
454
|
SIMPLE_AD: "SimpleAD",
|
|
411
455
|
};
|
|
412
456
|
export class InvalidNextTokenException extends __BaseException {
|
|
457
|
+
name = "InvalidNextTokenException";
|
|
458
|
+
$fault = "client";
|
|
459
|
+
Message;
|
|
460
|
+
RequestId;
|
|
413
461
|
constructor(opts) {
|
|
414
462
|
super({
|
|
415
463
|
name: "InvalidNextTokenException",
|
|
416
464
|
$fault: "client",
|
|
417
465
|
...opts,
|
|
418
466
|
});
|
|
419
|
-
this.name = "InvalidNextTokenException";
|
|
420
|
-
this.$fault = "client";
|
|
421
467
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
422
468
|
this.Message = opts.Message;
|
|
423
469
|
this.RequestId = opts.RequestId;
|
|
@@ -490,70 +536,80 @@ export const UpdateStatus = {
|
|
|
490
536
|
UPDATING: "Updating",
|
|
491
537
|
};
|
|
492
538
|
export class DirectoryInDesiredStateException extends __BaseException {
|
|
539
|
+
name = "DirectoryInDesiredStateException";
|
|
540
|
+
$fault = "client";
|
|
541
|
+
Message;
|
|
542
|
+
RequestId;
|
|
493
543
|
constructor(opts) {
|
|
494
544
|
super({
|
|
495
545
|
name: "DirectoryInDesiredStateException",
|
|
496
546
|
$fault: "client",
|
|
497
547
|
...opts,
|
|
498
548
|
});
|
|
499
|
-
this.name = "DirectoryInDesiredStateException";
|
|
500
|
-
this.$fault = "client";
|
|
501
549
|
Object.setPrototypeOf(this, DirectoryInDesiredStateException.prototype);
|
|
502
550
|
this.Message = opts.Message;
|
|
503
551
|
this.RequestId = opts.RequestId;
|
|
504
552
|
}
|
|
505
553
|
}
|
|
506
554
|
export class DirectoryNotSharedException extends __BaseException {
|
|
555
|
+
name = "DirectoryNotSharedException";
|
|
556
|
+
$fault = "client";
|
|
557
|
+
Message;
|
|
558
|
+
RequestId;
|
|
507
559
|
constructor(opts) {
|
|
508
560
|
super({
|
|
509
561
|
name: "DirectoryNotSharedException",
|
|
510
562
|
$fault: "client",
|
|
511
563
|
...opts,
|
|
512
564
|
});
|
|
513
|
-
this.name = "DirectoryNotSharedException";
|
|
514
|
-
this.$fault = "client";
|
|
515
565
|
Object.setPrototypeOf(this, DirectoryNotSharedException.prototype);
|
|
516
566
|
this.Message = opts.Message;
|
|
517
567
|
this.RequestId = opts.RequestId;
|
|
518
568
|
}
|
|
519
569
|
}
|
|
520
570
|
export class InvalidClientAuthStatusException extends __BaseException {
|
|
571
|
+
name = "InvalidClientAuthStatusException";
|
|
572
|
+
$fault = "client";
|
|
573
|
+
Message;
|
|
574
|
+
RequestId;
|
|
521
575
|
constructor(opts) {
|
|
522
576
|
super({
|
|
523
577
|
name: "InvalidClientAuthStatusException",
|
|
524
578
|
$fault: "client",
|
|
525
579
|
...opts,
|
|
526
580
|
});
|
|
527
|
-
this.name = "InvalidClientAuthStatusException";
|
|
528
|
-
this.$fault = "client";
|
|
529
581
|
Object.setPrototypeOf(this, InvalidClientAuthStatusException.prototype);
|
|
530
582
|
this.Message = opts.Message;
|
|
531
583
|
this.RequestId = opts.RequestId;
|
|
532
584
|
}
|
|
533
585
|
}
|
|
534
586
|
export class InvalidLDAPSStatusException extends __BaseException {
|
|
587
|
+
name = "InvalidLDAPSStatusException";
|
|
588
|
+
$fault = "client";
|
|
589
|
+
Message;
|
|
590
|
+
RequestId;
|
|
535
591
|
constructor(opts) {
|
|
536
592
|
super({
|
|
537
593
|
name: "InvalidLDAPSStatusException",
|
|
538
594
|
$fault: "client",
|
|
539
595
|
...opts,
|
|
540
596
|
});
|
|
541
|
-
this.name = "InvalidLDAPSStatusException";
|
|
542
|
-
this.$fault = "client";
|
|
543
597
|
Object.setPrototypeOf(this, InvalidLDAPSStatusException.prototype);
|
|
544
598
|
this.Message = opts.Message;
|
|
545
599
|
this.RequestId = opts.RequestId;
|
|
546
600
|
}
|
|
547
601
|
}
|
|
548
602
|
export class NoAvailableCertificateException extends __BaseException {
|
|
603
|
+
name = "NoAvailableCertificateException";
|
|
604
|
+
$fault = "client";
|
|
605
|
+
Message;
|
|
606
|
+
RequestId;
|
|
549
607
|
constructor(opts) {
|
|
550
608
|
super({
|
|
551
609
|
name: "NoAvailableCertificateException",
|
|
552
610
|
$fault: "client",
|
|
553
611
|
...opts,
|
|
554
612
|
});
|
|
555
|
-
this.name = "NoAvailableCertificateException";
|
|
556
|
-
this.$fault = "client";
|
|
557
613
|
Object.setPrototypeOf(this, NoAvailableCertificateException.prototype);
|
|
558
614
|
this.Message = opts.Message;
|
|
559
615
|
this.RequestId = opts.RequestId;
|
|
@@ -579,70 +635,80 @@ export const SchemaExtensionStatus = {
|
|
|
579
635
|
UPDATING_SCHEMA: "UpdatingSchema",
|
|
580
636
|
};
|
|
581
637
|
export class InvalidCertificateException extends __BaseException {
|
|
638
|
+
name = "InvalidCertificateException";
|
|
639
|
+
$fault = "client";
|
|
640
|
+
Message;
|
|
641
|
+
RequestId;
|
|
582
642
|
constructor(opts) {
|
|
583
643
|
super({
|
|
584
644
|
name: "InvalidCertificateException",
|
|
585
645
|
$fault: "client",
|
|
586
646
|
...opts,
|
|
587
647
|
});
|
|
588
|
-
this.name = "InvalidCertificateException";
|
|
589
|
-
this.$fault = "client";
|
|
590
648
|
Object.setPrototypeOf(this, InvalidCertificateException.prototype);
|
|
591
649
|
this.Message = opts.Message;
|
|
592
650
|
this.RequestId = opts.RequestId;
|
|
593
651
|
}
|
|
594
652
|
}
|
|
595
653
|
export class InvalidPasswordException extends __BaseException {
|
|
654
|
+
name = "InvalidPasswordException";
|
|
655
|
+
$fault = "client";
|
|
656
|
+
Message;
|
|
657
|
+
RequestId;
|
|
596
658
|
constructor(opts) {
|
|
597
659
|
super({
|
|
598
660
|
name: "InvalidPasswordException",
|
|
599
661
|
$fault: "client",
|
|
600
662
|
...opts,
|
|
601
663
|
});
|
|
602
|
-
this.name = "InvalidPasswordException";
|
|
603
|
-
this.$fault = "client";
|
|
604
664
|
Object.setPrototypeOf(this, InvalidPasswordException.prototype);
|
|
605
665
|
this.Message = opts.Message;
|
|
606
666
|
this.RequestId = opts.RequestId;
|
|
607
667
|
}
|
|
608
668
|
}
|
|
609
669
|
export class UserDoesNotExistException extends __BaseException {
|
|
670
|
+
name = "UserDoesNotExistException";
|
|
671
|
+
$fault = "client";
|
|
672
|
+
Message;
|
|
673
|
+
RequestId;
|
|
610
674
|
constructor(opts) {
|
|
611
675
|
super({
|
|
612
676
|
name: "UserDoesNotExistException",
|
|
613
677
|
$fault: "client",
|
|
614
678
|
...opts,
|
|
615
679
|
});
|
|
616
|
-
this.name = "UserDoesNotExistException";
|
|
617
|
-
this.$fault = "client";
|
|
618
680
|
Object.setPrototypeOf(this, UserDoesNotExistException.prototype);
|
|
619
681
|
this.Message = opts.Message;
|
|
620
682
|
this.RequestId = opts.RequestId;
|
|
621
683
|
}
|
|
622
684
|
}
|
|
623
685
|
export class InvalidTargetException extends __BaseException {
|
|
686
|
+
name = "InvalidTargetException";
|
|
687
|
+
$fault = "client";
|
|
688
|
+
Message;
|
|
689
|
+
RequestId;
|
|
624
690
|
constructor(opts) {
|
|
625
691
|
super({
|
|
626
692
|
name: "InvalidTargetException",
|
|
627
693
|
$fault: "client",
|
|
628
694
|
...opts,
|
|
629
695
|
});
|
|
630
|
-
this.name = "InvalidTargetException";
|
|
631
|
-
this.$fault = "client";
|
|
632
696
|
Object.setPrototypeOf(this, InvalidTargetException.prototype);
|
|
633
697
|
this.Message = opts.Message;
|
|
634
698
|
this.RequestId = opts.RequestId;
|
|
635
699
|
}
|
|
636
700
|
}
|
|
637
701
|
export class OrganizationsException extends __BaseException {
|
|
702
|
+
name = "OrganizationsException";
|
|
703
|
+
$fault = "client";
|
|
704
|
+
Message;
|
|
705
|
+
RequestId;
|
|
638
706
|
constructor(opts) {
|
|
639
707
|
super({
|
|
640
708
|
name: "OrganizationsException",
|
|
641
709
|
$fault: "client",
|
|
642
710
|
...opts,
|
|
643
711
|
});
|
|
644
|
-
this.name = "OrganizationsException";
|
|
645
|
-
this.$fault = "client";
|
|
646
712
|
Object.setPrototypeOf(this, OrganizationsException.prototype);
|
|
647
713
|
this.Message = opts.Message;
|
|
648
714
|
this.RequestId = opts.RequestId;
|
|
@@ -652,56 +718,64 @@ export const TargetType = {
|
|
|
652
718
|
ACCOUNT: "ACCOUNT",
|
|
653
719
|
};
|
|
654
720
|
export class ShareLimitExceededException extends __BaseException {
|
|
721
|
+
name = "ShareLimitExceededException";
|
|
722
|
+
$fault = "client";
|
|
723
|
+
Message;
|
|
724
|
+
RequestId;
|
|
655
725
|
constructor(opts) {
|
|
656
726
|
super({
|
|
657
727
|
name: "ShareLimitExceededException",
|
|
658
728
|
$fault: "client",
|
|
659
729
|
...opts,
|
|
660
730
|
});
|
|
661
|
-
this.name = "ShareLimitExceededException";
|
|
662
|
-
this.$fault = "client";
|
|
663
731
|
Object.setPrototypeOf(this, ShareLimitExceededException.prototype);
|
|
664
732
|
this.Message = opts.Message;
|
|
665
733
|
this.RequestId = opts.RequestId;
|
|
666
734
|
}
|
|
667
735
|
}
|
|
668
736
|
export class DomainControllerLimitExceededException extends __BaseException {
|
|
737
|
+
name = "DomainControllerLimitExceededException";
|
|
738
|
+
$fault = "client";
|
|
739
|
+
Message;
|
|
740
|
+
RequestId;
|
|
669
741
|
constructor(opts) {
|
|
670
742
|
super({
|
|
671
743
|
name: "DomainControllerLimitExceededException",
|
|
672
744
|
$fault: "client",
|
|
673
745
|
...opts,
|
|
674
746
|
});
|
|
675
|
-
this.name = "DomainControllerLimitExceededException";
|
|
676
|
-
this.$fault = "client";
|
|
677
747
|
Object.setPrototypeOf(this, DomainControllerLimitExceededException.prototype);
|
|
678
748
|
this.Message = opts.Message;
|
|
679
749
|
this.RequestId = opts.RequestId;
|
|
680
750
|
}
|
|
681
751
|
}
|
|
682
752
|
export class IncompatibleSettingsException extends __BaseException {
|
|
753
|
+
name = "IncompatibleSettingsException";
|
|
754
|
+
$fault = "client";
|
|
755
|
+
Message;
|
|
756
|
+
RequestId;
|
|
683
757
|
constructor(opts) {
|
|
684
758
|
super({
|
|
685
759
|
name: "IncompatibleSettingsException",
|
|
686
760
|
$fault: "client",
|
|
687
761
|
...opts,
|
|
688
762
|
});
|
|
689
|
-
this.name = "IncompatibleSettingsException";
|
|
690
|
-
this.$fault = "client";
|
|
691
763
|
Object.setPrototypeOf(this, IncompatibleSettingsException.prototype);
|
|
692
764
|
this.Message = opts.Message;
|
|
693
765
|
this.RequestId = opts.RequestId;
|
|
694
766
|
}
|
|
695
767
|
}
|
|
696
768
|
export class UnsupportedSettingsException extends __BaseException {
|
|
769
|
+
name = "UnsupportedSettingsException";
|
|
770
|
+
$fault = "client";
|
|
771
|
+
Message;
|
|
772
|
+
RequestId;
|
|
697
773
|
constructor(opts) {
|
|
698
774
|
super({
|
|
699
775
|
name: "UnsupportedSettingsException",
|
|
700
776
|
$fault: "client",
|
|
701
777
|
...opts,
|
|
702
778
|
});
|
|
703
|
-
this.name = "UnsupportedSettingsException";
|
|
704
|
-
this.$fault = "client";
|
|
705
779
|
Object.setPrototypeOf(this, UnsupportedSettingsException.prototype);
|
|
706
780
|
this.Message = opts.Message;
|
|
707
781
|
this.RequestId = opts.RequestId;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: DirectoryServiceClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: DirectoryServiceClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|