@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
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
4
+ import { UpdateLinkAttributesRequest, UpdateLinkAttributesResponse } from "../models/models_0";
5
+ export interface UpdateLinkAttributesCommandInput extends UpdateLinkAttributesRequest {
6
+ }
7
+ export interface UpdateLinkAttributesCommandOutput extends UpdateLinkAttributesResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <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>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { CloudDirectoryClient, UpdateLinkAttributesCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
15
+ * // const { CloudDirectoryClient, UpdateLinkAttributesCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
16
+ * const client = new CloudDirectoryClient(config);
17
+ * const command = new UpdateLinkAttributesCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateLinkAttributesCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateLinkAttributesCommandOutput} for command's `response` shape.
23
+ * @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
24
+ *
25
+ */
26
+ export declare class UpdateLinkAttributesCommand extends $Command<UpdateLinkAttributesCommandInput, UpdateLinkAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
27
+ readonly input: UpdateLinkAttributesCommandInput;
28
+ constructor(input: UpdateLinkAttributesCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudDirectoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLinkAttributesCommandInput, UpdateLinkAttributesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
4
+ import { UpdateObjectAttributesRequest, UpdateObjectAttributesResponse } from "../models/models_0";
5
+ export interface UpdateObjectAttributesCommandInput extends UpdateObjectAttributesRequest {
6
+ }
7
+ export interface UpdateObjectAttributesCommandOutput extends UpdateObjectAttributesResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates a given object's attributes.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { CloudDirectoryClient, UpdateObjectAttributesCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
15
+ * // const { CloudDirectoryClient, UpdateObjectAttributesCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
16
+ * const client = new CloudDirectoryClient(config);
17
+ * const command = new UpdateObjectAttributesCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateObjectAttributesCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateObjectAttributesCommandOutput} for command's `response` shape.
23
+ * @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
24
+ *
25
+ */
26
+ export declare class UpdateObjectAttributesCommand extends $Command<UpdateObjectAttributesCommandInput, UpdateObjectAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
27
+ readonly input: UpdateObjectAttributesCommandInput;
28
+ constructor(input: UpdateObjectAttributesCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudDirectoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateObjectAttributesCommandInput, UpdateObjectAttributesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
4
+ import { UpdateSchemaRequest, UpdateSchemaResponse } from "../models/models_0";
5
+ export interface UpdateSchemaCommandInput extends UpdateSchemaRequest {
6
+ }
7
+ export interface UpdateSchemaCommandOutput extends UpdateSchemaResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates the schema name with a new name. Only development schema names can be
11
+ * updated.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { CloudDirectoryClient, UpdateSchemaCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
16
+ * // const { CloudDirectoryClient, UpdateSchemaCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
17
+ * const client = new CloudDirectoryClient(config);
18
+ * const command = new UpdateSchemaCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link UpdateSchemaCommandInput} for command's `input` shape.
23
+ * @see {@link UpdateSchemaCommandOutput} for command's `response` shape.
24
+ * @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
25
+ *
26
+ */
27
+ export declare class UpdateSchemaCommand extends $Command<UpdateSchemaCommandInput, UpdateSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
28
+ readonly input: UpdateSchemaCommandInput;
29
+ constructor(input: UpdateSchemaCommandInput);
30
+ /**
31
+ * @internal
32
+ */
33
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudDirectoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSchemaCommandInput, UpdateSchemaCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
4
+ import { UpdateTypedLinkFacetRequest, UpdateTypedLinkFacetResponse } from "../models/models_0";
5
+ export interface UpdateTypedLinkFacetCommandInput extends UpdateTypedLinkFacetRequest {
6
+ }
7
+ export interface UpdateTypedLinkFacetCommandOutput extends UpdateTypedLinkFacetResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <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>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { CloudDirectoryClient, UpdateTypedLinkFacetCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
15
+ * // const { CloudDirectoryClient, UpdateTypedLinkFacetCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
16
+ * const client = new CloudDirectoryClient(config);
17
+ * const command = new UpdateTypedLinkFacetCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateTypedLinkFacetCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateTypedLinkFacetCommandOutput} for command's `response` shape.
23
+ * @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
24
+ *
25
+ */
26
+ export declare class UpdateTypedLinkFacetCommand extends $Command<UpdateTypedLinkFacetCommandInput, UpdateTypedLinkFacetCommandOutput, CloudDirectoryClientResolvedConfig> {
27
+ readonly input: UpdateTypedLinkFacetCommandInput;
28
+ constructor(input: UpdateTypedLinkFacetCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudDirectoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTypedLinkFacetCommandInput, UpdateTypedLinkFacetCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
4
+ import { UpgradeAppliedSchemaRequest, UpgradeAppliedSchemaResponse } from "../models/models_0";
5
+ export interface UpgradeAppliedSchemaCommandInput extends UpgradeAppliedSchemaRequest {
6
+ }
7
+ export interface UpgradeAppliedSchemaCommandOutput extends UpgradeAppliedSchemaResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <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>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { CloudDirectoryClient, UpgradeAppliedSchemaCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
15
+ * // const { CloudDirectoryClient, UpgradeAppliedSchemaCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
16
+ * const client = new CloudDirectoryClient(config);
17
+ * const command = new UpgradeAppliedSchemaCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpgradeAppliedSchemaCommandInput} for command's `input` shape.
22
+ * @see {@link UpgradeAppliedSchemaCommandOutput} for command's `response` shape.
23
+ * @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
24
+ *
25
+ */
26
+ export declare class UpgradeAppliedSchemaCommand extends $Command<UpgradeAppliedSchemaCommandInput, UpgradeAppliedSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
27
+ readonly input: UpgradeAppliedSchemaCommandInput;
28
+ constructor(input: UpgradeAppliedSchemaCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudDirectoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpgradeAppliedSchemaCommandInput, UpgradeAppliedSchemaCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
4
+ import { UpgradePublishedSchemaRequest, UpgradePublishedSchemaResponse } from "../models/models_0";
5
+ export interface UpgradePublishedSchemaCommandInput extends UpgradePublishedSchemaRequest {
6
+ }
7
+ export interface UpgradePublishedSchemaCommandOutput extends UpgradePublishedSchemaResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Upgrades a published schema under a new minor version revision using the current contents of <code>DevelopmentSchemaArn</code>.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { CloudDirectoryClient, UpgradePublishedSchemaCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
15
+ * // const { CloudDirectoryClient, UpgradePublishedSchemaCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
16
+ * const client = new CloudDirectoryClient(config);
17
+ * const command = new UpgradePublishedSchemaCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpgradePublishedSchemaCommandInput} for command's `input` shape.
22
+ * @see {@link UpgradePublishedSchemaCommandOutput} for command's `response` shape.
23
+ * @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
24
+ *
25
+ */
26
+ export declare class UpgradePublishedSchemaCommand extends $Command<UpgradePublishedSchemaCommandInput, UpgradePublishedSchemaCommandOutput, CloudDirectoryClientResolvedConfig> {
27
+ readonly input: UpgradePublishedSchemaCommandInput;
28
+ constructor(input: UpgradePublishedSchemaCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudDirectoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpgradePublishedSchemaCommandInput, UpgradePublishedSchemaCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
File without changes
File without changes
File without changes
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { CloudDirectory } from "../CloudDirectory";
3
+ import { CloudDirectoryClient } from "../CloudDirectoryClient";
4
+ export interface CloudDirectoryPaginationConfiguration extends PaginationConfiguration {
5
+ client: CloudDirectory | CloudDirectoryClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListAppliedSchemaArnsCommandInput, ListAppliedSchemaArnsCommandOutput } from "../commands/ListAppliedSchemaArnsCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListAppliedSchemaArns(config: CloudDirectoryPaginationConfiguration, input: ListAppliedSchemaArnsCommandInput, ...additionalArguments: any): Paginator<ListAppliedSchemaArnsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListAttachedIndicesCommandInput, ListAttachedIndicesCommandOutput } from "../commands/ListAttachedIndicesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListAttachedIndices(config: CloudDirectoryPaginationConfiguration, input: ListAttachedIndicesCommandInput, ...additionalArguments: any): Paginator<ListAttachedIndicesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListDevelopmentSchemaArnsCommandInput, ListDevelopmentSchemaArnsCommandOutput } from "../commands/ListDevelopmentSchemaArnsCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListDevelopmentSchemaArns(config: CloudDirectoryPaginationConfiguration, input: ListDevelopmentSchemaArnsCommandInput, ...additionalArguments: any): Paginator<ListDevelopmentSchemaArnsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListDirectoriesCommandInput, ListDirectoriesCommandOutput } from "../commands/ListDirectoriesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListDirectories(config: CloudDirectoryPaginationConfiguration, input: ListDirectoriesCommandInput, ...additionalArguments: any): Paginator<ListDirectoriesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListFacetAttributesCommandInput, ListFacetAttributesCommandOutput } from "../commands/ListFacetAttributesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListFacetAttributes(config: CloudDirectoryPaginationConfiguration, input: ListFacetAttributesCommandInput, ...additionalArguments: any): Paginator<ListFacetAttributesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListFacetNamesCommandInput, ListFacetNamesCommandOutput } from "../commands/ListFacetNamesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListFacetNames(config: CloudDirectoryPaginationConfiguration, input: ListFacetNamesCommandInput, ...additionalArguments: any): Paginator<ListFacetNamesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListIndexCommandInput, ListIndexCommandOutput } from "../commands/ListIndexCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListIndex(config: CloudDirectoryPaginationConfiguration, input: ListIndexCommandInput, ...additionalArguments: any): Paginator<ListIndexCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListManagedSchemaArnsCommandInput, ListManagedSchemaArnsCommandOutput } from "../commands/ListManagedSchemaArnsCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListManagedSchemaArns(config: CloudDirectoryPaginationConfiguration, input: ListManagedSchemaArnsCommandInput, ...additionalArguments: any): Paginator<ListManagedSchemaArnsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListObjectAttributesCommandInput, ListObjectAttributesCommandOutput } from "../commands/ListObjectAttributesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListObjectAttributes(config: CloudDirectoryPaginationConfiguration, input: ListObjectAttributesCommandInput, ...additionalArguments: any): Paginator<ListObjectAttributesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListObjectChildrenCommandInput, ListObjectChildrenCommandOutput } from "../commands/ListObjectChildrenCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListObjectChildren(config: CloudDirectoryPaginationConfiguration, input: ListObjectChildrenCommandInput, ...additionalArguments: any): Paginator<ListObjectChildrenCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListObjectParentPathsCommandInput, ListObjectParentPathsCommandOutput } from "../commands/ListObjectParentPathsCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListObjectParentPaths(config: CloudDirectoryPaginationConfiguration, input: ListObjectParentPathsCommandInput, ...additionalArguments: any): Paginator<ListObjectParentPathsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListObjectParentsCommandInput, ListObjectParentsCommandOutput } from "../commands/ListObjectParentsCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListObjectParents(config: CloudDirectoryPaginationConfiguration, input: ListObjectParentsCommandInput, ...additionalArguments: any): Paginator<ListObjectParentsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListObjectPoliciesCommandInput, ListObjectPoliciesCommandOutput } from "../commands/ListObjectPoliciesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListObjectPolicies(config: CloudDirectoryPaginationConfiguration, input: ListObjectPoliciesCommandInput, ...additionalArguments: any): Paginator<ListObjectPoliciesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPolicyAttachmentsCommandInput, ListPolicyAttachmentsCommandOutput } from "../commands/ListPolicyAttachmentsCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPolicyAttachments(config: CloudDirectoryPaginationConfiguration, input: ListPolicyAttachmentsCommandInput, ...additionalArguments: any): Paginator<ListPolicyAttachmentsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPublishedSchemaArnsCommandInput, ListPublishedSchemaArnsCommandOutput } from "../commands/ListPublishedSchemaArnsCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPublishedSchemaArns(config: CloudDirectoryPaginationConfiguration, input: ListPublishedSchemaArnsCommandInput, ...additionalArguments: any): Paginator<ListPublishedSchemaArnsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTagsForResource(config: CloudDirectoryPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTypedLinkFacetAttributesCommandInput, ListTypedLinkFacetAttributesCommandOutput } from "../commands/ListTypedLinkFacetAttributesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTypedLinkFacetAttributes(config: CloudDirectoryPaginationConfiguration, input: ListTypedLinkFacetAttributesCommandInput, ...additionalArguments: any): Paginator<ListTypedLinkFacetAttributesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTypedLinkFacetNamesCommandInput, ListTypedLinkFacetNamesCommandOutput } from "../commands/ListTypedLinkFacetNamesCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTypedLinkFacetNames(config: CloudDirectoryPaginationConfiguration, input: ListTypedLinkFacetNamesCommandInput, ...additionalArguments: any): Paginator<ListTypedLinkFacetNamesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { LookupPolicyCommandInput, LookupPolicyCommandOutput } from "../commands/LookupPolicyCommand";
3
+ import { CloudDirectoryPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateLookupPolicy(config: CloudDirectoryPaginationConfiguration, input: LookupPolicyCommandInput, ...additionalArguments: any): Paginator<LookupPolicyCommandOutput>;
@@ -0,0 +1,200 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { AddFacetToObjectCommandInput, AddFacetToObjectCommandOutput } from "../commands/AddFacetToObjectCommand";
4
+ import { ApplySchemaCommandInput, ApplySchemaCommandOutput } from "../commands/ApplySchemaCommand";
5
+ import { AttachObjectCommandInput, AttachObjectCommandOutput } from "../commands/AttachObjectCommand";
6
+ import { AttachPolicyCommandInput, AttachPolicyCommandOutput } from "../commands/AttachPolicyCommand";
7
+ import { AttachToIndexCommandInput, AttachToIndexCommandOutput } from "../commands/AttachToIndexCommand";
8
+ import { AttachTypedLinkCommandInput, AttachTypedLinkCommandOutput } from "../commands/AttachTypedLinkCommand";
9
+ import { BatchReadCommandInput, BatchReadCommandOutput } from "../commands/BatchReadCommand";
10
+ import { BatchWriteCommandInput, BatchWriteCommandOutput } from "../commands/BatchWriteCommand";
11
+ import { CreateDirectoryCommandInput, CreateDirectoryCommandOutput } from "../commands/CreateDirectoryCommand";
12
+ import { CreateFacetCommandInput, CreateFacetCommandOutput } from "../commands/CreateFacetCommand";
13
+ import { CreateIndexCommandInput, CreateIndexCommandOutput } from "../commands/CreateIndexCommand";
14
+ import { CreateObjectCommandInput, CreateObjectCommandOutput } from "../commands/CreateObjectCommand";
15
+ import { CreateSchemaCommandInput, CreateSchemaCommandOutput } from "../commands/CreateSchemaCommand";
16
+ import { CreateTypedLinkFacetCommandInput, CreateTypedLinkFacetCommandOutput } from "../commands/CreateTypedLinkFacetCommand";
17
+ import { DeleteDirectoryCommandInput, DeleteDirectoryCommandOutput } from "../commands/DeleteDirectoryCommand";
18
+ import { DeleteFacetCommandInput, DeleteFacetCommandOutput } from "../commands/DeleteFacetCommand";
19
+ import { DeleteObjectCommandInput, DeleteObjectCommandOutput } from "../commands/DeleteObjectCommand";
20
+ import { DeleteSchemaCommandInput, DeleteSchemaCommandOutput } from "../commands/DeleteSchemaCommand";
21
+ import { DeleteTypedLinkFacetCommandInput, DeleteTypedLinkFacetCommandOutput } from "../commands/DeleteTypedLinkFacetCommand";
22
+ import { DetachFromIndexCommandInput, DetachFromIndexCommandOutput } from "../commands/DetachFromIndexCommand";
23
+ import { DetachObjectCommandInput, DetachObjectCommandOutput } from "../commands/DetachObjectCommand";
24
+ import { DetachPolicyCommandInput, DetachPolicyCommandOutput } from "../commands/DetachPolicyCommand";
25
+ import { DetachTypedLinkCommandInput, DetachTypedLinkCommandOutput } from "../commands/DetachTypedLinkCommand";
26
+ import { DisableDirectoryCommandInput, DisableDirectoryCommandOutput } from "../commands/DisableDirectoryCommand";
27
+ import { EnableDirectoryCommandInput, EnableDirectoryCommandOutput } from "../commands/EnableDirectoryCommand";
28
+ import { GetAppliedSchemaVersionCommandInput, GetAppliedSchemaVersionCommandOutput } from "../commands/GetAppliedSchemaVersionCommand";
29
+ import { GetDirectoryCommandInput, GetDirectoryCommandOutput } from "../commands/GetDirectoryCommand";
30
+ import { GetFacetCommandInput, GetFacetCommandOutput } from "../commands/GetFacetCommand";
31
+ import { GetLinkAttributesCommandInput, GetLinkAttributesCommandOutput } from "../commands/GetLinkAttributesCommand";
32
+ import { GetObjectAttributesCommandInput, GetObjectAttributesCommandOutput } from "../commands/GetObjectAttributesCommand";
33
+ import { GetObjectInformationCommandInput, GetObjectInformationCommandOutput } from "../commands/GetObjectInformationCommand";
34
+ import { GetSchemaAsJsonCommandInput, GetSchemaAsJsonCommandOutput } from "../commands/GetSchemaAsJsonCommand";
35
+ import { GetTypedLinkFacetInformationCommandInput, GetTypedLinkFacetInformationCommandOutput } from "../commands/GetTypedLinkFacetInformationCommand";
36
+ import { ListAppliedSchemaArnsCommandInput, ListAppliedSchemaArnsCommandOutput } from "../commands/ListAppliedSchemaArnsCommand";
37
+ import { ListAttachedIndicesCommandInput, ListAttachedIndicesCommandOutput } from "../commands/ListAttachedIndicesCommand";
38
+ import { ListDevelopmentSchemaArnsCommandInput, ListDevelopmentSchemaArnsCommandOutput } from "../commands/ListDevelopmentSchemaArnsCommand";
39
+ import { ListDirectoriesCommandInput, ListDirectoriesCommandOutput } from "../commands/ListDirectoriesCommand";
40
+ import { ListFacetAttributesCommandInput, ListFacetAttributesCommandOutput } from "../commands/ListFacetAttributesCommand";
41
+ import { ListFacetNamesCommandInput, ListFacetNamesCommandOutput } from "../commands/ListFacetNamesCommand";
42
+ import { ListIncomingTypedLinksCommandInput, ListIncomingTypedLinksCommandOutput } from "../commands/ListIncomingTypedLinksCommand";
43
+ import { ListIndexCommandInput, ListIndexCommandOutput } from "../commands/ListIndexCommand";
44
+ import { ListManagedSchemaArnsCommandInput, ListManagedSchemaArnsCommandOutput } from "../commands/ListManagedSchemaArnsCommand";
45
+ import { ListObjectAttributesCommandInput, ListObjectAttributesCommandOutput } from "../commands/ListObjectAttributesCommand";
46
+ import { ListObjectChildrenCommandInput, ListObjectChildrenCommandOutput } from "../commands/ListObjectChildrenCommand";
47
+ import { ListObjectParentPathsCommandInput, ListObjectParentPathsCommandOutput } from "../commands/ListObjectParentPathsCommand";
48
+ import { ListObjectParentsCommandInput, ListObjectParentsCommandOutput } from "../commands/ListObjectParentsCommand";
49
+ import { ListObjectPoliciesCommandInput, ListObjectPoliciesCommandOutput } from "../commands/ListObjectPoliciesCommand";
50
+ import { ListOutgoingTypedLinksCommandInput, ListOutgoingTypedLinksCommandOutput } from "../commands/ListOutgoingTypedLinksCommand";
51
+ import { ListPolicyAttachmentsCommandInput, ListPolicyAttachmentsCommandOutput } from "../commands/ListPolicyAttachmentsCommand";
52
+ import { ListPublishedSchemaArnsCommandInput, ListPublishedSchemaArnsCommandOutput } from "../commands/ListPublishedSchemaArnsCommand";
53
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
54
+ import { ListTypedLinkFacetAttributesCommandInput, ListTypedLinkFacetAttributesCommandOutput } from "../commands/ListTypedLinkFacetAttributesCommand";
55
+ import { ListTypedLinkFacetNamesCommandInput, ListTypedLinkFacetNamesCommandOutput } from "../commands/ListTypedLinkFacetNamesCommand";
56
+ import { LookupPolicyCommandInput, LookupPolicyCommandOutput } from "../commands/LookupPolicyCommand";
57
+ import { PublishSchemaCommandInput, PublishSchemaCommandOutput } from "../commands/PublishSchemaCommand";
58
+ import { PutSchemaFromJsonCommandInput, PutSchemaFromJsonCommandOutput } from "../commands/PutSchemaFromJsonCommand";
59
+ import { RemoveFacetFromObjectCommandInput, RemoveFacetFromObjectCommandOutput } from "../commands/RemoveFacetFromObjectCommand";
60
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
61
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
62
+ import { UpdateFacetCommandInput, UpdateFacetCommandOutput } from "../commands/UpdateFacetCommand";
63
+ import { UpdateLinkAttributesCommandInput, UpdateLinkAttributesCommandOutput } from "../commands/UpdateLinkAttributesCommand";
64
+ import { UpdateObjectAttributesCommandInput, UpdateObjectAttributesCommandOutput } from "../commands/UpdateObjectAttributesCommand";
65
+ import { UpdateSchemaCommandInput, UpdateSchemaCommandOutput } from "../commands/UpdateSchemaCommand";
66
+ import { UpdateTypedLinkFacetCommandInput, UpdateTypedLinkFacetCommandOutput } from "../commands/UpdateTypedLinkFacetCommand";
67
+ import { UpgradeAppliedSchemaCommandInput, UpgradeAppliedSchemaCommandOutput } from "../commands/UpgradeAppliedSchemaCommand";
68
+ import { UpgradePublishedSchemaCommandInput, UpgradePublishedSchemaCommandOutput } from "../commands/UpgradePublishedSchemaCommand";
69
+ export declare const serializeAws_restJson1AddFacetToObjectCommand: (input: AddFacetToObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_restJson1ApplySchemaCommand: (input: ApplySchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
+ export declare const serializeAws_restJson1AttachObjectCommand: (input: AttachObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
+ export declare const serializeAws_restJson1AttachPolicyCommand: (input: AttachPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
+ export declare const serializeAws_restJson1AttachToIndexCommand: (input: AttachToIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1AttachTypedLinkCommand: (input: AttachTypedLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ export declare const serializeAws_restJson1BatchReadCommand: (input: BatchReadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
+ export declare const serializeAws_restJson1BatchWriteCommand: (input: BatchWriteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
+ export declare const serializeAws_restJson1CreateDirectoryCommand: (input: CreateDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1CreateFacetCommand: (input: CreateFacetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
+ export declare const serializeAws_restJson1CreateIndexCommand: (input: CreateIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
+ export declare const serializeAws_restJson1CreateObjectCommand: (input: CreateObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
+ export declare const serializeAws_restJson1CreateSchemaCommand: (input: CreateSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1CreateTypedLinkFacetCommand: (input: CreateTypedLinkFacetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ export declare const serializeAws_restJson1DeleteDirectoryCommand: (input: DeleteDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
+ export declare const serializeAws_restJson1DeleteFacetCommand: (input: DeleteFacetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ export declare const serializeAws_restJson1DeleteObjectCommand: (input: DeleteObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1DeleteSchemaCommand: (input: DeleteSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
+ export declare const serializeAws_restJson1DeleteTypedLinkFacetCommand: (input: DeleteTypedLinkFacetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
+ export declare const serializeAws_restJson1DetachFromIndexCommand: (input: DetachFromIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ export declare const serializeAws_restJson1DetachObjectCommand: (input: DetachObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1DetachPolicyCommand: (input: DetachPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
+ export declare const serializeAws_restJson1DetachTypedLinkCommand: (input: DetachTypedLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
+ export declare const serializeAws_restJson1DisableDirectoryCommand: (input: DisableDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
+ export declare const serializeAws_restJson1EnableDirectoryCommand: (input: EnableDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1GetAppliedSchemaVersionCommand: (input: GetAppliedSchemaVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ export declare const serializeAws_restJson1GetDirectoryCommand: (input: GetDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
+ export declare const serializeAws_restJson1GetFacetCommand: (input: GetFacetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
+ export declare const serializeAws_restJson1GetLinkAttributesCommand: (input: GetLinkAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1GetObjectAttributesCommand: (input: GetObjectAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
+ export declare const serializeAws_restJson1GetObjectInformationCommand: (input: GetObjectInformationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
+ export declare const serializeAws_restJson1GetSchemaAsJsonCommand: (input: GetSchemaAsJsonCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ export declare const serializeAws_restJson1GetTypedLinkFacetInformationCommand: (input: GetTypedLinkFacetInformationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1ListAppliedSchemaArnsCommand: (input: ListAppliedSchemaArnsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
+ export declare const serializeAws_restJson1ListAttachedIndicesCommand: (input: ListAttachedIndicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
+ export declare const serializeAws_restJson1ListDevelopmentSchemaArnsCommand: (input: ListDevelopmentSchemaArnsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
+ export declare const serializeAws_restJson1ListDirectoriesCommand: (input: ListDirectoriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1ListFacetAttributesCommand: (input: ListFacetAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
+ export declare const serializeAws_restJson1ListFacetNamesCommand: (input: ListFacetNamesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
+ export declare const serializeAws_restJson1ListIncomingTypedLinksCommand: (input: ListIncomingTypedLinksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
+ export declare const serializeAws_restJson1ListIndexCommand: (input: ListIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1ListManagedSchemaArnsCommand: (input: ListManagedSchemaArnsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
+ export declare const serializeAws_restJson1ListObjectAttributesCommand: (input: ListObjectAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
112
+ export declare const serializeAws_restJson1ListObjectChildrenCommand: (input: ListObjectChildrenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ export declare const serializeAws_restJson1ListObjectParentPathsCommand: (input: ListObjectParentPathsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1ListObjectParentsCommand: (input: ListObjectParentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
115
+ export declare const serializeAws_restJson1ListObjectPoliciesCommand: (input: ListObjectPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
+ export declare const serializeAws_restJson1ListOutgoingTypedLinksCommand: (input: ListOutgoingTypedLinksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
+ export declare const serializeAws_restJson1ListPolicyAttachmentsCommand: (input: ListPolicyAttachmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1ListPublishedSchemaArnsCommand: (input: ListPublishedSchemaArnsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
120
+ export declare const serializeAws_restJson1ListTypedLinkFacetAttributesCommand: (input: ListTypedLinkFacetAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
+ export declare const serializeAws_restJson1ListTypedLinkFacetNamesCommand: (input: ListTypedLinkFacetNamesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1LookupPolicyCommand: (input: LookupPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
+ export declare const serializeAws_restJson1PublishSchemaCommand: (input: PublishSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
124
+ export declare const serializeAws_restJson1PutSchemaFromJsonCommand: (input: PutSchemaFromJsonCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
+ export declare const serializeAws_restJson1RemoveFacetFromObjectCommand: (input: RemoveFacetFromObjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
128
+ export declare const serializeAws_restJson1UpdateFacetCommand: (input: UpdateFacetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
+ export declare const serializeAws_restJson1UpdateLinkAttributesCommand: (input: UpdateLinkAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1UpdateObjectAttributesCommand: (input: UpdateObjectAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
131
+ export declare const serializeAws_restJson1UpdateSchemaCommand: (input: UpdateSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
132
+ export declare const serializeAws_restJson1UpdateTypedLinkFacetCommand: (input: UpdateTypedLinkFacetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
133
+ export declare const serializeAws_restJson1UpgradeAppliedSchemaCommand: (input: UpgradeAppliedSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1UpgradePublishedSchemaCommand: (input: UpgradePublishedSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
135
+ export declare const deserializeAws_restJson1AddFacetToObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddFacetToObjectCommandOutput>;
136
+ export declare const deserializeAws_restJson1ApplySchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ApplySchemaCommandOutput>;
137
+ export declare const deserializeAws_restJson1AttachObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AttachObjectCommandOutput>;
138
+ export declare const deserializeAws_restJson1AttachPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AttachPolicyCommandOutput>;
139
+ export declare const deserializeAws_restJson1AttachToIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AttachToIndexCommandOutput>;
140
+ export declare const deserializeAws_restJson1AttachTypedLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AttachTypedLinkCommandOutput>;
141
+ export declare const deserializeAws_restJson1BatchReadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchReadCommandOutput>;
142
+ export declare const deserializeAws_restJson1BatchWriteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchWriteCommandOutput>;
143
+ export declare const deserializeAws_restJson1CreateDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDirectoryCommandOutput>;
144
+ export declare const deserializeAws_restJson1CreateFacetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFacetCommandOutput>;
145
+ export declare const deserializeAws_restJson1CreateIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIndexCommandOutput>;
146
+ export declare const deserializeAws_restJson1CreateObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateObjectCommandOutput>;
147
+ export declare const deserializeAws_restJson1CreateSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSchemaCommandOutput>;
148
+ export declare const deserializeAws_restJson1CreateTypedLinkFacetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTypedLinkFacetCommandOutput>;
149
+ export declare const deserializeAws_restJson1DeleteDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDirectoryCommandOutput>;
150
+ export declare const deserializeAws_restJson1DeleteFacetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFacetCommandOutput>;
151
+ export declare const deserializeAws_restJson1DeleteObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteObjectCommandOutput>;
152
+ export declare const deserializeAws_restJson1DeleteSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchemaCommandOutput>;
153
+ export declare const deserializeAws_restJson1DeleteTypedLinkFacetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTypedLinkFacetCommandOutput>;
154
+ export declare const deserializeAws_restJson1DetachFromIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetachFromIndexCommandOutput>;
155
+ export declare const deserializeAws_restJson1DetachObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetachObjectCommandOutput>;
156
+ export declare const deserializeAws_restJson1DetachPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetachPolicyCommandOutput>;
157
+ export declare const deserializeAws_restJson1DetachTypedLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetachTypedLinkCommandOutput>;
158
+ export declare const deserializeAws_restJson1DisableDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableDirectoryCommandOutput>;
159
+ export declare const deserializeAws_restJson1EnableDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableDirectoryCommandOutput>;
160
+ export declare const deserializeAws_restJson1GetAppliedSchemaVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAppliedSchemaVersionCommandOutput>;
161
+ export declare const deserializeAws_restJson1GetDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDirectoryCommandOutput>;
162
+ export declare const deserializeAws_restJson1GetFacetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFacetCommandOutput>;
163
+ export declare const deserializeAws_restJson1GetLinkAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLinkAttributesCommandOutput>;
164
+ export declare const deserializeAws_restJson1GetObjectAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectAttributesCommandOutput>;
165
+ export declare const deserializeAws_restJson1GetObjectInformationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetObjectInformationCommandOutput>;
166
+ export declare const deserializeAws_restJson1GetSchemaAsJsonCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSchemaAsJsonCommandOutput>;
167
+ export declare const deserializeAws_restJson1GetTypedLinkFacetInformationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTypedLinkFacetInformationCommandOutput>;
168
+ export declare const deserializeAws_restJson1ListAppliedSchemaArnsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppliedSchemaArnsCommandOutput>;
169
+ export declare const deserializeAws_restJson1ListAttachedIndicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttachedIndicesCommandOutput>;
170
+ export declare const deserializeAws_restJson1ListDevelopmentSchemaArnsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDevelopmentSchemaArnsCommandOutput>;
171
+ export declare const deserializeAws_restJson1ListDirectoriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDirectoriesCommandOutput>;
172
+ export declare const deserializeAws_restJson1ListFacetAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFacetAttributesCommandOutput>;
173
+ export declare const deserializeAws_restJson1ListFacetNamesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFacetNamesCommandOutput>;
174
+ export declare const deserializeAws_restJson1ListIncomingTypedLinksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIncomingTypedLinksCommandOutput>;
175
+ export declare const deserializeAws_restJson1ListIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIndexCommandOutput>;
176
+ export declare const deserializeAws_restJson1ListManagedSchemaArnsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListManagedSchemaArnsCommandOutput>;
177
+ export declare const deserializeAws_restJson1ListObjectAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListObjectAttributesCommandOutput>;
178
+ export declare const deserializeAws_restJson1ListObjectChildrenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListObjectChildrenCommandOutput>;
179
+ export declare const deserializeAws_restJson1ListObjectParentPathsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListObjectParentPathsCommandOutput>;
180
+ export declare const deserializeAws_restJson1ListObjectParentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListObjectParentsCommandOutput>;
181
+ export declare const deserializeAws_restJson1ListObjectPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListObjectPoliciesCommandOutput>;
182
+ export declare const deserializeAws_restJson1ListOutgoingTypedLinksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOutgoingTypedLinksCommandOutput>;
183
+ export declare const deserializeAws_restJson1ListPolicyAttachmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPolicyAttachmentsCommandOutput>;
184
+ export declare const deserializeAws_restJson1ListPublishedSchemaArnsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPublishedSchemaArnsCommandOutput>;
185
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
186
+ export declare const deserializeAws_restJson1ListTypedLinkFacetAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTypedLinkFacetAttributesCommandOutput>;
187
+ export declare const deserializeAws_restJson1ListTypedLinkFacetNamesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTypedLinkFacetNamesCommandOutput>;
188
+ export declare const deserializeAws_restJson1LookupPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<LookupPolicyCommandOutput>;
189
+ export declare const deserializeAws_restJson1PublishSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PublishSchemaCommandOutput>;
190
+ export declare const deserializeAws_restJson1PutSchemaFromJsonCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSchemaFromJsonCommandOutput>;
191
+ export declare const deserializeAws_restJson1RemoveFacetFromObjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveFacetFromObjectCommandOutput>;
192
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
193
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
194
+ export declare const deserializeAws_restJson1UpdateFacetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFacetCommandOutput>;
195
+ export declare const deserializeAws_restJson1UpdateLinkAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLinkAttributesCommandOutput>;
196
+ export declare const deserializeAws_restJson1UpdateObjectAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateObjectAttributesCommandOutput>;
197
+ export declare const deserializeAws_restJson1UpdateSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSchemaCommandOutput>;
198
+ export declare const deserializeAws_restJson1UpdateTypedLinkFacetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTypedLinkFacetCommandOutput>;
199
+ export declare const deserializeAws_restJson1UpgradeAppliedSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpgradeAppliedSchemaCommandOutput>;
200
+ export declare const deserializeAws_restJson1UpgradePublishedSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpgradePublishedSchemaCommandOutput>;