@aws-sdk/client-clouddirectory 3.32.0 → 3.36.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 (1062) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist-cjs/CloudDirectory.js +1005 -0
  3. package/dist-cjs/CloudDirectoryClient.js +48 -0
  4. package/dist-cjs/commands/AddFacetToObjectCommand.js +60 -0
  5. package/dist-cjs/commands/ApplySchemaCommand.js +61 -0
  6. package/dist-cjs/commands/AttachObjectCommand.js +70 -0
  7. package/dist-cjs/commands/AttachPolicyCommand.js +61 -0
  8. package/dist-cjs/commands/AttachToIndexCommand.js +60 -0
  9. package/dist-cjs/commands/AttachTypedLinkCommand.js +60 -0
  10. package/dist-cjs/commands/BatchReadCommand.js +60 -0
  11. package/dist-cjs/commands/BatchWriteCommand.js +61 -0
  12. package/dist-cjs/commands/CreateDirectoryCommand.js +63 -0
  13. package/dist-cjs/commands/CreateFacetCommand.js +61 -0
  14. package/dist-cjs/commands/CreateIndexCommand.js +60 -0
  15. package/dist-cjs/commands/CreateObjectCommand.js +63 -0
  16. package/dist-cjs/commands/CreateSchemaCommand.js +80 -0
  17. package/dist-cjs/commands/CreateTypedLinkFacetCommand.js +60 -0
  18. package/dist-cjs/commands/DeleteDirectoryCommand.js +62 -0
  19. package/dist-cjs/commands/DeleteFacetCommand.js +62 -0
  20. package/dist-cjs/commands/DeleteObjectCommand.js +61 -0
  21. package/dist-cjs/commands/DeleteSchemaCommand.js +60 -0
  22. package/dist-cjs/commands/DeleteTypedLinkFacetCommand.js +60 -0
  23. package/dist-cjs/commands/DetachFromIndexCommand.js +60 -0
  24. package/dist-cjs/commands/DetachObjectCommand.js +61 -0
  25. package/dist-cjs/commands/DetachPolicyCommand.js +60 -0
  26. package/dist-cjs/commands/DetachTypedLinkCommand.js +60 -0
  27. package/dist-cjs/commands/DisableDirectoryCommand.js +61 -0
  28. package/dist-cjs/commands/EnableDirectoryCommand.js +61 -0
  29. package/dist-cjs/commands/GetAppliedSchemaVersionCommand.js +60 -0
  30. package/dist-cjs/commands/GetDirectoryCommand.js +60 -0
  31. package/dist-cjs/commands/GetFacetCommand.js +61 -0
  32. package/dist-cjs/commands/GetLinkAttributesCommand.js +60 -0
  33. package/dist-cjs/commands/GetObjectAttributesCommand.js +60 -0
  34. package/dist-cjs/commands/GetObjectInformationCommand.js +60 -0
  35. package/dist-cjs/commands/GetSchemaAsJsonCommand.js +60 -0
  36. package/dist-cjs/commands/GetTypedLinkFacetInformationCommand.js +60 -0
  37. package/dist-cjs/commands/ListAppliedSchemaArnsCommand.js +60 -0
  38. package/dist-cjs/commands/ListAttachedIndicesCommand.js +60 -0
  39. package/dist-cjs/commands/ListDevelopmentSchemaArnsCommand.js +61 -0
  40. package/dist-cjs/commands/ListDirectoriesCommand.js +60 -0
  41. package/dist-cjs/commands/ListFacetAttributesCommand.js +60 -0
  42. package/dist-cjs/commands/ListFacetNamesCommand.js +60 -0
  43. package/dist-cjs/commands/ListIncomingTypedLinksCommand.js +62 -0
  44. package/dist-cjs/commands/ListIndexCommand.js +60 -0
  45. package/dist-cjs/commands/ListManagedSchemaArnsCommand.js +60 -0
  46. package/dist-cjs/commands/ListObjectAttributesCommand.js +61 -0
  47. package/dist-cjs/commands/ListObjectChildrenCommand.js +61 -0
  48. package/dist-cjs/commands/ListObjectParentPathsCommand.js +67 -0
  49. package/dist-cjs/commands/ListObjectParentsCommand.js +61 -0
  50. package/dist-cjs/commands/ListObjectPoliciesCommand.js +60 -0
  51. package/dist-cjs/commands/ListOutgoingTypedLinksCommand.js +62 -0
  52. package/dist-cjs/commands/ListPolicyAttachmentsCommand.js +60 -0
  53. package/dist-cjs/commands/ListPublishedSchemaArnsCommand.js +60 -0
  54. package/dist-cjs/commands/ListTagsForResourceCommand.js +62 -0
  55. package/dist-cjs/commands/ListTypedLinkFacetAttributesCommand.js +60 -0
  56. package/dist-cjs/commands/ListTypedLinkFacetNamesCommand.js +61 -0
  57. package/dist-cjs/commands/LookupPolicyCommand.js +65 -0
  58. package/dist-cjs/commands/PublishSchemaCommand.js +60 -0
  59. package/dist-cjs/commands/PutSchemaFromJsonCommand.js +60 -0
  60. package/dist-cjs/commands/RemoveFacetFromObjectCommand.js +60 -0
  61. package/dist-cjs/commands/TagResourceCommand.js +60 -0
  62. package/dist-cjs/commands/UntagResourceCommand.js +60 -0
  63. package/dist-cjs/commands/UpdateFacetCommand.js +71 -0
  64. package/dist-cjs/commands/UpdateLinkAttributesCommand.js +60 -0
  65. package/dist-cjs/commands/UpdateObjectAttributesCommand.js +60 -0
  66. package/dist-cjs/commands/UpdateSchemaCommand.js +61 -0
  67. package/dist-cjs/commands/UpdateTypedLinkFacetCommand.js +60 -0
  68. package/dist-cjs/commands/UpgradeAppliedSchemaCommand.js +60 -0
  69. package/dist-cjs/commands/UpgradePublishedSchemaCommand.js +60 -0
  70. package/dist-cjs/endpoints.js +56 -0
  71. package/dist-cjs/index.js +92 -0
  72. package/dist-cjs/models/index.js +4 -0
  73. package/dist-cjs/models/models_0.js +2627 -0
  74. package/dist-cjs/pagination/Interfaces.js +2 -0
  75. package/dist-cjs/pagination/ListAppliedSchemaArnsPaginator.js +45 -0
  76. package/dist-cjs/pagination/ListAttachedIndicesPaginator.js +45 -0
  77. package/dist-cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +45 -0
  78. package/dist-cjs/pagination/ListDirectoriesPaginator.js +45 -0
  79. package/dist-cjs/pagination/ListFacetAttributesPaginator.js +45 -0
  80. package/dist-cjs/pagination/ListFacetNamesPaginator.js +45 -0
  81. package/dist-cjs/pagination/ListIndexPaginator.js +45 -0
  82. package/dist-cjs/pagination/ListManagedSchemaArnsPaginator.js +45 -0
  83. package/dist-cjs/pagination/ListObjectAttributesPaginator.js +45 -0
  84. package/dist-cjs/pagination/ListObjectChildrenPaginator.js +45 -0
  85. package/dist-cjs/pagination/ListObjectParentPathsPaginator.js +45 -0
  86. package/dist-cjs/pagination/ListObjectParentsPaginator.js +45 -0
  87. package/dist-cjs/pagination/ListObjectPoliciesPaginator.js +45 -0
  88. package/dist-cjs/pagination/ListPolicyAttachmentsPaginator.js +45 -0
  89. package/dist-cjs/pagination/ListPublishedSchemaArnsPaginator.js +45 -0
  90. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +45 -0
  91. package/dist-cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +45 -0
  92. package/dist-cjs/pagination/ListTypedLinkFacetNamesPaginator.js +45 -0
  93. package/dist-cjs/pagination/LookupPolicyPaginator.js +45 -0
  94. package/dist-cjs/protocols/Aws_restJson1.js +11264 -0
  95. package/dist-cjs/runtimeConfig.browser.js +41 -0
  96. package/dist-cjs/runtimeConfig.js +46 -0
  97. package/dist-cjs/runtimeConfig.native.js +19 -0
  98. package/dist-cjs/runtimeConfig.shared.js +20 -0
  99. package/dist-es/CloudDirectory.js +1000 -0
  100. package/dist-es/CloudDirectoryClient.js +37 -0
  101. package/dist-es/commands/AddFacetToObjectCommand.js +39 -0
  102. package/dist-es/commands/ApplySchemaCommand.js +39 -0
  103. package/dist-es/commands/AttachObjectCommand.js +39 -0
  104. package/dist-es/commands/AttachPolicyCommand.js +39 -0
  105. package/dist-es/commands/AttachToIndexCommand.js +39 -0
  106. package/dist-es/commands/AttachTypedLinkCommand.js +39 -0
  107. package/dist-es/commands/BatchReadCommand.js +39 -0
  108. package/dist-es/commands/BatchWriteCommand.js +39 -0
  109. package/dist-es/commands/CreateDirectoryCommand.js +39 -0
  110. package/dist-es/commands/CreateFacetCommand.js +39 -0
  111. package/dist-es/commands/CreateIndexCommand.js +39 -0
  112. package/dist-es/commands/CreateObjectCommand.js +39 -0
  113. package/dist-es/commands/CreateSchemaCommand.js +39 -0
  114. package/dist-es/commands/CreateTypedLinkFacetCommand.js +39 -0
  115. package/dist-es/commands/DeleteDirectoryCommand.js +39 -0
  116. package/dist-es/commands/DeleteFacetCommand.js +39 -0
  117. package/dist-es/commands/DeleteObjectCommand.js +39 -0
  118. package/dist-es/commands/DeleteSchemaCommand.js +39 -0
  119. package/dist-es/commands/DeleteTypedLinkFacetCommand.js +39 -0
  120. package/dist-es/commands/DetachFromIndexCommand.js +39 -0
  121. package/dist-es/commands/DetachObjectCommand.js +39 -0
  122. package/dist-es/commands/DetachPolicyCommand.js +39 -0
  123. package/dist-es/commands/DetachTypedLinkCommand.js +39 -0
  124. package/dist-es/commands/DisableDirectoryCommand.js +39 -0
  125. package/dist-es/commands/EnableDirectoryCommand.js +39 -0
  126. package/dist-es/commands/GetAppliedSchemaVersionCommand.js +39 -0
  127. package/dist-es/commands/GetDirectoryCommand.js +39 -0
  128. package/dist-es/commands/GetFacetCommand.js +39 -0
  129. package/dist-es/commands/GetLinkAttributesCommand.js +39 -0
  130. package/dist-es/commands/GetObjectAttributesCommand.js +39 -0
  131. package/dist-es/commands/GetObjectInformationCommand.js +39 -0
  132. package/dist-es/commands/GetSchemaAsJsonCommand.js +39 -0
  133. package/dist-es/commands/GetTypedLinkFacetInformationCommand.js +39 -0
  134. package/dist-es/commands/ListAppliedSchemaArnsCommand.js +39 -0
  135. package/dist-es/commands/ListAttachedIndicesCommand.js +39 -0
  136. package/dist-es/commands/ListDevelopmentSchemaArnsCommand.js +39 -0
  137. package/dist-es/commands/ListDirectoriesCommand.js +39 -0
  138. package/dist-es/commands/ListFacetAttributesCommand.js +39 -0
  139. package/dist-es/commands/ListFacetNamesCommand.js +39 -0
  140. package/dist-es/commands/ListIncomingTypedLinksCommand.js +39 -0
  141. package/dist-es/commands/ListIndexCommand.js +39 -0
  142. package/dist-es/commands/ListManagedSchemaArnsCommand.js +39 -0
  143. package/dist-es/commands/ListObjectAttributesCommand.js +39 -0
  144. package/dist-es/commands/ListObjectChildrenCommand.js +39 -0
  145. package/dist-es/commands/ListObjectParentPathsCommand.js +39 -0
  146. package/dist-es/commands/ListObjectParentsCommand.js +39 -0
  147. package/dist-es/commands/ListObjectPoliciesCommand.js +39 -0
  148. package/dist-es/commands/ListOutgoingTypedLinksCommand.js +39 -0
  149. package/dist-es/commands/ListPolicyAttachmentsCommand.js +39 -0
  150. package/dist-es/commands/ListPublishedSchemaArnsCommand.js +39 -0
  151. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  152. package/dist-es/commands/ListTypedLinkFacetAttributesCommand.js +39 -0
  153. package/dist-es/commands/ListTypedLinkFacetNamesCommand.js +39 -0
  154. package/dist-es/commands/LookupPolicyCommand.js +39 -0
  155. package/dist-es/commands/PublishSchemaCommand.js +39 -0
  156. package/dist-es/commands/PutSchemaFromJsonCommand.js +39 -0
  157. package/dist-es/commands/RemoveFacetFromObjectCommand.js +39 -0
  158. package/dist-es/commands/TagResourceCommand.js +39 -0
  159. package/dist-es/commands/UntagResourceCommand.js +39 -0
  160. package/dist-es/commands/UpdateFacetCommand.js +39 -0
  161. package/dist-es/commands/UpdateLinkAttributesCommand.js +39 -0
  162. package/dist-es/commands/UpdateObjectAttributesCommand.js +39 -0
  163. package/dist-es/commands/UpdateSchemaCommand.js +39 -0
  164. package/dist-es/commands/UpdateTypedLinkFacetCommand.js +39 -0
  165. package/dist-es/commands/UpgradeAppliedSchemaCommand.js +39 -0
  166. package/dist-es/commands/UpgradePublishedSchemaCommand.js +39 -0
  167. package/dist-es/endpoints.js +52 -0
  168. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  169. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  170. package/dist-es/models/models_0.js +1252 -0
  171. package/dist-es/pagination/Interfaces.js +1 -0
  172. package/dist-es/pagination/ListAppliedSchemaArnsPaginator.js +74 -0
  173. package/dist-es/pagination/ListAttachedIndicesPaginator.js +74 -0
  174. package/dist-es/pagination/ListDevelopmentSchemaArnsPaginator.js +74 -0
  175. package/dist-es/pagination/ListDirectoriesPaginator.js +74 -0
  176. package/dist-es/pagination/ListFacetAttributesPaginator.js +74 -0
  177. package/dist-es/pagination/ListFacetNamesPaginator.js +74 -0
  178. package/dist-es/pagination/ListIndexPaginator.js +74 -0
  179. package/dist-es/pagination/ListManagedSchemaArnsPaginator.js +74 -0
  180. package/dist-es/pagination/ListObjectAttributesPaginator.js +74 -0
  181. package/dist-es/pagination/ListObjectChildrenPaginator.js +74 -0
  182. package/dist-es/pagination/ListObjectParentPathsPaginator.js +74 -0
  183. package/dist-es/pagination/ListObjectParentsPaginator.js +74 -0
  184. package/dist-es/pagination/ListObjectPoliciesPaginator.js +74 -0
  185. package/dist-es/pagination/ListPolicyAttachmentsPaginator.js +74 -0
  186. package/dist-es/pagination/ListPublishedSchemaArnsPaginator.js +74 -0
  187. package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
  188. package/dist-es/pagination/ListTypedLinkFacetAttributesPaginator.js +74 -0
  189. package/dist-es/pagination/ListTypedLinkFacetNamesPaginator.js +74 -0
  190. package/dist-es/pagination/LookupPolicyPaginator.js +74 -0
  191. package/dist-es/protocols/Aws_restJson1.js +11983 -0
  192. package/dist-es/runtimeConfig.browser.js +16 -0
  193. package/dist-es/runtimeConfig.js +21 -0
  194. package/dist-es/runtimeConfig.native.js +8 -0
  195. package/dist-es/runtimeConfig.shared.js +13 -0
  196. package/dist-types/CloudDirectory.d.ts +558 -0
  197. package/dist-types/CloudDirectoryClient.d.ts +203 -0
  198. package/dist-types/commands/AddFacetToObjectCommand.d.ts +35 -0
  199. package/dist-types/commands/ApplySchemaCommand.d.ts +36 -0
  200. package/dist-types/commands/AttachObjectCommand.d.ts +45 -0
  201. package/dist-types/commands/AttachPolicyCommand.d.ts +36 -0
  202. package/dist-types/commands/AttachToIndexCommand.d.ts +35 -0
  203. package/dist-types/commands/AttachTypedLinkCommand.d.ts +35 -0
  204. package/dist-types/commands/BatchReadCommand.d.ts +35 -0
  205. package/dist-types/commands/BatchWriteCommand.d.ts +36 -0
  206. package/dist-types/commands/CreateDirectoryCommand.d.ts +38 -0
  207. package/dist-types/commands/CreateFacetCommand.d.ts +36 -0
  208. package/dist-types/commands/CreateIndexCommand.d.ts +35 -0
  209. package/dist-types/commands/CreateObjectCommand.d.ts +38 -0
  210. package/dist-types/commands/CreateSchemaCommand.d.ts +55 -0
  211. package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
  212. package/dist-types/commands/DeleteDirectoryCommand.d.ts +37 -0
  213. package/dist-types/commands/DeleteFacetCommand.d.ts +37 -0
  214. package/dist-types/commands/DeleteObjectCommand.d.ts +36 -0
  215. package/dist-types/commands/DeleteSchemaCommand.d.ts +35 -0
  216. package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
  217. package/dist-types/commands/DetachFromIndexCommand.d.ts +35 -0
  218. package/dist-types/commands/DetachObjectCommand.d.ts +36 -0
  219. package/dist-types/commands/DetachPolicyCommand.d.ts +35 -0
  220. package/dist-types/commands/DetachTypedLinkCommand.d.ts +35 -0
  221. package/dist-types/commands/DisableDirectoryCommand.d.ts +36 -0
  222. package/dist-types/commands/EnableDirectoryCommand.d.ts +36 -0
  223. package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
  224. package/dist-types/commands/GetDirectoryCommand.d.ts +35 -0
  225. package/dist-types/commands/GetFacetCommand.d.ts +36 -0
  226. package/dist-types/commands/GetLinkAttributesCommand.d.ts +35 -0
  227. package/dist-types/commands/GetObjectAttributesCommand.d.ts +35 -0
  228. package/dist-types/commands/GetObjectInformationCommand.d.ts +35 -0
  229. package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +35 -0
  230. package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
  231. package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
  232. package/dist-types/commands/ListAttachedIndicesCommand.d.ts +35 -0
  233. package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
  234. package/dist-types/commands/ListDirectoriesCommand.d.ts +35 -0
  235. package/dist-types/commands/ListFacetAttributesCommand.d.ts +35 -0
  236. package/dist-types/commands/ListFacetNamesCommand.d.ts +35 -0
  237. package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
  238. package/dist-types/commands/ListIndexCommand.d.ts +35 -0
  239. package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
  240. package/dist-types/commands/ListObjectAttributesCommand.d.ts +36 -0
  241. package/dist-types/commands/ListObjectChildrenCommand.d.ts +36 -0
  242. package/dist-types/commands/ListObjectParentPathsCommand.d.ts +42 -0
  243. package/dist-types/commands/ListObjectParentsCommand.d.ts +36 -0
  244. package/dist-types/commands/ListObjectPoliciesCommand.d.ts +35 -0
  245. package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
  246. package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
  247. package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
  248. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  249. package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
  250. package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
  251. package/dist-types/commands/LookupPolicyCommand.d.ts +40 -0
  252. package/dist-types/commands/PublishSchemaCommand.d.ts +35 -0
  253. package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +35 -0
  254. package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
  255. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  256. package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  257. package/dist-types/commands/UpdateFacetCommand.d.ts +46 -0
  258. package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +35 -0
  259. package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +35 -0
  260. package/dist-types/commands/UpdateSchemaCommand.d.ts +36 -0
  261. package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
  262. package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
  263. package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
  264. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  265. package/{index.ts → dist-types/index.d.ts} +0 -0
  266. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  267. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  268. package/dist-types/pagination/Interfaces.d.ts +6 -0
  269. package/dist-types/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
  270. package/dist-types/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
  271. package/dist-types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
  272. package/dist-types/pagination/ListDirectoriesPaginator.d.ts +4 -0
  273. package/dist-types/pagination/ListFacetAttributesPaginator.d.ts +4 -0
  274. package/dist-types/pagination/ListFacetNamesPaginator.d.ts +4 -0
  275. package/dist-types/pagination/ListIndexPaginator.d.ts +4 -0
  276. package/dist-types/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
  277. package/dist-types/pagination/ListObjectAttributesPaginator.d.ts +4 -0
  278. package/dist-types/pagination/ListObjectChildrenPaginator.d.ts +4 -0
  279. package/dist-types/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
  280. package/dist-types/pagination/ListObjectParentsPaginator.d.ts +4 -0
  281. package/dist-types/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
  282. package/dist-types/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
  283. package/dist-types/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
  284. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  285. package/dist-types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
  286. package/dist-types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
  287. package/dist-types/pagination/LookupPolicyPaginator.d.ts +4 -0
  288. package/dist-types/protocols/Aws_restJson1.d.ts +200 -0
  289. package/dist-types/runtimeConfig.browser.d.ts +37 -0
  290. package/dist-types/runtimeConfig.d.ts +37 -0
  291. package/dist-types/runtimeConfig.native.d.ts +36 -0
  292. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  293. package/dist-types/ts3.4/CloudDirectory.d.ts +558 -0
  294. package/dist-types/ts3.4/CloudDirectoryClient.d.ts +203 -0
  295. package/dist-types/ts3.4/commands/AddFacetToObjectCommand.d.ts +35 -0
  296. package/dist-types/ts3.4/commands/ApplySchemaCommand.d.ts +36 -0
  297. package/dist-types/ts3.4/commands/AttachObjectCommand.d.ts +45 -0
  298. package/dist-types/ts3.4/commands/AttachPolicyCommand.d.ts +36 -0
  299. package/dist-types/ts3.4/commands/AttachToIndexCommand.d.ts +35 -0
  300. package/dist-types/ts3.4/commands/AttachTypedLinkCommand.d.ts +35 -0
  301. package/dist-types/ts3.4/commands/BatchReadCommand.d.ts +35 -0
  302. package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +36 -0
  303. package/dist-types/ts3.4/commands/CreateDirectoryCommand.d.ts +38 -0
  304. package/dist-types/ts3.4/commands/CreateFacetCommand.d.ts +36 -0
  305. package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +35 -0
  306. package/dist-types/ts3.4/commands/CreateObjectCommand.d.ts +38 -0
  307. package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +55 -0
  308. package/dist-types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
  309. package/dist-types/ts3.4/commands/DeleteDirectoryCommand.d.ts +37 -0
  310. package/dist-types/ts3.4/commands/DeleteFacetCommand.d.ts +37 -0
  311. package/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +36 -0
  312. package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +35 -0
  313. package/dist-types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
  314. package/dist-types/ts3.4/commands/DetachFromIndexCommand.d.ts +35 -0
  315. package/dist-types/ts3.4/commands/DetachObjectCommand.d.ts +36 -0
  316. package/dist-types/ts3.4/commands/DetachPolicyCommand.d.ts +35 -0
  317. package/dist-types/ts3.4/commands/DetachTypedLinkCommand.d.ts +35 -0
  318. package/dist-types/ts3.4/commands/DisableDirectoryCommand.d.ts +36 -0
  319. package/dist-types/ts3.4/commands/EnableDirectoryCommand.d.ts +36 -0
  320. package/dist-types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
  321. package/dist-types/ts3.4/commands/GetDirectoryCommand.d.ts +35 -0
  322. package/dist-types/ts3.4/commands/GetFacetCommand.d.ts +36 -0
  323. package/dist-types/ts3.4/commands/GetLinkAttributesCommand.d.ts +35 -0
  324. package/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +35 -0
  325. package/dist-types/ts3.4/commands/GetObjectInformationCommand.d.ts +35 -0
  326. package/dist-types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +35 -0
  327. package/dist-types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
  328. package/dist-types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
  329. package/dist-types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +35 -0
  330. package/dist-types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
  331. package/dist-types/ts3.4/commands/ListDirectoriesCommand.d.ts +35 -0
  332. package/dist-types/ts3.4/commands/ListFacetAttributesCommand.d.ts +35 -0
  333. package/dist-types/ts3.4/commands/ListFacetNamesCommand.d.ts +35 -0
  334. package/dist-types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
  335. package/dist-types/ts3.4/commands/ListIndexCommand.d.ts +35 -0
  336. package/dist-types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
  337. package/dist-types/ts3.4/commands/ListObjectAttributesCommand.d.ts +36 -0
  338. package/dist-types/ts3.4/commands/ListObjectChildrenCommand.d.ts +36 -0
  339. package/dist-types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +42 -0
  340. package/dist-types/ts3.4/commands/ListObjectParentsCommand.d.ts +36 -0
  341. package/dist-types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +35 -0
  342. package/dist-types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
  343. package/dist-types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
  344. package/dist-types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
  345. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +37 -0
  346. package/dist-types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
  347. package/dist-types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
  348. package/dist-types/ts3.4/commands/LookupPolicyCommand.d.ts +40 -0
  349. package/dist-types/ts3.4/commands/PublishSchemaCommand.d.ts +35 -0
  350. package/dist-types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +35 -0
  351. package/dist-types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
  352. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  353. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  354. package/dist-types/ts3.4/commands/UpdateFacetCommand.d.ts +46 -0
  355. package/dist-types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +35 -0
  356. package/dist-types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +35 -0
  357. package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +36 -0
  358. package/dist-types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
  359. package/dist-types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
  360. package/dist-types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
  361. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  362. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  363. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  364. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  365. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  366. package/dist-types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
  367. package/dist-types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
  368. package/dist-types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
  369. package/dist-types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +4 -0
  370. package/dist-types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +4 -0
  371. package/dist-types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +4 -0
  372. package/dist-types/ts3.4/pagination/ListIndexPaginator.d.ts +4 -0
  373. package/dist-types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
  374. package/dist-types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +4 -0
  375. package/dist-types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +4 -0
  376. package/dist-types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
  377. package/dist-types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +4 -0
  378. package/dist-types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
  379. package/dist-types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
  380. package/dist-types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
  381. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  382. package/dist-types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
  383. package/dist-types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
  384. package/dist-types/ts3.4/pagination/LookupPolicyPaginator.d.ts +4 -0
  385. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +200 -0
  386. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  387. package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  388. package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  389. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  390. package/package.json +52 -49
  391. package/CloudDirectory.ts +0 -2405
  392. package/CloudDirectoryClient.ts +0 -516
  393. package/commands/AddFacetToObjectCommand.ts +0 -94
  394. package/commands/ApplySchemaCommand.ts +0 -95
  395. package/commands/AttachObjectCommand.ts +0 -104
  396. package/commands/AttachPolicyCommand.ts +0 -95
  397. package/commands/AttachToIndexCommand.ts +0 -94
  398. package/commands/AttachTypedLinkCommand.ts +0 -94
  399. package/commands/BatchReadCommand.ts +0 -94
  400. package/commands/BatchWriteCommand.ts +0 -95
  401. package/commands/CreateDirectoryCommand.ts +0 -97
  402. package/commands/CreateFacetCommand.ts +0 -95
  403. package/commands/CreateIndexCommand.ts +0 -94
  404. package/commands/CreateObjectCommand.ts +0 -97
  405. package/commands/CreateSchemaCommand.ts +0 -114
  406. package/commands/CreateTypedLinkFacetCommand.ts +0 -94
  407. package/commands/DeleteDirectoryCommand.ts +0 -96
  408. package/commands/DeleteFacetCommand.ts +0 -96
  409. package/commands/DeleteObjectCommand.ts +0 -95
  410. package/commands/DeleteSchemaCommand.ts +0 -94
  411. package/commands/DeleteTypedLinkFacetCommand.ts +0 -94
  412. package/commands/DetachFromIndexCommand.ts +0 -94
  413. package/commands/DetachObjectCommand.ts +0 -95
  414. package/commands/DetachPolicyCommand.ts +0 -94
  415. package/commands/DetachTypedLinkCommand.ts +0 -94
  416. package/commands/DisableDirectoryCommand.ts +0 -95
  417. package/commands/EnableDirectoryCommand.ts +0 -95
  418. package/commands/GetAppliedSchemaVersionCommand.ts +0 -94
  419. package/commands/GetDirectoryCommand.ts +0 -94
  420. package/commands/GetFacetCommand.ts +0 -95
  421. package/commands/GetLinkAttributesCommand.ts +0 -94
  422. package/commands/GetObjectAttributesCommand.ts +0 -94
  423. package/commands/GetObjectInformationCommand.ts +0 -94
  424. package/commands/GetSchemaAsJsonCommand.ts +0 -94
  425. package/commands/GetTypedLinkFacetInformationCommand.ts +0 -99
  426. package/commands/ListAppliedSchemaArnsCommand.ts +0 -94
  427. package/commands/ListAttachedIndicesCommand.ts +0 -94
  428. package/commands/ListDevelopmentSchemaArnsCommand.ts +0 -98
  429. package/commands/ListDirectoriesCommand.ts +0 -94
  430. package/commands/ListFacetAttributesCommand.ts +0 -94
  431. package/commands/ListFacetNamesCommand.ts +0 -94
  432. package/commands/ListIncomingTypedLinksCommand.ts +0 -96
  433. package/commands/ListIndexCommand.ts +0 -94
  434. package/commands/ListManagedSchemaArnsCommand.ts +0 -94
  435. package/commands/ListObjectAttributesCommand.ts +0 -95
  436. package/commands/ListObjectChildrenCommand.ts +0 -95
  437. package/commands/ListObjectParentPathsCommand.ts +0 -101
  438. package/commands/ListObjectParentsCommand.ts +0 -95
  439. package/commands/ListObjectPoliciesCommand.ts +0 -94
  440. package/commands/ListOutgoingTypedLinksCommand.ts +0 -96
  441. package/commands/ListPolicyAttachmentsCommand.ts +0 -94
  442. package/commands/ListPublishedSchemaArnsCommand.ts +0 -94
  443. package/commands/ListTagsForResourceCommand.ts +0 -96
  444. package/commands/ListTypedLinkFacetAttributesCommand.ts +0 -99
  445. package/commands/ListTypedLinkFacetNamesCommand.ts +0 -95
  446. package/commands/LookupPolicyCommand.ts +0 -99
  447. package/commands/PublishSchemaCommand.ts +0 -94
  448. package/commands/PutSchemaFromJsonCommand.ts +0 -94
  449. package/commands/RemoveFacetFromObjectCommand.ts +0 -94
  450. package/commands/TagResourceCommand.ts +0 -94
  451. package/commands/UntagResourceCommand.ts +0 -94
  452. package/commands/UpdateFacetCommand.ts +0 -105
  453. package/commands/UpdateLinkAttributesCommand.ts +0 -94
  454. package/commands/UpdateObjectAttributesCommand.ts +0 -94
  455. package/commands/UpdateSchemaCommand.ts +0 -95
  456. package/commands/UpdateTypedLinkFacetCommand.ts +0 -94
  457. package/commands/UpgradeAppliedSchemaCommand.ts +0 -94
  458. package/commands/UpgradePublishedSchemaCommand.ts +0 -94
  459. package/dist/cjs/CloudDirectory.js +0 -1006
  460. package/dist/cjs/CloudDirectory.js.map +0 -1
  461. package/dist/cjs/CloudDirectoryClient.js +0 -49
  462. package/dist/cjs/CloudDirectoryClient.js.map +0 -1
  463. package/dist/cjs/commands/AddFacetToObjectCommand.js +0 -61
  464. package/dist/cjs/commands/AddFacetToObjectCommand.js.map +0 -1
  465. package/dist/cjs/commands/ApplySchemaCommand.js +0 -62
  466. package/dist/cjs/commands/ApplySchemaCommand.js.map +0 -1
  467. package/dist/cjs/commands/AttachObjectCommand.js +0 -71
  468. package/dist/cjs/commands/AttachObjectCommand.js.map +0 -1
  469. package/dist/cjs/commands/AttachPolicyCommand.js +0 -62
  470. package/dist/cjs/commands/AttachPolicyCommand.js.map +0 -1
  471. package/dist/cjs/commands/AttachToIndexCommand.js +0 -61
  472. package/dist/cjs/commands/AttachToIndexCommand.js.map +0 -1
  473. package/dist/cjs/commands/AttachTypedLinkCommand.js +0 -61
  474. package/dist/cjs/commands/AttachTypedLinkCommand.js.map +0 -1
  475. package/dist/cjs/commands/BatchReadCommand.js +0 -61
  476. package/dist/cjs/commands/BatchReadCommand.js.map +0 -1
  477. package/dist/cjs/commands/BatchWriteCommand.js +0 -62
  478. package/dist/cjs/commands/BatchWriteCommand.js.map +0 -1
  479. package/dist/cjs/commands/CreateDirectoryCommand.js +0 -64
  480. package/dist/cjs/commands/CreateDirectoryCommand.js.map +0 -1
  481. package/dist/cjs/commands/CreateFacetCommand.js +0 -62
  482. package/dist/cjs/commands/CreateFacetCommand.js.map +0 -1
  483. package/dist/cjs/commands/CreateIndexCommand.js +0 -61
  484. package/dist/cjs/commands/CreateIndexCommand.js.map +0 -1
  485. package/dist/cjs/commands/CreateObjectCommand.js +0 -64
  486. package/dist/cjs/commands/CreateObjectCommand.js.map +0 -1
  487. package/dist/cjs/commands/CreateSchemaCommand.js +0 -81
  488. package/dist/cjs/commands/CreateSchemaCommand.js.map +0 -1
  489. package/dist/cjs/commands/CreateTypedLinkFacetCommand.js +0 -61
  490. package/dist/cjs/commands/CreateTypedLinkFacetCommand.js.map +0 -1
  491. package/dist/cjs/commands/DeleteDirectoryCommand.js +0 -63
  492. package/dist/cjs/commands/DeleteDirectoryCommand.js.map +0 -1
  493. package/dist/cjs/commands/DeleteFacetCommand.js +0 -63
  494. package/dist/cjs/commands/DeleteFacetCommand.js.map +0 -1
  495. package/dist/cjs/commands/DeleteObjectCommand.js +0 -62
  496. package/dist/cjs/commands/DeleteObjectCommand.js.map +0 -1
  497. package/dist/cjs/commands/DeleteSchemaCommand.js +0 -61
  498. package/dist/cjs/commands/DeleteSchemaCommand.js.map +0 -1
  499. package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js +0 -61
  500. package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
  501. package/dist/cjs/commands/DetachFromIndexCommand.js +0 -61
  502. package/dist/cjs/commands/DetachFromIndexCommand.js.map +0 -1
  503. package/dist/cjs/commands/DetachObjectCommand.js +0 -62
  504. package/dist/cjs/commands/DetachObjectCommand.js.map +0 -1
  505. package/dist/cjs/commands/DetachPolicyCommand.js +0 -61
  506. package/dist/cjs/commands/DetachPolicyCommand.js.map +0 -1
  507. package/dist/cjs/commands/DetachTypedLinkCommand.js +0 -61
  508. package/dist/cjs/commands/DetachTypedLinkCommand.js.map +0 -1
  509. package/dist/cjs/commands/DisableDirectoryCommand.js +0 -62
  510. package/dist/cjs/commands/DisableDirectoryCommand.js.map +0 -1
  511. package/dist/cjs/commands/EnableDirectoryCommand.js +0 -62
  512. package/dist/cjs/commands/EnableDirectoryCommand.js.map +0 -1
  513. package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js +0 -61
  514. package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
  515. package/dist/cjs/commands/GetDirectoryCommand.js +0 -61
  516. package/dist/cjs/commands/GetDirectoryCommand.js.map +0 -1
  517. package/dist/cjs/commands/GetFacetCommand.js +0 -62
  518. package/dist/cjs/commands/GetFacetCommand.js.map +0 -1
  519. package/dist/cjs/commands/GetLinkAttributesCommand.js +0 -61
  520. package/dist/cjs/commands/GetLinkAttributesCommand.js.map +0 -1
  521. package/dist/cjs/commands/GetObjectAttributesCommand.js +0 -61
  522. package/dist/cjs/commands/GetObjectAttributesCommand.js.map +0 -1
  523. package/dist/cjs/commands/GetObjectInformationCommand.js +0 -61
  524. package/dist/cjs/commands/GetObjectInformationCommand.js.map +0 -1
  525. package/dist/cjs/commands/GetSchemaAsJsonCommand.js +0 -61
  526. package/dist/cjs/commands/GetSchemaAsJsonCommand.js.map +0 -1
  527. package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js +0 -61
  528. package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
  529. package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js +0 -61
  530. package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
  531. package/dist/cjs/commands/ListAttachedIndicesCommand.js +0 -61
  532. package/dist/cjs/commands/ListAttachedIndicesCommand.js.map +0 -1
  533. package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js +0 -62
  534. package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
  535. package/dist/cjs/commands/ListDirectoriesCommand.js +0 -61
  536. package/dist/cjs/commands/ListDirectoriesCommand.js.map +0 -1
  537. package/dist/cjs/commands/ListFacetAttributesCommand.js +0 -61
  538. package/dist/cjs/commands/ListFacetAttributesCommand.js.map +0 -1
  539. package/dist/cjs/commands/ListFacetNamesCommand.js +0 -61
  540. package/dist/cjs/commands/ListFacetNamesCommand.js.map +0 -1
  541. package/dist/cjs/commands/ListIncomingTypedLinksCommand.js +0 -63
  542. package/dist/cjs/commands/ListIncomingTypedLinksCommand.js.map +0 -1
  543. package/dist/cjs/commands/ListIndexCommand.js +0 -61
  544. package/dist/cjs/commands/ListIndexCommand.js.map +0 -1
  545. package/dist/cjs/commands/ListManagedSchemaArnsCommand.js +0 -61
  546. package/dist/cjs/commands/ListManagedSchemaArnsCommand.js.map +0 -1
  547. package/dist/cjs/commands/ListObjectAttributesCommand.js +0 -62
  548. package/dist/cjs/commands/ListObjectAttributesCommand.js.map +0 -1
  549. package/dist/cjs/commands/ListObjectChildrenCommand.js +0 -62
  550. package/dist/cjs/commands/ListObjectChildrenCommand.js.map +0 -1
  551. package/dist/cjs/commands/ListObjectParentPathsCommand.js +0 -68
  552. package/dist/cjs/commands/ListObjectParentPathsCommand.js.map +0 -1
  553. package/dist/cjs/commands/ListObjectParentsCommand.js +0 -62
  554. package/dist/cjs/commands/ListObjectParentsCommand.js.map +0 -1
  555. package/dist/cjs/commands/ListObjectPoliciesCommand.js +0 -61
  556. package/dist/cjs/commands/ListObjectPoliciesCommand.js.map +0 -1
  557. package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js +0 -63
  558. package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
  559. package/dist/cjs/commands/ListPolicyAttachmentsCommand.js +0 -61
  560. package/dist/cjs/commands/ListPolicyAttachmentsCommand.js.map +0 -1
  561. package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js +0 -61
  562. package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
  563. package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -63
  564. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  565. package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js +0 -61
  566. package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
  567. package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js +0 -62
  568. package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
  569. package/dist/cjs/commands/LookupPolicyCommand.js +0 -66
  570. package/dist/cjs/commands/LookupPolicyCommand.js.map +0 -1
  571. package/dist/cjs/commands/PublishSchemaCommand.js +0 -61
  572. package/dist/cjs/commands/PublishSchemaCommand.js.map +0 -1
  573. package/dist/cjs/commands/PutSchemaFromJsonCommand.js +0 -61
  574. package/dist/cjs/commands/PutSchemaFromJsonCommand.js.map +0 -1
  575. package/dist/cjs/commands/RemoveFacetFromObjectCommand.js +0 -61
  576. package/dist/cjs/commands/RemoveFacetFromObjectCommand.js.map +0 -1
  577. package/dist/cjs/commands/TagResourceCommand.js +0 -61
  578. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  579. package/dist/cjs/commands/UntagResourceCommand.js +0 -61
  580. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  581. package/dist/cjs/commands/UpdateFacetCommand.js +0 -72
  582. package/dist/cjs/commands/UpdateFacetCommand.js.map +0 -1
  583. package/dist/cjs/commands/UpdateLinkAttributesCommand.js +0 -61
  584. package/dist/cjs/commands/UpdateLinkAttributesCommand.js.map +0 -1
  585. package/dist/cjs/commands/UpdateObjectAttributesCommand.js +0 -61
  586. package/dist/cjs/commands/UpdateObjectAttributesCommand.js.map +0 -1
  587. package/dist/cjs/commands/UpdateSchemaCommand.js +0 -62
  588. package/dist/cjs/commands/UpdateSchemaCommand.js.map +0 -1
  589. package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js +0 -61
  590. package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
  591. package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js +0 -61
  592. package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
  593. package/dist/cjs/commands/UpgradePublishedSchemaCommand.js +0 -61
  594. package/dist/cjs/commands/UpgradePublishedSchemaCommand.js.map +0 -1
  595. package/dist/cjs/endpoints.js +0 -57
  596. package/dist/cjs/endpoints.js.map +0 -1
  597. package/dist/cjs/index.js +0 -93
  598. package/dist/cjs/index.js.map +0 -1
  599. package/dist/cjs/models/index.js +0 -5
  600. package/dist/cjs/models/index.js.map +0 -1
  601. package/dist/cjs/models/models_0.js +0 -2628
  602. package/dist/cjs/models/models_0.js.map +0 -1
  603. package/dist/cjs/package.json +0 -91
  604. package/dist/cjs/pagination/Interfaces.js +0 -3
  605. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  606. package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js +0 -46
  607. package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
  608. package/dist/cjs/pagination/ListAttachedIndicesPaginator.js +0 -46
  609. package/dist/cjs/pagination/ListAttachedIndicesPaginator.js.map +0 -1
  610. package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -46
  611. package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
  612. package/dist/cjs/pagination/ListDirectoriesPaginator.js +0 -46
  613. package/dist/cjs/pagination/ListDirectoriesPaginator.js.map +0 -1
  614. package/dist/cjs/pagination/ListFacetAttributesPaginator.js +0 -46
  615. package/dist/cjs/pagination/ListFacetAttributesPaginator.js.map +0 -1
  616. package/dist/cjs/pagination/ListFacetNamesPaginator.js +0 -46
  617. package/dist/cjs/pagination/ListFacetNamesPaginator.js.map +0 -1
  618. package/dist/cjs/pagination/ListIndexPaginator.js +0 -46
  619. package/dist/cjs/pagination/ListIndexPaginator.js.map +0 -1
  620. package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js +0 -46
  621. package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
  622. package/dist/cjs/pagination/ListObjectAttributesPaginator.js +0 -46
  623. package/dist/cjs/pagination/ListObjectAttributesPaginator.js.map +0 -1
  624. package/dist/cjs/pagination/ListObjectChildrenPaginator.js +0 -46
  625. package/dist/cjs/pagination/ListObjectChildrenPaginator.js.map +0 -1
  626. package/dist/cjs/pagination/ListObjectParentPathsPaginator.js +0 -46
  627. package/dist/cjs/pagination/ListObjectParentPathsPaginator.js.map +0 -1
  628. package/dist/cjs/pagination/ListObjectParentsPaginator.js +0 -46
  629. package/dist/cjs/pagination/ListObjectParentsPaginator.js.map +0 -1
  630. package/dist/cjs/pagination/ListObjectPoliciesPaginator.js +0 -46
  631. package/dist/cjs/pagination/ListObjectPoliciesPaginator.js.map +0 -1
  632. package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js +0 -46
  633. package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
  634. package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js +0 -46
  635. package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
  636. package/dist/cjs/pagination/ListTagsForResourcePaginator.js +0 -46
  637. package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
  638. package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -46
  639. package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
  640. package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js +0 -46
  641. package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
  642. package/dist/cjs/pagination/LookupPolicyPaginator.js +0 -46
  643. package/dist/cjs/pagination/LookupPolicyPaginator.js.map +0 -1
  644. package/dist/cjs/protocols/Aws_restJson1.js +0 -11265
  645. package/dist/cjs/protocols/Aws_restJson1.js.map +0 -1
  646. package/dist/cjs/runtimeConfig.browser.js +0 -41
  647. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  648. package/dist/cjs/runtimeConfig.js +0 -46
  649. package/dist/cjs/runtimeConfig.js.map +0 -1
  650. package/dist/cjs/runtimeConfig.native.js +0 -20
  651. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  652. package/dist/cjs/runtimeConfig.shared.js +0 -21
  653. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  654. package/dist/es/CloudDirectory.js +0 -1009
  655. package/dist/es/CloudDirectory.js.map +0 -1
  656. package/dist/es/CloudDirectoryClient.js +0 -51
  657. package/dist/es/CloudDirectoryClient.js.map +0 -1
  658. package/dist/es/commands/AddFacetToObjectCommand.js +0 -65
  659. package/dist/es/commands/AddFacetToObjectCommand.js.map +0 -1
  660. package/dist/es/commands/ApplySchemaCommand.js +0 -66
  661. package/dist/es/commands/ApplySchemaCommand.js.map +0 -1
  662. package/dist/es/commands/AttachObjectCommand.js +0 -75
  663. package/dist/es/commands/AttachObjectCommand.js.map +0 -1
  664. package/dist/es/commands/AttachPolicyCommand.js +0 -66
  665. package/dist/es/commands/AttachPolicyCommand.js.map +0 -1
  666. package/dist/es/commands/AttachToIndexCommand.js +0 -65
  667. package/dist/es/commands/AttachToIndexCommand.js.map +0 -1
  668. package/dist/es/commands/AttachTypedLinkCommand.js +0 -65
  669. package/dist/es/commands/AttachTypedLinkCommand.js.map +0 -1
  670. package/dist/es/commands/BatchReadCommand.js +0 -65
  671. package/dist/es/commands/BatchReadCommand.js.map +0 -1
  672. package/dist/es/commands/BatchWriteCommand.js +0 -66
  673. package/dist/es/commands/BatchWriteCommand.js.map +0 -1
  674. package/dist/es/commands/CreateDirectoryCommand.js +0 -68
  675. package/dist/es/commands/CreateDirectoryCommand.js.map +0 -1
  676. package/dist/es/commands/CreateFacetCommand.js +0 -66
  677. package/dist/es/commands/CreateFacetCommand.js.map +0 -1
  678. package/dist/es/commands/CreateIndexCommand.js +0 -65
  679. package/dist/es/commands/CreateIndexCommand.js.map +0 -1
  680. package/dist/es/commands/CreateObjectCommand.js +0 -68
  681. package/dist/es/commands/CreateObjectCommand.js.map +0 -1
  682. package/dist/es/commands/CreateSchemaCommand.js +0 -85
  683. package/dist/es/commands/CreateSchemaCommand.js.map +0 -1
  684. package/dist/es/commands/CreateTypedLinkFacetCommand.js +0 -65
  685. package/dist/es/commands/CreateTypedLinkFacetCommand.js.map +0 -1
  686. package/dist/es/commands/DeleteDirectoryCommand.js +0 -67
  687. package/dist/es/commands/DeleteDirectoryCommand.js.map +0 -1
  688. package/dist/es/commands/DeleteFacetCommand.js +0 -67
  689. package/dist/es/commands/DeleteFacetCommand.js.map +0 -1
  690. package/dist/es/commands/DeleteObjectCommand.js +0 -66
  691. package/dist/es/commands/DeleteObjectCommand.js.map +0 -1
  692. package/dist/es/commands/DeleteSchemaCommand.js +0 -65
  693. package/dist/es/commands/DeleteSchemaCommand.js.map +0 -1
  694. package/dist/es/commands/DeleteTypedLinkFacetCommand.js +0 -65
  695. package/dist/es/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
  696. package/dist/es/commands/DetachFromIndexCommand.js +0 -65
  697. package/dist/es/commands/DetachFromIndexCommand.js.map +0 -1
  698. package/dist/es/commands/DetachObjectCommand.js +0 -66
  699. package/dist/es/commands/DetachObjectCommand.js.map +0 -1
  700. package/dist/es/commands/DetachPolicyCommand.js +0 -65
  701. package/dist/es/commands/DetachPolicyCommand.js.map +0 -1
  702. package/dist/es/commands/DetachTypedLinkCommand.js +0 -65
  703. package/dist/es/commands/DetachTypedLinkCommand.js.map +0 -1
  704. package/dist/es/commands/DisableDirectoryCommand.js +0 -66
  705. package/dist/es/commands/DisableDirectoryCommand.js.map +0 -1
  706. package/dist/es/commands/EnableDirectoryCommand.js +0 -66
  707. package/dist/es/commands/EnableDirectoryCommand.js.map +0 -1
  708. package/dist/es/commands/GetAppliedSchemaVersionCommand.js +0 -65
  709. package/dist/es/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
  710. package/dist/es/commands/GetDirectoryCommand.js +0 -65
  711. package/dist/es/commands/GetDirectoryCommand.js.map +0 -1
  712. package/dist/es/commands/GetFacetCommand.js +0 -66
  713. package/dist/es/commands/GetFacetCommand.js.map +0 -1
  714. package/dist/es/commands/GetLinkAttributesCommand.js +0 -65
  715. package/dist/es/commands/GetLinkAttributesCommand.js.map +0 -1
  716. package/dist/es/commands/GetObjectAttributesCommand.js +0 -65
  717. package/dist/es/commands/GetObjectAttributesCommand.js.map +0 -1
  718. package/dist/es/commands/GetObjectInformationCommand.js +0 -65
  719. package/dist/es/commands/GetObjectInformationCommand.js.map +0 -1
  720. package/dist/es/commands/GetSchemaAsJsonCommand.js +0 -65
  721. package/dist/es/commands/GetSchemaAsJsonCommand.js.map +0 -1
  722. package/dist/es/commands/GetTypedLinkFacetInformationCommand.js +0 -65
  723. package/dist/es/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
  724. package/dist/es/commands/ListAppliedSchemaArnsCommand.js +0 -65
  725. package/dist/es/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
  726. package/dist/es/commands/ListAttachedIndicesCommand.js +0 -65
  727. package/dist/es/commands/ListAttachedIndicesCommand.js.map +0 -1
  728. package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js +0 -66
  729. package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
  730. package/dist/es/commands/ListDirectoriesCommand.js +0 -65
  731. package/dist/es/commands/ListDirectoriesCommand.js.map +0 -1
  732. package/dist/es/commands/ListFacetAttributesCommand.js +0 -65
  733. package/dist/es/commands/ListFacetAttributesCommand.js.map +0 -1
  734. package/dist/es/commands/ListFacetNamesCommand.js +0 -65
  735. package/dist/es/commands/ListFacetNamesCommand.js.map +0 -1
  736. package/dist/es/commands/ListIncomingTypedLinksCommand.js +0 -67
  737. package/dist/es/commands/ListIncomingTypedLinksCommand.js.map +0 -1
  738. package/dist/es/commands/ListIndexCommand.js +0 -65
  739. package/dist/es/commands/ListIndexCommand.js.map +0 -1
  740. package/dist/es/commands/ListManagedSchemaArnsCommand.js +0 -65
  741. package/dist/es/commands/ListManagedSchemaArnsCommand.js.map +0 -1
  742. package/dist/es/commands/ListObjectAttributesCommand.js +0 -66
  743. package/dist/es/commands/ListObjectAttributesCommand.js.map +0 -1
  744. package/dist/es/commands/ListObjectChildrenCommand.js +0 -66
  745. package/dist/es/commands/ListObjectChildrenCommand.js.map +0 -1
  746. package/dist/es/commands/ListObjectParentPathsCommand.js +0 -72
  747. package/dist/es/commands/ListObjectParentPathsCommand.js.map +0 -1
  748. package/dist/es/commands/ListObjectParentsCommand.js +0 -66
  749. package/dist/es/commands/ListObjectParentsCommand.js.map +0 -1
  750. package/dist/es/commands/ListObjectPoliciesCommand.js +0 -65
  751. package/dist/es/commands/ListObjectPoliciesCommand.js.map +0 -1
  752. package/dist/es/commands/ListOutgoingTypedLinksCommand.js +0 -67
  753. package/dist/es/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
  754. package/dist/es/commands/ListPolicyAttachmentsCommand.js +0 -65
  755. package/dist/es/commands/ListPolicyAttachmentsCommand.js.map +0 -1
  756. package/dist/es/commands/ListPublishedSchemaArnsCommand.js +0 -65
  757. package/dist/es/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
  758. package/dist/es/commands/ListTagsForResourceCommand.js +0 -67
  759. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  760. package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js +0 -65
  761. package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
  762. package/dist/es/commands/ListTypedLinkFacetNamesCommand.js +0 -66
  763. package/dist/es/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
  764. package/dist/es/commands/LookupPolicyCommand.js +0 -70
  765. package/dist/es/commands/LookupPolicyCommand.js.map +0 -1
  766. package/dist/es/commands/PublishSchemaCommand.js +0 -65
  767. package/dist/es/commands/PublishSchemaCommand.js.map +0 -1
  768. package/dist/es/commands/PutSchemaFromJsonCommand.js +0 -65
  769. package/dist/es/commands/PutSchemaFromJsonCommand.js.map +0 -1
  770. package/dist/es/commands/RemoveFacetFromObjectCommand.js +0 -65
  771. package/dist/es/commands/RemoveFacetFromObjectCommand.js.map +0 -1
  772. package/dist/es/commands/TagResourceCommand.js +0 -65
  773. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  774. package/dist/es/commands/UntagResourceCommand.js +0 -65
  775. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  776. package/dist/es/commands/UpdateFacetCommand.js +0 -76
  777. package/dist/es/commands/UpdateFacetCommand.js.map +0 -1
  778. package/dist/es/commands/UpdateLinkAttributesCommand.js +0 -65
  779. package/dist/es/commands/UpdateLinkAttributesCommand.js.map +0 -1
  780. package/dist/es/commands/UpdateObjectAttributesCommand.js +0 -65
  781. package/dist/es/commands/UpdateObjectAttributesCommand.js.map +0 -1
  782. package/dist/es/commands/UpdateSchemaCommand.js +0 -66
  783. package/dist/es/commands/UpdateSchemaCommand.js.map +0 -1
  784. package/dist/es/commands/UpdateTypedLinkFacetCommand.js +0 -65
  785. package/dist/es/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
  786. package/dist/es/commands/UpgradeAppliedSchemaCommand.js +0 -65
  787. package/dist/es/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
  788. package/dist/es/commands/UpgradePublishedSchemaCommand.js +0 -65
  789. package/dist/es/commands/UpgradePublishedSchemaCommand.js.map +0 -1
  790. package/dist/es/endpoints.js +0 -53
  791. package/dist/es/endpoints.js.map +0 -1
  792. package/dist/es/index.js +0 -90
  793. package/dist/es/index.js.map +0 -1
  794. package/dist/es/models/index.js +0 -2
  795. package/dist/es/models/index.js.map +0 -1
  796. package/dist/es/models/models_0.js +0 -2036
  797. package/dist/es/models/models_0.js.map +0 -1
  798. package/dist/es/package.json +0 -91
  799. package/dist/es/pagination/Interfaces.js +0 -2
  800. package/dist/es/pagination/Interfaces.js.map +0 -1
  801. package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js +0 -87
  802. package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
  803. package/dist/es/pagination/ListAttachedIndicesPaginator.js +0 -87
  804. package/dist/es/pagination/ListAttachedIndicesPaginator.js.map +0 -1
  805. package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -87
  806. package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
  807. package/dist/es/pagination/ListDirectoriesPaginator.js +0 -87
  808. package/dist/es/pagination/ListDirectoriesPaginator.js.map +0 -1
  809. package/dist/es/pagination/ListFacetAttributesPaginator.js +0 -87
  810. package/dist/es/pagination/ListFacetAttributesPaginator.js.map +0 -1
  811. package/dist/es/pagination/ListFacetNamesPaginator.js +0 -87
  812. package/dist/es/pagination/ListFacetNamesPaginator.js.map +0 -1
  813. package/dist/es/pagination/ListIndexPaginator.js +0 -87
  814. package/dist/es/pagination/ListIndexPaginator.js.map +0 -1
  815. package/dist/es/pagination/ListManagedSchemaArnsPaginator.js +0 -87
  816. package/dist/es/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
  817. package/dist/es/pagination/ListObjectAttributesPaginator.js +0 -87
  818. package/dist/es/pagination/ListObjectAttributesPaginator.js.map +0 -1
  819. package/dist/es/pagination/ListObjectChildrenPaginator.js +0 -87
  820. package/dist/es/pagination/ListObjectChildrenPaginator.js.map +0 -1
  821. package/dist/es/pagination/ListObjectParentPathsPaginator.js +0 -87
  822. package/dist/es/pagination/ListObjectParentPathsPaginator.js.map +0 -1
  823. package/dist/es/pagination/ListObjectParentsPaginator.js +0 -87
  824. package/dist/es/pagination/ListObjectParentsPaginator.js.map +0 -1
  825. package/dist/es/pagination/ListObjectPoliciesPaginator.js +0 -87
  826. package/dist/es/pagination/ListObjectPoliciesPaginator.js.map +0 -1
  827. package/dist/es/pagination/ListPolicyAttachmentsPaginator.js +0 -87
  828. package/dist/es/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
  829. package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js +0 -87
  830. package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
  831. package/dist/es/pagination/ListTagsForResourcePaginator.js +0 -87
  832. package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
  833. package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -87
  834. package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
  835. package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js +0 -87
  836. package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
  837. package/dist/es/pagination/LookupPolicyPaginator.js +0 -87
  838. package/dist/es/pagination/LookupPolicyPaginator.js.map +0 -1
  839. package/dist/es/protocols/Aws_restJson1.js +0 -11989
  840. package/dist/es/protocols/Aws_restJson1.js.map +0 -1
  841. package/dist/es/runtimeConfig.browser.js +0 -20
  842. package/dist/es/runtimeConfig.browser.js.map +0 -1
  843. package/dist/es/runtimeConfig.js +0 -25
  844. package/dist/es/runtimeConfig.js.map +0 -1
  845. package/dist/es/runtimeConfig.native.js +0 -12
  846. package/dist/es/runtimeConfig.native.js.map +0 -1
  847. package/dist/es/runtimeConfig.shared.js +0 -17
  848. package/dist/es/runtimeConfig.shared.js.map +0 -1
  849. package/dist/types/CloudDirectory.d.ts +0 -558
  850. package/dist/types/CloudDirectoryClient.d.ts +0 -203
  851. package/dist/types/commands/AddFacetToObjectCommand.d.ts +0 -35
  852. package/dist/types/commands/ApplySchemaCommand.d.ts +0 -36
  853. package/dist/types/commands/AttachObjectCommand.d.ts +0 -45
  854. package/dist/types/commands/AttachPolicyCommand.d.ts +0 -36
  855. package/dist/types/commands/AttachToIndexCommand.d.ts +0 -35
  856. package/dist/types/commands/AttachTypedLinkCommand.d.ts +0 -35
  857. package/dist/types/commands/BatchReadCommand.d.ts +0 -35
  858. package/dist/types/commands/BatchWriteCommand.d.ts +0 -36
  859. package/dist/types/commands/CreateDirectoryCommand.d.ts +0 -38
  860. package/dist/types/commands/CreateFacetCommand.d.ts +0 -36
  861. package/dist/types/commands/CreateIndexCommand.d.ts +0 -35
  862. package/dist/types/commands/CreateObjectCommand.d.ts +0 -38
  863. package/dist/types/commands/CreateSchemaCommand.d.ts +0 -55
  864. package/dist/types/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
  865. package/dist/types/commands/DeleteDirectoryCommand.d.ts +0 -37
  866. package/dist/types/commands/DeleteFacetCommand.d.ts +0 -37
  867. package/dist/types/commands/DeleteObjectCommand.d.ts +0 -36
  868. package/dist/types/commands/DeleteSchemaCommand.d.ts +0 -35
  869. package/dist/types/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
  870. package/dist/types/commands/DetachFromIndexCommand.d.ts +0 -35
  871. package/dist/types/commands/DetachObjectCommand.d.ts +0 -36
  872. package/dist/types/commands/DetachPolicyCommand.d.ts +0 -35
  873. package/dist/types/commands/DetachTypedLinkCommand.d.ts +0 -35
  874. package/dist/types/commands/DisableDirectoryCommand.d.ts +0 -36
  875. package/dist/types/commands/EnableDirectoryCommand.d.ts +0 -36
  876. package/dist/types/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
  877. package/dist/types/commands/GetDirectoryCommand.d.ts +0 -35
  878. package/dist/types/commands/GetFacetCommand.d.ts +0 -36
  879. package/dist/types/commands/GetLinkAttributesCommand.d.ts +0 -35
  880. package/dist/types/commands/GetObjectAttributesCommand.d.ts +0 -35
  881. package/dist/types/commands/GetObjectInformationCommand.d.ts +0 -35
  882. package/dist/types/commands/GetSchemaAsJsonCommand.d.ts +0 -35
  883. package/dist/types/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
  884. package/dist/types/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
  885. package/dist/types/commands/ListAttachedIndicesCommand.d.ts +0 -35
  886. package/dist/types/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
  887. package/dist/types/commands/ListDirectoriesCommand.d.ts +0 -35
  888. package/dist/types/commands/ListFacetAttributesCommand.d.ts +0 -35
  889. package/dist/types/commands/ListFacetNamesCommand.d.ts +0 -35
  890. package/dist/types/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
  891. package/dist/types/commands/ListIndexCommand.d.ts +0 -35
  892. package/dist/types/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
  893. package/dist/types/commands/ListObjectAttributesCommand.d.ts +0 -36
  894. package/dist/types/commands/ListObjectChildrenCommand.d.ts +0 -36
  895. package/dist/types/commands/ListObjectParentPathsCommand.d.ts +0 -42
  896. package/dist/types/commands/ListObjectParentsCommand.d.ts +0 -36
  897. package/dist/types/commands/ListObjectPoliciesCommand.d.ts +0 -35
  898. package/dist/types/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
  899. package/dist/types/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
  900. package/dist/types/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
  901. package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -37
  902. package/dist/types/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
  903. package/dist/types/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
  904. package/dist/types/commands/LookupPolicyCommand.d.ts +0 -40
  905. package/dist/types/commands/PublishSchemaCommand.d.ts +0 -35
  906. package/dist/types/commands/PutSchemaFromJsonCommand.d.ts +0 -35
  907. package/dist/types/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
  908. package/dist/types/commands/TagResourceCommand.d.ts +0 -35
  909. package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
  910. package/dist/types/commands/UpdateFacetCommand.d.ts +0 -46
  911. package/dist/types/commands/UpdateLinkAttributesCommand.d.ts +0 -35
  912. package/dist/types/commands/UpdateObjectAttributesCommand.d.ts +0 -35
  913. package/dist/types/commands/UpdateSchemaCommand.d.ts +0 -36
  914. package/dist/types/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
  915. package/dist/types/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
  916. package/dist/types/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
  917. package/dist/types/pagination/Interfaces.d.ts +0 -6
  918. package/dist/types/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
  919. package/dist/types/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
  920. package/dist/types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
  921. package/dist/types/pagination/ListDirectoriesPaginator.d.ts +0 -4
  922. package/dist/types/pagination/ListFacetAttributesPaginator.d.ts +0 -4
  923. package/dist/types/pagination/ListFacetNamesPaginator.d.ts +0 -4
  924. package/dist/types/pagination/ListIndexPaginator.d.ts +0 -4
  925. package/dist/types/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
  926. package/dist/types/pagination/ListObjectAttributesPaginator.d.ts +0 -4
  927. package/dist/types/pagination/ListObjectChildrenPaginator.d.ts +0 -4
  928. package/dist/types/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
  929. package/dist/types/pagination/ListObjectParentsPaginator.d.ts +0 -4
  930. package/dist/types/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
  931. package/dist/types/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
  932. package/dist/types/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
  933. package/dist/types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
  934. package/dist/types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
  935. package/dist/types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
  936. package/dist/types/pagination/LookupPolicyPaginator.d.ts +0 -4
  937. package/dist/types/protocols/Aws_restJson1.d.ts +0 -200
  938. package/dist/types/runtimeConfig.browser.d.ts +0 -36
  939. package/dist/types/runtimeConfig.d.ts +0 -36
  940. package/dist/types/runtimeConfig.native.d.ts +0 -35
  941. package/dist/types/ts3.4/CloudDirectory.d.ts +0 -558
  942. package/dist/types/ts3.4/CloudDirectoryClient.d.ts +0 -203
  943. package/dist/types/ts3.4/commands/AddFacetToObjectCommand.d.ts +0 -35
  944. package/dist/types/ts3.4/commands/ApplySchemaCommand.d.ts +0 -36
  945. package/dist/types/ts3.4/commands/AttachObjectCommand.d.ts +0 -45
  946. package/dist/types/ts3.4/commands/AttachPolicyCommand.d.ts +0 -36
  947. package/dist/types/ts3.4/commands/AttachToIndexCommand.d.ts +0 -35
  948. package/dist/types/ts3.4/commands/AttachTypedLinkCommand.d.ts +0 -35
  949. package/dist/types/ts3.4/commands/BatchReadCommand.d.ts +0 -35
  950. package/dist/types/ts3.4/commands/BatchWriteCommand.d.ts +0 -36
  951. package/dist/types/ts3.4/commands/CreateDirectoryCommand.d.ts +0 -38
  952. package/dist/types/ts3.4/commands/CreateFacetCommand.d.ts +0 -36
  953. package/dist/types/ts3.4/commands/CreateIndexCommand.d.ts +0 -35
  954. package/dist/types/ts3.4/commands/CreateObjectCommand.d.ts +0 -38
  955. package/dist/types/ts3.4/commands/CreateSchemaCommand.d.ts +0 -55
  956. package/dist/types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
  957. package/dist/types/ts3.4/commands/DeleteDirectoryCommand.d.ts +0 -37
  958. package/dist/types/ts3.4/commands/DeleteFacetCommand.d.ts +0 -37
  959. package/dist/types/ts3.4/commands/DeleteObjectCommand.d.ts +0 -36
  960. package/dist/types/ts3.4/commands/DeleteSchemaCommand.d.ts +0 -35
  961. package/dist/types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
  962. package/dist/types/ts3.4/commands/DetachFromIndexCommand.d.ts +0 -35
  963. package/dist/types/ts3.4/commands/DetachObjectCommand.d.ts +0 -36
  964. package/dist/types/ts3.4/commands/DetachPolicyCommand.d.ts +0 -35
  965. package/dist/types/ts3.4/commands/DetachTypedLinkCommand.d.ts +0 -35
  966. package/dist/types/ts3.4/commands/DisableDirectoryCommand.d.ts +0 -36
  967. package/dist/types/ts3.4/commands/EnableDirectoryCommand.d.ts +0 -36
  968. package/dist/types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
  969. package/dist/types/ts3.4/commands/GetDirectoryCommand.d.ts +0 -35
  970. package/dist/types/ts3.4/commands/GetFacetCommand.d.ts +0 -36
  971. package/dist/types/ts3.4/commands/GetLinkAttributesCommand.d.ts +0 -35
  972. package/dist/types/ts3.4/commands/GetObjectAttributesCommand.d.ts +0 -35
  973. package/dist/types/ts3.4/commands/GetObjectInformationCommand.d.ts +0 -35
  974. package/dist/types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +0 -35
  975. package/dist/types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
  976. package/dist/types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
  977. package/dist/types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +0 -35
  978. package/dist/types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
  979. package/dist/types/ts3.4/commands/ListDirectoriesCommand.d.ts +0 -35
  980. package/dist/types/ts3.4/commands/ListFacetAttributesCommand.d.ts +0 -35
  981. package/dist/types/ts3.4/commands/ListFacetNamesCommand.d.ts +0 -35
  982. package/dist/types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
  983. package/dist/types/ts3.4/commands/ListIndexCommand.d.ts +0 -35
  984. package/dist/types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
  985. package/dist/types/ts3.4/commands/ListObjectAttributesCommand.d.ts +0 -36
  986. package/dist/types/ts3.4/commands/ListObjectChildrenCommand.d.ts +0 -36
  987. package/dist/types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +0 -42
  988. package/dist/types/ts3.4/commands/ListObjectParentsCommand.d.ts +0 -36
  989. package/dist/types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +0 -35
  990. package/dist/types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
  991. package/dist/types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
  992. package/dist/types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
  993. package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -37
  994. package/dist/types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
  995. package/dist/types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
  996. package/dist/types/ts3.4/commands/LookupPolicyCommand.d.ts +0 -40
  997. package/dist/types/ts3.4/commands/PublishSchemaCommand.d.ts +0 -35
  998. package/dist/types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +0 -35
  999. package/dist/types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
  1000. package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
  1001. package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
  1002. package/dist/types/ts3.4/commands/UpdateFacetCommand.d.ts +0 -46
  1003. package/dist/types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +0 -35
  1004. package/dist/types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +0 -35
  1005. package/dist/types/ts3.4/commands/UpdateSchemaCommand.d.ts +0 -36
  1006. package/dist/types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
  1007. package/dist/types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
  1008. package/dist/types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
  1009. package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
  1010. package/dist/types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
  1011. package/dist/types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
  1012. package/dist/types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
  1013. package/dist/types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +0 -4
  1014. package/dist/types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +0 -4
  1015. package/dist/types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +0 -4
  1016. package/dist/types/ts3.4/pagination/ListIndexPaginator.d.ts +0 -4
  1017. package/dist/types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
  1018. package/dist/types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +0 -4
  1019. package/dist/types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +0 -4
  1020. package/dist/types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
  1021. package/dist/types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +0 -4
  1022. package/dist/types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
  1023. package/dist/types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
  1024. package/dist/types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
  1025. package/dist/types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
  1026. package/dist/types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
  1027. package/dist/types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
  1028. package/dist/types/ts3.4/pagination/LookupPolicyPaginator.d.ts +0 -4
  1029. package/dist/types/ts3.4/protocols/Aws_restJson1.d.ts +0 -200
  1030. package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
  1031. package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
  1032. package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
  1033. package/endpoints.ts +0 -57
  1034. package/jest.config.js +0 -4
  1035. package/models/models_0.ts +0 -6731
  1036. package/pagination/Interfaces.ts +0 -7
  1037. package/pagination/ListAppliedSchemaArnsPaginator.ts +0 -58
  1038. package/pagination/ListAttachedIndicesPaginator.ts +0 -58
  1039. package/pagination/ListDevelopmentSchemaArnsPaginator.ts +0 -58
  1040. package/pagination/ListDirectoriesPaginator.ts +0 -58
  1041. package/pagination/ListFacetAttributesPaginator.ts +0 -58
  1042. package/pagination/ListFacetNamesPaginator.ts +0 -58
  1043. package/pagination/ListIndexPaginator.ts +0 -54
  1044. package/pagination/ListManagedSchemaArnsPaginator.ts +0 -58
  1045. package/pagination/ListObjectAttributesPaginator.ts +0 -58
  1046. package/pagination/ListObjectChildrenPaginator.ts +0 -58
  1047. package/pagination/ListObjectParentPathsPaginator.ts +0 -58
  1048. package/pagination/ListObjectParentsPaginator.ts +0 -58
  1049. package/pagination/ListObjectPoliciesPaginator.ts +0 -58
  1050. package/pagination/ListPolicyAttachmentsPaginator.ts +0 -58
  1051. package/pagination/ListPublishedSchemaArnsPaginator.ts +0 -58
  1052. package/pagination/ListTagsForResourcePaginator.ts +0 -58
  1053. package/pagination/ListTypedLinkFacetAttributesPaginator.ts +0 -58
  1054. package/pagination/ListTypedLinkFacetNamesPaginator.ts +0 -58
  1055. package/pagination/LookupPolicyPaginator.ts +0 -58
  1056. package/protocols/Aws_restJson1.ts +0 -12886
  1057. package/runtimeConfig.browser.ts +0 -40
  1058. package/runtimeConfig.native.ts +0 -16
  1059. package/runtimeConfig.shared.ts +0 -16
  1060. package/runtimeConfig.ts +0 -45
  1061. package/tsconfig.es.json +0 -12
  1062. package/tsconfig.json +0 -32
package/CloudDirectory.ts DELETED
@@ -1,2405 +0,0 @@
1
- import { CloudDirectoryClient } from "./CloudDirectoryClient";
2
- import {
3
- AddFacetToObjectCommand,
4
- AddFacetToObjectCommandInput,
5
- AddFacetToObjectCommandOutput,
6
- } from "./commands/AddFacetToObjectCommand";
7
- import { ApplySchemaCommand, ApplySchemaCommandInput, ApplySchemaCommandOutput } from "./commands/ApplySchemaCommand";
8
- import {
9
- AttachObjectCommand,
10
- AttachObjectCommandInput,
11
- AttachObjectCommandOutput,
12
- } from "./commands/AttachObjectCommand";
13
- import {
14
- AttachPolicyCommand,
15
- AttachPolicyCommandInput,
16
- AttachPolicyCommandOutput,
17
- } from "./commands/AttachPolicyCommand";
18
- import {
19
- AttachToIndexCommand,
20
- AttachToIndexCommandInput,
21
- AttachToIndexCommandOutput,
22
- } from "./commands/AttachToIndexCommand";
23
- import {
24
- AttachTypedLinkCommand,
25
- AttachTypedLinkCommandInput,
26
- AttachTypedLinkCommandOutput,
27
- } from "./commands/AttachTypedLinkCommand";
28
- import { BatchReadCommand, BatchReadCommandInput, BatchReadCommandOutput } from "./commands/BatchReadCommand";
29
- import { BatchWriteCommand, BatchWriteCommandInput, BatchWriteCommandOutput } from "./commands/BatchWriteCommand";
30
- import {
31
- CreateDirectoryCommand,
32
- CreateDirectoryCommandInput,
33
- CreateDirectoryCommandOutput,
34
- } from "./commands/CreateDirectoryCommand";
35
- import { CreateFacetCommand, CreateFacetCommandInput, CreateFacetCommandOutput } from "./commands/CreateFacetCommand";
36
- import { CreateIndexCommand, CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
37
- import {
38
- CreateObjectCommand,
39
- CreateObjectCommandInput,
40
- CreateObjectCommandOutput,
41
- } from "./commands/CreateObjectCommand";
42
- import {
43
- CreateSchemaCommand,
44
- CreateSchemaCommandInput,
45
- CreateSchemaCommandOutput,
46
- } from "./commands/CreateSchemaCommand";
47
- import {
48
- CreateTypedLinkFacetCommand,
49
- CreateTypedLinkFacetCommandInput,
50
- CreateTypedLinkFacetCommandOutput,
51
- } from "./commands/CreateTypedLinkFacetCommand";
52
- import {
53
- DeleteDirectoryCommand,
54
- DeleteDirectoryCommandInput,
55
- DeleteDirectoryCommandOutput,
56
- } from "./commands/DeleteDirectoryCommand";
57
- import { DeleteFacetCommand, DeleteFacetCommandInput, DeleteFacetCommandOutput } from "./commands/DeleteFacetCommand";
58
- import {
59
- DeleteObjectCommand,
60
- DeleteObjectCommandInput,
61
- DeleteObjectCommandOutput,
62
- } from "./commands/DeleteObjectCommand";
63
- import {
64
- DeleteSchemaCommand,
65
- DeleteSchemaCommandInput,
66
- DeleteSchemaCommandOutput,
67
- } from "./commands/DeleteSchemaCommand";
68
- import {
69
- DeleteTypedLinkFacetCommand,
70
- DeleteTypedLinkFacetCommandInput,
71
- DeleteTypedLinkFacetCommandOutput,
72
- } from "./commands/DeleteTypedLinkFacetCommand";
73
- import {
74
- DetachFromIndexCommand,
75
- DetachFromIndexCommandInput,
76
- DetachFromIndexCommandOutput,
77
- } from "./commands/DetachFromIndexCommand";
78
- import {
79
- DetachObjectCommand,
80
- DetachObjectCommandInput,
81
- DetachObjectCommandOutput,
82
- } from "./commands/DetachObjectCommand";
83
- import {
84
- DetachPolicyCommand,
85
- DetachPolicyCommandInput,
86
- DetachPolicyCommandOutput,
87
- } from "./commands/DetachPolicyCommand";
88
- import {
89
- DetachTypedLinkCommand,
90
- DetachTypedLinkCommandInput,
91
- DetachTypedLinkCommandOutput,
92
- } from "./commands/DetachTypedLinkCommand";
93
- import {
94
- DisableDirectoryCommand,
95
- DisableDirectoryCommandInput,
96
- DisableDirectoryCommandOutput,
97
- } from "./commands/DisableDirectoryCommand";
98
- import {
99
- EnableDirectoryCommand,
100
- EnableDirectoryCommandInput,
101
- EnableDirectoryCommandOutput,
102
- } from "./commands/EnableDirectoryCommand";
103
- import {
104
- GetAppliedSchemaVersionCommand,
105
- GetAppliedSchemaVersionCommandInput,
106
- GetAppliedSchemaVersionCommandOutput,
107
- } from "./commands/GetAppliedSchemaVersionCommand";
108
- import {
109
- GetDirectoryCommand,
110
- GetDirectoryCommandInput,
111
- GetDirectoryCommandOutput,
112
- } from "./commands/GetDirectoryCommand";
113
- import { GetFacetCommand, GetFacetCommandInput, GetFacetCommandOutput } from "./commands/GetFacetCommand";
114
- import {
115
- GetLinkAttributesCommand,
116
- GetLinkAttributesCommandInput,
117
- GetLinkAttributesCommandOutput,
118
- } from "./commands/GetLinkAttributesCommand";
119
- import {
120
- GetObjectAttributesCommand,
121
- GetObjectAttributesCommandInput,
122
- GetObjectAttributesCommandOutput,
123
- } from "./commands/GetObjectAttributesCommand";
124
- import {
125
- GetObjectInformationCommand,
126
- GetObjectInformationCommandInput,
127
- GetObjectInformationCommandOutput,
128
- } from "./commands/GetObjectInformationCommand";
129
- import {
130
- GetSchemaAsJsonCommand,
131
- GetSchemaAsJsonCommandInput,
132
- GetSchemaAsJsonCommandOutput,
133
- } from "./commands/GetSchemaAsJsonCommand";
134
- import {
135
- GetTypedLinkFacetInformationCommand,
136
- GetTypedLinkFacetInformationCommandInput,
137
- GetTypedLinkFacetInformationCommandOutput,
138
- } from "./commands/GetTypedLinkFacetInformationCommand";
139
- import {
140
- ListAppliedSchemaArnsCommand,
141
- ListAppliedSchemaArnsCommandInput,
142
- ListAppliedSchemaArnsCommandOutput,
143
- } from "./commands/ListAppliedSchemaArnsCommand";
144
- import {
145
- ListAttachedIndicesCommand,
146
- ListAttachedIndicesCommandInput,
147
- ListAttachedIndicesCommandOutput,
148
- } from "./commands/ListAttachedIndicesCommand";
149
- import {
150
- ListDevelopmentSchemaArnsCommand,
151
- ListDevelopmentSchemaArnsCommandInput,
152
- ListDevelopmentSchemaArnsCommandOutput,
153
- } from "./commands/ListDevelopmentSchemaArnsCommand";
154
- import {
155
- ListDirectoriesCommand,
156
- ListDirectoriesCommandInput,
157
- ListDirectoriesCommandOutput,
158
- } from "./commands/ListDirectoriesCommand";
159
- import {
160
- ListFacetAttributesCommand,
161
- ListFacetAttributesCommandInput,
162
- ListFacetAttributesCommandOutput,
163
- } from "./commands/ListFacetAttributesCommand";
164
- import {
165
- ListFacetNamesCommand,
166
- ListFacetNamesCommandInput,
167
- ListFacetNamesCommandOutput,
168
- } from "./commands/ListFacetNamesCommand";
169
- import {
170
- ListIncomingTypedLinksCommand,
171
- ListIncomingTypedLinksCommandInput,
172
- ListIncomingTypedLinksCommandOutput,
173
- } from "./commands/ListIncomingTypedLinksCommand";
174
- import { ListIndexCommand, ListIndexCommandInput, ListIndexCommandOutput } from "./commands/ListIndexCommand";
175
- import {
176
- ListManagedSchemaArnsCommand,
177
- ListManagedSchemaArnsCommandInput,
178
- ListManagedSchemaArnsCommandOutput,
179
- } from "./commands/ListManagedSchemaArnsCommand";
180
- import {
181
- ListObjectAttributesCommand,
182
- ListObjectAttributesCommandInput,
183
- ListObjectAttributesCommandOutput,
184
- } from "./commands/ListObjectAttributesCommand";
185
- import {
186
- ListObjectChildrenCommand,
187
- ListObjectChildrenCommandInput,
188
- ListObjectChildrenCommandOutput,
189
- } from "./commands/ListObjectChildrenCommand";
190
- import {
191
- ListObjectParentPathsCommand,
192
- ListObjectParentPathsCommandInput,
193
- ListObjectParentPathsCommandOutput,
194
- } from "./commands/ListObjectParentPathsCommand";
195
- import {
196
- ListObjectParentsCommand,
197
- ListObjectParentsCommandInput,
198
- ListObjectParentsCommandOutput,
199
- } from "./commands/ListObjectParentsCommand";
200
- import {
201
- ListObjectPoliciesCommand,
202
- ListObjectPoliciesCommandInput,
203
- ListObjectPoliciesCommandOutput,
204
- } from "./commands/ListObjectPoliciesCommand";
205
- import {
206
- ListOutgoingTypedLinksCommand,
207
- ListOutgoingTypedLinksCommandInput,
208
- ListOutgoingTypedLinksCommandOutput,
209
- } from "./commands/ListOutgoingTypedLinksCommand";
210
- import {
211
- ListPolicyAttachmentsCommand,
212
- ListPolicyAttachmentsCommandInput,
213
- ListPolicyAttachmentsCommandOutput,
214
- } from "./commands/ListPolicyAttachmentsCommand";
215
- import {
216
- ListPublishedSchemaArnsCommand,
217
- ListPublishedSchemaArnsCommandInput,
218
- ListPublishedSchemaArnsCommandOutput,
219
- } from "./commands/ListPublishedSchemaArnsCommand";
220
- import {
221
- ListTagsForResourceCommand,
222
- ListTagsForResourceCommandInput,
223
- ListTagsForResourceCommandOutput,
224
- } from "./commands/ListTagsForResourceCommand";
225
- import {
226
- ListTypedLinkFacetAttributesCommand,
227
- ListTypedLinkFacetAttributesCommandInput,
228
- ListTypedLinkFacetAttributesCommandOutput,
229
- } from "./commands/ListTypedLinkFacetAttributesCommand";
230
- import {
231
- ListTypedLinkFacetNamesCommand,
232
- ListTypedLinkFacetNamesCommandInput,
233
- ListTypedLinkFacetNamesCommandOutput,
234
- } from "./commands/ListTypedLinkFacetNamesCommand";
235
- import {
236
- LookupPolicyCommand,
237
- LookupPolicyCommandInput,
238
- LookupPolicyCommandOutput,
239
- } from "./commands/LookupPolicyCommand";
240
- import {
241
- PublishSchemaCommand,
242
- PublishSchemaCommandInput,
243
- PublishSchemaCommandOutput,
244
- } from "./commands/PublishSchemaCommand";
245
- import {
246
- PutSchemaFromJsonCommand,
247
- PutSchemaFromJsonCommandInput,
248
- PutSchemaFromJsonCommandOutput,
249
- } from "./commands/PutSchemaFromJsonCommand";
250
- import {
251
- RemoveFacetFromObjectCommand,
252
- RemoveFacetFromObjectCommandInput,
253
- RemoveFacetFromObjectCommandOutput,
254
- } from "./commands/RemoveFacetFromObjectCommand";
255
- import { TagResourceCommand, TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
256
- import {
257
- UntagResourceCommand,
258
- UntagResourceCommandInput,
259
- UntagResourceCommandOutput,
260
- } from "./commands/UntagResourceCommand";
261
- import { UpdateFacetCommand, UpdateFacetCommandInput, UpdateFacetCommandOutput } from "./commands/UpdateFacetCommand";
262
- import {
263
- UpdateLinkAttributesCommand,
264
- UpdateLinkAttributesCommandInput,
265
- UpdateLinkAttributesCommandOutput,
266
- } from "./commands/UpdateLinkAttributesCommand";
267
- import {
268
- UpdateObjectAttributesCommand,
269
- UpdateObjectAttributesCommandInput,
270
- UpdateObjectAttributesCommandOutput,
271
- } from "./commands/UpdateObjectAttributesCommand";
272
- import {
273
- UpdateSchemaCommand,
274
- UpdateSchemaCommandInput,
275
- UpdateSchemaCommandOutput,
276
- } from "./commands/UpdateSchemaCommand";
277
- import {
278
- UpdateTypedLinkFacetCommand,
279
- UpdateTypedLinkFacetCommandInput,
280
- UpdateTypedLinkFacetCommandOutput,
281
- } from "./commands/UpdateTypedLinkFacetCommand";
282
- import {
283
- UpgradeAppliedSchemaCommand,
284
- UpgradeAppliedSchemaCommandInput,
285
- UpgradeAppliedSchemaCommandOutput,
286
- } from "./commands/UpgradeAppliedSchemaCommand";
287
- import {
288
- UpgradePublishedSchemaCommand,
289
- UpgradePublishedSchemaCommandInput,
290
- UpgradePublishedSchemaCommandOutput,
291
- } from "./commands/UpgradePublishedSchemaCommand";
292
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
293
-
294
- /**
295
- * <fullname>Amazon Cloud Directory</fullname>
296
- * <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the
297
- * development and management of cloud-scale web, mobile, and IoT applications. This guide
298
- * describes the Cloud Directory operations that you can call programmatically and includes
299
- * detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory
300
- * 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>
301
- */
302
- export class CloudDirectory extends CloudDirectoryClient {
303
- /**
304
- * <p>Adds a new <a>Facet</a> to an object. An object can have more than one facet applied on it.</p>
305
- */
306
- public addFacetToObject(
307
- args: AddFacetToObjectCommandInput,
308
- options?: __HttpHandlerOptions
309
- ): Promise<AddFacetToObjectCommandOutput>;
310
- public addFacetToObject(
311
- args: AddFacetToObjectCommandInput,
312
- cb: (err: any, data?: AddFacetToObjectCommandOutput) => void
313
- ): void;
314
- public addFacetToObject(
315
- args: AddFacetToObjectCommandInput,
316
- options: __HttpHandlerOptions,
317
- cb: (err: any, data?: AddFacetToObjectCommandOutput) => void
318
- ): void;
319
- public addFacetToObject(
320
- args: AddFacetToObjectCommandInput,
321
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: AddFacetToObjectCommandOutput) => void),
322
- cb?: (err: any, data?: AddFacetToObjectCommandOutput) => void
323
- ): Promise<AddFacetToObjectCommandOutput> | void {
324
- const command = new AddFacetToObjectCommand(args);
325
- if (typeof optionsOrCb === "function") {
326
- this.send(command, optionsOrCb);
327
- } else if (typeof cb === "function") {
328
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
329
- this.send(command, optionsOrCb || {}, cb);
330
- } else {
331
- return this.send(command, optionsOrCb);
332
- }
333
- }
334
-
335
- /**
336
- * <p>Copies the input published schema, at the specified version, into the <a>Directory</a> with the same
337
- * name and version as that of the published schema.</p>
338
- */
339
- public applySchema(args: ApplySchemaCommandInput, options?: __HttpHandlerOptions): Promise<ApplySchemaCommandOutput>;
340
- public applySchema(args: ApplySchemaCommandInput, cb: (err: any, data?: ApplySchemaCommandOutput) => void): void;
341
- public applySchema(
342
- args: ApplySchemaCommandInput,
343
- options: __HttpHandlerOptions,
344
- cb: (err: any, data?: ApplySchemaCommandOutput) => void
345
- ): void;
346
- public applySchema(
347
- args: ApplySchemaCommandInput,
348
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ApplySchemaCommandOutput) => void),
349
- cb?: (err: any, data?: ApplySchemaCommandOutput) => void
350
- ): Promise<ApplySchemaCommandOutput> | void {
351
- const command = new ApplySchemaCommand(args);
352
- if (typeof optionsOrCb === "function") {
353
- this.send(command, optionsOrCb);
354
- } else if (typeof cb === "function") {
355
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
356
- this.send(command, optionsOrCb || {}, cb);
357
- } else {
358
- return this.send(command, optionsOrCb);
359
- }
360
- }
361
-
362
- /**
363
- * <p>Attaches an existing object to another object. An object can be accessed in two
364
- * ways:</p>
365
- * <ol>
366
- * <li>
367
- * <p>Using the path</p>
368
- * </li>
369
- * <li>
370
- * <p>Using <code>ObjectIdentifier</code>
371
- * </p>
372
- * </li>
373
- * </ol>
374
- */
375
- public attachObject(
376
- args: AttachObjectCommandInput,
377
- options?: __HttpHandlerOptions
378
- ): Promise<AttachObjectCommandOutput>;
379
- public attachObject(args: AttachObjectCommandInput, cb: (err: any, data?: AttachObjectCommandOutput) => void): void;
380
- public attachObject(
381
- args: AttachObjectCommandInput,
382
- options: __HttpHandlerOptions,
383
- cb: (err: any, data?: AttachObjectCommandOutput) => void
384
- ): void;
385
- public attachObject(
386
- args: AttachObjectCommandInput,
387
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: AttachObjectCommandOutput) => void),
388
- cb?: (err: any, data?: AttachObjectCommandOutput) => void
389
- ): Promise<AttachObjectCommandOutput> | void {
390
- const command = new AttachObjectCommand(args);
391
- if (typeof optionsOrCb === "function") {
392
- this.send(command, optionsOrCb);
393
- } else if (typeof cb === "function") {
394
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
395
- this.send(command, optionsOrCb || {}, cb);
396
- } else {
397
- return this.send(command, optionsOrCb);
398
- }
399
- }
400
-
401
- /**
402
- * <p>Attaches a policy object to a regular object. An object can have a limited number of attached
403
- * policies.</p>
404
- */
405
- public attachPolicy(
406
- args: AttachPolicyCommandInput,
407
- options?: __HttpHandlerOptions
408
- ): Promise<AttachPolicyCommandOutput>;
409
- public attachPolicy(args: AttachPolicyCommandInput, cb: (err: any, data?: AttachPolicyCommandOutput) => void): void;
410
- public attachPolicy(
411
- args: AttachPolicyCommandInput,
412
- options: __HttpHandlerOptions,
413
- cb: (err: any, data?: AttachPolicyCommandOutput) => void
414
- ): void;
415
- public attachPolicy(
416
- args: AttachPolicyCommandInput,
417
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: AttachPolicyCommandOutput) => void),
418
- cb?: (err: any, data?: AttachPolicyCommandOutput) => void
419
- ): Promise<AttachPolicyCommandOutput> | void {
420
- const command = new AttachPolicyCommand(args);
421
- if (typeof optionsOrCb === "function") {
422
- this.send(command, optionsOrCb);
423
- } else if (typeof cb === "function") {
424
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
425
- this.send(command, optionsOrCb || {}, cb);
426
- } else {
427
- return this.send(command, optionsOrCb);
428
- }
429
- }
430
-
431
- /**
432
- * <p>Attaches the specified object to the specified index.</p>
433
- */
434
- public attachToIndex(
435
- args: AttachToIndexCommandInput,
436
- options?: __HttpHandlerOptions
437
- ): Promise<AttachToIndexCommandOutput>;
438
- public attachToIndex(
439
- args: AttachToIndexCommandInput,
440
- cb: (err: any, data?: AttachToIndexCommandOutput) => void
441
- ): void;
442
- public attachToIndex(
443
- args: AttachToIndexCommandInput,
444
- options: __HttpHandlerOptions,
445
- cb: (err: any, data?: AttachToIndexCommandOutput) => void
446
- ): void;
447
- public attachToIndex(
448
- args: AttachToIndexCommandInput,
449
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: AttachToIndexCommandOutput) => void),
450
- cb?: (err: any, data?: AttachToIndexCommandOutput) => void
451
- ): Promise<AttachToIndexCommandOutput> | void {
452
- const command = new AttachToIndexCommand(args);
453
- if (typeof optionsOrCb === "function") {
454
- this.send(command, optionsOrCb);
455
- } else if (typeof cb === "function") {
456
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
457
- this.send(command, optionsOrCb || {}, cb);
458
- } else {
459
- return this.send(command, optionsOrCb);
460
- }
461
- }
462
-
463
- /**
464
- * <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>
465
- */
466
- public attachTypedLink(
467
- args: AttachTypedLinkCommandInput,
468
- options?: __HttpHandlerOptions
469
- ): Promise<AttachTypedLinkCommandOutput>;
470
- public attachTypedLink(
471
- args: AttachTypedLinkCommandInput,
472
- cb: (err: any, data?: AttachTypedLinkCommandOutput) => void
473
- ): void;
474
- public attachTypedLink(
475
- args: AttachTypedLinkCommandInput,
476
- options: __HttpHandlerOptions,
477
- cb: (err: any, data?: AttachTypedLinkCommandOutput) => void
478
- ): void;
479
- public attachTypedLink(
480
- args: AttachTypedLinkCommandInput,
481
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: AttachTypedLinkCommandOutput) => void),
482
- cb?: (err: any, data?: AttachTypedLinkCommandOutput) => void
483
- ): Promise<AttachTypedLinkCommandOutput> | void {
484
- const command = new AttachTypedLinkCommand(args);
485
- if (typeof optionsOrCb === "function") {
486
- this.send(command, optionsOrCb);
487
- } else if (typeof cb === "function") {
488
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
489
- this.send(command, optionsOrCb || {}, cb);
490
- } else {
491
- return this.send(command, optionsOrCb);
492
- }
493
- }
494
-
495
- /**
496
- * <p>Performs all the read operations in a batch. </p>
497
- */
498
- public batchRead(args: BatchReadCommandInput, options?: __HttpHandlerOptions): Promise<BatchReadCommandOutput>;
499
- public batchRead(args: BatchReadCommandInput, cb: (err: any, data?: BatchReadCommandOutput) => void): void;
500
- public batchRead(
501
- args: BatchReadCommandInput,
502
- options: __HttpHandlerOptions,
503
- cb: (err: any, data?: BatchReadCommandOutput) => void
504
- ): void;
505
- public batchRead(
506
- args: BatchReadCommandInput,
507
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: BatchReadCommandOutput) => void),
508
- cb?: (err: any, data?: BatchReadCommandOutput) => void
509
- ): Promise<BatchReadCommandOutput> | void {
510
- const command = new BatchReadCommand(args);
511
- if (typeof optionsOrCb === "function") {
512
- this.send(command, optionsOrCb);
513
- } else if (typeof cb === "function") {
514
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
515
- this.send(command, optionsOrCb || {}, cb);
516
- } else {
517
- return this.send(command, optionsOrCb);
518
- }
519
- }
520
-
521
- /**
522
- * <p>Performs all the write operations in a batch. Either all the operations succeed or
523
- * none.</p>
524
- */
525
- public batchWrite(args: BatchWriteCommandInput, options?: __HttpHandlerOptions): Promise<BatchWriteCommandOutput>;
526
- public batchWrite(args: BatchWriteCommandInput, cb: (err: any, data?: BatchWriteCommandOutput) => void): void;
527
- public batchWrite(
528
- args: BatchWriteCommandInput,
529
- options: __HttpHandlerOptions,
530
- cb: (err: any, data?: BatchWriteCommandOutput) => void
531
- ): void;
532
- public batchWrite(
533
- args: BatchWriteCommandInput,
534
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: BatchWriteCommandOutput) => void),
535
- cb?: (err: any, data?: BatchWriteCommandOutput) => void
536
- ): Promise<BatchWriteCommandOutput> | void {
537
- const command = new BatchWriteCommand(args);
538
- if (typeof optionsOrCb === "function") {
539
- this.send(command, optionsOrCb);
540
- } else if (typeof cb === "function") {
541
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
542
- this.send(command, optionsOrCb || {}, cb);
543
- } else {
544
- return this.send(command, optionsOrCb);
545
- }
546
- }
547
-
548
- /**
549
- * <p>Creates a <a>Directory</a> by copying the published schema into the
550
- * directory. A directory cannot be created without a schema.</p>
551
- * <p>You can also quickly create a directory using a managed schema, called the
552
- * <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>
553
- */
554
- public createDirectory(
555
- args: CreateDirectoryCommandInput,
556
- options?: __HttpHandlerOptions
557
- ): Promise<CreateDirectoryCommandOutput>;
558
- public createDirectory(
559
- args: CreateDirectoryCommandInput,
560
- cb: (err: any, data?: CreateDirectoryCommandOutput) => void
561
- ): void;
562
- public createDirectory(
563
- args: CreateDirectoryCommandInput,
564
- options: __HttpHandlerOptions,
565
- cb: (err: any, data?: CreateDirectoryCommandOutput) => void
566
- ): void;
567
- public createDirectory(
568
- args: CreateDirectoryCommandInput,
569
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateDirectoryCommandOutput) => void),
570
- cb?: (err: any, data?: CreateDirectoryCommandOutput) => void
571
- ): Promise<CreateDirectoryCommandOutput> | void {
572
- const command = new CreateDirectoryCommand(args);
573
- if (typeof optionsOrCb === "function") {
574
- this.send(command, optionsOrCb);
575
- } else if (typeof cb === "function") {
576
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
577
- this.send(command, optionsOrCb || {}, cb);
578
- } else {
579
- return this.send(command, optionsOrCb);
580
- }
581
- }
582
-
583
- /**
584
- * <p>Creates a new <a>Facet</a> in a schema. Facet creation is allowed only
585
- * in development or applied schemas.</p>
586
- */
587
- public createFacet(args: CreateFacetCommandInput, options?: __HttpHandlerOptions): Promise<CreateFacetCommandOutput>;
588
- public createFacet(args: CreateFacetCommandInput, cb: (err: any, data?: CreateFacetCommandOutput) => void): void;
589
- public createFacet(
590
- args: CreateFacetCommandInput,
591
- options: __HttpHandlerOptions,
592
- cb: (err: any, data?: CreateFacetCommandOutput) => void
593
- ): void;
594
- public createFacet(
595
- args: CreateFacetCommandInput,
596
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateFacetCommandOutput) => void),
597
- cb?: (err: any, data?: CreateFacetCommandOutput) => void
598
- ): Promise<CreateFacetCommandOutput> | void {
599
- const command = new CreateFacetCommand(args);
600
- if (typeof optionsOrCb === "function") {
601
- this.send(command, optionsOrCb);
602
- } else if (typeof cb === "function") {
603
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
604
- this.send(command, optionsOrCb || {}, cb);
605
- } else {
606
- return this.send(command, optionsOrCb);
607
- }
608
- }
609
-
610
- /**
611
- * <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>
612
- */
613
- public createIndex(args: CreateIndexCommandInput, options?: __HttpHandlerOptions): Promise<CreateIndexCommandOutput>;
614
- public createIndex(args: CreateIndexCommandInput, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
615
- public createIndex(
616
- args: CreateIndexCommandInput,
617
- options: __HttpHandlerOptions,
618
- cb: (err: any, data?: CreateIndexCommandOutput) => void
619
- ): void;
620
- public createIndex(
621
- args: CreateIndexCommandInput,
622
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateIndexCommandOutput) => void),
623
- cb?: (err: any, data?: CreateIndexCommandOutput) => void
624
- ): Promise<CreateIndexCommandOutput> | void {
625
- const command = new CreateIndexCommand(args);
626
- if (typeof optionsOrCb === "function") {
627
- this.send(command, optionsOrCb);
628
- } else if (typeof cb === "function") {
629
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
630
- this.send(command, optionsOrCb || {}, cb);
631
- } else {
632
- return this.send(command, optionsOrCb);
633
- }
634
- }
635
-
636
- /**
637
- * <p>Creates an object in a <a>Directory</a>. Additionally attaches the object to
638
- * a parent, if a parent reference and <code>LinkName</code> is specified. An object is simply a
639
- * collection of <a>Facet</a> attributes. You can also use this API call to create a
640
- * policy object, if the facet from which you create the object is a policy facet. </p>
641
- */
642
- public createObject(
643
- args: CreateObjectCommandInput,
644
- options?: __HttpHandlerOptions
645
- ): Promise<CreateObjectCommandOutput>;
646
- public createObject(args: CreateObjectCommandInput, cb: (err: any, data?: CreateObjectCommandOutput) => void): void;
647
- public createObject(
648
- args: CreateObjectCommandInput,
649
- options: __HttpHandlerOptions,
650
- cb: (err: any, data?: CreateObjectCommandOutput) => void
651
- ): void;
652
- public createObject(
653
- args: CreateObjectCommandInput,
654
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateObjectCommandOutput) => void),
655
- cb?: (err: any, data?: CreateObjectCommandOutput) => void
656
- ): Promise<CreateObjectCommandOutput> | void {
657
- const command = new CreateObjectCommand(args);
658
- if (typeof optionsOrCb === "function") {
659
- this.send(command, optionsOrCb);
660
- } else if (typeof cb === "function") {
661
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
662
- this.send(command, optionsOrCb || {}, cb);
663
- } else {
664
- return this.send(command, optionsOrCb);
665
- }
666
- }
667
-
668
- /**
669
- * <p>Creates a new schema in a development state. A schema can exist in three
670
- * phases:</p>
671
- * <ul>
672
- * <li>
673
- * <p>
674
- * <i>Development:</i> This is a mutable phase of the schema. All new
675
- * schemas are in the development phase. Once the schema is finalized, it can be
676
- * published.</p>
677
- * </li>
678
- * <li>
679
- * <p>
680
- * <i>Published:</i> Published schemas are immutable and have a version
681
- * associated with them.</p>
682
- * </li>
683
- * <li>
684
- * <p>
685
- * <i>Applied:</i> Applied schemas are mutable in a way that allows you
686
- * to add new schema facets. You can also add new, nonrequired attributes to existing schema
687
- * facets. You can apply only published schemas to directories. </p>
688
- * </li>
689
- * </ul>
690
- */
691
- public createSchema(
692
- args: CreateSchemaCommandInput,
693
- options?: __HttpHandlerOptions
694
- ): Promise<CreateSchemaCommandOutput>;
695
- public createSchema(args: CreateSchemaCommandInput, cb: (err: any, data?: CreateSchemaCommandOutput) => void): void;
696
- public createSchema(
697
- args: CreateSchemaCommandInput,
698
- options: __HttpHandlerOptions,
699
- cb: (err: any, data?: CreateSchemaCommandOutput) => void
700
- ): void;
701
- public createSchema(
702
- args: CreateSchemaCommandInput,
703
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateSchemaCommandOutput) => void),
704
- cb?: (err: any, data?: CreateSchemaCommandOutput) => void
705
- ): Promise<CreateSchemaCommandOutput> | void {
706
- const command = new CreateSchemaCommand(args);
707
- if (typeof optionsOrCb === "function") {
708
- this.send(command, optionsOrCb);
709
- } else if (typeof cb === "function") {
710
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
711
- this.send(command, optionsOrCb || {}, cb);
712
- } else {
713
- return this.send(command, optionsOrCb);
714
- }
715
- }
716
-
717
- /**
718
- * <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>
719
- */
720
- public createTypedLinkFacet(
721
- args: CreateTypedLinkFacetCommandInput,
722
- options?: __HttpHandlerOptions
723
- ): Promise<CreateTypedLinkFacetCommandOutput>;
724
- public createTypedLinkFacet(
725
- args: CreateTypedLinkFacetCommandInput,
726
- cb: (err: any, data?: CreateTypedLinkFacetCommandOutput) => void
727
- ): void;
728
- public createTypedLinkFacet(
729
- args: CreateTypedLinkFacetCommandInput,
730
- options: __HttpHandlerOptions,
731
- cb: (err: any, data?: CreateTypedLinkFacetCommandOutput) => void
732
- ): void;
733
- public createTypedLinkFacet(
734
- args: CreateTypedLinkFacetCommandInput,
735
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateTypedLinkFacetCommandOutput) => void),
736
- cb?: (err: any, data?: CreateTypedLinkFacetCommandOutput) => void
737
- ): Promise<CreateTypedLinkFacetCommandOutput> | void {
738
- const command = new CreateTypedLinkFacetCommand(args);
739
- if (typeof optionsOrCb === "function") {
740
- this.send(command, optionsOrCb);
741
- } else if (typeof cb === "function") {
742
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
743
- this.send(command, optionsOrCb || {}, cb);
744
- } else {
745
- return this.send(command, optionsOrCb);
746
- }
747
- }
748
-
749
- /**
750
- * <p>Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme
751
- * caution
752
- * when deleting directories.</p>
753
- */
754
- public deleteDirectory(
755
- args: DeleteDirectoryCommandInput,
756
- options?: __HttpHandlerOptions
757
- ): Promise<DeleteDirectoryCommandOutput>;
758
- public deleteDirectory(
759
- args: DeleteDirectoryCommandInput,
760
- cb: (err: any, data?: DeleteDirectoryCommandOutput) => void
761
- ): void;
762
- public deleteDirectory(
763
- args: DeleteDirectoryCommandInput,
764
- options: __HttpHandlerOptions,
765
- cb: (err: any, data?: DeleteDirectoryCommandOutput) => void
766
- ): void;
767
- public deleteDirectory(
768
- args: DeleteDirectoryCommandInput,
769
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteDirectoryCommandOutput) => void),
770
- cb?: (err: any, data?: DeleteDirectoryCommandOutput) => void
771
- ): Promise<DeleteDirectoryCommandOutput> | void {
772
- const command = new DeleteDirectoryCommand(args);
773
- if (typeof optionsOrCb === "function") {
774
- this.send(command, optionsOrCb);
775
- } else if (typeof cb === "function") {
776
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
777
- this.send(command, optionsOrCb || {}, cb);
778
- } else {
779
- return this.send(command, optionsOrCb);
780
- }
781
- }
782
-
783
- /**
784
- * <p>Deletes a given <a>Facet</a>. All attributes and <a>Rule</a>s
785
- * that are associated with the facet will be deleted. Only development schema facets are allowed
786
- * deletion.</p>
787
- */
788
- public deleteFacet(args: DeleteFacetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFacetCommandOutput>;
789
- public deleteFacet(args: DeleteFacetCommandInput, cb: (err: any, data?: DeleteFacetCommandOutput) => void): void;
790
- public deleteFacet(
791
- args: DeleteFacetCommandInput,
792
- options: __HttpHandlerOptions,
793
- cb: (err: any, data?: DeleteFacetCommandOutput) => void
794
- ): void;
795
- public deleteFacet(
796
- args: DeleteFacetCommandInput,
797
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteFacetCommandOutput) => void),
798
- cb?: (err: any, data?: DeleteFacetCommandOutput) => void
799
- ): Promise<DeleteFacetCommandOutput> | void {
800
- const command = new DeleteFacetCommand(args);
801
- if (typeof optionsOrCb === "function") {
802
- this.send(command, optionsOrCb);
803
- } else if (typeof cb === "function") {
804
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
805
- this.send(command, optionsOrCb || {}, cb);
806
- } else {
807
- return this.send(command, optionsOrCb);
808
- }
809
- }
810
-
811
- /**
812
- * <p>Deletes an object and its associated attributes. Only objects with no children and no
813
- * 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>
814
- */
815
- public deleteObject(
816
- args: DeleteObjectCommandInput,
817
- options?: __HttpHandlerOptions
818
- ): Promise<DeleteObjectCommandOutput>;
819
- public deleteObject(args: DeleteObjectCommandInput, cb: (err: any, data?: DeleteObjectCommandOutput) => void): void;
820
- public deleteObject(
821
- args: DeleteObjectCommandInput,
822
- options: __HttpHandlerOptions,
823
- cb: (err: any, data?: DeleteObjectCommandOutput) => void
824
- ): void;
825
- public deleteObject(
826
- args: DeleteObjectCommandInput,
827
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteObjectCommandOutput) => void),
828
- cb?: (err: any, data?: DeleteObjectCommandOutput) => void
829
- ): Promise<DeleteObjectCommandOutput> | void {
830
- const command = new DeleteObjectCommand(args);
831
- if (typeof optionsOrCb === "function") {
832
- this.send(command, optionsOrCb);
833
- } else if (typeof cb === "function") {
834
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
835
- this.send(command, optionsOrCb || {}, cb);
836
- } else {
837
- return this.send(command, optionsOrCb);
838
- }
839
- }
840
-
841
- /**
842
- * <p>Deletes a given schema. Schemas in a development and published state can only be deleted. </p>
843
- */
844
- public deleteSchema(
845
- args: DeleteSchemaCommandInput,
846
- options?: __HttpHandlerOptions
847
- ): Promise<DeleteSchemaCommandOutput>;
848
- public deleteSchema(args: DeleteSchemaCommandInput, cb: (err: any, data?: DeleteSchemaCommandOutput) => void): void;
849
- public deleteSchema(
850
- args: DeleteSchemaCommandInput,
851
- options: __HttpHandlerOptions,
852
- cb: (err: any, data?: DeleteSchemaCommandOutput) => void
853
- ): void;
854
- public deleteSchema(
855
- args: DeleteSchemaCommandInput,
856
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteSchemaCommandOutput) => void),
857
- cb?: (err: any, data?: DeleteSchemaCommandOutput) => void
858
- ): Promise<DeleteSchemaCommandOutput> | void {
859
- const command = new DeleteSchemaCommand(args);
860
- if (typeof optionsOrCb === "function") {
861
- this.send(command, optionsOrCb);
862
- } else if (typeof cb === "function") {
863
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
864
- this.send(command, optionsOrCb || {}, cb);
865
- } else {
866
- return this.send(command, optionsOrCb);
867
- }
868
- }
869
-
870
- /**
871
- * <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>
872
- */
873
- public deleteTypedLinkFacet(
874
- args: DeleteTypedLinkFacetCommandInput,
875
- options?: __HttpHandlerOptions
876
- ): Promise<DeleteTypedLinkFacetCommandOutput>;
877
- public deleteTypedLinkFacet(
878
- args: DeleteTypedLinkFacetCommandInput,
879
- cb: (err: any, data?: DeleteTypedLinkFacetCommandOutput) => void
880
- ): void;
881
- public deleteTypedLinkFacet(
882
- args: DeleteTypedLinkFacetCommandInput,
883
- options: __HttpHandlerOptions,
884
- cb: (err: any, data?: DeleteTypedLinkFacetCommandOutput) => void
885
- ): void;
886
- public deleteTypedLinkFacet(
887
- args: DeleteTypedLinkFacetCommandInput,
888
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteTypedLinkFacetCommandOutput) => void),
889
- cb?: (err: any, data?: DeleteTypedLinkFacetCommandOutput) => void
890
- ): Promise<DeleteTypedLinkFacetCommandOutput> | void {
891
- const command = new DeleteTypedLinkFacetCommand(args);
892
- if (typeof optionsOrCb === "function") {
893
- this.send(command, optionsOrCb);
894
- } else if (typeof cb === "function") {
895
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
896
- this.send(command, optionsOrCb || {}, cb);
897
- } else {
898
- return this.send(command, optionsOrCb);
899
- }
900
- }
901
-
902
- /**
903
- * <p>Detaches the specified object from the specified index.</p>
904
- */
905
- public detachFromIndex(
906
- args: DetachFromIndexCommandInput,
907
- options?: __HttpHandlerOptions
908
- ): Promise<DetachFromIndexCommandOutput>;
909
- public detachFromIndex(
910
- args: DetachFromIndexCommandInput,
911
- cb: (err: any, data?: DetachFromIndexCommandOutput) => void
912
- ): void;
913
- public detachFromIndex(
914
- args: DetachFromIndexCommandInput,
915
- options: __HttpHandlerOptions,
916
- cb: (err: any, data?: DetachFromIndexCommandOutput) => void
917
- ): void;
918
- public detachFromIndex(
919
- args: DetachFromIndexCommandInput,
920
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DetachFromIndexCommandOutput) => void),
921
- cb?: (err: any, data?: DetachFromIndexCommandOutput) => void
922
- ): Promise<DetachFromIndexCommandOutput> | void {
923
- const command = new DetachFromIndexCommand(args);
924
- if (typeof optionsOrCb === "function") {
925
- this.send(command, optionsOrCb);
926
- } else if (typeof cb === "function") {
927
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
928
- this.send(command, optionsOrCb || {}, cb);
929
- } else {
930
- return this.send(command, optionsOrCb);
931
- }
932
- }
933
-
934
- /**
935
- * <p>Detaches a given object from the parent object. The object that is to be detached from the
936
- * parent is specified by the link name.</p>
937
- */
938
- public detachObject(
939
- args: DetachObjectCommandInput,
940
- options?: __HttpHandlerOptions
941
- ): Promise<DetachObjectCommandOutput>;
942
- public detachObject(args: DetachObjectCommandInput, cb: (err: any, data?: DetachObjectCommandOutput) => void): void;
943
- public detachObject(
944
- args: DetachObjectCommandInput,
945
- options: __HttpHandlerOptions,
946
- cb: (err: any, data?: DetachObjectCommandOutput) => void
947
- ): void;
948
- public detachObject(
949
- args: DetachObjectCommandInput,
950
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DetachObjectCommandOutput) => void),
951
- cb?: (err: any, data?: DetachObjectCommandOutput) => void
952
- ): Promise<DetachObjectCommandOutput> | void {
953
- const command = new DetachObjectCommand(args);
954
- if (typeof optionsOrCb === "function") {
955
- this.send(command, optionsOrCb);
956
- } else if (typeof cb === "function") {
957
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
958
- this.send(command, optionsOrCb || {}, cb);
959
- } else {
960
- return this.send(command, optionsOrCb);
961
- }
962
- }
963
-
964
- /**
965
- * <p>Detaches a policy from an object.</p>
966
- */
967
- public detachPolicy(
968
- args: DetachPolicyCommandInput,
969
- options?: __HttpHandlerOptions
970
- ): Promise<DetachPolicyCommandOutput>;
971
- public detachPolicy(args: DetachPolicyCommandInput, cb: (err: any, data?: DetachPolicyCommandOutput) => void): void;
972
- public detachPolicy(
973
- args: DetachPolicyCommandInput,
974
- options: __HttpHandlerOptions,
975
- cb: (err: any, data?: DetachPolicyCommandOutput) => void
976
- ): void;
977
- public detachPolicy(
978
- args: DetachPolicyCommandInput,
979
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DetachPolicyCommandOutput) => void),
980
- cb?: (err: any, data?: DetachPolicyCommandOutput) => void
981
- ): Promise<DetachPolicyCommandOutput> | void {
982
- const command = new DetachPolicyCommand(args);
983
- if (typeof optionsOrCb === "function") {
984
- this.send(command, optionsOrCb);
985
- } else if (typeof cb === "function") {
986
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
987
- this.send(command, optionsOrCb || {}, cb);
988
- } else {
989
- return this.send(command, optionsOrCb);
990
- }
991
- }
992
-
993
- /**
994
- * <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>
995
- */
996
- public detachTypedLink(
997
- args: DetachTypedLinkCommandInput,
998
- options?: __HttpHandlerOptions
999
- ): Promise<DetachTypedLinkCommandOutput>;
1000
- public detachTypedLink(
1001
- args: DetachTypedLinkCommandInput,
1002
- cb: (err: any, data?: DetachTypedLinkCommandOutput) => void
1003
- ): void;
1004
- public detachTypedLink(
1005
- args: DetachTypedLinkCommandInput,
1006
- options: __HttpHandlerOptions,
1007
- cb: (err: any, data?: DetachTypedLinkCommandOutput) => void
1008
- ): void;
1009
- public detachTypedLink(
1010
- args: DetachTypedLinkCommandInput,
1011
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DetachTypedLinkCommandOutput) => void),
1012
- cb?: (err: any, data?: DetachTypedLinkCommandOutput) => void
1013
- ): Promise<DetachTypedLinkCommandOutput> | void {
1014
- const command = new DetachTypedLinkCommand(args);
1015
- if (typeof optionsOrCb === "function") {
1016
- this.send(command, optionsOrCb);
1017
- } else if (typeof cb === "function") {
1018
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1019
- this.send(command, optionsOrCb || {}, cb);
1020
- } else {
1021
- return this.send(command, optionsOrCb);
1022
- }
1023
- }
1024
-
1025
- /**
1026
- * <p>Disables the specified directory. Disabled directories cannot be read or written to.
1027
- * Only enabled directories can be disabled. Disabled directories may be reenabled.</p>
1028
- */
1029
- public disableDirectory(
1030
- args: DisableDirectoryCommandInput,
1031
- options?: __HttpHandlerOptions
1032
- ): Promise<DisableDirectoryCommandOutput>;
1033
- public disableDirectory(
1034
- args: DisableDirectoryCommandInput,
1035
- cb: (err: any, data?: DisableDirectoryCommandOutput) => void
1036
- ): void;
1037
- public disableDirectory(
1038
- args: DisableDirectoryCommandInput,
1039
- options: __HttpHandlerOptions,
1040
- cb: (err: any, data?: DisableDirectoryCommandOutput) => void
1041
- ): void;
1042
- public disableDirectory(
1043
- args: DisableDirectoryCommandInput,
1044
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DisableDirectoryCommandOutput) => void),
1045
- cb?: (err: any, data?: DisableDirectoryCommandOutput) => void
1046
- ): Promise<DisableDirectoryCommandOutput> | void {
1047
- const command = new DisableDirectoryCommand(args);
1048
- if (typeof optionsOrCb === "function") {
1049
- this.send(command, optionsOrCb);
1050
- } else if (typeof cb === "function") {
1051
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1052
- this.send(command, optionsOrCb || {}, cb);
1053
- } else {
1054
- return this.send(command, optionsOrCb);
1055
- }
1056
- }
1057
-
1058
- /**
1059
- * <p>Enables the specified directory. Only disabled directories can be enabled. Once
1060
- * enabled, the directory can then be read and written to.</p>
1061
- */
1062
- public enableDirectory(
1063
- args: EnableDirectoryCommandInput,
1064
- options?: __HttpHandlerOptions
1065
- ): Promise<EnableDirectoryCommandOutput>;
1066
- public enableDirectory(
1067
- args: EnableDirectoryCommandInput,
1068
- cb: (err: any, data?: EnableDirectoryCommandOutput) => void
1069
- ): void;
1070
- public enableDirectory(
1071
- args: EnableDirectoryCommandInput,
1072
- options: __HttpHandlerOptions,
1073
- cb: (err: any, data?: EnableDirectoryCommandOutput) => void
1074
- ): void;
1075
- public enableDirectory(
1076
- args: EnableDirectoryCommandInput,
1077
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: EnableDirectoryCommandOutput) => void),
1078
- cb?: (err: any, data?: EnableDirectoryCommandOutput) => void
1079
- ): Promise<EnableDirectoryCommandOutput> | void {
1080
- const command = new EnableDirectoryCommand(args);
1081
- if (typeof optionsOrCb === "function") {
1082
- this.send(command, optionsOrCb);
1083
- } else if (typeof cb === "function") {
1084
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1085
- this.send(command, optionsOrCb || {}, cb);
1086
- } else {
1087
- return this.send(command, optionsOrCb);
1088
- }
1089
- }
1090
-
1091
- /**
1092
- * <p>Returns current applied schema version ARN, including the minor version in use.</p>
1093
- */
1094
- public getAppliedSchemaVersion(
1095
- args: GetAppliedSchemaVersionCommandInput,
1096
- options?: __HttpHandlerOptions
1097
- ): Promise<GetAppliedSchemaVersionCommandOutput>;
1098
- public getAppliedSchemaVersion(
1099
- args: GetAppliedSchemaVersionCommandInput,
1100
- cb: (err: any, data?: GetAppliedSchemaVersionCommandOutput) => void
1101
- ): void;
1102
- public getAppliedSchemaVersion(
1103
- args: GetAppliedSchemaVersionCommandInput,
1104
- options: __HttpHandlerOptions,
1105
- cb: (err: any, data?: GetAppliedSchemaVersionCommandOutput) => void
1106
- ): void;
1107
- public getAppliedSchemaVersion(
1108
- args: GetAppliedSchemaVersionCommandInput,
1109
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetAppliedSchemaVersionCommandOutput) => void),
1110
- cb?: (err: any, data?: GetAppliedSchemaVersionCommandOutput) => void
1111
- ): Promise<GetAppliedSchemaVersionCommandOutput> | void {
1112
- const command = new GetAppliedSchemaVersionCommand(args);
1113
- if (typeof optionsOrCb === "function") {
1114
- this.send(command, optionsOrCb);
1115
- } else if (typeof cb === "function") {
1116
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1117
- this.send(command, optionsOrCb || {}, cb);
1118
- } else {
1119
- return this.send(command, optionsOrCb);
1120
- }
1121
- }
1122
-
1123
- /**
1124
- * <p>Retrieves metadata about a directory.</p>
1125
- */
1126
- public getDirectory(
1127
- args: GetDirectoryCommandInput,
1128
- options?: __HttpHandlerOptions
1129
- ): Promise<GetDirectoryCommandOutput>;
1130
- public getDirectory(args: GetDirectoryCommandInput, cb: (err: any, data?: GetDirectoryCommandOutput) => void): void;
1131
- public getDirectory(
1132
- args: GetDirectoryCommandInput,
1133
- options: __HttpHandlerOptions,
1134
- cb: (err: any, data?: GetDirectoryCommandOutput) => void
1135
- ): void;
1136
- public getDirectory(
1137
- args: GetDirectoryCommandInput,
1138
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetDirectoryCommandOutput) => void),
1139
- cb?: (err: any, data?: GetDirectoryCommandOutput) => void
1140
- ): Promise<GetDirectoryCommandOutput> | void {
1141
- const command = new GetDirectoryCommand(args);
1142
- if (typeof optionsOrCb === "function") {
1143
- this.send(command, optionsOrCb);
1144
- } else if (typeof cb === "function") {
1145
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1146
- this.send(command, optionsOrCb || {}, cb);
1147
- } else {
1148
- return this.send(command, optionsOrCb);
1149
- }
1150
- }
1151
-
1152
- /**
1153
- * <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
1154
- * facets -- published, development, or applied.</p>
1155
- */
1156
- public getFacet(args: GetFacetCommandInput, options?: __HttpHandlerOptions): Promise<GetFacetCommandOutput>;
1157
- public getFacet(args: GetFacetCommandInput, cb: (err: any, data?: GetFacetCommandOutput) => void): void;
1158
- public getFacet(
1159
- args: GetFacetCommandInput,
1160
- options: __HttpHandlerOptions,
1161
- cb: (err: any, data?: GetFacetCommandOutput) => void
1162
- ): void;
1163
- public getFacet(
1164
- args: GetFacetCommandInput,
1165
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetFacetCommandOutput) => void),
1166
- cb?: (err: any, data?: GetFacetCommandOutput) => void
1167
- ): Promise<GetFacetCommandOutput> | void {
1168
- const command = new GetFacetCommand(args);
1169
- if (typeof optionsOrCb === "function") {
1170
- this.send(command, optionsOrCb);
1171
- } else if (typeof cb === "function") {
1172
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1173
- this.send(command, optionsOrCb || {}, cb);
1174
- } else {
1175
- return this.send(command, optionsOrCb);
1176
- }
1177
- }
1178
-
1179
- /**
1180
- * <p>Retrieves attributes that are associated with a typed link.</p>
1181
- */
1182
- public getLinkAttributes(
1183
- args: GetLinkAttributesCommandInput,
1184
- options?: __HttpHandlerOptions
1185
- ): Promise<GetLinkAttributesCommandOutput>;
1186
- public getLinkAttributes(
1187
- args: GetLinkAttributesCommandInput,
1188
- cb: (err: any, data?: GetLinkAttributesCommandOutput) => void
1189
- ): void;
1190
- public getLinkAttributes(
1191
- args: GetLinkAttributesCommandInput,
1192
- options: __HttpHandlerOptions,
1193
- cb: (err: any, data?: GetLinkAttributesCommandOutput) => void
1194
- ): void;
1195
- public getLinkAttributes(
1196
- args: GetLinkAttributesCommandInput,
1197
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetLinkAttributesCommandOutput) => void),
1198
- cb?: (err: any, data?: GetLinkAttributesCommandOutput) => void
1199
- ): Promise<GetLinkAttributesCommandOutput> | void {
1200
- const command = new GetLinkAttributesCommand(args);
1201
- if (typeof optionsOrCb === "function") {
1202
- this.send(command, optionsOrCb);
1203
- } else if (typeof cb === "function") {
1204
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1205
- this.send(command, optionsOrCb || {}, cb);
1206
- } else {
1207
- return this.send(command, optionsOrCb);
1208
- }
1209
- }
1210
-
1211
- /**
1212
- * <p>Retrieves attributes within a facet that are associated with an object.</p>
1213
- */
1214
- public getObjectAttributes(
1215
- args: GetObjectAttributesCommandInput,
1216
- options?: __HttpHandlerOptions
1217
- ): Promise<GetObjectAttributesCommandOutput>;
1218
- public getObjectAttributes(
1219
- args: GetObjectAttributesCommandInput,
1220
- cb: (err: any, data?: GetObjectAttributesCommandOutput) => void
1221
- ): void;
1222
- public getObjectAttributes(
1223
- args: GetObjectAttributesCommandInput,
1224
- options: __HttpHandlerOptions,
1225
- cb: (err: any, data?: GetObjectAttributesCommandOutput) => void
1226
- ): void;
1227
- public getObjectAttributes(
1228
- args: GetObjectAttributesCommandInput,
1229
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetObjectAttributesCommandOutput) => void),
1230
- cb?: (err: any, data?: GetObjectAttributesCommandOutput) => void
1231
- ): Promise<GetObjectAttributesCommandOutput> | void {
1232
- const command = new GetObjectAttributesCommand(args);
1233
- if (typeof optionsOrCb === "function") {
1234
- this.send(command, optionsOrCb);
1235
- } else if (typeof cb === "function") {
1236
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1237
- this.send(command, optionsOrCb || {}, cb);
1238
- } else {
1239
- return this.send(command, optionsOrCb);
1240
- }
1241
- }
1242
-
1243
- /**
1244
- * <p>Retrieves metadata about an object.</p>
1245
- */
1246
- public getObjectInformation(
1247
- args: GetObjectInformationCommandInput,
1248
- options?: __HttpHandlerOptions
1249
- ): Promise<GetObjectInformationCommandOutput>;
1250
- public getObjectInformation(
1251
- args: GetObjectInformationCommandInput,
1252
- cb: (err: any, data?: GetObjectInformationCommandOutput) => void
1253
- ): void;
1254
- public getObjectInformation(
1255
- args: GetObjectInformationCommandInput,
1256
- options: __HttpHandlerOptions,
1257
- cb: (err: any, data?: GetObjectInformationCommandOutput) => void
1258
- ): void;
1259
- public getObjectInformation(
1260
- args: GetObjectInformationCommandInput,
1261
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetObjectInformationCommandOutput) => void),
1262
- cb?: (err: any, data?: GetObjectInformationCommandOutput) => void
1263
- ): Promise<GetObjectInformationCommandOutput> | void {
1264
- const command = new GetObjectInformationCommand(args);
1265
- if (typeof optionsOrCb === "function") {
1266
- this.send(command, optionsOrCb);
1267
- } else if (typeof cb === "function") {
1268
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1269
- this.send(command, optionsOrCb || {}, cb);
1270
- } else {
1271
- return this.send(command, optionsOrCb);
1272
- }
1273
- }
1274
-
1275
- /**
1276
- * <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>
1277
- */
1278
- public getSchemaAsJson(
1279
- args: GetSchemaAsJsonCommandInput,
1280
- options?: __HttpHandlerOptions
1281
- ): Promise<GetSchemaAsJsonCommandOutput>;
1282
- public getSchemaAsJson(
1283
- args: GetSchemaAsJsonCommandInput,
1284
- cb: (err: any, data?: GetSchemaAsJsonCommandOutput) => void
1285
- ): void;
1286
- public getSchemaAsJson(
1287
- args: GetSchemaAsJsonCommandInput,
1288
- options: __HttpHandlerOptions,
1289
- cb: (err: any, data?: GetSchemaAsJsonCommandOutput) => void
1290
- ): void;
1291
- public getSchemaAsJson(
1292
- args: GetSchemaAsJsonCommandInput,
1293
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetSchemaAsJsonCommandOutput) => void),
1294
- cb?: (err: any, data?: GetSchemaAsJsonCommandOutput) => void
1295
- ): Promise<GetSchemaAsJsonCommandOutput> | void {
1296
- const command = new GetSchemaAsJsonCommand(args);
1297
- if (typeof optionsOrCb === "function") {
1298
- this.send(command, optionsOrCb);
1299
- } else if (typeof cb === "function") {
1300
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1301
- this.send(command, optionsOrCb || {}, cb);
1302
- } else {
1303
- return this.send(command, optionsOrCb);
1304
- }
1305
- }
1306
-
1307
- /**
1308
- * <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>
1309
- */
1310
- public getTypedLinkFacetInformation(
1311
- args: GetTypedLinkFacetInformationCommandInput,
1312
- options?: __HttpHandlerOptions
1313
- ): Promise<GetTypedLinkFacetInformationCommandOutput>;
1314
- public getTypedLinkFacetInformation(
1315
- args: GetTypedLinkFacetInformationCommandInput,
1316
- cb: (err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void
1317
- ): void;
1318
- public getTypedLinkFacetInformation(
1319
- args: GetTypedLinkFacetInformationCommandInput,
1320
- options: __HttpHandlerOptions,
1321
- cb: (err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void
1322
- ): void;
1323
- public getTypedLinkFacetInformation(
1324
- args: GetTypedLinkFacetInformationCommandInput,
1325
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void),
1326
- cb?: (err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void
1327
- ): Promise<GetTypedLinkFacetInformationCommandOutput> | void {
1328
- const command = new GetTypedLinkFacetInformationCommand(args);
1329
- if (typeof optionsOrCb === "function") {
1330
- this.send(command, optionsOrCb);
1331
- } else if (typeof cb === "function") {
1332
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1333
- this.send(command, optionsOrCb || {}, cb);
1334
- } else {
1335
- return this.send(command, optionsOrCb);
1336
- }
1337
- }
1338
-
1339
- /**
1340
- * <p>Lists schema major versions applied to a directory. If <code>SchemaArn</code> is provided, lists the minor version.</p>
1341
- */
1342
- public listAppliedSchemaArns(
1343
- args: ListAppliedSchemaArnsCommandInput,
1344
- options?: __HttpHandlerOptions
1345
- ): Promise<ListAppliedSchemaArnsCommandOutput>;
1346
- public listAppliedSchemaArns(
1347
- args: ListAppliedSchemaArnsCommandInput,
1348
- cb: (err: any, data?: ListAppliedSchemaArnsCommandOutput) => void
1349
- ): void;
1350
- public listAppliedSchemaArns(
1351
- args: ListAppliedSchemaArnsCommandInput,
1352
- options: __HttpHandlerOptions,
1353
- cb: (err: any, data?: ListAppliedSchemaArnsCommandOutput) => void
1354
- ): void;
1355
- public listAppliedSchemaArns(
1356
- args: ListAppliedSchemaArnsCommandInput,
1357
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListAppliedSchemaArnsCommandOutput) => void),
1358
- cb?: (err: any, data?: ListAppliedSchemaArnsCommandOutput) => void
1359
- ): Promise<ListAppliedSchemaArnsCommandOutput> | void {
1360
- const command = new ListAppliedSchemaArnsCommand(args);
1361
- if (typeof optionsOrCb === "function") {
1362
- this.send(command, optionsOrCb);
1363
- } else if (typeof cb === "function") {
1364
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1365
- this.send(command, optionsOrCb || {}, cb);
1366
- } else {
1367
- return this.send(command, optionsOrCb);
1368
- }
1369
- }
1370
-
1371
- /**
1372
- * <p>Lists indices attached to the specified object.</p>
1373
- */
1374
- public listAttachedIndices(
1375
- args: ListAttachedIndicesCommandInput,
1376
- options?: __HttpHandlerOptions
1377
- ): Promise<ListAttachedIndicesCommandOutput>;
1378
- public listAttachedIndices(
1379
- args: ListAttachedIndicesCommandInput,
1380
- cb: (err: any, data?: ListAttachedIndicesCommandOutput) => void
1381
- ): void;
1382
- public listAttachedIndices(
1383
- args: ListAttachedIndicesCommandInput,
1384
- options: __HttpHandlerOptions,
1385
- cb: (err: any, data?: ListAttachedIndicesCommandOutput) => void
1386
- ): void;
1387
- public listAttachedIndices(
1388
- args: ListAttachedIndicesCommandInput,
1389
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListAttachedIndicesCommandOutput) => void),
1390
- cb?: (err: any, data?: ListAttachedIndicesCommandOutput) => void
1391
- ): Promise<ListAttachedIndicesCommandOutput> | void {
1392
- const command = new ListAttachedIndicesCommand(args);
1393
- if (typeof optionsOrCb === "function") {
1394
- this.send(command, optionsOrCb);
1395
- } else if (typeof cb === "function") {
1396
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1397
- this.send(command, optionsOrCb || {}, cb);
1398
- } else {
1399
- return this.send(command, optionsOrCb);
1400
- }
1401
- }
1402
-
1403
- /**
1404
- * <p>Retrieves each Amazon Resource Name (ARN) of schemas in the development
1405
- * state.</p>
1406
- */
1407
- public listDevelopmentSchemaArns(
1408
- args: ListDevelopmentSchemaArnsCommandInput,
1409
- options?: __HttpHandlerOptions
1410
- ): Promise<ListDevelopmentSchemaArnsCommandOutput>;
1411
- public listDevelopmentSchemaArns(
1412
- args: ListDevelopmentSchemaArnsCommandInput,
1413
- cb: (err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void
1414
- ): void;
1415
- public listDevelopmentSchemaArns(
1416
- args: ListDevelopmentSchemaArnsCommandInput,
1417
- options: __HttpHandlerOptions,
1418
- cb: (err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void
1419
- ): void;
1420
- public listDevelopmentSchemaArns(
1421
- args: ListDevelopmentSchemaArnsCommandInput,
1422
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void),
1423
- cb?: (err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void
1424
- ): Promise<ListDevelopmentSchemaArnsCommandOutput> | void {
1425
- const command = new ListDevelopmentSchemaArnsCommand(args);
1426
- if (typeof optionsOrCb === "function") {
1427
- this.send(command, optionsOrCb);
1428
- } else if (typeof cb === "function") {
1429
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1430
- this.send(command, optionsOrCb || {}, cb);
1431
- } else {
1432
- return this.send(command, optionsOrCb);
1433
- }
1434
- }
1435
-
1436
- /**
1437
- * <p>Lists directories created within an account.</p>
1438
- */
1439
- public listDirectories(
1440
- args: ListDirectoriesCommandInput,
1441
- options?: __HttpHandlerOptions
1442
- ): Promise<ListDirectoriesCommandOutput>;
1443
- public listDirectories(
1444
- args: ListDirectoriesCommandInput,
1445
- cb: (err: any, data?: ListDirectoriesCommandOutput) => void
1446
- ): void;
1447
- public listDirectories(
1448
- args: ListDirectoriesCommandInput,
1449
- options: __HttpHandlerOptions,
1450
- cb: (err: any, data?: ListDirectoriesCommandOutput) => void
1451
- ): void;
1452
- public listDirectories(
1453
- args: ListDirectoriesCommandInput,
1454
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListDirectoriesCommandOutput) => void),
1455
- cb?: (err: any, data?: ListDirectoriesCommandOutput) => void
1456
- ): Promise<ListDirectoriesCommandOutput> | void {
1457
- const command = new ListDirectoriesCommand(args);
1458
- if (typeof optionsOrCb === "function") {
1459
- this.send(command, optionsOrCb);
1460
- } else if (typeof cb === "function") {
1461
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1462
- this.send(command, optionsOrCb || {}, cb);
1463
- } else {
1464
- return this.send(command, optionsOrCb);
1465
- }
1466
- }
1467
-
1468
- /**
1469
- * <p>Retrieves attributes attached to the facet.</p>
1470
- */
1471
- public listFacetAttributes(
1472
- args: ListFacetAttributesCommandInput,
1473
- options?: __HttpHandlerOptions
1474
- ): Promise<ListFacetAttributesCommandOutput>;
1475
- public listFacetAttributes(
1476
- args: ListFacetAttributesCommandInput,
1477
- cb: (err: any, data?: ListFacetAttributesCommandOutput) => void
1478
- ): void;
1479
- public listFacetAttributes(
1480
- args: ListFacetAttributesCommandInput,
1481
- options: __HttpHandlerOptions,
1482
- cb: (err: any, data?: ListFacetAttributesCommandOutput) => void
1483
- ): void;
1484
- public listFacetAttributes(
1485
- args: ListFacetAttributesCommandInput,
1486
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListFacetAttributesCommandOutput) => void),
1487
- cb?: (err: any, data?: ListFacetAttributesCommandOutput) => void
1488
- ): Promise<ListFacetAttributesCommandOutput> | void {
1489
- const command = new ListFacetAttributesCommand(args);
1490
- if (typeof optionsOrCb === "function") {
1491
- this.send(command, optionsOrCb);
1492
- } else if (typeof cb === "function") {
1493
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1494
- this.send(command, optionsOrCb || {}, cb);
1495
- } else {
1496
- return this.send(command, optionsOrCb);
1497
- }
1498
- }
1499
-
1500
- /**
1501
- * <p>Retrieves the names of facets that exist in a schema.</p>
1502
- */
1503
- public listFacetNames(
1504
- args: ListFacetNamesCommandInput,
1505
- options?: __HttpHandlerOptions
1506
- ): Promise<ListFacetNamesCommandOutput>;
1507
- public listFacetNames(
1508
- args: ListFacetNamesCommandInput,
1509
- cb: (err: any, data?: ListFacetNamesCommandOutput) => void
1510
- ): void;
1511
- public listFacetNames(
1512
- args: ListFacetNamesCommandInput,
1513
- options: __HttpHandlerOptions,
1514
- cb: (err: any, data?: ListFacetNamesCommandOutput) => void
1515
- ): void;
1516
- public listFacetNames(
1517
- args: ListFacetNamesCommandInput,
1518
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListFacetNamesCommandOutput) => void),
1519
- cb?: (err: any, data?: ListFacetNamesCommandOutput) => void
1520
- ): Promise<ListFacetNamesCommandOutput> | void {
1521
- const command = new ListFacetNamesCommand(args);
1522
- if (typeof optionsOrCb === "function") {
1523
- this.send(command, optionsOrCb);
1524
- } else if (typeof cb === "function") {
1525
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1526
- this.send(command, optionsOrCb || {}, cb);
1527
- } else {
1528
- return this.send(command, optionsOrCb);
1529
- }
1530
- }
1531
-
1532
- /**
1533
- * <p>Returns a paginated list of all the incoming <a>TypedLinkSpecifier</a>
1534
- * information for an object. It also supports filtering by typed link facet and identity
1535
- * 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>
1536
- */
1537
- public listIncomingTypedLinks(
1538
- args: ListIncomingTypedLinksCommandInput,
1539
- options?: __HttpHandlerOptions
1540
- ): Promise<ListIncomingTypedLinksCommandOutput>;
1541
- public listIncomingTypedLinks(
1542
- args: ListIncomingTypedLinksCommandInput,
1543
- cb: (err: any, data?: ListIncomingTypedLinksCommandOutput) => void
1544
- ): void;
1545
- public listIncomingTypedLinks(
1546
- args: ListIncomingTypedLinksCommandInput,
1547
- options: __HttpHandlerOptions,
1548
- cb: (err: any, data?: ListIncomingTypedLinksCommandOutput) => void
1549
- ): void;
1550
- public listIncomingTypedLinks(
1551
- args: ListIncomingTypedLinksCommandInput,
1552
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListIncomingTypedLinksCommandOutput) => void),
1553
- cb?: (err: any, data?: ListIncomingTypedLinksCommandOutput) => void
1554
- ): Promise<ListIncomingTypedLinksCommandOutput> | void {
1555
- const command = new ListIncomingTypedLinksCommand(args);
1556
- if (typeof optionsOrCb === "function") {
1557
- this.send(command, optionsOrCb);
1558
- } else if (typeof cb === "function") {
1559
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1560
- this.send(command, optionsOrCb || {}, cb);
1561
- } else {
1562
- return this.send(command, optionsOrCb);
1563
- }
1564
- }
1565
-
1566
- /**
1567
- * <p>Lists objects attached to the specified index.</p>
1568
- */
1569
- public listIndex(args: ListIndexCommandInput, options?: __HttpHandlerOptions): Promise<ListIndexCommandOutput>;
1570
- public listIndex(args: ListIndexCommandInput, cb: (err: any, data?: ListIndexCommandOutput) => void): void;
1571
- public listIndex(
1572
- args: ListIndexCommandInput,
1573
- options: __HttpHandlerOptions,
1574
- cb: (err: any, data?: ListIndexCommandOutput) => void
1575
- ): void;
1576
- public listIndex(
1577
- args: ListIndexCommandInput,
1578
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListIndexCommandOutput) => void),
1579
- cb?: (err: any, data?: ListIndexCommandOutput) => void
1580
- ): Promise<ListIndexCommandOutput> | void {
1581
- const command = new ListIndexCommand(args);
1582
- if (typeof optionsOrCb === "function") {
1583
- this.send(command, optionsOrCb);
1584
- } else if (typeof cb === "function") {
1585
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1586
- this.send(command, optionsOrCb || {}, cb);
1587
- } else {
1588
- return this.send(command, optionsOrCb);
1589
- }
1590
- }
1591
-
1592
- /**
1593
- * <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>
1594
- */
1595
- public listManagedSchemaArns(
1596
- args: ListManagedSchemaArnsCommandInput,
1597
- options?: __HttpHandlerOptions
1598
- ): Promise<ListManagedSchemaArnsCommandOutput>;
1599
- public listManagedSchemaArns(
1600
- args: ListManagedSchemaArnsCommandInput,
1601
- cb: (err: any, data?: ListManagedSchemaArnsCommandOutput) => void
1602
- ): void;
1603
- public listManagedSchemaArns(
1604
- args: ListManagedSchemaArnsCommandInput,
1605
- options: __HttpHandlerOptions,
1606
- cb: (err: any, data?: ListManagedSchemaArnsCommandOutput) => void
1607
- ): void;
1608
- public listManagedSchemaArns(
1609
- args: ListManagedSchemaArnsCommandInput,
1610
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListManagedSchemaArnsCommandOutput) => void),
1611
- cb?: (err: any, data?: ListManagedSchemaArnsCommandOutput) => void
1612
- ): Promise<ListManagedSchemaArnsCommandOutput> | void {
1613
- const command = new ListManagedSchemaArnsCommand(args);
1614
- if (typeof optionsOrCb === "function") {
1615
- this.send(command, optionsOrCb);
1616
- } else if (typeof cb === "function") {
1617
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1618
- this.send(command, optionsOrCb || {}, cb);
1619
- } else {
1620
- return this.send(command, optionsOrCb);
1621
- }
1622
- }
1623
-
1624
- /**
1625
- * <p>Lists all attributes that are associated with an object.
1626
- * </p>
1627
- */
1628
- public listObjectAttributes(
1629
- args: ListObjectAttributesCommandInput,
1630
- options?: __HttpHandlerOptions
1631
- ): Promise<ListObjectAttributesCommandOutput>;
1632
- public listObjectAttributes(
1633
- args: ListObjectAttributesCommandInput,
1634
- cb: (err: any, data?: ListObjectAttributesCommandOutput) => void
1635
- ): void;
1636
- public listObjectAttributes(
1637
- args: ListObjectAttributesCommandInput,
1638
- options: __HttpHandlerOptions,
1639
- cb: (err: any, data?: ListObjectAttributesCommandOutput) => void
1640
- ): void;
1641
- public listObjectAttributes(
1642
- args: ListObjectAttributesCommandInput,
1643
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListObjectAttributesCommandOutput) => void),
1644
- cb?: (err: any, data?: ListObjectAttributesCommandOutput) => void
1645
- ): Promise<ListObjectAttributesCommandOutput> | void {
1646
- const command = new ListObjectAttributesCommand(args);
1647
- if (typeof optionsOrCb === "function") {
1648
- this.send(command, optionsOrCb);
1649
- } else if (typeof cb === "function") {
1650
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1651
- this.send(command, optionsOrCb || {}, cb);
1652
- } else {
1653
- return this.send(command, optionsOrCb);
1654
- }
1655
- }
1656
-
1657
- /**
1658
- * <p>Returns a paginated list of child objects that are associated with a given
1659
- * object.</p>
1660
- */
1661
- public listObjectChildren(
1662
- args: ListObjectChildrenCommandInput,
1663
- options?: __HttpHandlerOptions
1664
- ): Promise<ListObjectChildrenCommandOutput>;
1665
- public listObjectChildren(
1666
- args: ListObjectChildrenCommandInput,
1667
- cb: (err: any, data?: ListObjectChildrenCommandOutput) => void
1668
- ): void;
1669
- public listObjectChildren(
1670
- args: ListObjectChildrenCommandInput,
1671
- options: __HttpHandlerOptions,
1672
- cb: (err: any, data?: ListObjectChildrenCommandOutput) => void
1673
- ): void;
1674
- public listObjectChildren(
1675
- args: ListObjectChildrenCommandInput,
1676
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListObjectChildrenCommandOutput) => void),
1677
- cb?: (err: any, data?: ListObjectChildrenCommandOutput) => void
1678
- ): Promise<ListObjectChildrenCommandOutput> | void {
1679
- const command = new ListObjectChildrenCommand(args);
1680
- if (typeof optionsOrCb === "function") {
1681
- this.send(command, optionsOrCb);
1682
- } else if (typeof cb === "function") {
1683
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1684
- this.send(command, optionsOrCb || {}, cb);
1685
- } else {
1686
- return this.send(command, optionsOrCb);
1687
- }
1688
- }
1689
-
1690
- /**
1691
- * <p>Retrieves all available parent paths for any object type such as node, leaf node,
1692
- * 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>
1693
- * <p>Use this API to evaluate all parents for an object. The call returns all objects from
1694
- * the root of the directory up to the requested object. The API returns the number of paths
1695
- * based on user-defined <code>MaxResults</code>, in case there are multiple paths to the parent.
1696
- * The order of the paths and nodes returned is consistent among multiple API calls unless the
1697
- * objects are deleted or moved. Paths not leading to the directory root are ignored from the
1698
- * target object.</p>
1699
- */
1700
- public listObjectParentPaths(
1701
- args: ListObjectParentPathsCommandInput,
1702
- options?: __HttpHandlerOptions
1703
- ): Promise<ListObjectParentPathsCommandOutput>;
1704
- public listObjectParentPaths(
1705
- args: ListObjectParentPathsCommandInput,
1706
- cb: (err: any, data?: ListObjectParentPathsCommandOutput) => void
1707
- ): void;
1708
- public listObjectParentPaths(
1709
- args: ListObjectParentPathsCommandInput,
1710
- options: __HttpHandlerOptions,
1711
- cb: (err: any, data?: ListObjectParentPathsCommandOutput) => void
1712
- ): void;
1713
- public listObjectParentPaths(
1714
- args: ListObjectParentPathsCommandInput,
1715
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListObjectParentPathsCommandOutput) => void),
1716
- cb?: (err: any, data?: ListObjectParentPathsCommandOutput) => void
1717
- ): Promise<ListObjectParentPathsCommandOutput> | void {
1718
- const command = new ListObjectParentPathsCommand(args);
1719
- if (typeof optionsOrCb === "function") {
1720
- this.send(command, optionsOrCb);
1721
- } else if (typeof cb === "function") {
1722
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1723
- this.send(command, optionsOrCb || {}, cb);
1724
- } else {
1725
- return this.send(command, optionsOrCb);
1726
- }
1727
- }
1728
-
1729
- /**
1730
- * <p>Lists parent objects that are associated with a given object in pagination
1731
- * fashion.</p>
1732
- */
1733
- public listObjectParents(
1734
- args: ListObjectParentsCommandInput,
1735
- options?: __HttpHandlerOptions
1736
- ): Promise<ListObjectParentsCommandOutput>;
1737
- public listObjectParents(
1738
- args: ListObjectParentsCommandInput,
1739
- cb: (err: any, data?: ListObjectParentsCommandOutput) => void
1740
- ): void;
1741
- public listObjectParents(
1742
- args: ListObjectParentsCommandInput,
1743
- options: __HttpHandlerOptions,
1744
- cb: (err: any, data?: ListObjectParentsCommandOutput) => void
1745
- ): void;
1746
- public listObjectParents(
1747
- args: ListObjectParentsCommandInput,
1748
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListObjectParentsCommandOutput) => void),
1749
- cb?: (err: any, data?: ListObjectParentsCommandOutput) => void
1750
- ): Promise<ListObjectParentsCommandOutput> | void {
1751
- const command = new ListObjectParentsCommand(args);
1752
- if (typeof optionsOrCb === "function") {
1753
- this.send(command, optionsOrCb);
1754
- } else if (typeof cb === "function") {
1755
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1756
- this.send(command, optionsOrCb || {}, cb);
1757
- } else {
1758
- return this.send(command, optionsOrCb);
1759
- }
1760
- }
1761
-
1762
- /**
1763
- * <p>Returns policies attached to an object in pagination fashion.</p>
1764
- */
1765
- public listObjectPolicies(
1766
- args: ListObjectPoliciesCommandInput,
1767
- options?: __HttpHandlerOptions
1768
- ): Promise<ListObjectPoliciesCommandOutput>;
1769
- public listObjectPolicies(
1770
- args: ListObjectPoliciesCommandInput,
1771
- cb: (err: any, data?: ListObjectPoliciesCommandOutput) => void
1772
- ): void;
1773
- public listObjectPolicies(
1774
- args: ListObjectPoliciesCommandInput,
1775
- options: __HttpHandlerOptions,
1776
- cb: (err: any, data?: ListObjectPoliciesCommandOutput) => void
1777
- ): void;
1778
- public listObjectPolicies(
1779
- args: ListObjectPoliciesCommandInput,
1780
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListObjectPoliciesCommandOutput) => void),
1781
- cb?: (err: any, data?: ListObjectPoliciesCommandOutput) => void
1782
- ): Promise<ListObjectPoliciesCommandOutput> | void {
1783
- const command = new ListObjectPoliciesCommand(args);
1784
- if (typeof optionsOrCb === "function") {
1785
- this.send(command, optionsOrCb);
1786
- } else if (typeof cb === "function") {
1787
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1788
- this.send(command, optionsOrCb || {}, cb);
1789
- } else {
1790
- return this.send(command, optionsOrCb);
1791
- }
1792
- }
1793
-
1794
- /**
1795
- * <p>Returns a paginated list of all the outgoing <a>TypedLinkSpecifier</a>
1796
- * information for an object. It also supports filtering by typed link facet and identity
1797
- * 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>
1798
- */
1799
- public listOutgoingTypedLinks(
1800
- args: ListOutgoingTypedLinksCommandInput,
1801
- options?: __HttpHandlerOptions
1802
- ): Promise<ListOutgoingTypedLinksCommandOutput>;
1803
- public listOutgoingTypedLinks(
1804
- args: ListOutgoingTypedLinksCommandInput,
1805
- cb: (err: any, data?: ListOutgoingTypedLinksCommandOutput) => void
1806
- ): void;
1807
- public listOutgoingTypedLinks(
1808
- args: ListOutgoingTypedLinksCommandInput,
1809
- options: __HttpHandlerOptions,
1810
- cb: (err: any, data?: ListOutgoingTypedLinksCommandOutput) => void
1811
- ): void;
1812
- public listOutgoingTypedLinks(
1813
- args: ListOutgoingTypedLinksCommandInput,
1814
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListOutgoingTypedLinksCommandOutput) => void),
1815
- cb?: (err: any, data?: ListOutgoingTypedLinksCommandOutput) => void
1816
- ): Promise<ListOutgoingTypedLinksCommandOutput> | void {
1817
- const command = new ListOutgoingTypedLinksCommand(args);
1818
- if (typeof optionsOrCb === "function") {
1819
- this.send(command, optionsOrCb);
1820
- } else if (typeof cb === "function") {
1821
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1822
- this.send(command, optionsOrCb || {}, cb);
1823
- } else {
1824
- return this.send(command, optionsOrCb);
1825
- }
1826
- }
1827
-
1828
- /**
1829
- * <p>Returns all of the <code>ObjectIdentifiers</code> to which a given policy is attached.</p>
1830
- */
1831
- public listPolicyAttachments(
1832
- args: ListPolicyAttachmentsCommandInput,
1833
- options?: __HttpHandlerOptions
1834
- ): Promise<ListPolicyAttachmentsCommandOutput>;
1835
- public listPolicyAttachments(
1836
- args: ListPolicyAttachmentsCommandInput,
1837
- cb: (err: any, data?: ListPolicyAttachmentsCommandOutput) => void
1838
- ): void;
1839
- public listPolicyAttachments(
1840
- args: ListPolicyAttachmentsCommandInput,
1841
- options: __HttpHandlerOptions,
1842
- cb: (err: any, data?: ListPolicyAttachmentsCommandOutput) => void
1843
- ): void;
1844
- public listPolicyAttachments(
1845
- args: ListPolicyAttachmentsCommandInput,
1846
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListPolicyAttachmentsCommandOutput) => void),
1847
- cb?: (err: any, data?: ListPolicyAttachmentsCommandOutput) => void
1848
- ): Promise<ListPolicyAttachmentsCommandOutput> | void {
1849
- const command = new ListPolicyAttachmentsCommand(args);
1850
- if (typeof optionsOrCb === "function") {
1851
- this.send(command, optionsOrCb);
1852
- } else if (typeof cb === "function") {
1853
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1854
- this.send(command, optionsOrCb || {}, cb);
1855
- } else {
1856
- return this.send(command, optionsOrCb);
1857
- }
1858
- }
1859
-
1860
- /**
1861
- * <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>
1862
- */
1863
- public listPublishedSchemaArns(
1864
- args: ListPublishedSchemaArnsCommandInput,
1865
- options?: __HttpHandlerOptions
1866
- ): Promise<ListPublishedSchemaArnsCommandOutput>;
1867
- public listPublishedSchemaArns(
1868
- args: ListPublishedSchemaArnsCommandInput,
1869
- cb: (err: any, data?: ListPublishedSchemaArnsCommandOutput) => void
1870
- ): void;
1871
- public listPublishedSchemaArns(
1872
- args: ListPublishedSchemaArnsCommandInput,
1873
- options: __HttpHandlerOptions,
1874
- cb: (err: any, data?: ListPublishedSchemaArnsCommandOutput) => void
1875
- ): void;
1876
- public listPublishedSchemaArns(
1877
- args: ListPublishedSchemaArnsCommandInput,
1878
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListPublishedSchemaArnsCommandOutput) => void),
1879
- cb?: (err: any, data?: ListPublishedSchemaArnsCommandOutput) => void
1880
- ): Promise<ListPublishedSchemaArnsCommandOutput> | void {
1881
- const command = new ListPublishedSchemaArnsCommand(args);
1882
- if (typeof optionsOrCb === "function") {
1883
- this.send(command, optionsOrCb);
1884
- } else if (typeof cb === "function") {
1885
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1886
- this.send(command, optionsOrCb || {}, cb);
1887
- } else {
1888
- return this.send(command, optionsOrCb);
1889
- }
1890
- }
1891
-
1892
- /**
1893
- * <p>Returns tags for a resource. Tagging is currently supported only for directories with a
1894
- * limit of 50 tags per directory. All 50 tags are returned for a given directory with this API
1895
- * call.</p>
1896
- */
1897
- public listTagsForResource(
1898
- args: ListTagsForResourceCommandInput,
1899
- options?: __HttpHandlerOptions
1900
- ): Promise<ListTagsForResourceCommandOutput>;
1901
- public listTagsForResource(
1902
- args: ListTagsForResourceCommandInput,
1903
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
1904
- ): void;
1905
- public listTagsForResource(
1906
- args: ListTagsForResourceCommandInput,
1907
- options: __HttpHandlerOptions,
1908
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
1909
- ): void;
1910
- public listTagsForResource(
1911
- args: ListTagsForResourceCommandInput,
1912
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListTagsForResourceCommandOutput) => void),
1913
- cb?: (err: any, data?: ListTagsForResourceCommandOutput) => void
1914
- ): Promise<ListTagsForResourceCommandOutput> | void {
1915
- const command = new ListTagsForResourceCommand(args);
1916
- if (typeof optionsOrCb === "function") {
1917
- this.send(command, optionsOrCb);
1918
- } else if (typeof cb === "function") {
1919
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1920
- this.send(command, optionsOrCb || {}, cb);
1921
- } else {
1922
- return this.send(command, optionsOrCb);
1923
- }
1924
- }
1925
-
1926
- /**
1927
- * <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>
1928
- */
1929
- public listTypedLinkFacetAttributes(
1930
- args: ListTypedLinkFacetAttributesCommandInput,
1931
- options?: __HttpHandlerOptions
1932
- ): Promise<ListTypedLinkFacetAttributesCommandOutput>;
1933
- public listTypedLinkFacetAttributes(
1934
- args: ListTypedLinkFacetAttributesCommandInput,
1935
- cb: (err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void
1936
- ): void;
1937
- public listTypedLinkFacetAttributes(
1938
- args: ListTypedLinkFacetAttributesCommandInput,
1939
- options: __HttpHandlerOptions,
1940
- cb: (err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void
1941
- ): void;
1942
- public listTypedLinkFacetAttributes(
1943
- args: ListTypedLinkFacetAttributesCommandInput,
1944
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void),
1945
- cb?: (err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void
1946
- ): Promise<ListTypedLinkFacetAttributesCommandOutput> | void {
1947
- const command = new ListTypedLinkFacetAttributesCommand(args);
1948
- if (typeof optionsOrCb === "function") {
1949
- this.send(command, optionsOrCb);
1950
- } else if (typeof cb === "function") {
1951
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1952
- this.send(command, optionsOrCb || {}, cb);
1953
- } else {
1954
- return this.send(command, optionsOrCb);
1955
- }
1956
- }
1957
-
1958
- /**
1959
- * <p>Returns a paginated list of <code>TypedLink</code> facet names for a particular schema.
1960
- * 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>
1961
- */
1962
- public listTypedLinkFacetNames(
1963
- args: ListTypedLinkFacetNamesCommandInput,
1964
- options?: __HttpHandlerOptions
1965
- ): Promise<ListTypedLinkFacetNamesCommandOutput>;
1966
- public listTypedLinkFacetNames(
1967
- args: ListTypedLinkFacetNamesCommandInput,
1968
- cb: (err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void
1969
- ): void;
1970
- public listTypedLinkFacetNames(
1971
- args: ListTypedLinkFacetNamesCommandInput,
1972
- options: __HttpHandlerOptions,
1973
- cb: (err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void
1974
- ): void;
1975
- public listTypedLinkFacetNames(
1976
- args: ListTypedLinkFacetNamesCommandInput,
1977
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void),
1978
- cb?: (err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void
1979
- ): Promise<ListTypedLinkFacetNamesCommandOutput> | void {
1980
- const command = new ListTypedLinkFacetNamesCommand(args);
1981
- if (typeof optionsOrCb === "function") {
1982
- this.send(command, optionsOrCb);
1983
- } else if (typeof cb === "function") {
1984
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
1985
- this.send(command, optionsOrCb || {}, cb);
1986
- } else {
1987
- return this.send(command, optionsOrCb);
1988
- }
1989
- }
1990
-
1991
- /**
1992
- * <p>Lists all policies from the root of the <a>Directory</a> to the object
1993
- * specified. If there are no policies present, an empty list is returned. If policies are
1994
- * present, and if some objects don't have the policies attached, it returns the <code>ObjectIdentifier</code>
1995
- * for such objects. If policies are present, it returns <code>ObjectIdentifier</code>, <code>policyId</code>, and
1996
- * <code>policyType</code>. Paths that don't lead to the root from the target object are ignored. For more
1997
- * information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies">Policies</a>.</p>
1998
- */
1999
- public lookupPolicy(
2000
- args: LookupPolicyCommandInput,
2001
- options?: __HttpHandlerOptions
2002
- ): Promise<LookupPolicyCommandOutput>;
2003
- public lookupPolicy(args: LookupPolicyCommandInput, cb: (err: any, data?: LookupPolicyCommandOutput) => void): void;
2004
- public lookupPolicy(
2005
- args: LookupPolicyCommandInput,
2006
- options: __HttpHandlerOptions,
2007
- cb: (err: any, data?: LookupPolicyCommandOutput) => void
2008
- ): void;
2009
- public lookupPolicy(
2010
- args: LookupPolicyCommandInput,
2011
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: LookupPolicyCommandOutput) => void),
2012
- cb?: (err: any, data?: LookupPolicyCommandOutput) => void
2013
- ): Promise<LookupPolicyCommandOutput> | void {
2014
- const command = new LookupPolicyCommand(args);
2015
- if (typeof optionsOrCb === "function") {
2016
- this.send(command, optionsOrCb);
2017
- } else if (typeof cb === "function") {
2018
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2019
- this.send(command, optionsOrCb || {}, cb);
2020
- } else {
2021
- return this.send(command, optionsOrCb);
2022
- }
2023
- }
2024
-
2025
- /**
2026
- * <p>Publishes a development schema with a major version and a recommended minor version.</p>
2027
- */
2028
- public publishSchema(
2029
- args: PublishSchemaCommandInput,
2030
- options?: __HttpHandlerOptions
2031
- ): Promise<PublishSchemaCommandOutput>;
2032
- public publishSchema(
2033
- args: PublishSchemaCommandInput,
2034
- cb: (err: any, data?: PublishSchemaCommandOutput) => void
2035
- ): void;
2036
- public publishSchema(
2037
- args: PublishSchemaCommandInput,
2038
- options: __HttpHandlerOptions,
2039
- cb: (err: any, data?: PublishSchemaCommandOutput) => void
2040
- ): void;
2041
- public publishSchema(
2042
- args: PublishSchemaCommandInput,
2043
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: PublishSchemaCommandOutput) => void),
2044
- cb?: (err: any, data?: PublishSchemaCommandOutput) => void
2045
- ): Promise<PublishSchemaCommandOutput> | void {
2046
- const command = new PublishSchemaCommand(args);
2047
- if (typeof optionsOrCb === "function") {
2048
- this.send(command, optionsOrCb);
2049
- } else if (typeof cb === "function") {
2050
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2051
- this.send(command, optionsOrCb || {}, cb);
2052
- } else {
2053
- return this.send(command, optionsOrCb);
2054
- }
2055
- }
2056
-
2057
- /**
2058
- * <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>
2059
- */
2060
- public putSchemaFromJson(
2061
- args: PutSchemaFromJsonCommandInput,
2062
- options?: __HttpHandlerOptions
2063
- ): Promise<PutSchemaFromJsonCommandOutput>;
2064
- public putSchemaFromJson(
2065
- args: PutSchemaFromJsonCommandInput,
2066
- cb: (err: any, data?: PutSchemaFromJsonCommandOutput) => void
2067
- ): void;
2068
- public putSchemaFromJson(
2069
- args: PutSchemaFromJsonCommandInput,
2070
- options: __HttpHandlerOptions,
2071
- cb: (err: any, data?: PutSchemaFromJsonCommandOutput) => void
2072
- ): void;
2073
- public putSchemaFromJson(
2074
- args: PutSchemaFromJsonCommandInput,
2075
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: PutSchemaFromJsonCommandOutput) => void),
2076
- cb?: (err: any, data?: PutSchemaFromJsonCommandOutput) => void
2077
- ): Promise<PutSchemaFromJsonCommandOutput> | void {
2078
- const command = new PutSchemaFromJsonCommand(args);
2079
- if (typeof optionsOrCb === "function") {
2080
- this.send(command, optionsOrCb);
2081
- } else if (typeof cb === "function") {
2082
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2083
- this.send(command, optionsOrCb || {}, cb);
2084
- } else {
2085
- return this.send(command, optionsOrCb);
2086
- }
2087
- }
2088
-
2089
- /**
2090
- * <p>Removes the specified facet from the specified object.</p>
2091
- */
2092
- public removeFacetFromObject(
2093
- args: RemoveFacetFromObjectCommandInput,
2094
- options?: __HttpHandlerOptions
2095
- ): Promise<RemoveFacetFromObjectCommandOutput>;
2096
- public removeFacetFromObject(
2097
- args: RemoveFacetFromObjectCommandInput,
2098
- cb: (err: any, data?: RemoveFacetFromObjectCommandOutput) => void
2099
- ): void;
2100
- public removeFacetFromObject(
2101
- args: RemoveFacetFromObjectCommandInput,
2102
- options: __HttpHandlerOptions,
2103
- cb: (err: any, data?: RemoveFacetFromObjectCommandOutput) => void
2104
- ): void;
2105
- public removeFacetFromObject(
2106
- args: RemoveFacetFromObjectCommandInput,
2107
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: RemoveFacetFromObjectCommandOutput) => void),
2108
- cb?: (err: any, data?: RemoveFacetFromObjectCommandOutput) => void
2109
- ): Promise<RemoveFacetFromObjectCommandOutput> | void {
2110
- const command = new RemoveFacetFromObjectCommand(args);
2111
- if (typeof optionsOrCb === "function") {
2112
- this.send(command, optionsOrCb);
2113
- } else if (typeof cb === "function") {
2114
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2115
- this.send(command, optionsOrCb || {}, cb);
2116
- } else {
2117
- return this.send(command, optionsOrCb);
2118
- }
2119
- }
2120
-
2121
- /**
2122
- * <p>An API operation for adding tags to a resource.</p>
2123
- */
2124
- public tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
2125
- public tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
2126
- public tagResource(
2127
- args: TagResourceCommandInput,
2128
- options: __HttpHandlerOptions,
2129
- cb: (err: any, data?: TagResourceCommandOutput) => void
2130
- ): void;
2131
- public tagResource(
2132
- args: TagResourceCommandInput,
2133
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: TagResourceCommandOutput) => void),
2134
- cb?: (err: any, data?: TagResourceCommandOutput) => void
2135
- ): Promise<TagResourceCommandOutput> | void {
2136
- const command = new TagResourceCommand(args);
2137
- if (typeof optionsOrCb === "function") {
2138
- this.send(command, optionsOrCb);
2139
- } else if (typeof cb === "function") {
2140
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2141
- this.send(command, optionsOrCb || {}, cb);
2142
- } else {
2143
- return this.send(command, optionsOrCb);
2144
- }
2145
- }
2146
-
2147
- /**
2148
- * <p>An API operation for removing tags from a resource.</p>
2149
- */
2150
- public untagResource(
2151
- args: UntagResourceCommandInput,
2152
- options?: __HttpHandlerOptions
2153
- ): Promise<UntagResourceCommandOutput>;
2154
- public untagResource(
2155
- args: UntagResourceCommandInput,
2156
- cb: (err: any, data?: UntagResourceCommandOutput) => void
2157
- ): void;
2158
- public untagResource(
2159
- args: UntagResourceCommandInput,
2160
- options: __HttpHandlerOptions,
2161
- cb: (err: any, data?: UntagResourceCommandOutput) => void
2162
- ): void;
2163
- public untagResource(
2164
- args: UntagResourceCommandInput,
2165
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UntagResourceCommandOutput) => void),
2166
- cb?: (err: any, data?: UntagResourceCommandOutput) => void
2167
- ): Promise<UntagResourceCommandOutput> | void {
2168
- const command = new UntagResourceCommand(args);
2169
- if (typeof optionsOrCb === "function") {
2170
- this.send(command, optionsOrCb);
2171
- } else if (typeof cb === "function") {
2172
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2173
- this.send(command, optionsOrCb || {}, cb);
2174
- } else {
2175
- return this.send(command, optionsOrCb);
2176
- }
2177
- }
2178
-
2179
- /**
2180
- * <p>Does the following:</p>
2181
- * <ol>
2182
- * <li>
2183
- * <p>Adds new <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
2184
- * </li>
2185
- * <li>
2186
- * <p>Updates existing <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
2187
- * </li>
2188
- * <li>
2189
- * <p>Deletes existing <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
2190
- * </li>
2191
- * </ol>
2192
- */
2193
- public updateFacet(args: UpdateFacetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFacetCommandOutput>;
2194
- public updateFacet(args: UpdateFacetCommandInput, cb: (err: any, data?: UpdateFacetCommandOutput) => void): void;
2195
- public updateFacet(
2196
- args: UpdateFacetCommandInput,
2197
- options: __HttpHandlerOptions,
2198
- cb: (err: any, data?: UpdateFacetCommandOutput) => void
2199
- ): void;
2200
- public updateFacet(
2201
- args: UpdateFacetCommandInput,
2202
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateFacetCommandOutput) => void),
2203
- cb?: (err: any, data?: UpdateFacetCommandOutput) => void
2204
- ): Promise<UpdateFacetCommandOutput> | void {
2205
- const command = new UpdateFacetCommand(args);
2206
- if (typeof optionsOrCb === "function") {
2207
- this.send(command, optionsOrCb);
2208
- } else if (typeof cb === "function") {
2209
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2210
- this.send(command, optionsOrCb || {}, cb);
2211
- } else {
2212
- return this.send(command, optionsOrCb);
2213
- }
2214
- }
2215
-
2216
- /**
2217
- * <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>
2218
- */
2219
- public updateLinkAttributes(
2220
- args: UpdateLinkAttributesCommandInput,
2221
- options?: __HttpHandlerOptions
2222
- ): Promise<UpdateLinkAttributesCommandOutput>;
2223
- public updateLinkAttributes(
2224
- args: UpdateLinkAttributesCommandInput,
2225
- cb: (err: any, data?: UpdateLinkAttributesCommandOutput) => void
2226
- ): void;
2227
- public updateLinkAttributes(
2228
- args: UpdateLinkAttributesCommandInput,
2229
- options: __HttpHandlerOptions,
2230
- cb: (err: any, data?: UpdateLinkAttributesCommandOutput) => void
2231
- ): void;
2232
- public updateLinkAttributes(
2233
- args: UpdateLinkAttributesCommandInput,
2234
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateLinkAttributesCommandOutput) => void),
2235
- cb?: (err: any, data?: UpdateLinkAttributesCommandOutput) => void
2236
- ): Promise<UpdateLinkAttributesCommandOutput> | void {
2237
- const command = new UpdateLinkAttributesCommand(args);
2238
- if (typeof optionsOrCb === "function") {
2239
- this.send(command, optionsOrCb);
2240
- } else if (typeof cb === "function") {
2241
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2242
- this.send(command, optionsOrCb || {}, cb);
2243
- } else {
2244
- return this.send(command, optionsOrCb);
2245
- }
2246
- }
2247
-
2248
- /**
2249
- * <p>Updates a given object's attributes.</p>
2250
- */
2251
- public updateObjectAttributes(
2252
- args: UpdateObjectAttributesCommandInput,
2253
- options?: __HttpHandlerOptions
2254
- ): Promise<UpdateObjectAttributesCommandOutput>;
2255
- public updateObjectAttributes(
2256
- args: UpdateObjectAttributesCommandInput,
2257
- cb: (err: any, data?: UpdateObjectAttributesCommandOutput) => void
2258
- ): void;
2259
- public updateObjectAttributes(
2260
- args: UpdateObjectAttributesCommandInput,
2261
- options: __HttpHandlerOptions,
2262
- cb: (err: any, data?: UpdateObjectAttributesCommandOutput) => void
2263
- ): void;
2264
- public updateObjectAttributes(
2265
- args: UpdateObjectAttributesCommandInput,
2266
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateObjectAttributesCommandOutput) => void),
2267
- cb?: (err: any, data?: UpdateObjectAttributesCommandOutput) => void
2268
- ): Promise<UpdateObjectAttributesCommandOutput> | void {
2269
- const command = new UpdateObjectAttributesCommand(args);
2270
- if (typeof optionsOrCb === "function") {
2271
- this.send(command, optionsOrCb);
2272
- } else if (typeof cb === "function") {
2273
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2274
- this.send(command, optionsOrCb || {}, cb);
2275
- } else {
2276
- return this.send(command, optionsOrCb);
2277
- }
2278
- }
2279
-
2280
- /**
2281
- * <p>Updates the schema name with a new name. Only development schema names can be
2282
- * updated.</p>
2283
- */
2284
- public updateSchema(
2285
- args: UpdateSchemaCommandInput,
2286
- options?: __HttpHandlerOptions
2287
- ): Promise<UpdateSchemaCommandOutput>;
2288
- public updateSchema(args: UpdateSchemaCommandInput, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
2289
- public updateSchema(
2290
- args: UpdateSchemaCommandInput,
2291
- options: __HttpHandlerOptions,
2292
- cb: (err: any, data?: UpdateSchemaCommandOutput) => void
2293
- ): void;
2294
- public updateSchema(
2295
- args: UpdateSchemaCommandInput,
2296
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateSchemaCommandOutput) => void),
2297
- cb?: (err: any, data?: UpdateSchemaCommandOutput) => void
2298
- ): Promise<UpdateSchemaCommandOutput> | void {
2299
- const command = new UpdateSchemaCommand(args);
2300
- if (typeof optionsOrCb === "function") {
2301
- this.send(command, optionsOrCb);
2302
- } else if (typeof cb === "function") {
2303
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2304
- this.send(command, optionsOrCb || {}, cb);
2305
- } else {
2306
- return this.send(command, optionsOrCb);
2307
- }
2308
- }
2309
-
2310
- /**
2311
- * <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>
2312
- */
2313
- public updateTypedLinkFacet(
2314
- args: UpdateTypedLinkFacetCommandInput,
2315
- options?: __HttpHandlerOptions
2316
- ): Promise<UpdateTypedLinkFacetCommandOutput>;
2317
- public updateTypedLinkFacet(
2318
- args: UpdateTypedLinkFacetCommandInput,
2319
- cb: (err: any, data?: UpdateTypedLinkFacetCommandOutput) => void
2320
- ): void;
2321
- public updateTypedLinkFacet(
2322
- args: UpdateTypedLinkFacetCommandInput,
2323
- options: __HttpHandlerOptions,
2324
- cb: (err: any, data?: UpdateTypedLinkFacetCommandOutput) => void
2325
- ): void;
2326
- public updateTypedLinkFacet(
2327
- args: UpdateTypedLinkFacetCommandInput,
2328
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateTypedLinkFacetCommandOutput) => void),
2329
- cb?: (err: any, data?: UpdateTypedLinkFacetCommandOutput) => void
2330
- ): Promise<UpdateTypedLinkFacetCommandOutput> | void {
2331
- const command = new UpdateTypedLinkFacetCommand(args);
2332
- if (typeof optionsOrCb === "function") {
2333
- this.send(command, optionsOrCb);
2334
- } else if (typeof cb === "function") {
2335
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2336
- this.send(command, optionsOrCb || {}, cb);
2337
- } else {
2338
- return this.send(command, optionsOrCb);
2339
- }
2340
- }
2341
-
2342
- /**
2343
- * <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>
2344
- */
2345
- public upgradeAppliedSchema(
2346
- args: UpgradeAppliedSchemaCommandInput,
2347
- options?: __HttpHandlerOptions
2348
- ): Promise<UpgradeAppliedSchemaCommandOutput>;
2349
- public upgradeAppliedSchema(
2350
- args: UpgradeAppliedSchemaCommandInput,
2351
- cb: (err: any, data?: UpgradeAppliedSchemaCommandOutput) => void
2352
- ): void;
2353
- public upgradeAppliedSchema(
2354
- args: UpgradeAppliedSchemaCommandInput,
2355
- options: __HttpHandlerOptions,
2356
- cb: (err: any, data?: UpgradeAppliedSchemaCommandOutput) => void
2357
- ): void;
2358
- public upgradeAppliedSchema(
2359
- args: UpgradeAppliedSchemaCommandInput,
2360
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpgradeAppliedSchemaCommandOutput) => void),
2361
- cb?: (err: any, data?: UpgradeAppliedSchemaCommandOutput) => void
2362
- ): Promise<UpgradeAppliedSchemaCommandOutput> | void {
2363
- const command = new UpgradeAppliedSchemaCommand(args);
2364
- if (typeof optionsOrCb === "function") {
2365
- this.send(command, optionsOrCb);
2366
- } else if (typeof cb === "function") {
2367
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2368
- this.send(command, optionsOrCb || {}, cb);
2369
- } else {
2370
- return this.send(command, optionsOrCb);
2371
- }
2372
- }
2373
-
2374
- /**
2375
- * <p>Upgrades a published schema under a new minor version revision using the current contents of <code>DevelopmentSchemaArn</code>.</p>
2376
- */
2377
- public upgradePublishedSchema(
2378
- args: UpgradePublishedSchemaCommandInput,
2379
- options?: __HttpHandlerOptions
2380
- ): Promise<UpgradePublishedSchemaCommandOutput>;
2381
- public upgradePublishedSchema(
2382
- args: UpgradePublishedSchemaCommandInput,
2383
- cb: (err: any, data?: UpgradePublishedSchemaCommandOutput) => void
2384
- ): void;
2385
- public upgradePublishedSchema(
2386
- args: UpgradePublishedSchemaCommandInput,
2387
- options: __HttpHandlerOptions,
2388
- cb: (err: any, data?: UpgradePublishedSchemaCommandOutput) => void
2389
- ): void;
2390
- public upgradePublishedSchema(
2391
- args: UpgradePublishedSchemaCommandInput,
2392
- optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpgradePublishedSchemaCommandOutput) => void),
2393
- cb?: (err: any, data?: UpgradePublishedSchemaCommandOutput) => void
2394
- ): Promise<UpgradePublishedSchemaCommandOutput> | void {
2395
- const command = new UpgradePublishedSchemaCommand(args);
2396
- if (typeof optionsOrCb === "function") {
2397
- this.send(command, optionsOrCb);
2398
- } else if (typeof cb === "function") {
2399
- if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
2400
- this.send(command, optionsOrCb || {}, cb);
2401
- } else {
2402
- return this.send(command, optionsOrCb);
2403
- }
2404
- }
2405
- }