@aws-sdk/client-clouddirectory 3.289.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
|
@@ -31,6 +31,36 @@ export interface DeleteFacetCommandOutput extends DeleteFacetResponse, __Metadat
|
|
|
31
31
|
* @see {@link DeleteFacetCommandOutput} 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 FacetInUseException} (client fault)
|
|
38
|
+
* <p>Occurs when deleting a facet that contains an attribute that is a target to an
|
|
39
|
+
* attribute reference in a different facet.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link FacetNotFoundException} (client fault)
|
|
42
|
+
* <p>The specified <a>Facet</a> could not be found.</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 DeleteFacetCommand extends $Command<DeleteFacetCommandInput, DeleteFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
36
66
|
readonly input: DeleteFacetCommandInput;
|
|
@@ -30,6 +30,36 @@ export interface DeleteObjectCommandOutput extends DeleteObjectResponse, __Metad
|
|
|
30
30
|
* @see {@link DeleteObjectCommandOutput} 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 ObjectNotDetachedException} (client fault)
|
|
49
|
+
* <p>Indicates that the requested operation cannot be completed because the object has not
|
|
50
|
+
* been detached from the tree.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* <p>The specified resource could not be found.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
56
|
+
* <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>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
60
|
+
* message.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
33
63
|
*/
|
|
34
64
|
export declare class DeleteObjectCommand extends $Command<DeleteObjectCommandInput, DeleteObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
65
|
readonly input: DeleteObjectCommandInput;
|
|
@@ -29,6 +29,33 @@ export interface DeleteSchemaCommandOutput extends DeleteSchemaResponse, __Metad
|
|
|
29
29
|
* @see {@link DeleteSchemaCommandOutput} 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 InternalServiceException} (server fault)
|
|
36
|
+
* <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>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
42
|
+
* <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>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified resource could not be found.</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 StillContainsLinksException} (client fault)
|
|
51
|
+
* <p>The object could not be deleted because links still exist. Remove the links and then
|
|
52
|
+
* try the operation again.</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
|
+
*
|
|
32
59
|
*/
|
|
33
60
|
export declare class DeleteSchemaCommand extends $Command<DeleteSchemaCommandInput, DeleteSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
61
|
readonly input: DeleteSchemaCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface DeleteTypedLinkFacetCommandOutput extends DeleteTypedLinkFacetR
|
|
|
29
29
|
* @see {@link DeleteTypedLinkFacetCommandOutput} 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 FacetNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified <a>Facet</a> could not be found.</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 ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
51
|
+
* <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>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
55
|
+
* message.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class DeleteTypedLinkFacetCommand extends $Command<DeleteTypedLinkFacetCommandInput, DeleteTypedLinkFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: DeleteTypedLinkFacetCommandInput;
|
|
@@ -29,6 +29,38 @@ export interface DetachFromIndexCommandOutput extends DetachFromIndexResponse, _
|
|
|
29
29
|
* @see {@link DetachFromIndexCommandOutput} 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 NotIndexException} (client fault)
|
|
48
|
+
* <p>Indicates that the requested operation can only operate on index objects.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ObjectAlreadyDetachedException} (client fault)
|
|
51
|
+
* <p>Indicates that the object is not attached to the index.</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
|
+
*
|
|
32
64
|
*/
|
|
33
65
|
export declare class DetachFromIndexCommand extends $Command<DetachFromIndexCommandInput, DetachFromIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
66
|
readonly input: DetachFromIndexCommandInput;
|
|
@@ -30,6 +30,36 @@ export interface DetachObjectCommandOutput extends DetachObjectResponse, __Metad
|
|
|
30
30
|
* @see {@link DetachObjectCommandOutput} 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 NotNodeException} (client fault)
|
|
49
|
+
* <p>Occurs when any invalid operations are performed on an object that is not a node, such
|
|
50
|
+
* as calling <code>ListObjectChildren</code> for a leaf node object.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* <p>The specified resource could not be found.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
56
|
+
* <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>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
60
|
+
* message.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
33
63
|
*/
|
|
34
64
|
export declare class DetachObjectCommand extends $Command<DetachObjectCommandInput, DetachObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
65
|
readonly input: DetachObjectCommandInput;
|
|
@@ -29,6 +29,35 @@ export interface DetachPolicyCommandOutput extends DetachPolicyResponse, __Metad
|
|
|
29
29
|
* @see {@link DetachPolicyCommandOutput} 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 NotPolicyException} (client fault)
|
|
48
|
+
* <p>Indicates that the requested operation can only operate on policy objects.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The specified resource could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
54
|
+
* <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>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ValidationException} (client fault)
|
|
57
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
58
|
+
* message.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
32
61
|
*/
|
|
33
62
|
export declare class DetachPolicyCommand extends $Command<DetachPolicyCommandInput, DetachPolicyCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
63
|
readonly input: DetachPolicyCommandInput;
|
|
@@ -29,6 +29,36 @@ export interface DetachTypedLinkCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DetachTypedLinkCommandOutput} 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 DetachTypedLinkCommand extends $Command<DetachTypedLinkCommandInput, DetachTypedLinkCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
64
|
readonly input: DetachTypedLinkCommandInput;
|
|
@@ -30,6 +30,33 @@ export interface DisableDirectoryCommandOutput extends DisableDirectoryResponse,
|
|
|
30
30
|
* @see {@link DisableDirectoryCommandOutput} 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 DirectoryDeletedException} (client fault)
|
|
37
|
+
* <p>A directory that has been deleted and to which access has been attempted. Note: The
|
|
38
|
+
* requested resource will eventually cease to exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
41
|
+
* <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>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
44
|
+
* <p>Indicates that the provided ARN value is not valid.</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 ValidationException} (client fault)
|
|
56
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
57
|
+
* message.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
33
60
|
*/
|
|
34
61
|
export declare class DisableDirectoryCommand extends $Command<DisableDirectoryCommandInput, DisableDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
62
|
readonly input: DisableDirectoryCommandInput;
|
|
@@ -30,6 +30,33 @@ export interface EnableDirectoryCommandOutput extends EnableDirectoryResponse, _
|
|
|
30
30
|
* @see {@link EnableDirectoryCommandOutput} 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 DirectoryDeletedException} (client fault)
|
|
37
|
+
* <p>A directory that has been deleted and to which access has been attempted. Note: The
|
|
38
|
+
* requested resource will eventually cease to exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
41
|
+
* <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>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
44
|
+
* <p>Indicates that the provided ARN value is not valid.</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 ValidationException} (client fault)
|
|
56
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
57
|
+
* message.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
33
60
|
*/
|
|
34
61
|
export declare class EnableDirectoryCommand extends $Command<EnableDirectoryCommandInput, EnableDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
62
|
readonly input: EnableDirectoryCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface GetAppliedSchemaVersionCommandOutput extends GetAppliedSchemaVe
|
|
|
29
29
|
* @see {@link GetAppliedSchemaVersionCommandOutput} 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 InternalServiceException} (server fault)
|
|
36
|
+
* <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>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
42
|
+
* <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>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified resource could not be found.</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 GetAppliedSchemaVersionCommand extends $Command<GetAppliedSchemaVersionCommandInput, GetAppliedSchemaVersionCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
57
|
readonly input: GetAppliedSchemaVersionCommandInput;
|
|
@@ -29,6 +29,26 @@ export interface GetDirectoryCommandOutput extends GetDirectoryResponse, __Metad
|
|
|
29
29
|
* @see {@link GetDirectoryCommandOutput} 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 InternalServiceException} (server fault)
|
|
36
|
+
* <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>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
42
|
+
* <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>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
45
|
+
* <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>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
49
|
+
* message.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
32
52
|
*/
|
|
33
53
|
export declare class GetDirectoryCommand extends $Command<GetDirectoryCommandInput, GetDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
54
|
readonly input: GetDirectoryCommandInput;
|
|
@@ -30,6 +30,32 @@ export interface GetFacetCommandOutput extends GetFacetResponse, __MetadataBeare
|
|
|
30
30
|
* @see {@link GetFacetCommandOutput} 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 FacetNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified <a>Facet</a> could not be found.</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 ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>The specified resource could not be found.</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 GetFacetCommand extends $Command<GetFacetCommandInput, GetFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
61
|
readonly input: GetFacetCommandInput;
|
|
@@ -29,6 +29,36 @@ export interface GetLinkAttributesCommandOutput extends GetLinkAttributesRespons
|
|
|
29
29
|
* @see {@link GetLinkAttributesCommandOutput} 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 GetLinkAttributesCommand extends $Command<GetLinkAttributesCommandInput, GetLinkAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
64
|
readonly input: GetLinkAttributesCommandInput;
|
|
@@ -29,6 +29,36 @@ export interface GetObjectAttributesCommandOutput extends GetObjectAttributesRes
|
|
|
29
29
|
* @see {@link GetObjectAttributesCommandOutput} 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 GetObjectAttributesCommand extends $Command<GetObjectAttributesCommandInput, GetObjectAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
64
|
readonly input: GetObjectAttributesCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface GetObjectInformationCommandOutput extends GetObjectInformationR
|
|
|
29
29
|
* @see {@link GetObjectInformationCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
51
|
+
* <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>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
55
|
+
* message.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class GetObjectInformationCommand extends $Command<GetObjectInformationCommandInput, GetObjectInformationCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: GetObjectInformationCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface GetSchemaAsJsonCommandOutput extends GetSchemaAsJsonResponse, _
|
|
|
29
29
|
* @see {@link GetSchemaAsJsonCommandOutput} 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 InternalServiceException} (server fault)
|
|
36
|
+
* <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>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
42
|
+
* <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>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified resource could not be found.</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 GetSchemaAsJsonCommand extends $Command<GetSchemaAsJsonCommandInput, GetSchemaAsJsonCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
57
|
readonly input: GetSchemaAsJsonCommandInput;
|