@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,1252 @@
1
+ import { __assign } from "tslib";
2
+ export var AccessDeniedException;
3
+ (function (AccessDeniedException) {
4
+ AccessDeniedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
5
+ })(AccessDeniedException || (AccessDeniedException = {}));
6
+ export var AttributeKey;
7
+ (function (AttributeKey) {
8
+ AttributeKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
9
+ })(AttributeKey || (AttributeKey = {}));
10
+ export var TypedAttributeValue;
11
+ (function (TypedAttributeValue) {
12
+ TypedAttributeValue.visit = function (value, visitor) {
13
+ if (value.StringValue !== undefined)
14
+ return visitor.StringValue(value.StringValue);
15
+ if (value.BinaryValue !== undefined)
16
+ return visitor.BinaryValue(value.BinaryValue);
17
+ if (value.BooleanValue !== undefined)
18
+ return visitor.BooleanValue(value.BooleanValue);
19
+ if (value.NumberValue !== undefined)
20
+ return visitor.NumberValue(value.NumberValue);
21
+ if (value.DatetimeValue !== undefined)
22
+ return visitor.DatetimeValue(value.DatetimeValue);
23
+ return visitor._(value.$unknown[0], value.$unknown[1]);
24
+ };
25
+ TypedAttributeValue.filterSensitiveLog = function (obj) {
26
+ var _a;
27
+ if (obj.StringValue !== undefined)
28
+ return { StringValue: obj.StringValue };
29
+ if (obj.BinaryValue !== undefined)
30
+ return { BinaryValue: obj.BinaryValue };
31
+ if (obj.BooleanValue !== undefined)
32
+ return { BooleanValue: obj.BooleanValue };
33
+ if (obj.NumberValue !== undefined)
34
+ return { NumberValue: obj.NumberValue };
35
+ if (obj.DatetimeValue !== undefined)
36
+ return { DatetimeValue: obj.DatetimeValue };
37
+ if (obj.$unknown !== undefined)
38
+ return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
39
+ };
40
+ })(TypedAttributeValue || (TypedAttributeValue = {}));
41
+ export var AttributeKeyAndValue;
42
+ (function (AttributeKeyAndValue) {
43
+ AttributeKeyAndValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }))); };
44
+ })(AttributeKeyAndValue || (AttributeKeyAndValue = {}));
45
+ export var ObjectReference;
46
+ (function (ObjectReference) {
47
+ ObjectReference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
48
+ })(ObjectReference || (ObjectReference = {}));
49
+ export var SchemaFacet;
50
+ (function (SchemaFacet) {
51
+ SchemaFacet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
52
+ })(SchemaFacet || (SchemaFacet = {}));
53
+ export var AddFacetToObjectRequest;
54
+ (function (AddFacetToObjectRequest) {
55
+ AddFacetToObjectRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
56
+ ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
57
+ }))); };
58
+ })(AddFacetToObjectRequest || (AddFacetToObjectRequest = {}));
59
+ export var AddFacetToObjectResponse;
60
+ (function (AddFacetToObjectResponse) {
61
+ AddFacetToObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
62
+ })(AddFacetToObjectResponse || (AddFacetToObjectResponse = {}));
63
+ export var DirectoryNotEnabledException;
64
+ (function (DirectoryNotEnabledException) {
65
+ DirectoryNotEnabledException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
66
+ })(DirectoryNotEnabledException || (DirectoryNotEnabledException = {}));
67
+ export var FacetValidationException;
68
+ (function (FacetValidationException) {
69
+ FacetValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
70
+ })(FacetValidationException || (FacetValidationException = {}));
71
+ export var InternalServiceException;
72
+ (function (InternalServiceException) {
73
+ InternalServiceException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
74
+ })(InternalServiceException || (InternalServiceException = {}));
75
+ export var InvalidArnException;
76
+ (function (InvalidArnException) {
77
+ InvalidArnException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
78
+ })(InvalidArnException || (InvalidArnException = {}));
79
+ export var LimitExceededException;
80
+ (function (LimitExceededException) {
81
+ LimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
82
+ })(LimitExceededException || (LimitExceededException = {}));
83
+ export var ResourceNotFoundException;
84
+ (function (ResourceNotFoundException) {
85
+ ResourceNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
86
+ })(ResourceNotFoundException || (ResourceNotFoundException = {}));
87
+ export var RetryableConflictException;
88
+ (function (RetryableConflictException) {
89
+ RetryableConflictException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
90
+ })(RetryableConflictException || (RetryableConflictException = {}));
91
+ export var ValidationException;
92
+ (function (ValidationException) {
93
+ ValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
94
+ })(ValidationException || (ValidationException = {}));
95
+ export var ApplySchemaRequest;
96
+ (function (ApplySchemaRequest) {
97
+ ApplySchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
98
+ })(ApplySchemaRequest || (ApplySchemaRequest = {}));
99
+ export var ApplySchemaResponse;
100
+ (function (ApplySchemaResponse) {
101
+ ApplySchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
102
+ })(ApplySchemaResponse || (ApplySchemaResponse = {}));
103
+ export var InvalidAttachmentException;
104
+ (function (InvalidAttachmentException) {
105
+ InvalidAttachmentException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
106
+ })(InvalidAttachmentException || (InvalidAttachmentException = {}));
107
+ export var SchemaAlreadyExistsException;
108
+ (function (SchemaAlreadyExistsException) {
109
+ SchemaAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
110
+ })(SchemaAlreadyExistsException || (SchemaAlreadyExistsException = {}));
111
+ export var AttachObjectRequest;
112
+ (function (AttachObjectRequest) {
113
+ AttachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
114
+ })(AttachObjectRequest || (AttachObjectRequest = {}));
115
+ export var AttachObjectResponse;
116
+ (function (AttachObjectResponse) {
117
+ AttachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
118
+ })(AttachObjectResponse || (AttachObjectResponse = {}));
119
+ export var LinkNameAlreadyInUseException;
120
+ (function (LinkNameAlreadyInUseException) {
121
+ LinkNameAlreadyInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
122
+ })(LinkNameAlreadyInUseException || (LinkNameAlreadyInUseException = {}));
123
+ export var AttachPolicyRequest;
124
+ (function (AttachPolicyRequest) {
125
+ AttachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
126
+ })(AttachPolicyRequest || (AttachPolicyRequest = {}));
127
+ export var AttachPolicyResponse;
128
+ (function (AttachPolicyResponse) {
129
+ AttachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
130
+ })(AttachPolicyResponse || (AttachPolicyResponse = {}));
131
+ export var NotPolicyException;
132
+ (function (NotPolicyException) {
133
+ NotPolicyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
134
+ })(NotPolicyException || (NotPolicyException = {}));
135
+ export var AttachToIndexRequest;
136
+ (function (AttachToIndexRequest) {
137
+ AttachToIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
138
+ })(AttachToIndexRequest || (AttachToIndexRequest = {}));
139
+ export var AttachToIndexResponse;
140
+ (function (AttachToIndexResponse) {
141
+ AttachToIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
142
+ })(AttachToIndexResponse || (AttachToIndexResponse = {}));
143
+ export var IndexedAttributeMissingException;
144
+ (function (IndexedAttributeMissingException) {
145
+ IndexedAttributeMissingException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
146
+ })(IndexedAttributeMissingException || (IndexedAttributeMissingException = {}));
147
+ export var NotIndexException;
148
+ (function (NotIndexException) {
149
+ NotIndexException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
150
+ })(NotIndexException || (NotIndexException = {}));
151
+ export var AttributeNameAndValue;
152
+ (function (AttributeNameAndValue) {
153
+ AttributeNameAndValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }))); };
154
+ })(AttributeNameAndValue || (AttributeNameAndValue = {}));
155
+ export var TypedLinkSchemaAndFacetName;
156
+ (function (TypedLinkSchemaAndFacetName) {
157
+ TypedLinkSchemaAndFacetName.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
158
+ })(TypedLinkSchemaAndFacetName || (TypedLinkSchemaAndFacetName = {}));
159
+ export var AttachTypedLinkRequest;
160
+ (function (AttachTypedLinkRequest) {
161
+ AttachTypedLinkRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeNameAndValue.filterSensitiveLog(item); }) }))); };
162
+ })(AttachTypedLinkRequest || (AttachTypedLinkRequest = {}));
163
+ export var TypedLinkSpecifier;
164
+ (function (TypedLinkSpecifier) {
165
+ TypedLinkSpecifier.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.IdentityAttributeValues && {
166
+ IdentityAttributeValues: obj.IdentityAttributeValues.map(function (item) {
167
+ return AttributeNameAndValue.filterSensitiveLog(item);
168
+ }),
169
+ }))); };
170
+ })(TypedLinkSpecifier || (TypedLinkSpecifier = {}));
171
+ export var AttachTypedLinkResponse;
172
+ (function (AttachTypedLinkResponse) {
173
+ AttachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
174
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
175
+ }))); };
176
+ })(AttachTypedLinkResponse || (AttachTypedLinkResponse = {}));
177
+ export var ConsistencyLevel;
178
+ (function (ConsistencyLevel) {
179
+ ConsistencyLevel["EVENTUAL"] = "EVENTUAL";
180
+ ConsistencyLevel["SERIALIZABLE"] = "SERIALIZABLE";
181
+ })(ConsistencyLevel || (ConsistencyLevel = {}));
182
+ export var BatchGetLinkAttributes;
183
+ (function (BatchGetLinkAttributes) {
184
+ BatchGetLinkAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
185
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
186
+ }))); };
187
+ })(BatchGetLinkAttributes || (BatchGetLinkAttributes = {}));
188
+ export var BatchGetObjectAttributes;
189
+ (function (BatchGetObjectAttributes) {
190
+ BatchGetObjectAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
+ })(BatchGetObjectAttributes || (BatchGetObjectAttributes = {}));
192
+ export var BatchGetObjectInformation;
193
+ (function (BatchGetObjectInformation) {
194
+ BatchGetObjectInformation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
+ })(BatchGetObjectInformation || (BatchGetObjectInformation = {}));
196
+ export var BatchListAttachedIndices;
197
+ (function (BatchListAttachedIndices) {
198
+ BatchListAttachedIndices.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
+ })(BatchListAttachedIndices || (BatchListAttachedIndices = {}));
200
+ export var RangeMode;
201
+ (function (RangeMode) {
202
+ RangeMode["EXCLUSIVE"] = "EXCLUSIVE";
203
+ RangeMode["FIRST"] = "FIRST";
204
+ RangeMode["INCLUSIVE"] = "INCLUSIVE";
205
+ RangeMode["LAST"] = "LAST";
206
+ RangeMode["LAST_BEFORE_MISSING_VALUES"] = "LAST_BEFORE_MISSING_VALUES";
207
+ })(RangeMode || (RangeMode = {}));
208
+ export var TypedAttributeValueRange;
209
+ (function (TypedAttributeValueRange) {
210
+ TypedAttributeValueRange.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.StartValue && { StartValue: TypedAttributeValue.filterSensitiveLog(obj.StartValue) })), (obj.EndValue && { EndValue: TypedAttributeValue.filterSensitiveLog(obj.EndValue) }))); };
211
+ })(TypedAttributeValueRange || (TypedAttributeValueRange = {}));
212
+ export var TypedLinkAttributeRange;
213
+ (function (TypedLinkAttributeRange) {
214
+ TypedLinkAttributeRange.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }))); };
215
+ })(TypedLinkAttributeRange || (TypedLinkAttributeRange = {}));
216
+ export var BatchListIncomingTypedLinks;
217
+ (function (BatchListIncomingTypedLinks) {
218
+ BatchListIncomingTypedLinks.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
219
+ FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
220
+ }))); };
221
+ })(BatchListIncomingTypedLinks || (BatchListIncomingTypedLinks = {}));
222
+ export var ObjectAttributeRange;
223
+ (function (ObjectAttributeRange) {
224
+ ObjectAttributeRange.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }))); };
225
+ })(ObjectAttributeRange || (ObjectAttributeRange = {}));
226
+ export var BatchListIndex;
227
+ (function (BatchListIndex) {
228
+ BatchListIndex.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.RangesOnIndexedValues && {
229
+ RangesOnIndexedValues: obj.RangesOnIndexedValues.map(function (item) { return ObjectAttributeRange.filterSensitiveLog(item); }),
230
+ }))); };
231
+ })(BatchListIndex || (BatchListIndex = {}));
232
+ export var BatchListObjectAttributes;
233
+ (function (BatchListObjectAttributes) {
234
+ BatchListObjectAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
+ })(BatchListObjectAttributes || (BatchListObjectAttributes = {}));
236
+ export var BatchListObjectChildren;
237
+ (function (BatchListObjectChildren) {
238
+ BatchListObjectChildren.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
239
+ })(BatchListObjectChildren || (BatchListObjectChildren = {}));
240
+ export var BatchListObjectParentPaths;
241
+ (function (BatchListObjectParentPaths) {
242
+ BatchListObjectParentPaths.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
+ })(BatchListObjectParentPaths || (BatchListObjectParentPaths = {}));
244
+ export var BatchListObjectParents;
245
+ (function (BatchListObjectParents) {
246
+ BatchListObjectParents.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
+ })(BatchListObjectParents || (BatchListObjectParents = {}));
248
+ export var BatchListObjectPolicies;
249
+ (function (BatchListObjectPolicies) {
250
+ BatchListObjectPolicies.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
+ })(BatchListObjectPolicies || (BatchListObjectPolicies = {}));
252
+ export var BatchListOutgoingTypedLinks;
253
+ (function (BatchListOutgoingTypedLinks) {
254
+ BatchListOutgoingTypedLinks.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
255
+ FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
256
+ }))); };
257
+ })(BatchListOutgoingTypedLinks || (BatchListOutgoingTypedLinks = {}));
258
+ export var BatchListPolicyAttachments;
259
+ (function (BatchListPolicyAttachments) {
260
+ BatchListPolicyAttachments.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
+ })(BatchListPolicyAttachments || (BatchListPolicyAttachments = {}));
262
+ export var BatchLookupPolicy;
263
+ (function (BatchLookupPolicy) {
264
+ BatchLookupPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
+ })(BatchLookupPolicy || (BatchLookupPolicy = {}));
266
+ export var BatchReadOperation;
267
+ (function (BatchReadOperation) {
268
+ BatchReadOperation.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.ListIndex && { ListIndex: BatchListIndex.filterSensitiveLog(obj.ListIndex) })), (obj.ListOutgoingTypedLinks && {
269
+ ListOutgoingTypedLinks: BatchListOutgoingTypedLinks.filterSensitiveLog(obj.ListOutgoingTypedLinks),
270
+ })), (obj.ListIncomingTypedLinks && {
271
+ ListIncomingTypedLinks: BatchListIncomingTypedLinks.filterSensitiveLog(obj.ListIncomingTypedLinks),
272
+ })), (obj.GetLinkAttributes && {
273
+ GetLinkAttributes: BatchGetLinkAttributes.filterSensitiveLog(obj.GetLinkAttributes),
274
+ }))); };
275
+ })(BatchReadOperation || (BatchReadOperation = {}));
276
+ export var BatchReadRequest;
277
+ (function (BatchReadRequest) {
278
+ BatchReadRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
+ })(BatchReadRequest || (BatchReadRequest = {}));
280
+ export var BatchReadExceptionType;
281
+ (function (BatchReadExceptionType) {
282
+ BatchReadExceptionType["AccessDeniedException"] = "AccessDeniedException";
283
+ BatchReadExceptionType["CannotListParentOfRootException"] = "CannotListParentOfRootException";
284
+ BatchReadExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
285
+ BatchReadExceptionType["FacetValidationException"] = "FacetValidationException";
286
+ BatchReadExceptionType["InternalServiceException"] = "InternalServiceException";
287
+ BatchReadExceptionType["InvalidArnException"] = "InvalidArnException";
288
+ BatchReadExceptionType["InvalidNextTokenException"] = "InvalidNextTokenException";
289
+ BatchReadExceptionType["LimitExceededException"] = "LimitExceededException";
290
+ BatchReadExceptionType["NotIndexException"] = "NotIndexException";
291
+ BatchReadExceptionType["NotNodeException"] = "NotNodeException";
292
+ BatchReadExceptionType["NotPolicyException"] = "NotPolicyException";
293
+ BatchReadExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
294
+ BatchReadExceptionType["ValidationException"] = "ValidationException";
295
+ })(BatchReadExceptionType || (BatchReadExceptionType = {}));
296
+ export var BatchReadException;
297
+ (function (BatchReadException) {
298
+ BatchReadException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
+ })(BatchReadException || (BatchReadException = {}));
300
+ export var BatchGetLinkAttributesResponse;
301
+ (function (BatchGetLinkAttributesResponse) {
302
+ BatchGetLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
303
+ })(BatchGetLinkAttributesResponse || (BatchGetLinkAttributesResponse = {}));
304
+ export var BatchGetObjectAttributesResponse;
305
+ (function (BatchGetObjectAttributesResponse) {
306
+ BatchGetObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
307
+ })(BatchGetObjectAttributesResponse || (BatchGetObjectAttributesResponse = {}));
308
+ export var BatchGetObjectInformationResponse;
309
+ (function (BatchGetObjectInformationResponse) {
310
+ BatchGetObjectInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
+ })(BatchGetObjectInformationResponse || (BatchGetObjectInformationResponse = {}));
312
+ export var IndexAttachment;
313
+ (function (IndexAttachment) {
314
+ IndexAttachment.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.IndexedAttributes && {
315
+ IndexedAttributes: obj.IndexedAttributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
316
+ }))); };
317
+ })(IndexAttachment || (IndexAttachment = {}));
318
+ export var BatchListAttachedIndicesResponse;
319
+ (function (BatchListAttachedIndicesResponse) {
320
+ BatchListAttachedIndicesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
+ })(BatchListAttachedIndicesResponse || (BatchListAttachedIndicesResponse = {}));
322
+ export var BatchListIncomingTypedLinksResponse;
323
+ (function (BatchListIncomingTypedLinksResponse) {
324
+ BatchListIncomingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
+ })(BatchListIncomingTypedLinksResponse || (BatchListIncomingTypedLinksResponse = {}));
326
+ export var BatchListIndexResponse;
327
+ (function (BatchListIndexResponse) {
328
+ BatchListIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
+ })(BatchListIndexResponse || (BatchListIndexResponse = {}));
330
+ export var BatchListObjectAttributesResponse;
331
+ (function (BatchListObjectAttributesResponse) {
332
+ BatchListObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
333
+ })(BatchListObjectAttributesResponse || (BatchListObjectAttributesResponse = {}));
334
+ export var BatchListObjectChildrenResponse;
335
+ (function (BatchListObjectChildrenResponse) {
336
+ BatchListObjectChildrenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
+ })(BatchListObjectChildrenResponse || (BatchListObjectChildrenResponse = {}));
338
+ export var PathToObjectIdentifiers;
339
+ (function (PathToObjectIdentifiers) {
340
+ PathToObjectIdentifiers.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
+ })(PathToObjectIdentifiers || (PathToObjectIdentifiers = {}));
342
+ export var BatchListObjectParentPathsResponse;
343
+ (function (BatchListObjectParentPathsResponse) {
344
+ BatchListObjectParentPathsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
+ })(BatchListObjectParentPathsResponse || (BatchListObjectParentPathsResponse = {}));
346
+ export var ObjectIdentifierAndLinkNameTuple;
347
+ (function (ObjectIdentifierAndLinkNameTuple) {
348
+ ObjectIdentifierAndLinkNameTuple.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
+ })(ObjectIdentifierAndLinkNameTuple || (ObjectIdentifierAndLinkNameTuple = {}));
350
+ export var BatchListObjectParentsResponse;
351
+ (function (BatchListObjectParentsResponse) {
352
+ BatchListObjectParentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
+ })(BatchListObjectParentsResponse || (BatchListObjectParentsResponse = {}));
354
+ export var BatchListObjectPoliciesResponse;
355
+ (function (BatchListObjectPoliciesResponse) {
356
+ BatchListObjectPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
+ })(BatchListObjectPoliciesResponse || (BatchListObjectPoliciesResponse = {}));
358
+ export var BatchListOutgoingTypedLinksResponse;
359
+ (function (BatchListOutgoingTypedLinksResponse) {
360
+ BatchListOutgoingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
+ })(BatchListOutgoingTypedLinksResponse || (BatchListOutgoingTypedLinksResponse = {}));
362
+ export var BatchListPolicyAttachmentsResponse;
363
+ (function (BatchListPolicyAttachmentsResponse) {
364
+ BatchListPolicyAttachmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
+ })(BatchListPolicyAttachmentsResponse || (BatchListPolicyAttachmentsResponse = {}));
366
+ export var PolicyAttachment;
367
+ (function (PolicyAttachment) {
368
+ PolicyAttachment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
+ })(PolicyAttachment || (PolicyAttachment = {}));
370
+ export var PolicyToPath;
371
+ (function (PolicyToPath) {
372
+ PolicyToPath.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
+ })(PolicyToPath || (PolicyToPath = {}));
374
+ export var BatchLookupPolicyResponse;
375
+ (function (BatchLookupPolicyResponse) {
376
+ BatchLookupPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
+ })(BatchLookupPolicyResponse || (BatchLookupPolicyResponse = {}));
378
+ export var BatchReadSuccessfulResponse;
379
+ (function (BatchReadSuccessfulResponse) {
380
+ BatchReadSuccessfulResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.ListObjectAttributes && {
381
+ ListObjectAttributes: BatchListObjectAttributesResponse.filterSensitiveLog(obj.ListObjectAttributes),
382
+ })), (obj.GetObjectAttributes && {
383
+ GetObjectAttributes: BatchGetObjectAttributesResponse.filterSensitiveLog(obj.GetObjectAttributes),
384
+ })), (obj.GetLinkAttributes && {
385
+ GetLinkAttributes: BatchGetLinkAttributesResponse.filterSensitiveLog(obj.GetLinkAttributes),
386
+ }))); };
387
+ })(BatchReadSuccessfulResponse || (BatchReadSuccessfulResponse = {}));
388
+ export var BatchReadOperationResponse;
389
+ (function (BatchReadOperationResponse) {
390
+ BatchReadOperationResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.SuccessfulResponse && {
391
+ SuccessfulResponse: BatchReadSuccessfulResponse.filterSensitiveLog(obj.SuccessfulResponse),
392
+ }))); };
393
+ })(BatchReadOperationResponse || (BatchReadOperationResponse = {}));
394
+ export var BatchReadResponse;
395
+ (function (BatchReadResponse) {
396
+ BatchReadResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
397
+ })(BatchReadResponse || (BatchReadResponse = {}));
398
+ export var BatchWriteExceptionType;
399
+ (function (BatchWriteExceptionType) {
400
+ BatchWriteExceptionType["AccessDeniedException"] = "AccessDeniedException";
401
+ BatchWriteExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
402
+ BatchWriteExceptionType["FacetValidationException"] = "FacetValidationException";
403
+ BatchWriteExceptionType["IndexedAttributeMissingException"] = "IndexedAttributeMissingException";
404
+ BatchWriteExceptionType["InternalServiceException"] = "InternalServiceException";
405
+ BatchWriteExceptionType["InvalidArnException"] = "InvalidArnException";
406
+ BatchWriteExceptionType["InvalidAttachmentException"] = "InvalidAttachmentException";
407
+ BatchWriteExceptionType["LimitExceededException"] = "LimitExceededException";
408
+ BatchWriteExceptionType["LinkNameAlreadyInUseException"] = "LinkNameAlreadyInUseException";
409
+ BatchWriteExceptionType["NotIndexException"] = "NotIndexException";
410
+ BatchWriteExceptionType["NotNodeException"] = "NotNodeException";
411
+ BatchWriteExceptionType["NotPolicyException"] = "NotPolicyException";
412
+ BatchWriteExceptionType["ObjectAlreadyDetachedException"] = "ObjectAlreadyDetachedException";
413
+ BatchWriteExceptionType["ObjectNotDetachedException"] = "ObjectNotDetachedException";
414
+ BatchWriteExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
415
+ BatchWriteExceptionType["StillContainsLinksException"] = "StillContainsLinksException";
416
+ BatchWriteExceptionType["UnsupportedIndexTypeException"] = "UnsupportedIndexTypeException";
417
+ BatchWriteExceptionType["ValidationException"] = "ValidationException";
418
+ })(BatchWriteExceptionType || (BatchWriteExceptionType = {}));
419
+ export var BatchWriteException;
420
+ (function (BatchWriteException) {
421
+ BatchWriteException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
422
+ })(BatchWriteException || (BatchWriteException = {}));
423
+ export var BatchAddFacetToObject;
424
+ (function (BatchAddFacetToObject) {
425
+ BatchAddFacetToObject.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
426
+ ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
427
+ }))); };
428
+ })(BatchAddFacetToObject || (BatchAddFacetToObject = {}));
429
+ export var BatchAttachObject;
430
+ (function (BatchAttachObject) {
431
+ BatchAttachObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
432
+ })(BatchAttachObject || (BatchAttachObject = {}));
433
+ export var BatchAttachPolicy;
434
+ (function (BatchAttachPolicy) {
435
+ BatchAttachPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
436
+ })(BatchAttachPolicy || (BatchAttachPolicy = {}));
437
+ export var BatchAttachToIndex;
438
+ (function (BatchAttachToIndex) {
439
+ BatchAttachToIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
440
+ })(BatchAttachToIndex || (BatchAttachToIndex = {}));
441
+ export var BatchAttachTypedLink;
442
+ (function (BatchAttachTypedLink) {
443
+ BatchAttachTypedLink.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeNameAndValue.filterSensitiveLog(item); }) }))); };
444
+ })(BatchAttachTypedLink || (BatchAttachTypedLink = {}));
445
+ export var BatchCreateIndex;
446
+ (function (BatchCreateIndex) {
447
+ BatchCreateIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
448
+ })(BatchCreateIndex || (BatchCreateIndex = {}));
449
+ export var BatchCreateObject;
450
+ (function (BatchCreateObject) {
451
+ BatchCreateObject.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
452
+ ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
453
+ }))); };
454
+ })(BatchCreateObject || (BatchCreateObject = {}));
455
+ export var BatchDeleteObject;
456
+ (function (BatchDeleteObject) {
457
+ BatchDeleteObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
458
+ })(BatchDeleteObject || (BatchDeleteObject = {}));
459
+ export var BatchDetachFromIndex;
460
+ (function (BatchDetachFromIndex) {
461
+ BatchDetachFromIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
462
+ })(BatchDetachFromIndex || (BatchDetachFromIndex = {}));
463
+ export var BatchDetachObject;
464
+ (function (BatchDetachObject) {
465
+ BatchDetachObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
466
+ })(BatchDetachObject || (BatchDetachObject = {}));
467
+ export var BatchDetachPolicy;
468
+ (function (BatchDetachPolicy) {
469
+ BatchDetachPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
470
+ })(BatchDetachPolicy || (BatchDetachPolicy = {}));
471
+ export var BatchDetachTypedLink;
472
+ (function (BatchDetachTypedLink) {
473
+ BatchDetachTypedLink.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
474
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
475
+ }))); };
476
+ })(BatchDetachTypedLink || (BatchDetachTypedLink = {}));
477
+ export var BatchRemoveFacetFromObject;
478
+ (function (BatchRemoveFacetFromObject) {
479
+ BatchRemoveFacetFromObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
480
+ })(BatchRemoveFacetFromObject || (BatchRemoveFacetFromObject = {}));
481
+ export var UpdateActionType;
482
+ (function (UpdateActionType) {
483
+ UpdateActionType["CREATE_OR_UPDATE"] = "CREATE_OR_UPDATE";
484
+ UpdateActionType["DELETE"] = "DELETE";
485
+ })(UpdateActionType || (UpdateActionType = {}));
486
+ export var LinkAttributeAction;
487
+ (function (LinkAttributeAction) {
488
+ LinkAttributeAction.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdateValue && {
489
+ AttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.AttributeUpdateValue),
490
+ }))); };
491
+ })(LinkAttributeAction || (LinkAttributeAction = {}));
492
+ export var LinkAttributeUpdate;
493
+ (function (LinkAttributeUpdate) {
494
+ LinkAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeAction && { AttributeAction: LinkAttributeAction.filterSensitiveLog(obj.AttributeAction) }))); };
495
+ })(LinkAttributeUpdate || (LinkAttributeUpdate = {}));
496
+ export var BatchUpdateLinkAttributes;
497
+ (function (BatchUpdateLinkAttributes) {
498
+ BatchUpdateLinkAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
499
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
500
+ })), (obj.AttributeUpdates && {
501
+ AttributeUpdates: obj.AttributeUpdates.map(function (item) { return LinkAttributeUpdate.filterSensitiveLog(item); }),
502
+ }))); };
503
+ })(BatchUpdateLinkAttributes || (BatchUpdateLinkAttributes = {}));
504
+ export var ObjectAttributeAction;
505
+ (function (ObjectAttributeAction) {
506
+ ObjectAttributeAction.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeUpdateValue && {
507
+ ObjectAttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.ObjectAttributeUpdateValue),
508
+ }))); };
509
+ })(ObjectAttributeAction || (ObjectAttributeAction = {}));
510
+ export var ObjectAttributeUpdate;
511
+ (function (ObjectAttributeUpdate) {
512
+ ObjectAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeAction && {
513
+ ObjectAttributeAction: ObjectAttributeAction.filterSensitiveLog(obj.ObjectAttributeAction),
514
+ }))); };
515
+ })(ObjectAttributeUpdate || (ObjectAttributeUpdate = {}));
516
+ export var BatchUpdateObjectAttributes;
517
+ (function (BatchUpdateObjectAttributes) {
518
+ BatchUpdateObjectAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
519
+ AttributeUpdates: obj.AttributeUpdates.map(function (item) { return ObjectAttributeUpdate.filterSensitiveLog(item); }),
520
+ }))); };
521
+ })(BatchUpdateObjectAttributes || (BatchUpdateObjectAttributes = {}));
522
+ export var BatchWriteOperation;
523
+ (function (BatchWriteOperation) {
524
+ BatchWriteOperation.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.UpdateObjectAttributes && {
525
+ UpdateObjectAttributes: BatchUpdateObjectAttributes.filterSensitiveLog(obj.UpdateObjectAttributes),
526
+ })), (obj.AddFacetToObject && { AddFacetToObject: BatchAddFacetToObject.filterSensitiveLog(obj.AddFacetToObject) })), (obj.AttachTypedLink && { AttachTypedLink: BatchAttachTypedLink.filterSensitiveLog(obj.AttachTypedLink) })), (obj.DetachTypedLink && { DetachTypedLink: BatchDetachTypedLink.filterSensitiveLog(obj.DetachTypedLink) })), (obj.UpdateLinkAttributes && {
527
+ UpdateLinkAttributes: BatchUpdateLinkAttributes.filterSensitiveLog(obj.UpdateLinkAttributes),
528
+ }))); };
529
+ })(BatchWriteOperation || (BatchWriteOperation = {}));
530
+ export var BatchWriteRequest;
531
+ (function (BatchWriteRequest) {
532
+ BatchWriteRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
533
+ })(BatchWriteRequest || (BatchWriteRequest = {}));
534
+ export var BatchAddFacetToObjectResponse;
535
+ (function (BatchAddFacetToObjectResponse) {
536
+ BatchAddFacetToObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
537
+ })(BatchAddFacetToObjectResponse || (BatchAddFacetToObjectResponse = {}));
538
+ export var BatchAttachObjectResponse;
539
+ (function (BatchAttachObjectResponse) {
540
+ BatchAttachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
541
+ })(BatchAttachObjectResponse || (BatchAttachObjectResponse = {}));
542
+ export var BatchAttachPolicyResponse;
543
+ (function (BatchAttachPolicyResponse) {
544
+ BatchAttachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
545
+ })(BatchAttachPolicyResponse || (BatchAttachPolicyResponse = {}));
546
+ export var BatchAttachToIndexResponse;
547
+ (function (BatchAttachToIndexResponse) {
548
+ BatchAttachToIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
549
+ })(BatchAttachToIndexResponse || (BatchAttachToIndexResponse = {}));
550
+ export var BatchAttachTypedLinkResponse;
551
+ (function (BatchAttachTypedLinkResponse) {
552
+ BatchAttachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
553
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
554
+ }))); };
555
+ })(BatchAttachTypedLinkResponse || (BatchAttachTypedLinkResponse = {}));
556
+ export var BatchCreateIndexResponse;
557
+ (function (BatchCreateIndexResponse) {
558
+ BatchCreateIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
559
+ })(BatchCreateIndexResponse || (BatchCreateIndexResponse = {}));
560
+ export var BatchCreateObjectResponse;
561
+ (function (BatchCreateObjectResponse) {
562
+ BatchCreateObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
563
+ })(BatchCreateObjectResponse || (BatchCreateObjectResponse = {}));
564
+ export var BatchDeleteObjectResponse;
565
+ (function (BatchDeleteObjectResponse) {
566
+ BatchDeleteObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
567
+ })(BatchDeleteObjectResponse || (BatchDeleteObjectResponse = {}));
568
+ export var BatchDetachFromIndexResponse;
569
+ (function (BatchDetachFromIndexResponse) {
570
+ BatchDetachFromIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
571
+ })(BatchDetachFromIndexResponse || (BatchDetachFromIndexResponse = {}));
572
+ export var BatchDetachObjectResponse;
573
+ (function (BatchDetachObjectResponse) {
574
+ BatchDetachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
575
+ })(BatchDetachObjectResponse || (BatchDetachObjectResponse = {}));
576
+ export var BatchDetachPolicyResponse;
577
+ (function (BatchDetachPolicyResponse) {
578
+ BatchDetachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
579
+ })(BatchDetachPolicyResponse || (BatchDetachPolicyResponse = {}));
580
+ export var BatchDetachTypedLinkResponse;
581
+ (function (BatchDetachTypedLinkResponse) {
582
+ BatchDetachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
583
+ })(BatchDetachTypedLinkResponse || (BatchDetachTypedLinkResponse = {}));
584
+ export var BatchRemoveFacetFromObjectResponse;
585
+ (function (BatchRemoveFacetFromObjectResponse) {
586
+ BatchRemoveFacetFromObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
587
+ })(BatchRemoveFacetFromObjectResponse || (BatchRemoveFacetFromObjectResponse = {}));
588
+ export var BatchUpdateLinkAttributesResponse;
589
+ (function (BatchUpdateLinkAttributesResponse) {
590
+ BatchUpdateLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
591
+ })(BatchUpdateLinkAttributesResponse || (BatchUpdateLinkAttributesResponse = {}));
592
+ export var BatchUpdateObjectAttributesResponse;
593
+ (function (BatchUpdateObjectAttributesResponse) {
594
+ BatchUpdateObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
595
+ })(BatchUpdateObjectAttributesResponse || (BatchUpdateObjectAttributesResponse = {}));
596
+ export var BatchWriteOperationResponse;
597
+ (function (BatchWriteOperationResponse) {
598
+ BatchWriteOperationResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttachTypedLink && {
599
+ AttachTypedLink: BatchAttachTypedLinkResponse.filterSensitiveLog(obj.AttachTypedLink),
600
+ }))); };
601
+ })(BatchWriteOperationResponse || (BatchWriteOperationResponse = {}));
602
+ export var BatchWriteResponse;
603
+ (function (BatchWriteResponse) {
604
+ BatchWriteResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
605
+ })(BatchWriteResponse || (BatchWriteResponse = {}));
606
+ export var CreateDirectoryRequest;
607
+ (function (CreateDirectoryRequest) {
608
+ CreateDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
609
+ })(CreateDirectoryRequest || (CreateDirectoryRequest = {}));
610
+ export var CreateDirectoryResponse;
611
+ (function (CreateDirectoryResponse) {
612
+ CreateDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
613
+ })(CreateDirectoryResponse || (CreateDirectoryResponse = {}));
614
+ export var DirectoryAlreadyExistsException;
615
+ (function (DirectoryAlreadyExistsException) {
616
+ DirectoryAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
617
+ })(DirectoryAlreadyExistsException || (DirectoryAlreadyExistsException = {}));
618
+ export var RuleType;
619
+ (function (RuleType) {
620
+ RuleType["BINARY_LENGTH"] = "BINARY_LENGTH";
621
+ RuleType["NUMBER_COMPARISON"] = "NUMBER_COMPARISON";
622
+ RuleType["STRING_FROM_SET"] = "STRING_FROM_SET";
623
+ RuleType["STRING_LENGTH"] = "STRING_LENGTH";
624
+ })(RuleType || (RuleType = {}));
625
+ export var Rule;
626
+ (function (Rule) {
627
+ Rule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
628
+ })(Rule || (Rule = {}));
629
+ export var FacetAttributeType;
630
+ (function (FacetAttributeType) {
631
+ FacetAttributeType["BINARY"] = "BINARY";
632
+ FacetAttributeType["BOOLEAN"] = "BOOLEAN";
633
+ FacetAttributeType["DATETIME"] = "DATETIME";
634
+ FacetAttributeType["NUMBER"] = "NUMBER";
635
+ FacetAttributeType["STRING"] = "STRING";
636
+ FacetAttributeType["VARIANT"] = "VARIANT";
637
+ })(FacetAttributeType || (FacetAttributeType = {}));
638
+ export var FacetAttributeDefinition;
639
+ (function (FacetAttributeDefinition) {
640
+ FacetAttributeDefinition.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }))); };
641
+ })(FacetAttributeDefinition || (FacetAttributeDefinition = {}));
642
+ export var FacetAttributeReference;
643
+ (function (FacetAttributeReference) {
644
+ FacetAttributeReference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
645
+ })(FacetAttributeReference || (FacetAttributeReference = {}));
646
+ export var RequiredAttributeBehavior;
647
+ (function (RequiredAttributeBehavior) {
648
+ RequiredAttributeBehavior["NOT_REQUIRED"] = "NOT_REQUIRED";
649
+ RequiredAttributeBehavior["REQUIRED_ALWAYS"] = "REQUIRED_ALWAYS";
650
+ })(RequiredAttributeBehavior || (RequiredAttributeBehavior = {}));
651
+ export var FacetAttribute;
652
+ (function (FacetAttribute) {
653
+ FacetAttribute.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeDefinition && {
654
+ AttributeDefinition: FacetAttributeDefinition.filterSensitiveLog(obj.AttributeDefinition),
655
+ }))); };
656
+ })(FacetAttribute || (FacetAttribute = {}));
657
+ export var FacetStyle;
658
+ (function (FacetStyle) {
659
+ FacetStyle["DYNAMIC"] = "DYNAMIC";
660
+ FacetStyle["STATIC"] = "STATIC";
661
+ })(FacetStyle || (FacetStyle = {}));
662
+ export var ObjectType;
663
+ (function (ObjectType) {
664
+ ObjectType["INDEX"] = "INDEX";
665
+ ObjectType["LEAF_NODE"] = "LEAF_NODE";
666
+ ObjectType["NODE"] = "NODE";
667
+ ObjectType["POLICY"] = "POLICY";
668
+ })(ObjectType || (ObjectType = {}));
669
+ export var CreateFacetRequest;
670
+ (function (CreateFacetRequest) {
671
+ CreateFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return FacetAttribute.filterSensitiveLog(item); }) }))); };
672
+ })(CreateFacetRequest || (CreateFacetRequest = {}));
673
+ export var CreateFacetResponse;
674
+ (function (CreateFacetResponse) {
675
+ CreateFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
676
+ })(CreateFacetResponse || (CreateFacetResponse = {}));
677
+ export var FacetAlreadyExistsException;
678
+ (function (FacetAlreadyExistsException) {
679
+ FacetAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
680
+ })(FacetAlreadyExistsException || (FacetAlreadyExistsException = {}));
681
+ export var InvalidRuleException;
682
+ (function (InvalidRuleException) {
683
+ InvalidRuleException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
684
+ })(InvalidRuleException || (InvalidRuleException = {}));
685
+ export var CreateIndexRequest;
686
+ (function (CreateIndexRequest) {
687
+ CreateIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
688
+ })(CreateIndexRequest || (CreateIndexRequest = {}));
689
+ export var CreateIndexResponse;
690
+ (function (CreateIndexResponse) {
691
+ CreateIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
692
+ })(CreateIndexResponse || (CreateIndexResponse = {}));
693
+ export var UnsupportedIndexTypeException;
694
+ (function (UnsupportedIndexTypeException) {
695
+ UnsupportedIndexTypeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
696
+ })(UnsupportedIndexTypeException || (UnsupportedIndexTypeException = {}));
697
+ export var CreateObjectRequest;
698
+ (function (CreateObjectRequest) {
699
+ CreateObjectRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
700
+ ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
701
+ }))); };
702
+ })(CreateObjectRequest || (CreateObjectRequest = {}));
703
+ export var CreateObjectResponse;
704
+ (function (CreateObjectResponse) {
705
+ CreateObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
706
+ })(CreateObjectResponse || (CreateObjectResponse = {}));
707
+ export var CreateSchemaRequest;
708
+ (function (CreateSchemaRequest) {
709
+ CreateSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
710
+ })(CreateSchemaRequest || (CreateSchemaRequest = {}));
711
+ export var CreateSchemaResponse;
712
+ (function (CreateSchemaResponse) {
713
+ CreateSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
714
+ })(CreateSchemaResponse || (CreateSchemaResponse = {}));
715
+ export var TypedLinkAttributeDefinition;
716
+ (function (TypedLinkAttributeDefinition) {
717
+ TypedLinkAttributeDefinition.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }))); };
718
+ })(TypedLinkAttributeDefinition || (TypedLinkAttributeDefinition = {}));
719
+ export var TypedLinkFacet;
720
+ (function (TypedLinkFacet) {
721
+ TypedLinkFacet.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && {
722
+ Attributes: obj.Attributes.map(function (item) { return TypedLinkAttributeDefinition.filterSensitiveLog(item); }),
723
+ }))); };
724
+ })(TypedLinkFacet || (TypedLinkFacet = {}));
725
+ export var CreateTypedLinkFacetRequest;
726
+ (function (CreateTypedLinkFacetRequest) {
727
+ CreateTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Facet && { Facet: TypedLinkFacet.filterSensitiveLog(obj.Facet) }))); };
728
+ })(CreateTypedLinkFacetRequest || (CreateTypedLinkFacetRequest = {}));
729
+ export var CreateTypedLinkFacetResponse;
730
+ (function (CreateTypedLinkFacetResponse) {
731
+ CreateTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
732
+ })(CreateTypedLinkFacetResponse || (CreateTypedLinkFacetResponse = {}));
733
+ export var DeleteDirectoryRequest;
734
+ (function (DeleteDirectoryRequest) {
735
+ DeleteDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
736
+ })(DeleteDirectoryRequest || (DeleteDirectoryRequest = {}));
737
+ export var DeleteDirectoryResponse;
738
+ (function (DeleteDirectoryResponse) {
739
+ DeleteDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
740
+ })(DeleteDirectoryResponse || (DeleteDirectoryResponse = {}));
741
+ export var DirectoryDeletedException;
742
+ (function (DirectoryDeletedException) {
743
+ DirectoryDeletedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
744
+ })(DirectoryDeletedException || (DirectoryDeletedException = {}));
745
+ export var DirectoryNotDisabledException;
746
+ (function (DirectoryNotDisabledException) {
747
+ DirectoryNotDisabledException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
748
+ })(DirectoryNotDisabledException || (DirectoryNotDisabledException = {}));
749
+ export var DeleteFacetRequest;
750
+ (function (DeleteFacetRequest) {
751
+ DeleteFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
752
+ })(DeleteFacetRequest || (DeleteFacetRequest = {}));
753
+ export var DeleteFacetResponse;
754
+ (function (DeleteFacetResponse) {
755
+ DeleteFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
756
+ })(DeleteFacetResponse || (DeleteFacetResponse = {}));
757
+ export var FacetInUseException;
758
+ (function (FacetInUseException) {
759
+ FacetInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
760
+ })(FacetInUseException || (FacetInUseException = {}));
761
+ export var FacetNotFoundException;
762
+ (function (FacetNotFoundException) {
763
+ FacetNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
764
+ })(FacetNotFoundException || (FacetNotFoundException = {}));
765
+ export var DeleteObjectRequest;
766
+ (function (DeleteObjectRequest) {
767
+ DeleteObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
768
+ })(DeleteObjectRequest || (DeleteObjectRequest = {}));
769
+ export var DeleteObjectResponse;
770
+ (function (DeleteObjectResponse) {
771
+ DeleteObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
772
+ })(DeleteObjectResponse || (DeleteObjectResponse = {}));
773
+ export var ObjectNotDetachedException;
774
+ (function (ObjectNotDetachedException) {
775
+ ObjectNotDetachedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
776
+ })(ObjectNotDetachedException || (ObjectNotDetachedException = {}));
777
+ export var DeleteSchemaRequest;
778
+ (function (DeleteSchemaRequest) {
779
+ DeleteSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
780
+ })(DeleteSchemaRequest || (DeleteSchemaRequest = {}));
781
+ export var DeleteSchemaResponse;
782
+ (function (DeleteSchemaResponse) {
783
+ DeleteSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
784
+ })(DeleteSchemaResponse || (DeleteSchemaResponse = {}));
785
+ export var StillContainsLinksException;
786
+ (function (StillContainsLinksException) {
787
+ StillContainsLinksException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
788
+ })(StillContainsLinksException || (StillContainsLinksException = {}));
789
+ export var DeleteTypedLinkFacetRequest;
790
+ (function (DeleteTypedLinkFacetRequest) {
791
+ DeleteTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
792
+ })(DeleteTypedLinkFacetRequest || (DeleteTypedLinkFacetRequest = {}));
793
+ export var DeleteTypedLinkFacetResponse;
794
+ (function (DeleteTypedLinkFacetResponse) {
795
+ DeleteTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
796
+ })(DeleteTypedLinkFacetResponse || (DeleteTypedLinkFacetResponse = {}));
797
+ export var DetachFromIndexRequest;
798
+ (function (DetachFromIndexRequest) {
799
+ DetachFromIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
800
+ })(DetachFromIndexRequest || (DetachFromIndexRequest = {}));
801
+ export var DetachFromIndexResponse;
802
+ (function (DetachFromIndexResponse) {
803
+ DetachFromIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
804
+ })(DetachFromIndexResponse || (DetachFromIndexResponse = {}));
805
+ export var ObjectAlreadyDetachedException;
806
+ (function (ObjectAlreadyDetachedException) {
807
+ ObjectAlreadyDetachedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
808
+ })(ObjectAlreadyDetachedException || (ObjectAlreadyDetachedException = {}));
809
+ export var DetachObjectRequest;
810
+ (function (DetachObjectRequest) {
811
+ DetachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
812
+ })(DetachObjectRequest || (DetachObjectRequest = {}));
813
+ export var DetachObjectResponse;
814
+ (function (DetachObjectResponse) {
815
+ DetachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
816
+ })(DetachObjectResponse || (DetachObjectResponse = {}));
817
+ export var NotNodeException;
818
+ (function (NotNodeException) {
819
+ NotNodeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
820
+ })(NotNodeException || (NotNodeException = {}));
821
+ export var DetachPolicyRequest;
822
+ (function (DetachPolicyRequest) {
823
+ DetachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
824
+ })(DetachPolicyRequest || (DetachPolicyRequest = {}));
825
+ export var DetachPolicyResponse;
826
+ (function (DetachPolicyResponse) {
827
+ DetachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
828
+ })(DetachPolicyResponse || (DetachPolicyResponse = {}));
829
+ export var DetachTypedLinkRequest;
830
+ (function (DetachTypedLinkRequest) {
831
+ DetachTypedLinkRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
832
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
833
+ }))); };
834
+ })(DetachTypedLinkRequest || (DetachTypedLinkRequest = {}));
835
+ export var DisableDirectoryRequest;
836
+ (function (DisableDirectoryRequest) {
837
+ DisableDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
838
+ })(DisableDirectoryRequest || (DisableDirectoryRequest = {}));
839
+ export var DisableDirectoryResponse;
840
+ (function (DisableDirectoryResponse) {
841
+ DisableDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
842
+ })(DisableDirectoryResponse || (DisableDirectoryResponse = {}));
843
+ export var EnableDirectoryRequest;
844
+ (function (EnableDirectoryRequest) {
845
+ EnableDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
846
+ })(EnableDirectoryRequest || (EnableDirectoryRequest = {}));
847
+ export var EnableDirectoryResponse;
848
+ (function (EnableDirectoryResponse) {
849
+ EnableDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
850
+ })(EnableDirectoryResponse || (EnableDirectoryResponse = {}));
851
+ export var GetAppliedSchemaVersionRequest;
852
+ (function (GetAppliedSchemaVersionRequest) {
853
+ GetAppliedSchemaVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
854
+ })(GetAppliedSchemaVersionRequest || (GetAppliedSchemaVersionRequest = {}));
855
+ export var GetAppliedSchemaVersionResponse;
856
+ (function (GetAppliedSchemaVersionResponse) {
857
+ GetAppliedSchemaVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
858
+ })(GetAppliedSchemaVersionResponse || (GetAppliedSchemaVersionResponse = {}));
859
+ export var GetDirectoryRequest;
860
+ (function (GetDirectoryRequest) {
861
+ GetDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
862
+ })(GetDirectoryRequest || (GetDirectoryRequest = {}));
863
+ export var DirectoryState;
864
+ (function (DirectoryState) {
865
+ DirectoryState["DELETED"] = "DELETED";
866
+ DirectoryState["DISABLED"] = "DISABLED";
867
+ DirectoryState["ENABLED"] = "ENABLED";
868
+ })(DirectoryState || (DirectoryState = {}));
869
+ export var Directory;
870
+ (function (Directory) {
871
+ Directory.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
872
+ })(Directory || (Directory = {}));
873
+ export var GetDirectoryResponse;
874
+ (function (GetDirectoryResponse) {
875
+ GetDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
876
+ })(GetDirectoryResponse || (GetDirectoryResponse = {}));
877
+ export var GetFacetRequest;
878
+ (function (GetFacetRequest) {
879
+ GetFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
880
+ })(GetFacetRequest || (GetFacetRequest = {}));
881
+ export var Facet;
882
+ (function (Facet) {
883
+ Facet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
884
+ })(Facet || (Facet = {}));
885
+ export var GetFacetResponse;
886
+ (function (GetFacetResponse) {
887
+ GetFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
888
+ })(GetFacetResponse || (GetFacetResponse = {}));
889
+ export var GetLinkAttributesRequest;
890
+ (function (GetLinkAttributesRequest) {
891
+ GetLinkAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
892
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
893
+ }))); };
894
+ })(GetLinkAttributesRequest || (GetLinkAttributesRequest = {}));
895
+ export var GetLinkAttributesResponse;
896
+ (function (GetLinkAttributesResponse) {
897
+ GetLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
898
+ })(GetLinkAttributesResponse || (GetLinkAttributesResponse = {}));
899
+ export var GetObjectAttributesRequest;
900
+ (function (GetObjectAttributesRequest) {
901
+ GetObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
902
+ })(GetObjectAttributesRequest || (GetObjectAttributesRequest = {}));
903
+ export var GetObjectAttributesResponse;
904
+ (function (GetObjectAttributesResponse) {
905
+ GetObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
906
+ })(GetObjectAttributesResponse || (GetObjectAttributesResponse = {}));
907
+ export var GetObjectInformationRequest;
908
+ (function (GetObjectInformationRequest) {
909
+ GetObjectInformationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
910
+ })(GetObjectInformationRequest || (GetObjectInformationRequest = {}));
911
+ export var GetObjectInformationResponse;
912
+ (function (GetObjectInformationResponse) {
913
+ GetObjectInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
914
+ })(GetObjectInformationResponse || (GetObjectInformationResponse = {}));
915
+ export var GetSchemaAsJsonRequest;
916
+ (function (GetSchemaAsJsonRequest) {
917
+ GetSchemaAsJsonRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
918
+ })(GetSchemaAsJsonRequest || (GetSchemaAsJsonRequest = {}));
919
+ export var GetSchemaAsJsonResponse;
920
+ (function (GetSchemaAsJsonResponse) {
921
+ GetSchemaAsJsonResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
922
+ })(GetSchemaAsJsonResponse || (GetSchemaAsJsonResponse = {}));
923
+ export var GetTypedLinkFacetInformationRequest;
924
+ (function (GetTypedLinkFacetInformationRequest) {
925
+ GetTypedLinkFacetInformationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
926
+ })(GetTypedLinkFacetInformationRequest || (GetTypedLinkFacetInformationRequest = {}));
927
+ export var GetTypedLinkFacetInformationResponse;
928
+ (function (GetTypedLinkFacetInformationResponse) {
929
+ GetTypedLinkFacetInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
930
+ })(GetTypedLinkFacetInformationResponse || (GetTypedLinkFacetInformationResponse = {}));
931
+ export var InvalidNextTokenException;
932
+ (function (InvalidNextTokenException) {
933
+ InvalidNextTokenException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
934
+ })(InvalidNextTokenException || (InvalidNextTokenException = {}));
935
+ export var ListAppliedSchemaArnsRequest;
936
+ (function (ListAppliedSchemaArnsRequest) {
937
+ ListAppliedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
938
+ })(ListAppliedSchemaArnsRequest || (ListAppliedSchemaArnsRequest = {}));
939
+ export var ListAppliedSchemaArnsResponse;
940
+ (function (ListAppliedSchemaArnsResponse) {
941
+ ListAppliedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
942
+ })(ListAppliedSchemaArnsResponse || (ListAppliedSchemaArnsResponse = {}));
943
+ export var ListAttachedIndicesRequest;
944
+ (function (ListAttachedIndicesRequest) {
945
+ ListAttachedIndicesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
946
+ })(ListAttachedIndicesRequest || (ListAttachedIndicesRequest = {}));
947
+ export var ListAttachedIndicesResponse;
948
+ (function (ListAttachedIndicesResponse) {
949
+ ListAttachedIndicesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
950
+ })(ListAttachedIndicesResponse || (ListAttachedIndicesResponse = {}));
951
+ export var ListDevelopmentSchemaArnsRequest;
952
+ (function (ListDevelopmentSchemaArnsRequest) {
953
+ ListDevelopmentSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
954
+ })(ListDevelopmentSchemaArnsRequest || (ListDevelopmentSchemaArnsRequest = {}));
955
+ export var ListDevelopmentSchemaArnsResponse;
956
+ (function (ListDevelopmentSchemaArnsResponse) {
957
+ ListDevelopmentSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
958
+ })(ListDevelopmentSchemaArnsResponse || (ListDevelopmentSchemaArnsResponse = {}));
959
+ export var ListDirectoriesRequest;
960
+ (function (ListDirectoriesRequest) {
961
+ ListDirectoriesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
962
+ })(ListDirectoriesRequest || (ListDirectoriesRequest = {}));
963
+ export var ListDirectoriesResponse;
964
+ (function (ListDirectoriesResponse) {
965
+ ListDirectoriesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
966
+ })(ListDirectoriesResponse || (ListDirectoriesResponse = {}));
967
+ export var ListFacetAttributesRequest;
968
+ (function (ListFacetAttributesRequest) {
969
+ ListFacetAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
970
+ })(ListFacetAttributesRequest || (ListFacetAttributesRequest = {}));
971
+ export var ListFacetAttributesResponse;
972
+ (function (ListFacetAttributesResponse) {
973
+ ListFacetAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return FacetAttribute.filterSensitiveLog(item); }) }))); };
974
+ })(ListFacetAttributesResponse || (ListFacetAttributesResponse = {}));
975
+ export var ListFacetNamesRequest;
976
+ (function (ListFacetNamesRequest) {
977
+ ListFacetNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
978
+ })(ListFacetNamesRequest || (ListFacetNamesRequest = {}));
979
+ export var ListFacetNamesResponse;
980
+ (function (ListFacetNamesResponse) {
981
+ ListFacetNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
982
+ })(ListFacetNamesResponse || (ListFacetNamesResponse = {}));
983
+ export var ListIncomingTypedLinksRequest;
984
+ (function (ListIncomingTypedLinksRequest) {
985
+ ListIncomingTypedLinksRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
986
+ FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
987
+ }))); };
988
+ })(ListIncomingTypedLinksRequest || (ListIncomingTypedLinksRequest = {}));
989
+ export var ListIncomingTypedLinksResponse;
990
+ (function (ListIncomingTypedLinksResponse) {
991
+ ListIncomingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
992
+ })(ListIncomingTypedLinksResponse || (ListIncomingTypedLinksResponse = {}));
993
+ export var ListIndexRequest;
994
+ (function (ListIndexRequest) {
995
+ ListIndexRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.RangesOnIndexedValues && {
996
+ RangesOnIndexedValues: obj.RangesOnIndexedValues.map(function (item) { return ObjectAttributeRange.filterSensitiveLog(item); }),
997
+ }))); };
998
+ })(ListIndexRequest || (ListIndexRequest = {}));
999
+ export var ListIndexResponse;
1000
+ (function (ListIndexResponse) {
1001
+ ListIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1002
+ })(ListIndexResponse || (ListIndexResponse = {}));
1003
+ export var ListManagedSchemaArnsRequest;
1004
+ (function (ListManagedSchemaArnsRequest) {
1005
+ ListManagedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1006
+ })(ListManagedSchemaArnsRequest || (ListManagedSchemaArnsRequest = {}));
1007
+ export var ListManagedSchemaArnsResponse;
1008
+ (function (ListManagedSchemaArnsResponse) {
1009
+ ListManagedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1010
+ })(ListManagedSchemaArnsResponse || (ListManagedSchemaArnsResponse = {}));
1011
+ export var ListObjectAttributesRequest;
1012
+ (function (ListObjectAttributesRequest) {
1013
+ ListObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1014
+ })(ListObjectAttributesRequest || (ListObjectAttributesRequest = {}));
1015
+ export var ListObjectAttributesResponse;
1016
+ (function (ListObjectAttributesResponse) {
1017
+ ListObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
1018
+ })(ListObjectAttributesResponse || (ListObjectAttributesResponse = {}));
1019
+ export var ListObjectChildrenRequest;
1020
+ (function (ListObjectChildrenRequest) {
1021
+ ListObjectChildrenRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1022
+ })(ListObjectChildrenRequest || (ListObjectChildrenRequest = {}));
1023
+ export var ListObjectChildrenResponse;
1024
+ (function (ListObjectChildrenResponse) {
1025
+ ListObjectChildrenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1026
+ })(ListObjectChildrenResponse || (ListObjectChildrenResponse = {}));
1027
+ export var ListObjectParentPathsRequest;
1028
+ (function (ListObjectParentPathsRequest) {
1029
+ ListObjectParentPathsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1030
+ })(ListObjectParentPathsRequest || (ListObjectParentPathsRequest = {}));
1031
+ export var ListObjectParentPathsResponse;
1032
+ (function (ListObjectParentPathsResponse) {
1033
+ ListObjectParentPathsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1034
+ })(ListObjectParentPathsResponse || (ListObjectParentPathsResponse = {}));
1035
+ export var CannotListParentOfRootException;
1036
+ (function (CannotListParentOfRootException) {
1037
+ CannotListParentOfRootException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1038
+ })(CannotListParentOfRootException || (CannotListParentOfRootException = {}));
1039
+ export var ListObjectParentsRequest;
1040
+ (function (ListObjectParentsRequest) {
1041
+ ListObjectParentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1042
+ })(ListObjectParentsRequest || (ListObjectParentsRequest = {}));
1043
+ export var ListObjectParentsResponse;
1044
+ (function (ListObjectParentsResponse) {
1045
+ ListObjectParentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1046
+ })(ListObjectParentsResponse || (ListObjectParentsResponse = {}));
1047
+ export var ListObjectPoliciesRequest;
1048
+ (function (ListObjectPoliciesRequest) {
1049
+ ListObjectPoliciesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1050
+ })(ListObjectPoliciesRequest || (ListObjectPoliciesRequest = {}));
1051
+ export var ListObjectPoliciesResponse;
1052
+ (function (ListObjectPoliciesResponse) {
1053
+ ListObjectPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1054
+ })(ListObjectPoliciesResponse || (ListObjectPoliciesResponse = {}));
1055
+ export var ListOutgoingTypedLinksRequest;
1056
+ (function (ListOutgoingTypedLinksRequest) {
1057
+ ListOutgoingTypedLinksRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
1058
+ FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
1059
+ }))); };
1060
+ })(ListOutgoingTypedLinksRequest || (ListOutgoingTypedLinksRequest = {}));
1061
+ export var ListOutgoingTypedLinksResponse;
1062
+ (function (ListOutgoingTypedLinksResponse) {
1063
+ ListOutgoingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1064
+ })(ListOutgoingTypedLinksResponse || (ListOutgoingTypedLinksResponse = {}));
1065
+ export var ListPolicyAttachmentsRequest;
1066
+ (function (ListPolicyAttachmentsRequest) {
1067
+ ListPolicyAttachmentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1068
+ })(ListPolicyAttachmentsRequest || (ListPolicyAttachmentsRequest = {}));
1069
+ export var ListPolicyAttachmentsResponse;
1070
+ (function (ListPolicyAttachmentsResponse) {
1071
+ ListPolicyAttachmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1072
+ })(ListPolicyAttachmentsResponse || (ListPolicyAttachmentsResponse = {}));
1073
+ export var ListPublishedSchemaArnsRequest;
1074
+ (function (ListPublishedSchemaArnsRequest) {
1075
+ ListPublishedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1076
+ })(ListPublishedSchemaArnsRequest || (ListPublishedSchemaArnsRequest = {}));
1077
+ export var ListPublishedSchemaArnsResponse;
1078
+ (function (ListPublishedSchemaArnsResponse) {
1079
+ ListPublishedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1080
+ })(ListPublishedSchemaArnsResponse || (ListPublishedSchemaArnsResponse = {}));
1081
+ export var InvalidTaggingRequestException;
1082
+ (function (InvalidTaggingRequestException) {
1083
+ InvalidTaggingRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1084
+ })(InvalidTaggingRequestException || (InvalidTaggingRequestException = {}));
1085
+ export var ListTagsForResourceRequest;
1086
+ (function (ListTagsForResourceRequest) {
1087
+ ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1088
+ })(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
1089
+ export var Tag;
1090
+ (function (Tag) {
1091
+ Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1092
+ })(Tag || (Tag = {}));
1093
+ export var ListTagsForResourceResponse;
1094
+ (function (ListTagsForResourceResponse) {
1095
+ ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1096
+ })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
1097
+ export var ListTypedLinkFacetAttributesRequest;
1098
+ (function (ListTypedLinkFacetAttributesRequest) {
1099
+ ListTypedLinkFacetAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1100
+ })(ListTypedLinkFacetAttributesRequest || (ListTypedLinkFacetAttributesRequest = {}));
1101
+ export var ListTypedLinkFacetAttributesResponse;
1102
+ (function (ListTypedLinkFacetAttributesResponse) {
1103
+ ListTypedLinkFacetAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && {
1104
+ Attributes: obj.Attributes.map(function (item) { return TypedLinkAttributeDefinition.filterSensitiveLog(item); }),
1105
+ }))); };
1106
+ })(ListTypedLinkFacetAttributesResponse || (ListTypedLinkFacetAttributesResponse = {}));
1107
+ export var ListTypedLinkFacetNamesRequest;
1108
+ (function (ListTypedLinkFacetNamesRequest) {
1109
+ ListTypedLinkFacetNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1110
+ })(ListTypedLinkFacetNamesRequest || (ListTypedLinkFacetNamesRequest = {}));
1111
+ export var ListTypedLinkFacetNamesResponse;
1112
+ (function (ListTypedLinkFacetNamesResponse) {
1113
+ ListTypedLinkFacetNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1114
+ })(ListTypedLinkFacetNamesResponse || (ListTypedLinkFacetNamesResponse = {}));
1115
+ export var LookupPolicyRequest;
1116
+ (function (LookupPolicyRequest) {
1117
+ LookupPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1118
+ })(LookupPolicyRequest || (LookupPolicyRequest = {}));
1119
+ export var LookupPolicyResponse;
1120
+ (function (LookupPolicyResponse) {
1121
+ LookupPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1122
+ })(LookupPolicyResponse || (LookupPolicyResponse = {}));
1123
+ export var PublishSchemaRequest;
1124
+ (function (PublishSchemaRequest) {
1125
+ PublishSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1126
+ })(PublishSchemaRequest || (PublishSchemaRequest = {}));
1127
+ export var PublishSchemaResponse;
1128
+ (function (PublishSchemaResponse) {
1129
+ PublishSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1130
+ })(PublishSchemaResponse || (PublishSchemaResponse = {}));
1131
+ export var SchemaAlreadyPublishedException;
1132
+ (function (SchemaAlreadyPublishedException) {
1133
+ SchemaAlreadyPublishedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1134
+ })(SchemaAlreadyPublishedException || (SchemaAlreadyPublishedException = {}));
1135
+ export var InvalidSchemaDocException;
1136
+ (function (InvalidSchemaDocException) {
1137
+ InvalidSchemaDocException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1138
+ })(InvalidSchemaDocException || (InvalidSchemaDocException = {}));
1139
+ export var PutSchemaFromJsonRequest;
1140
+ (function (PutSchemaFromJsonRequest) {
1141
+ PutSchemaFromJsonRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1142
+ })(PutSchemaFromJsonRequest || (PutSchemaFromJsonRequest = {}));
1143
+ export var PutSchemaFromJsonResponse;
1144
+ (function (PutSchemaFromJsonResponse) {
1145
+ PutSchemaFromJsonResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1146
+ })(PutSchemaFromJsonResponse || (PutSchemaFromJsonResponse = {}));
1147
+ export var RemoveFacetFromObjectRequest;
1148
+ (function (RemoveFacetFromObjectRequest) {
1149
+ RemoveFacetFromObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1150
+ })(RemoveFacetFromObjectRequest || (RemoveFacetFromObjectRequest = {}));
1151
+ export var RemoveFacetFromObjectResponse;
1152
+ (function (RemoveFacetFromObjectResponse) {
1153
+ RemoveFacetFromObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1154
+ })(RemoveFacetFromObjectResponse || (RemoveFacetFromObjectResponse = {}));
1155
+ export var TagResourceRequest;
1156
+ (function (TagResourceRequest) {
1157
+ TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1158
+ })(TagResourceRequest || (TagResourceRequest = {}));
1159
+ export var TagResourceResponse;
1160
+ (function (TagResourceResponse) {
1161
+ TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1162
+ })(TagResourceResponse || (TagResourceResponse = {}));
1163
+ export var UntagResourceRequest;
1164
+ (function (UntagResourceRequest) {
1165
+ UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1166
+ })(UntagResourceRequest || (UntagResourceRequest = {}));
1167
+ export var UntagResourceResponse;
1168
+ (function (UntagResourceResponse) {
1169
+ UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1170
+ })(UntagResourceResponse || (UntagResourceResponse = {}));
1171
+ export var InvalidFacetUpdateException;
1172
+ (function (InvalidFacetUpdateException) {
1173
+ InvalidFacetUpdateException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1174
+ })(InvalidFacetUpdateException || (InvalidFacetUpdateException = {}));
1175
+ export var FacetAttributeUpdate;
1176
+ (function (FacetAttributeUpdate) {
1177
+ FacetAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attribute && { Attribute: FacetAttribute.filterSensitiveLog(obj.Attribute) }))); };
1178
+ })(FacetAttributeUpdate || (FacetAttributeUpdate = {}));
1179
+ export var UpdateFacetRequest;
1180
+ (function (UpdateFacetRequest) {
1181
+ UpdateFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
1182
+ AttributeUpdates: obj.AttributeUpdates.map(function (item) { return FacetAttributeUpdate.filterSensitiveLog(item); }),
1183
+ }))); };
1184
+ })(UpdateFacetRequest || (UpdateFacetRequest = {}));
1185
+ export var UpdateFacetResponse;
1186
+ (function (UpdateFacetResponse) {
1187
+ UpdateFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1188
+ })(UpdateFacetResponse || (UpdateFacetResponse = {}));
1189
+ export var UpdateLinkAttributesRequest;
1190
+ (function (UpdateLinkAttributesRequest) {
1191
+ UpdateLinkAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
1192
+ TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1193
+ })), (obj.AttributeUpdates && {
1194
+ AttributeUpdates: obj.AttributeUpdates.map(function (item) { return LinkAttributeUpdate.filterSensitiveLog(item); }),
1195
+ }))); };
1196
+ })(UpdateLinkAttributesRequest || (UpdateLinkAttributesRequest = {}));
1197
+ export var UpdateLinkAttributesResponse;
1198
+ (function (UpdateLinkAttributesResponse) {
1199
+ UpdateLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1200
+ })(UpdateLinkAttributesResponse || (UpdateLinkAttributesResponse = {}));
1201
+ export var UpdateObjectAttributesRequest;
1202
+ (function (UpdateObjectAttributesRequest) {
1203
+ UpdateObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
1204
+ AttributeUpdates: obj.AttributeUpdates.map(function (item) { return ObjectAttributeUpdate.filterSensitiveLog(item); }),
1205
+ }))); };
1206
+ })(UpdateObjectAttributesRequest || (UpdateObjectAttributesRequest = {}));
1207
+ export var UpdateObjectAttributesResponse;
1208
+ (function (UpdateObjectAttributesResponse) {
1209
+ UpdateObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1210
+ })(UpdateObjectAttributesResponse || (UpdateObjectAttributesResponse = {}));
1211
+ export var UpdateSchemaRequest;
1212
+ (function (UpdateSchemaRequest) {
1213
+ UpdateSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1214
+ })(UpdateSchemaRequest || (UpdateSchemaRequest = {}));
1215
+ export var UpdateSchemaResponse;
1216
+ (function (UpdateSchemaResponse) {
1217
+ UpdateSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1218
+ })(UpdateSchemaResponse || (UpdateSchemaResponse = {}));
1219
+ export var TypedLinkFacetAttributeUpdate;
1220
+ (function (TypedLinkFacetAttributeUpdate) {
1221
+ TypedLinkFacetAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attribute && { Attribute: TypedLinkAttributeDefinition.filterSensitiveLog(obj.Attribute) }))); };
1222
+ })(TypedLinkFacetAttributeUpdate || (TypedLinkFacetAttributeUpdate = {}));
1223
+ export var UpdateTypedLinkFacetRequest;
1224
+ (function (UpdateTypedLinkFacetRequest) {
1225
+ UpdateTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
1226
+ AttributeUpdates: obj.AttributeUpdates.map(function (item) { return TypedLinkFacetAttributeUpdate.filterSensitiveLog(item); }),
1227
+ }))); };
1228
+ })(UpdateTypedLinkFacetRequest || (UpdateTypedLinkFacetRequest = {}));
1229
+ export var UpdateTypedLinkFacetResponse;
1230
+ (function (UpdateTypedLinkFacetResponse) {
1231
+ UpdateTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1232
+ })(UpdateTypedLinkFacetResponse || (UpdateTypedLinkFacetResponse = {}));
1233
+ export var IncompatibleSchemaException;
1234
+ (function (IncompatibleSchemaException) {
1235
+ IncompatibleSchemaException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1236
+ })(IncompatibleSchemaException || (IncompatibleSchemaException = {}));
1237
+ export var UpgradeAppliedSchemaRequest;
1238
+ (function (UpgradeAppliedSchemaRequest) {
1239
+ UpgradeAppliedSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1240
+ })(UpgradeAppliedSchemaRequest || (UpgradeAppliedSchemaRequest = {}));
1241
+ export var UpgradeAppliedSchemaResponse;
1242
+ (function (UpgradeAppliedSchemaResponse) {
1243
+ UpgradeAppliedSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1244
+ })(UpgradeAppliedSchemaResponse || (UpgradeAppliedSchemaResponse = {}));
1245
+ export var UpgradePublishedSchemaRequest;
1246
+ (function (UpgradePublishedSchemaRequest) {
1247
+ UpgradePublishedSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1248
+ })(UpgradePublishedSchemaRequest || (UpgradePublishedSchemaRequest = {}));
1249
+ export var UpgradePublishedSchemaResponse;
1250
+ (function (UpgradePublishedSchemaResponse) {
1251
+ UpgradePublishedSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1252
+ })(UpgradePublishedSchemaResponse || (UpgradePublishedSchemaResponse = {}));