@aws-sdk/client-efs 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 (318) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/{dist/cjs → dist-cjs}/EFS.js +2 -3
  3. package/{dist/cjs → dist-cjs}/EFSClient.js +8 -9
  4. package/{dist/cjs → dist-cjs}/commands/CreateAccessPointCommand.js +2 -3
  5. package/{dist/cjs → dist-cjs}/commands/CreateFileSystemCommand.js +2 -3
  6. package/{dist/cjs → dist-cjs}/commands/CreateMountTargetCommand.js +2 -3
  7. package/{dist/cjs → dist-cjs}/commands/CreateTagsCommand.js +2 -3
  8. package/{dist/cjs → dist-cjs}/commands/DeleteAccessPointCommand.js +2 -3
  9. package/{dist/cjs → dist-cjs}/commands/DeleteFileSystemCommand.js +2 -3
  10. package/{dist/cjs → dist-cjs}/commands/DeleteFileSystemPolicyCommand.js +2 -3
  11. package/{dist/cjs → dist-cjs}/commands/DeleteMountTargetCommand.js +2 -3
  12. package/{dist/cjs → dist-cjs}/commands/DeleteTagsCommand.js +2 -3
  13. package/{dist/cjs → dist-cjs}/commands/DescribeAccessPointsCommand.js +2 -3
  14. package/{dist/cjs → dist-cjs}/commands/DescribeAccountPreferencesCommand.js +2 -3
  15. package/{dist/cjs → dist-cjs}/commands/DescribeBackupPolicyCommand.js +2 -3
  16. package/{dist/cjs → dist-cjs}/commands/DescribeFileSystemPolicyCommand.js +2 -3
  17. package/{dist/cjs → dist-cjs}/commands/DescribeFileSystemsCommand.js +2 -3
  18. package/{dist/cjs → dist-cjs}/commands/DescribeLifecycleConfigurationCommand.js +2 -3
  19. package/{dist/cjs → dist-cjs}/commands/DescribeMountTargetSecurityGroupsCommand.js +2 -3
  20. package/{dist/cjs → dist-cjs}/commands/DescribeMountTargetsCommand.js +2 -3
  21. package/{dist/cjs → dist-cjs}/commands/DescribeTagsCommand.js +2 -3
  22. package/{dist/cjs → dist-cjs}/commands/ListTagsForResourceCommand.js +2 -3
  23. package/{dist/cjs → dist-cjs}/commands/ModifyMountTargetSecurityGroupsCommand.js +2 -3
  24. package/{dist/cjs → dist-cjs}/commands/PutAccountPreferencesCommand.js +2 -3
  25. package/{dist/cjs → dist-cjs}/commands/PutBackupPolicyCommand.js +2 -3
  26. package/{dist/cjs → dist-cjs}/commands/PutFileSystemPolicyCommand.js +2 -3
  27. package/{dist/cjs → dist-cjs}/commands/PutLifecycleConfigurationCommand.js +2 -3
  28. package/{dist/cjs → dist-cjs}/commands/TagResourceCommand.js +2 -3
  29. package/{dist/cjs → dist-cjs}/commands/UntagResourceCommand.js +2 -3
  30. package/{dist/cjs → dist-cjs}/commands/UpdateFileSystemCommand.js +2 -3
  31. package/{dist/cjs → dist-cjs}/endpoints.js +0 -1
  32. package/{dist/cjs → dist-cjs}/index.js +0 -1
  33. package/{dist/cjs → dist-cjs}/models/index.js +0 -1
  34. package/{dist/cjs → dist-cjs}/models/models_0.js +0 -1
  35. package/{dist/cjs → dist-cjs}/pagination/DescribeAccessPointsPaginator.js +1 -2
  36. package/{dist/cjs → dist-cjs}/pagination/DescribeFileSystemsPaginator.js +1 -2
  37. package/{dist/cjs → dist-cjs}/pagination/DescribeTagsPaginator.js +1 -2
  38. package/{dist/cjs → dist-cjs}/pagination/Interfaces.js +0 -1
  39. package/{dist/cjs → dist-cjs}/pagination/ListTagsForResourcePaginator.js +1 -2
  40. package/{dist/cjs → dist-cjs}/protocols/Aws_restJson1.js +16 -9
  41. package/{dist/cjs → dist-cjs}/runtimeConfig.browser.js +2 -2
  42. package/{dist/cjs → dist-cjs}/runtimeConfig.js +2 -2
  43. package/{dist/cjs → dist-cjs}/runtimeConfig.native.js +0 -1
  44. package/{dist/cjs → dist-cjs}/runtimeConfig.shared.js +1 -2
  45. package/{dist/es → dist-es}/EFS.js +3 -11
  46. package/{dist/es → dist-es}/EFSClient.js +2 -15
  47. package/{dist/es → dist-es}/commands/CreateAccessPointCommand.js +4 -37
  48. package/dist-es/commands/CreateFileSystemCommand.js +39 -0
  49. package/dist-es/commands/CreateMountTargetCommand.js +39 -0
  50. package/{dist/es → dist-es}/commands/CreateTagsCommand.js +4 -41
  51. package/{dist/es → dist-es}/commands/DeleteAccessPointCommand.js +4 -33
  52. package/dist-es/commands/DeleteFileSystemCommand.js +39 -0
  53. package/{dist/es → dist-es}/commands/DeleteFileSystemPolicyCommand.js +4 -33
  54. package/dist-es/commands/DeleteMountTargetCommand.js +39 -0
  55. package/dist-es/commands/DeleteTagsCommand.js +39 -0
  56. package/{dist/es → dist-es}/commands/DescribeAccessPointsCommand.js +4 -33
  57. package/{dist/es → dist-es}/commands/DescribeAccountPreferencesCommand.js +4 -31
  58. package/{dist/es → dist-es}/commands/DescribeBackupPolicyCommand.js +4 -30
  59. package/{dist/es → dist-es}/commands/DescribeFileSystemPolicyCommand.js +4 -31
  60. package/dist-es/commands/DescribeFileSystemsCommand.js +39 -0
  61. package/{dist/es → dist-es}/commands/DescribeLifecycleConfigurationCommand.js +4 -37
  62. package/{dist/es → dist-es}/commands/DescribeMountTargetSecurityGroupsCommand.js +4 -45
  63. package/{dist/es → dist-es}/commands/DescribeMountTargetsCommand.js +4 -37
  64. package/{dist/es → dist-es}/commands/DescribeTagsCommand.js +4 -40
  65. package/{dist/es → dist-es}/commands/ListTagsForResourceCommand.js +4 -31
  66. package/dist-es/commands/ModifyMountTargetSecurityGroupsCommand.js +39 -0
  67. package/{dist/es → dist-es}/commands/PutAccountPreferencesCommand.js +4 -33
  68. package/{dist/es → dist-es}/commands/PutBackupPolicyCommand.js +4 -30
  69. package/dist-es/commands/PutFileSystemPolicyCommand.js +39 -0
  70. package/dist-es/commands/PutLifecycleConfigurationCommand.js +39 -0
  71. package/{dist/es → dist-es}/commands/TagResourceCommand.js +4 -31
  72. package/{dist/es → dist-es}/commands/UntagResourceCommand.js +4 -31
  73. package/{dist/es → dist-es}/commands/UpdateFileSystemCommand.js +4 -31
  74. package/{dist/es → dist-es}/endpoints.js +1 -2
  75. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  76. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  77. package/{dist/es → dist-es}/models/models_0.js +0 -232
  78. package/{dist/es → dist-es}/pagination/DescribeAccessPointsPaginator.js +17 -30
  79. package/{dist/es → dist-es}/pagination/DescribeFileSystemsPaginator.js +17 -30
  80. package/{dist/es → dist-es}/pagination/DescribeTagsPaginator.js +17 -30
  81. package/dist-es/pagination/Interfaces.js +1 -0
  82. package/{dist/es → dist-es}/pagination/ListTagsForResourcePaginator.js +17 -30
  83. package/{dist/es → dist-es}/protocols/Aws_restJson1.js +750 -748
  84. package/{dist/es → dist-es}/runtimeConfig.browser.js +1 -5
  85. package/{dist/es → dist-es}/runtimeConfig.js +1 -5
  86. package/{dist/es → dist-es}/runtimeConfig.native.js +0 -4
  87. package/{dist/es → dist-es}/runtimeConfig.shared.js +1 -5
  88. package/{dist/types → dist-types}/EFS.d.ts +3 -3
  89. package/{dist/types → dist-types}/EFSClient.d.ts +9 -9
  90. package/{dist/types → dist-types}/commands/CreateAccessPointCommand.d.ts +2 -2
  91. package/{dist/types → dist-types}/commands/CreateFileSystemCommand.d.ts +2 -2
  92. package/{dist/types → dist-types}/commands/CreateMountTargetCommand.d.ts +2 -2
  93. package/{dist/types → dist-types}/commands/CreateTagsCommand.d.ts +2 -2
  94. package/{dist/types → dist-types}/commands/DeleteAccessPointCommand.d.ts +2 -2
  95. package/{dist/types → dist-types}/commands/DeleteFileSystemCommand.d.ts +2 -2
  96. package/{dist/types → dist-types}/commands/DeleteFileSystemPolicyCommand.d.ts +2 -2
  97. package/{dist/types → dist-types}/commands/DeleteMountTargetCommand.d.ts +2 -2
  98. package/{dist/types → dist-types}/commands/DeleteTagsCommand.d.ts +2 -2
  99. package/{dist/types → dist-types}/commands/DescribeAccessPointsCommand.d.ts +2 -2
  100. package/{dist/types → dist-types}/commands/DescribeAccountPreferencesCommand.d.ts +2 -2
  101. package/{dist/types → dist-types}/commands/DescribeBackupPolicyCommand.d.ts +2 -2
  102. package/{dist/types → dist-types}/commands/DescribeFileSystemPolicyCommand.d.ts +2 -2
  103. package/{dist/types → dist-types}/commands/DescribeFileSystemsCommand.d.ts +2 -2
  104. package/{dist/types → dist-types}/commands/DescribeLifecycleConfigurationCommand.d.ts +2 -2
  105. package/{dist/types → dist-types}/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +2 -2
  106. package/{dist/types → dist-types}/commands/DescribeMountTargetsCommand.d.ts +2 -2
  107. package/{dist/types → dist-types}/commands/DescribeTagsCommand.d.ts +2 -2
  108. package/{dist/types → dist-types}/commands/ListTagsForResourceCommand.d.ts +2 -2
  109. package/{dist/types → dist-types}/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +2 -2
  110. package/{dist/types → dist-types}/commands/PutAccountPreferencesCommand.d.ts +2 -2
  111. package/{dist/types → dist-types}/commands/PutBackupPolicyCommand.d.ts +2 -2
  112. package/{dist/types → dist-types}/commands/PutFileSystemPolicyCommand.d.ts +2 -2
  113. package/{dist/types → dist-types}/commands/PutLifecycleConfigurationCommand.d.ts +2 -2
  114. package/{dist/types → dist-types}/commands/TagResourceCommand.d.ts +2 -2
  115. package/{dist/types → dist-types}/commands/UntagResourceCommand.d.ts +2 -2
  116. package/{dist/types → dist-types}/commands/UpdateFileSystemCommand.d.ts +2 -2
  117. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  118. package/{index.ts → dist-types/index.d.ts} +0 -0
  119. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  120. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  121. package/{dist/types → dist-types}/pagination/DescribeAccessPointsPaginator.d.ts +1 -1
  122. package/{dist/types → dist-types}/pagination/DescribeFileSystemsPaginator.d.ts +1 -1
  123. package/{dist/types → dist-types}/pagination/DescribeTagsPaginator.d.ts +1 -1
  124. package/{dist/types → dist-types}/pagination/Interfaces.d.ts +1 -1
  125. package/{dist/types → dist-types}/pagination/ListTagsForResourcePaginator.d.ts +1 -1
  126. package/{dist/types → dist-types}/protocols/Aws_restJson1.d.ts +3 -3
  127. package/{dist/types → dist-types}/runtimeConfig.browser.d.ts +1 -0
  128. package/{dist/types/ts3.4 → dist-types}/runtimeConfig.d.ts +37 -36
  129. package/{dist/types → dist-types}/runtimeConfig.native.d.ts +1 -0
  130. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  131. package/{dist/types → dist-types}/ts3.4/EFS.d.ts +3 -3
  132. package/{dist/types → dist-types}/ts3.4/EFSClient.d.ts +9 -9
  133. package/{dist/types → dist-types}/ts3.4/commands/CreateAccessPointCommand.d.ts +2 -2
  134. package/{dist/types → dist-types}/ts3.4/commands/CreateFileSystemCommand.d.ts +2 -2
  135. package/{dist/types → dist-types}/ts3.4/commands/CreateMountTargetCommand.d.ts +2 -2
  136. package/{dist/types → dist-types}/ts3.4/commands/CreateTagsCommand.d.ts +2 -2
  137. package/{dist/types → dist-types}/ts3.4/commands/DeleteAccessPointCommand.d.ts +2 -2
  138. package/{dist/types → dist-types}/ts3.4/commands/DeleteFileSystemCommand.d.ts +2 -2
  139. package/{dist/types → dist-types}/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +2 -2
  140. package/{dist/types → dist-types}/ts3.4/commands/DeleteMountTargetCommand.d.ts +2 -2
  141. package/{dist/types → dist-types}/ts3.4/commands/DeleteTagsCommand.d.ts +2 -2
  142. package/{dist/types → dist-types}/ts3.4/commands/DescribeAccessPointsCommand.d.ts +2 -2
  143. package/{dist/types → dist-types}/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +2 -2
  144. package/{dist/types → dist-types}/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +2 -2
  145. package/{dist/types → dist-types}/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +2 -2
  146. package/{dist/types → dist-types}/ts3.4/commands/DescribeFileSystemsCommand.d.ts +2 -2
  147. package/{dist/types → dist-types}/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +2 -2
  148. package/{dist/types → dist-types}/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +2 -2
  149. package/{dist/types → dist-types}/ts3.4/commands/DescribeMountTargetsCommand.d.ts +2 -2
  150. package/{dist/types → dist-types}/ts3.4/commands/DescribeTagsCommand.d.ts +2 -2
  151. package/{dist/types → dist-types}/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -2
  152. package/{dist/types → dist-types}/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +2 -2
  153. package/{dist/types → dist-types}/ts3.4/commands/PutAccountPreferencesCommand.d.ts +2 -2
  154. package/{dist/types → dist-types}/ts3.4/commands/PutBackupPolicyCommand.d.ts +2 -2
  155. package/{dist/types → dist-types}/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +2 -2
  156. package/{dist/types → dist-types}/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +2 -2
  157. package/{dist/types → dist-types}/ts3.4/commands/TagResourceCommand.d.ts +2 -2
  158. package/{dist/types → dist-types}/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
  159. package/{dist/types → dist-types}/ts3.4/commands/UpdateFileSystemCommand.d.ts +2 -2
  160. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  161. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  162. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  163. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  164. package/{dist/types → dist-types}/ts3.4/pagination/DescribeAccessPointsPaginator.d.ts +1 -1
  165. package/{dist/types → dist-types}/ts3.4/pagination/DescribeFileSystemsPaginator.d.ts +1 -1
  166. package/{dist/types → dist-types}/ts3.4/pagination/DescribeTagsPaginator.d.ts +1 -1
  167. package/{dist/types → dist-types}/ts3.4/pagination/Interfaces.d.ts +1 -1
  168. package/{dist/types → dist-types}/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +1 -1
  169. package/{dist/types → dist-types}/ts3.4/protocols/Aws_restJson1.d.ts +3 -3
  170. package/{dist/types → dist-types}/ts3.4/runtimeConfig.browser.d.ts +1 -0
  171. package/{dist/types → dist-types/ts3.4}/runtimeConfig.d.ts +37 -36
  172. package/{dist/types → dist-types}/ts3.4/runtimeConfig.native.d.ts +1 -0
  173. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  174. package/package.json +52 -49
  175. package/EFS.ts +0 -1385
  176. package/EFSClient.ts +0 -362
  177. package/commands/CreateAccessPointCommand.ts +0 -101
  178. package/commands/CreateFileSystemCommand.ts +0 -147
  179. package/commands/CreateMountTargetCommand.ts +0 -235
  180. package/commands/CreateTagsCommand.ts +0 -105
  181. package/commands/DeleteAccessPointCommand.ts +0 -97
  182. package/commands/DeleteFileSystemCommand.ts +0 -108
  183. package/commands/DeleteFileSystemPolicyCommand.ts +0 -97
  184. package/commands/DeleteMountTargetCommand.ts +0 -127
  185. package/commands/DeleteTagsCommand.ts +0 -106
  186. package/commands/DescribeAccessPointsCommand.ts +0 -97
  187. package/commands/DescribeAccountPreferencesCommand.ts +0 -98
  188. package/commands/DescribeBackupPolicyCommand.ts +0 -94
  189. package/commands/DescribeFileSystemPolicyCommand.ts +0 -95
  190. package/commands/DescribeFileSystemsCommand.ts +0 -116
  191. package/commands/DescribeLifecycleConfigurationCommand.ts +0 -109
  192. package/commands/DescribeMountTargetSecurityGroupsCommand.ts +0 -120
  193. package/commands/DescribeMountTargetsCommand.ts +0 -101
  194. package/commands/DescribeTagsCommand.ts +0 -104
  195. package/commands/ListTagsForResourceCommand.ts +0 -95
  196. package/commands/ModifyMountTargetSecurityGroupsCommand.ts +0 -119
  197. package/commands/PutAccountPreferencesCommand.ts +0 -97
  198. package/commands/PutBackupPolicyCommand.ts +0 -94
  199. package/commands/PutFileSystemPolicyCommand.ts +0 -103
  200. package/commands/PutLifecycleConfigurationCommand.ts +0 -127
  201. package/commands/TagResourceCommand.ts +0 -95
  202. package/commands/UntagResourceCommand.ts +0 -95
  203. package/commands/UpdateFileSystemCommand.ts +0 -95
  204. package/dist/cjs/EFS.js.map +0 -1
  205. package/dist/cjs/EFSClient.js.map +0 -1
  206. package/dist/cjs/commands/CreateAccessPointCommand.js.map +0 -1
  207. package/dist/cjs/commands/CreateFileSystemCommand.js.map +0 -1
  208. package/dist/cjs/commands/CreateMountTargetCommand.js.map +0 -1
  209. package/dist/cjs/commands/CreateTagsCommand.js.map +0 -1
  210. package/dist/cjs/commands/DeleteAccessPointCommand.js.map +0 -1
  211. package/dist/cjs/commands/DeleteFileSystemCommand.js.map +0 -1
  212. package/dist/cjs/commands/DeleteFileSystemPolicyCommand.js.map +0 -1
  213. package/dist/cjs/commands/DeleteMountTargetCommand.js.map +0 -1
  214. package/dist/cjs/commands/DeleteTagsCommand.js.map +0 -1
  215. package/dist/cjs/commands/DescribeAccessPointsCommand.js.map +0 -1
  216. package/dist/cjs/commands/DescribeAccountPreferencesCommand.js.map +0 -1
  217. package/dist/cjs/commands/DescribeBackupPolicyCommand.js.map +0 -1
  218. package/dist/cjs/commands/DescribeFileSystemPolicyCommand.js.map +0 -1
  219. package/dist/cjs/commands/DescribeFileSystemsCommand.js.map +0 -1
  220. package/dist/cjs/commands/DescribeLifecycleConfigurationCommand.js.map +0 -1
  221. package/dist/cjs/commands/DescribeMountTargetSecurityGroupsCommand.js.map +0 -1
  222. package/dist/cjs/commands/DescribeMountTargetsCommand.js.map +0 -1
  223. package/dist/cjs/commands/DescribeTagsCommand.js.map +0 -1
  224. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  225. package/dist/cjs/commands/ModifyMountTargetSecurityGroupsCommand.js.map +0 -1
  226. package/dist/cjs/commands/PutAccountPreferencesCommand.js.map +0 -1
  227. package/dist/cjs/commands/PutBackupPolicyCommand.js.map +0 -1
  228. package/dist/cjs/commands/PutFileSystemPolicyCommand.js.map +0 -1
  229. package/dist/cjs/commands/PutLifecycleConfigurationCommand.js.map +0 -1
  230. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  231. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  232. package/dist/cjs/commands/UpdateFileSystemCommand.js.map +0 -1
  233. package/dist/cjs/endpoints.js.map +0 -1
  234. package/dist/cjs/index.js.map +0 -1
  235. package/dist/cjs/models/index.js.map +0 -1
  236. package/dist/cjs/models/models_0.js.map +0 -1
  237. package/dist/cjs/package.json +0 -93
  238. package/dist/cjs/pagination/DescribeAccessPointsPaginator.js.map +0 -1
  239. package/dist/cjs/pagination/DescribeFileSystemsPaginator.js.map +0 -1
  240. package/dist/cjs/pagination/DescribeTagsPaginator.js.map +0 -1
  241. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  242. package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
  243. package/dist/cjs/protocols/Aws_restJson1.js.map +0 -1
  244. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  245. package/dist/cjs/runtimeConfig.js.map +0 -1
  246. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  247. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  248. package/dist/es/EFS.js.map +0 -1
  249. package/dist/es/EFSClient.js.map +0 -1
  250. package/dist/es/commands/CreateAccessPointCommand.js.map +0 -1
  251. package/dist/es/commands/CreateFileSystemCommand.js +0 -118
  252. package/dist/es/commands/CreateFileSystemCommand.js.map +0 -1
  253. package/dist/es/commands/CreateMountTargetCommand.js +0 -206
  254. package/dist/es/commands/CreateMountTargetCommand.js.map +0 -1
  255. package/dist/es/commands/CreateTagsCommand.js.map +0 -1
  256. package/dist/es/commands/DeleteAccessPointCommand.js.map +0 -1
  257. package/dist/es/commands/DeleteFileSystemCommand.js +0 -79
  258. package/dist/es/commands/DeleteFileSystemCommand.js.map +0 -1
  259. package/dist/es/commands/DeleteFileSystemPolicyCommand.js.map +0 -1
  260. package/dist/es/commands/DeleteMountTargetCommand.js +0 -98
  261. package/dist/es/commands/DeleteMountTargetCommand.js.map +0 -1
  262. package/dist/es/commands/DeleteTagsCommand.js +0 -77
  263. package/dist/es/commands/DeleteTagsCommand.js.map +0 -1
  264. package/dist/es/commands/DescribeAccessPointsCommand.js.map +0 -1
  265. package/dist/es/commands/DescribeAccountPreferencesCommand.js.map +0 -1
  266. package/dist/es/commands/DescribeBackupPolicyCommand.js.map +0 -1
  267. package/dist/es/commands/DescribeFileSystemPolicyCommand.js.map +0 -1
  268. package/dist/es/commands/DescribeFileSystemsCommand.js +0 -87
  269. package/dist/es/commands/DescribeFileSystemsCommand.js.map +0 -1
  270. package/dist/es/commands/DescribeLifecycleConfigurationCommand.js.map +0 -1
  271. package/dist/es/commands/DescribeMountTargetSecurityGroupsCommand.js.map +0 -1
  272. package/dist/es/commands/DescribeMountTargetsCommand.js.map +0 -1
  273. package/dist/es/commands/DescribeTagsCommand.js.map +0 -1
  274. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  275. package/dist/es/commands/ModifyMountTargetSecurityGroupsCommand.js +0 -84
  276. package/dist/es/commands/ModifyMountTargetSecurityGroupsCommand.js.map +0 -1
  277. package/dist/es/commands/PutAccountPreferencesCommand.js.map +0 -1
  278. package/dist/es/commands/PutBackupPolicyCommand.js.map +0 -1
  279. package/dist/es/commands/PutFileSystemPolicyCommand.js +0 -74
  280. package/dist/es/commands/PutFileSystemPolicyCommand.js.map +0 -1
  281. package/dist/es/commands/PutLifecycleConfigurationCommand.js +0 -95
  282. package/dist/es/commands/PutLifecycleConfigurationCommand.js.map +0 -1
  283. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  284. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  285. package/dist/es/commands/UpdateFileSystemCommand.js.map +0 -1
  286. package/dist/es/endpoints.js.map +0 -1
  287. package/dist/es/index.js +0 -36
  288. package/dist/es/index.js.map +0 -1
  289. package/dist/es/models/index.js +0 -2
  290. package/dist/es/models/index.js.map +0 -1
  291. package/dist/es/models/models_0.js.map +0 -1
  292. package/dist/es/package.json +0 -93
  293. package/dist/es/pagination/DescribeAccessPointsPaginator.js.map +0 -1
  294. package/dist/es/pagination/DescribeFileSystemsPaginator.js.map +0 -1
  295. package/dist/es/pagination/DescribeTagsPaginator.js.map +0 -1
  296. package/dist/es/pagination/Interfaces.js +0 -2
  297. package/dist/es/pagination/Interfaces.js.map +0 -1
  298. package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
  299. package/dist/es/protocols/Aws_restJson1.js.map +0 -1
  300. package/dist/es/runtimeConfig.browser.js.map +0 -1
  301. package/dist/es/runtimeConfig.js.map +0 -1
  302. package/dist/es/runtimeConfig.native.js.map +0 -1
  303. package/dist/es/runtimeConfig.shared.js.map +0 -1
  304. package/endpoints.ts +0 -183
  305. package/jest.config.js +0 -4
  306. package/models/models_0.ts +0 -2185
  307. package/pagination/DescribeAccessPointsPaginator.ts +0 -58
  308. package/pagination/DescribeFileSystemsPaginator.ts +0 -58
  309. package/pagination/DescribeTagsPaginator.ts +0 -58
  310. package/pagination/Interfaces.ts +0 -7
  311. package/pagination/ListTagsForResourcePaginator.ts +0 -58
  312. package/protocols/Aws_restJson1.ts +0 -4417
  313. package/runtimeConfig.browser.ts +0 -40
  314. package/runtimeConfig.native.ts +0 -16
  315. package/runtimeConfig.shared.ts +0 -16
  316. package/runtimeConfig.ts +0 -45
  317. package/tsconfig.es.json +0 -12
  318. package/tsconfig.json +0 -32
@@ -1,9 +1,6 @@
1
1
  import { __assign } from "tslib";
2
2
  export var AccessPointAlreadyExists;
3
3
  (function (AccessPointAlreadyExists) {
4
- /**
5
- * @internal
6
- */
7
4
  AccessPointAlreadyExists.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
8
5
  })(AccessPointAlreadyExists || (AccessPointAlreadyExists = {}));
9
6
  export var LifeCycleState;
@@ -17,58 +14,34 @@ export var LifeCycleState;
17
14
  })(LifeCycleState || (LifeCycleState = {}));
18
15
  export var PosixUser;
19
16
  (function (PosixUser) {
20
- /**
21
- * @internal
22
- */
23
17
  PosixUser.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
24
18
  })(PosixUser || (PosixUser = {}));
25
19
  export var CreationInfo;
26
20
  (function (CreationInfo) {
27
- /**
28
- * @internal
29
- */
30
21
  CreationInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
31
22
  })(CreationInfo || (CreationInfo = {}));
32
23
  export var RootDirectory;
33
24
  (function (RootDirectory) {
34
- /**
35
- * @internal
36
- */
37
25
  RootDirectory.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
38
26
  })(RootDirectory || (RootDirectory = {}));
39
27
  export var Tag;
40
28
  (function (Tag) {
41
- /**
42
- * @internal
43
- */
44
29
  Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
45
30
  })(Tag || (Tag = {}));
46
31
  export var AccessPointDescription;
47
32
  (function (AccessPointDescription) {
48
- /**
49
- * @internal
50
- */
51
33
  AccessPointDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
52
34
  })(AccessPointDescription || (AccessPointDescription = {}));
53
35
  export var AccessPointLimitExceeded;
54
36
  (function (AccessPointLimitExceeded) {
55
- /**
56
- * @internal
57
- */
58
37
  AccessPointLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
59
38
  })(AccessPointLimitExceeded || (AccessPointLimitExceeded = {}));
60
39
  export var AccessPointNotFound;
61
40
  (function (AccessPointNotFound) {
62
- /**
63
- * @internal
64
- */
65
41
  AccessPointNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
66
42
  })(AccessPointNotFound || (AccessPointNotFound = {}));
67
43
  export var AvailabilityZonesMismatch;
68
44
  (function (AvailabilityZonesMismatch) {
69
- /**
70
- * @internal
71
- */
72
45
  AvailabilityZonesMismatch.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
73
46
  })(AvailabilityZonesMismatch || (AvailabilityZonesMismatch = {}));
74
47
  export var Status;
@@ -80,51 +53,30 @@ export var Status;
80
53
  })(Status || (Status = {}));
81
54
  export var BackupPolicy;
82
55
  (function (BackupPolicy) {
83
- /**
84
- * @internal
85
- */
86
56
  BackupPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
87
57
  })(BackupPolicy || (BackupPolicy = {}));
88
58
  export var BackupPolicyDescription;
89
59
  (function (BackupPolicyDescription) {
90
- /**
91
- * @internal
92
- */
93
60
  BackupPolicyDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
94
61
  })(BackupPolicyDescription || (BackupPolicyDescription = {}));
95
62
  export var BadRequest;
96
63
  (function (BadRequest) {
97
- /**
98
- * @internal
99
- */
100
64
  BadRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
101
65
  })(BadRequest || (BadRequest = {}));
102
66
  export var CreateAccessPointRequest;
103
67
  (function (CreateAccessPointRequest) {
104
- /**
105
- * @internal
106
- */
107
68
  CreateAccessPointRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
108
69
  })(CreateAccessPointRequest || (CreateAccessPointRequest = {}));
109
70
  export var FileSystemNotFound;
110
71
  (function (FileSystemNotFound) {
111
- /**
112
- * @internal
113
- */
114
72
  FileSystemNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
115
73
  })(FileSystemNotFound || (FileSystemNotFound = {}));
116
74
  export var IncorrectFileSystemLifeCycleState;
117
75
  (function (IncorrectFileSystemLifeCycleState) {
118
- /**
119
- * @internal
120
- */
121
76
  IncorrectFileSystemLifeCycleState.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
122
77
  })(IncorrectFileSystemLifeCycleState || (IncorrectFileSystemLifeCycleState = {}));
123
78
  export var InternalServerError;
124
79
  (function (InternalServerError) {
125
- /**
126
- * @internal
127
- */
128
80
  InternalServerError.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
129
81
  })(InternalServerError || (InternalServerError = {}));
130
82
  export var PerformanceMode;
@@ -139,205 +91,118 @@ export var ThroughputMode;
139
91
  })(ThroughputMode || (ThroughputMode = {}));
140
92
  export var CreateFileSystemRequest;
141
93
  (function (CreateFileSystemRequest) {
142
- /**
143
- * @internal
144
- */
145
94
  CreateFileSystemRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
146
95
  })(CreateFileSystemRequest || (CreateFileSystemRequest = {}));
147
96
  export var FileSystemAlreadyExists;
148
97
  (function (FileSystemAlreadyExists) {
149
- /**
150
- * @internal
151
- */
152
98
  FileSystemAlreadyExists.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
153
99
  })(FileSystemAlreadyExists || (FileSystemAlreadyExists = {}));
154
100
  export var FileSystemSize;
155
101
  (function (FileSystemSize) {
156
- /**
157
- * @internal
158
- */
159
102
  FileSystemSize.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
160
103
  })(FileSystemSize || (FileSystemSize = {}));
161
104
  export var FileSystemDescription;
162
105
  (function (FileSystemDescription) {
163
- /**
164
- * @internal
165
- */
166
106
  FileSystemDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
107
  })(FileSystemDescription || (FileSystemDescription = {}));
168
108
  export var FileSystemLimitExceeded;
169
109
  (function (FileSystemLimitExceeded) {
170
- /**
171
- * @internal
172
- */
173
110
  FileSystemLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
111
  })(FileSystemLimitExceeded || (FileSystemLimitExceeded = {}));
175
112
  export var InsufficientThroughputCapacity;
176
113
  (function (InsufficientThroughputCapacity) {
177
- /**
178
- * @internal
179
- */
180
114
  InsufficientThroughputCapacity.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
115
  })(InsufficientThroughputCapacity || (InsufficientThroughputCapacity = {}));
182
116
  export var ThroughputLimitExceeded;
183
117
  (function (ThroughputLimitExceeded) {
184
- /**
185
- * @internal
186
- */
187
118
  ThroughputLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
119
  })(ThroughputLimitExceeded || (ThroughputLimitExceeded = {}));
189
120
  export var UnsupportedAvailabilityZone;
190
121
  (function (UnsupportedAvailabilityZone) {
191
- /**
192
- * @internal
193
- */
194
122
  UnsupportedAvailabilityZone.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
123
  })(UnsupportedAvailabilityZone || (UnsupportedAvailabilityZone = {}));
196
124
  export var CreateMountTargetRequest;
197
125
  (function (CreateMountTargetRequest) {
198
- /**
199
- * @internal
200
- */
201
126
  CreateMountTargetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
127
  })(CreateMountTargetRequest || (CreateMountTargetRequest = {}));
203
128
  export var IpAddressInUse;
204
129
  (function (IpAddressInUse) {
205
- /**
206
- * @internal
207
- */
208
130
  IpAddressInUse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
131
  })(IpAddressInUse || (IpAddressInUse = {}));
210
132
  export var MountTargetConflict;
211
133
  (function (MountTargetConflict) {
212
- /**
213
- * @internal
214
- */
215
134
  MountTargetConflict.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
135
  })(MountTargetConflict || (MountTargetConflict = {}));
217
136
  export var MountTargetDescription;
218
137
  (function (MountTargetDescription) {
219
- /**
220
- * @internal
221
- */
222
138
  MountTargetDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
139
  })(MountTargetDescription || (MountTargetDescription = {}));
224
140
  export var NetworkInterfaceLimitExceeded;
225
141
  (function (NetworkInterfaceLimitExceeded) {
226
- /**
227
- * @internal
228
- */
229
142
  NetworkInterfaceLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
143
  })(NetworkInterfaceLimitExceeded || (NetworkInterfaceLimitExceeded = {}));
231
144
  export var NoFreeAddressesInSubnet;
232
145
  (function (NoFreeAddressesInSubnet) {
233
- /**
234
- * @internal
235
- */
236
146
  NoFreeAddressesInSubnet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
147
  })(NoFreeAddressesInSubnet || (NoFreeAddressesInSubnet = {}));
238
148
  export var SecurityGroupLimitExceeded;
239
149
  (function (SecurityGroupLimitExceeded) {
240
- /**
241
- * @internal
242
- */
243
150
  SecurityGroupLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
151
  })(SecurityGroupLimitExceeded || (SecurityGroupLimitExceeded = {}));
245
152
  export var SecurityGroupNotFound;
246
153
  (function (SecurityGroupNotFound) {
247
- /**
248
- * @internal
249
- */
250
154
  SecurityGroupNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
155
  })(SecurityGroupNotFound || (SecurityGroupNotFound = {}));
252
156
  export var SubnetNotFound;
253
157
  (function (SubnetNotFound) {
254
- /**
255
- * @internal
256
- */
257
158
  SubnetNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
159
  })(SubnetNotFound || (SubnetNotFound = {}));
259
160
  export var CreateTagsRequest;
260
161
  (function (CreateTagsRequest) {
261
- /**
262
- * @internal
263
- */
264
162
  CreateTagsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
163
  })(CreateTagsRequest || (CreateTagsRequest = {}));
266
164
  export var DeleteAccessPointRequest;
267
165
  (function (DeleteAccessPointRequest) {
268
- /**
269
- * @internal
270
- */
271
166
  DeleteAccessPointRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
167
  })(DeleteAccessPointRequest || (DeleteAccessPointRequest = {}));
273
168
  export var DeleteFileSystemRequest;
274
169
  (function (DeleteFileSystemRequest) {
275
- /**
276
- * @internal
277
- */
278
170
  DeleteFileSystemRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
171
  })(DeleteFileSystemRequest || (DeleteFileSystemRequest = {}));
280
172
  export var FileSystemInUse;
281
173
  (function (FileSystemInUse) {
282
- /**
283
- * @internal
284
- */
285
174
  FileSystemInUse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
175
  })(FileSystemInUse || (FileSystemInUse = {}));
287
176
  export var DeleteFileSystemPolicyRequest;
288
177
  (function (DeleteFileSystemPolicyRequest) {
289
- /**
290
- * @internal
291
- */
292
178
  DeleteFileSystemPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
179
  })(DeleteFileSystemPolicyRequest || (DeleteFileSystemPolicyRequest = {}));
294
180
  export var DeleteMountTargetRequest;
295
181
  (function (DeleteMountTargetRequest) {
296
- /**
297
- * @internal
298
- */
299
182
  DeleteMountTargetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
183
  })(DeleteMountTargetRequest || (DeleteMountTargetRequest = {}));
301
184
  export var DependencyTimeout;
302
185
  (function (DependencyTimeout) {
303
- /**
304
- * @internal
305
- */
306
186
  DependencyTimeout.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
187
  })(DependencyTimeout || (DependencyTimeout = {}));
308
188
  export var MountTargetNotFound;
309
189
  (function (MountTargetNotFound) {
310
- /**
311
- * @internal
312
- */
313
190
  MountTargetNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
191
  })(MountTargetNotFound || (MountTargetNotFound = {}));
315
192
  export var DeleteTagsRequest;
316
193
  (function (DeleteTagsRequest) {
317
- /**
318
- * @internal
319
- */
320
194
  DeleteTagsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
195
  })(DeleteTagsRequest || (DeleteTagsRequest = {}));
322
196
  export var DescribeAccessPointsRequest;
323
197
  (function (DescribeAccessPointsRequest) {
324
- /**
325
- * @internal
326
- */
327
198
  DescribeAccessPointsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
199
  })(DescribeAccessPointsRequest || (DescribeAccessPointsRequest = {}));
329
200
  export var DescribeAccessPointsResponse;
330
201
  (function (DescribeAccessPointsResponse) {
331
- /**
332
- * @internal
333
- */
334
202
  DescribeAccessPointsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
203
  })(DescribeAccessPointsResponse || (DescribeAccessPointsResponse = {}));
336
204
  export var DescribeAccountPreferencesRequest;
337
205
  (function (DescribeAccountPreferencesRequest) {
338
- /**
339
- * @internal
340
- */
341
206
  DescribeAccountPreferencesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
207
  })(DescribeAccountPreferencesRequest || (DescribeAccountPreferencesRequest = {}));
343
208
  export var ResourceIdType;
@@ -352,72 +217,42 @@ export var Resource;
352
217
  })(Resource || (Resource = {}));
353
218
  export var ResourceIdPreference;
354
219
  (function (ResourceIdPreference) {
355
- /**
356
- * @internal
357
- */
358
220
  ResourceIdPreference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
221
  })(ResourceIdPreference || (ResourceIdPreference = {}));
360
222
  export var DescribeAccountPreferencesResponse;
361
223
  (function (DescribeAccountPreferencesResponse) {
362
- /**
363
- * @internal
364
- */
365
224
  DescribeAccountPreferencesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
225
  })(DescribeAccountPreferencesResponse || (DescribeAccountPreferencesResponse = {}));
367
226
  export var DescribeBackupPolicyRequest;
368
227
  (function (DescribeBackupPolicyRequest) {
369
- /**
370
- * @internal
371
- */
372
228
  DescribeBackupPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
229
  })(DescribeBackupPolicyRequest || (DescribeBackupPolicyRequest = {}));
374
230
  export var PolicyNotFound;
375
231
  (function (PolicyNotFound) {
376
- /**
377
- * @internal
378
- */
379
232
  PolicyNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
233
  })(PolicyNotFound || (PolicyNotFound = {}));
381
234
  export var ValidationException;
382
235
  (function (ValidationException) {
383
- /**
384
- * @internal
385
- */
386
236
  ValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
237
  })(ValidationException || (ValidationException = {}));
388
238
  export var DescribeFileSystemPolicyRequest;
389
239
  (function (DescribeFileSystemPolicyRequest) {
390
- /**
391
- * @internal
392
- */
393
240
  DescribeFileSystemPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
394
241
  })(DescribeFileSystemPolicyRequest || (DescribeFileSystemPolicyRequest = {}));
395
242
  export var FileSystemPolicyDescription;
396
243
  (function (FileSystemPolicyDescription) {
397
- /**
398
- * @internal
399
- */
400
244
  FileSystemPolicyDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
401
245
  })(FileSystemPolicyDescription || (FileSystemPolicyDescription = {}));
402
246
  export var DescribeFileSystemsRequest;
403
247
  (function (DescribeFileSystemsRequest) {
404
- /**
405
- * @internal
406
- */
407
248
  DescribeFileSystemsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
249
  })(DescribeFileSystemsRequest || (DescribeFileSystemsRequest = {}));
409
250
  export var DescribeFileSystemsResponse;
410
251
  (function (DescribeFileSystemsResponse) {
411
- /**
412
- * @internal
413
- */
414
252
  DescribeFileSystemsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
253
  })(DescribeFileSystemsResponse || (DescribeFileSystemsResponse = {}));
416
254
  export var DescribeLifecycleConfigurationRequest;
417
255
  (function (DescribeLifecycleConfigurationRequest) {
418
- /**
419
- * @internal
420
- */
421
256
  DescribeLifecycleConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
422
257
  })(DescribeLifecycleConfigurationRequest || (DescribeLifecycleConfigurationRequest = {}));
423
258
  export var TransitionToIARules;
@@ -434,156 +269,89 @@ export var TransitionToPrimaryStorageClassRules;
434
269
  })(TransitionToPrimaryStorageClassRules || (TransitionToPrimaryStorageClassRules = {}));
435
270
  export var LifecyclePolicy;
436
271
  (function (LifecyclePolicy) {
437
- /**
438
- * @internal
439
- */
440
272
  LifecyclePolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
441
273
  })(LifecyclePolicy || (LifecyclePolicy = {}));
442
274
  export var LifecycleConfigurationDescription;
443
275
  (function (LifecycleConfigurationDescription) {
444
- /**
445
- * @internal
446
- */
447
276
  LifecycleConfigurationDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
448
277
  })(LifecycleConfigurationDescription || (LifecycleConfigurationDescription = {}));
449
278
  export var DescribeMountTargetsRequest;
450
279
  (function (DescribeMountTargetsRequest) {
451
- /**
452
- * @internal
453
- */
454
280
  DescribeMountTargetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
455
281
  })(DescribeMountTargetsRequest || (DescribeMountTargetsRequest = {}));
456
282
  export var DescribeMountTargetsResponse;
457
283
  (function (DescribeMountTargetsResponse) {
458
- /**
459
- * @internal
460
- */
461
284
  DescribeMountTargetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
462
285
  })(DescribeMountTargetsResponse || (DescribeMountTargetsResponse = {}));
463
286
  export var DescribeMountTargetSecurityGroupsRequest;
464
287
  (function (DescribeMountTargetSecurityGroupsRequest) {
465
- /**
466
- * @internal
467
- */
468
288
  DescribeMountTargetSecurityGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
469
289
  })(DescribeMountTargetSecurityGroupsRequest || (DescribeMountTargetSecurityGroupsRequest = {}));
470
290
  export var DescribeMountTargetSecurityGroupsResponse;
471
291
  (function (DescribeMountTargetSecurityGroupsResponse) {
472
- /**
473
- * @internal
474
- */
475
292
  DescribeMountTargetSecurityGroupsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
476
293
  })(DescribeMountTargetSecurityGroupsResponse || (DescribeMountTargetSecurityGroupsResponse = {}));
477
294
  export var IncorrectMountTargetState;
478
295
  (function (IncorrectMountTargetState) {
479
- /**
480
- * @internal
481
- */
482
296
  IncorrectMountTargetState.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
483
297
  })(IncorrectMountTargetState || (IncorrectMountTargetState = {}));
484
298
  export var DescribeTagsRequest;
485
299
  (function (DescribeTagsRequest) {
486
- /**
487
- * @internal
488
- */
489
300
  DescribeTagsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
490
301
  })(DescribeTagsRequest || (DescribeTagsRequest = {}));
491
302
  export var DescribeTagsResponse;
492
303
  (function (DescribeTagsResponse) {
493
- /**
494
- * @internal
495
- */
496
304
  DescribeTagsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
497
305
  })(DescribeTagsResponse || (DescribeTagsResponse = {}));
498
306
  export var InvalidPolicyException;
499
307
  (function (InvalidPolicyException) {
500
- /**
501
- * @internal
502
- */
503
308
  InvalidPolicyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
504
309
  })(InvalidPolicyException || (InvalidPolicyException = {}));
505
310
  export var ListTagsForResourceRequest;
506
311
  (function (ListTagsForResourceRequest) {
507
- /**
508
- * @internal
509
- */
510
312
  ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
511
313
  })(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
512
314
  export var ListTagsForResourceResponse;
513
315
  (function (ListTagsForResourceResponse) {
514
- /**
515
- * @internal
516
- */
517
316
  ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
518
317
  })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
519
318
  export var ModifyMountTargetSecurityGroupsRequest;
520
319
  (function (ModifyMountTargetSecurityGroupsRequest) {
521
- /**
522
- * @internal
523
- */
524
320
  ModifyMountTargetSecurityGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
525
321
  })(ModifyMountTargetSecurityGroupsRequest || (ModifyMountTargetSecurityGroupsRequest = {}));
526
322
  export var PutAccountPreferencesRequest;
527
323
  (function (PutAccountPreferencesRequest) {
528
- /**
529
- * @internal
530
- */
531
324
  PutAccountPreferencesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
532
325
  })(PutAccountPreferencesRequest || (PutAccountPreferencesRequest = {}));
533
326
  export var PutAccountPreferencesResponse;
534
327
  (function (PutAccountPreferencesResponse) {
535
- /**
536
- * @internal
537
- */
538
328
  PutAccountPreferencesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
539
329
  })(PutAccountPreferencesResponse || (PutAccountPreferencesResponse = {}));
540
330
  export var PutBackupPolicyRequest;
541
331
  (function (PutBackupPolicyRequest) {
542
- /**
543
- * @internal
544
- */
545
332
  PutBackupPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
546
333
  })(PutBackupPolicyRequest || (PutBackupPolicyRequest = {}));
547
334
  export var PutFileSystemPolicyRequest;
548
335
  (function (PutFileSystemPolicyRequest) {
549
- /**
550
- * @internal
551
- */
552
336
  PutFileSystemPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
553
337
  })(PutFileSystemPolicyRequest || (PutFileSystemPolicyRequest = {}));
554
338
  export var PutLifecycleConfigurationRequest;
555
339
  (function (PutLifecycleConfigurationRequest) {
556
- /**
557
- * @internal
558
- */
559
340
  PutLifecycleConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
560
341
  })(PutLifecycleConfigurationRequest || (PutLifecycleConfigurationRequest = {}));
561
342
  export var TagResourceRequest;
562
343
  (function (TagResourceRequest) {
563
- /**
564
- * @internal
565
- */
566
344
  TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
567
345
  })(TagResourceRequest || (TagResourceRequest = {}));
568
346
  export var UntagResourceRequest;
569
347
  (function (UntagResourceRequest) {
570
- /**
571
- * @internal
572
- */
573
348
  UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
574
349
  })(UntagResourceRequest || (UntagResourceRequest = {}));
575
350
  export var TooManyRequests;
576
351
  (function (TooManyRequests) {
577
- /**
578
- * @internal
579
- */
580
352
  TooManyRequests.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
581
353
  })(TooManyRequests || (TooManyRequests = {}));
582
354
  export var UpdateFileSystemRequest;
583
355
  (function (UpdateFileSystemRequest) {
584
- /**
585
- * @internal
586
- */
587
356
  UpdateFileSystemRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
588
357
  })(UpdateFileSystemRequest || (UpdateFileSystemRequest = {}));
589
- //# sourceMappingURL=models_0.js.map
@@ -1,10 +1,7 @@
1
1
  import { __asyncGenerator, __await, __awaiter, __generator, __read, __spreadArray } from "tslib";
2
+ import { DescribeAccessPointsCommand, } from "../commands/DescribeAccessPointsCommand";
2
3
  import { EFS } from "../EFS";
3
4
  import { EFSClient } from "../EFSClient";
4
- import { DescribeAccessPointsCommand, } from "../commands/DescribeAccessPointsCommand";
5
- /**
6
- * @private
7
- */
8
5
  var makePagedClientRequest = function (client, input) {
9
6
  var args = [];
10
7
  for (var _i = 2; _i < arguments.length; _i++) {
@@ -13,17 +10,12 @@ var makePagedClientRequest = function (client, input) {
13
10
  return __awaiter(void 0, void 0, void 0, function () {
14
11
  return __generator(this, function (_a) {
15
12
  switch (_a.label) {
16
- case 0: return [4 /*yield*/, client.send.apply(client, __spreadArray([new DescribeAccessPointsCommand(input)], __read(args)))];
17
- case 1:
18
- // @ts-ignore
19
- return [2 /*return*/, _a.sent()];
13
+ case 0: return [4, client.send.apply(client, __spreadArray([new DescribeAccessPointsCommand(input)], __read(args)))];
14
+ case 1: return [2, _a.sent()];
20
15
  }
21
16
  });
22
17
  });
23
18
  };
24
- /**
25
- * @private
26
- */
27
19
  var makePagedRequest = function (client, input) {
28
20
  var args = [];
29
21
  for (var _i = 2; _i < arguments.length; _i++) {
@@ -32,10 +24,8 @@ var makePagedRequest = function (client, input) {
32
24
  return __awaiter(void 0, void 0, void 0, function () {
33
25
  return __generator(this, function (_a) {
34
26
  switch (_a.label) {
35
- case 0: return [4 /*yield*/, client.describeAccessPoints.apply(client, __spreadArray([input], __read(args)))];
36
- case 1:
37
- // @ts-ignore
38
- return [2 /*return*/, _a.sent()];
27
+ case 0: return [4, client.describeAccessPoints.apply(client, __spreadArray([input], __read(args)))];
28
+ case 1: return [2, _a.sent()];
39
29
  }
40
30
  });
41
31
  });
@@ -54,34 +44,31 @@ export function paginateDescribeAccessPoints(config, input) {
54
44
  hasNext = true;
55
45
  _a.label = 1;
56
46
  case 1:
57
- if (!hasNext) return [3 /*break*/, 9];
47
+ if (!hasNext) return [3, 9];
58
48
  input.NextToken = token;
59
49
  input["MaxResults"] = config.pageSize;
60
- if (!(config.client instanceof EFS)) return [3 /*break*/, 3];
61
- return [4 /*yield*/, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
50
+ if (!(config.client instanceof EFS)) return [3, 3];
51
+ return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
62
52
  case 2:
63
53
  page = _a.sent();
64
- return [3 /*break*/, 6];
54
+ return [3, 6];
65
55
  case 3:
66
- if (!(config.client instanceof EFSClient)) return [3 /*break*/, 5];
67
- return [4 /*yield*/, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
56
+ if (!(config.client instanceof EFSClient)) return [3, 5];
57
+ return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
68
58
  case 4:
69
59
  page = _a.sent();
70
- return [3 /*break*/, 6];
60
+ return [3, 6];
71
61
  case 5: throw new Error("Invalid client, expected EFS | EFSClient");
72
- case 6: return [4 /*yield*/, __await(page)];
73
- case 7: return [4 /*yield*/, _a.sent()];
62
+ case 6: return [4, __await(page)];
63
+ case 7: return [4, _a.sent()];
74
64
  case 8:
75
65
  _a.sent();
76
66
  token = page.NextToken;
77
67
  hasNext = !!token;
78
- return [3 /*break*/, 1];
79
- case 9: return [4 /*yield*/, __await(undefined)];
80
- case 10:
81
- // @ts-ignore
82
- return [2 /*return*/, _a.sent()];
68
+ return [3, 1];
69
+ case 9: return [4, __await(undefined)];
70
+ case 10: return [2, _a.sent()];
83
71
  }
84
72
  });
85
73
  });
86
74
  }
87
- //# sourceMappingURL=DescribeAccessPointsPaginator.js.map