@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
@@ -1,2036 +0,0 @@
1
- import { __assign } from "tslib";
2
- export var AccessDeniedException;
3
- (function (AccessDeniedException) {
4
- /**
5
- * @internal
6
- */
7
- AccessDeniedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
8
- })(AccessDeniedException || (AccessDeniedException = {}));
9
- export var AttributeKey;
10
- (function (AttributeKey) {
11
- /**
12
- * @internal
13
- */
14
- AttributeKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
15
- })(AttributeKey || (AttributeKey = {}));
16
- export var TypedAttributeValue;
17
- (function (TypedAttributeValue) {
18
- TypedAttributeValue.visit = function (value, visitor) {
19
- if (value.StringValue !== undefined)
20
- return visitor.StringValue(value.StringValue);
21
- if (value.BinaryValue !== undefined)
22
- return visitor.BinaryValue(value.BinaryValue);
23
- if (value.BooleanValue !== undefined)
24
- return visitor.BooleanValue(value.BooleanValue);
25
- if (value.NumberValue !== undefined)
26
- return visitor.NumberValue(value.NumberValue);
27
- if (value.DatetimeValue !== undefined)
28
- return visitor.DatetimeValue(value.DatetimeValue);
29
- return visitor._(value.$unknown[0], value.$unknown[1]);
30
- };
31
- /**
32
- * @internal
33
- */
34
- TypedAttributeValue.filterSensitiveLog = function (obj) {
35
- var _a;
36
- if (obj.StringValue !== undefined)
37
- return { StringValue: obj.StringValue };
38
- if (obj.BinaryValue !== undefined)
39
- return { BinaryValue: obj.BinaryValue };
40
- if (obj.BooleanValue !== undefined)
41
- return { BooleanValue: obj.BooleanValue };
42
- if (obj.NumberValue !== undefined)
43
- return { NumberValue: obj.NumberValue };
44
- if (obj.DatetimeValue !== undefined)
45
- return { DatetimeValue: obj.DatetimeValue };
46
- if (obj.$unknown !== undefined)
47
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
48
- };
49
- })(TypedAttributeValue || (TypedAttributeValue = {}));
50
- export var AttributeKeyAndValue;
51
- (function (AttributeKeyAndValue) {
52
- /**
53
- * @internal
54
- */
55
- AttributeKeyAndValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }))); };
56
- })(AttributeKeyAndValue || (AttributeKeyAndValue = {}));
57
- export var ObjectReference;
58
- (function (ObjectReference) {
59
- /**
60
- * @internal
61
- */
62
- ObjectReference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
63
- })(ObjectReference || (ObjectReference = {}));
64
- export var SchemaFacet;
65
- (function (SchemaFacet) {
66
- /**
67
- * @internal
68
- */
69
- SchemaFacet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
70
- })(SchemaFacet || (SchemaFacet = {}));
71
- export var AddFacetToObjectRequest;
72
- (function (AddFacetToObjectRequest) {
73
- /**
74
- * @internal
75
- */
76
- AddFacetToObjectRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
77
- ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
78
- }))); };
79
- })(AddFacetToObjectRequest || (AddFacetToObjectRequest = {}));
80
- export var AddFacetToObjectResponse;
81
- (function (AddFacetToObjectResponse) {
82
- /**
83
- * @internal
84
- */
85
- AddFacetToObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
86
- })(AddFacetToObjectResponse || (AddFacetToObjectResponse = {}));
87
- export var DirectoryNotEnabledException;
88
- (function (DirectoryNotEnabledException) {
89
- /**
90
- * @internal
91
- */
92
- DirectoryNotEnabledException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
93
- })(DirectoryNotEnabledException || (DirectoryNotEnabledException = {}));
94
- export var FacetValidationException;
95
- (function (FacetValidationException) {
96
- /**
97
- * @internal
98
- */
99
- FacetValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
100
- })(FacetValidationException || (FacetValidationException = {}));
101
- export var InternalServiceException;
102
- (function (InternalServiceException) {
103
- /**
104
- * @internal
105
- */
106
- InternalServiceException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
107
- })(InternalServiceException || (InternalServiceException = {}));
108
- export var InvalidArnException;
109
- (function (InvalidArnException) {
110
- /**
111
- * @internal
112
- */
113
- InvalidArnException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
114
- })(InvalidArnException || (InvalidArnException = {}));
115
- export var LimitExceededException;
116
- (function (LimitExceededException) {
117
- /**
118
- * @internal
119
- */
120
- LimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
121
- })(LimitExceededException || (LimitExceededException = {}));
122
- export var ResourceNotFoundException;
123
- (function (ResourceNotFoundException) {
124
- /**
125
- * @internal
126
- */
127
- ResourceNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
128
- })(ResourceNotFoundException || (ResourceNotFoundException = {}));
129
- export var RetryableConflictException;
130
- (function (RetryableConflictException) {
131
- /**
132
- * @internal
133
- */
134
- RetryableConflictException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
135
- })(RetryableConflictException || (RetryableConflictException = {}));
136
- export var ValidationException;
137
- (function (ValidationException) {
138
- /**
139
- * @internal
140
- */
141
- ValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
142
- })(ValidationException || (ValidationException = {}));
143
- export var ApplySchemaRequest;
144
- (function (ApplySchemaRequest) {
145
- /**
146
- * @internal
147
- */
148
- ApplySchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
- })(ApplySchemaRequest || (ApplySchemaRequest = {}));
150
- export var ApplySchemaResponse;
151
- (function (ApplySchemaResponse) {
152
- /**
153
- * @internal
154
- */
155
- ApplySchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
156
- })(ApplySchemaResponse || (ApplySchemaResponse = {}));
157
- export var InvalidAttachmentException;
158
- (function (InvalidAttachmentException) {
159
- /**
160
- * @internal
161
- */
162
- InvalidAttachmentException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
163
- })(InvalidAttachmentException || (InvalidAttachmentException = {}));
164
- export var SchemaAlreadyExistsException;
165
- (function (SchemaAlreadyExistsException) {
166
- /**
167
- * @internal
168
- */
169
- SchemaAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
- })(SchemaAlreadyExistsException || (SchemaAlreadyExistsException = {}));
171
- export var AttachObjectRequest;
172
- (function (AttachObjectRequest) {
173
- /**
174
- * @internal
175
- */
176
- AttachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
- })(AttachObjectRequest || (AttachObjectRequest = {}));
178
- export var AttachObjectResponse;
179
- (function (AttachObjectResponse) {
180
- /**
181
- * @internal
182
- */
183
- AttachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
- })(AttachObjectResponse || (AttachObjectResponse = {}));
185
- export var LinkNameAlreadyInUseException;
186
- (function (LinkNameAlreadyInUseException) {
187
- /**
188
- * @internal
189
- */
190
- LinkNameAlreadyInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
- })(LinkNameAlreadyInUseException || (LinkNameAlreadyInUseException = {}));
192
- export var AttachPolicyRequest;
193
- (function (AttachPolicyRequest) {
194
- /**
195
- * @internal
196
- */
197
- AttachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
- })(AttachPolicyRequest || (AttachPolicyRequest = {}));
199
- export var AttachPolicyResponse;
200
- (function (AttachPolicyResponse) {
201
- /**
202
- * @internal
203
- */
204
- AttachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
- })(AttachPolicyResponse || (AttachPolicyResponse = {}));
206
- export var NotPolicyException;
207
- (function (NotPolicyException) {
208
- /**
209
- * @internal
210
- */
211
- NotPolicyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
- })(NotPolicyException || (NotPolicyException = {}));
213
- export var AttachToIndexRequest;
214
- (function (AttachToIndexRequest) {
215
- /**
216
- * @internal
217
- */
218
- AttachToIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
- })(AttachToIndexRequest || (AttachToIndexRequest = {}));
220
- export var AttachToIndexResponse;
221
- (function (AttachToIndexResponse) {
222
- /**
223
- * @internal
224
- */
225
- AttachToIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
- })(AttachToIndexResponse || (AttachToIndexResponse = {}));
227
- export var IndexedAttributeMissingException;
228
- (function (IndexedAttributeMissingException) {
229
- /**
230
- * @internal
231
- */
232
- IndexedAttributeMissingException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
- })(IndexedAttributeMissingException || (IndexedAttributeMissingException = {}));
234
- export var NotIndexException;
235
- (function (NotIndexException) {
236
- /**
237
- * @internal
238
- */
239
- NotIndexException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
- })(NotIndexException || (NotIndexException = {}));
241
- export var AttributeNameAndValue;
242
- (function (AttributeNameAndValue) {
243
- /**
244
- * @internal
245
- */
246
- AttributeNameAndValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }))); };
247
- })(AttributeNameAndValue || (AttributeNameAndValue = {}));
248
- export var TypedLinkSchemaAndFacetName;
249
- (function (TypedLinkSchemaAndFacetName) {
250
- /**
251
- * @internal
252
- */
253
- TypedLinkSchemaAndFacetName.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- })(TypedLinkSchemaAndFacetName || (TypedLinkSchemaAndFacetName = {}));
255
- export var AttachTypedLinkRequest;
256
- (function (AttachTypedLinkRequest) {
257
- /**
258
- * @internal
259
- */
260
- AttachTypedLinkRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeNameAndValue.filterSensitiveLog(item); }) }))); };
261
- })(AttachTypedLinkRequest || (AttachTypedLinkRequest = {}));
262
- export var TypedLinkSpecifier;
263
- (function (TypedLinkSpecifier) {
264
- /**
265
- * @internal
266
- */
267
- TypedLinkSpecifier.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.IdentityAttributeValues && {
268
- IdentityAttributeValues: obj.IdentityAttributeValues.map(function (item) {
269
- return AttributeNameAndValue.filterSensitiveLog(item);
270
- }),
271
- }))); };
272
- })(TypedLinkSpecifier || (TypedLinkSpecifier = {}));
273
- export var AttachTypedLinkResponse;
274
- (function (AttachTypedLinkResponse) {
275
- /**
276
- * @internal
277
- */
278
- AttachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
279
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
280
- }))); };
281
- })(AttachTypedLinkResponse || (AttachTypedLinkResponse = {}));
282
- export var ConsistencyLevel;
283
- (function (ConsistencyLevel) {
284
- ConsistencyLevel["EVENTUAL"] = "EVENTUAL";
285
- ConsistencyLevel["SERIALIZABLE"] = "SERIALIZABLE";
286
- })(ConsistencyLevel || (ConsistencyLevel = {}));
287
- export var BatchGetLinkAttributes;
288
- (function (BatchGetLinkAttributes) {
289
- /**
290
- * @internal
291
- */
292
- BatchGetLinkAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
293
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
294
- }))); };
295
- })(BatchGetLinkAttributes || (BatchGetLinkAttributes = {}));
296
- export var BatchGetObjectAttributes;
297
- (function (BatchGetObjectAttributes) {
298
- /**
299
- * @internal
300
- */
301
- BatchGetObjectAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- })(BatchGetObjectAttributes || (BatchGetObjectAttributes = {}));
303
- export var BatchGetObjectInformation;
304
- (function (BatchGetObjectInformation) {
305
- /**
306
- * @internal
307
- */
308
- BatchGetObjectInformation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- })(BatchGetObjectInformation || (BatchGetObjectInformation = {}));
310
- export var BatchListAttachedIndices;
311
- (function (BatchListAttachedIndices) {
312
- /**
313
- * @internal
314
- */
315
- BatchListAttachedIndices.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- })(BatchListAttachedIndices || (BatchListAttachedIndices = {}));
317
- export var RangeMode;
318
- (function (RangeMode) {
319
- RangeMode["EXCLUSIVE"] = "EXCLUSIVE";
320
- RangeMode["FIRST"] = "FIRST";
321
- RangeMode["INCLUSIVE"] = "INCLUSIVE";
322
- RangeMode["LAST"] = "LAST";
323
- RangeMode["LAST_BEFORE_MISSING_VALUES"] = "LAST_BEFORE_MISSING_VALUES";
324
- })(RangeMode || (RangeMode = {}));
325
- export var TypedAttributeValueRange;
326
- (function (TypedAttributeValueRange) {
327
- /**
328
- * @internal
329
- */
330
- TypedAttributeValueRange.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.StartValue && { StartValue: TypedAttributeValue.filterSensitiveLog(obj.StartValue) })), (obj.EndValue && { EndValue: TypedAttributeValue.filterSensitiveLog(obj.EndValue) }))); };
331
- })(TypedAttributeValueRange || (TypedAttributeValueRange = {}));
332
- export var TypedLinkAttributeRange;
333
- (function (TypedLinkAttributeRange) {
334
- /**
335
- * @internal
336
- */
337
- TypedLinkAttributeRange.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }))); };
338
- })(TypedLinkAttributeRange || (TypedLinkAttributeRange = {}));
339
- export var BatchListIncomingTypedLinks;
340
- (function (BatchListIncomingTypedLinks) {
341
- /**
342
- * @internal
343
- */
344
- BatchListIncomingTypedLinks.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
345
- FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
346
- }))); };
347
- })(BatchListIncomingTypedLinks || (BatchListIncomingTypedLinks = {}));
348
- export var ObjectAttributeRange;
349
- (function (ObjectAttributeRange) {
350
- /**
351
- * @internal
352
- */
353
- ObjectAttributeRange.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }))); };
354
- })(ObjectAttributeRange || (ObjectAttributeRange = {}));
355
- export var BatchListIndex;
356
- (function (BatchListIndex) {
357
- /**
358
- * @internal
359
- */
360
- BatchListIndex.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.RangesOnIndexedValues && {
361
- RangesOnIndexedValues: obj.RangesOnIndexedValues.map(function (item) { return ObjectAttributeRange.filterSensitiveLog(item); }),
362
- }))); };
363
- })(BatchListIndex || (BatchListIndex = {}));
364
- export var BatchListObjectAttributes;
365
- (function (BatchListObjectAttributes) {
366
- /**
367
- * @internal
368
- */
369
- BatchListObjectAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- })(BatchListObjectAttributes || (BatchListObjectAttributes = {}));
371
- export var BatchListObjectChildren;
372
- (function (BatchListObjectChildren) {
373
- /**
374
- * @internal
375
- */
376
- BatchListObjectChildren.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- })(BatchListObjectChildren || (BatchListObjectChildren = {}));
378
- export var BatchListObjectParentPaths;
379
- (function (BatchListObjectParentPaths) {
380
- /**
381
- * @internal
382
- */
383
- BatchListObjectParentPaths.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- })(BatchListObjectParentPaths || (BatchListObjectParentPaths = {}));
385
- export var BatchListObjectParents;
386
- (function (BatchListObjectParents) {
387
- /**
388
- * @internal
389
- */
390
- BatchListObjectParents.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
391
- })(BatchListObjectParents || (BatchListObjectParents = {}));
392
- export var BatchListObjectPolicies;
393
- (function (BatchListObjectPolicies) {
394
- /**
395
- * @internal
396
- */
397
- BatchListObjectPolicies.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
398
- })(BatchListObjectPolicies || (BatchListObjectPolicies = {}));
399
- export var BatchListOutgoingTypedLinks;
400
- (function (BatchListOutgoingTypedLinks) {
401
- /**
402
- * @internal
403
- */
404
- BatchListOutgoingTypedLinks.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
405
- FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
406
- }))); };
407
- })(BatchListOutgoingTypedLinks || (BatchListOutgoingTypedLinks = {}));
408
- export var BatchListPolicyAttachments;
409
- (function (BatchListPolicyAttachments) {
410
- /**
411
- * @internal
412
- */
413
- BatchListPolicyAttachments.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
414
- })(BatchListPolicyAttachments || (BatchListPolicyAttachments = {}));
415
- export var BatchLookupPolicy;
416
- (function (BatchLookupPolicy) {
417
- /**
418
- * @internal
419
- */
420
- BatchLookupPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
421
- })(BatchLookupPolicy || (BatchLookupPolicy = {}));
422
- export var BatchReadOperation;
423
- (function (BatchReadOperation) {
424
- /**
425
- * @internal
426
- */
427
- BatchReadOperation.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.ListIndex && { ListIndex: BatchListIndex.filterSensitiveLog(obj.ListIndex) })), (obj.ListOutgoingTypedLinks && {
428
- ListOutgoingTypedLinks: BatchListOutgoingTypedLinks.filterSensitiveLog(obj.ListOutgoingTypedLinks),
429
- })), (obj.ListIncomingTypedLinks && {
430
- ListIncomingTypedLinks: BatchListIncomingTypedLinks.filterSensitiveLog(obj.ListIncomingTypedLinks),
431
- })), (obj.GetLinkAttributes && {
432
- GetLinkAttributes: BatchGetLinkAttributes.filterSensitiveLog(obj.GetLinkAttributes),
433
- }))); };
434
- })(BatchReadOperation || (BatchReadOperation = {}));
435
- export var BatchReadRequest;
436
- (function (BatchReadRequest) {
437
- /**
438
- * @internal
439
- */
440
- BatchReadRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
441
- })(BatchReadRequest || (BatchReadRequest = {}));
442
- export var BatchReadExceptionType;
443
- (function (BatchReadExceptionType) {
444
- BatchReadExceptionType["AccessDeniedException"] = "AccessDeniedException";
445
- BatchReadExceptionType["CannotListParentOfRootException"] = "CannotListParentOfRootException";
446
- BatchReadExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
447
- BatchReadExceptionType["FacetValidationException"] = "FacetValidationException";
448
- BatchReadExceptionType["InternalServiceException"] = "InternalServiceException";
449
- BatchReadExceptionType["InvalidArnException"] = "InvalidArnException";
450
- BatchReadExceptionType["InvalidNextTokenException"] = "InvalidNextTokenException";
451
- BatchReadExceptionType["LimitExceededException"] = "LimitExceededException";
452
- BatchReadExceptionType["NotIndexException"] = "NotIndexException";
453
- BatchReadExceptionType["NotNodeException"] = "NotNodeException";
454
- BatchReadExceptionType["NotPolicyException"] = "NotPolicyException";
455
- BatchReadExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
456
- BatchReadExceptionType["ValidationException"] = "ValidationException";
457
- })(BatchReadExceptionType || (BatchReadExceptionType = {}));
458
- export var BatchReadException;
459
- (function (BatchReadException) {
460
- /**
461
- * @internal
462
- */
463
- BatchReadException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
464
- })(BatchReadException || (BatchReadException = {}));
465
- export var BatchGetLinkAttributesResponse;
466
- (function (BatchGetLinkAttributesResponse) {
467
- /**
468
- * @internal
469
- */
470
- BatchGetLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
471
- })(BatchGetLinkAttributesResponse || (BatchGetLinkAttributesResponse = {}));
472
- export var BatchGetObjectAttributesResponse;
473
- (function (BatchGetObjectAttributesResponse) {
474
- /**
475
- * @internal
476
- */
477
- BatchGetObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
478
- })(BatchGetObjectAttributesResponse || (BatchGetObjectAttributesResponse = {}));
479
- export var BatchGetObjectInformationResponse;
480
- (function (BatchGetObjectInformationResponse) {
481
- /**
482
- * @internal
483
- */
484
- BatchGetObjectInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
485
- })(BatchGetObjectInformationResponse || (BatchGetObjectInformationResponse = {}));
486
- export var IndexAttachment;
487
- (function (IndexAttachment) {
488
- /**
489
- * @internal
490
- */
491
- IndexAttachment.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.IndexedAttributes && {
492
- IndexedAttributes: obj.IndexedAttributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
493
- }))); };
494
- })(IndexAttachment || (IndexAttachment = {}));
495
- export var BatchListAttachedIndicesResponse;
496
- (function (BatchListAttachedIndicesResponse) {
497
- /**
498
- * @internal
499
- */
500
- BatchListAttachedIndicesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
501
- })(BatchListAttachedIndicesResponse || (BatchListAttachedIndicesResponse = {}));
502
- export var BatchListIncomingTypedLinksResponse;
503
- (function (BatchListIncomingTypedLinksResponse) {
504
- /**
505
- * @internal
506
- */
507
- BatchListIncomingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
508
- })(BatchListIncomingTypedLinksResponse || (BatchListIncomingTypedLinksResponse = {}));
509
- export var BatchListIndexResponse;
510
- (function (BatchListIndexResponse) {
511
- /**
512
- * @internal
513
- */
514
- BatchListIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
515
- })(BatchListIndexResponse || (BatchListIndexResponse = {}));
516
- export var BatchListObjectAttributesResponse;
517
- (function (BatchListObjectAttributesResponse) {
518
- /**
519
- * @internal
520
- */
521
- BatchListObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
522
- })(BatchListObjectAttributesResponse || (BatchListObjectAttributesResponse = {}));
523
- export var BatchListObjectChildrenResponse;
524
- (function (BatchListObjectChildrenResponse) {
525
- /**
526
- * @internal
527
- */
528
- BatchListObjectChildrenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
529
- })(BatchListObjectChildrenResponse || (BatchListObjectChildrenResponse = {}));
530
- export var PathToObjectIdentifiers;
531
- (function (PathToObjectIdentifiers) {
532
- /**
533
- * @internal
534
- */
535
- PathToObjectIdentifiers.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
536
- })(PathToObjectIdentifiers || (PathToObjectIdentifiers = {}));
537
- export var BatchListObjectParentPathsResponse;
538
- (function (BatchListObjectParentPathsResponse) {
539
- /**
540
- * @internal
541
- */
542
- BatchListObjectParentPathsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
543
- })(BatchListObjectParentPathsResponse || (BatchListObjectParentPathsResponse = {}));
544
- export var ObjectIdentifierAndLinkNameTuple;
545
- (function (ObjectIdentifierAndLinkNameTuple) {
546
- /**
547
- * @internal
548
- */
549
- ObjectIdentifierAndLinkNameTuple.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
550
- })(ObjectIdentifierAndLinkNameTuple || (ObjectIdentifierAndLinkNameTuple = {}));
551
- export var BatchListObjectParentsResponse;
552
- (function (BatchListObjectParentsResponse) {
553
- /**
554
- * @internal
555
- */
556
- BatchListObjectParentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
557
- })(BatchListObjectParentsResponse || (BatchListObjectParentsResponse = {}));
558
- export var BatchListObjectPoliciesResponse;
559
- (function (BatchListObjectPoliciesResponse) {
560
- /**
561
- * @internal
562
- */
563
- BatchListObjectPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
564
- })(BatchListObjectPoliciesResponse || (BatchListObjectPoliciesResponse = {}));
565
- export var BatchListOutgoingTypedLinksResponse;
566
- (function (BatchListOutgoingTypedLinksResponse) {
567
- /**
568
- * @internal
569
- */
570
- BatchListOutgoingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
571
- })(BatchListOutgoingTypedLinksResponse || (BatchListOutgoingTypedLinksResponse = {}));
572
- export var BatchListPolicyAttachmentsResponse;
573
- (function (BatchListPolicyAttachmentsResponse) {
574
- /**
575
- * @internal
576
- */
577
- BatchListPolicyAttachmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
578
- })(BatchListPolicyAttachmentsResponse || (BatchListPolicyAttachmentsResponse = {}));
579
- export var PolicyAttachment;
580
- (function (PolicyAttachment) {
581
- /**
582
- * @internal
583
- */
584
- PolicyAttachment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
585
- })(PolicyAttachment || (PolicyAttachment = {}));
586
- export var PolicyToPath;
587
- (function (PolicyToPath) {
588
- /**
589
- * @internal
590
- */
591
- PolicyToPath.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
592
- })(PolicyToPath || (PolicyToPath = {}));
593
- export var BatchLookupPolicyResponse;
594
- (function (BatchLookupPolicyResponse) {
595
- /**
596
- * @internal
597
- */
598
- BatchLookupPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
599
- })(BatchLookupPolicyResponse || (BatchLookupPolicyResponse = {}));
600
- export var BatchReadSuccessfulResponse;
601
- (function (BatchReadSuccessfulResponse) {
602
- /**
603
- * @internal
604
- */
605
- BatchReadSuccessfulResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.ListObjectAttributes && {
606
- ListObjectAttributes: BatchListObjectAttributesResponse.filterSensitiveLog(obj.ListObjectAttributes),
607
- })), (obj.GetObjectAttributes && {
608
- GetObjectAttributes: BatchGetObjectAttributesResponse.filterSensitiveLog(obj.GetObjectAttributes),
609
- })), (obj.GetLinkAttributes && {
610
- GetLinkAttributes: BatchGetLinkAttributesResponse.filterSensitiveLog(obj.GetLinkAttributes),
611
- }))); };
612
- })(BatchReadSuccessfulResponse || (BatchReadSuccessfulResponse = {}));
613
- export var BatchReadOperationResponse;
614
- (function (BatchReadOperationResponse) {
615
- /**
616
- * @internal
617
- */
618
- BatchReadOperationResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.SuccessfulResponse && {
619
- SuccessfulResponse: BatchReadSuccessfulResponse.filterSensitiveLog(obj.SuccessfulResponse),
620
- }))); };
621
- })(BatchReadOperationResponse || (BatchReadOperationResponse = {}));
622
- export var BatchReadResponse;
623
- (function (BatchReadResponse) {
624
- /**
625
- * @internal
626
- */
627
- BatchReadResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
628
- })(BatchReadResponse || (BatchReadResponse = {}));
629
- export var BatchWriteExceptionType;
630
- (function (BatchWriteExceptionType) {
631
- BatchWriteExceptionType["AccessDeniedException"] = "AccessDeniedException";
632
- BatchWriteExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
633
- BatchWriteExceptionType["FacetValidationException"] = "FacetValidationException";
634
- BatchWriteExceptionType["IndexedAttributeMissingException"] = "IndexedAttributeMissingException";
635
- BatchWriteExceptionType["InternalServiceException"] = "InternalServiceException";
636
- BatchWriteExceptionType["InvalidArnException"] = "InvalidArnException";
637
- BatchWriteExceptionType["InvalidAttachmentException"] = "InvalidAttachmentException";
638
- BatchWriteExceptionType["LimitExceededException"] = "LimitExceededException";
639
- BatchWriteExceptionType["LinkNameAlreadyInUseException"] = "LinkNameAlreadyInUseException";
640
- BatchWriteExceptionType["NotIndexException"] = "NotIndexException";
641
- BatchWriteExceptionType["NotNodeException"] = "NotNodeException";
642
- BatchWriteExceptionType["NotPolicyException"] = "NotPolicyException";
643
- BatchWriteExceptionType["ObjectAlreadyDetachedException"] = "ObjectAlreadyDetachedException";
644
- BatchWriteExceptionType["ObjectNotDetachedException"] = "ObjectNotDetachedException";
645
- BatchWriteExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
646
- BatchWriteExceptionType["StillContainsLinksException"] = "StillContainsLinksException";
647
- BatchWriteExceptionType["UnsupportedIndexTypeException"] = "UnsupportedIndexTypeException";
648
- BatchWriteExceptionType["ValidationException"] = "ValidationException";
649
- })(BatchWriteExceptionType || (BatchWriteExceptionType = {}));
650
- export var BatchWriteException;
651
- (function (BatchWriteException) {
652
- /**
653
- * @internal
654
- */
655
- BatchWriteException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
656
- })(BatchWriteException || (BatchWriteException = {}));
657
- export var BatchAddFacetToObject;
658
- (function (BatchAddFacetToObject) {
659
- /**
660
- * @internal
661
- */
662
- BatchAddFacetToObject.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
663
- ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
664
- }))); };
665
- })(BatchAddFacetToObject || (BatchAddFacetToObject = {}));
666
- export var BatchAttachObject;
667
- (function (BatchAttachObject) {
668
- /**
669
- * @internal
670
- */
671
- BatchAttachObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
672
- })(BatchAttachObject || (BatchAttachObject = {}));
673
- export var BatchAttachPolicy;
674
- (function (BatchAttachPolicy) {
675
- /**
676
- * @internal
677
- */
678
- BatchAttachPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
679
- })(BatchAttachPolicy || (BatchAttachPolicy = {}));
680
- export var BatchAttachToIndex;
681
- (function (BatchAttachToIndex) {
682
- /**
683
- * @internal
684
- */
685
- BatchAttachToIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
686
- })(BatchAttachToIndex || (BatchAttachToIndex = {}));
687
- export var BatchAttachTypedLink;
688
- (function (BatchAttachTypedLink) {
689
- /**
690
- * @internal
691
- */
692
- BatchAttachTypedLink.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeNameAndValue.filterSensitiveLog(item); }) }))); };
693
- })(BatchAttachTypedLink || (BatchAttachTypedLink = {}));
694
- export var BatchCreateIndex;
695
- (function (BatchCreateIndex) {
696
- /**
697
- * @internal
698
- */
699
- BatchCreateIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
700
- })(BatchCreateIndex || (BatchCreateIndex = {}));
701
- export var BatchCreateObject;
702
- (function (BatchCreateObject) {
703
- /**
704
- * @internal
705
- */
706
- BatchCreateObject.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
707
- ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
708
- }))); };
709
- })(BatchCreateObject || (BatchCreateObject = {}));
710
- export var BatchDeleteObject;
711
- (function (BatchDeleteObject) {
712
- /**
713
- * @internal
714
- */
715
- BatchDeleteObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
716
- })(BatchDeleteObject || (BatchDeleteObject = {}));
717
- export var BatchDetachFromIndex;
718
- (function (BatchDetachFromIndex) {
719
- /**
720
- * @internal
721
- */
722
- BatchDetachFromIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
723
- })(BatchDetachFromIndex || (BatchDetachFromIndex = {}));
724
- export var BatchDetachObject;
725
- (function (BatchDetachObject) {
726
- /**
727
- * @internal
728
- */
729
- BatchDetachObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
730
- })(BatchDetachObject || (BatchDetachObject = {}));
731
- export var BatchDetachPolicy;
732
- (function (BatchDetachPolicy) {
733
- /**
734
- * @internal
735
- */
736
- BatchDetachPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
737
- })(BatchDetachPolicy || (BatchDetachPolicy = {}));
738
- export var BatchDetachTypedLink;
739
- (function (BatchDetachTypedLink) {
740
- /**
741
- * @internal
742
- */
743
- BatchDetachTypedLink.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
744
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
745
- }))); };
746
- })(BatchDetachTypedLink || (BatchDetachTypedLink = {}));
747
- export var BatchRemoveFacetFromObject;
748
- (function (BatchRemoveFacetFromObject) {
749
- /**
750
- * @internal
751
- */
752
- BatchRemoveFacetFromObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
753
- })(BatchRemoveFacetFromObject || (BatchRemoveFacetFromObject = {}));
754
- export var UpdateActionType;
755
- (function (UpdateActionType) {
756
- UpdateActionType["CREATE_OR_UPDATE"] = "CREATE_OR_UPDATE";
757
- UpdateActionType["DELETE"] = "DELETE";
758
- })(UpdateActionType || (UpdateActionType = {}));
759
- export var LinkAttributeAction;
760
- (function (LinkAttributeAction) {
761
- /**
762
- * @internal
763
- */
764
- LinkAttributeAction.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdateValue && {
765
- AttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.AttributeUpdateValue),
766
- }))); };
767
- })(LinkAttributeAction || (LinkAttributeAction = {}));
768
- export var LinkAttributeUpdate;
769
- (function (LinkAttributeUpdate) {
770
- /**
771
- * @internal
772
- */
773
- LinkAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeAction && { AttributeAction: LinkAttributeAction.filterSensitiveLog(obj.AttributeAction) }))); };
774
- })(LinkAttributeUpdate || (LinkAttributeUpdate = {}));
775
- export var BatchUpdateLinkAttributes;
776
- (function (BatchUpdateLinkAttributes) {
777
- /**
778
- * @internal
779
- */
780
- BatchUpdateLinkAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
781
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
782
- })), (obj.AttributeUpdates && {
783
- AttributeUpdates: obj.AttributeUpdates.map(function (item) { return LinkAttributeUpdate.filterSensitiveLog(item); }),
784
- }))); };
785
- })(BatchUpdateLinkAttributes || (BatchUpdateLinkAttributes = {}));
786
- export var ObjectAttributeAction;
787
- (function (ObjectAttributeAction) {
788
- /**
789
- * @internal
790
- */
791
- ObjectAttributeAction.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeUpdateValue && {
792
- ObjectAttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.ObjectAttributeUpdateValue),
793
- }))); };
794
- })(ObjectAttributeAction || (ObjectAttributeAction = {}));
795
- export var ObjectAttributeUpdate;
796
- (function (ObjectAttributeUpdate) {
797
- /**
798
- * @internal
799
- */
800
- ObjectAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeAction && {
801
- ObjectAttributeAction: ObjectAttributeAction.filterSensitiveLog(obj.ObjectAttributeAction),
802
- }))); };
803
- })(ObjectAttributeUpdate || (ObjectAttributeUpdate = {}));
804
- export var BatchUpdateObjectAttributes;
805
- (function (BatchUpdateObjectAttributes) {
806
- /**
807
- * @internal
808
- */
809
- BatchUpdateObjectAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
810
- AttributeUpdates: obj.AttributeUpdates.map(function (item) { return ObjectAttributeUpdate.filterSensitiveLog(item); }),
811
- }))); };
812
- })(BatchUpdateObjectAttributes || (BatchUpdateObjectAttributes = {}));
813
- export var BatchWriteOperation;
814
- (function (BatchWriteOperation) {
815
- /**
816
- * @internal
817
- */
818
- BatchWriteOperation.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.UpdateObjectAttributes && {
819
- UpdateObjectAttributes: BatchUpdateObjectAttributes.filterSensitiveLog(obj.UpdateObjectAttributes),
820
- })), (obj.AddFacetToObject && { AddFacetToObject: BatchAddFacetToObject.filterSensitiveLog(obj.AddFacetToObject) })), (obj.AttachTypedLink && { AttachTypedLink: BatchAttachTypedLink.filterSensitiveLog(obj.AttachTypedLink) })), (obj.DetachTypedLink && { DetachTypedLink: BatchDetachTypedLink.filterSensitiveLog(obj.DetachTypedLink) })), (obj.UpdateLinkAttributes && {
821
- UpdateLinkAttributes: BatchUpdateLinkAttributes.filterSensitiveLog(obj.UpdateLinkAttributes),
822
- }))); };
823
- })(BatchWriteOperation || (BatchWriteOperation = {}));
824
- export var BatchWriteRequest;
825
- (function (BatchWriteRequest) {
826
- /**
827
- * @internal
828
- */
829
- BatchWriteRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
830
- })(BatchWriteRequest || (BatchWriteRequest = {}));
831
- export var BatchAddFacetToObjectResponse;
832
- (function (BatchAddFacetToObjectResponse) {
833
- /**
834
- * @internal
835
- */
836
- BatchAddFacetToObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
837
- })(BatchAddFacetToObjectResponse || (BatchAddFacetToObjectResponse = {}));
838
- export var BatchAttachObjectResponse;
839
- (function (BatchAttachObjectResponse) {
840
- /**
841
- * @internal
842
- */
843
- BatchAttachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
844
- })(BatchAttachObjectResponse || (BatchAttachObjectResponse = {}));
845
- export var BatchAttachPolicyResponse;
846
- (function (BatchAttachPolicyResponse) {
847
- /**
848
- * @internal
849
- */
850
- BatchAttachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
851
- })(BatchAttachPolicyResponse || (BatchAttachPolicyResponse = {}));
852
- export var BatchAttachToIndexResponse;
853
- (function (BatchAttachToIndexResponse) {
854
- /**
855
- * @internal
856
- */
857
- BatchAttachToIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
858
- })(BatchAttachToIndexResponse || (BatchAttachToIndexResponse = {}));
859
- export var BatchAttachTypedLinkResponse;
860
- (function (BatchAttachTypedLinkResponse) {
861
- /**
862
- * @internal
863
- */
864
- BatchAttachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
865
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
866
- }))); };
867
- })(BatchAttachTypedLinkResponse || (BatchAttachTypedLinkResponse = {}));
868
- export var BatchCreateIndexResponse;
869
- (function (BatchCreateIndexResponse) {
870
- /**
871
- * @internal
872
- */
873
- BatchCreateIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
874
- })(BatchCreateIndexResponse || (BatchCreateIndexResponse = {}));
875
- export var BatchCreateObjectResponse;
876
- (function (BatchCreateObjectResponse) {
877
- /**
878
- * @internal
879
- */
880
- BatchCreateObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
881
- })(BatchCreateObjectResponse || (BatchCreateObjectResponse = {}));
882
- export var BatchDeleteObjectResponse;
883
- (function (BatchDeleteObjectResponse) {
884
- /**
885
- * @internal
886
- */
887
- BatchDeleteObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
888
- })(BatchDeleteObjectResponse || (BatchDeleteObjectResponse = {}));
889
- export var BatchDetachFromIndexResponse;
890
- (function (BatchDetachFromIndexResponse) {
891
- /**
892
- * @internal
893
- */
894
- BatchDetachFromIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
895
- })(BatchDetachFromIndexResponse || (BatchDetachFromIndexResponse = {}));
896
- export var BatchDetachObjectResponse;
897
- (function (BatchDetachObjectResponse) {
898
- /**
899
- * @internal
900
- */
901
- BatchDetachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
902
- })(BatchDetachObjectResponse || (BatchDetachObjectResponse = {}));
903
- export var BatchDetachPolicyResponse;
904
- (function (BatchDetachPolicyResponse) {
905
- /**
906
- * @internal
907
- */
908
- BatchDetachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
909
- })(BatchDetachPolicyResponse || (BatchDetachPolicyResponse = {}));
910
- export var BatchDetachTypedLinkResponse;
911
- (function (BatchDetachTypedLinkResponse) {
912
- /**
913
- * @internal
914
- */
915
- BatchDetachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
916
- })(BatchDetachTypedLinkResponse || (BatchDetachTypedLinkResponse = {}));
917
- export var BatchRemoveFacetFromObjectResponse;
918
- (function (BatchRemoveFacetFromObjectResponse) {
919
- /**
920
- * @internal
921
- */
922
- BatchRemoveFacetFromObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
923
- })(BatchRemoveFacetFromObjectResponse || (BatchRemoveFacetFromObjectResponse = {}));
924
- export var BatchUpdateLinkAttributesResponse;
925
- (function (BatchUpdateLinkAttributesResponse) {
926
- /**
927
- * @internal
928
- */
929
- BatchUpdateLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
930
- })(BatchUpdateLinkAttributesResponse || (BatchUpdateLinkAttributesResponse = {}));
931
- export var BatchUpdateObjectAttributesResponse;
932
- (function (BatchUpdateObjectAttributesResponse) {
933
- /**
934
- * @internal
935
- */
936
- BatchUpdateObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
937
- })(BatchUpdateObjectAttributesResponse || (BatchUpdateObjectAttributesResponse = {}));
938
- export var BatchWriteOperationResponse;
939
- (function (BatchWriteOperationResponse) {
940
- /**
941
- * @internal
942
- */
943
- BatchWriteOperationResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttachTypedLink && {
944
- AttachTypedLink: BatchAttachTypedLinkResponse.filterSensitiveLog(obj.AttachTypedLink),
945
- }))); };
946
- })(BatchWriteOperationResponse || (BatchWriteOperationResponse = {}));
947
- export var BatchWriteResponse;
948
- (function (BatchWriteResponse) {
949
- /**
950
- * @internal
951
- */
952
- BatchWriteResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
953
- })(BatchWriteResponse || (BatchWriteResponse = {}));
954
- export var CreateDirectoryRequest;
955
- (function (CreateDirectoryRequest) {
956
- /**
957
- * @internal
958
- */
959
- CreateDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
960
- })(CreateDirectoryRequest || (CreateDirectoryRequest = {}));
961
- export var CreateDirectoryResponse;
962
- (function (CreateDirectoryResponse) {
963
- /**
964
- * @internal
965
- */
966
- CreateDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
967
- })(CreateDirectoryResponse || (CreateDirectoryResponse = {}));
968
- export var DirectoryAlreadyExistsException;
969
- (function (DirectoryAlreadyExistsException) {
970
- /**
971
- * @internal
972
- */
973
- DirectoryAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
974
- })(DirectoryAlreadyExistsException || (DirectoryAlreadyExistsException = {}));
975
- export var RuleType;
976
- (function (RuleType) {
977
- RuleType["BINARY_LENGTH"] = "BINARY_LENGTH";
978
- RuleType["NUMBER_COMPARISON"] = "NUMBER_COMPARISON";
979
- RuleType["STRING_FROM_SET"] = "STRING_FROM_SET";
980
- RuleType["STRING_LENGTH"] = "STRING_LENGTH";
981
- })(RuleType || (RuleType = {}));
982
- export var Rule;
983
- (function (Rule) {
984
- /**
985
- * @internal
986
- */
987
- Rule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
988
- })(Rule || (Rule = {}));
989
- export var FacetAttributeType;
990
- (function (FacetAttributeType) {
991
- FacetAttributeType["BINARY"] = "BINARY";
992
- FacetAttributeType["BOOLEAN"] = "BOOLEAN";
993
- FacetAttributeType["DATETIME"] = "DATETIME";
994
- FacetAttributeType["NUMBER"] = "NUMBER";
995
- FacetAttributeType["STRING"] = "STRING";
996
- FacetAttributeType["VARIANT"] = "VARIANT";
997
- })(FacetAttributeType || (FacetAttributeType = {}));
998
- export var FacetAttributeDefinition;
999
- (function (FacetAttributeDefinition) {
1000
- /**
1001
- * @internal
1002
- */
1003
- FacetAttributeDefinition.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }))); };
1004
- })(FacetAttributeDefinition || (FacetAttributeDefinition = {}));
1005
- export var FacetAttributeReference;
1006
- (function (FacetAttributeReference) {
1007
- /**
1008
- * @internal
1009
- */
1010
- FacetAttributeReference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1011
- })(FacetAttributeReference || (FacetAttributeReference = {}));
1012
- export var RequiredAttributeBehavior;
1013
- (function (RequiredAttributeBehavior) {
1014
- RequiredAttributeBehavior["NOT_REQUIRED"] = "NOT_REQUIRED";
1015
- RequiredAttributeBehavior["REQUIRED_ALWAYS"] = "REQUIRED_ALWAYS";
1016
- })(RequiredAttributeBehavior || (RequiredAttributeBehavior = {}));
1017
- export var FacetAttribute;
1018
- (function (FacetAttribute) {
1019
- /**
1020
- * @internal
1021
- */
1022
- FacetAttribute.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeDefinition && {
1023
- AttributeDefinition: FacetAttributeDefinition.filterSensitiveLog(obj.AttributeDefinition),
1024
- }))); };
1025
- })(FacetAttribute || (FacetAttribute = {}));
1026
- export var FacetStyle;
1027
- (function (FacetStyle) {
1028
- FacetStyle["DYNAMIC"] = "DYNAMIC";
1029
- FacetStyle["STATIC"] = "STATIC";
1030
- })(FacetStyle || (FacetStyle = {}));
1031
- export var ObjectType;
1032
- (function (ObjectType) {
1033
- ObjectType["INDEX"] = "INDEX";
1034
- ObjectType["LEAF_NODE"] = "LEAF_NODE";
1035
- ObjectType["NODE"] = "NODE";
1036
- ObjectType["POLICY"] = "POLICY";
1037
- })(ObjectType || (ObjectType = {}));
1038
- export var CreateFacetRequest;
1039
- (function (CreateFacetRequest) {
1040
- /**
1041
- * @internal
1042
- */
1043
- CreateFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return FacetAttribute.filterSensitiveLog(item); }) }))); };
1044
- })(CreateFacetRequest || (CreateFacetRequest = {}));
1045
- export var CreateFacetResponse;
1046
- (function (CreateFacetResponse) {
1047
- /**
1048
- * @internal
1049
- */
1050
- CreateFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1051
- })(CreateFacetResponse || (CreateFacetResponse = {}));
1052
- export var FacetAlreadyExistsException;
1053
- (function (FacetAlreadyExistsException) {
1054
- /**
1055
- * @internal
1056
- */
1057
- FacetAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1058
- })(FacetAlreadyExistsException || (FacetAlreadyExistsException = {}));
1059
- export var InvalidRuleException;
1060
- (function (InvalidRuleException) {
1061
- /**
1062
- * @internal
1063
- */
1064
- InvalidRuleException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1065
- })(InvalidRuleException || (InvalidRuleException = {}));
1066
- export var CreateIndexRequest;
1067
- (function (CreateIndexRequest) {
1068
- /**
1069
- * @internal
1070
- */
1071
- CreateIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1072
- })(CreateIndexRequest || (CreateIndexRequest = {}));
1073
- export var CreateIndexResponse;
1074
- (function (CreateIndexResponse) {
1075
- /**
1076
- * @internal
1077
- */
1078
- CreateIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1079
- })(CreateIndexResponse || (CreateIndexResponse = {}));
1080
- export var UnsupportedIndexTypeException;
1081
- (function (UnsupportedIndexTypeException) {
1082
- /**
1083
- * @internal
1084
- */
1085
- UnsupportedIndexTypeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1086
- })(UnsupportedIndexTypeException || (UnsupportedIndexTypeException = {}));
1087
- export var CreateObjectRequest;
1088
- (function (CreateObjectRequest) {
1089
- /**
1090
- * @internal
1091
- */
1092
- CreateObjectRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
1093
- ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
1094
- }))); };
1095
- })(CreateObjectRequest || (CreateObjectRequest = {}));
1096
- export var CreateObjectResponse;
1097
- (function (CreateObjectResponse) {
1098
- /**
1099
- * @internal
1100
- */
1101
- CreateObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1102
- })(CreateObjectResponse || (CreateObjectResponse = {}));
1103
- export var CreateSchemaRequest;
1104
- (function (CreateSchemaRequest) {
1105
- /**
1106
- * @internal
1107
- */
1108
- CreateSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1109
- })(CreateSchemaRequest || (CreateSchemaRequest = {}));
1110
- export var CreateSchemaResponse;
1111
- (function (CreateSchemaResponse) {
1112
- /**
1113
- * @internal
1114
- */
1115
- CreateSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1116
- })(CreateSchemaResponse || (CreateSchemaResponse = {}));
1117
- export var TypedLinkAttributeDefinition;
1118
- (function (TypedLinkAttributeDefinition) {
1119
- /**
1120
- * @internal
1121
- */
1122
- TypedLinkAttributeDefinition.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }))); };
1123
- })(TypedLinkAttributeDefinition || (TypedLinkAttributeDefinition = {}));
1124
- export var TypedLinkFacet;
1125
- (function (TypedLinkFacet) {
1126
- /**
1127
- * @internal
1128
- */
1129
- TypedLinkFacet.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && {
1130
- Attributes: obj.Attributes.map(function (item) { return TypedLinkAttributeDefinition.filterSensitiveLog(item); }),
1131
- }))); };
1132
- })(TypedLinkFacet || (TypedLinkFacet = {}));
1133
- export var CreateTypedLinkFacetRequest;
1134
- (function (CreateTypedLinkFacetRequest) {
1135
- /**
1136
- * @internal
1137
- */
1138
- CreateTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Facet && { Facet: TypedLinkFacet.filterSensitiveLog(obj.Facet) }))); };
1139
- })(CreateTypedLinkFacetRequest || (CreateTypedLinkFacetRequest = {}));
1140
- export var CreateTypedLinkFacetResponse;
1141
- (function (CreateTypedLinkFacetResponse) {
1142
- /**
1143
- * @internal
1144
- */
1145
- CreateTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1146
- })(CreateTypedLinkFacetResponse || (CreateTypedLinkFacetResponse = {}));
1147
- export var DeleteDirectoryRequest;
1148
- (function (DeleteDirectoryRequest) {
1149
- /**
1150
- * @internal
1151
- */
1152
- DeleteDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1153
- })(DeleteDirectoryRequest || (DeleteDirectoryRequest = {}));
1154
- export var DeleteDirectoryResponse;
1155
- (function (DeleteDirectoryResponse) {
1156
- /**
1157
- * @internal
1158
- */
1159
- DeleteDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1160
- })(DeleteDirectoryResponse || (DeleteDirectoryResponse = {}));
1161
- export var DirectoryDeletedException;
1162
- (function (DirectoryDeletedException) {
1163
- /**
1164
- * @internal
1165
- */
1166
- DirectoryDeletedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1167
- })(DirectoryDeletedException || (DirectoryDeletedException = {}));
1168
- export var DirectoryNotDisabledException;
1169
- (function (DirectoryNotDisabledException) {
1170
- /**
1171
- * @internal
1172
- */
1173
- DirectoryNotDisabledException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1174
- })(DirectoryNotDisabledException || (DirectoryNotDisabledException = {}));
1175
- export var DeleteFacetRequest;
1176
- (function (DeleteFacetRequest) {
1177
- /**
1178
- * @internal
1179
- */
1180
- DeleteFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1181
- })(DeleteFacetRequest || (DeleteFacetRequest = {}));
1182
- export var DeleteFacetResponse;
1183
- (function (DeleteFacetResponse) {
1184
- /**
1185
- * @internal
1186
- */
1187
- DeleteFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1188
- })(DeleteFacetResponse || (DeleteFacetResponse = {}));
1189
- export var FacetInUseException;
1190
- (function (FacetInUseException) {
1191
- /**
1192
- * @internal
1193
- */
1194
- FacetInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1195
- })(FacetInUseException || (FacetInUseException = {}));
1196
- export var FacetNotFoundException;
1197
- (function (FacetNotFoundException) {
1198
- /**
1199
- * @internal
1200
- */
1201
- FacetNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1202
- })(FacetNotFoundException || (FacetNotFoundException = {}));
1203
- export var DeleteObjectRequest;
1204
- (function (DeleteObjectRequest) {
1205
- /**
1206
- * @internal
1207
- */
1208
- DeleteObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1209
- })(DeleteObjectRequest || (DeleteObjectRequest = {}));
1210
- export var DeleteObjectResponse;
1211
- (function (DeleteObjectResponse) {
1212
- /**
1213
- * @internal
1214
- */
1215
- DeleteObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1216
- })(DeleteObjectResponse || (DeleteObjectResponse = {}));
1217
- export var ObjectNotDetachedException;
1218
- (function (ObjectNotDetachedException) {
1219
- /**
1220
- * @internal
1221
- */
1222
- ObjectNotDetachedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1223
- })(ObjectNotDetachedException || (ObjectNotDetachedException = {}));
1224
- export var DeleteSchemaRequest;
1225
- (function (DeleteSchemaRequest) {
1226
- /**
1227
- * @internal
1228
- */
1229
- DeleteSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1230
- })(DeleteSchemaRequest || (DeleteSchemaRequest = {}));
1231
- export var DeleteSchemaResponse;
1232
- (function (DeleteSchemaResponse) {
1233
- /**
1234
- * @internal
1235
- */
1236
- DeleteSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1237
- })(DeleteSchemaResponse || (DeleteSchemaResponse = {}));
1238
- export var StillContainsLinksException;
1239
- (function (StillContainsLinksException) {
1240
- /**
1241
- * @internal
1242
- */
1243
- StillContainsLinksException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1244
- })(StillContainsLinksException || (StillContainsLinksException = {}));
1245
- export var DeleteTypedLinkFacetRequest;
1246
- (function (DeleteTypedLinkFacetRequest) {
1247
- /**
1248
- * @internal
1249
- */
1250
- DeleteTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1251
- })(DeleteTypedLinkFacetRequest || (DeleteTypedLinkFacetRequest = {}));
1252
- export var DeleteTypedLinkFacetResponse;
1253
- (function (DeleteTypedLinkFacetResponse) {
1254
- /**
1255
- * @internal
1256
- */
1257
- DeleteTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1258
- })(DeleteTypedLinkFacetResponse || (DeleteTypedLinkFacetResponse = {}));
1259
- export var DetachFromIndexRequest;
1260
- (function (DetachFromIndexRequest) {
1261
- /**
1262
- * @internal
1263
- */
1264
- DetachFromIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1265
- })(DetachFromIndexRequest || (DetachFromIndexRequest = {}));
1266
- export var DetachFromIndexResponse;
1267
- (function (DetachFromIndexResponse) {
1268
- /**
1269
- * @internal
1270
- */
1271
- DetachFromIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1272
- })(DetachFromIndexResponse || (DetachFromIndexResponse = {}));
1273
- export var ObjectAlreadyDetachedException;
1274
- (function (ObjectAlreadyDetachedException) {
1275
- /**
1276
- * @internal
1277
- */
1278
- ObjectAlreadyDetachedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1279
- })(ObjectAlreadyDetachedException || (ObjectAlreadyDetachedException = {}));
1280
- export var DetachObjectRequest;
1281
- (function (DetachObjectRequest) {
1282
- /**
1283
- * @internal
1284
- */
1285
- DetachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1286
- })(DetachObjectRequest || (DetachObjectRequest = {}));
1287
- export var DetachObjectResponse;
1288
- (function (DetachObjectResponse) {
1289
- /**
1290
- * @internal
1291
- */
1292
- DetachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1293
- })(DetachObjectResponse || (DetachObjectResponse = {}));
1294
- export var NotNodeException;
1295
- (function (NotNodeException) {
1296
- /**
1297
- * @internal
1298
- */
1299
- NotNodeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1300
- })(NotNodeException || (NotNodeException = {}));
1301
- export var DetachPolicyRequest;
1302
- (function (DetachPolicyRequest) {
1303
- /**
1304
- * @internal
1305
- */
1306
- DetachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1307
- })(DetachPolicyRequest || (DetachPolicyRequest = {}));
1308
- export var DetachPolicyResponse;
1309
- (function (DetachPolicyResponse) {
1310
- /**
1311
- * @internal
1312
- */
1313
- DetachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1314
- })(DetachPolicyResponse || (DetachPolicyResponse = {}));
1315
- export var DetachTypedLinkRequest;
1316
- (function (DetachTypedLinkRequest) {
1317
- /**
1318
- * @internal
1319
- */
1320
- DetachTypedLinkRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
1321
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1322
- }))); };
1323
- })(DetachTypedLinkRequest || (DetachTypedLinkRequest = {}));
1324
- export var DisableDirectoryRequest;
1325
- (function (DisableDirectoryRequest) {
1326
- /**
1327
- * @internal
1328
- */
1329
- DisableDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1330
- })(DisableDirectoryRequest || (DisableDirectoryRequest = {}));
1331
- export var DisableDirectoryResponse;
1332
- (function (DisableDirectoryResponse) {
1333
- /**
1334
- * @internal
1335
- */
1336
- DisableDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1337
- })(DisableDirectoryResponse || (DisableDirectoryResponse = {}));
1338
- export var EnableDirectoryRequest;
1339
- (function (EnableDirectoryRequest) {
1340
- /**
1341
- * @internal
1342
- */
1343
- EnableDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1344
- })(EnableDirectoryRequest || (EnableDirectoryRequest = {}));
1345
- export var EnableDirectoryResponse;
1346
- (function (EnableDirectoryResponse) {
1347
- /**
1348
- * @internal
1349
- */
1350
- EnableDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1351
- })(EnableDirectoryResponse || (EnableDirectoryResponse = {}));
1352
- export var GetAppliedSchemaVersionRequest;
1353
- (function (GetAppliedSchemaVersionRequest) {
1354
- /**
1355
- * @internal
1356
- */
1357
- GetAppliedSchemaVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1358
- })(GetAppliedSchemaVersionRequest || (GetAppliedSchemaVersionRequest = {}));
1359
- export var GetAppliedSchemaVersionResponse;
1360
- (function (GetAppliedSchemaVersionResponse) {
1361
- /**
1362
- * @internal
1363
- */
1364
- GetAppliedSchemaVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1365
- })(GetAppliedSchemaVersionResponse || (GetAppliedSchemaVersionResponse = {}));
1366
- export var GetDirectoryRequest;
1367
- (function (GetDirectoryRequest) {
1368
- /**
1369
- * @internal
1370
- */
1371
- GetDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1372
- })(GetDirectoryRequest || (GetDirectoryRequest = {}));
1373
- export var DirectoryState;
1374
- (function (DirectoryState) {
1375
- DirectoryState["DELETED"] = "DELETED";
1376
- DirectoryState["DISABLED"] = "DISABLED";
1377
- DirectoryState["ENABLED"] = "ENABLED";
1378
- })(DirectoryState || (DirectoryState = {}));
1379
- export var Directory;
1380
- (function (Directory) {
1381
- /**
1382
- * @internal
1383
- */
1384
- Directory.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1385
- })(Directory || (Directory = {}));
1386
- export var GetDirectoryResponse;
1387
- (function (GetDirectoryResponse) {
1388
- /**
1389
- * @internal
1390
- */
1391
- GetDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1392
- })(GetDirectoryResponse || (GetDirectoryResponse = {}));
1393
- export var GetFacetRequest;
1394
- (function (GetFacetRequest) {
1395
- /**
1396
- * @internal
1397
- */
1398
- GetFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1399
- })(GetFacetRequest || (GetFacetRequest = {}));
1400
- export var Facet;
1401
- (function (Facet) {
1402
- /**
1403
- * @internal
1404
- */
1405
- Facet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1406
- })(Facet || (Facet = {}));
1407
- export var GetFacetResponse;
1408
- (function (GetFacetResponse) {
1409
- /**
1410
- * @internal
1411
- */
1412
- GetFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1413
- })(GetFacetResponse || (GetFacetResponse = {}));
1414
- export var GetLinkAttributesRequest;
1415
- (function (GetLinkAttributesRequest) {
1416
- /**
1417
- * @internal
1418
- */
1419
- GetLinkAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
1420
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1421
- }))); };
1422
- })(GetLinkAttributesRequest || (GetLinkAttributesRequest = {}));
1423
- export var GetLinkAttributesResponse;
1424
- (function (GetLinkAttributesResponse) {
1425
- /**
1426
- * @internal
1427
- */
1428
- GetLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
1429
- })(GetLinkAttributesResponse || (GetLinkAttributesResponse = {}));
1430
- export var GetObjectAttributesRequest;
1431
- (function (GetObjectAttributesRequest) {
1432
- /**
1433
- * @internal
1434
- */
1435
- GetObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1436
- })(GetObjectAttributesRequest || (GetObjectAttributesRequest = {}));
1437
- export var GetObjectAttributesResponse;
1438
- (function (GetObjectAttributesResponse) {
1439
- /**
1440
- * @internal
1441
- */
1442
- GetObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
1443
- })(GetObjectAttributesResponse || (GetObjectAttributesResponse = {}));
1444
- export var GetObjectInformationRequest;
1445
- (function (GetObjectInformationRequest) {
1446
- /**
1447
- * @internal
1448
- */
1449
- GetObjectInformationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1450
- })(GetObjectInformationRequest || (GetObjectInformationRequest = {}));
1451
- export var GetObjectInformationResponse;
1452
- (function (GetObjectInformationResponse) {
1453
- /**
1454
- * @internal
1455
- */
1456
- GetObjectInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1457
- })(GetObjectInformationResponse || (GetObjectInformationResponse = {}));
1458
- export var GetSchemaAsJsonRequest;
1459
- (function (GetSchemaAsJsonRequest) {
1460
- /**
1461
- * @internal
1462
- */
1463
- GetSchemaAsJsonRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1464
- })(GetSchemaAsJsonRequest || (GetSchemaAsJsonRequest = {}));
1465
- export var GetSchemaAsJsonResponse;
1466
- (function (GetSchemaAsJsonResponse) {
1467
- /**
1468
- * @internal
1469
- */
1470
- GetSchemaAsJsonResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1471
- })(GetSchemaAsJsonResponse || (GetSchemaAsJsonResponse = {}));
1472
- export var GetTypedLinkFacetInformationRequest;
1473
- (function (GetTypedLinkFacetInformationRequest) {
1474
- /**
1475
- * @internal
1476
- */
1477
- GetTypedLinkFacetInformationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1478
- })(GetTypedLinkFacetInformationRequest || (GetTypedLinkFacetInformationRequest = {}));
1479
- export var GetTypedLinkFacetInformationResponse;
1480
- (function (GetTypedLinkFacetInformationResponse) {
1481
- /**
1482
- * @internal
1483
- */
1484
- GetTypedLinkFacetInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1485
- })(GetTypedLinkFacetInformationResponse || (GetTypedLinkFacetInformationResponse = {}));
1486
- export var InvalidNextTokenException;
1487
- (function (InvalidNextTokenException) {
1488
- /**
1489
- * @internal
1490
- */
1491
- InvalidNextTokenException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1492
- })(InvalidNextTokenException || (InvalidNextTokenException = {}));
1493
- export var ListAppliedSchemaArnsRequest;
1494
- (function (ListAppliedSchemaArnsRequest) {
1495
- /**
1496
- * @internal
1497
- */
1498
- ListAppliedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1499
- })(ListAppliedSchemaArnsRequest || (ListAppliedSchemaArnsRequest = {}));
1500
- export var ListAppliedSchemaArnsResponse;
1501
- (function (ListAppliedSchemaArnsResponse) {
1502
- /**
1503
- * @internal
1504
- */
1505
- ListAppliedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1506
- })(ListAppliedSchemaArnsResponse || (ListAppliedSchemaArnsResponse = {}));
1507
- export var ListAttachedIndicesRequest;
1508
- (function (ListAttachedIndicesRequest) {
1509
- /**
1510
- * @internal
1511
- */
1512
- ListAttachedIndicesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1513
- })(ListAttachedIndicesRequest || (ListAttachedIndicesRequest = {}));
1514
- export var ListAttachedIndicesResponse;
1515
- (function (ListAttachedIndicesResponse) {
1516
- /**
1517
- * @internal
1518
- */
1519
- ListAttachedIndicesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1520
- })(ListAttachedIndicesResponse || (ListAttachedIndicesResponse = {}));
1521
- export var ListDevelopmentSchemaArnsRequest;
1522
- (function (ListDevelopmentSchemaArnsRequest) {
1523
- /**
1524
- * @internal
1525
- */
1526
- ListDevelopmentSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1527
- })(ListDevelopmentSchemaArnsRequest || (ListDevelopmentSchemaArnsRequest = {}));
1528
- export var ListDevelopmentSchemaArnsResponse;
1529
- (function (ListDevelopmentSchemaArnsResponse) {
1530
- /**
1531
- * @internal
1532
- */
1533
- ListDevelopmentSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1534
- })(ListDevelopmentSchemaArnsResponse || (ListDevelopmentSchemaArnsResponse = {}));
1535
- export var ListDirectoriesRequest;
1536
- (function (ListDirectoriesRequest) {
1537
- /**
1538
- * @internal
1539
- */
1540
- ListDirectoriesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1541
- })(ListDirectoriesRequest || (ListDirectoriesRequest = {}));
1542
- export var ListDirectoriesResponse;
1543
- (function (ListDirectoriesResponse) {
1544
- /**
1545
- * @internal
1546
- */
1547
- ListDirectoriesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1548
- })(ListDirectoriesResponse || (ListDirectoriesResponse = {}));
1549
- export var ListFacetAttributesRequest;
1550
- (function (ListFacetAttributesRequest) {
1551
- /**
1552
- * @internal
1553
- */
1554
- ListFacetAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1555
- })(ListFacetAttributesRequest || (ListFacetAttributesRequest = {}));
1556
- export var ListFacetAttributesResponse;
1557
- (function (ListFacetAttributesResponse) {
1558
- /**
1559
- * @internal
1560
- */
1561
- ListFacetAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return FacetAttribute.filterSensitiveLog(item); }) }))); };
1562
- })(ListFacetAttributesResponse || (ListFacetAttributesResponse = {}));
1563
- export var ListFacetNamesRequest;
1564
- (function (ListFacetNamesRequest) {
1565
- /**
1566
- * @internal
1567
- */
1568
- ListFacetNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1569
- })(ListFacetNamesRequest || (ListFacetNamesRequest = {}));
1570
- export var ListFacetNamesResponse;
1571
- (function (ListFacetNamesResponse) {
1572
- /**
1573
- * @internal
1574
- */
1575
- ListFacetNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1576
- })(ListFacetNamesResponse || (ListFacetNamesResponse = {}));
1577
- export var ListIncomingTypedLinksRequest;
1578
- (function (ListIncomingTypedLinksRequest) {
1579
- /**
1580
- * @internal
1581
- */
1582
- ListIncomingTypedLinksRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
1583
- FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
1584
- }))); };
1585
- })(ListIncomingTypedLinksRequest || (ListIncomingTypedLinksRequest = {}));
1586
- export var ListIncomingTypedLinksResponse;
1587
- (function (ListIncomingTypedLinksResponse) {
1588
- /**
1589
- * @internal
1590
- */
1591
- ListIncomingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1592
- })(ListIncomingTypedLinksResponse || (ListIncomingTypedLinksResponse = {}));
1593
- export var ListIndexRequest;
1594
- (function (ListIndexRequest) {
1595
- /**
1596
- * @internal
1597
- */
1598
- ListIndexRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.RangesOnIndexedValues && {
1599
- RangesOnIndexedValues: obj.RangesOnIndexedValues.map(function (item) { return ObjectAttributeRange.filterSensitiveLog(item); }),
1600
- }))); };
1601
- })(ListIndexRequest || (ListIndexRequest = {}));
1602
- export var ListIndexResponse;
1603
- (function (ListIndexResponse) {
1604
- /**
1605
- * @internal
1606
- */
1607
- ListIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1608
- })(ListIndexResponse || (ListIndexResponse = {}));
1609
- export var ListManagedSchemaArnsRequest;
1610
- (function (ListManagedSchemaArnsRequest) {
1611
- /**
1612
- * @internal
1613
- */
1614
- ListManagedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1615
- })(ListManagedSchemaArnsRequest || (ListManagedSchemaArnsRequest = {}));
1616
- export var ListManagedSchemaArnsResponse;
1617
- (function (ListManagedSchemaArnsResponse) {
1618
- /**
1619
- * @internal
1620
- */
1621
- ListManagedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1622
- })(ListManagedSchemaArnsResponse || (ListManagedSchemaArnsResponse = {}));
1623
- export var ListObjectAttributesRequest;
1624
- (function (ListObjectAttributesRequest) {
1625
- /**
1626
- * @internal
1627
- */
1628
- ListObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1629
- })(ListObjectAttributesRequest || (ListObjectAttributesRequest = {}));
1630
- export var ListObjectAttributesResponse;
1631
- (function (ListObjectAttributesResponse) {
1632
- /**
1633
- * @internal
1634
- */
1635
- ListObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
1636
- })(ListObjectAttributesResponse || (ListObjectAttributesResponse = {}));
1637
- export var ListObjectChildrenRequest;
1638
- (function (ListObjectChildrenRequest) {
1639
- /**
1640
- * @internal
1641
- */
1642
- ListObjectChildrenRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1643
- })(ListObjectChildrenRequest || (ListObjectChildrenRequest = {}));
1644
- export var ListObjectChildrenResponse;
1645
- (function (ListObjectChildrenResponse) {
1646
- /**
1647
- * @internal
1648
- */
1649
- ListObjectChildrenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1650
- })(ListObjectChildrenResponse || (ListObjectChildrenResponse = {}));
1651
- export var ListObjectParentPathsRequest;
1652
- (function (ListObjectParentPathsRequest) {
1653
- /**
1654
- * @internal
1655
- */
1656
- ListObjectParentPathsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1657
- })(ListObjectParentPathsRequest || (ListObjectParentPathsRequest = {}));
1658
- export var ListObjectParentPathsResponse;
1659
- (function (ListObjectParentPathsResponse) {
1660
- /**
1661
- * @internal
1662
- */
1663
- ListObjectParentPathsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1664
- })(ListObjectParentPathsResponse || (ListObjectParentPathsResponse = {}));
1665
- export var CannotListParentOfRootException;
1666
- (function (CannotListParentOfRootException) {
1667
- /**
1668
- * @internal
1669
- */
1670
- CannotListParentOfRootException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1671
- })(CannotListParentOfRootException || (CannotListParentOfRootException = {}));
1672
- export var ListObjectParentsRequest;
1673
- (function (ListObjectParentsRequest) {
1674
- /**
1675
- * @internal
1676
- */
1677
- ListObjectParentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1678
- })(ListObjectParentsRequest || (ListObjectParentsRequest = {}));
1679
- export var ListObjectParentsResponse;
1680
- (function (ListObjectParentsResponse) {
1681
- /**
1682
- * @internal
1683
- */
1684
- ListObjectParentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1685
- })(ListObjectParentsResponse || (ListObjectParentsResponse = {}));
1686
- export var ListObjectPoliciesRequest;
1687
- (function (ListObjectPoliciesRequest) {
1688
- /**
1689
- * @internal
1690
- */
1691
- ListObjectPoliciesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1692
- })(ListObjectPoliciesRequest || (ListObjectPoliciesRequest = {}));
1693
- export var ListObjectPoliciesResponse;
1694
- (function (ListObjectPoliciesResponse) {
1695
- /**
1696
- * @internal
1697
- */
1698
- ListObjectPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1699
- })(ListObjectPoliciesResponse || (ListObjectPoliciesResponse = {}));
1700
- export var ListOutgoingTypedLinksRequest;
1701
- (function (ListOutgoingTypedLinksRequest) {
1702
- /**
1703
- * @internal
1704
- */
1705
- ListOutgoingTypedLinksRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
1706
- FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
1707
- }))); };
1708
- })(ListOutgoingTypedLinksRequest || (ListOutgoingTypedLinksRequest = {}));
1709
- export var ListOutgoingTypedLinksResponse;
1710
- (function (ListOutgoingTypedLinksResponse) {
1711
- /**
1712
- * @internal
1713
- */
1714
- ListOutgoingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1715
- })(ListOutgoingTypedLinksResponse || (ListOutgoingTypedLinksResponse = {}));
1716
- export var ListPolicyAttachmentsRequest;
1717
- (function (ListPolicyAttachmentsRequest) {
1718
- /**
1719
- * @internal
1720
- */
1721
- ListPolicyAttachmentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1722
- })(ListPolicyAttachmentsRequest || (ListPolicyAttachmentsRequest = {}));
1723
- export var ListPolicyAttachmentsResponse;
1724
- (function (ListPolicyAttachmentsResponse) {
1725
- /**
1726
- * @internal
1727
- */
1728
- ListPolicyAttachmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1729
- })(ListPolicyAttachmentsResponse || (ListPolicyAttachmentsResponse = {}));
1730
- export var ListPublishedSchemaArnsRequest;
1731
- (function (ListPublishedSchemaArnsRequest) {
1732
- /**
1733
- * @internal
1734
- */
1735
- ListPublishedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1736
- })(ListPublishedSchemaArnsRequest || (ListPublishedSchemaArnsRequest = {}));
1737
- export var ListPublishedSchemaArnsResponse;
1738
- (function (ListPublishedSchemaArnsResponse) {
1739
- /**
1740
- * @internal
1741
- */
1742
- ListPublishedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1743
- })(ListPublishedSchemaArnsResponse || (ListPublishedSchemaArnsResponse = {}));
1744
- export var InvalidTaggingRequestException;
1745
- (function (InvalidTaggingRequestException) {
1746
- /**
1747
- * @internal
1748
- */
1749
- InvalidTaggingRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1750
- })(InvalidTaggingRequestException || (InvalidTaggingRequestException = {}));
1751
- export var ListTagsForResourceRequest;
1752
- (function (ListTagsForResourceRequest) {
1753
- /**
1754
- * @internal
1755
- */
1756
- ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1757
- })(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
1758
- export var Tag;
1759
- (function (Tag) {
1760
- /**
1761
- * @internal
1762
- */
1763
- Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1764
- })(Tag || (Tag = {}));
1765
- export var ListTagsForResourceResponse;
1766
- (function (ListTagsForResourceResponse) {
1767
- /**
1768
- * @internal
1769
- */
1770
- ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1771
- })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
1772
- export var ListTypedLinkFacetAttributesRequest;
1773
- (function (ListTypedLinkFacetAttributesRequest) {
1774
- /**
1775
- * @internal
1776
- */
1777
- ListTypedLinkFacetAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1778
- })(ListTypedLinkFacetAttributesRequest || (ListTypedLinkFacetAttributesRequest = {}));
1779
- export var ListTypedLinkFacetAttributesResponse;
1780
- (function (ListTypedLinkFacetAttributesResponse) {
1781
- /**
1782
- * @internal
1783
- */
1784
- ListTypedLinkFacetAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && {
1785
- Attributes: obj.Attributes.map(function (item) { return TypedLinkAttributeDefinition.filterSensitiveLog(item); }),
1786
- }))); };
1787
- })(ListTypedLinkFacetAttributesResponse || (ListTypedLinkFacetAttributesResponse = {}));
1788
- export var ListTypedLinkFacetNamesRequest;
1789
- (function (ListTypedLinkFacetNamesRequest) {
1790
- /**
1791
- * @internal
1792
- */
1793
- ListTypedLinkFacetNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1794
- })(ListTypedLinkFacetNamesRequest || (ListTypedLinkFacetNamesRequest = {}));
1795
- export var ListTypedLinkFacetNamesResponse;
1796
- (function (ListTypedLinkFacetNamesResponse) {
1797
- /**
1798
- * @internal
1799
- */
1800
- ListTypedLinkFacetNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1801
- })(ListTypedLinkFacetNamesResponse || (ListTypedLinkFacetNamesResponse = {}));
1802
- export var LookupPolicyRequest;
1803
- (function (LookupPolicyRequest) {
1804
- /**
1805
- * @internal
1806
- */
1807
- LookupPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1808
- })(LookupPolicyRequest || (LookupPolicyRequest = {}));
1809
- export var LookupPolicyResponse;
1810
- (function (LookupPolicyResponse) {
1811
- /**
1812
- * @internal
1813
- */
1814
- LookupPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1815
- })(LookupPolicyResponse || (LookupPolicyResponse = {}));
1816
- export var PublishSchemaRequest;
1817
- (function (PublishSchemaRequest) {
1818
- /**
1819
- * @internal
1820
- */
1821
- PublishSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1822
- })(PublishSchemaRequest || (PublishSchemaRequest = {}));
1823
- export var PublishSchemaResponse;
1824
- (function (PublishSchemaResponse) {
1825
- /**
1826
- * @internal
1827
- */
1828
- PublishSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1829
- })(PublishSchemaResponse || (PublishSchemaResponse = {}));
1830
- export var SchemaAlreadyPublishedException;
1831
- (function (SchemaAlreadyPublishedException) {
1832
- /**
1833
- * @internal
1834
- */
1835
- SchemaAlreadyPublishedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1836
- })(SchemaAlreadyPublishedException || (SchemaAlreadyPublishedException = {}));
1837
- export var InvalidSchemaDocException;
1838
- (function (InvalidSchemaDocException) {
1839
- /**
1840
- * @internal
1841
- */
1842
- InvalidSchemaDocException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1843
- })(InvalidSchemaDocException || (InvalidSchemaDocException = {}));
1844
- export var PutSchemaFromJsonRequest;
1845
- (function (PutSchemaFromJsonRequest) {
1846
- /**
1847
- * @internal
1848
- */
1849
- PutSchemaFromJsonRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1850
- })(PutSchemaFromJsonRequest || (PutSchemaFromJsonRequest = {}));
1851
- export var PutSchemaFromJsonResponse;
1852
- (function (PutSchemaFromJsonResponse) {
1853
- /**
1854
- * @internal
1855
- */
1856
- PutSchemaFromJsonResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1857
- })(PutSchemaFromJsonResponse || (PutSchemaFromJsonResponse = {}));
1858
- export var RemoveFacetFromObjectRequest;
1859
- (function (RemoveFacetFromObjectRequest) {
1860
- /**
1861
- * @internal
1862
- */
1863
- RemoveFacetFromObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1864
- })(RemoveFacetFromObjectRequest || (RemoveFacetFromObjectRequest = {}));
1865
- export var RemoveFacetFromObjectResponse;
1866
- (function (RemoveFacetFromObjectResponse) {
1867
- /**
1868
- * @internal
1869
- */
1870
- RemoveFacetFromObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1871
- })(RemoveFacetFromObjectResponse || (RemoveFacetFromObjectResponse = {}));
1872
- export var TagResourceRequest;
1873
- (function (TagResourceRequest) {
1874
- /**
1875
- * @internal
1876
- */
1877
- TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1878
- })(TagResourceRequest || (TagResourceRequest = {}));
1879
- export var TagResourceResponse;
1880
- (function (TagResourceResponse) {
1881
- /**
1882
- * @internal
1883
- */
1884
- TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1885
- })(TagResourceResponse || (TagResourceResponse = {}));
1886
- export var UntagResourceRequest;
1887
- (function (UntagResourceRequest) {
1888
- /**
1889
- * @internal
1890
- */
1891
- UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1892
- })(UntagResourceRequest || (UntagResourceRequest = {}));
1893
- export var UntagResourceResponse;
1894
- (function (UntagResourceResponse) {
1895
- /**
1896
- * @internal
1897
- */
1898
- UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1899
- })(UntagResourceResponse || (UntagResourceResponse = {}));
1900
- export var InvalidFacetUpdateException;
1901
- (function (InvalidFacetUpdateException) {
1902
- /**
1903
- * @internal
1904
- */
1905
- InvalidFacetUpdateException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1906
- })(InvalidFacetUpdateException || (InvalidFacetUpdateException = {}));
1907
- export var FacetAttributeUpdate;
1908
- (function (FacetAttributeUpdate) {
1909
- /**
1910
- * @internal
1911
- */
1912
- FacetAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attribute && { Attribute: FacetAttribute.filterSensitiveLog(obj.Attribute) }))); };
1913
- })(FacetAttributeUpdate || (FacetAttributeUpdate = {}));
1914
- export var UpdateFacetRequest;
1915
- (function (UpdateFacetRequest) {
1916
- /**
1917
- * @internal
1918
- */
1919
- UpdateFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
1920
- AttributeUpdates: obj.AttributeUpdates.map(function (item) { return FacetAttributeUpdate.filterSensitiveLog(item); }),
1921
- }))); };
1922
- })(UpdateFacetRequest || (UpdateFacetRequest = {}));
1923
- export var UpdateFacetResponse;
1924
- (function (UpdateFacetResponse) {
1925
- /**
1926
- * @internal
1927
- */
1928
- UpdateFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1929
- })(UpdateFacetResponse || (UpdateFacetResponse = {}));
1930
- export var UpdateLinkAttributesRequest;
1931
- (function (UpdateLinkAttributesRequest) {
1932
- /**
1933
- * @internal
1934
- */
1935
- UpdateLinkAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
1936
- TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
1937
- })), (obj.AttributeUpdates && {
1938
- AttributeUpdates: obj.AttributeUpdates.map(function (item) { return LinkAttributeUpdate.filterSensitiveLog(item); }),
1939
- }))); };
1940
- })(UpdateLinkAttributesRequest || (UpdateLinkAttributesRequest = {}));
1941
- export var UpdateLinkAttributesResponse;
1942
- (function (UpdateLinkAttributesResponse) {
1943
- /**
1944
- * @internal
1945
- */
1946
- UpdateLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1947
- })(UpdateLinkAttributesResponse || (UpdateLinkAttributesResponse = {}));
1948
- export var UpdateObjectAttributesRequest;
1949
- (function (UpdateObjectAttributesRequest) {
1950
- /**
1951
- * @internal
1952
- */
1953
- UpdateObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
1954
- AttributeUpdates: obj.AttributeUpdates.map(function (item) { return ObjectAttributeUpdate.filterSensitiveLog(item); }),
1955
- }))); };
1956
- })(UpdateObjectAttributesRequest || (UpdateObjectAttributesRequest = {}));
1957
- export var UpdateObjectAttributesResponse;
1958
- (function (UpdateObjectAttributesResponse) {
1959
- /**
1960
- * @internal
1961
- */
1962
- UpdateObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1963
- })(UpdateObjectAttributesResponse || (UpdateObjectAttributesResponse = {}));
1964
- export var UpdateSchemaRequest;
1965
- (function (UpdateSchemaRequest) {
1966
- /**
1967
- * @internal
1968
- */
1969
- UpdateSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1970
- })(UpdateSchemaRequest || (UpdateSchemaRequest = {}));
1971
- export var UpdateSchemaResponse;
1972
- (function (UpdateSchemaResponse) {
1973
- /**
1974
- * @internal
1975
- */
1976
- UpdateSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1977
- })(UpdateSchemaResponse || (UpdateSchemaResponse = {}));
1978
- export var TypedLinkFacetAttributeUpdate;
1979
- (function (TypedLinkFacetAttributeUpdate) {
1980
- /**
1981
- * @internal
1982
- */
1983
- TypedLinkFacetAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attribute && { Attribute: TypedLinkAttributeDefinition.filterSensitiveLog(obj.Attribute) }))); };
1984
- })(TypedLinkFacetAttributeUpdate || (TypedLinkFacetAttributeUpdate = {}));
1985
- export var UpdateTypedLinkFacetRequest;
1986
- (function (UpdateTypedLinkFacetRequest) {
1987
- /**
1988
- * @internal
1989
- */
1990
- UpdateTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
1991
- AttributeUpdates: obj.AttributeUpdates.map(function (item) { return TypedLinkFacetAttributeUpdate.filterSensitiveLog(item); }),
1992
- }))); };
1993
- })(UpdateTypedLinkFacetRequest || (UpdateTypedLinkFacetRequest = {}));
1994
- export var UpdateTypedLinkFacetResponse;
1995
- (function (UpdateTypedLinkFacetResponse) {
1996
- /**
1997
- * @internal
1998
- */
1999
- UpdateTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
2000
- })(UpdateTypedLinkFacetResponse || (UpdateTypedLinkFacetResponse = {}));
2001
- export var IncompatibleSchemaException;
2002
- (function (IncompatibleSchemaException) {
2003
- /**
2004
- * @internal
2005
- */
2006
- IncompatibleSchemaException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
2007
- })(IncompatibleSchemaException || (IncompatibleSchemaException = {}));
2008
- export var UpgradeAppliedSchemaRequest;
2009
- (function (UpgradeAppliedSchemaRequest) {
2010
- /**
2011
- * @internal
2012
- */
2013
- UpgradeAppliedSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
2014
- })(UpgradeAppliedSchemaRequest || (UpgradeAppliedSchemaRequest = {}));
2015
- export var UpgradeAppliedSchemaResponse;
2016
- (function (UpgradeAppliedSchemaResponse) {
2017
- /**
2018
- * @internal
2019
- */
2020
- UpgradeAppliedSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
2021
- })(UpgradeAppliedSchemaResponse || (UpgradeAppliedSchemaResponse = {}));
2022
- export var UpgradePublishedSchemaRequest;
2023
- (function (UpgradePublishedSchemaRequest) {
2024
- /**
2025
- * @internal
2026
- */
2027
- UpgradePublishedSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
2028
- })(UpgradePublishedSchemaRequest || (UpgradePublishedSchemaRequest = {}));
2029
- export var UpgradePublishedSchemaResponse;
2030
- (function (UpgradePublishedSchemaResponse) {
2031
- /**
2032
- * @internal
2033
- */
2034
- UpgradePublishedSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
2035
- })(UpgradePublishedSchemaResponse || (UpgradePublishedSchemaResponse = {}));
2036
- //# sourceMappingURL=models_0.js.map