@azure/arm-qumulo 2.0.2-alpha.20260310.1 → 3.0.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 (389) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +12 -11
  3. package/dist/browser/api/fileSystems/index.d.ts +3 -0
  4. package/dist/browser/api/fileSystems/index.js +4 -0
  5. package/dist/browser/api/fileSystems/index.js.map +1 -0
  6. package/dist/browser/api/fileSystems/operations.d.ts +31 -0
  7. package/dist/browser/api/fileSystems/operations.js +194 -0
  8. package/dist/browser/api/fileSystems/operations.js.map +1 -0
  9. package/dist/browser/api/fileSystems/options.d.ts +24 -0
  10. package/dist/browser/api/fileSystems/options.js +4 -0
  11. package/dist/browser/api/fileSystems/options.js.map +1 -0
  12. package/dist/browser/api/index.d.ts +3 -0
  13. package/dist/browser/api/index.js +4 -0
  14. package/dist/browser/api/index.js.map +1 -0
  15. package/dist/browser/api/operations/index.d.ts +3 -0
  16. package/dist/browser/api/operations/index.js +4 -0
  17. package/dist/browser/api/operations/index.js.map +1 -0
  18. package/dist/browser/api/operations/operations.d.ts +10 -0
  19. package/dist/browser/api/operations/operations.js +33 -0
  20. package/dist/browser/api/operations/operations.js.map +1 -0
  21. package/dist/browser/api/operations/options.d.ts +5 -0
  22. package/dist/browser/api/operations/options.js +4 -0
  23. package/dist/browser/api/operations/options.js.map +1 -0
  24. package/dist/browser/api/qumuloStorageContext.d.ts +20 -0
  25. package/dist/browser/api/qumuloStorageContext.js +25 -0
  26. package/dist/browser/api/qumuloStorageContext.js.map +1 -0
  27. package/dist/browser/classic/fileSystems/index.d.ts +31 -0
  28. package/dist/browser/classic/fileSystems/index.js +36 -0
  29. package/dist/browser/classic/fileSystems/index.js.map +1 -0
  30. package/dist/browser/classic/index.d.ts +3 -0
  31. package/dist/browser/classic/index.js +4 -0
  32. package/dist/browser/classic/index.js.map +1 -0
  33. package/dist/browser/classic/operations/index.d.ts +11 -0
  34. package/dist/browser/classic/operations/index.js +14 -0
  35. package/dist/browser/classic/operations/index.js.map +1 -0
  36. package/dist/browser/index.d.ts +16 -3
  37. package/dist/browser/index.js +7 -11
  38. package/dist/browser/index.js.map +1 -1
  39. package/dist/browser/logger.d.ts +2 -0
  40. package/dist/browser/logger.js +5 -0
  41. package/dist/browser/logger.js.map +1 -0
  42. package/dist/browser/models/index.d.ts +2 -478
  43. package/dist/browser/models/index.js +3 -79
  44. package/dist/browser/models/index.js.map +1 -1
  45. package/dist/browser/models/models.d.ts +392 -0
  46. package/dist/browser/models/models.js +413 -0
  47. package/dist/browser/models/models.js.map +1 -0
  48. package/dist/browser/qumuloStorage.d.ts +15 -19
  49. package/dist/browser/qumuloStorage.js +23 -103
  50. package/dist/browser/qumuloStorage.js.map +1 -1
  51. package/dist/browser/restorePollerHelpers.d.ts +21 -0
  52. package/dist/browser/restorePollerHelpers.js +95 -0
  53. package/dist/browser/restorePollerHelpers.js.map +1 -0
  54. package/dist/browser/static-helpers/cloudSettingHelpers.d.ts +22 -0
  55. package/dist/browser/static-helpers/cloudSettingHelpers.js +38 -0
  56. package/dist/browser/static-helpers/cloudSettingHelpers.js.map +1 -0
  57. package/dist/browser/static-helpers/pagingHelpers.d.ts +74 -0
  58. package/dist/browser/static-helpers/pagingHelpers.js +143 -0
  59. package/dist/browser/static-helpers/pagingHelpers.js.map +1 -0
  60. package/dist/browser/static-helpers/pollingHelpers.d.ts +34 -0
  61. package/dist/browser/static-helpers/pollingHelpers.js +95 -0
  62. package/dist/browser/static-helpers/pollingHelpers.js.map +1 -0
  63. package/dist/browser/static-helpers/serialization/check-prop-undefined.d.ts +8 -0
  64. package/dist/browser/static-helpers/serialization/check-prop-undefined.js +17 -0
  65. package/dist/browser/static-helpers/serialization/check-prop-undefined.js.map +1 -0
  66. package/dist/browser/static-helpers/simplePollerHelpers.d.ts +73 -0
  67. package/dist/browser/static-helpers/simplePollerHelpers.js +44 -0
  68. package/dist/browser/static-helpers/simplePollerHelpers.js.map +1 -0
  69. package/dist/browser/static-helpers/urlTemplate.d.ts +5 -0
  70. package/dist/browser/static-helpers/urlTemplate.js +200 -0
  71. package/dist/browser/static-helpers/urlTemplate.js.map +1 -0
  72. package/dist/commonjs/api/fileSystems/index.d.ts +3 -0
  73. package/dist/commonjs/api/fileSystems/index.js +38 -0
  74. package/dist/commonjs/api/fileSystems/index.js.map +7 -0
  75. package/dist/commonjs/api/fileSystems/operations.d.ts +31 -0
  76. package/dist/commonjs/api/fileSystems/operations.js +282 -0
  77. package/dist/commonjs/api/fileSystems/operations.js.map +7 -0
  78. package/dist/commonjs/api/fileSystems/options.d.ts +24 -0
  79. package/dist/commonjs/{operationsInterfaces/operations.js → api/fileSystems/options.js} +3 -2
  80. package/dist/commonjs/api/fileSystems/options.js.map +7 -0
  81. package/dist/commonjs/api/index.d.ts +3 -0
  82. package/dist/commonjs/{operationsInterfaces → api}/index.js +12 -7
  83. package/dist/commonjs/api/index.js.map +7 -0
  84. package/dist/commonjs/api/operations/index.d.ts +3 -0
  85. package/dist/commonjs/{operations → api/operations}/index.js +10 -5
  86. package/dist/commonjs/api/operations/index.js.map +7 -0
  87. package/dist/commonjs/api/operations/operations.d.ts +10 -0
  88. package/dist/commonjs/api/operations/operations.js +70 -0
  89. package/dist/commonjs/api/operations/operations.js.map +7 -0
  90. package/dist/commonjs/api/operations/options.d.ts +5 -0
  91. package/dist/commonjs/api/operations/options.js +16 -0
  92. package/dist/commonjs/api/operations/options.js.map +7 -0
  93. package/dist/commonjs/api/qumuloStorageContext.d.ts +20 -0
  94. package/dist/commonjs/api/qumuloStorageContext.js +47 -0
  95. package/dist/commonjs/api/qumuloStorageContext.js.map +7 -0
  96. package/dist/commonjs/classic/fileSystems/index.d.ts +31 -0
  97. package/dist/commonjs/classic/fileSystems/index.js +60 -0
  98. package/dist/commonjs/classic/fileSystems/index.js.map +7 -0
  99. package/dist/commonjs/classic/index.d.ts +3 -0
  100. package/dist/commonjs/{operationsInterfaces/fileSystems.js → classic/index.js} +3 -2
  101. package/dist/commonjs/classic/index.js.map +7 -0
  102. package/dist/commonjs/classic/operations/index.d.ts +11 -0
  103. package/dist/commonjs/{lroImpl.js → classic/operations/index.js} +14 -19
  104. package/dist/commonjs/classic/operations/index.js.map +7 -0
  105. package/dist/commonjs/index.d.ts +16 -3
  106. package/dist/commonjs/index.js +27 -8
  107. package/dist/commonjs/index.js.map +3 -3
  108. package/dist/commonjs/logger.d.ts +2 -0
  109. package/dist/commonjs/logger.js +29 -0
  110. package/dist/commonjs/logger.js.map +7 -0
  111. package/dist/commonjs/models/index.d.ts +2 -478
  112. package/dist/commonjs/models/index.js +11 -49
  113. package/dist/commonjs/models/index.js.map +4 -4
  114. package/dist/commonjs/models/models.d.ts +392 -0
  115. package/dist/commonjs/models/models.js +436 -0
  116. package/dist/commonjs/models/models.js.map +7 -0
  117. package/dist/commonjs/qumuloStorage.d.ts +15 -19
  118. package/dist/commonjs/qumuloStorage.js +20 -99
  119. package/dist/commonjs/qumuloStorage.js.map +3 -3
  120. package/dist/commonjs/restorePollerHelpers.d.ts +21 -0
  121. package/dist/commonjs/restorePollerHelpers.js +108 -0
  122. package/dist/commonjs/restorePollerHelpers.js.map +7 -0
  123. package/dist/commonjs/static-helpers/cloudSettingHelpers.d.ts +22 -0
  124. package/dist/commonjs/static-helpers/cloudSettingHelpers.js +52 -0
  125. package/dist/commonjs/static-helpers/cloudSettingHelpers.js.map +7 -0
  126. package/dist/commonjs/static-helpers/pagingHelpers.d.ts +74 -0
  127. package/dist/commonjs/static-helpers/pagingHelpers.js +143 -0
  128. package/dist/commonjs/static-helpers/pagingHelpers.js.map +7 -0
  129. package/dist/commonjs/static-helpers/pollingHelpers.d.ts +34 -0
  130. package/dist/commonjs/static-helpers/pollingHelpers.js +101 -0
  131. package/dist/commonjs/static-helpers/pollingHelpers.js.map +7 -0
  132. package/dist/commonjs/static-helpers/serialization/check-prop-undefined.d.ts +8 -0
  133. package/dist/commonjs/{pagingHelper.js → static-helpers/serialization/check-prop-undefined.js} +12 -20
  134. package/dist/commonjs/static-helpers/serialization/check-prop-undefined.js.map +7 -0
  135. package/dist/commonjs/static-helpers/simplePollerHelpers.d.ts +73 -0
  136. package/dist/commonjs/static-helpers/simplePollerHelpers.js +67 -0
  137. package/dist/commonjs/static-helpers/simplePollerHelpers.js.map +7 -0
  138. package/dist/commonjs/static-helpers/urlTemplate.d.ts +5 -0
  139. package/dist/commonjs/static-helpers/urlTemplate.js +197 -0
  140. package/dist/commonjs/static-helpers/urlTemplate.js.map +7 -0
  141. package/dist/commonjs/tsdoc-metadata.json +1 -1
  142. package/dist/esm/api/fileSystems/index.d.ts +3 -0
  143. package/dist/esm/api/fileSystems/index.js +4 -0
  144. package/dist/esm/api/fileSystems/index.js.map +1 -0
  145. package/dist/esm/api/fileSystems/operations.d.ts +31 -0
  146. package/dist/esm/api/fileSystems/operations.js +194 -0
  147. package/dist/esm/api/fileSystems/operations.js.map +1 -0
  148. package/dist/esm/api/fileSystems/options.d.ts +24 -0
  149. package/dist/esm/api/fileSystems/options.js +4 -0
  150. package/dist/esm/api/fileSystems/options.js.map +1 -0
  151. package/dist/esm/api/index.d.ts +3 -0
  152. package/dist/esm/api/index.js +4 -0
  153. package/dist/esm/api/index.js.map +1 -0
  154. package/dist/esm/api/operations/index.d.ts +3 -0
  155. package/dist/esm/api/operations/index.js +4 -0
  156. package/dist/esm/api/operations/index.js.map +1 -0
  157. package/dist/esm/api/operations/operations.d.ts +10 -0
  158. package/dist/esm/api/operations/operations.js +33 -0
  159. package/dist/esm/api/operations/operations.js.map +1 -0
  160. package/dist/esm/api/operations/options.d.ts +5 -0
  161. package/dist/esm/api/operations/options.js +4 -0
  162. package/dist/esm/api/operations/options.js.map +1 -0
  163. package/dist/esm/api/qumuloStorageContext.d.ts +20 -0
  164. package/dist/esm/api/qumuloStorageContext.js +25 -0
  165. package/dist/esm/api/qumuloStorageContext.js.map +1 -0
  166. package/dist/esm/classic/fileSystems/index.d.ts +31 -0
  167. package/dist/esm/classic/fileSystems/index.js +36 -0
  168. package/dist/esm/classic/fileSystems/index.js.map +1 -0
  169. package/dist/esm/classic/index.d.ts +3 -0
  170. package/dist/esm/classic/index.js +4 -0
  171. package/dist/esm/classic/index.js.map +1 -0
  172. package/dist/esm/classic/operations/index.d.ts +11 -0
  173. package/dist/esm/classic/operations/index.js +14 -0
  174. package/dist/esm/classic/operations/index.js.map +1 -0
  175. package/dist/esm/index.d.ts +16 -3
  176. package/dist/esm/index.js +9 -8
  177. package/dist/esm/index.js.map +1 -7
  178. package/dist/esm/logger.d.ts +2 -0
  179. package/dist/esm/logger.js +5 -0
  180. package/dist/esm/logger.js.map +1 -0
  181. package/dist/esm/models/index.d.ts +2 -478
  182. package/dist/esm/models/index.js +4 -50
  183. package/dist/esm/models/index.js.map +1 -7
  184. package/dist/esm/models/models.d.ts +392 -0
  185. package/dist/esm/models/models.js +413 -0
  186. package/dist/esm/models/models.js.map +1 -0
  187. package/dist/esm/qumuloStorage.d.ts +15 -19
  188. package/dist/esm/qumuloStorage.js +26 -94
  189. package/dist/esm/qumuloStorage.js.map +1 -7
  190. package/dist/esm/restorePollerHelpers.d.ts +21 -0
  191. package/dist/esm/restorePollerHelpers.js +95 -0
  192. package/dist/esm/restorePollerHelpers.js.map +1 -0
  193. package/dist/esm/static-helpers/cloudSettingHelpers.d.ts +22 -0
  194. package/dist/esm/static-helpers/cloudSettingHelpers.js +38 -0
  195. package/dist/esm/static-helpers/cloudSettingHelpers.js.map +1 -0
  196. package/dist/esm/static-helpers/pagingHelpers.d.ts +74 -0
  197. package/dist/esm/static-helpers/pagingHelpers.js +143 -0
  198. package/dist/esm/static-helpers/pagingHelpers.js.map +1 -0
  199. package/dist/esm/static-helpers/pollingHelpers.d.ts +34 -0
  200. package/dist/esm/static-helpers/pollingHelpers.js +95 -0
  201. package/dist/esm/static-helpers/pollingHelpers.js.map +1 -0
  202. package/dist/esm/static-helpers/serialization/check-prop-undefined.d.ts +8 -0
  203. package/dist/esm/static-helpers/serialization/check-prop-undefined.js +17 -0
  204. package/dist/esm/static-helpers/serialization/check-prop-undefined.js.map +1 -0
  205. package/dist/esm/static-helpers/simplePollerHelpers.d.ts +73 -0
  206. package/dist/esm/static-helpers/simplePollerHelpers.js +44 -0
  207. package/dist/esm/static-helpers/simplePollerHelpers.js.map +1 -0
  208. package/dist/esm/static-helpers/urlTemplate.d.ts +5 -0
  209. package/dist/esm/static-helpers/urlTemplate.js +200 -0
  210. package/dist/esm/static-helpers/urlTemplate.js.map +1 -0
  211. package/package.json +147 -81
  212. package/CHANGELOG.md +0 -40
  213. package/dist/browser/index.d.ts.map +0 -1
  214. package/dist/browser/lroImpl.d.ts +0 -11
  215. package/dist/browser/lroImpl.d.ts.map +0 -1
  216. package/dist/browser/lroImpl.js +0 -18
  217. package/dist/browser/lroImpl.js.map +0 -1
  218. package/dist/browser/models/index.d.ts.map +0 -1
  219. package/dist/browser/models/mappers.d.ts +0 -21
  220. package/dist/browser/models/mappers.d.ts.map +0 -1
  221. package/dist/browser/models/mappers.js +0 -641
  222. package/dist/browser/models/mappers.js.map +0 -1
  223. package/dist/browser/models/parameters.d.ts +0 -12
  224. package/dist/browser/models/parameters.d.ts.map +0 -1
  225. package/dist/browser/models/parameters.js +0 -112
  226. package/dist/browser/models/parameters.js.map +0 -1
  227. package/dist/browser/operations/fileSystems.d.ts +0 -99
  228. package/dist/browser/operations/fileSystems.d.ts.map +0 -1
  229. package/dist/browser/operations/fileSystems.js +0 -465
  230. package/dist/browser/operations/fileSystems.js.map +0 -1
  231. package/dist/browser/operations/index.d.ts +0 -3
  232. package/dist/browser/operations/index.d.ts.map +0 -1
  233. package/dist/browser/operations/index.js +0 -10
  234. package/dist/browser/operations/index.js.map +0 -1
  235. package/dist/browser/operations/operations.d.ts +0 -32
  236. package/dist/browser/operations/operations.d.ts.map +0 -1
  237. package/dist/browser/operations/operations.js +0 -116
  238. package/dist/browser/operations/operations.js.map +0 -1
  239. package/dist/browser/operationsInterfaces/fileSystems.d.ts +0 -63
  240. package/dist/browser/operationsInterfaces/fileSystems.d.ts.map +0 -1
  241. package/dist/browser/operationsInterfaces/fileSystems.js +0 -9
  242. package/dist/browser/operationsInterfaces/fileSystems.js.map +0 -1
  243. package/dist/browser/operationsInterfaces/index.d.ts +0 -3
  244. package/dist/browser/operationsInterfaces/index.d.ts.map +0 -1
  245. package/dist/browser/operationsInterfaces/index.js +0 -10
  246. package/dist/browser/operationsInterfaces/index.js.map +0 -1
  247. package/dist/browser/operationsInterfaces/operations.d.ts +0 -11
  248. package/dist/browser/operationsInterfaces/operations.d.ts.map +0 -1
  249. package/dist/browser/operationsInterfaces/operations.js +0 -9
  250. package/dist/browser/operationsInterfaces/operations.js.map +0 -1
  251. package/dist/browser/pagingHelper.d.ts +0 -13
  252. package/dist/browser/pagingHelper.d.ts.map +0 -1
  253. package/dist/browser/pagingHelper.js +0 -30
  254. package/dist/browser/pagingHelper.js.map +0 -1
  255. package/dist/browser/qumuloStorage.d.ts.map +0 -1
  256. package/dist/commonjs/index.d.ts.map +0 -1
  257. package/dist/commonjs/lroImpl.d.ts +0 -11
  258. package/dist/commonjs/lroImpl.d.ts.map +0 -1
  259. package/dist/commonjs/lroImpl.js.map +0 -7
  260. package/dist/commonjs/models/index.d.ts.map +0 -1
  261. package/dist/commonjs/models/mappers.d.ts +0 -21
  262. package/dist/commonjs/models/mappers.d.ts.map +0 -1
  263. package/dist/commonjs/models/mappers.js +0 -695
  264. package/dist/commonjs/models/mappers.js.map +0 -7
  265. package/dist/commonjs/models/parameters.d.ts +0 -12
  266. package/dist/commonjs/models/parameters.d.ts.map +0 -1
  267. package/dist/commonjs/models/parameters.js +0 -148
  268. package/dist/commonjs/models/parameters.js.map +0 -7
  269. package/dist/commonjs/operations/fileSystems.d.ts +0 -99
  270. package/dist/commonjs/operations/fileSystems.d.ts.map +0 -1
  271. package/dist/commonjs/operations/fileSystems.js +0 -532
  272. package/dist/commonjs/operations/fileSystems.js.map +0 -7
  273. package/dist/commonjs/operations/index.d.ts +0 -3
  274. package/dist/commonjs/operations/index.d.ts.map +0 -1
  275. package/dist/commonjs/operations/index.js.map +0 -7
  276. package/dist/commonjs/operations/operations.d.ts +0 -32
  277. package/dist/commonjs/operations/operations.d.ts.map +0 -1
  278. package/dist/commonjs/operations/operations.js +0 -148
  279. package/dist/commonjs/operations/operations.js.map +0 -7
  280. package/dist/commonjs/operationsInterfaces/fileSystems.d.ts +0 -63
  281. package/dist/commonjs/operationsInterfaces/fileSystems.d.ts.map +0 -1
  282. package/dist/commonjs/operationsInterfaces/fileSystems.js.map +0 -7
  283. package/dist/commonjs/operationsInterfaces/index.d.ts +0 -3
  284. package/dist/commonjs/operationsInterfaces/index.d.ts.map +0 -1
  285. package/dist/commonjs/operationsInterfaces/index.js.map +0 -7
  286. package/dist/commonjs/operationsInterfaces/operations.d.ts +0 -11
  287. package/dist/commonjs/operationsInterfaces/operations.d.ts.map +0 -1
  288. package/dist/commonjs/operationsInterfaces/operations.js.map +0 -7
  289. package/dist/commonjs/pagingHelper.d.ts +0 -13
  290. package/dist/commonjs/pagingHelper.d.ts.map +0 -1
  291. package/dist/commonjs/pagingHelper.js.map +0 -7
  292. package/dist/commonjs/qumuloStorage.d.ts.map +0 -1
  293. package/dist/esm/index.d.ts.map +0 -1
  294. package/dist/esm/lroImpl.d.ts +0 -11
  295. package/dist/esm/lroImpl.d.ts.map +0 -1
  296. package/dist/esm/lroImpl.js +0 -20
  297. package/dist/esm/lroImpl.js.map +0 -7
  298. package/dist/esm/models/index.d.ts.map +0 -1
  299. package/dist/esm/models/mappers.d.ts +0 -21
  300. package/dist/esm/models/mappers.d.ts.map +0 -1
  301. package/dist/esm/models/mappers.js +0 -654
  302. package/dist/esm/models/mappers.js.map +0 -7
  303. package/dist/esm/models/parameters.d.ts +0 -12
  304. package/dist/esm/models/parameters.d.ts.map +0 -1
  305. package/dist/esm/models/parameters.js +0 -119
  306. package/dist/esm/models/parameters.js.map +0 -7
  307. package/dist/esm/operations/fileSystems.d.ts +0 -99
  308. package/dist/esm/operations/fileSystems.d.ts.map +0 -1
  309. package/dist/esm/operations/fileSystems.js +0 -501
  310. package/dist/esm/operations/fileSystems.js.map +0 -7
  311. package/dist/esm/operations/index.d.ts +0 -3
  312. package/dist/esm/operations/index.d.ts.map +0 -1
  313. package/dist/esm/operations/index.js +0 -2
  314. package/dist/esm/operations/index.js.map +0 -7
  315. package/dist/esm/operations/operations.d.ts +0 -32
  316. package/dist/esm/operations/operations.d.ts.map +0 -1
  317. package/dist/esm/operations/operations.js +0 -115
  318. package/dist/esm/operations/operations.js.map +0 -7
  319. package/dist/esm/operationsInterfaces/fileSystems.d.ts +0 -63
  320. package/dist/esm/operationsInterfaces/fileSystems.d.ts.map +0 -1
  321. package/dist/esm/operationsInterfaces/fileSystems.js +0 -0
  322. package/dist/esm/operationsInterfaces/fileSystems.js.map +0 -7
  323. package/dist/esm/operationsInterfaces/index.d.ts +0 -3
  324. package/dist/esm/operationsInterfaces/index.d.ts.map +0 -1
  325. package/dist/esm/operationsInterfaces/index.js +0 -2
  326. package/dist/esm/operationsInterfaces/index.js.map +0 -7
  327. package/dist/esm/operationsInterfaces/operations.d.ts +0 -11
  328. package/dist/esm/operationsInterfaces/operations.d.ts.map +0 -1
  329. package/dist/esm/operationsInterfaces/operations.js +0 -0
  330. package/dist/esm/operationsInterfaces/operations.js.map +0 -7
  331. package/dist/esm/pagingHelper.d.ts +0 -13
  332. package/dist/esm/pagingHelper.d.ts.map +0 -1
  333. package/dist/esm/pagingHelper.js +0 -19
  334. package/dist/esm/pagingHelper.js.map +0 -7
  335. package/dist/esm/qumuloStorage.d.ts.map +0 -1
  336. package/dist/react-native/index.d.ts +0 -5
  337. package/dist/react-native/index.d.ts.map +0 -1
  338. package/dist/react-native/index.js +0 -13
  339. package/dist/react-native/index.js.map +0 -1
  340. package/dist/react-native/lroImpl.d.ts +0 -11
  341. package/dist/react-native/lroImpl.d.ts.map +0 -1
  342. package/dist/react-native/lroImpl.js +0 -18
  343. package/dist/react-native/lroImpl.js.map +0 -1
  344. package/dist/react-native/models/index.d.ts +0 -479
  345. package/dist/react-native/models/index.d.ts.map +0 -1
  346. package/dist/react-native/models/index.js +0 -80
  347. package/dist/react-native/models/index.js.map +0 -1
  348. package/dist/react-native/models/mappers.d.ts +0 -21
  349. package/dist/react-native/models/mappers.d.ts.map +0 -1
  350. package/dist/react-native/models/mappers.js +0 -641
  351. package/dist/react-native/models/mappers.js.map +0 -1
  352. package/dist/react-native/models/parameters.d.ts +0 -12
  353. package/dist/react-native/models/parameters.d.ts.map +0 -1
  354. package/dist/react-native/models/parameters.js +0 -112
  355. package/dist/react-native/models/parameters.js.map +0 -1
  356. package/dist/react-native/operations/fileSystems.d.ts +0 -99
  357. package/dist/react-native/operations/fileSystems.d.ts.map +0 -1
  358. package/dist/react-native/operations/fileSystems.js +0 -465
  359. package/dist/react-native/operations/fileSystems.js.map +0 -1
  360. package/dist/react-native/operations/index.d.ts +0 -3
  361. package/dist/react-native/operations/index.d.ts.map +0 -1
  362. package/dist/react-native/operations/index.js +0 -10
  363. package/dist/react-native/operations/index.js.map +0 -1
  364. package/dist/react-native/operations/operations.d.ts +0 -32
  365. package/dist/react-native/operations/operations.d.ts.map +0 -1
  366. package/dist/react-native/operations/operations.js +0 -116
  367. package/dist/react-native/operations/operations.js.map +0 -1
  368. package/dist/react-native/operationsInterfaces/fileSystems.d.ts +0 -63
  369. package/dist/react-native/operationsInterfaces/fileSystems.d.ts.map +0 -1
  370. package/dist/react-native/operationsInterfaces/fileSystems.js +0 -9
  371. package/dist/react-native/operationsInterfaces/fileSystems.js.map +0 -1
  372. package/dist/react-native/operationsInterfaces/index.d.ts +0 -3
  373. package/dist/react-native/operationsInterfaces/index.d.ts.map +0 -1
  374. package/dist/react-native/operationsInterfaces/index.js +0 -10
  375. package/dist/react-native/operationsInterfaces/index.js.map +0 -1
  376. package/dist/react-native/operationsInterfaces/operations.d.ts +0 -11
  377. package/dist/react-native/operationsInterfaces/operations.d.ts.map +0 -1
  378. package/dist/react-native/operationsInterfaces/operations.js +0 -9
  379. package/dist/react-native/operationsInterfaces/operations.js.map +0 -1
  380. package/dist/react-native/package.json +0 -3
  381. package/dist/react-native/pagingHelper.d.ts +0 -13
  382. package/dist/react-native/pagingHelper.d.ts.map +0 -1
  383. package/dist/react-native/pagingHelper.js +0 -30
  384. package/dist/react-native/pagingHelper.js.map +0 -1
  385. package/dist/react-native/qumuloStorage.d.ts +0 -21
  386. package/dist/react-native/qumuloStorage.d.ts.map +0 -1
  387. package/dist/react-native/qumuloStorage.js +0 -108
  388. package/dist/react-native/qumuloStorage.js.map +0 -1
  389. package/review/arm-qumulo-node.api.md +0 -346
@@ -1,465 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
- */
8
- import { setContinuationToken } from "../pagingHelper.js";
9
- import * as coreClient from "@azure/core-client";
10
- import * as Mappers from "../models/mappers.js";
11
- import * as Parameters from "../models/parameters.js";
12
- import { createHttpPoller, } from "@azure/core-lro";
13
- import { createLroSpec } from "../lroImpl.js";
14
- /// <reference lib="esnext.asynciterable" />
15
- /** Class containing FileSystems operations. */
16
- export class FileSystemsImpl {
17
- client;
18
- /**
19
- * Initialize a new instance of the class FileSystems class.
20
- * @param client Reference to the service client
21
- */
22
- constructor(client) {
23
- this.client = client;
24
- }
25
- /**
26
- * List FileSystemResource resources by subscription ID
27
- * @param options The options parameters.
28
- */
29
- listBySubscription(options) {
30
- const iter = this.listBySubscriptionPagingAll(options);
31
- return {
32
- next() {
33
- return iter.next();
34
- },
35
- [Symbol.asyncIterator]() {
36
- return this;
37
- },
38
- byPage: (settings) => {
39
- if (settings?.maxPageSize) {
40
- throw new Error("maxPageSize is not supported by this operation.");
41
- }
42
- return this.listBySubscriptionPagingPage(options, settings);
43
- },
44
- };
45
- }
46
- async *listBySubscriptionPagingPage(options, settings) {
47
- let result;
48
- let continuationToken = settings?.continuationToken;
49
- if (!continuationToken) {
50
- result = await this._listBySubscription(options);
51
- let page = result.value || [];
52
- continuationToken = result.nextLink;
53
- setContinuationToken(page, continuationToken);
54
- yield page;
55
- }
56
- while (continuationToken) {
57
- result = await this._listBySubscriptionNext(continuationToken, options);
58
- continuationToken = result.nextLink;
59
- let page = result.value || [];
60
- setContinuationToken(page, continuationToken);
61
- yield page;
62
- }
63
- }
64
- async *listBySubscriptionPagingAll(options) {
65
- for await (const page of this.listBySubscriptionPagingPage(options)) {
66
- yield* page;
67
- }
68
- }
69
- /**
70
- * List FileSystemResource resources by resource group
71
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
72
- * @param options The options parameters.
73
- */
74
- listByResourceGroup(resourceGroupName, options) {
75
- const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);
76
- return {
77
- next() {
78
- return iter.next();
79
- },
80
- [Symbol.asyncIterator]() {
81
- return this;
82
- },
83
- byPage: (settings) => {
84
- if (settings?.maxPageSize) {
85
- throw new Error("maxPageSize is not supported by this operation.");
86
- }
87
- return this.listByResourceGroupPagingPage(resourceGroupName, options, settings);
88
- },
89
- };
90
- }
91
- async *listByResourceGroupPagingPage(resourceGroupName, options, settings) {
92
- let result;
93
- let continuationToken = settings?.continuationToken;
94
- if (!continuationToken) {
95
- result = await this._listByResourceGroup(resourceGroupName, options);
96
- let page = result.value || [];
97
- continuationToken = result.nextLink;
98
- setContinuationToken(page, continuationToken);
99
- yield page;
100
- }
101
- while (continuationToken) {
102
- result = await this._listByResourceGroupNext(resourceGroupName, continuationToken, options);
103
- continuationToken = result.nextLink;
104
- let page = result.value || [];
105
- setContinuationToken(page, continuationToken);
106
- yield page;
107
- }
108
- }
109
- async *listByResourceGroupPagingAll(resourceGroupName, options) {
110
- for await (const page of this.listByResourceGroupPagingPage(resourceGroupName, options)) {
111
- yield* page;
112
- }
113
- }
114
- /**
115
- * List FileSystemResource resources by subscription ID
116
- * @param options The options parameters.
117
- */
118
- _listBySubscription(options) {
119
- return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec);
120
- }
121
- /**
122
- * List FileSystemResource resources by resource group
123
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
124
- * @param options The options parameters.
125
- */
126
- _listByResourceGroup(resourceGroupName, options) {
127
- return this.client.sendOperationRequest({ resourceGroupName, options }, listByResourceGroupOperationSpec);
128
- }
129
- /**
130
- * Get a FileSystemResource
131
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
132
- * @param fileSystemName Name of the File System resource
133
- * @param options The options parameters.
134
- */
135
- get(resourceGroupName, fileSystemName, options) {
136
- return this.client.sendOperationRequest({ resourceGroupName, fileSystemName, options }, getOperationSpec);
137
- }
138
- /**
139
- * Create a FileSystemResource
140
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
141
- * @param fileSystemName Name of the File System resource
142
- * @param resource Resource create parameters.
143
- * @param options The options parameters.
144
- */
145
- async beginCreateOrUpdate(resourceGroupName, fileSystemName, resource, options) {
146
- const directSendOperation = async (args, spec) => {
147
- return this.client.sendOperationRequest(args, spec);
148
- };
149
- const sendOperationFn = async (args, spec) => {
150
- let currentRawResponse = undefined;
151
- const providedCallback = args.options?.onResponse;
152
- const callback = (rawResponse, flatResponse) => {
153
- currentRawResponse = rawResponse;
154
- providedCallback?.(rawResponse, flatResponse);
155
- };
156
- const updatedArgs = {
157
- ...args,
158
- options: {
159
- ...args.options,
160
- onResponse: callback,
161
- },
162
- };
163
- const flatResponse = await directSendOperation(updatedArgs, spec);
164
- return {
165
- flatResponse,
166
- rawResponse: {
167
- statusCode: currentRawResponse.status,
168
- body: currentRawResponse.parsedBody,
169
- headers: currentRawResponse.headers.toJSON(),
170
- },
171
- };
172
- };
173
- const lro = createLroSpec({
174
- sendOperationFn,
175
- args: { resourceGroupName, fileSystemName, resource, options },
176
- spec: createOrUpdateOperationSpec,
177
- });
178
- const poller = await createHttpPoller(lro, {
179
- restoreFrom: options?.resumeFrom,
180
- intervalInMs: options?.updateIntervalInMs,
181
- resourceLocationConfig: "azure-async-operation",
182
- });
183
- await poller.poll();
184
- return poller;
185
- }
186
- /**
187
- * Create a FileSystemResource
188
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
189
- * @param fileSystemName Name of the File System resource
190
- * @param resource Resource create parameters.
191
- * @param options The options parameters.
192
- */
193
- async beginCreateOrUpdateAndWait(resourceGroupName, fileSystemName, resource, options) {
194
- const poller = await this.beginCreateOrUpdate(resourceGroupName, fileSystemName, resource, options);
195
- return poller.pollUntilDone();
196
- }
197
- /**
198
- * Update a FileSystemResource
199
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
200
- * @param fileSystemName Name of the File System resource
201
- * @param properties The resource properties to be updated.
202
- * @param options The options parameters.
203
- */
204
- update(resourceGroupName, fileSystemName, properties, options) {
205
- return this.client.sendOperationRequest({ resourceGroupName, fileSystemName, properties, options }, updateOperationSpec);
206
- }
207
- /**
208
- * Delete a FileSystemResource
209
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
210
- * @param fileSystemName Name of the File System resource
211
- * @param options The options parameters.
212
- */
213
- async beginDelete(resourceGroupName, fileSystemName, options) {
214
- const directSendOperation = async (args, spec) => {
215
- return this.client.sendOperationRequest(args, spec);
216
- };
217
- const sendOperationFn = async (args, spec) => {
218
- let currentRawResponse = undefined;
219
- const providedCallback = args.options?.onResponse;
220
- const callback = (rawResponse, flatResponse) => {
221
- currentRawResponse = rawResponse;
222
- providedCallback?.(rawResponse, flatResponse);
223
- };
224
- const updatedArgs = {
225
- ...args,
226
- options: {
227
- ...args.options,
228
- onResponse: callback,
229
- },
230
- };
231
- const flatResponse = await directSendOperation(updatedArgs, spec);
232
- return {
233
- flatResponse,
234
- rawResponse: {
235
- statusCode: currentRawResponse.status,
236
- body: currentRawResponse.parsedBody,
237
- headers: currentRawResponse.headers.toJSON(),
238
- },
239
- };
240
- };
241
- const lro = createLroSpec({
242
- sendOperationFn,
243
- args: { resourceGroupName, fileSystemName, options },
244
- spec: deleteOperationSpec,
245
- });
246
- const poller = await createHttpPoller(lro, {
247
- restoreFrom: options?.resumeFrom,
248
- intervalInMs: options?.updateIntervalInMs,
249
- resourceLocationConfig: "location",
250
- });
251
- await poller.poll();
252
- return poller;
253
- }
254
- /**
255
- * Delete a FileSystemResource
256
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
257
- * @param fileSystemName Name of the File System resource
258
- * @param options The options parameters.
259
- */
260
- async beginDeleteAndWait(resourceGroupName, fileSystemName, options) {
261
- const poller = await this.beginDelete(resourceGroupName, fileSystemName, options);
262
- return poller.pollUntilDone();
263
- }
264
- /**
265
- * ListBySubscriptionNext
266
- * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.
267
- * @param options The options parameters.
268
- */
269
- _listBySubscriptionNext(nextLink, options) {
270
- return this.client.sendOperationRequest({ nextLink, options }, listBySubscriptionNextOperationSpec);
271
- }
272
- /**
273
- * ListByResourceGroupNext
274
- * @param resourceGroupName The name of the resource group. The name is case insensitive.
275
- * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.
276
- * @param options The options parameters.
277
- */
278
- _listByResourceGroupNext(resourceGroupName, nextLink, options) {
279
- return this.client.sendOperationRequest({ resourceGroupName, nextLink, options }, listByResourceGroupNextOperationSpec);
280
- }
281
- }
282
- // Operation Specifications
283
- const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
284
- const listBySubscriptionOperationSpec = {
285
- path: "/subscriptions/{subscriptionId}/providers/Qumulo.Storage/fileSystems",
286
- httpMethod: "GET",
287
- responses: {
288
- 200: {
289
- bodyMapper: Mappers.FileSystemResourceListResult,
290
- },
291
- default: {
292
- bodyMapper: Mappers.ErrorResponse,
293
- },
294
- },
295
- queryParameters: [Parameters.apiVersion],
296
- urlParameters: [Parameters.$host, Parameters.subscriptionId],
297
- headerParameters: [Parameters.accept],
298
- serializer,
299
- };
300
- const listByResourceGroupOperationSpec = {
301
- path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems",
302
- httpMethod: "GET",
303
- responses: {
304
- 200: {
305
- bodyMapper: Mappers.FileSystemResourceListResult,
306
- },
307
- default: {
308
- bodyMapper: Mappers.ErrorResponse,
309
- },
310
- },
311
- queryParameters: [Parameters.apiVersion],
312
- urlParameters: [
313
- Parameters.$host,
314
- Parameters.subscriptionId,
315
- Parameters.resourceGroupName,
316
- ],
317
- headerParameters: [Parameters.accept],
318
- serializer,
319
- };
320
- const getOperationSpec = {
321
- path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}",
322
- httpMethod: "GET",
323
- responses: {
324
- 200: {
325
- bodyMapper: Mappers.FileSystemResource,
326
- },
327
- default: {
328
- bodyMapper: Mappers.ErrorResponse,
329
- },
330
- },
331
- queryParameters: [Parameters.apiVersion],
332
- urlParameters: [
333
- Parameters.$host,
334
- Parameters.subscriptionId,
335
- Parameters.resourceGroupName,
336
- Parameters.fileSystemName,
337
- ],
338
- headerParameters: [Parameters.accept],
339
- serializer,
340
- };
341
- const createOrUpdateOperationSpec = {
342
- path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}",
343
- httpMethod: "PUT",
344
- responses: {
345
- 200: {
346
- bodyMapper: Mappers.FileSystemResource,
347
- },
348
- 201: {
349
- bodyMapper: Mappers.FileSystemResource,
350
- },
351
- 202: {
352
- bodyMapper: Mappers.FileSystemResource,
353
- },
354
- 204: {
355
- bodyMapper: Mappers.FileSystemResource,
356
- },
357
- default: {
358
- bodyMapper: Mappers.ErrorResponse,
359
- },
360
- },
361
- requestBody: Parameters.resource,
362
- queryParameters: [Parameters.apiVersion],
363
- urlParameters: [
364
- Parameters.$host,
365
- Parameters.subscriptionId,
366
- Parameters.resourceGroupName,
367
- Parameters.fileSystemName,
368
- ],
369
- headerParameters: [Parameters.accept, Parameters.contentType],
370
- mediaType: "json",
371
- serializer,
372
- };
373
- const updateOperationSpec = {
374
- path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}",
375
- httpMethod: "PATCH",
376
- responses: {
377
- 200: {
378
- bodyMapper: Mappers.FileSystemResource,
379
- },
380
- default: {
381
- bodyMapper: Mappers.ErrorResponse,
382
- },
383
- },
384
- requestBody: Parameters.properties,
385
- queryParameters: [Parameters.apiVersion],
386
- urlParameters: [
387
- Parameters.$host,
388
- Parameters.subscriptionId,
389
- Parameters.resourceGroupName,
390
- Parameters.fileSystemName,
391
- ],
392
- headerParameters: [Parameters.accept, Parameters.contentType],
393
- mediaType: "json",
394
- serializer,
395
- };
396
- const deleteOperationSpec = {
397
- path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}",
398
- httpMethod: "DELETE",
399
- responses: {
400
- 200: {
401
- headersMapper: Mappers.FileSystemsDeleteHeaders,
402
- },
403
- 201: {
404
- headersMapper: Mappers.FileSystemsDeleteHeaders,
405
- },
406
- 202: {
407
- headersMapper: Mappers.FileSystemsDeleteHeaders,
408
- },
409
- 204: {
410
- headersMapper: Mappers.FileSystemsDeleteHeaders,
411
- },
412
- default: {
413
- bodyMapper: Mappers.ErrorResponse,
414
- },
415
- },
416
- queryParameters: [Parameters.apiVersion],
417
- urlParameters: [
418
- Parameters.$host,
419
- Parameters.subscriptionId,
420
- Parameters.resourceGroupName,
421
- Parameters.fileSystemName,
422
- ],
423
- headerParameters: [Parameters.accept],
424
- serializer,
425
- };
426
- const listBySubscriptionNextOperationSpec = {
427
- path: "{nextLink}",
428
- httpMethod: "GET",
429
- responses: {
430
- 200: {
431
- bodyMapper: Mappers.FileSystemResourceListResult,
432
- },
433
- default: {
434
- bodyMapper: Mappers.ErrorResponse,
435
- },
436
- },
437
- urlParameters: [
438
- Parameters.$host,
439
- Parameters.nextLink,
440
- Parameters.subscriptionId,
441
- ],
442
- headerParameters: [Parameters.accept],
443
- serializer,
444
- };
445
- const listByResourceGroupNextOperationSpec = {
446
- path: "{nextLink}",
447
- httpMethod: "GET",
448
- responses: {
449
- 200: {
450
- bodyMapper: Mappers.FileSystemResourceListResult,
451
- },
452
- default: {
453
- bodyMapper: Mappers.ErrorResponse,
454
- },
455
- },
456
- urlParameters: [
457
- Parameters.$host,
458
- Parameters.nextLink,
459
- Parameters.subscriptionId,
460
- Parameters.resourceGroupName,
461
- ],
462
- headerParameters: [Parameters.accept],
463
- serializer,
464
- };
465
- //# sourceMappingURL=fileSystems.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fileSystems.js","sourceRoot":"","sources":["../../../src/operations/fileSystems.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAE1D,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,OAAO,MAAM,sBAAsB,CAAC;AAChD,OAAO,KAAK,UAAU,MAAM,yBAAyB,CAAC;AAEtD,OAAO,EAGL,gBAAgB,GACjB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAsB9C,4CAA4C;AAC5C,+CAA+C;AAC/C,MAAM,OAAO,eAAe;IACT,MAAM,CAAgB;IAEvC;;;OAGG;IACH,YAAY,MAAqB;QAC/B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAED;;;OAGG;IACI,kBAAkB,CACvB,OAAqD;QAErD,MAAM,IAAI,GAAG,IAAI,CAAC,2BAA2B,CAAC,OAAO,CAAC,CAAC;QACvD,OAAO;YACL,IAAI;gBACF,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;YACrB,CAAC;YACD,CAAC,MAAM,CAAC,aAAa,CAAC;gBACpB,OAAO,IAAI,CAAC;YACd,CAAC;YACD,MAAM,EAAE,CAAC,QAAuB,EAAE,EAAE;gBAClC,IAAI,QAAQ,EAAE,WAAW,EAAE,CAAC;oBAC1B,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;gBACrE,CAAC;gBACD,OAAO,IAAI,CAAC,4BAA4B,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;YAC9D,CAAC;SACF,CAAC;IACJ,CAAC;IAEO,KAAK,CAAC,CAAC,4BAA4B,CACzC,OAAqD,EACrD,QAAuB;QAEvB,IAAI,MAA6C,CAAC;QAClD,IAAI,iBAAiB,GAAG,QAAQ,EAAE,iBAAiB,CAAC;QACpD,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACvB,MAAM,GAAG,MAAM,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,CAAC;YACjD,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;YAC9B,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;YACpC,oBAAoB,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;YAC9C,MAAM,IAAI,CAAC;QACb,CAAC;QACD,OAAO,iBAAiB,EAAE,CAAC;YACzB,MAAM,GAAG,MAAM,IAAI,CAAC,uBAAuB,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;YACxE,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;YACpC,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;YAC9B,oBAAoB,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;YAC9C,MAAM,IAAI,CAAC;QACb,CAAC;IACH,CAAC;IAEO,KAAK,CAAC,CAAC,2BAA2B,CACxC,OAAqD;QAErD,IAAI,KAAK,EAAE,MAAM,IAAI,IAAI,IAAI,CAAC,4BAA4B,CAAC,OAAO,CAAC,EAAE,CAAC;YACpE,KAAK,CAAC,CAAC,IAAI,CAAC;QACd,CAAC;IACH,CAAC;IAED;;;;OAIG;IACI,mBAAmB,CACxB,iBAAyB,EACzB,OAAsD;QAEtD,MAAM,IAAI,GAAG,IAAI,CAAC,4BAA4B,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;QAC3E,OAAO;YACL,IAAI;gBACF,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;YACrB,CAAC;YACD,CAAC,MAAM,CAAC,aAAa,CAAC;gBACpB,OAAO,IAAI,CAAC;YACd,CAAC;YACD,MAAM,EAAE,CAAC,QAAuB,EAAE,EAAE;gBAClC,IAAI,QAAQ,EAAE,WAAW,EAAE,CAAC;oBAC1B,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;gBACrE,CAAC;gBACD,OAAO,IAAI,CAAC,6BAA6B,CACvC,iBAAiB,EACjB,OAAO,EACP,QAAQ,CACT,CAAC;YACJ,CAAC;SACF,CAAC;IACJ,CAAC;IAEO,KAAK,CAAC,CAAC,6BAA6B,CAC1C,iBAAyB,EACzB,OAAsD,EACtD,QAAuB;QAEvB,IAAI,MAA8C,CAAC;QACnD,IAAI,iBAAiB,GAAG,QAAQ,EAAE,iBAAiB,CAAC;QACpD,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACvB,MAAM,GAAG,MAAM,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;YACrE,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;YAC9B,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;YACpC,oBAAoB,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;YAC9C,MAAM,IAAI,CAAC;QACb,CAAC;QACD,OAAO,iBAAiB,EAAE,CAAC;YACzB,MAAM,GAAG,MAAM,IAAI,CAAC,wBAAwB,CAC1C,iBAAiB,EACjB,iBAAiB,EACjB,OAAO,CACR,CAAC;YACF,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;YACpC,IAAI,IAAI,GAAG,MAAM,CAAC,KAAK,IAAI,EAAE,CAAC;YAC9B,oBAAoB,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;YAC9C,MAAM,IAAI,CAAC;QACb,CAAC;IACH,CAAC;IAEO,KAAK,CAAC,CAAC,4BAA4B,CACzC,iBAAyB,EACzB,OAAsD;QAEtD,IAAI,KAAK,EAAE,MAAM,IAAI,IAAI,IAAI,CAAC,6BAA6B,CACzD,iBAAiB,EACjB,OAAO,CACR,EAAE,CAAC;YACF,KAAK,CAAC,CAAC,IAAI,CAAC;QACd,CAAC;IACH,CAAC;IAED;;;OAGG;IACK,mBAAmB,CACzB,OAAqD;QAErD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,OAAO,EAAE,EACX,+BAA+B,CAChC,CAAC;IACJ,CAAC;IAED;;;;OAIG;IACK,oBAAoB,CAC1B,iBAAyB,EACzB,OAAsD;QAEtD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,OAAO,EAAE,EAC9B,gCAAgC,CACjC,CAAC;IACJ,CAAC;IAED;;;;;OAKG;IACH,GAAG,CACD,iBAAyB,EACzB,cAAsB,EACtB,OAAsC;QAEtC,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,cAAc,EAAE,OAAO,EAAE,EAC9C,gBAAgB,CACjB,CAAC;IACJ,CAAC;IAED;;;;;;OAMG;IACH,KAAK,CAAC,mBAAmB,CACvB,iBAAyB,EACzB,cAAsB,EACtB,QAA4B,EAC5B,OAAiD;QAOjD,MAAM,mBAAmB,GAAG,KAAK,EAC/B,IAAmC,EACnC,IAA8B,EACc,EAAE;YAC9C,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QACtD,CAAC,CAAC;QACF,MAAM,eAAe,GAAG,KAAK,EAC3B,IAAmC,EACnC,IAA8B,EAC9B,EAAE;YACF,IAAI,kBAAkB,GACpB,SAAS,CAAC;YACZ,MAAM,gBAAgB,GAAG,IAAI,CAAC,OAAO,EAAE,UAAU,CAAC;YAClD,MAAM,QAAQ,GAAmC,CAC/C,WAA6C,EAC7C,YAAqB,EACrB,EAAE;gBACF,kBAAkB,GAAG,WAAW,CAAC;gBACjC,gBAAgB,EAAE,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;YAChD,CAAC,CAAC;YACF,MAAM,WAAW,GAAG;gBAClB,GAAG,IAAI;gBACP,OAAO,EAAE;oBACP,GAAG,IAAI,CAAC,OAAO;oBACf,UAAU,EAAE,QAAQ;iBACrB;aACF,CAAC;YACF,MAAM,YAAY,GAAG,MAAM,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YAClE,OAAO;gBACL,YAAY;gBACZ,WAAW,EAAE;oBACX,UAAU,EAAE,kBAAmB,CAAC,MAAM;oBACtC,IAAI,EAAE,kBAAmB,CAAC,UAAU;oBACpC,OAAO,EAAE,kBAAmB,CAAC,OAAO,CAAC,MAAM,EAAE;iBAC9C;aACF,CAAC;QACJ,CAAC,CAAC;QAEF,MAAM,GAAG,GAAG,aAAa,CAAC;YACxB,eAAe;YACf,IAAI,EAAE,EAAE,iBAAiB,EAAE,cAAc,EAAE,QAAQ,EAAE,OAAO,EAAE;YAC9D,IAAI,EAAE,2BAA2B;SAClC,CAAC,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,gBAAgB,CAGnC,GAAG,EAAE;YACL,WAAW,EAAE,OAAO,EAAE,UAAU;YAChC,YAAY,EAAE,OAAO,EAAE,kBAAkB;YACzC,sBAAsB,EAAE,uBAAuB;SAChD,CAAC,CAAC;QACH,MAAM,MAAM,CAAC,IAAI,EAAE,CAAC;QACpB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED;;;;;;OAMG;IACH,KAAK,CAAC,0BAA0B,CAC9B,iBAAyB,EACzB,cAAsB,EACtB,QAA4B,EAC5B,OAAiD;QAEjD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,mBAAmB,CAC3C,iBAAiB,EACjB,cAAc,EACd,QAAQ,EACR,OAAO,CACR,CAAC;QACF,OAAO,MAAM,CAAC,aAAa,EAAE,CAAC;IAChC,CAAC;IAED;;;;;;OAMG;IACH,MAAM,CACJ,iBAAyB,EACzB,cAAsB,EACtB,UAAoC,EACpC,OAAyC;QAEzC,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,cAAc,EAAE,UAAU,EAAE,OAAO,EAAE,EAC1D,mBAAmB,CACpB,CAAC;IACJ,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,WAAW,CACf,iBAAyB,EACzB,cAAsB,EACtB,OAAyC;QAOzC,MAAM,mBAAmB,GAAG,KAAK,EAC/B,IAAmC,EACnC,IAA8B,EACM,EAAE;YACtC,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QACtD,CAAC,CAAC;QACF,MAAM,eAAe,GAAG,KAAK,EAC3B,IAAmC,EACnC,IAA8B,EAC9B,EAAE;YACF,IAAI,kBAAkB,GACpB,SAAS,CAAC;YACZ,MAAM,gBAAgB,GAAG,IAAI,CAAC,OAAO,EAAE,UAAU,CAAC;YAClD,MAAM,QAAQ,GAAmC,CAC/C,WAA6C,EAC7C,YAAqB,EACrB,EAAE;gBACF,kBAAkB,GAAG,WAAW,CAAC;gBACjC,gBAAgB,EAAE,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;YAChD,CAAC,CAAC;YACF,MAAM,WAAW,GAAG;gBAClB,GAAG,IAAI;gBACP,OAAO,EAAE;oBACP,GAAG,IAAI,CAAC,OAAO;oBACf,UAAU,EAAE,QAAQ;iBACrB;aACF,CAAC;YACF,MAAM,YAAY,GAAG,MAAM,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YAClE,OAAO;gBACL,YAAY;gBACZ,WAAW,EAAE;oBACX,UAAU,EAAE,kBAAmB,CAAC,MAAM;oBACtC,IAAI,EAAE,kBAAmB,CAAC,UAAU;oBACpC,OAAO,EAAE,kBAAmB,CAAC,OAAO,CAAC,MAAM,EAAE;iBAC9C;aACF,CAAC;QACJ,CAAC,CAAC;QAEF,MAAM,GAAG,GAAG,aAAa,CAAC;YACxB,eAAe;YACf,IAAI,EAAE,EAAE,iBAAiB,EAAE,cAAc,EAAE,OAAO,EAAE;YACpD,IAAI,EAAE,mBAAmB;SAC1B,CAAC,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,gBAAgB,CAGnC,GAAG,EAAE;YACL,WAAW,EAAE,OAAO,EAAE,UAAU;YAChC,YAAY,EAAE,OAAO,EAAE,kBAAkB;YACzC,sBAAsB,EAAE,UAAU;SACnC,CAAC,CAAC;QACH,MAAM,MAAM,CAAC,IAAI,EAAE,CAAC;QACpB,OAAO,MAAM,CAAC;IAChB,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,kBAAkB,CACtB,iBAAyB,EACzB,cAAsB,EACtB,OAAyC;QAEzC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CACnC,iBAAiB,EACjB,cAAc,EACd,OAAO,CACR,CAAC;QACF,OAAO,MAAM,CAAC,aAAa,EAAE,CAAC;IAChC,CAAC;IAED;;;;OAIG;IACK,uBAAuB,CAC7B,QAAgB,EAChB,OAAyD;QAEzD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,QAAQ,EAAE,OAAO,EAAE,EACrB,mCAAmC,CACpC,CAAC;IACJ,CAAC;IAED;;;;;OAKG;IACK,wBAAwB,CAC9B,iBAAyB,EACzB,QAAgB,EAChB,OAA0D;QAE1D,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,QAAQ,EAAE,OAAO,EAAE,EACxC,oCAAoC,CACrC,CAAC;IACJ,CAAC;CACF;AACD,2BAA2B;AAC3B,MAAM,UAAU,GAAG,UAAU,CAAC,gBAAgB,CAAC,OAAO,EAAE,WAAW,CAAC,KAAK,CAAC,CAAC;AAE3E,MAAM,+BAA+B,GAA6B;IAChE,IAAI,EAAE,sEAAsE;IAC5E,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,4BAA4B;SACjD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,eAAe,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,aAAa,EAAE,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,CAAC,cAAc,CAAC;IAC5D,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,gCAAgC,GAA6B;IACjE,IAAI,EAAE,yGAAyG;IAC/G,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,4BAA4B;SACjD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,eAAe,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,aAAa,EAAE;QACb,UAAU,CAAC,KAAK;QAChB,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;KAC7B;IACD,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,gBAAgB,GAA6B;IACjD,IAAI,EAAE,0HAA0H;IAChI,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,kBAAkB;SACvC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,eAAe,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,aAAa,EAAE;QACb,UAAU,CAAC,KAAK;QAChB,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,2BAA2B,GAA6B;IAC5D,IAAI,EAAE,0HAA0H;IAChI,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,kBAAkB;SACvC;QACD,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,kBAAkB;SACvC;QACD,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,kBAAkB;SACvC;QACD,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,kBAAkB;SACvC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,WAAW,EAAE,UAAU,CAAC,QAAQ;IAChC,eAAe,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,aAAa,EAAE;QACb,UAAU,CAAC,KAAK;QAChB,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC;IAC7D,SAAS,EAAE,MAAM;IACjB,UAAU;CACX,CAAC;AACF,MAAM,mBAAmB,GAA6B;IACpD,IAAI,EAAE,0HAA0H;IAChI,UAAU,EAAE,OAAO;IACnB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,kBAAkB;SACvC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,WAAW,EAAE,UAAU,CAAC,UAAU;IAClC,eAAe,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,aAAa,EAAE;QACb,UAAU,CAAC,KAAK;QAChB,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC;IAC7D,SAAS,EAAE,MAAM;IACjB,UAAU;CACX,CAAC;AACF,MAAM,mBAAmB,GAA6B;IACpD,IAAI,EAAE,0HAA0H;IAChI,UAAU,EAAE,QAAQ;IACpB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,aAAa,EAAE,OAAO,CAAC,wBAAwB;SAChD;QACD,GAAG,EAAE;YACH,aAAa,EAAE,OAAO,CAAC,wBAAwB;SAChD;QACD,GAAG,EAAE;YACH,aAAa,EAAE,OAAO,CAAC,wBAAwB;SAChD;QACD,GAAG,EAAE;YACH,aAAa,EAAE,OAAO,CAAC,wBAAwB;SAChD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,eAAe,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,aAAa,EAAE;QACb,UAAU,CAAC,KAAK;QAChB,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;QAC5B,UAAU,CAAC,cAAc;KAC1B;IACD,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,mCAAmC,GAA6B;IACpE,IAAI,EAAE,YAAY;IAClB,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,4BAA4B;SACjD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,aAAa,EAAE;QACb,UAAU,CAAC,KAAK;QAChB,UAAU,CAAC,QAAQ;QACnB,UAAU,CAAC,cAAc;KAC1B;IACD,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,oCAAoC,GAA6B;IACrE,IAAI,EAAE,YAAY;IAClB,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,4BAA4B;SACjD;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,aAAa,EAAE;QACb,UAAU,CAAC,KAAK;QAChB,UAAU,CAAC,QAAQ;QACnB,UAAU,CAAC,cAAc;QACzB,UAAU,CAAC,iBAAiB;KAC7B;IACD,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;IACrC,UAAU;CACX,CAAC","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator, PageSettings } from \"@azure/core-paging\";\nimport { setContinuationToken } from \"../pagingHelper.js\";\nimport { FileSystems } from \"../operationsInterfaces/index.js\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers.js\";\nimport * as Parameters from \"../models/parameters.js\";\nimport { QumuloStorage } from \"../qumuloStorage.js\";\nimport {\n SimplePollerLike,\n OperationState,\n createHttpPoller,\n} from \"@azure/core-lro\";\nimport { createLroSpec } from \"../lroImpl.js\";\nimport {\n FileSystemResource,\n FileSystemsListBySubscriptionNextOptionalParams,\n FileSystemsListBySubscriptionOptionalParams,\n FileSystemsListBySubscriptionResponse,\n FileSystemsListByResourceGroupNextOptionalParams,\n FileSystemsListByResourceGroupOptionalParams,\n FileSystemsListByResourceGroupResponse,\n FileSystemsGetOptionalParams,\n FileSystemsGetResponse,\n FileSystemsCreateOrUpdateOptionalParams,\n FileSystemsCreateOrUpdateResponse,\n FileSystemResourceUpdate,\n FileSystemsUpdateOptionalParams,\n FileSystemsUpdateResponse,\n FileSystemsDeleteOptionalParams,\n FileSystemsDeleteResponse,\n FileSystemsListBySubscriptionNextResponse,\n FileSystemsListByResourceGroupNextResponse,\n} from \"../models/index.js\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing FileSystems operations. */\nexport class FileSystemsImpl implements FileSystems {\n private readonly client: QumuloStorage;\n\n /**\n * Initialize a new instance of the class FileSystems class.\n * @param client Reference to the service client\n */\n constructor(client: QumuloStorage) {\n this.client = client;\n }\n\n /**\n * List FileSystemResource resources by subscription ID\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: FileSystemsListBySubscriptionOptionalParams,\n ): PagedAsyncIterableIterator<FileSystemResource> {\n const iter = this.listBySubscriptionPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listBySubscriptionPagingPage(options, settings);\n },\n };\n }\n\n private async *listBySubscriptionPagingPage(\n options?: FileSystemsListBySubscriptionOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<FileSystemResource[]> {\n let result: FileSystemsListBySubscriptionResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listBySubscription(options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listBySubscriptionNext(continuationToken, options);\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listBySubscriptionPagingAll(\n options?: FileSystemsListBySubscriptionOptionalParams,\n ): AsyncIterableIterator<FileSystemResource> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List FileSystemResource resources by resource group\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: FileSystemsListByResourceGroupOptionalParams,\n ): PagedAsyncIterableIterator<FileSystemResource> {\n const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listByResourceGroupPagingPage(\n resourceGroupName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listByResourceGroupPagingPage(\n resourceGroupName: string,\n options?: FileSystemsListByResourceGroupOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<FileSystemResource[]> {\n let result: FileSystemsListByResourceGroupResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listByResourceGroup(resourceGroupName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listByResourceGroupNext(\n resourceGroupName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listByResourceGroupPagingAll(\n resourceGroupName: string,\n options?: FileSystemsListByResourceGroupOptionalParams,\n ): AsyncIterableIterator<FileSystemResource> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * List FileSystemResource resources by subscription ID\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: FileSystemsListBySubscriptionOptionalParams,\n ): Promise<FileSystemsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec,\n );\n }\n\n /**\n * List FileSystemResource resources by resource group\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: FileSystemsListByResourceGroupOptionalParams,\n ): Promise<FileSystemsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec,\n );\n }\n\n /**\n * Get a FileSystemResource\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param fileSystemName Name of the File System resource\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n fileSystemName: string,\n options?: FileSystemsGetOptionalParams,\n ): Promise<FileSystemsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, fileSystemName, options },\n getOperationSpec,\n );\n }\n\n /**\n * Create a FileSystemResource\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param fileSystemName Name of the File System resource\n * @param resource Resource create parameters.\n * @param options The options parameters.\n */\n async beginCreateOrUpdate(\n resourceGroupName: string,\n fileSystemName: string,\n resource: FileSystemResource,\n options?: FileSystemsCreateOrUpdateOptionalParams,\n ): Promise<\n SimplePollerLike<\n OperationState<FileSystemsCreateOrUpdateResponse>,\n FileSystemsCreateOrUpdateResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec,\n ): Promise<FileSystemsCreateOrUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperationFn = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec,\n ) => {\n let currentRawResponse: coreClient.FullOperationResponse | undefined =\n undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown,\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback,\n },\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON(),\n },\n };\n };\n\n const lro = createLroSpec({\n sendOperationFn,\n args: { resourceGroupName, fileSystemName, resource, options },\n spec: createOrUpdateOperationSpec,\n });\n const poller = await createHttpPoller<\n FileSystemsCreateOrUpdateResponse,\n OperationState<FileSystemsCreateOrUpdateResponse>\n >(lro, {\n restoreFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs,\n resourceLocationConfig: \"azure-async-operation\",\n });\n await poller.poll();\n return poller;\n }\n\n /**\n * Create a FileSystemResource\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param fileSystemName Name of the File System resource\n * @param resource Resource create parameters.\n * @param options The options parameters.\n */\n async beginCreateOrUpdateAndWait(\n resourceGroupName: string,\n fileSystemName: string,\n resource: FileSystemResource,\n options?: FileSystemsCreateOrUpdateOptionalParams,\n ): Promise<FileSystemsCreateOrUpdateResponse> {\n const poller = await this.beginCreateOrUpdate(\n resourceGroupName,\n fileSystemName,\n resource,\n options,\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Update a FileSystemResource\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param fileSystemName Name of the File System resource\n * @param properties The resource properties to be updated.\n * @param options The options parameters.\n */\n update(\n resourceGroupName: string,\n fileSystemName: string,\n properties: FileSystemResourceUpdate,\n options?: FileSystemsUpdateOptionalParams,\n ): Promise<FileSystemsUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, fileSystemName, properties, options },\n updateOperationSpec,\n );\n }\n\n /**\n * Delete a FileSystemResource\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param fileSystemName Name of the File System resource\n * @param options The options parameters.\n */\n async beginDelete(\n resourceGroupName: string,\n fileSystemName: string,\n options?: FileSystemsDeleteOptionalParams,\n ): Promise<\n SimplePollerLike<\n OperationState<FileSystemsDeleteResponse>,\n FileSystemsDeleteResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec,\n ): Promise<FileSystemsDeleteResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperationFn = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec,\n ) => {\n let currentRawResponse: coreClient.FullOperationResponse | undefined =\n undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown,\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback,\n },\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON(),\n },\n };\n };\n\n const lro = createLroSpec({\n sendOperationFn,\n args: { resourceGroupName, fileSystemName, options },\n spec: deleteOperationSpec,\n });\n const poller = await createHttpPoller<\n FileSystemsDeleteResponse,\n OperationState<FileSystemsDeleteResponse>\n >(lro, {\n restoreFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs,\n resourceLocationConfig: \"location\",\n });\n await poller.poll();\n return poller;\n }\n\n /**\n * Delete a FileSystemResource\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param fileSystemName Name of the File System resource\n * @param options The options parameters.\n */\n async beginDeleteAndWait(\n resourceGroupName: string,\n fileSystemName: string,\n options?: FileSystemsDeleteOptionalParams,\n ): Promise<FileSystemsDeleteResponse> {\n const poller = await this.beginDelete(\n resourceGroupName,\n fileSystemName,\n options,\n );\n return poller.pollUntilDone();\n }\n\n /**\n * ListBySubscriptionNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.\n * @param options The options parameters.\n */\n private _listBySubscriptionNext(\n nextLink: string,\n options?: FileSystemsListBySubscriptionNextOptionalParams,\n ): Promise<FileSystemsListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec,\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.\n * @param options The options parameters.\n */\n private _listByResourceGroupNext(\n resourceGroupName: string,\n nextLink: string,\n options?: FileSystemsListByResourceGroupNextOptionalParams,\n ): Promise<FileSystemsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec,\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Qumulo.Storage/fileSystems\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.FileSystemResourceListResult,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.FileSystemResourceListResult,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.FileSystemResource,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.fileSystemName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.FileSystemResource,\n },\n 201: {\n bodyMapper: Mappers.FileSystemResource,\n },\n 202: {\n bodyMapper: Mappers.FileSystemResource,\n },\n 204: {\n bodyMapper: Mappers.FileSystemResource,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n requestBody: Parameters.resource,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.fileSystemName,\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer,\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.FileSystemResource,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n requestBody: Parameters.properties,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.fileSystemName,\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer,\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Qumulo.Storage/fileSystems/{fileSystemName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {\n headersMapper: Mappers.FileSystemsDeleteHeaders,\n },\n 201: {\n headersMapper: Mappers.FileSystemsDeleteHeaders,\n },\n 202: {\n headersMapper: Mappers.FileSystemsDeleteHeaders,\n },\n 204: {\n headersMapper: Mappers.FileSystemsDeleteHeaders,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.fileSystemName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.FileSystemResourceListResult,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.FileSystemResourceListResult,\n },\n default: {\n bodyMapper: Mappers.ErrorResponse,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\n"]}
@@ -1,3 +0,0 @@
1
- export * from "./operations.js";
2
- export * from "./fileSystems.js";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAQA,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC"}
@@ -1,10 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
- */
8
- export * from "./operations.js";
9
- export * from "./fileSystems.js";
10
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nexport * from \"./operations.js\";\nexport * from \"./fileSystems.js\";\n"]}
@@ -1,32 +0,0 @@
1
- import { PagedAsyncIterableIterator } from "@azure/core-paging";
2
- import { Operations } from "../operationsInterfaces/index.js";
3
- import { QumuloStorage } from "../qumuloStorage.js";
4
- import { Operation, OperationsListOptionalParams } from "../models/index.js";
5
- /** Class containing Operations operations. */
6
- export declare class OperationsImpl implements Operations {
7
- private readonly client;
8
- /**
9
- * Initialize a new instance of the class Operations class.
10
- * @param client Reference to the service client
11
- */
12
- constructor(client: QumuloStorage);
13
- /**
14
- * List the operations for the provider
15
- * @param options The options parameters.
16
- */
17
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
18
- private listPagingPage;
19
- private listPagingAll;
20
- /**
21
- * List the operations for the provider
22
- * @param options The options parameters.
23
- */
24
- private _list;
25
- /**
26
- * ListNext
27
- * @param nextLink The nextLink from the previous successful call to the List method.
28
- * @param options The options parameters.
29
- */
30
- private _listNext;
31
- }
32
- //# sourceMappingURL=operations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../../src/operations/operations.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAgB,MAAM,oBAAoB,CAAC;AAE9E,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAI9D,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EACL,SAAS,EAET,4BAA4B,EAG7B,MAAM,oBAAoB,CAAC;AAG5B,8CAA8C;AAC9C,qBAAa,cAAe,YAAW,UAAU;IAC/C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAgB;IAEvC;;;OAGG;gBACS,MAAM,EAAE,aAAa;IAIjC;;;OAGG;IACI,IAAI,CACT,OAAO,CAAC,EAAE,4BAA4B,GACrC,0BAA0B,CAAC,SAAS,CAAC;YAkBzB,cAAc;YAsBd,aAAa;IAQ5B;;;OAGG;IACH,OAAO,CAAC,KAAK;IAMb;;;;OAIG;IACH,OAAO,CAAC,SAAS;CASlB"}