@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,38 @@ export interface ListPolicyAttachmentsCommandOutput extends ListPolicyAttachment
|
|
|
29
29
|
* @see {@link ListPolicyAttachmentsCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
45
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <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>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link NotPolicyException} (client fault)
|
|
51
|
+
* <p>Indicates that the requested operation can only operate on policy objects.</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 ListPolicyAttachmentsCommand extends $Command<ListPolicyAttachmentsCommandInput, ListPolicyAttachmentsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
66
|
readonly input: ListPolicyAttachmentsCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface ListPublishedSchemaArnsCommandOutput extends ListPublishedSchem
|
|
|
29
29
|
* @see {@link ListPublishedSchemaArnsCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>Indicates that the <code>NextToken</code> 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 ListPublishedSchemaArnsCommand extends $Command<ListPublishedSchemaArnsCommandInput, ListPublishedSchemaArnsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: ListPublishedSchemaArnsCommandInput;
|
|
@@ -31,6 +31,32 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* @see {@link ListTagsForResourceCommandOutput} 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 InternalServiceException} (server fault)
|
|
38
|
+
* <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>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
41
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidTaggingRequestException} (client fault)
|
|
44
|
+
* <p>Can occur for multiple reasons such as when you tag a resource that doesn’t exist or if you specify a higher number of tags for a resource than the allowed limit. Allowed limit is 50 tags per resource.</p>
|
|
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
|
+
*
|
|
34
60
|
*/
|
|
35
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
36
62
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -29,6 +29,35 @@ export interface ListTypedLinkFacetAttributesCommandOutput extends ListTypedLink
|
|
|
29
29
|
* @see {@link ListTypedLinkFacetAttributesCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
45
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <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>
|
|
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 ListTypedLinkFacetAttributesCommand extends $Command<ListTypedLinkFacetAttributesCommandInput, ListTypedLinkFacetAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
63
|
readonly input: ListTypedLinkFacetAttributesCommandInput;
|
|
@@ -30,6 +30,32 @@ export interface ListTypedLinkFacetNamesCommandOutput extends ListTypedLinkFacet
|
|
|
30
30
|
* @see {@link ListTypedLinkFacetNamesCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
43
|
+
* <p>Indicates that the <code>NextToken</code> 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 ListTypedLinkFacetNamesCommand extends $Command<ListTypedLinkFacetNamesCommandInput, ListTypedLinkFacetNamesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
61
|
readonly input: ListTypedLinkFacetNamesCommandInput;
|
|
@@ -34,6 +34,35 @@ export interface LookupPolicyCommandOutput extends LookupPolicyResponse, __Metad
|
|
|
34
34
|
* @see {@link LookupPolicyCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <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>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
41
|
+
* <p>Operations are only permitted on enabled directories.</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 InvalidNextTokenException} (client fault)
|
|
50
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</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
|
+
*
|
|
37
66
|
*/
|
|
38
67
|
export declare class LookupPolicyCommand extends $Command<LookupPolicyCommandInput, LookupPolicyCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
39
68
|
readonly input: LookupPolicyCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface PublishSchemaCommandOutput extends PublishSchemaResponse, __Met
|
|
|
29
29
|
* @see {@link PublishSchemaCommandOutput} 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 SchemaAlreadyPublishedException} (client fault)
|
|
51
|
+
* <p>Indicates that a schema is already published.</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 PublishSchemaCommand extends $Command<PublishSchemaCommandInput, PublishSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: PublishSchemaCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface PutSchemaFromJsonCommandOutput extends PutSchemaFromJsonRespons
|
|
|
29
29
|
* @see {@link PutSchemaFromJsonCommandOutput} 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 InvalidRuleException} (client fault)
|
|
42
|
+
* <p>Occurs when any of the rule parameter keys or values are invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidSchemaDocException} (client fault)
|
|
45
|
+
* <p>Indicates that the provided <code>SchemaDoc</code> value is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <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>
|
|
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 PutSchemaFromJsonCommand extends $Command<PutSchemaFromJsonCommandInput, PutSchemaFromJsonCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: PutSchemaFromJsonCommandInput;
|
|
@@ -29,6 +29,36 @@ export interface RemoveFacetFromObjectCommandOutput extends RemoveFacetFromObjec
|
|
|
29
29
|
* @see {@link RemoveFacetFromObjectCommandOutput} 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 RemoveFacetFromObjectCommand extends $Command<RemoveFacetFromObjectCommandInput, RemoveFacetFromObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
64
|
readonly input: RemoveFacetFromObjectCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} 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 InvalidTaggingRequestException} (client fault)
|
|
42
|
+
* <p>Can occur for multiple reasons such as when you tag a resource that doesn’t exist or if you specify a higher number of tags for a resource than the allowed limit. Allowed limit is 50 tags per resource.</p>
|
|
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 TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} 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 InvalidTaggingRequestException} (client fault)
|
|
42
|
+
* <p>Can occur for multiple reasons such as when you tag a resource that doesn’t exist or if you specify a higher number of tags for a resource than the allowed limit. Allowed limit is 50 tags per resource.</p>
|
|
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 UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: UntagResourceCommandInput;
|
|
@@ -40,6 +40,43 @@ export interface UpdateFacetCommandOutput extends UpdateFacetResponse, __Metadat
|
|
|
40
40
|
* @see {@link UpdateFacetCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
44
|
+
* <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>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link FacetNotFoundException} (client fault)
|
|
47
|
+
* <p>The specified <a>Facet</a> could not be found.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
50
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
51
|
+
* validated with the schema.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
54
|
+
* <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>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
57
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidFacetUpdateException} (client fault)
|
|
60
|
+
* <p>An attempt to modify a <a>Facet</a> resulted in an invalid schema
|
|
61
|
+
* exception.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InvalidRuleException} (client fault)
|
|
64
|
+
* <p>Occurs when any of the rule parameter keys or values are invalid.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
67
|
+
* <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>
|
|
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
|
+
*
|
|
43
80
|
*/
|
|
44
81
|
export declare class UpdateFacetCommand extends $Command<UpdateFacetCommandInput, UpdateFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
45
82
|
readonly input: UpdateFacetCommandInput;
|
|
@@ -29,6 +29,36 @@ export interface UpdateLinkAttributesCommandOutput extends UpdateLinkAttributesR
|
|
|
29
29
|
* @see {@link UpdateLinkAttributesCommandOutput} 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 UpdateLinkAttributesCommand extends $Command<UpdateLinkAttributesCommandInput, UpdateLinkAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
64
|
readonly input: UpdateLinkAttributesCommandInput;
|
|
@@ -29,6 +29,40 @@ export interface UpdateObjectAttributesCommandOutput extends UpdateObjectAttribu
|
|
|
29
29
|
* @see {@link UpdateObjectAttributesCommandOutput} 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 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 UpdateObjectAttributesCommand extends $Command<UpdateObjectAttributesCommandInput, UpdateObjectAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
68
|
readonly input: UpdateObjectAttributesCommandInput;
|
|
@@ -30,6 +30,29 @@ export interface UpdateSchemaCommandOutput extends UpdateSchemaResponse, __Metad
|
|
|
30
30
|
* @see {@link UpdateSchemaCommandOutput} 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 LimitExceededException} (client fault)
|
|
43
|
+
* <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>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The specified resource could not be found.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
49
|
+
* <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>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
53
|
+
* message.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
33
56
|
*/
|
|
34
57
|
export declare class UpdateSchemaCommand extends $Command<UpdateSchemaCommandInput, UpdateSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
58
|
readonly input: UpdateSchemaCommandInput;
|
|
@@ -29,6 +29,43 @@ export interface UpdateTypedLinkFacetCommandOutput extends UpdateTypedLinkFacetR
|
|
|
29
29
|
* @see {@link UpdateTypedLinkFacetCommandOutput} 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 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 InvalidFacetUpdateException} (client fault)
|
|
49
|
+
* <p>An attempt to modify a <a>Facet</a> resulted in an invalid schema
|
|
50
|
+
* exception.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InvalidRuleException} (client fault)
|
|
53
|
+
* <p>Occurs when any of the rule parameter keys or values are invalid.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
56
|
+
* <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>
|
|
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 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 UpdateTypedLinkFacetCommand extends $Command<UpdateTypedLinkFacetCommandInput, UpdateTypedLinkFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
71
|
readonly input: UpdateTypedLinkFacetCommandInput;
|