@aws-sdk/client-clouddirectory 3.288.0 → 3.290.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-types/commands/AddFacetToObjectCommand.d.ts +30 -0
- package/dist-types/commands/ApplySchemaCommand.d.ts +31 -0
- package/dist-types/commands/AttachObjectCommand.d.ts +38 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +29 -0
- package/dist-types/commands/AttachToIndexCommand.d.ts +40 -0
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +34 -0
- package/dist-types/commands/BatchReadCommand.d.ts +23 -0
- package/dist-types/commands/BatchWriteCommand.d.ts +26 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +27 -0
- package/dist-types/commands/CreateFacetCommand.d.ts +33 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +37 -0
- package/dist-types/commands/CreateObjectCommand.d.ts +37 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +24 -0
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +33 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +30 -0
- package/dist-types/commands/DeleteFacetCommand.d.ts +30 -0
- package/dist-types/commands/DeleteObjectCommand.d.ts +30 -0
- package/dist-types/commands/DeleteSchemaCommand.d.ts +27 -0
- package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +26 -0
- package/dist-types/commands/DetachFromIndexCommand.d.ts +32 -0
- package/dist-types/commands/DetachObjectCommand.d.ts +30 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +29 -0
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +30 -0
- package/dist-types/commands/DisableDirectoryCommand.d.ts +27 -0
- package/dist-types/commands/EnableDirectoryCommand.d.ts +27 -0
- package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +23 -0
- package/dist-types/commands/GetDirectoryCommand.d.ts +20 -0
- package/dist-types/commands/GetFacetCommand.d.ts +26 -0
- package/dist-types/commands/GetLinkAttributesCommand.d.ts +30 -0
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +30 -0
- package/dist-types/commands/GetObjectInformationCommand.d.ts +26 -0
- package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +23 -0
- package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +29 -0
- package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +26 -0
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +26 -0
- package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +26 -0
- package/dist-types/commands/ListDirectoriesCommand.d.ts +23 -0
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +29 -0
- package/dist-types/commands/ListFacetNamesCommand.d.ts +26 -0
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +33 -0
- package/dist-types/commands/ListIndexCommand.d.ts +36 -0
- package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +20 -0
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +33 -0
- package/dist-types/commands/ListObjectChildrenCommand.d.ts +33 -0
- package/dist-types/commands/ListObjectParentPathsCommand.d.ts +29 -0
- package/dist-types/commands/ListObjectParentsCommand.d.ts +32 -0
- package/dist-types/commands/ListObjectPoliciesCommand.d.ts +29 -0
- package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +33 -0
- package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +32 -0
- package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +26 -0
- package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +29 -0
- package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +26 -0
- package/dist-types/commands/LookupPolicyCommand.d.ts +29 -0
- package/dist-types/commands/PublishSchemaCommand.d.ts +26 -0
- package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +26 -0
- package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +30 -0
- package/dist-types/commands/TagResourceCommand.d.ts +26 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +26 -0
- package/dist-types/commands/UpdateFacetCommand.d.ts +37 -0
- package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +30 -0
- package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +34 -0
- package/dist-types/commands/UpdateSchemaCommand.d.ts +23 -0
- package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +37 -0
- package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +31 -0
- package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +30 -0
- package/package.json +29 -29
|
@@ -29,6 +29,36 @@ export interface AddFacetToObjectCommandOutput extends AddFacetToObjectResponse,
|
|
|
29
29
|
* @see {@link AddFacetToObjectCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <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>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
39
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
40
|
+
* validated with the schema.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <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>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
|
+
* <p>The specified resource could not be found.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
55
|
+
* <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>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
59
|
+
* message.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
32
62
|
*/
|
|
33
63
|
export declare class AddFacetToObjectCommand extends $Command<AddFacetToObjectCommandInput, AddFacetToObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
64
|
readonly input: AddFacetToObjectCommandInput;
|
|
@@ -30,6 +30,37 @@ export interface ApplySchemaCommandOutput extends ApplySchemaResponse, __Metadat
|
|
|
30
30
|
* @see {@link ApplySchemaCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <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>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
37
|
+
* <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>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
40
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidAttachmentException} (client fault)
|
|
43
|
+
* <p>Indicates that an attempt to make an attachment was invalid. For example, attaching two nodes
|
|
44
|
+
* with a link type that is not applicable to the nodes or attempting to apply a schema to a directory a second time.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
47
|
+
* <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>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>The specified resource could not be found.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
53
|
+
* <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>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link SchemaAlreadyExistsException} (client fault)
|
|
56
|
+
* <p>Indicates that a schema could not be created due to a naming conflict. Please select a
|
|
57
|
+
* different name and then try again.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ValidationException} (client fault)
|
|
60
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
61
|
+
* message.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
33
64
|
*/
|
|
34
65
|
export declare class ApplySchemaCommand extends $Command<ApplySchemaCommandInput, ApplySchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
66
|
readonly input: ApplySchemaCommandInput;
|
|
@@ -39,6 +39,44 @@ export interface AttachObjectCommandOutput extends AttachObjectResponse, __Metad
|
|
|
39
39
|
* @see {@link AttachObjectCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
46
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
49
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
50
|
+
* validated with the schema.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
53
|
+
* <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>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
56
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InvalidAttachmentException} (client fault)
|
|
59
|
+
* <p>Indicates that an attempt to make an attachment was invalid. For example, attaching two nodes
|
|
60
|
+
* with a link type that is not applicable to the nodes or attempting to apply a schema to a directory a second time.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
63
|
+
* <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>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link LinkNameAlreadyInUseException} (client fault)
|
|
66
|
+
* <p>Indicates that a link could not be created due to a naming conflict. Choose a different
|
|
67
|
+
* name and then try again.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>The specified resource could not be found.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
73
|
+
* <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>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
77
|
+
* message.</p>
|
|
78
|
+
*
|
|
79
|
+
*
|
|
42
80
|
*/
|
|
43
81
|
export declare class AttachObjectCommand extends $Command<AttachObjectCommandInput, AttachObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
44
82
|
readonly input: AttachObjectCommandInput;
|
|
@@ -30,6 +30,35 @@ export interface AttachPolicyCommandOutput extends AttachPolicyResponse, __Metad
|
|
|
30
30
|
* @see {@link AttachPolicyCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <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>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
37
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
40
|
+
* <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>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
43
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
46
|
+
* <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>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotPolicyException} (client fault)
|
|
49
|
+
* <p>Indicates that the requested operation can only operate on policy objects.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
|
+
* <p>The specified resource could not be found.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
55
|
+
* <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>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
59
|
+
* message.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
33
62
|
*/
|
|
34
63
|
export declare class AttachPolicyCommand extends $Command<AttachPolicyCommandInput, AttachPolicyCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
64
|
readonly input: AttachPolicyCommandInput;
|
|
@@ -29,6 +29,46 @@ export interface AttachToIndexCommandOutput extends AttachToIndexResponse, __Met
|
|
|
29
29
|
* @see {@link AttachToIndexCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <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>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link IndexedAttributeMissingException} (client fault)
|
|
39
|
+
* <p>An object has been attempted to be attached to an object that does not have the appropriate attribute value.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
42
|
+
* <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>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
45
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidAttachmentException} (client fault)
|
|
48
|
+
* <p>Indicates that an attempt to make an attachment was invalid. For example, attaching two nodes
|
|
49
|
+
* with a link type that is not applicable to the nodes or attempting to apply a schema to a directory a second time.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
52
|
+
* <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>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link LinkNameAlreadyInUseException} (client fault)
|
|
55
|
+
* <p>Indicates that a link could not be created due to a naming conflict. Choose a different
|
|
56
|
+
* name and then try again.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link NotIndexException} (client fault)
|
|
59
|
+
* <p>Indicates that the requested operation can only operate on index objects.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
62
|
+
* <p>The specified resource could not be found.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
65
|
+
* <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>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ValidationException} (client fault)
|
|
68
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
69
|
+
* message.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
32
72
|
*/
|
|
33
73
|
export declare class AttachToIndexCommand extends $Command<AttachToIndexCommandInput, AttachToIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
74
|
readonly input: AttachToIndexCommandInput;
|
|
@@ -29,6 +29,40 @@ export interface AttachTypedLinkCommandOutput extends AttachTypedLinkResponse, _
|
|
|
29
29
|
* @see {@link AttachTypedLinkCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <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>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
39
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
40
|
+
* validated with the schema.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidAttachmentException} (client fault)
|
|
49
|
+
* <p>Indicates that an attempt to make an attachment was invalid. For example, attaching two nodes
|
|
50
|
+
* with a link type that is not applicable to the nodes or attempting to apply a schema to a directory a second time.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
53
|
+
* <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>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified resource could not be found.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
59
|
+
* <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>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ValidationException} (client fault)
|
|
62
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
63
|
+
* message.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
32
66
|
*/
|
|
33
67
|
export declare class AttachTypedLinkCommand extends $Command<AttachTypedLinkCommandInput, AttachTypedLinkCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
68
|
readonly input: AttachTypedLinkCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface BatchReadCommandOutput extends BatchReadResponse, __MetadataBea
|
|
|
29
29
|
* @see {@link BatchReadCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <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>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
39
|
+
* <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>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
42
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <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>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
48
|
+
* <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>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
52
|
+
* message.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class BatchReadCommand extends $Command<BatchReadCommandInput, BatchReadCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
57
|
readonly input: BatchReadCommandInput;
|
|
@@ -30,6 +30,32 @@ export interface BatchWriteCommandOutput extends BatchWriteResponse, __MetadataB
|
|
|
30
30
|
* @see {@link BatchWriteCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <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>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link BatchWriteException} (client fault)
|
|
37
|
+
* <p>A <code>BatchWrite</code> exception has occurred.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
40
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <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>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
52
|
+
* <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>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
56
|
+
* message.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
33
59
|
*/
|
|
34
60
|
export declare class BatchWriteCommand extends $Command<BatchWriteCommandInput, BatchWriteCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
61
|
readonly input: BatchWriteCommandInput;
|
|
@@ -32,6 +32,33 @@ export interface CreateDirectoryCommandOutput extends CreateDirectoryResponse, _
|
|
|
32
32
|
* @see {@link CreateDirectoryCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <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>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link DirectoryAlreadyExistsException} (client fault)
|
|
39
|
+
* <p>Indicates that a <a>Directory</a> could not be created due to a naming
|
|
40
|
+
* conflict. Choose a different name and try again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <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>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
|
+
* <p>The specified resource could not be found.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
55
|
+
* <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>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
59
|
+
* message.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
35
62
|
*/
|
|
36
63
|
export declare class CreateDirectoryCommand extends $Command<CreateDirectoryCommandInput, CreateDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
37
64
|
readonly input: CreateDirectoryCommandInput;
|
|
@@ -30,6 +30,39 @@ export interface CreateFacetCommandOutput extends CreateFacetResponse, __Metadat
|
|
|
30
30
|
* @see {@link CreateFacetCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <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>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link FacetAlreadyExistsException} (client fault)
|
|
37
|
+
* <p>A facet with the same name already exists.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
40
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
41
|
+
* validated with the schema.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
44
|
+
* <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>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
47
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InvalidRuleException} (client fault)
|
|
50
|
+
* <p>Occurs when any of the rule parameter keys or values are invalid.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
53
|
+
* <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>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified resource could not be found.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
59
|
+
* <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>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ValidationException} (client fault)
|
|
62
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
63
|
+
* message.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
33
66
|
*/
|
|
34
67
|
export declare class CreateFacetCommand extends $Command<CreateFacetCommandInput, CreateFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
68
|
readonly input: CreateFacetCommandInput;
|
|
@@ -29,6 +29,43 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat
|
|
|
29
29
|
* @see {@link CreateIndexCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <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>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
39
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
40
|
+
* validated with the schema.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <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>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LinkNameAlreadyInUseException} (client fault)
|
|
52
|
+
* <p>Indicates that a link could not be created due to a naming conflict. Choose a different
|
|
53
|
+
* name and then try again.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified resource could not be found.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
59
|
+
* <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>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link UnsupportedIndexTypeException} (client fault)
|
|
62
|
+
* <p>Indicates that the requested index type is not supported.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ValidationException} (client fault)
|
|
65
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
66
|
+
* message.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
32
69
|
*/
|
|
33
70
|
export declare class CreateIndexCommand extends $Command<CreateIndexCommandInput, CreateIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
71
|
readonly input: CreateIndexCommandInput;
|
|
@@ -32,6 +32,43 @@ export interface CreateObjectCommandOutput extends CreateObjectResponse, __Metad
|
|
|
32
32
|
* @see {@link CreateObjectCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <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>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
39
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
42
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
43
|
+
* validated with the schema.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
46
|
+
* <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>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
49
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
52
|
+
* <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>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link LinkNameAlreadyInUseException} (client fault)
|
|
55
|
+
* <p>Indicates that a link could not be created due to a naming conflict. Choose a different
|
|
56
|
+
* name and then try again.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
|
+
* <p>The specified resource could not be found.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
62
|
+
* <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>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link UnsupportedIndexTypeException} (client fault)
|
|
65
|
+
* <p>Indicates that the requested index type is not supported.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ValidationException} (client fault)
|
|
68
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
69
|
+
* message.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
35
72
|
*/
|
|
36
73
|
export declare class CreateObjectCommand extends $Command<CreateObjectCommandInput, CreateObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
37
74
|
readonly input: CreateObjectCommandInput;
|
|
@@ -49,6 +49,30 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad
|
|
|
49
49
|
* @see {@link CreateSchemaCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <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>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
56
|
+
* <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>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
59
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
62
|
+
* <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>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
65
|
+
* <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>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link SchemaAlreadyExistsException} (client fault)
|
|
68
|
+
* <p>Indicates that a schema could not be created due to a naming conflict. Please select a
|
|
69
|
+
* different name and then try again.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ValidationException} (client fault)
|
|
72
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
73
|
+
* message.</p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
52
76
|
*/
|
|
53
77
|
export declare class CreateSchemaCommand extends $Command<CreateSchemaCommandInput, CreateSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
54
78
|
readonly input: CreateSchemaCommandInput;
|
|
@@ -29,6 +29,39 @@ export interface CreateTypedLinkFacetCommandOutput extends CreateTypedLinkFacetR
|
|
|
29
29
|
* @see {@link CreateTypedLinkFacetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <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>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link FacetAlreadyExistsException} (client fault)
|
|
36
|
+
* <p>A facet with the same name already exists.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
39
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
40
|
+
* validated with the schema.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidRuleException} (client fault)
|
|
49
|
+
* <p>Occurs when any of the rule parameter keys or values are invalid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
52
|
+
* <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>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
|
+
* <p>The specified resource could not be found.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
58
|
+
* <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>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ValidationException} (client fault)
|
|
61
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
62
|
+
* message.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
32
65
|
*/
|
|
33
66
|
export declare class CreateTypedLinkFacetCommand extends $Command<CreateTypedLinkFacetCommandInput, CreateTypedLinkFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
67
|
readonly input: CreateTypedLinkFacetCommandInput;
|
|
@@ -31,6 +31,36 @@ export interface DeleteDirectoryCommandOutput extends DeleteDirectoryResponse, _
|
|
|
31
31
|
* @see {@link DeleteDirectoryCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <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>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link DirectoryDeletedException} (client fault)
|
|
38
|
+
* <p>A directory that has been deleted and to which access has been attempted. Note: The
|
|
39
|
+
* requested resource will eventually cease to exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link DirectoryNotDisabledException} (client fault)
|
|
42
|
+
* <p>An operation can only operate on a disabled directory.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
45
|
+
* <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>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
48
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
51
|
+
* <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>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
|
+
* <p>The specified resource could not be found.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
57
|
+
* <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>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ValidationException} (client fault)
|
|
60
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
61
|
+
* message.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
34
64
|
*/
|
|
35
65
|
export declare class DeleteDirectoryCommand extends $Command<DeleteDirectoryCommandInput, DeleteDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
36
66
|
readonly input: DeleteDirectoryCommandInput;
|