@aws-sdk/client-clouddirectory 3.312.0 → 3.316.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.
@@ -66,560 +66,412 @@ import { UpdateSchemaCommandInput, UpdateSchemaCommandOutput } from "./commands/
66
66
  import { UpdateTypedLinkFacetCommandInput, UpdateTypedLinkFacetCommandOutput } from "./commands/UpdateTypedLinkFacetCommand";
67
67
  import { UpgradeAppliedSchemaCommandInput, UpgradeAppliedSchemaCommandOutput } from "./commands/UpgradeAppliedSchemaCommand";
68
68
  import { UpgradePublishedSchemaCommandInput, UpgradePublishedSchemaCommandOutput } from "./commands/UpgradePublishedSchemaCommand";
69
- /**
70
- * @public
71
- * <fullname>Amazon Cloud Directory</fullname>
72
- * <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the
73
- * development and management of cloud-scale web, mobile, and IoT applications. This guide
74
- * describes the Cloud Directory operations that you can call programmatically and includes
75
- * detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory
76
- * Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>
77
- */
78
- export declare class CloudDirectory extends CloudDirectoryClient {
69
+ export interface CloudDirectory {
79
70
  /**
80
- * @public
81
- * <p>Adds a new <a>Facet</a> to an object. An object can have more than one facet applied on it.</p>
71
+ * @see {@link AddFacetToObjectCommand}
82
72
  */
83
73
  addFacetToObject(args: AddFacetToObjectCommandInput, options?: __HttpHandlerOptions): Promise<AddFacetToObjectCommandOutput>;
84
74
  addFacetToObject(args: AddFacetToObjectCommandInput, cb: (err: any, data?: AddFacetToObjectCommandOutput) => void): void;
85
75
  addFacetToObject(args: AddFacetToObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFacetToObjectCommandOutput) => void): void;
86
76
  /**
87
- * @public
88
- * <p>Copies the input published schema, at the specified version, into the <a>Directory</a> with the same
89
- * name and version as that of the published schema.</p>
77
+ * @see {@link ApplySchemaCommand}
90
78
  */
91
79
  applySchema(args: ApplySchemaCommandInput, options?: __HttpHandlerOptions): Promise<ApplySchemaCommandOutput>;
92
80
  applySchema(args: ApplySchemaCommandInput, cb: (err: any, data?: ApplySchemaCommandOutput) => void): void;
93
81
  applySchema(args: ApplySchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ApplySchemaCommandOutput) => void): void;
94
82
  /**
95
- * @public
96
- * <p>Attaches an existing object to another object. An object can be accessed in two
97
- * ways:</p>
98
- * <ol>
99
- * <li>
100
- * <p>Using the path</p>
101
- * </li>
102
- * <li>
103
- * <p>Using <code>ObjectIdentifier</code>
104
- * </p>
105
- * </li>
106
- * </ol>
83
+ * @see {@link AttachObjectCommand}
107
84
  */
108
85
  attachObject(args: AttachObjectCommandInput, options?: __HttpHandlerOptions): Promise<AttachObjectCommandOutput>;
109
86
  attachObject(args: AttachObjectCommandInput, cb: (err: any, data?: AttachObjectCommandOutput) => void): void;
110
87
  attachObject(args: AttachObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachObjectCommandOutput) => void): void;
111
88
  /**
112
- * @public
113
- * <p>Attaches a policy object to a regular object. An object can have a limited number of attached
114
- * policies.</p>
89
+ * @see {@link AttachPolicyCommand}
115
90
  */
116
91
  attachPolicy(args: AttachPolicyCommandInput, options?: __HttpHandlerOptions): Promise<AttachPolicyCommandOutput>;
117
92
  attachPolicy(args: AttachPolicyCommandInput, cb: (err: any, data?: AttachPolicyCommandOutput) => void): void;
118
93
  attachPolicy(args: AttachPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachPolicyCommandOutput) => void): void;
119
94
  /**
120
- * @public
121
- * <p>Attaches the specified object to the specified index.</p>
95
+ * @see {@link AttachToIndexCommand}
122
96
  */
123
97
  attachToIndex(args: AttachToIndexCommandInput, options?: __HttpHandlerOptions): Promise<AttachToIndexCommandOutput>;
124
98
  attachToIndex(args: AttachToIndexCommandInput, cb: (err: any, data?: AttachToIndexCommandOutput) => void): void;
125
99
  attachToIndex(args: AttachToIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachToIndexCommandOutput) => void): void;
126
100
  /**
127
- * @public
128
- * <p>Attaches a typed link to a specified source and target object. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
101
+ * @see {@link AttachTypedLinkCommand}
129
102
  */
130
103
  attachTypedLink(args: AttachTypedLinkCommandInput, options?: __HttpHandlerOptions): Promise<AttachTypedLinkCommandOutput>;
131
104
  attachTypedLink(args: AttachTypedLinkCommandInput, cb: (err: any, data?: AttachTypedLinkCommandOutput) => void): void;
132
105
  attachTypedLink(args: AttachTypedLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachTypedLinkCommandOutput) => void): void;
133
106
  /**
134
- * @public
135
- * <p>Performs all the read operations in a batch. </p>
107
+ * @see {@link BatchReadCommand}
136
108
  */
137
109
  batchRead(args: BatchReadCommandInput, options?: __HttpHandlerOptions): Promise<BatchReadCommandOutput>;
138
110
  batchRead(args: BatchReadCommandInput, cb: (err: any, data?: BatchReadCommandOutput) => void): void;
139
111
  batchRead(args: BatchReadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchReadCommandOutput) => void): void;
140
112
  /**
141
- * @public
142
- * <p>Performs all the write operations in a batch. Either all the operations succeed or
143
- * none.</p>
113
+ * @see {@link BatchWriteCommand}
144
114
  */
145
115
  batchWrite(args: BatchWriteCommandInput, options?: __HttpHandlerOptions): Promise<BatchWriteCommandOutput>;
146
116
  batchWrite(args: BatchWriteCommandInput, cb: (err: any, data?: BatchWriteCommandOutput) => void): void;
147
117
  batchWrite(args: BatchWriteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchWriteCommandOutput) => void): void;
148
118
  /**
149
- * @public
150
- * <p>Creates a <a>Directory</a> by copying the published schema into the
151
- * directory. A directory cannot be created without a schema.</p>
152
- * <p>You can also quickly create a directory using a managed schema, called the
153
- * <code>QuickStartSchema</code>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_managed.html">Managed Schema</a> in the <i>Amazon Cloud Directory Developer Guide</i>.</p>
119
+ * @see {@link CreateDirectoryCommand}
154
120
  */
155
121
  createDirectory(args: CreateDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateDirectoryCommandOutput>;
156
122
  createDirectory(args: CreateDirectoryCommandInput, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
157
123
  createDirectory(args: CreateDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
158
124
  /**
159
- * @public
160
- * <p>Creates a new <a>Facet</a> in a schema. Facet creation is allowed only
161
- * in development or applied schemas.</p>
125
+ * @see {@link CreateFacetCommand}
162
126
  */
163
127
  createFacet(args: CreateFacetCommandInput, options?: __HttpHandlerOptions): Promise<CreateFacetCommandOutput>;
164
128
  createFacet(args: CreateFacetCommandInput, cb: (err: any, data?: CreateFacetCommandOutput) => void): void;
165
129
  createFacet(args: CreateFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFacetCommandOutput) => void): void;
166
130
  /**
167
- * @public
168
- * <p>Creates an index object. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.html">Indexing and search</a> for more information.</p>
131
+ * @see {@link CreateIndexCommand}
169
132
  */
170
133
  createIndex(args: CreateIndexCommandInput, options?: __HttpHandlerOptions): Promise<CreateIndexCommandOutput>;
171
134
  createIndex(args: CreateIndexCommandInput, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
172
135
  createIndex(args: CreateIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
173
136
  /**
174
- * @public
175
- * <p>Creates an object in a <a>Directory</a>. Additionally attaches the object to
176
- * a parent, if a parent reference and <code>LinkName</code> is specified. An object is simply a
177
- * collection of <a>Facet</a> attributes. You can also use this API call to create a
178
- * policy object, if the facet from which you create the object is a policy facet. </p>
137
+ * @see {@link CreateObjectCommand}
179
138
  */
180
139
  createObject(args: CreateObjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateObjectCommandOutput>;
181
140
  createObject(args: CreateObjectCommandInput, cb: (err: any, data?: CreateObjectCommandOutput) => void): void;
182
141
  createObject(args: CreateObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateObjectCommandOutput) => void): void;
183
142
  /**
184
- * @public
185
- * <p>Creates a new schema in a development state. A schema can exist in three
186
- * phases:</p>
187
- * <ul>
188
- * <li>
189
- * <p>
190
- * <i>Development:</i> This is a mutable phase of the schema. All new
191
- * schemas are in the development phase. Once the schema is finalized, it can be
192
- * published.</p>
193
- * </li>
194
- * <li>
195
- * <p>
196
- * <i>Published:</i> Published schemas are immutable and have a version
197
- * associated with them.</p>
198
- * </li>
199
- * <li>
200
- * <p>
201
- * <i>Applied:</i> Applied schemas are mutable in a way that allows you
202
- * to add new schema facets. You can also add new, nonrequired attributes to existing schema
203
- * facets. You can apply only published schemas to directories. </p>
204
- * </li>
205
- * </ul>
143
+ * @see {@link CreateSchemaCommand}
206
144
  */
207
145
  createSchema(args: CreateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<CreateSchemaCommandOutput>;
208
146
  createSchema(args: CreateSchemaCommandInput, cb: (err: any, data?: CreateSchemaCommandOutput) => void): void;
209
147
  createSchema(args: CreateSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSchemaCommandOutput) => void): void;
210
148
  /**
211
- * @public
212
- * <p>Creates a <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
149
+ * @see {@link CreateTypedLinkFacetCommand}
213
150
  */
214
151
  createTypedLinkFacet(args: CreateTypedLinkFacetCommandInput, options?: __HttpHandlerOptions): Promise<CreateTypedLinkFacetCommandOutput>;
215
152
  createTypedLinkFacet(args: CreateTypedLinkFacetCommandInput, cb: (err: any, data?: CreateTypedLinkFacetCommandOutput) => void): void;
216
153
  createTypedLinkFacet(args: CreateTypedLinkFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTypedLinkFacetCommandOutput) => void): void;
217
154
  /**
218
- * @public
219
- * <p>Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme
220
- * caution
221
- * when deleting directories.</p>
155
+ * @see {@link DeleteDirectoryCommand}
222
156
  */
223
157
  deleteDirectory(args: DeleteDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDirectoryCommandOutput>;
224
158
  deleteDirectory(args: DeleteDirectoryCommandInput, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
225
159
  deleteDirectory(args: DeleteDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
226
160
  /**
227
- * @public
228
- * <p>Deletes a given <a>Facet</a>. All attributes and <a>Rule</a>s
229
- * that are associated with the facet will be deleted. Only development schema facets are allowed
230
- * deletion.</p>
161
+ * @see {@link DeleteFacetCommand}
231
162
  */
232
163
  deleteFacet(args: DeleteFacetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFacetCommandOutput>;
233
164
  deleteFacet(args: DeleteFacetCommandInput, cb: (err: any, data?: DeleteFacetCommandOutput) => void): void;
234
165
  deleteFacet(args: DeleteFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFacetCommandOutput) => void): void;
235
166
  /**
236
- * @public
237
- * <p>Deletes an object and its associated attributes. Only objects with no children and no
238
- * parents can be deleted. The maximum number of attributes that can be deleted during an object deletion is 30. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Amazon Cloud Directory Limits</a>.</p>
167
+ * @see {@link DeleteObjectCommand}
239
168
  */
240
169
  deleteObject(args: DeleteObjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteObjectCommandOutput>;
241
170
  deleteObject(args: DeleteObjectCommandInput, cb: (err: any, data?: DeleteObjectCommandOutput) => void): void;
242
171
  deleteObject(args: DeleteObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteObjectCommandOutput) => void): void;
243
172
  /**
244
- * @public
245
- * <p>Deletes a given schema. Schemas in a development and published state can only be deleted. </p>
173
+ * @see {@link DeleteSchemaCommand}
246
174
  */
247
175
  deleteSchema(args: DeleteSchemaCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSchemaCommandOutput>;
248
176
  deleteSchema(args: DeleteSchemaCommandInput, cb: (err: any, data?: DeleteSchemaCommandOutput) => void): void;
249
177
  deleteSchema(args: DeleteSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSchemaCommandOutput) => void): void;
250
178
  /**
251
- * @public
252
- * <p>Deletes a <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
179
+ * @see {@link DeleteTypedLinkFacetCommand}
253
180
  */
254
181
  deleteTypedLinkFacet(args: DeleteTypedLinkFacetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTypedLinkFacetCommandOutput>;
255
182
  deleteTypedLinkFacet(args: DeleteTypedLinkFacetCommandInput, cb: (err: any, data?: DeleteTypedLinkFacetCommandOutput) => void): void;
256
183
  deleteTypedLinkFacet(args: DeleteTypedLinkFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTypedLinkFacetCommandOutput) => void): void;
257
184
  /**
258
- * @public
259
- * <p>Detaches the specified object from the specified index.</p>
185
+ * @see {@link DetachFromIndexCommand}
260
186
  */
261
187
  detachFromIndex(args: DetachFromIndexCommandInput, options?: __HttpHandlerOptions): Promise<DetachFromIndexCommandOutput>;
262
188
  detachFromIndex(args: DetachFromIndexCommandInput, cb: (err: any, data?: DetachFromIndexCommandOutput) => void): void;
263
189
  detachFromIndex(args: DetachFromIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachFromIndexCommandOutput) => void): void;
264
190
  /**
265
- * @public
266
- * <p>Detaches a given object from the parent object. The object that is to be detached from the
267
- * parent is specified by the link name.</p>
191
+ * @see {@link DetachObjectCommand}
268
192
  */
269
193
  detachObject(args: DetachObjectCommandInput, options?: __HttpHandlerOptions): Promise<DetachObjectCommandOutput>;
270
194
  detachObject(args: DetachObjectCommandInput, cb: (err: any, data?: DetachObjectCommandOutput) => void): void;
271
195
  detachObject(args: DetachObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachObjectCommandOutput) => void): void;
272
196
  /**
273
- * @public
274
- * <p>Detaches a policy from an object.</p>
197
+ * @see {@link DetachPolicyCommand}
275
198
  */
276
199
  detachPolicy(args: DetachPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DetachPolicyCommandOutput>;
277
200
  detachPolicy(args: DetachPolicyCommandInput, cb: (err: any, data?: DetachPolicyCommandOutput) => void): void;
278
201
  detachPolicy(args: DetachPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachPolicyCommandOutput) => void): void;
279
202
  /**
280
- * @public
281
- * <p>Detaches a typed link from a specified source and target object. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
203
+ * @see {@link DetachTypedLinkCommand}
282
204
  */
283
205
  detachTypedLink(args: DetachTypedLinkCommandInput, options?: __HttpHandlerOptions): Promise<DetachTypedLinkCommandOutput>;
284
206
  detachTypedLink(args: DetachTypedLinkCommandInput, cb: (err: any, data?: DetachTypedLinkCommandOutput) => void): void;
285
207
  detachTypedLink(args: DetachTypedLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachTypedLinkCommandOutput) => void): void;
286
208
  /**
287
- * @public
288
- * <p>Disables the specified directory. Disabled directories cannot be read or written to.
289
- * Only enabled directories can be disabled. Disabled directories may be reenabled.</p>
209
+ * @see {@link DisableDirectoryCommand}
290
210
  */
291
211
  disableDirectory(args: DisableDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<DisableDirectoryCommandOutput>;
292
212
  disableDirectory(args: DisableDirectoryCommandInput, cb: (err: any, data?: DisableDirectoryCommandOutput) => void): void;
293
213
  disableDirectory(args: DisableDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableDirectoryCommandOutput) => void): void;
294
214
  /**
295
- * @public
296
- * <p>Enables the specified directory. Only disabled directories can be enabled. Once
297
- * enabled, the directory can then be read and written to.</p>
215
+ * @see {@link EnableDirectoryCommand}
298
216
  */
299
217
  enableDirectory(args: EnableDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<EnableDirectoryCommandOutput>;
300
218
  enableDirectory(args: EnableDirectoryCommandInput, cb: (err: any, data?: EnableDirectoryCommandOutput) => void): void;
301
219
  enableDirectory(args: EnableDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableDirectoryCommandOutput) => void): void;
302
220
  /**
303
- * @public
304
- * <p>Returns current applied schema version ARN, including the minor version in use.</p>
221
+ * @see {@link GetAppliedSchemaVersionCommand}
305
222
  */
306
223
  getAppliedSchemaVersion(args: GetAppliedSchemaVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetAppliedSchemaVersionCommandOutput>;
307
224
  getAppliedSchemaVersion(args: GetAppliedSchemaVersionCommandInput, cb: (err: any, data?: GetAppliedSchemaVersionCommandOutput) => void): void;
308
225
  getAppliedSchemaVersion(args: GetAppliedSchemaVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppliedSchemaVersionCommandOutput) => void): void;
309
226
  /**
310
- * @public
311
- * <p>Retrieves metadata about a directory.</p>
227
+ * @see {@link GetDirectoryCommand}
312
228
  */
313
229
  getDirectory(args: GetDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<GetDirectoryCommandOutput>;
314
230
  getDirectory(args: GetDirectoryCommandInput, cb: (err: any, data?: GetDirectoryCommandOutput) => void): void;
315
231
  getDirectory(args: GetDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDirectoryCommandOutput) => void): void;
316
232
  /**
317
- * @public
318
- * <p>Gets details of the <a>Facet</a>, such as facet name, attributes, <a>Rule</a>s, or <code>ObjectType</code>. You can call this on all kinds of schema
319
- * facets -- published, development, or applied.</p>
233
+ * @see {@link GetFacetCommand}
320
234
  */
321
235
  getFacet(args: GetFacetCommandInput, options?: __HttpHandlerOptions): Promise<GetFacetCommandOutput>;
322
236
  getFacet(args: GetFacetCommandInput, cb: (err: any, data?: GetFacetCommandOutput) => void): void;
323
237
  getFacet(args: GetFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFacetCommandOutput) => void): void;
324
238
  /**
325
- * @public
326
- * <p>Retrieves attributes that are associated with a typed link.</p>
239
+ * @see {@link GetLinkAttributesCommand}
327
240
  */
328
241
  getLinkAttributes(args: GetLinkAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetLinkAttributesCommandOutput>;
329
242
  getLinkAttributes(args: GetLinkAttributesCommandInput, cb: (err: any, data?: GetLinkAttributesCommandOutput) => void): void;
330
243
  getLinkAttributes(args: GetLinkAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLinkAttributesCommandOutput) => void): void;
331
244
  /**
332
- * @public
333
- * <p>Retrieves attributes within a facet that are associated with an object.</p>
245
+ * @see {@link GetObjectAttributesCommand}
334
246
  */
335
247
  getObjectAttributes(args: GetObjectAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetObjectAttributesCommandOutput>;
336
248
  getObjectAttributes(args: GetObjectAttributesCommandInput, cb: (err: any, data?: GetObjectAttributesCommandOutput) => void): void;
337
249
  getObjectAttributes(args: GetObjectAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetObjectAttributesCommandOutput) => void): void;
338
250
  /**
339
- * @public
340
- * <p>Retrieves metadata about an object.</p>
251
+ * @see {@link GetObjectInformationCommand}
341
252
  */
342
253
  getObjectInformation(args: GetObjectInformationCommandInput, options?: __HttpHandlerOptions): Promise<GetObjectInformationCommandOutput>;
343
254
  getObjectInformation(args: GetObjectInformationCommandInput, cb: (err: any, data?: GetObjectInformationCommandOutput) => void): void;
344
255
  getObjectInformation(args: GetObjectInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetObjectInformationCommandOutput) => void): void;
345
256
  /**
346
- * @public
347
- * <p>Retrieves a JSON representation of the schema. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_jsonformat.html#schemas_json">JSON Schema Format</a> for more information.</p>
257
+ * @see {@link GetSchemaAsJsonCommand}
348
258
  */
349
259
  getSchemaAsJson(args: GetSchemaAsJsonCommandInput, options?: __HttpHandlerOptions): Promise<GetSchemaAsJsonCommandOutput>;
350
260
  getSchemaAsJson(args: GetSchemaAsJsonCommandInput, cb: (err: any, data?: GetSchemaAsJsonCommandOutput) => void): void;
351
261
  getSchemaAsJson(args: GetSchemaAsJsonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSchemaAsJsonCommandOutput) => void): void;
352
262
  /**
353
- * @public
354
- * <p>Returns the identity attribute order for a specific <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
263
+ * @see {@link GetTypedLinkFacetInformationCommand}
355
264
  */
356
265
  getTypedLinkFacetInformation(args: GetTypedLinkFacetInformationCommandInput, options?: __HttpHandlerOptions): Promise<GetTypedLinkFacetInformationCommandOutput>;
357
266
  getTypedLinkFacetInformation(args: GetTypedLinkFacetInformationCommandInput, cb: (err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void): void;
358
267
  getTypedLinkFacetInformation(args: GetTypedLinkFacetInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void): void;
359
268
  /**
360
- * @public
361
- * <p>Lists schema major versions applied to a directory. If <code>SchemaArn</code> is provided, lists the minor version.</p>
269
+ * @see {@link ListAppliedSchemaArnsCommand}
362
270
  */
363
271
  listAppliedSchemaArns(args: ListAppliedSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppliedSchemaArnsCommandOutput>;
364
272
  listAppliedSchemaArns(args: ListAppliedSchemaArnsCommandInput, cb: (err: any, data?: ListAppliedSchemaArnsCommandOutput) => void): void;
365
273
  listAppliedSchemaArns(args: ListAppliedSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppliedSchemaArnsCommandOutput) => void): void;
366
274
  /**
367
- * @public
368
- * <p>Lists indices attached to the specified object.</p>
275
+ * @see {@link ListAttachedIndicesCommand}
369
276
  */
370
277
  listAttachedIndices(args: ListAttachedIndicesCommandInput, options?: __HttpHandlerOptions): Promise<ListAttachedIndicesCommandOutput>;
371
278
  listAttachedIndices(args: ListAttachedIndicesCommandInput, cb: (err: any, data?: ListAttachedIndicesCommandOutput) => void): void;
372
279
  listAttachedIndices(args: ListAttachedIndicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttachedIndicesCommandOutput) => void): void;
373
280
  /**
374
- * @public
375
- * <p>Retrieves each Amazon Resource Name (ARN) of schemas in the development
376
- * state.</p>
281
+ * @see {@link ListDevelopmentSchemaArnsCommand}
377
282
  */
378
283
  listDevelopmentSchemaArns(args: ListDevelopmentSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListDevelopmentSchemaArnsCommandOutput>;
379
284
  listDevelopmentSchemaArns(args: ListDevelopmentSchemaArnsCommandInput, cb: (err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void): void;
380
285
  listDevelopmentSchemaArns(args: ListDevelopmentSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void): void;
381
286
  /**
382
- * @public
383
- * <p>Lists directories created within an account.</p>
287
+ * @see {@link ListDirectoriesCommand}
384
288
  */
385
289
  listDirectories(args: ListDirectoriesCommandInput, options?: __HttpHandlerOptions): Promise<ListDirectoriesCommandOutput>;
386
290
  listDirectories(args: ListDirectoriesCommandInput, cb: (err: any, data?: ListDirectoriesCommandOutput) => void): void;
387
291
  listDirectories(args: ListDirectoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDirectoriesCommandOutput) => void): void;
388
292
  /**
389
- * @public
390
- * <p>Retrieves attributes attached to the facet.</p>
293
+ * @see {@link ListFacetAttributesCommand}
391
294
  */
392
295
  listFacetAttributes(args: ListFacetAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListFacetAttributesCommandOutput>;
393
296
  listFacetAttributes(args: ListFacetAttributesCommandInput, cb: (err: any, data?: ListFacetAttributesCommandOutput) => void): void;
394
297
  listFacetAttributes(args: ListFacetAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFacetAttributesCommandOutput) => void): void;
395
298
  /**
396
- * @public
397
- * <p>Retrieves the names of facets that exist in a schema.</p>
299
+ * @see {@link ListFacetNamesCommand}
398
300
  */
399
301
  listFacetNames(args: ListFacetNamesCommandInput, options?: __HttpHandlerOptions): Promise<ListFacetNamesCommandOutput>;
400
302
  listFacetNames(args: ListFacetNamesCommandInput, cb: (err: any, data?: ListFacetNamesCommandOutput) => void): void;
401
303
  listFacetNames(args: ListFacetNamesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFacetNamesCommandOutput) => void): void;
402
304
  /**
403
- * @public
404
- * <p>Returns a paginated list of all the incoming <a>TypedLinkSpecifier</a>
405
- * information for an object. It also supports filtering by typed link facet and identity
406
- * attributes. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
305
+ * @see {@link ListIncomingTypedLinksCommand}
407
306
  */
408
307
  listIncomingTypedLinks(args: ListIncomingTypedLinksCommandInput, options?: __HttpHandlerOptions): Promise<ListIncomingTypedLinksCommandOutput>;
409
308
  listIncomingTypedLinks(args: ListIncomingTypedLinksCommandInput, cb: (err: any, data?: ListIncomingTypedLinksCommandOutput) => void): void;
410
309
  listIncomingTypedLinks(args: ListIncomingTypedLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIncomingTypedLinksCommandOutput) => void): void;
411
310
  /**
412
- * @public
413
- * <p>Lists objects attached to the specified index.</p>
311
+ * @see {@link ListIndexCommand}
414
312
  */
415
313
  listIndex(args: ListIndexCommandInput, options?: __HttpHandlerOptions): Promise<ListIndexCommandOutput>;
416
314
  listIndex(args: ListIndexCommandInput, cb: (err: any, data?: ListIndexCommandOutput) => void): void;
417
315
  listIndex(args: ListIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIndexCommandOutput) => void): void;
418
316
  /**
419
- * @public
420
- * <p>Lists the major version families of each managed schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.</p>
317
+ * @see {@link ListManagedSchemaArnsCommand}
421
318
  */
422
319
  listManagedSchemaArns(args: ListManagedSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListManagedSchemaArnsCommandOutput>;
423
320
  listManagedSchemaArns(args: ListManagedSchemaArnsCommandInput, cb: (err: any, data?: ListManagedSchemaArnsCommandOutput) => void): void;
424
321
  listManagedSchemaArns(args: ListManagedSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListManagedSchemaArnsCommandOutput) => void): void;
425
322
  /**
426
- * @public
427
- * <p>Lists all attributes that are associated with an object.
428
- * </p>
323
+ * @see {@link ListObjectAttributesCommand}
429
324
  */
430
325
  listObjectAttributes(args: ListObjectAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectAttributesCommandOutput>;
431
326
  listObjectAttributes(args: ListObjectAttributesCommandInput, cb: (err: any, data?: ListObjectAttributesCommandOutput) => void): void;
432
327
  listObjectAttributes(args: ListObjectAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectAttributesCommandOutput) => void): void;
433
328
  /**
434
- * @public
435
- * <p>Returns a paginated list of child objects that are associated with a given
436
- * object.</p>
329
+ * @see {@link ListObjectChildrenCommand}
437
330
  */
438
331
  listObjectChildren(args: ListObjectChildrenCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectChildrenCommandOutput>;
439
332
  listObjectChildren(args: ListObjectChildrenCommandInput, cb: (err: any, data?: ListObjectChildrenCommandOutput) => void): void;
440
333
  listObjectChildren(args: ListObjectChildrenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectChildrenCommandOutput) => void): void;
441
334
  /**
442
- * @public
443
- * <p>Retrieves all available parent paths for any object type such as node, leaf node,
444
- * policy node, and index node objects. For more information about objects, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html">Directory Structure</a>.</p>
445
- * <p>Use this API to evaluate all parents for an object. The call returns all objects from
446
- * the root of the directory up to the requested object. The API returns the number of paths
447
- * based on user-defined <code>MaxResults</code>, in case there are multiple paths to the parent.
448
- * The order of the paths and nodes returned is consistent among multiple API calls unless the
449
- * objects are deleted or moved. Paths not leading to the directory root are ignored from the
450
- * target object.</p>
335
+ * @see {@link ListObjectParentPathsCommand}
451
336
  */
452
337
  listObjectParentPaths(args: ListObjectParentPathsCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectParentPathsCommandOutput>;
453
338
  listObjectParentPaths(args: ListObjectParentPathsCommandInput, cb: (err: any, data?: ListObjectParentPathsCommandOutput) => void): void;
454
339
  listObjectParentPaths(args: ListObjectParentPathsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectParentPathsCommandOutput) => void): void;
455
340
  /**
456
- * @public
457
- * <p>Lists parent objects that are associated with a given object in pagination
458
- * fashion.</p>
341
+ * @see {@link ListObjectParentsCommand}
459
342
  */
460
343
  listObjectParents(args: ListObjectParentsCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectParentsCommandOutput>;
461
344
  listObjectParents(args: ListObjectParentsCommandInput, cb: (err: any, data?: ListObjectParentsCommandOutput) => void): void;
462
345
  listObjectParents(args: ListObjectParentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectParentsCommandOutput) => void): void;
463
346
  /**
464
- * @public
465
- * <p>Returns policies attached to an object in pagination fashion.</p>
347
+ * @see {@link ListObjectPoliciesCommand}
466
348
  */
467
349
  listObjectPolicies(args: ListObjectPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectPoliciesCommandOutput>;
468
350
  listObjectPolicies(args: ListObjectPoliciesCommandInput, cb: (err: any, data?: ListObjectPoliciesCommandOutput) => void): void;
469
351
  listObjectPolicies(args: ListObjectPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectPoliciesCommandOutput) => void): void;
470
352
  /**
471
- * @public
472
- * <p>Returns a paginated list of all the outgoing <a>TypedLinkSpecifier</a>
473
- * information for an object. It also supports filtering by typed link facet and identity
474
- * attributes. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
353
+ * @see {@link ListOutgoingTypedLinksCommand}
475
354
  */
476
355
  listOutgoingTypedLinks(args: ListOutgoingTypedLinksCommandInput, options?: __HttpHandlerOptions): Promise<ListOutgoingTypedLinksCommandOutput>;
477
356
  listOutgoingTypedLinks(args: ListOutgoingTypedLinksCommandInput, cb: (err: any, data?: ListOutgoingTypedLinksCommandOutput) => void): void;
478
357
  listOutgoingTypedLinks(args: ListOutgoingTypedLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutgoingTypedLinksCommandOutput) => void): void;
479
358
  /**
480
- * @public
481
- * <p>Returns all of the <code>ObjectIdentifiers</code> to which a given policy is attached.</p>
359
+ * @see {@link ListPolicyAttachmentsCommand}
482
360
  */
483
361
  listPolicyAttachments(args: ListPolicyAttachmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListPolicyAttachmentsCommandOutput>;
484
362
  listPolicyAttachments(args: ListPolicyAttachmentsCommandInput, cb: (err: any, data?: ListPolicyAttachmentsCommandOutput) => void): void;
485
363
  listPolicyAttachments(args: ListPolicyAttachmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPolicyAttachmentsCommandOutput) => void): void;
486
364
  /**
487
- * @public
488
- * <p>Lists the major version families of each published schema. If a major version ARN is provided as <code>SchemaArn</code>, the minor version revisions in that family are listed instead.</p>
365
+ * @see {@link ListPublishedSchemaArnsCommand}
489
366
  */
490
367
  listPublishedSchemaArns(args: ListPublishedSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListPublishedSchemaArnsCommandOutput>;
491
368
  listPublishedSchemaArns(args: ListPublishedSchemaArnsCommandInput, cb: (err: any, data?: ListPublishedSchemaArnsCommandOutput) => void): void;
492
369
  listPublishedSchemaArns(args: ListPublishedSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPublishedSchemaArnsCommandOutput) => void): void;
493
370
  /**
494
- * @public
495
- * <p>Returns tags for a resource. Tagging is currently supported only for directories with a
496
- * limit of 50 tags per directory. All 50 tags are returned for a given directory with this API
497
- * call.</p>
371
+ * @see {@link ListTagsForResourceCommand}
498
372
  */
499
373
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
500
374
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
501
375
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
502
376
  /**
503
- * @public
504
- * <p>Returns a paginated list of all attribute definitions for a particular <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
377
+ * @see {@link ListTypedLinkFacetAttributesCommand}
505
378
  */
506
379
  listTypedLinkFacetAttributes(args: ListTypedLinkFacetAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListTypedLinkFacetAttributesCommandOutput>;
507
380
  listTypedLinkFacetAttributes(args: ListTypedLinkFacetAttributesCommandInput, cb: (err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void): void;
508
381
  listTypedLinkFacetAttributes(args: ListTypedLinkFacetAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void): void;
509
382
  /**
510
- * @public
511
- * <p>Returns a paginated list of <code>TypedLink</code> facet names for a particular schema.
512
- * For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
383
+ * @see {@link ListTypedLinkFacetNamesCommand}
513
384
  */
514
385
  listTypedLinkFacetNames(args: ListTypedLinkFacetNamesCommandInput, options?: __HttpHandlerOptions): Promise<ListTypedLinkFacetNamesCommandOutput>;
515
386
  listTypedLinkFacetNames(args: ListTypedLinkFacetNamesCommandInput, cb: (err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void): void;
516
387
  listTypedLinkFacetNames(args: ListTypedLinkFacetNamesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void): void;
517
388
  /**
518
- * @public
519
- * <p>Lists all policies from the root of the <a>Directory</a> to the object
520
- * specified. If there are no policies present, an empty list is returned. If policies are
521
- * present, and if some objects don't have the policies attached, it returns the <code>ObjectIdentifier</code>
522
- * for such objects. If policies are present, it returns <code>ObjectIdentifier</code>, <code>policyId</code>, and
523
- * <code>policyType</code>. Paths that don't lead to the root from the target object are ignored. For more
524
- * information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies">Policies</a>.</p>
389
+ * @see {@link LookupPolicyCommand}
525
390
  */
526
391
  lookupPolicy(args: LookupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<LookupPolicyCommandOutput>;
527
392
  lookupPolicy(args: LookupPolicyCommandInput, cb: (err: any, data?: LookupPolicyCommandOutput) => void): void;
528
393
  lookupPolicy(args: LookupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: LookupPolicyCommandOutput) => void): void;
529
394
  /**
530
- * @public
531
- * <p>Publishes a development schema with a major version and a recommended minor version.</p>
395
+ * @see {@link PublishSchemaCommand}
532
396
  */
533
397
  publishSchema(args: PublishSchemaCommandInput, options?: __HttpHandlerOptions): Promise<PublishSchemaCommandOutput>;
534
398
  publishSchema(args: PublishSchemaCommandInput, cb: (err: any, data?: PublishSchemaCommandOutput) => void): void;
535
399
  publishSchema(args: PublishSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishSchemaCommandOutput) => void): void;
536
400
  /**
537
- * @public
538
- * <p>Allows a schema to be updated using JSON upload. Only available for development schemas. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_jsonformat.html#schemas_json">JSON Schema Format</a> for more information.</p>
401
+ * @see {@link PutSchemaFromJsonCommand}
539
402
  */
540
403
  putSchemaFromJson(args: PutSchemaFromJsonCommandInput, options?: __HttpHandlerOptions): Promise<PutSchemaFromJsonCommandOutput>;
541
404
  putSchemaFromJson(args: PutSchemaFromJsonCommandInput, cb: (err: any, data?: PutSchemaFromJsonCommandOutput) => void): void;
542
405
  putSchemaFromJson(args: PutSchemaFromJsonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSchemaFromJsonCommandOutput) => void): void;
543
406
  /**
544
- * @public
545
- * <p>Removes the specified facet from the specified object.</p>
407
+ * @see {@link RemoveFacetFromObjectCommand}
546
408
  */
547
409
  removeFacetFromObject(args: RemoveFacetFromObjectCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFacetFromObjectCommandOutput>;
548
410
  removeFacetFromObject(args: RemoveFacetFromObjectCommandInput, cb: (err: any, data?: RemoveFacetFromObjectCommandOutput) => void): void;
549
411
  removeFacetFromObject(args: RemoveFacetFromObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFacetFromObjectCommandOutput) => void): void;
550
412
  /**
551
- * @public
552
- * <p>An API operation for adding tags to a resource.</p>
413
+ * @see {@link TagResourceCommand}
553
414
  */
554
415
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
555
416
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
556
417
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
557
418
  /**
558
- * @public
559
- * <p>An API operation for removing tags from a resource.</p>
419
+ * @see {@link UntagResourceCommand}
560
420
  */
561
421
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
562
422
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
563
423
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
564
424
  /**
565
- * @public
566
- * <p>Does the following:</p>
567
- * <ol>
568
- * <li>
569
- * <p>Adds new <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
570
- * </li>
571
- * <li>
572
- * <p>Updates existing <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
573
- * </li>
574
- * <li>
575
- * <p>Deletes existing <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
576
- * </li>
577
- * </ol>
425
+ * @see {@link UpdateFacetCommand}
578
426
  */
579
427
  updateFacet(args: UpdateFacetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFacetCommandOutput>;
580
428
  updateFacet(args: UpdateFacetCommandInput, cb: (err: any, data?: UpdateFacetCommandOutput) => void): void;
581
429
  updateFacet(args: UpdateFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFacetCommandOutput) => void): void;
582
430
  /**
583
- * @public
584
- * <p>Updates a given typed link’s attributes. Attributes to be updated must not contribute to the typed link’s identity, as defined by its <code>IdentityAttributeOrder</code>.</p>
431
+ * @see {@link UpdateLinkAttributesCommand}
585
432
  */
586
433
  updateLinkAttributes(args: UpdateLinkAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLinkAttributesCommandOutput>;
587
434
  updateLinkAttributes(args: UpdateLinkAttributesCommandInput, cb: (err: any, data?: UpdateLinkAttributesCommandOutput) => void): void;
588
435
  updateLinkAttributes(args: UpdateLinkAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLinkAttributesCommandOutput) => void): void;
589
436
  /**
590
- * @public
591
- * <p>Updates a given object's attributes.</p>
437
+ * @see {@link UpdateObjectAttributesCommand}
592
438
  */
593
439
  updateObjectAttributes(args: UpdateObjectAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateObjectAttributesCommandOutput>;
594
440
  updateObjectAttributes(args: UpdateObjectAttributesCommandInput, cb: (err: any, data?: UpdateObjectAttributesCommandOutput) => void): void;
595
441
  updateObjectAttributes(args: UpdateObjectAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateObjectAttributesCommandOutput) => void): void;
596
442
  /**
597
- * @public
598
- * <p>Updates the schema name with a new name. Only development schema names can be
599
- * updated.</p>
443
+ * @see {@link UpdateSchemaCommand}
600
444
  */
601
445
  updateSchema(args: UpdateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSchemaCommandOutput>;
602
446
  updateSchema(args: UpdateSchemaCommandInput, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
603
447
  updateSchema(args: UpdateSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
604
448
  /**
605
- * @public
606
- * <p>Updates a <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
449
+ * @see {@link UpdateTypedLinkFacetCommand}
607
450
  */
608
451
  updateTypedLinkFacet(args: UpdateTypedLinkFacetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTypedLinkFacetCommandOutput>;
609
452
  updateTypedLinkFacet(args: UpdateTypedLinkFacetCommandInput, cb: (err: any, data?: UpdateTypedLinkFacetCommandOutput) => void): void;
610
453
  updateTypedLinkFacet(args: UpdateTypedLinkFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTypedLinkFacetCommandOutput) => void): void;
611
454
  /**
612
- * @public
613
- * <p>Upgrades a single directory in-place using the <code>PublishedSchemaArn</code> with schema updates found in <code>MinorVersion</code>. Backwards-compatible minor version upgrades are instantaneously available for readers on all objects in the directory. Note: This is a synchronous API call and upgrades only one schema on a given directory per call. To upgrade multiple directories from one schema, you would need to call this API on each directory.</p>
455
+ * @see {@link UpgradeAppliedSchemaCommand}
614
456
  */
615
457
  upgradeAppliedSchema(args: UpgradeAppliedSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpgradeAppliedSchemaCommandOutput>;
616
458
  upgradeAppliedSchema(args: UpgradeAppliedSchemaCommandInput, cb: (err: any, data?: UpgradeAppliedSchemaCommandOutput) => void): void;
617
459
  upgradeAppliedSchema(args: UpgradeAppliedSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpgradeAppliedSchemaCommandOutput) => void): void;
618
460
  /**
619
- * @public
620
- * <p>Upgrades a published schema under a new minor version revision using the current contents of <code>DevelopmentSchemaArn</code>.</p>
461
+ * @see {@link UpgradePublishedSchemaCommand}
621
462
  */
622
463
  upgradePublishedSchema(args: UpgradePublishedSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpgradePublishedSchemaCommandOutput>;
623
464
  upgradePublishedSchema(args: UpgradePublishedSchemaCommandInput, cb: (err: any, data?: UpgradePublishedSchemaCommandOutput) => void): void;
624
465
  upgradePublishedSchema(args: UpgradePublishedSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpgradePublishedSchemaCommandOutput) => void): void;
625
466
  }
467
+ /**
468
+ * @public
469
+ * <fullname>Amazon Cloud Directory</fullname>
470
+ * <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the
471
+ * development and management of cloud-scale web, mobile, and IoT applications. This guide
472
+ * describes the Cloud Directory operations that you can call programmatically and includes
473
+ * detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory
474
+ * Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>
475
+ */
476
+ export declare class CloudDirectory extends CloudDirectoryClient implements CloudDirectory {
477
+ }