@aws-sdk/client-clouddirectory 3.934.0 → 3.935.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 +84 -83
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +83 -0
- package/dist-es/models/errors.js +495 -0
- package/dist-es/models/models_0.js +1 -578
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +171 -0
- package/dist-types/models/errors.d.ts +472 -0
- package/dist-types/models/models_0.d.ts +1 -642
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +101 -0
- package/dist-types/ts3.4/models/errors.d.ts +291 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -391
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,18 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CloudDirectoryServiceException as __BaseException } from "./CloudDirectoryServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
1
|
+
import { BatchReadExceptionType, ConsistencyLevel, DirectoryState, FacetAttributeType, FacetStyle, ObjectType, RangeMode, RequiredAttributeBehavior, RuleType, UpdateActionType } from "./enums";
|
|
16
2
|
/**
|
|
17
3
|
* <p>A unique identifier for an attribute.</p>
|
|
18
4
|
* @public
|
|
@@ -219,112 +205,6 @@ export interface AddFacetToObjectRequest {
|
|
|
219
205
|
*/
|
|
220
206
|
export interface AddFacetToObjectResponse {
|
|
221
207
|
}
|
|
222
|
-
/**
|
|
223
|
-
* <p>Operations are only permitted on enabled directories.</p>
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
export declare class DirectoryNotEnabledException extends __BaseException {
|
|
227
|
-
readonly name: "DirectoryNotEnabledException";
|
|
228
|
-
readonly $fault: "client";
|
|
229
|
-
Message?: string | undefined;
|
|
230
|
-
/**
|
|
231
|
-
* @internal
|
|
232
|
-
*/
|
|
233
|
-
constructor(opts: __ExceptionOptionType<DirectoryNotEnabledException, __BaseException>);
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
237
|
-
* validated with the schema.</p>
|
|
238
|
-
* @public
|
|
239
|
-
*/
|
|
240
|
-
export declare class FacetValidationException extends __BaseException {
|
|
241
|
-
readonly name: "FacetValidationException";
|
|
242
|
-
readonly $fault: "client";
|
|
243
|
-
Message?: string | undefined;
|
|
244
|
-
/**
|
|
245
|
-
* @internal
|
|
246
|
-
*/
|
|
247
|
-
constructor(opts: __ExceptionOptionType<FacetValidationException, __BaseException>);
|
|
248
|
-
}
|
|
249
|
-
/**
|
|
250
|
-
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
251
|
-
* @public
|
|
252
|
-
*/
|
|
253
|
-
export declare class InternalServiceException extends __BaseException {
|
|
254
|
-
readonly name: "InternalServiceException";
|
|
255
|
-
readonly $fault: "server";
|
|
256
|
-
Message?: string | undefined;
|
|
257
|
-
/**
|
|
258
|
-
* @internal
|
|
259
|
-
*/
|
|
260
|
-
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
261
|
-
}
|
|
262
|
-
/**
|
|
263
|
-
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
264
|
-
* @public
|
|
265
|
-
*/
|
|
266
|
-
export declare class InvalidArnException extends __BaseException {
|
|
267
|
-
readonly name: "InvalidArnException";
|
|
268
|
-
readonly $fault: "client";
|
|
269
|
-
Message?: string | undefined;
|
|
270
|
-
/**
|
|
271
|
-
* @internal
|
|
272
|
-
*/
|
|
273
|
-
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
274
|
-
}
|
|
275
|
-
/**
|
|
276
|
-
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
277
|
-
* @public
|
|
278
|
-
*/
|
|
279
|
-
export declare class LimitExceededException extends __BaseException {
|
|
280
|
-
readonly name: "LimitExceededException";
|
|
281
|
-
readonly $fault: "client";
|
|
282
|
-
Message?: string | undefined;
|
|
283
|
-
/**
|
|
284
|
-
* @internal
|
|
285
|
-
*/
|
|
286
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
287
|
-
}
|
|
288
|
-
/**
|
|
289
|
-
* <p>The specified resource could not be found.</p>
|
|
290
|
-
* @public
|
|
291
|
-
*/
|
|
292
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
293
|
-
readonly name: "ResourceNotFoundException";
|
|
294
|
-
readonly $fault: "client";
|
|
295
|
-
Message?: string | undefined;
|
|
296
|
-
/**
|
|
297
|
-
* @internal
|
|
298
|
-
*/
|
|
299
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
300
|
-
}
|
|
301
|
-
/**
|
|
302
|
-
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
303
|
-
* @public
|
|
304
|
-
*/
|
|
305
|
-
export declare class RetryableConflictException extends __BaseException {
|
|
306
|
-
readonly name: "RetryableConflictException";
|
|
307
|
-
readonly $fault: "client";
|
|
308
|
-
Message?: string | undefined;
|
|
309
|
-
/**
|
|
310
|
-
* @internal
|
|
311
|
-
*/
|
|
312
|
-
constructor(opts: __ExceptionOptionType<RetryableConflictException, __BaseException>);
|
|
313
|
-
}
|
|
314
|
-
/**
|
|
315
|
-
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
316
|
-
* message.</p>
|
|
317
|
-
* @public
|
|
318
|
-
*/
|
|
319
|
-
export declare class ValidationException extends __BaseException {
|
|
320
|
-
readonly name: "ValidationException";
|
|
321
|
-
readonly $fault: "client";
|
|
322
|
-
Message?: string | undefined;
|
|
323
|
-
/**
|
|
324
|
-
* @internal
|
|
325
|
-
*/
|
|
326
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
327
|
-
}
|
|
328
208
|
/**
|
|
329
209
|
* @public
|
|
330
210
|
*/
|
|
@@ -359,34 +239,6 @@ export interface ApplySchemaResponse {
|
|
|
359
239
|
*/
|
|
360
240
|
DirectoryArn?: string | undefined;
|
|
361
241
|
}
|
|
362
|
-
/**
|
|
363
|
-
* <p>Indicates that an attempt to make an attachment was invalid. For example, attaching two nodes
|
|
364
|
-
* with a link type that is not applicable to the nodes or attempting to apply a schema to a directory a second time.</p>
|
|
365
|
-
* @public
|
|
366
|
-
*/
|
|
367
|
-
export declare class InvalidAttachmentException extends __BaseException {
|
|
368
|
-
readonly name: "InvalidAttachmentException";
|
|
369
|
-
readonly $fault: "client";
|
|
370
|
-
Message?: string | undefined;
|
|
371
|
-
/**
|
|
372
|
-
* @internal
|
|
373
|
-
*/
|
|
374
|
-
constructor(opts: __ExceptionOptionType<InvalidAttachmentException, __BaseException>);
|
|
375
|
-
}
|
|
376
|
-
/**
|
|
377
|
-
* <p>Indicates that a schema could not be created due to a naming conflict. Please select a
|
|
378
|
-
* different name and then try again.</p>
|
|
379
|
-
* @public
|
|
380
|
-
*/
|
|
381
|
-
export declare class SchemaAlreadyExistsException extends __BaseException {
|
|
382
|
-
readonly name: "SchemaAlreadyExistsException";
|
|
383
|
-
readonly $fault: "client";
|
|
384
|
-
Message?: string | undefined;
|
|
385
|
-
/**
|
|
386
|
-
* @internal
|
|
387
|
-
*/
|
|
388
|
-
constructor(opts: __ExceptionOptionType<SchemaAlreadyExistsException, __BaseException>);
|
|
389
|
-
}
|
|
390
242
|
/**
|
|
391
243
|
* @public
|
|
392
244
|
*/
|
|
@@ -424,20 +276,6 @@ export interface AttachObjectResponse {
|
|
|
424
276
|
*/
|
|
425
277
|
AttachedObjectIdentifier?: string | undefined;
|
|
426
278
|
}
|
|
427
|
-
/**
|
|
428
|
-
* <p>Indicates that a link could not be created due to a naming conflict. Choose a different
|
|
429
|
-
* name and then try again.</p>
|
|
430
|
-
* @public
|
|
431
|
-
*/
|
|
432
|
-
export declare class LinkNameAlreadyInUseException extends __BaseException {
|
|
433
|
-
readonly name: "LinkNameAlreadyInUseException";
|
|
434
|
-
readonly $fault: "client";
|
|
435
|
-
Message?: string | undefined;
|
|
436
|
-
/**
|
|
437
|
-
* @internal
|
|
438
|
-
*/
|
|
439
|
-
constructor(opts: __ExceptionOptionType<LinkNameAlreadyInUseException, __BaseException>);
|
|
440
|
-
}
|
|
441
279
|
/**
|
|
442
280
|
* @public
|
|
443
281
|
*/
|
|
@@ -465,19 +303,6 @@ export interface AttachPolicyRequest {
|
|
|
465
303
|
*/
|
|
466
304
|
export interface AttachPolicyResponse {
|
|
467
305
|
}
|
|
468
|
-
/**
|
|
469
|
-
* <p>Indicates that the requested operation can only operate on policy objects.</p>
|
|
470
|
-
* @public
|
|
471
|
-
*/
|
|
472
|
-
export declare class NotPolicyException extends __BaseException {
|
|
473
|
-
readonly name: "NotPolicyException";
|
|
474
|
-
readonly $fault: "client";
|
|
475
|
-
Message?: string | undefined;
|
|
476
|
-
/**
|
|
477
|
-
* @internal
|
|
478
|
-
*/
|
|
479
|
-
constructor(opts: __ExceptionOptionType<NotPolicyException, __BaseException>);
|
|
480
|
-
}
|
|
481
306
|
/**
|
|
482
307
|
* @public
|
|
483
308
|
*/
|
|
@@ -509,32 +334,6 @@ export interface AttachToIndexResponse {
|
|
|
509
334
|
*/
|
|
510
335
|
AttachedObjectIdentifier?: string | undefined;
|
|
511
336
|
}
|
|
512
|
-
/**
|
|
513
|
-
* <p>An object has been attempted to be attached to an object that does not have the appropriate attribute value.</p>
|
|
514
|
-
* @public
|
|
515
|
-
*/
|
|
516
|
-
export declare class IndexedAttributeMissingException extends __BaseException {
|
|
517
|
-
readonly name: "IndexedAttributeMissingException";
|
|
518
|
-
readonly $fault: "client";
|
|
519
|
-
Message?: string | undefined;
|
|
520
|
-
/**
|
|
521
|
-
* @internal
|
|
522
|
-
*/
|
|
523
|
-
constructor(opts: __ExceptionOptionType<IndexedAttributeMissingException, __BaseException>);
|
|
524
|
-
}
|
|
525
|
-
/**
|
|
526
|
-
* <p>Indicates that the requested operation can only operate on index objects.</p>
|
|
527
|
-
* @public
|
|
528
|
-
*/
|
|
529
|
-
export declare class NotIndexException extends __BaseException {
|
|
530
|
-
readonly name: "NotIndexException";
|
|
531
|
-
readonly $fault: "client";
|
|
532
|
-
Message?: string | undefined;
|
|
533
|
-
/**
|
|
534
|
-
* @internal
|
|
535
|
-
*/
|
|
536
|
-
constructor(opts: __ExceptionOptionType<NotIndexException, __BaseException>);
|
|
537
|
-
}
|
|
538
337
|
/**
|
|
539
338
|
* <p>Identifies the attribute name and value for a typed link.</p>
|
|
540
339
|
* @public
|
|
@@ -640,18 +439,6 @@ export interface AttachTypedLinkResponse {
|
|
|
640
439
|
*/
|
|
641
440
|
TypedLinkSpecifier?: TypedLinkSpecifier | undefined;
|
|
642
441
|
}
|
|
643
|
-
/**
|
|
644
|
-
* @public
|
|
645
|
-
* @enum
|
|
646
|
-
*/
|
|
647
|
-
export declare const ConsistencyLevel: {
|
|
648
|
-
readonly EVENTUAL: "EVENTUAL";
|
|
649
|
-
readonly SERIALIZABLE: "SERIALIZABLE";
|
|
650
|
-
};
|
|
651
|
-
/**
|
|
652
|
-
* @public
|
|
653
|
-
*/
|
|
654
|
-
export type ConsistencyLevel = (typeof ConsistencyLevel)[keyof typeof ConsistencyLevel];
|
|
655
442
|
/**
|
|
656
443
|
* <p>Retrieves attributes that are associated with a typed link inside a <a>BatchRead</a> operation. For more information, see <a>GetLinkAttributes</a> and <a>BatchReadRequest$Operations</a>.</p>
|
|
657
444
|
* @public
|
|
@@ -721,21 +508,6 @@ export interface BatchListAttachedIndices {
|
|
|
721
508
|
*/
|
|
722
509
|
MaxResults?: number | undefined;
|
|
723
510
|
}
|
|
724
|
-
/**
|
|
725
|
-
* @public
|
|
726
|
-
* @enum
|
|
727
|
-
*/
|
|
728
|
-
export declare const RangeMode: {
|
|
729
|
-
readonly EXCLUSIVE: "EXCLUSIVE";
|
|
730
|
-
readonly FIRST: "FIRST";
|
|
731
|
-
readonly INCLUSIVE: "INCLUSIVE";
|
|
732
|
-
readonly LAST: "LAST";
|
|
733
|
-
readonly LAST_BEFORE_MISSING_VALUES: "LAST_BEFORE_MISSING_VALUES";
|
|
734
|
-
};
|
|
735
|
-
/**
|
|
736
|
-
* @public
|
|
737
|
-
*/
|
|
738
|
-
export type RangeMode = (typeof RangeMode)[keyof typeof RangeMode];
|
|
739
511
|
/**
|
|
740
512
|
* <p>A range of attribute values. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_range_filters.html">Range Filters</a>.</p>
|
|
741
513
|
* @public
|
|
@@ -1155,29 +927,6 @@ export interface BatchReadRequest {
|
|
|
1155
927
|
*/
|
|
1156
928
|
ConsistencyLevel?: ConsistencyLevel | undefined;
|
|
1157
929
|
}
|
|
1158
|
-
/**
|
|
1159
|
-
* @public
|
|
1160
|
-
* @enum
|
|
1161
|
-
*/
|
|
1162
|
-
export declare const BatchReadExceptionType: {
|
|
1163
|
-
readonly AccessDeniedException: "AccessDeniedException";
|
|
1164
|
-
readonly CannotListParentOfRootException: "CannotListParentOfRootException";
|
|
1165
|
-
readonly DirectoryNotEnabledException: "DirectoryNotEnabledException";
|
|
1166
|
-
readonly FacetValidationException: "FacetValidationException";
|
|
1167
|
-
readonly InternalServiceException: "InternalServiceException";
|
|
1168
|
-
readonly InvalidArnException: "InvalidArnException";
|
|
1169
|
-
readonly InvalidNextTokenException: "InvalidNextTokenException";
|
|
1170
|
-
readonly LimitExceededException: "LimitExceededException";
|
|
1171
|
-
readonly NotIndexException: "NotIndexException";
|
|
1172
|
-
readonly NotNodeException: "NotNodeException";
|
|
1173
|
-
readonly NotPolicyException: "NotPolicyException";
|
|
1174
|
-
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
1175
|
-
readonly ValidationException: "ValidationException";
|
|
1176
|
-
};
|
|
1177
|
-
/**
|
|
1178
|
-
* @public
|
|
1179
|
-
*/
|
|
1180
|
-
export type BatchReadExceptionType = (typeof BatchReadExceptionType)[keyof typeof BatchReadExceptionType];
|
|
1181
930
|
/**
|
|
1182
931
|
* <p>The batch read exception structure, which contains the exception type and
|
|
1183
932
|
* message.</p>
|
|
@@ -1620,49 +1369,6 @@ export interface BatchReadResponse {
|
|
|
1620
1369
|
*/
|
|
1621
1370
|
Responses?: BatchReadOperationResponse[] | undefined;
|
|
1622
1371
|
}
|
|
1623
|
-
/**
|
|
1624
|
-
* @public
|
|
1625
|
-
* @enum
|
|
1626
|
-
*/
|
|
1627
|
-
export declare const BatchWriteExceptionType: {
|
|
1628
|
-
readonly AccessDeniedException: "AccessDeniedException";
|
|
1629
|
-
readonly DirectoryNotEnabledException: "DirectoryNotEnabledException";
|
|
1630
|
-
readonly FacetValidationException: "FacetValidationException";
|
|
1631
|
-
readonly IndexedAttributeMissingException: "IndexedAttributeMissingException";
|
|
1632
|
-
readonly InternalServiceException: "InternalServiceException";
|
|
1633
|
-
readonly InvalidArnException: "InvalidArnException";
|
|
1634
|
-
readonly InvalidAttachmentException: "InvalidAttachmentException";
|
|
1635
|
-
readonly LimitExceededException: "LimitExceededException";
|
|
1636
|
-
readonly LinkNameAlreadyInUseException: "LinkNameAlreadyInUseException";
|
|
1637
|
-
readonly NotIndexException: "NotIndexException";
|
|
1638
|
-
readonly NotNodeException: "NotNodeException";
|
|
1639
|
-
readonly NotPolicyException: "NotPolicyException";
|
|
1640
|
-
readonly ObjectAlreadyDetachedException: "ObjectAlreadyDetachedException";
|
|
1641
|
-
readonly ObjectNotDetachedException: "ObjectNotDetachedException";
|
|
1642
|
-
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
1643
|
-
readonly StillContainsLinksException: "StillContainsLinksException";
|
|
1644
|
-
readonly UnsupportedIndexTypeException: "UnsupportedIndexTypeException";
|
|
1645
|
-
readonly ValidationException: "ValidationException";
|
|
1646
|
-
};
|
|
1647
|
-
/**
|
|
1648
|
-
* @public
|
|
1649
|
-
*/
|
|
1650
|
-
export type BatchWriteExceptionType = (typeof BatchWriteExceptionType)[keyof typeof BatchWriteExceptionType];
|
|
1651
|
-
/**
|
|
1652
|
-
* <p>A <code>BatchWrite</code> exception has occurred.</p>
|
|
1653
|
-
* @public
|
|
1654
|
-
*/
|
|
1655
|
-
export declare class BatchWriteException extends __BaseException {
|
|
1656
|
-
readonly name: "BatchWriteException";
|
|
1657
|
-
readonly $fault: "client";
|
|
1658
|
-
Index?: number | undefined;
|
|
1659
|
-
Type?: BatchWriteExceptionType | undefined;
|
|
1660
|
-
Message?: string | undefined;
|
|
1661
|
-
/**
|
|
1662
|
-
* @internal
|
|
1663
|
-
*/
|
|
1664
|
-
constructor(opts: __ExceptionOptionType<BatchWriteException, __BaseException>);
|
|
1665
|
-
}
|
|
1666
1372
|
/**
|
|
1667
1373
|
* <p>Represents the output of a batch add facet to object operation.</p>
|
|
1668
1374
|
* @public
|
|
@@ -1922,18 +1628,6 @@ export interface BatchRemoveFacetFromObject {
|
|
|
1922
1628
|
*/
|
|
1923
1629
|
ObjectReference: ObjectReference | undefined;
|
|
1924
1630
|
}
|
|
1925
|
-
/**
|
|
1926
|
-
* @public
|
|
1927
|
-
* @enum
|
|
1928
|
-
*/
|
|
1929
|
-
export declare const UpdateActionType: {
|
|
1930
|
-
readonly CREATE_OR_UPDATE: "CREATE_OR_UPDATE";
|
|
1931
|
-
readonly DELETE: "DELETE";
|
|
1932
|
-
};
|
|
1933
|
-
/**
|
|
1934
|
-
* @public
|
|
1935
|
-
*/
|
|
1936
|
-
export type UpdateActionType = (typeof UpdateActionType)[keyof typeof UpdateActionType];
|
|
1937
1631
|
/**
|
|
1938
1632
|
* <p>The action to take on a typed link attribute value. Updates are only supported for attributes which don’t contribute to link identity.</p>
|
|
1939
1633
|
* @public
|
|
@@ -2396,34 +2090,6 @@ export interface CreateDirectoryResponse {
|
|
|
2396
2090
|
*/
|
|
2397
2091
|
AppliedSchemaArn: string | undefined;
|
|
2398
2092
|
}
|
|
2399
|
-
/**
|
|
2400
|
-
* <p>Indicates that a <a>Directory</a> could not be created due to a naming
|
|
2401
|
-
* conflict. Choose a different name and try again.</p>
|
|
2402
|
-
* @public
|
|
2403
|
-
*/
|
|
2404
|
-
export declare class DirectoryAlreadyExistsException extends __BaseException {
|
|
2405
|
-
readonly name: "DirectoryAlreadyExistsException";
|
|
2406
|
-
readonly $fault: "client";
|
|
2407
|
-
Message?: string | undefined;
|
|
2408
|
-
/**
|
|
2409
|
-
* @internal
|
|
2410
|
-
*/
|
|
2411
|
-
constructor(opts: __ExceptionOptionType<DirectoryAlreadyExistsException, __BaseException>);
|
|
2412
|
-
}
|
|
2413
|
-
/**
|
|
2414
|
-
* @public
|
|
2415
|
-
* @enum
|
|
2416
|
-
*/
|
|
2417
|
-
export declare const RuleType: {
|
|
2418
|
-
readonly BINARY_LENGTH: "BINARY_LENGTH";
|
|
2419
|
-
readonly NUMBER_COMPARISON: "NUMBER_COMPARISON";
|
|
2420
|
-
readonly STRING_FROM_SET: "STRING_FROM_SET";
|
|
2421
|
-
readonly STRING_LENGTH: "STRING_LENGTH";
|
|
2422
|
-
};
|
|
2423
|
-
/**
|
|
2424
|
-
* @public
|
|
2425
|
-
*/
|
|
2426
|
-
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
2427
2093
|
/**
|
|
2428
2094
|
* <p>Contains an Amazon Resource Name (ARN) and parameters that are associated with the
|
|
2429
2095
|
* rule.</p>
|
|
@@ -2441,22 +2107,6 @@ export interface Rule {
|
|
|
2441
2107
|
*/
|
|
2442
2108
|
Parameters?: Record<string, string> | undefined;
|
|
2443
2109
|
}
|
|
2444
|
-
/**
|
|
2445
|
-
* @public
|
|
2446
|
-
* @enum
|
|
2447
|
-
*/
|
|
2448
|
-
export declare const FacetAttributeType: {
|
|
2449
|
-
readonly BINARY: "BINARY";
|
|
2450
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
2451
|
-
readonly DATETIME: "DATETIME";
|
|
2452
|
-
readonly NUMBER: "NUMBER";
|
|
2453
|
-
readonly STRING: "STRING";
|
|
2454
|
-
readonly VARIANT: "VARIANT";
|
|
2455
|
-
};
|
|
2456
|
-
/**
|
|
2457
|
-
* @public
|
|
2458
|
-
*/
|
|
2459
|
-
export type FacetAttributeType = (typeof FacetAttributeType)[keyof typeof FacetAttributeType];
|
|
2460
2110
|
/**
|
|
2461
2111
|
* <p>A facet attribute definition. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html">Attribute References</a> for more information.</p>
|
|
2462
2112
|
* @public
|
|
@@ -2500,18 +2150,6 @@ export interface FacetAttributeReference {
|
|
|
2500
2150
|
*/
|
|
2501
2151
|
TargetAttributeName: string | undefined;
|
|
2502
2152
|
}
|
|
2503
|
-
/**
|
|
2504
|
-
* @public
|
|
2505
|
-
* @enum
|
|
2506
|
-
*/
|
|
2507
|
-
export declare const RequiredAttributeBehavior: {
|
|
2508
|
-
readonly NOT_REQUIRED: "NOT_REQUIRED";
|
|
2509
|
-
readonly REQUIRED_ALWAYS: "REQUIRED_ALWAYS";
|
|
2510
|
-
};
|
|
2511
|
-
/**
|
|
2512
|
-
* @public
|
|
2513
|
-
*/
|
|
2514
|
-
export type RequiredAttributeBehavior = (typeof RequiredAttributeBehavior)[keyof typeof RequiredAttributeBehavior];
|
|
2515
2153
|
/**
|
|
2516
2154
|
* <p>An attribute that is associated with the <a>Facet</a>.</p>
|
|
2517
2155
|
* @public
|
|
@@ -2539,32 +2177,6 @@ export interface FacetAttribute {
|
|
|
2539
2177
|
*/
|
|
2540
2178
|
RequiredBehavior?: RequiredAttributeBehavior | undefined;
|
|
2541
2179
|
}
|
|
2542
|
-
/**
|
|
2543
|
-
* @public
|
|
2544
|
-
* @enum
|
|
2545
|
-
*/
|
|
2546
|
-
export declare const FacetStyle: {
|
|
2547
|
-
readonly DYNAMIC: "DYNAMIC";
|
|
2548
|
-
readonly STATIC: "STATIC";
|
|
2549
|
-
};
|
|
2550
|
-
/**
|
|
2551
|
-
* @public
|
|
2552
|
-
*/
|
|
2553
|
-
export type FacetStyle = (typeof FacetStyle)[keyof typeof FacetStyle];
|
|
2554
|
-
/**
|
|
2555
|
-
* @public
|
|
2556
|
-
* @enum
|
|
2557
|
-
*/
|
|
2558
|
-
export declare const ObjectType: {
|
|
2559
|
-
readonly INDEX: "INDEX";
|
|
2560
|
-
readonly LEAF_NODE: "LEAF_NODE";
|
|
2561
|
-
readonly NODE: "NODE";
|
|
2562
|
-
readonly POLICY: "POLICY";
|
|
2563
|
-
};
|
|
2564
|
-
/**
|
|
2565
|
-
* @public
|
|
2566
|
-
*/
|
|
2567
|
-
export type ObjectType = (typeof ObjectType)[keyof typeof ObjectType];
|
|
2568
2180
|
/**
|
|
2569
2181
|
* @public
|
|
2570
2182
|
*/
|
|
@@ -2623,32 +2235,6 @@ export interface CreateFacetRequest {
|
|
|
2623
2235
|
*/
|
|
2624
2236
|
export interface CreateFacetResponse {
|
|
2625
2237
|
}
|
|
2626
|
-
/**
|
|
2627
|
-
* <p>A facet with the same name already exists.</p>
|
|
2628
|
-
* @public
|
|
2629
|
-
*/
|
|
2630
|
-
export declare class FacetAlreadyExistsException extends __BaseException {
|
|
2631
|
-
readonly name: "FacetAlreadyExistsException";
|
|
2632
|
-
readonly $fault: "client";
|
|
2633
|
-
Message?: string | undefined;
|
|
2634
|
-
/**
|
|
2635
|
-
* @internal
|
|
2636
|
-
*/
|
|
2637
|
-
constructor(opts: __ExceptionOptionType<FacetAlreadyExistsException, __BaseException>);
|
|
2638
|
-
}
|
|
2639
|
-
/**
|
|
2640
|
-
* <p>Occurs when any of the rule parameter keys or values are invalid.</p>
|
|
2641
|
-
* @public
|
|
2642
|
-
*/
|
|
2643
|
-
export declare class InvalidRuleException extends __BaseException {
|
|
2644
|
-
readonly name: "InvalidRuleException";
|
|
2645
|
-
readonly $fault: "client";
|
|
2646
|
-
Message?: string | undefined;
|
|
2647
|
-
/**
|
|
2648
|
-
* @internal
|
|
2649
|
-
*/
|
|
2650
|
-
constructor(opts: __ExceptionOptionType<InvalidRuleException, __BaseException>);
|
|
2651
|
-
}
|
|
2652
2238
|
/**
|
|
2653
2239
|
* @public
|
|
2654
2240
|
*/
|
|
@@ -2691,19 +2277,6 @@ export interface CreateIndexResponse {
|
|
|
2691
2277
|
*/
|
|
2692
2278
|
ObjectIdentifier?: string | undefined;
|
|
2693
2279
|
}
|
|
2694
|
-
/**
|
|
2695
|
-
* <p>Indicates that the requested index type is not supported.</p>
|
|
2696
|
-
* @public
|
|
2697
|
-
*/
|
|
2698
|
-
export declare class UnsupportedIndexTypeException extends __BaseException {
|
|
2699
|
-
readonly name: "UnsupportedIndexTypeException";
|
|
2700
|
-
readonly $fault: "client";
|
|
2701
|
-
Message?: string | undefined;
|
|
2702
|
-
/**
|
|
2703
|
-
* @internal
|
|
2704
|
-
*/
|
|
2705
|
-
constructor(opts: __ExceptionOptionType<UnsupportedIndexTypeException, __BaseException>);
|
|
2706
|
-
}
|
|
2707
2280
|
/**
|
|
2708
2281
|
* @public
|
|
2709
2282
|
*/
|
|
@@ -2869,33 +2442,6 @@ export interface DeleteDirectoryResponse {
|
|
|
2869
2442
|
*/
|
|
2870
2443
|
DirectoryArn: string | undefined;
|
|
2871
2444
|
}
|
|
2872
|
-
/**
|
|
2873
|
-
* <p>A directory that has been deleted and to which access has been attempted. Note: The
|
|
2874
|
-
* requested resource will eventually cease to exist.</p>
|
|
2875
|
-
* @public
|
|
2876
|
-
*/
|
|
2877
|
-
export declare class DirectoryDeletedException extends __BaseException {
|
|
2878
|
-
readonly name: "DirectoryDeletedException";
|
|
2879
|
-
readonly $fault: "client";
|
|
2880
|
-
Message?: string | undefined;
|
|
2881
|
-
/**
|
|
2882
|
-
* @internal
|
|
2883
|
-
*/
|
|
2884
|
-
constructor(opts: __ExceptionOptionType<DirectoryDeletedException, __BaseException>);
|
|
2885
|
-
}
|
|
2886
|
-
/**
|
|
2887
|
-
* <p>An operation can only operate on a disabled directory.</p>
|
|
2888
|
-
* @public
|
|
2889
|
-
*/
|
|
2890
|
-
export declare class DirectoryNotDisabledException extends __BaseException {
|
|
2891
|
-
readonly name: "DirectoryNotDisabledException";
|
|
2892
|
-
readonly $fault: "client";
|
|
2893
|
-
Message?: string | undefined;
|
|
2894
|
-
/**
|
|
2895
|
-
* @internal
|
|
2896
|
-
*/
|
|
2897
|
-
constructor(opts: __ExceptionOptionType<DirectoryNotDisabledException, __BaseException>);
|
|
2898
|
-
}
|
|
2899
2445
|
/**
|
|
2900
2446
|
* @public
|
|
2901
2447
|
*/
|
|
@@ -2917,33 +2463,6 @@ export interface DeleteFacetRequest {
|
|
|
2917
2463
|
*/
|
|
2918
2464
|
export interface DeleteFacetResponse {
|
|
2919
2465
|
}
|
|
2920
|
-
/**
|
|
2921
|
-
* <p>Occurs when deleting a facet that contains an attribute that is a target to an
|
|
2922
|
-
* attribute reference in a different facet.</p>
|
|
2923
|
-
* @public
|
|
2924
|
-
*/
|
|
2925
|
-
export declare class FacetInUseException extends __BaseException {
|
|
2926
|
-
readonly name: "FacetInUseException";
|
|
2927
|
-
readonly $fault: "client";
|
|
2928
|
-
Message?: string | undefined;
|
|
2929
|
-
/**
|
|
2930
|
-
* @internal
|
|
2931
|
-
*/
|
|
2932
|
-
constructor(opts: __ExceptionOptionType<FacetInUseException, __BaseException>);
|
|
2933
|
-
}
|
|
2934
|
-
/**
|
|
2935
|
-
* <p>The specified <a>Facet</a> could not be found.</p>
|
|
2936
|
-
* @public
|
|
2937
|
-
*/
|
|
2938
|
-
export declare class FacetNotFoundException extends __BaseException {
|
|
2939
|
-
readonly name: "FacetNotFoundException";
|
|
2940
|
-
readonly $fault: "client";
|
|
2941
|
-
Message?: string | undefined;
|
|
2942
|
-
/**
|
|
2943
|
-
* @internal
|
|
2944
|
-
*/
|
|
2945
|
-
constructor(opts: __ExceptionOptionType<FacetNotFoundException, __BaseException>);
|
|
2946
|
-
}
|
|
2947
2466
|
/**
|
|
2948
2467
|
* @public
|
|
2949
2468
|
*/
|
|
@@ -2965,20 +2484,6 @@ export interface DeleteObjectRequest {
|
|
|
2965
2484
|
*/
|
|
2966
2485
|
export interface DeleteObjectResponse {
|
|
2967
2486
|
}
|
|
2968
|
-
/**
|
|
2969
|
-
* <p>Indicates that the requested operation cannot be completed because the object has not
|
|
2970
|
-
* been detached from the tree.</p>
|
|
2971
|
-
* @public
|
|
2972
|
-
*/
|
|
2973
|
-
export declare class ObjectNotDetachedException extends __BaseException {
|
|
2974
|
-
readonly name: "ObjectNotDetachedException";
|
|
2975
|
-
readonly $fault: "client";
|
|
2976
|
-
Message?: string | undefined;
|
|
2977
|
-
/**
|
|
2978
|
-
* @internal
|
|
2979
|
-
*/
|
|
2980
|
-
constructor(opts: __ExceptionOptionType<ObjectNotDetachedException, __BaseException>);
|
|
2981
|
-
}
|
|
2982
2487
|
/**
|
|
2983
2488
|
* @public
|
|
2984
2489
|
*/
|
|
@@ -3001,20 +2506,6 @@ export interface DeleteSchemaResponse {
|
|
|
3001
2506
|
*/
|
|
3002
2507
|
SchemaArn?: string | undefined;
|
|
3003
2508
|
}
|
|
3004
|
-
/**
|
|
3005
|
-
* <p>The object could not be deleted because links still exist. Remove the links and then
|
|
3006
|
-
* try the operation again.</p>
|
|
3007
|
-
* @public
|
|
3008
|
-
*/
|
|
3009
|
-
export declare class StillContainsLinksException extends __BaseException {
|
|
3010
|
-
readonly name: "StillContainsLinksException";
|
|
3011
|
-
readonly $fault: "client";
|
|
3012
|
-
Message?: string | undefined;
|
|
3013
|
-
/**
|
|
3014
|
-
* @internal
|
|
3015
|
-
*/
|
|
3016
|
-
constructor(opts: __ExceptionOptionType<StillContainsLinksException, __BaseException>);
|
|
3017
|
-
}
|
|
3018
2509
|
/**
|
|
3019
2510
|
* @public
|
|
3020
2511
|
*/
|
|
@@ -3067,19 +2558,6 @@ export interface DetachFromIndexResponse {
|
|
|
3067
2558
|
*/
|
|
3068
2559
|
DetachedObjectIdentifier?: string | undefined;
|
|
3069
2560
|
}
|
|
3070
|
-
/**
|
|
3071
|
-
* <p>Indicates that the object is not attached to the index.</p>
|
|
3072
|
-
* @public
|
|
3073
|
-
*/
|
|
3074
|
-
export declare class ObjectAlreadyDetachedException extends __BaseException {
|
|
3075
|
-
readonly name: "ObjectAlreadyDetachedException";
|
|
3076
|
-
readonly $fault: "client";
|
|
3077
|
-
Message?: string | undefined;
|
|
3078
|
-
/**
|
|
3079
|
-
* @internal
|
|
3080
|
-
*/
|
|
3081
|
-
constructor(opts: __ExceptionOptionType<ObjectAlreadyDetachedException, __BaseException>);
|
|
3082
|
-
}
|
|
3083
2561
|
/**
|
|
3084
2562
|
* @public
|
|
3085
2563
|
*/
|
|
@@ -3112,20 +2590,6 @@ export interface DetachObjectResponse {
|
|
|
3112
2590
|
*/
|
|
3113
2591
|
DetachedObjectIdentifier?: string | undefined;
|
|
3114
2592
|
}
|
|
3115
|
-
/**
|
|
3116
|
-
* <p>Occurs when any invalid operations are performed on an object that is not a node, such
|
|
3117
|
-
* as calling <code>ListObjectChildren</code> for a leaf node object.</p>
|
|
3118
|
-
* @public
|
|
3119
|
-
*/
|
|
3120
|
-
export declare class NotNodeException extends __BaseException {
|
|
3121
|
-
readonly name: "NotNodeException";
|
|
3122
|
-
readonly $fault: "client";
|
|
3123
|
-
Message?: string | undefined;
|
|
3124
|
-
/**
|
|
3125
|
-
* @internal
|
|
3126
|
-
*/
|
|
3127
|
-
constructor(opts: __ExceptionOptionType<NotNodeException, __BaseException>);
|
|
3128
|
-
}
|
|
3129
2593
|
/**
|
|
3130
2594
|
* @public
|
|
3131
2595
|
*/
|
|
@@ -3238,19 +2702,6 @@ export interface GetDirectoryRequest {
|
|
|
3238
2702
|
*/
|
|
3239
2703
|
DirectoryArn: string | undefined;
|
|
3240
2704
|
}
|
|
3241
|
-
/**
|
|
3242
|
-
* @public
|
|
3243
|
-
* @enum
|
|
3244
|
-
*/
|
|
3245
|
-
export declare const DirectoryState: {
|
|
3246
|
-
readonly DELETED: "DELETED";
|
|
3247
|
-
readonly DISABLED: "DISABLED";
|
|
3248
|
-
readonly ENABLED: "ENABLED";
|
|
3249
|
-
};
|
|
3250
|
-
/**
|
|
3251
|
-
* @public
|
|
3252
|
-
*/
|
|
3253
|
-
export type DirectoryState = (typeof DirectoryState)[keyof typeof DirectoryState];
|
|
3254
2705
|
/**
|
|
3255
2706
|
* <p>Directory structure that includes the directory name and directory ARN.</p>
|
|
3256
2707
|
* @public
|
|
@@ -3503,19 +2954,6 @@ export interface GetTypedLinkFacetInformationResponse {
|
|
|
3503
2954
|
*/
|
|
3504
2955
|
IdentityAttributeOrder?: string[] | undefined;
|
|
3505
2956
|
}
|
|
3506
|
-
/**
|
|
3507
|
-
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
3508
|
-
* @public
|
|
3509
|
-
*/
|
|
3510
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
3511
|
-
readonly name: "InvalidNextTokenException";
|
|
3512
|
-
readonly $fault: "client";
|
|
3513
|
-
Message?: string | undefined;
|
|
3514
|
-
/**
|
|
3515
|
-
* @internal
|
|
3516
|
-
*/
|
|
3517
|
-
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
3518
|
-
}
|
|
3519
2957
|
/**
|
|
3520
2958
|
* @public
|
|
3521
2959
|
*/
|
|
@@ -4034,19 +3472,6 @@ export interface ListObjectParentPathsResponse {
|
|
|
4034
3472
|
*/
|
|
4035
3473
|
NextToken?: string | undefined;
|
|
4036
3474
|
}
|
|
4037
|
-
/**
|
|
4038
|
-
* <p>Cannot list the parents of a <a>Directory</a> root.</p>
|
|
4039
|
-
* @public
|
|
4040
|
-
*/
|
|
4041
|
-
export declare class CannotListParentOfRootException extends __BaseException {
|
|
4042
|
-
readonly name: "CannotListParentOfRootException";
|
|
4043
|
-
readonly $fault: "client";
|
|
4044
|
-
Message?: string | undefined;
|
|
4045
|
-
/**
|
|
4046
|
-
* @internal
|
|
4047
|
-
*/
|
|
4048
|
-
constructor(opts: __ExceptionOptionType<CannotListParentOfRootException, __BaseException>);
|
|
4049
|
-
}
|
|
4050
3475
|
/**
|
|
4051
3476
|
* @public
|
|
4052
3477
|
*/
|
|
@@ -4298,19 +3723,6 @@ export interface ListPublishedSchemaArnsResponse {
|
|
|
4298
3723
|
*/
|
|
4299
3724
|
NextToken?: string | undefined;
|
|
4300
3725
|
}
|
|
4301
|
-
/**
|
|
4302
|
-
* <p>Can occur for multiple reasons such as when you tag a resource that doesn’t exist or if you specify a higher number of tags for a resource than the allowed limit. Allowed limit is 50 tags per resource.</p>
|
|
4303
|
-
* @public
|
|
4304
|
-
*/
|
|
4305
|
-
export declare class InvalidTaggingRequestException extends __BaseException {
|
|
4306
|
-
readonly name: "InvalidTaggingRequestException";
|
|
4307
|
-
readonly $fault: "client";
|
|
4308
|
-
Message?: string | undefined;
|
|
4309
|
-
/**
|
|
4310
|
-
* @internal
|
|
4311
|
-
*/
|
|
4312
|
-
constructor(opts: __ExceptionOptionType<InvalidTaggingRequestException, __BaseException>);
|
|
4313
|
-
}
|
|
4314
3726
|
/**
|
|
4315
3727
|
* @public
|
|
4316
3728
|
*/
|
|
@@ -4523,32 +3935,6 @@ export interface PublishSchemaResponse {
|
|
|
4523
3935
|
*/
|
|
4524
3936
|
PublishedSchemaArn?: string | undefined;
|
|
4525
3937
|
}
|
|
4526
|
-
/**
|
|
4527
|
-
* <p>Indicates that a schema is already published.</p>
|
|
4528
|
-
* @public
|
|
4529
|
-
*/
|
|
4530
|
-
export declare class SchemaAlreadyPublishedException extends __BaseException {
|
|
4531
|
-
readonly name: "SchemaAlreadyPublishedException";
|
|
4532
|
-
readonly $fault: "client";
|
|
4533
|
-
Message?: string | undefined;
|
|
4534
|
-
/**
|
|
4535
|
-
* @internal
|
|
4536
|
-
*/
|
|
4537
|
-
constructor(opts: __ExceptionOptionType<SchemaAlreadyPublishedException, __BaseException>);
|
|
4538
|
-
}
|
|
4539
|
-
/**
|
|
4540
|
-
* <p>Indicates that the provided <code>SchemaDoc</code> value is not valid.</p>
|
|
4541
|
-
* @public
|
|
4542
|
-
*/
|
|
4543
|
-
export declare class InvalidSchemaDocException extends __BaseException {
|
|
4544
|
-
readonly name: "InvalidSchemaDocException";
|
|
4545
|
-
readonly $fault: "client";
|
|
4546
|
-
Message?: string | undefined;
|
|
4547
|
-
/**
|
|
4548
|
-
* @internal
|
|
4549
|
-
*/
|
|
4550
|
-
constructor(opts: __ExceptionOptionType<InvalidSchemaDocException, __BaseException>);
|
|
4551
|
-
}
|
|
4552
3938
|
/**
|
|
4553
3939
|
* @public
|
|
4554
3940
|
*/
|
|
@@ -4641,20 +4027,6 @@ export interface UntagResourceRequest {
|
|
|
4641
4027
|
*/
|
|
4642
4028
|
export interface UntagResourceResponse {
|
|
4643
4029
|
}
|
|
4644
|
-
/**
|
|
4645
|
-
* <p>An attempt to modify a <a>Facet</a> resulted in an invalid schema
|
|
4646
|
-
* exception.</p>
|
|
4647
|
-
* @public
|
|
4648
|
-
*/
|
|
4649
|
-
export declare class InvalidFacetUpdateException extends __BaseException {
|
|
4650
|
-
readonly name: "InvalidFacetUpdateException";
|
|
4651
|
-
readonly $fault: "client";
|
|
4652
|
-
Message?: string | undefined;
|
|
4653
|
-
/**
|
|
4654
|
-
* @internal
|
|
4655
|
-
*/
|
|
4656
|
-
constructor(opts: __ExceptionOptionType<InvalidFacetUpdateException, __BaseException>);
|
|
4657
|
-
}
|
|
4658
4030
|
/**
|
|
4659
4031
|
* <p>A structure that contains information used to update an attribute.</p>
|
|
4660
4032
|
* @public
|
|
@@ -4838,19 +4210,6 @@ export interface UpdateTypedLinkFacetRequest {
|
|
|
4838
4210
|
*/
|
|
4839
4211
|
export interface UpdateTypedLinkFacetResponse {
|
|
4840
4212
|
}
|
|
4841
|
-
/**
|
|
4842
|
-
* <p>Indicates a failure occurred while performing a check for backward compatibility between the specified schema and the schema that is currently applied to the directory.</p>
|
|
4843
|
-
* @public
|
|
4844
|
-
*/
|
|
4845
|
-
export declare class IncompatibleSchemaException extends __BaseException {
|
|
4846
|
-
readonly name: "IncompatibleSchemaException";
|
|
4847
|
-
readonly $fault: "client";
|
|
4848
|
-
Message?: string | undefined;
|
|
4849
|
-
/**
|
|
4850
|
-
* @internal
|
|
4851
|
-
*/
|
|
4852
|
-
constructor(opts: __ExceptionOptionType<IncompatibleSchemaException, __BaseException>);
|
|
4853
|
-
}
|
|
4854
4213
|
/**
|
|
4855
4214
|
* @public
|
|
4856
4215
|
*/
|