@aws-sdk/client-clouddirectory 3.321.1 → 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.
Files changed (67) hide show
  1. package/dist-types/commands/AddFacetToObjectCommand.d.ts +4 -0
  2. package/dist-types/commands/ApplySchemaCommand.d.ts +7 -0
  3. package/dist-types/commands/AttachObjectCommand.d.ts +6 -0
  4. package/dist-types/commands/AttachPolicyCommand.d.ts +4 -0
  5. package/dist-types/commands/AttachToIndexCommand.d.ts +6 -0
  6. package/dist-types/commands/AttachTypedLinkCommand.d.ts +29 -0
  7. package/dist-types/commands/BatchReadCommand.d.ts +226 -0
  8. package/dist-types/commands/BatchWriteCommand.d.ts +63 -0
  9. package/dist-types/commands/CreateDirectoryCommand.d.ts +9 -0
  10. package/dist-types/commands/CreateFacetCommand.d.ts +4 -0
  11. package/dist-types/commands/CreateIndexCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateObjectCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateSchemaCommand.d.ts +6 -0
  14. package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteDirectoryCommand.d.ts +6 -0
  16. package/dist-types/commands/DeleteFacetCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteObjectCommand.d.ts +4 -0
  18. package/dist-types/commands/DeleteSchemaCommand.d.ts +6 -0
  19. package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +4 -0
  20. package/dist-types/commands/DetachFromIndexCommand.d.ts +6 -0
  21. package/dist-types/commands/DetachObjectCommand.d.ts +6 -0
  22. package/dist-types/commands/DetachPolicyCommand.d.ts +4 -0
  23. package/dist-types/commands/DetachTypedLinkCommand.d.ts +4 -0
  24. package/dist-types/commands/DisableDirectoryCommand.d.ts +6 -0
  25. package/dist-types/commands/EnableDirectoryCommand.d.ts +6 -0
  26. package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +6 -0
  27. package/dist-types/commands/GetDirectoryCommand.d.ts +11 -0
  28. package/dist-types/commands/GetFacetCommand.d.ts +10 -0
  29. package/dist-types/commands/GetLinkAttributesCommand.d.ts +21 -0
  30. package/dist-types/commands/GetObjectAttributesCommand.d.ts +21 -0
  31. package/dist-types/commands/GetObjectInformationCommand.d.ts +12 -0
  32. package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +7 -0
  33. package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +8 -0
  34. package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +9 -0
  35. package/dist-types/commands/ListAttachedIndicesCommand.d.ts +27 -0
  36. package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +9 -0
  37. package/dist-types/commands/ListDirectoriesCommand.d.ts +14 -0
  38. package/dist-types/commands/ListFacetAttributesCommand.d.ts +35 -0
  39. package/dist-types/commands/ListFacetNamesCommand.d.ts +9 -0
  40. package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +32 -0
  41. package/dist-types/commands/ListIndexCommand.d.ts +27 -0
  42. package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +9 -0
  43. package/dist-types/commands/ListObjectAttributesCommand.d.ts +22 -0
  44. package/dist-types/commands/ListObjectChildrenCommand.d.ts +9 -0
  45. package/dist-types/commands/ListObjectParentPathsCommand.d.ts +14 -0
  46. package/dist-types/commands/ListObjectParentsCommand.d.ts +15 -0
  47. package/dist-types/commands/ListObjectPoliciesCommand.d.ts +9 -0
  48. package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +32 -0
  49. package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +9 -0
  50. package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +9 -0
  51. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  52. package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +29 -0
  53. package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +9 -0
  54. package/dist-types/commands/LookupPolicyCommand.d.ts +18 -0
  55. package/dist-types/commands/PublishSchemaCommand.d.ts +6 -0
  56. package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +6 -0
  57. package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +4 -0
  58. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  59. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  60. package/dist-types/commands/UpdateFacetCommand.d.ts +4 -0
  61. package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +4 -0
  62. package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +6 -0
  63. package/dist-types/commands/UpdateSchemaCommand.d.ts +6 -0
  64. package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +4 -0
  65. package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +7 -0
  66. package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +6 -0
  67. package/package.json +16 -16
@@ -54,6 +54,8 @@ export interface AddFacetToObjectCommandOutput extends AddFacetToObjectResponse,
54
54
  * };
55
55
  * const command = new AddFacetToObjectCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // {};
58
+ *
57
59
  * ```
58
60
  *
59
61
  * @param AddFacetToObjectCommandInput - {@link AddFacetToObjectCommandInput}
@@ -91,6 +93,8 @@ export interface AddFacetToObjectCommandOutput extends AddFacetToObjectResponse,
91
93
  * <p>Indicates that your request is malformed in some manner. See the exception
92
94
  * message.</p>
93
95
  *
96
+ * @throws {@link CloudDirectoryServiceException}
97
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
94
98
  *
95
99
  */
96
100
  export declare class AddFacetToObjectCommand extends $Command<AddFacetToObjectCommandInput, AddFacetToObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -33,6 +33,11 @@ export interface ApplySchemaCommandOutput extends ApplySchemaResponse, __Metadat
33
33
  * };
34
34
  * const command = new ApplySchemaCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ApplySchemaResponse
37
+ * // AppliedSchemaArn: "STRING_VALUE",
38
+ * // DirectoryArn: "STRING_VALUE",
39
+ * // };
40
+ *
36
41
  * ```
37
42
  *
38
43
  * @param ApplySchemaCommandInput - {@link ApplySchemaCommandInput}
@@ -71,6 +76,8 @@ export interface ApplySchemaCommandOutput extends ApplySchemaResponse, __Metadat
71
76
  * <p>Indicates that your request is malformed in some manner. See the exception
72
77
  * message.</p>
73
78
  *
79
+ * @throws {@link CloudDirectoryServiceException}
80
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
74
81
  *
75
82
  */
76
83
  export declare class ApplySchemaCommand extends $Command<ApplySchemaCommandInput, ApplySchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -48,6 +48,10 @@ export interface AttachObjectCommandOutput extends AttachObjectResponse, __Metad
48
48
  * };
49
49
  * const command = new AttachObjectCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // AttachObjectResponse
52
+ * // AttachedObjectIdentifier: "STRING_VALUE",
53
+ * // };
54
+ *
51
55
  * ```
52
56
  *
53
57
  * @param AttachObjectCommandInput - {@link AttachObjectCommandInput}
@@ -93,6 +97,8 @@ export interface AttachObjectCommandOutput extends AttachObjectResponse, __Metad
93
97
  * <p>Indicates that your request is malformed in some manner. See the exception
94
98
  * message.</p>
95
99
  *
100
+ * @throws {@link CloudDirectoryServiceException}
101
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
96
102
  *
97
103
  */
98
104
  export declare class AttachObjectCommand extends $Command<AttachObjectCommandInput, AttachObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -38,6 +38,8 @@ export interface AttachPolicyCommandOutput extends AttachPolicyResponse, __Metad
38
38
  * };
39
39
  * const command = new AttachPolicyCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // {};
42
+ *
41
43
  * ```
42
44
  *
43
45
  * @param AttachPolicyCommandInput - {@link AttachPolicyCommandInput}
@@ -74,6 +76,8 @@ export interface AttachPolicyCommandOutput extends AttachPolicyResponse, __Metad
74
76
  * <p>Indicates that your request is malformed in some manner. See the exception
75
77
  * message.</p>
76
78
  *
79
+ * @throws {@link CloudDirectoryServiceException}
80
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
77
81
  *
78
82
  */
79
83
  export declare class AttachPolicyCommand extends $Command<AttachPolicyCommandInput, AttachPolicyCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -37,6 +37,10 @@ export interface AttachToIndexCommandOutput extends AttachToIndexResponse, __Met
37
37
  * };
38
38
  * const command = new AttachToIndexCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // AttachToIndexResponse
41
+ * // AttachedObjectIdentifier: "STRING_VALUE",
42
+ * // };
43
+ *
40
44
  * ```
41
45
  *
42
46
  * @param AttachToIndexCommandInput - {@link AttachToIndexCommandInput}
@@ -84,6 +88,8 @@ export interface AttachToIndexCommandOutput extends AttachToIndexResponse, __Met
84
88
  * <p>Indicates that your request is malformed in some manner. See the exception
85
89
  * message.</p>
86
90
  *
91
+ * @throws {@link CloudDirectoryServiceException}
92
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
87
93
  *
88
94
  */
89
95
  export declare class AttachToIndexCommand extends $Command<AttachToIndexCommandInput, AttachToIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -53,6 +53,33 @@ export interface AttachTypedLinkCommandOutput extends AttachTypedLinkResponse, _
53
53
  * };
54
54
  * const command = new AttachTypedLinkCommand(input);
55
55
  * const response = await client.send(command);
56
+ * // { // AttachTypedLinkResponse
57
+ * // TypedLinkSpecifier: { // TypedLinkSpecifier
58
+ * // TypedLinkFacet: { // TypedLinkSchemaAndFacetName
59
+ * // SchemaArn: "STRING_VALUE", // required
60
+ * // TypedLinkName: "STRING_VALUE", // required
61
+ * // },
62
+ * // SourceObjectReference: { // ObjectReference
63
+ * // Selector: "STRING_VALUE",
64
+ * // },
65
+ * // TargetObjectReference: {
66
+ * // Selector: "STRING_VALUE",
67
+ * // },
68
+ * // IdentityAttributeValues: [ // AttributeNameAndValueList // required
69
+ * // { // AttributeNameAndValue
70
+ * // AttributeName: "STRING_VALUE", // required
71
+ * // Value: { // TypedAttributeValue Union: only one key present
72
+ * // StringValue: "STRING_VALUE",
73
+ * // BinaryValue: "BLOB_VALUE",
74
+ * // BooleanValue: true || false,
75
+ * // NumberValue: "STRING_VALUE",
76
+ * // DatetimeValue: new Date("TIMESTAMP"),
77
+ * // },
78
+ * // },
79
+ * // ],
80
+ * // },
81
+ * // };
82
+ *
56
83
  * ```
57
84
  *
58
85
  * @param AttachTypedLinkCommandInput - {@link AttachTypedLinkCommandInput}
@@ -94,6 +121,8 @@ export interface AttachTypedLinkCommandOutput extends AttachTypedLinkResponse, _
94
121
  * <p>Indicates that your request is malformed in some manner. See the exception
95
122
  * message.</p>
96
123
  *
124
+ * @throws {@link CloudDirectoryServiceException}
125
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
97
126
  *
98
127
  */
99
128
  export declare class AttachTypedLinkCommand extends $Command<AttachTypedLinkCommandInput, AttachTypedLinkCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -212,6 +212,230 @@ export interface BatchReadCommandOutput extends BatchReadResponse, __MetadataBea
212
212
  * };
213
213
  * const command = new BatchReadCommand(input);
214
214
  * const response = await client.send(command);
215
+ * // { // BatchReadResponse
216
+ * // Responses: [ // BatchReadOperationResponseList
217
+ * // { // BatchReadOperationResponse
218
+ * // SuccessfulResponse: { // BatchReadSuccessfulResponse
219
+ * // ListObjectAttributes: { // BatchListObjectAttributesResponse
220
+ * // Attributes: [ // AttributeKeyAndValueList
221
+ * // { // AttributeKeyAndValue
222
+ * // Key: { // AttributeKey
223
+ * // SchemaArn: "STRING_VALUE", // required
224
+ * // FacetName: "STRING_VALUE", // required
225
+ * // Name: "STRING_VALUE", // required
226
+ * // },
227
+ * // Value: { // TypedAttributeValue Union: only one key present
228
+ * // StringValue: "STRING_VALUE",
229
+ * // BinaryValue: "BLOB_VALUE",
230
+ * // BooleanValue: true || false,
231
+ * // NumberValue: "STRING_VALUE",
232
+ * // DatetimeValue: new Date("TIMESTAMP"),
233
+ * // },
234
+ * // },
235
+ * // ],
236
+ * // NextToken: "STRING_VALUE",
237
+ * // },
238
+ * // ListObjectChildren: { // BatchListObjectChildrenResponse
239
+ * // Children: { // LinkNameToObjectIdentifierMap
240
+ * // "<keys>": "STRING_VALUE",
241
+ * // },
242
+ * // NextToken: "STRING_VALUE",
243
+ * // },
244
+ * // GetObjectInformation: { // BatchGetObjectInformationResponse
245
+ * // SchemaFacets: [ // SchemaFacetList
246
+ * // { // SchemaFacet
247
+ * // SchemaArn: "STRING_VALUE",
248
+ * // FacetName: "STRING_VALUE",
249
+ * // },
250
+ * // ],
251
+ * // ObjectIdentifier: "STRING_VALUE",
252
+ * // },
253
+ * // GetObjectAttributes: { // BatchGetObjectAttributesResponse
254
+ * // Attributes: [
255
+ * // {
256
+ * // Key: {
257
+ * // SchemaArn: "STRING_VALUE", // required
258
+ * // FacetName: "STRING_VALUE", // required
259
+ * // Name: "STRING_VALUE", // required
260
+ * // },
261
+ * // Value: {// Union: only one key present
262
+ * // StringValue: "STRING_VALUE",
263
+ * // BinaryValue: "BLOB_VALUE",
264
+ * // BooleanValue: true || false,
265
+ * // NumberValue: "STRING_VALUE",
266
+ * // DatetimeValue: new Date("TIMESTAMP"),
267
+ * // },
268
+ * // },
269
+ * // ],
270
+ * // },
271
+ * // ListAttachedIndices: { // BatchListAttachedIndicesResponse
272
+ * // IndexAttachments: [ // IndexAttachmentList
273
+ * // { // IndexAttachment
274
+ * // IndexedAttributes: [
275
+ * // {
276
+ * // Key: {
277
+ * // SchemaArn: "STRING_VALUE", // required
278
+ * // FacetName: "STRING_VALUE", // required
279
+ * // Name: "STRING_VALUE", // required
280
+ * // },
281
+ * // Value: {// Union: only one key present
282
+ * // StringValue: "STRING_VALUE",
283
+ * // BinaryValue: "BLOB_VALUE",
284
+ * // BooleanValue: true || false,
285
+ * // NumberValue: "STRING_VALUE",
286
+ * // DatetimeValue: new Date("TIMESTAMP"),
287
+ * // },
288
+ * // },
289
+ * // ],
290
+ * // ObjectIdentifier: "STRING_VALUE",
291
+ * // },
292
+ * // ],
293
+ * // NextToken: "STRING_VALUE",
294
+ * // },
295
+ * // ListObjectParentPaths: { // BatchListObjectParentPathsResponse
296
+ * // PathToObjectIdentifiersList: [ // PathToObjectIdentifiersList
297
+ * // { // PathToObjectIdentifiers
298
+ * // Path: "STRING_VALUE",
299
+ * // ObjectIdentifiers: [ // ObjectIdentifierList
300
+ * // "STRING_VALUE",
301
+ * // ],
302
+ * // },
303
+ * // ],
304
+ * // NextToken: "STRING_VALUE",
305
+ * // },
306
+ * // ListObjectPolicies: { // BatchListObjectPoliciesResponse
307
+ * // AttachedPolicyIds: [
308
+ * // "STRING_VALUE",
309
+ * // ],
310
+ * // NextToken: "STRING_VALUE",
311
+ * // },
312
+ * // ListPolicyAttachments: { // BatchListPolicyAttachmentsResponse
313
+ * // ObjectIdentifiers: [
314
+ * // "STRING_VALUE",
315
+ * // ],
316
+ * // NextToken: "STRING_VALUE",
317
+ * // },
318
+ * // LookupPolicy: { // BatchLookupPolicyResponse
319
+ * // PolicyToPathList: [ // PolicyToPathList
320
+ * // { // PolicyToPath
321
+ * // Path: "STRING_VALUE",
322
+ * // Policies: [ // PolicyAttachmentList
323
+ * // { // PolicyAttachment
324
+ * // PolicyId: "STRING_VALUE",
325
+ * // ObjectIdentifier: "STRING_VALUE",
326
+ * // PolicyType: "STRING_VALUE",
327
+ * // },
328
+ * // ],
329
+ * // },
330
+ * // ],
331
+ * // NextToken: "STRING_VALUE",
332
+ * // },
333
+ * // ListIndex: { // BatchListIndexResponse
334
+ * // IndexAttachments: [
335
+ * // {
336
+ * // IndexedAttributes: [
337
+ * // {
338
+ * // Key: {
339
+ * // SchemaArn: "STRING_VALUE", // required
340
+ * // FacetName: "STRING_VALUE", // required
341
+ * // Name: "STRING_VALUE", // required
342
+ * // },
343
+ * // Value: {// Union: only one key present
344
+ * // StringValue: "STRING_VALUE",
345
+ * // BinaryValue: "BLOB_VALUE",
346
+ * // BooleanValue: true || false,
347
+ * // NumberValue: "STRING_VALUE",
348
+ * // DatetimeValue: new Date("TIMESTAMP"),
349
+ * // },
350
+ * // },
351
+ * // ],
352
+ * // ObjectIdentifier: "STRING_VALUE",
353
+ * // },
354
+ * // ],
355
+ * // NextToken: "STRING_VALUE",
356
+ * // },
357
+ * // ListOutgoingTypedLinks: { // BatchListOutgoingTypedLinksResponse
358
+ * // TypedLinkSpecifiers: [ // TypedLinkSpecifierList
359
+ * // { // TypedLinkSpecifier
360
+ * // TypedLinkFacet: { // TypedLinkSchemaAndFacetName
361
+ * // SchemaArn: "STRING_VALUE", // required
362
+ * // TypedLinkName: "STRING_VALUE", // required
363
+ * // },
364
+ * // SourceObjectReference: { // ObjectReference
365
+ * // Selector: "STRING_VALUE",
366
+ * // },
367
+ * // TargetObjectReference: {
368
+ * // Selector: "STRING_VALUE",
369
+ * // },
370
+ * // IdentityAttributeValues: [ // AttributeNameAndValueList // required
371
+ * // { // AttributeNameAndValue
372
+ * // AttributeName: "STRING_VALUE", // required
373
+ * // Value: {// Union: only one key present
374
+ * // StringValue: "STRING_VALUE",
375
+ * // BinaryValue: "BLOB_VALUE",
376
+ * // BooleanValue: true || false,
377
+ * // NumberValue: "STRING_VALUE",
378
+ * // DatetimeValue: new Date("TIMESTAMP"),
379
+ * // },
380
+ * // },
381
+ * // ],
382
+ * // },
383
+ * // ],
384
+ * // NextToken: "STRING_VALUE",
385
+ * // },
386
+ * // ListIncomingTypedLinks: { // BatchListIncomingTypedLinksResponse
387
+ * // LinkSpecifiers: [
388
+ * // {
389
+ * // TypedLinkFacet: {
390
+ * // SchemaArn: "STRING_VALUE", // required
391
+ * // TypedLinkName: "STRING_VALUE", // required
392
+ * // },
393
+ * // SourceObjectReference: {
394
+ * // Selector: "STRING_VALUE",
395
+ * // },
396
+ * // TargetObjectReference: {
397
+ * // Selector: "STRING_VALUE",
398
+ * // },
399
+ * // IdentityAttributeValues: [ // required
400
+ * // {
401
+ * // AttributeName: "STRING_VALUE", // required
402
+ * // Value: "<TypedAttributeValue>", // required
403
+ * // },
404
+ * // ],
405
+ * // },
406
+ * // ],
407
+ * // NextToken: "STRING_VALUE",
408
+ * // },
409
+ * // GetLinkAttributes: { // BatchGetLinkAttributesResponse
410
+ * // Attributes: [
411
+ * // {
412
+ * // Key: {
413
+ * // SchemaArn: "STRING_VALUE", // required
414
+ * // FacetName: "STRING_VALUE", // required
415
+ * // Name: "STRING_VALUE", // required
416
+ * // },
417
+ * // Value: "<TypedAttributeValue>", // required
418
+ * // },
419
+ * // ],
420
+ * // },
421
+ * // ListObjectParents: { // BatchListObjectParentsResponse
422
+ * // ParentLinks: [ // ObjectIdentifierAndLinkNameList
423
+ * // { // ObjectIdentifierAndLinkNameTuple
424
+ * // ObjectIdentifier: "STRING_VALUE",
425
+ * // LinkName: "STRING_VALUE",
426
+ * // },
427
+ * // ],
428
+ * // NextToken: "STRING_VALUE",
429
+ * // },
430
+ * // },
431
+ * // ExceptionResponse: { // BatchReadException
432
+ * // Type: "ValidationException" || "InvalidArnException" || "ResourceNotFoundException" || "InvalidNextTokenException" || "AccessDeniedException" || "NotNodeException" || "FacetValidationException" || "CannotListParentOfRootException" || "NotIndexException" || "NotPolicyException" || "DirectoryNotEnabledException" || "LimitExceededException" || "InternalServiceException",
433
+ * // Message: "STRING_VALUE",
434
+ * // },
435
+ * // },
436
+ * // ],
437
+ * // };
438
+ *
215
439
  * ```
216
440
  *
217
441
  * @param BatchReadCommandInput - {@link BatchReadCommandInput}
@@ -242,6 +466,8 @@ export interface BatchReadCommandOutput extends BatchReadResponse, __MetadataBea
242
466
  * <p>Indicates that your request is malformed in some manner. See the exception
243
467
  * message.</p>
244
468
  *
469
+ * @throws {@link CloudDirectoryServiceException}
470
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
245
471
  *
246
472
  */
247
473
  export declare class BatchReadCommand extends $Command<BatchReadCommandInput, BatchReadCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -238,6 +238,67 @@ export interface BatchWriteCommandOutput extends BatchWriteResponse, __MetadataB
238
238
  * };
239
239
  * const command = new BatchWriteCommand(input);
240
240
  * const response = await client.send(command);
241
+ * // { // BatchWriteResponse
242
+ * // Responses: [ // BatchWriteOperationResponseList
243
+ * // { // BatchWriteOperationResponse
244
+ * // CreateObject: { // BatchCreateObjectResponse
245
+ * // ObjectIdentifier: "STRING_VALUE",
246
+ * // },
247
+ * // AttachObject: { // BatchAttachObjectResponse
248
+ * // attachedObjectIdentifier: "STRING_VALUE",
249
+ * // },
250
+ * // DetachObject: { // BatchDetachObjectResponse
251
+ * // detachedObjectIdentifier: "STRING_VALUE",
252
+ * // },
253
+ * // UpdateObjectAttributes: { // BatchUpdateObjectAttributesResponse
254
+ * // ObjectIdentifier: "STRING_VALUE",
255
+ * // },
256
+ * // DeleteObject: {},
257
+ * // AddFacetToObject: {},
258
+ * // RemoveFacetFromObject: {},
259
+ * // AttachPolicy: {},
260
+ * // DetachPolicy: {},
261
+ * // CreateIndex: { // BatchCreateIndexResponse
262
+ * // ObjectIdentifier: "STRING_VALUE",
263
+ * // },
264
+ * // AttachToIndex: { // BatchAttachToIndexResponse
265
+ * // AttachedObjectIdentifier: "STRING_VALUE",
266
+ * // },
267
+ * // DetachFromIndex: { // BatchDetachFromIndexResponse
268
+ * // DetachedObjectIdentifier: "STRING_VALUE",
269
+ * // },
270
+ * // AttachTypedLink: { // BatchAttachTypedLinkResponse
271
+ * // TypedLinkSpecifier: { // TypedLinkSpecifier
272
+ * // TypedLinkFacet: { // TypedLinkSchemaAndFacetName
273
+ * // SchemaArn: "STRING_VALUE", // required
274
+ * // TypedLinkName: "STRING_VALUE", // required
275
+ * // },
276
+ * // SourceObjectReference: { // ObjectReference
277
+ * // Selector: "STRING_VALUE",
278
+ * // },
279
+ * // TargetObjectReference: {
280
+ * // Selector: "STRING_VALUE",
281
+ * // },
282
+ * // IdentityAttributeValues: [ // AttributeNameAndValueList // required
283
+ * // { // AttributeNameAndValue
284
+ * // AttributeName: "STRING_VALUE", // required
285
+ * // Value: { // TypedAttributeValue Union: only one key present
286
+ * // StringValue: "STRING_VALUE",
287
+ * // BinaryValue: "BLOB_VALUE",
288
+ * // BooleanValue: true || false,
289
+ * // NumberValue: "STRING_VALUE",
290
+ * // DatetimeValue: new Date("TIMESTAMP"),
291
+ * // },
292
+ * // },
293
+ * // ],
294
+ * // },
295
+ * // },
296
+ * // DetachTypedLink: {},
297
+ * // UpdateLinkAttributes: {},
298
+ * // },
299
+ * // ],
300
+ * // };
301
+ *
241
302
  * ```
242
303
  *
243
304
  * @param BatchWriteCommandInput - {@link BatchWriteCommandInput}
@@ -271,6 +332,8 @@ export interface BatchWriteCommandOutput extends BatchWriteResponse, __MetadataB
271
332
  * <p>Indicates that your request is malformed in some manner. See the exception
272
333
  * message.</p>
273
334
  *
335
+ * @throws {@link CloudDirectoryServiceException}
336
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
274
337
  *
275
338
  */
276
339
  export declare class BatchWriteCommand extends $Command<BatchWriteCommandInput, BatchWriteCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -35,6 +35,13 @@ export interface CreateDirectoryCommandOutput extends CreateDirectoryResponse, _
35
35
  * };
36
36
  * const command = new CreateDirectoryCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // CreateDirectoryResponse
39
+ * // DirectoryArn: "STRING_VALUE", // required
40
+ * // Name: "STRING_VALUE", // required
41
+ * // ObjectIdentifier: "STRING_VALUE", // required
42
+ * // AppliedSchemaArn: "STRING_VALUE", // required
43
+ * // };
44
+ *
38
45
  * ```
39
46
  *
40
47
  * @param CreateDirectoryCommandInput - {@link CreateDirectoryCommandInput}
@@ -69,6 +76,8 @@ export interface CreateDirectoryCommandOutput extends CreateDirectoryResponse, _
69
76
  * <p>Indicates that your request is malformed in some manner. See the exception
70
77
  * message.</p>
71
78
  *
79
+ * @throws {@link CloudDirectoryServiceException}
80
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
72
81
  *
73
82
  */
74
83
  export declare class CreateDirectoryCommand extends $Command<CreateDirectoryCommandInput, CreateDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -64,6 +64,8 @@ export interface CreateFacetCommandOutput extends CreateFacetResponse, __Metadat
64
64
  * };
65
65
  * const command = new CreateFacetCommand(input);
66
66
  * const response = await client.send(command);
67
+ * // {};
68
+ *
67
69
  * ```
68
70
  *
69
71
  * @param CreateFacetCommandInput - {@link CreateFacetCommandInput}
@@ -104,6 +106,8 @@ export interface CreateFacetCommandOutput extends CreateFacetResponse, __Metadat
104
106
  * <p>Indicates that your request is malformed in some manner. See the exception
105
107
  * message.</p>
106
108
  *
109
+ * @throws {@link CloudDirectoryServiceException}
110
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
107
111
  *
108
112
  */
109
113
  export declare class CreateFacetCommand extends $Command<CreateFacetCommandInput, CreateFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -43,6 +43,10 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat
43
43
  * };
44
44
  * const command = new CreateIndexCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // CreateIndexResponse
47
+ * // ObjectIdentifier: "STRING_VALUE",
48
+ * // };
49
+ *
46
50
  * ```
47
51
  *
48
52
  * @param CreateIndexCommandInput - {@link CreateIndexCommandInput}
@@ -87,6 +91,8 @@ export interface CreateIndexCommandOutput extends CreateIndexResponse, __Metadat
87
91
  * <p>Indicates that your request is malformed in some manner. See the exception
88
92
  * message.</p>
89
93
  *
94
+ * @throws {@link CloudDirectoryServiceException}
95
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
90
96
  *
91
97
  */
92
98
  export declare class CreateIndexCommand extends $Command<CreateIndexCommandInput, CreateIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -60,6 +60,10 @@ export interface CreateObjectCommandOutput extends CreateObjectResponse, __Metad
60
60
  * };
61
61
  * const command = new CreateObjectCommand(input);
62
62
  * const response = await client.send(command);
63
+ * // { // CreateObjectResponse
64
+ * // ObjectIdentifier: "STRING_VALUE",
65
+ * // };
66
+ *
63
67
  * ```
64
68
  *
65
69
  * @param CreateObjectCommandInput - {@link CreateObjectCommandInput}
@@ -104,6 +108,8 @@ export interface CreateObjectCommandOutput extends CreateObjectResponse, __Metad
104
108
  * <p>Indicates that your request is malformed in some manner. See the exception
105
109
  * message.</p>
106
110
  *
111
+ * @throws {@link CloudDirectoryServiceException}
112
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
107
113
  *
108
114
  */
109
115
  export declare class CreateObjectCommand extends $Command<CreateObjectCommandInput, CreateObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -51,6 +51,10 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad
51
51
  * };
52
52
  * const command = new CreateSchemaCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // CreateSchemaResponse
55
+ * // SchemaArn: "STRING_VALUE",
56
+ * // };
57
+ *
54
58
  * ```
55
59
  *
56
60
  * @param CreateSchemaCommandInput - {@link CreateSchemaCommandInput}
@@ -82,6 +86,8 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad
82
86
  * <p>Indicates that your request is malformed in some manner. See the exception
83
87
  * message.</p>
84
88
  *
89
+ * @throws {@link CloudDirectoryServiceException}
90
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
85
91
  *
86
92
  */
87
93
  export declare class CreateSchemaCommand extends $Command<CreateSchemaCommandInput, CreateSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -60,6 +60,8 @@ export interface CreateTypedLinkFacetCommandOutput extends CreateTypedLinkFacetR
60
60
  * };
61
61
  * const command = new CreateTypedLinkFacetCommand(input);
62
62
  * const response = await client.send(command);
63
+ * // {};
64
+ *
63
65
  * ```
64
66
  *
65
67
  * @param CreateTypedLinkFacetCommandInput - {@link CreateTypedLinkFacetCommandInput}
@@ -100,6 +102,8 @@ export interface CreateTypedLinkFacetCommandOutput extends CreateTypedLinkFacetR
100
102
  * <p>Indicates that your request is malformed in some manner. See the exception
101
103
  * message.</p>
102
104
  *
105
+ * @throws {@link CloudDirectoryServiceException}
106
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
103
107
  *
104
108
  */
105
109
  export declare class CreateTypedLinkFacetCommand extends $Command<CreateTypedLinkFacetCommandInput, CreateTypedLinkFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -33,6 +33,10 @@ export interface DeleteDirectoryCommandOutput extends DeleteDirectoryResponse, _
33
33
  * };
34
34
  * const command = new DeleteDirectoryCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteDirectoryResponse
37
+ * // DirectoryArn: "STRING_VALUE", // required
38
+ * // };
39
+ *
36
40
  * ```
37
41
  *
38
42
  * @param DeleteDirectoryCommandInput - {@link DeleteDirectoryCommandInput}
@@ -70,6 +74,8 @@ export interface DeleteDirectoryCommandOutput extends DeleteDirectoryResponse, _
70
74
  * <p>Indicates that your request is malformed in some manner. See the exception
71
75
  * message.</p>
72
76
  *
77
+ * @throws {@link CloudDirectoryServiceException}
78
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
73
79
  *
74
80
  */
75
81
  export declare class DeleteDirectoryCommand extends $Command<DeleteDirectoryCommandInput, DeleteDirectoryCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteFacetCommandOutput extends DeleteFacetResponse, __Metadat
34
34
  * };
35
35
  * const command = new DeleteFacetCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteFacetCommandInput - {@link DeleteFacetCommandInput}
@@ -71,6 +73,8 @@ export interface DeleteFacetCommandOutput extends DeleteFacetResponse, __Metadat
71
73
  * <p>Indicates that your request is malformed in some manner. See the exception
72
74
  * message.</p>
73
75
  *
76
+ * @throws {@link CloudDirectoryServiceException}
77
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
74
78
  *
75
79
  */
76
80
  export declare class DeleteFacetCommand extends $Command<DeleteFacetCommandInput, DeleteFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface DeleteObjectCommandOutput extends DeleteObjectResponse, __Metad
35
35
  * };
36
36
  * const command = new DeleteObjectCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param DeleteObjectCommandInput - {@link DeleteObjectCommandInput}
@@ -72,6 +74,8 @@ export interface DeleteObjectCommandOutput extends DeleteObjectResponse, __Metad
72
74
  * <p>Indicates that your request is malformed in some manner. See the exception
73
75
  * message.</p>
74
76
  *
77
+ * @throws {@link CloudDirectoryServiceException}
78
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
75
79
  *
76
80
  */
77
81
  export declare class DeleteObjectCommand extends $Command<DeleteObjectCommandInput, DeleteObjectCommandOutput, CloudDirectoryClientResolvedConfig> {
@@ -31,6 +31,10 @@ export interface DeleteSchemaCommandOutput extends DeleteSchemaResponse, __Metad
31
31
  * };
32
32
  * const command = new DeleteSchemaCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeleteSchemaResponse
35
+ * // SchemaArn: "STRING_VALUE",
36
+ * // };
37
+ *
34
38
  * ```
35
39
  *
36
40
  * @param DeleteSchemaCommandInput - {@link DeleteSchemaCommandInput}
@@ -65,6 +69,8 @@ export interface DeleteSchemaCommandOutput extends DeleteSchemaResponse, __Metad
65
69
  * <p>Indicates that your request is malformed in some manner. See the exception
66
70
  * message.</p>
67
71
  *
72
+ * @throws {@link CloudDirectoryServiceException}
73
+ * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
68
74
  *
69
75
  */
70
76
  export declare class DeleteSchemaCommand extends $Command<DeleteSchemaCommandInput, DeleteSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {