@aws-sdk/client-clouddirectory 3.325.0 → 3.326.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 +4 -0
- package/dist-types/commands/ApplySchemaCommand.d.ts +7 -0
- package/dist-types/commands/AttachObjectCommand.d.ts +6 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +4 -0
- package/dist-types/commands/AttachToIndexCommand.d.ts +6 -0
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +29 -0
- package/dist-types/commands/BatchReadCommand.d.ts +226 -0
- package/dist-types/commands/BatchWriteCommand.d.ts +63 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +9 -0
- package/dist-types/commands/CreateFacetCommand.d.ts +4 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +6 -0
- package/dist-types/commands/CreateObjectCommand.d.ts +6 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +6 -0
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFacetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteObjectCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSchemaCommand.d.ts +6 -0
- package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +4 -0
- package/dist-types/commands/DetachFromIndexCommand.d.ts +6 -0
- package/dist-types/commands/DetachObjectCommand.d.ts +6 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +4 -0
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +4 -0
- package/dist-types/commands/DisableDirectoryCommand.d.ts +6 -0
- package/dist-types/commands/EnableDirectoryCommand.d.ts +6 -0
- package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +6 -0
- package/dist-types/commands/GetDirectoryCommand.d.ts +11 -0
- package/dist-types/commands/GetFacetCommand.d.ts +10 -0
- package/dist-types/commands/GetLinkAttributesCommand.d.ts +21 -0
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +21 -0
- package/dist-types/commands/GetObjectInformationCommand.d.ts +12 -0
- package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +7 -0
- package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +8 -0
- package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +9 -0
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +27 -0
- package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +9 -0
- package/dist-types/commands/ListDirectoriesCommand.d.ts +14 -0
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +35 -0
- package/dist-types/commands/ListFacetNamesCommand.d.ts +9 -0
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +32 -0
- package/dist-types/commands/ListIndexCommand.d.ts +27 -0
- package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +9 -0
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +22 -0
- package/dist-types/commands/ListObjectChildrenCommand.d.ts +9 -0
- package/dist-types/commands/ListObjectParentPathsCommand.d.ts +14 -0
- package/dist-types/commands/ListObjectParentsCommand.d.ts +15 -0
- package/dist-types/commands/ListObjectPoliciesCommand.d.ts +9 -0
- package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +32 -0
- package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +9 -0
- package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +9 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +29 -0
- package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +9 -0
- package/dist-types/commands/LookupPolicyCommand.d.ts +18 -0
- package/dist-types/commands/PublishSchemaCommand.d.ts +6 -0
- package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +6 -0
- package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateFacetCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +4 -0
- package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSchemaCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +4 -0
- package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +7 -0
- package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +6 -0
- package/package.json +3 -3
|
@@ -32,6 +32,8 @@ export interface DeleteTypedLinkFacetCommandOutput extends DeleteTypedLinkFacetR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteTypedLinkFacetCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteTypedLinkFacetCommandInput - {@link DeleteTypedLinkFacetCommandInput}
|
|
@@ -65,6 +67,8 @@ export interface DeleteTypedLinkFacetCommandOutput extends DeleteTypedLinkFacetR
|
|
|
65
67
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
66
68
|
* message.</p>
|
|
67
69
|
*
|
|
70
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
68
72
|
*
|
|
69
73
|
*/
|
|
70
74
|
export declare class DeleteTypedLinkFacetCommand extends $Command<DeleteTypedLinkFacetCommandInput, DeleteTypedLinkFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -37,6 +37,10 @@ export interface DetachFromIndexCommandOutput extends DetachFromIndexResponse, _
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DetachFromIndexCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DetachFromIndexResponse
|
|
41
|
+
* // DetachedObjectIdentifier: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
40
44
|
* ```
|
|
41
45
|
*
|
|
42
46
|
* @param DetachFromIndexCommandInput - {@link DetachFromIndexCommandInput}
|
|
@@ -76,6 +80,8 @@ export interface DetachFromIndexCommandOutput extends DetachFromIndexResponse, _
|
|
|
76
80
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
77
81
|
* message.</p>
|
|
78
82
|
*
|
|
83
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
79
85
|
*
|
|
80
86
|
*/
|
|
81
87
|
export declare class DetachFromIndexCommand extends $Command<DetachFromIndexCommandInput, DetachFromIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -36,6 +36,10 @@ export interface DetachObjectCommandOutput extends DetachObjectResponse, __Metad
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DetachObjectCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DetachObjectResponse
|
|
40
|
+
* // DetachedObjectIdentifier: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
39
43
|
* ```
|
|
40
44
|
*
|
|
41
45
|
* @param DetachObjectCommandInput - {@link DetachObjectCommandInput}
|
|
@@ -73,6 +77,8 @@ export interface DetachObjectCommandOutput extends DetachObjectResponse, __Metad
|
|
|
73
77
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
74
78
|
* message.</p>
|
|
75
79
|
*
|
|
80
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
76
82
|
*
|
|
77
83
|
*/
|
|
78
84
|
export declare class DetachObjectCommand extends $Command<DetachObjectCommandInput, DetachObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface DetachPolicyCommandOutput extends DetachPolicyResponse, __Metad
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DetachPolicyCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param DetachPolicyCommandInput - {@link DetachPolicyCommandInput}
|
|
@@ -73,6 +75,8 @@ export interface DetachPolicyCommandOutput extends DetachPolicyResponse, __Metad
|
|
|
73
75
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
74
76
|
* message.</p>
|
|
75
77
|
*
|
|
78
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
76
80
|
*
|
|
77
81
|
*/
|
|
78
82
|
export declare class DetachPolicyCommand extends $Command<DetachPolicyCommandInput, DetachPolicyCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -55,6 +55,8 @@ export interface DetachTypedLinkCommandOutput extends __MetadataBearer {
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new DetachTypedLinkCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // {};
|
|
59
|
+
*
|
|
58
60
|
* ```
|
|
59
61
|
*
|
|
60
62
|
* @param DetachTypedLinkCommandInput - {@link DetachTypedLinkCommandInput}
|
|
@@ -92,6 +94,8 @@ export interface DetachTypedLinkCommandOutput extends __MetadataBearer {
|
|
|
92
94
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
93
95
|
* message.</p>
|
|
94
96
|
*
|
|
97
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
95
99
|
*
|
|
96
100
|
*/
|
|
97
101
|
export declare class DetachTypedLinkCommand extends $Command<DetachTypedLinkCommandInput, DetachTypedLinkCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface DisableDirectoryCommandOutput extends DisableDirectoryResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DisableDirectoryCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DisableDirectoryResponse
|
|
36
|
+
* // DirectoryArn: "STRING_VALUE", // required
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param DisableDirectoryCommandInput - {@link DisableDirectoryCommandInput}
|
|
@@ -66,6 +70,8 @@ export interface DisableDirectoryCommandOutput extends DisableDirectoryResponse,
|
|
|
66
70
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
67
71
|
* message.</p>
|
|
68
72
|
*
|
|
73
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
69
75
|
*
|
|
70
76
|
*/
|
|
71
77
|
export declare class DisableDirectoryCommand extends $Command<DisableDirectoryCommandInput, DisableDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface EnableDirectoryCommandOutput extends EnableDirectoryResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new EnableDirectoryCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // EnableDirectoryResponse
|
|
36
|
+
* // DirectoryArn: "STRING_VALUE", // required
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param EnableDirectoryCommandInput - {@link EnableDirectoryCommandInput}
|
|
@@ -66,6 +70,8 @@ export interface EnableDirectoryCommandOutput extends EnableDirectoryResponse, _
|
|
|
66
70
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
67
71
|
* message.</p>
|
|
68
72
|
*
|
|
73
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
69
75
|
*
|
|
70
76
|
*/
|
|
71
77
|
export declare class EnableDirectoryCommand extends $Command<EnableDirectoryCommandInput, EnableDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface GetAppliedSchemaVersionCommandOutput extends GetAppliedSchemaVe
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetAppliedSchemaVersionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetAppliedSchemaVersionResponse
|
|
35
|
+
* // AppliedSchemaArn: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param GetAppliedSchemaVersionCommandInput - {@link GetAppliedSchemaVersionCommandInput}
|
|
@@ -61,6 +65,8 @@ export interface GetAppliedSchemaVersionCommandOutput extends GetAppliedSchemaVe
|
|
|
61
65
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
62
66
|
* message.</p>
|
|
63
67
|
*
|
|
68
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
64
70
|
*
|
|
65
71
|
*/
|
|
66
72
|
export declare class GetAppliedSchemaVersionCommand extends $Command<GetAppliedSchemaVersionCommandInput, GetAppliedSchemaVersionCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface GetDirectoryCommandOutput extends GetDirectoryResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDirectoryCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetDirectoryResponse
|
|
35
|
+
* // Directory: { // Directory
|
|
36
|
+
* // Name: "STRING_VALUE",
|
|
37
|
+
* // DirectoryArn: "STRING_VALUE",
|
|
38
|
+
* // State: "ENABLED" || "DISABLED" || "DELETED",
|
|
39
|
+
* // CreationDateTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param GetDirectoryCommandInput - {@link GetDirectoryCommandInput}
|
|
@@ -58,6 +67,8 @@ export interface GetDirectoryCommandOutput extends GetDirectoryResponse, __Metad
|
|
|
58
67
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
59
68
|
* message.</p>
|
|
60
69
|
*
|
|
70
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
61
72
|
*
|
|
62
73
|
*/
|
|
63
74
|
export declare class GetDirectoryCommand extends $Command<GetDirectoryCommandInput, GetDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -33,6 +33,14 @@ export interface GetFacetCommandOutput extends GetFacetResponse, __MetadataBeare
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetFacetCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetFacetResponse
|
|
37
|
+
* // Facet: { // Facet
|
|
38
|
+
* // Name: "STRING_VALUE",
|
|
39
|
+
* // ObjectType: "NODE" || "LEAF_NODE" || "POLICY" || "INDEX",
|
|
40
|
+
* // FacetStyle: "STATIC" || "DYNAMIC",
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
36
44
|
* ```
|
|
37
45
|
*
|
|
38
46
|
* @param GetFacetCommandInput - {@link GetFacetCommandInput}
|
|
@@ -66,6 +74,8 @@ export interface GetFacetCommandOutput extends GetFacetResponse, __MetadataBeare
|
|
|
66
74
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
67
75
|
* message.</p>
|
|
68
76
|
*
|
|
77
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
69
79
|
*
|
|
70
80
|
*/
|
|
71
81
|
export declare class GetFacetCommand extends $Command<GetFacetCommandInput, GetFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -59,6 +59,25 @@ export interface GetLinkAttributesCommandOutput extends GetLinkAttributesRespons
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new GetLinkAttributesCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // { // GetLinkAttributesResponse
|
|
63
|
+
* // Attributes: [ // AttributeKeyAndValueList
|
|
64
|
+
* // { // AttributeKeyAndValue
|
|
65
|
+
* // Key: { // AttributeKey
|
|
66
|
+
* // SchemaArn: "STRING_VALUE", // required
|
|
67
|
+
* // FacetName: "STRING_VALUE", // required
|
|
68
|
+
* // Name: "STRING_VALUE", // required
|
|
69
|
+
* // },
|
|
70
|
+
* // Value: { // TypedAttributeValue Union: only one key present
|
|
71
|
+
* // StringValue: "STRING_VALUE",
|
|
72
|
+
* // BinaryValue: "BLOB_VALUE",
|
|
73
|
+
* // BooleanValue: true || false,
|
|
74
|
+
* // NumberValue: "STRING_VALUE",
|
|
75
|
+
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
76
|
+
* // },
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
62
81
|
* ```
|
|
63
82
|
*
|
|
64
83
|
* @param GetLinkAttributesCommandInput - {@link GetLinkAttributesCommandInput}
|
|
@@ -96,6 +115,8 @@ export interface GetLinkAttributesCommandOutput extends GetLinkAttributesRespons
|
|
|
96
115
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
97
116
|
* message.</p>
|
|
98
117
|
*
|
|
118
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
119
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
99
120
|
*
|
|
100
121
|
*/
|
|
101
122
|
export declare class GetLinkAttributesCommand extends $Command<GetLinkAttributesCommandInput, GetLinkAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -42,6 +42,25 @@ export interface GetObjectAttributesCommandOutput extends GetObjectAttributesRes
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new GetObjectAttributesCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // GetObjectAttributesResponse
|
|
46
|
+
* // Attributes: [ // AttributeKeyAndValueList
|
|
47
|
+
* // { // AttributeKeyAndValue
|
|
48
|
+
* // Key: { // AttributeKey
|
|
49
|
+
* // SchemaArn: "STRING_VALUE", // required
|
|
50
|
+
* // FacetName: "STRING_VALUE", // required
|
|
51
|
+
* // Name: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // Value: { // TypedAttributeValue Union: only one key present
|
|
54
|
+
* // StringValue: "STRING_VALUE",
|
|
55
|
+
* // BinaryValue: "BLOB_VALUE",
|
|
56
|
+
* // BooleanValue: true || false,
|
|
57
|
+
* // NumberValue: "STRING_VALUE",
|
|
58
|
+
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
45
64
|
* ```
|
|
46
65
|
*
|
|
47
66
|
* @param GetObjectAttributesCommandInput - {@link GetObjectAttributesCommandInput}
|
|
@@ -79,6 +98,8 @@ export interface GetObjectAttributesCommandOutput extends GetObjectAttributesRes
|
|
|
79
98
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
80
99
|
* message.</p>
|
|
81
100
|
*
|
|
101
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
82
103
|
*
|
|
83
104
|
*/
|
|
84
105
|
export declare class GetObjectAttributesCommand extends $Command<GetObjectAttributesCommandInput, GetObjectAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -35,6 +35,16 @@ export interface GetObjectInformationCommandOutput extends GetObjectInformationR
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetObjectInformationCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetObjectInformationResponse
|
|
39
|
+
* // SchemaFacets: [ // SchemaFacetList
|
|
40
|
+
* // { // SchemaFacet
|
|
41
|
+
* // SchemaArn: "STRING_VALUE",
|
|
42
|
+
* // FacetName: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // ObjectIdentifier: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
38
48
|
* ```
|
|
39
49
|
*
|
|
40
50
|
* @param GetObjectInformationCommandInput - {@link GetObjectInformationCommandInput}
|
|
@@ -68,6 +78,8 @@ export interface GetObjectInformationCommandOutput extends GetObjectInformationR
|
|
|
68
78
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
69
79
|
* message.</p>
|
|
70
80
|
*
|
|
81
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
71
83
|
*
|
|
72
84
|
*/
|
|
73
85
|
export declare class GetObjectInformationCommand extends $Command<GetObjectInformationCommandInput, GetObjectInformationCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -31,6 +31,11 @@ export interface GetSchemaAsJsonCommandOutput extends GetSchemaAsJsonResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetSchemaAsJsonCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetSchemaAsJsonResponse
|
|
35
|
+
* // Name: "STRING_VALUE",
|
|
36
|
+
* // Document: "STRING_VALUE",
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
36
41
|
* @param GetSchemaAsJsonCommandInput - {@link GetSchemaAsJsonCommandInput}
|
|
@@ -61,6 +66,8 @@ export interface GetSchemaAsJsonCommandOutput extends GetSchemaAsJsonResponse, _
|
|
|
61
66
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
62
67
|
* message.</p>
|
|
63
68
|
*
|
|
69
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
64
71
|
*
|
|
65
72
|
*/
|
|
66
73
|
export declare class GetSchemaAsJsonCommand extends $Command<GetSchemaAsJsonCommandInput, GetSchemaAsJsonCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface GetTypedLinkFacetInformationCommandOutput extends GetTypedLinkF
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetTypedLinkFacetInformationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetTypedLinkFacetInformationResponse
|
|
36
|
+
* // IdentityAttributeOrder: [ // AttributeNameList
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param GetTypedLinkFacetInformationCommandInput - {@link GetTypedLinkFacetInformationCommandInput}
|
|
@@ -68,6 +74,8 @@ export interface GetTypedLinkFacetInformationCommandOutput extends GetTypedLinkF
|
|
|
68
74
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
69
75
|
* message.</p>
|
|
70
76
|
*
|
|
77
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
71
79
|
*
|
|
72
80
|
*/
|
|
73
81
|
export declare class GetTypedLinkFacetInformationCommand extends $Command<GetTypedLinkFacetInformationCommandInput, GetTypedLinkFacetInformationCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface ListAppliedSchemaArnsCommandOutput extends ListAppliedSchemaArn
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListAppliedSchemaArnsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListAppliedSchemaArnsResponse
|
|
38
|
+
* // SchemaArns: [ // Arns
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ListAppliedSchemaArnsCommandInput - {@link ListAppliedSchemaArnsCommandInput}
|
|
@@ -67,6 +74,8 @@ export interface ListAppliedSchemaArnsCommandOutput extends ListAppliedSchemaArn
|
|
|
67
74
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
68
75
|
* message.</p>
|
|
69
76
|
*
|
|
77
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
70
79
|
*
|
|
71
80
|
*/
|
|
72
81
|
export declare class ListAppliedSchemaArnsCommand extends $Command<ListAppliedSchemaArnsCommandInput, ListAppliedSchemaArnsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -37,6 +37,31 @@ export interface ListAttachedIndicesCommandOutput extends ListAttachedIndicesRes
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListAttachedIndicesCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListAttachedIndicesResponse
|
|
41
|
+
* // IndexAttachments: [ // IndexAttachmentList
|
|
42
|
+
* // { // IndexAttachment
|
|
43
|
+
* // IndexedAttributes: [ // AttributeKeyAndValueList
|
|
44
|
+
* // { // AttributeKeyAndValue
|
|
45
|
+
* // Key: { // AttributeKey
|
|
46
|
+
* // SchemaArn: "STRING_VALUE", // required
|
|
47
|
+
* // FacetName: "STRING_VALUE", // required
|
|
48
|
+
* // Name: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // Value: { // TypedAttributeValue Union: only one key present
|
|
51
|
+
* // StringValue: "STRING_VALUE",
|
|
52
|
+
* // BinaryValue: "BLOB_VALUE",
|
|
53
|
+
* // BooleanValue: true || false,
|
|
54
|
+
* // NumberValue: "STRING_VALUE",
|
|
55
|
+
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // ObjectIdentifier: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // NextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
40
65
|
* ```
|
|
41
66
|
*
|
|
42
67
|
* @param ListAttachedIndicesCommandInput - {@link ListAttachedIndicesCommandInput}
|
|
@@ -70,6 +95,8 @@ export interface ListAttachedIndicesCommandOutput extends ListAttachedIndicesRes
|
|
|
70
95
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
71
96
|
* message.</p>
|
|
72
97
|
*
|
|
98
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
73
100
|
*
|
|
74
101
|
*/
|
|
75
102
|
export declare class ListAttachedIndicesCommand extends $Command<ListAttachedIndicesCommandInput, ListAttachedIndicesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListDevelopmentSchemaArnsCommandOutput extends ListDevelopmentS
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListDevelopmentSchemaArnsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListDevelopmentSchemaArnsResponse
|
|
37
|
+
* // SchemaArns: [ // Arns
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // NextToken: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListDevelopmentSchemaArnsCommandInput - {@link ListDevelopmentSchemaArnsCommandInput}
|
|
@@ -66,6 +73,8 @@ export interface ListDevelopmentSchemaArnsCommandOutput extends ListDevelopmentS
|
|
|
66
73
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
67
74
|
* message.</p>
|
|
68
75
|
*
|
|
76
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
69
78
|
*
|
|
70
79
|
*/
|
|
71
80
|
export declare class ListDevelopmentSchemaArnsCommand extends $Command<ListDevelopmentSchemaArnsCommandInput, ListDevelopmentSchemaArnsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface ListDirectoriesCommandOutput extends ListDirectoriesResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListDirectoriesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListDirectoriesResponse
|
|
37
|
+
* // Directories: [ // DirectoryList // required
|
|
38
|
+
* // { // Directory
|
|
39
|
+
* // Name: "STRING_VALUE",
|
|
40
|
+
* // DirectoryArn: "STRING_VALUE",
|
|
41
|
+
* // State: "ENABLED" || "DISABLED" || "DELETED",
|
|
42
|
+
* // CreationDateTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // NextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param ListDirectoriesCommandInput - {@link ListDirectoriesCommandInput}
|
|
@@ -63,6 +75,8 @@ export interface ListDirectoriesCommandOutput extends ListDirectoriesResponse, _
|
|
|
63
75
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
64
76
|
* message.</p>
|
|
65
77
|
*
|
|
78
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
66
80
|
*
|
|
67
81
|
*/
|
|
68
82
|
export declare class ListDirectoriesCommand extends $Command<ListDirectoriesCommandInput, ListDirectoriesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -34,6 +34,39 @@ export interface ListFacetAttributesCommandOutput extends ListFacetAttributesRes
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListFacetAttributesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListFacetAttributesResponse
|
|
38
|
+
* // Attributes: [ // FacetAttributeList
|
|
39
|
+
* // { // FacetAttribute
|
|
40
|
+
* // Name: "STRING_VALUE", // required
|
|
41
|
+
* // AttributeDefinition: { // FacetAttributeDefinition
|
|
42
|
+
* // Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required
|
|
43
|
+
* // DefaultValue: { // TypedAttributeValue Union: only one key present
|
|
44
|
+
* // StringValue: "STRING_VALUE",
|
|
45
|
+
* // BinaryValue: "BLOB_VALUE",
|
|
46
|
+
* // BooleanValue: true || false,
|
|
47
|
+
* // NumberValue: "STRING_VALUE",
|
|
48
|
+
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
49
|
+
* // },
|
|
50
|
+
* // IsImmutable: true || false,
|
|
51
|
+
* // Rules: { // RuleMap
|
|
52
|
+
* // "<keys>": { // Rule
|
|
53
|
+
* // Type: "BINARY_LENGTH" || "NUMBER_COMPARISON" || "STRING_FROM_SET" || "STRING_LENGTH",
|
|
54
|
+
* // Parameters: { // RuleParameterMap
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // AttributeReference: { // FacetAttributeReference
|
|
61
|
+
* // TargetFacetName: "STRING_VALUE", // required
|
|
62
|
+
* // TargetAttributeName: "STRING_VALUE", // required
|
|
63
|
+
* // },
|
|
64
|
+
* // RequiredBehavior: "REQUIRED_ALWAYS" || "NOT_REQUIRED",
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // NextToken: "STRING_VALUE",
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
37
70
|
* ```
|
|
38
71
|
*
|
|
39
72
|
* @param ListFacetAttributesCommandInput - {@link ListFacetAttributesCommandInput}
|
|
@@ -70,6 +103,8 @@ export interface ListFacetAttributesCommandOutput extends ListFacetAttributesRes
|
|
|
70
103
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
71
104
|
* message.</p>
|
|
72
105
|
*
|
|
106
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
73
108
|
*
|
|
74
109
|
*/
|
|
75
110
|
export declare class ListFacetAttributesCommand extends $Command<ListFacetAttributesCommandInput, ListFacetAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListFacetNamesCommandOutput extends ListFacetNamesResponse, __M
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListFacetNamesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListFacetNamesResponse
|
|
37
|
+
* // FacetNames: [ // FacetNameList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // NextToken: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListFacetNamesCommandInput - {@link ListFacetNamesCommandInput}
|
|
@@ -66,6 +73,8 @@ export interface ListFacetNamesCommandOutput extends ListFacetNamesResponse, __M
|
|
|
66
73
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
67
74
|
* message.</p>
|
|
68
75
|
*
|
|
76
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
69
78
|
*
|
|
70
79
|
*/
|
|
71
80
|
export declare class ListFacetNamesCommand extends $Command<ListFacetNamesCommandInput, ListFacetNamesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -66,6 +66,36 @@ export interface ListIncomingTypedLinksCommandOutput extends ListIncomingTypedLi
|
|
|
66
66
|
* };
|
|
67
67
|
* const command = new ListIncomingTypedLinksCommand(input);
|
|
68
68
|
* const response = await client.send(command);
|
|
69
|
+
* // { // ListIncomingTypedLinksResponse
|
|
70
|
+
* // LinkSpecifiers: [ // TypedLinkSpecifierList
|
|
71
|
+
* // { // TypedLinkSpecifier
|
|
72
|
+
* // TypedLinkFacet: { // TypedLinkSchemaAndFacetName
|
|
73
|
+
* // SchemaArn: "STRING_VALUE", // required
|
|
74
|
+
* // TypedLinkName: "STRING_VALUE", // required
|
|
75
|
+
* // },
|
|
76
|
+
* // SourceObjectReference: { // ObjectReference
|
|
77
|
+
* // Selector: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // TargetObjectReference: {
|
|
80
|
+
* // Selector: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // IdentityAttributeValues: [ // AttributeNameAndValueList // required
|
|
83
|
+
* // { // AttributeNameAndValue
|
|
84
|
+
* // AttributeName: "STRING_VALUE", // required
|
|
85
|
+
* // Value: { // TypedAttributeValue Union: only one key present
|
|
86
|
+
* // StringValue: "STRING_VALUE",
|
|
87
|
+
* // BinaryValue: "BLOB_VALUE",
|
|
88
|
+
* // BooleanValue: true || false,
|
|
89
|
+
* // NumberValue: "STRING_VALUE",
|
|
90
|
+
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // NextToken: "STRING_VALUE",
|
|
97
|
+
* // };
|
|
98
|
+
*
|
|
69
99
|
* ```
|
|
70
100
|
*
|
|
71
101
|
* @param ListIncomingTypedLinksCommandInput - {@link ListIncomingTypedLinksCommandInput}
|
|
@@ -106,6 +136,8 @@ export interface ListIncomingTypedLinksCommandOutput extends ListIncomingTypedLi
|
|
|
106
136
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
107
137
|
* message.</p>
|
|
108
138
|
*
|
|
139
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
140
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
109
141
|
*
|
|
110
142
|
*/
|
|
111
143
|
export declare class ListIncomingTypedLinksCommand extends $Command<ListIncomingTypedLinksCommandInput, ListIncomingTypedLinksCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -64,6 +64,31 @@ export interface ListIndexCommandOutput extends ListIndexResponse, __MetadataBea
|
|
|
64
64
|
* };
|
|
65
65
|
* const command = new ListIndexCommand(input);
|
|
66
66
|
* const response = await client.send(command);
|
|
67
|
+
* // { // ListIndexResponse
|
|
68
|
+
* // IndexAttachments: [ // IndexAttachmentList
|
|
69
|
+
* // { // IndexAttachment
|
|
70
|
+
* // IndexedAttributes: [ // AttributeKeyAndValueList
|
|
71
|
+
* // { // AttributeKeyAndValue
|
|
72
|
+
* // Key: { // AttributeKey
|
|
73
|
+
* // SchemaArn: "STRING_VALUE", // required
|
|
74
|
+
* // FacetName: "STRING_VALUE", // required
|
|
75
|
+
* // Name: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // Value: { // TypedAttributeValue Union: only one key present
|
|
78
|
+
* // StringValue: "STRING_VALUE",
|
|
79
|
+
* // BinaryValue: "BLOB_VALUE",
|
|
80
|
+
* // BooleanValue: true || false,
|
|
81
|
+
* // NumberValue: "STRING_VALUE",
|
|
82
|
+
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
83
|
+
* // },
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // ObjectIdentifier: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // NextToken: "STRING_VALUE",
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
67
92
|
* ```
|
|
68
93
|
*
|
|
69
94
|
* @param ListIndexCommandInput - {@link ListIndexCommandInput}
|
|
@@ -107,6 +132,8 @@ export interface ListIndexCommandOutput extends ListIndexResponse, __MetadataBea
|
|
|
107
132
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
108
133
|
* message.</p>
|
|
109
134
|
*
|
|
135
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
136
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
110
137
|
*
|
|
111
138
|
*/
|
|
112
139
|
export declare class ListIndexCommand extends $Command<ListIndexCommandInput, ListIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface ListManagedSchemaArnsCommandOutput extends ListManagedSchemaArn
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListManagedSchemaArnsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListManagedSchemaArnsResponse
|
|
37
|
+
* // SchemaArns: [ // Arns
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // NextToken: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param ListManagedSchemaArnsCommandInput - {@link ListManagedSchemaArnsCommandInput}
|
|
@@ -60,6 +67,8 @@ export interface ListManagedSchemaArnsCommandOutput extends ListManagedSchemaArn
|
|
|
60
67
|
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
61
68
|
* message.</p>
|
|
62
69
|
*
|
|
70
|
+
* @throws {@link CloudDirectoryServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
63
72
|
*
|
|
64
73
|
*/
|
|
65
74
|
export declare class ListManagedSchemaArnsCommand extends $Command<ListManagedSchemaArnsCommandInput, ListManagedSchemaArnsCommandOutput, CloudDirectoryClientResolvedConfig> {
|