@azure/arm-extendedlocation 1.0.0-beta.4 → 1.0.0-beta.5

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 (395) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +10 -13
  3. package/dist/browser/api/customLocations/index.d.ts +3 -0
  4. package/dist/browser/api/customLocations/index.js +4 -0
  5. package/dist/browser/api/customLocations/index.js.map +1 -0
  6. package/dist/browser/api/customLocations/operations.d.ts +43 -0
  7. package/dist/browser/api/customLocations/operations.js +305 -0
  8. package/dist/browser/api/customLocations/operations.js.map +1 -0
  9. package/dist/browser/api/customLocations/options.d.ts +39 -0
  10. package/dist/browser/api/customLocations/options.js +4 -0
  11. package/dist/browser/api/customLocations/options.js.map +1 -0
  12. package/dist/browser/api/customLocationsManagementContext.d.ts +22 -0
  13. package/dist/browser/api/customLocationsManagementContext.js +26 -0
  14. package/dist/browser/api/customLocationsManagementContext.js.map +1 -0
  15. package/dist/browser/api/index.d.ts +3 -0
  16. package/dist/browser/api/index.js +4 -0
  17. package/dist/browser/api/index.js.map +1 -0
  18. package/dist/browser/api/resourceSyncRules/index.d.ts +3 -0
  19. package/dist/browser/api/resourceSyncRules/index.js +4 -0
  20. package/dist/browser/api/resourceSyncRules/index.js.map +1 -0
  21. package/dist/browser/api/resourceSyncRules/operations.d.ts +27 -0
  22. package/dist/browser/api/resourceSyncRules/operations.js +181 -0
  23. package/dist/browser/api/resourceSyncRules/operations.js.map +1 -0
  24. package/dist/browser/api/resourceSyncRules/options.d.ts +25 -0
  25. package/dist/browser/api/resourceSyncRules/options.js +4 -0
  26. package/dist/browser/api/resourceSyncRules/options.js.map +1 -0
  27. package/dist/browser/classic/customLocations/index.d.ts +37 -0
  28. package/dist/browser/classic/customLocations/index.js +39 -0
  29. package/dist/browser/classic/customLocations/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/resourceSyncRules/index.d.ts +29 -0
  34. package/dist/browser/classic/resourceSyncRules/index.js +35 -0
  35. package/dist/browser/classic/resourceSyncRules/index.js.map +1 -0
  36. package/dist/browser/customLocationsManagementClient.d.ts +16 -19
  37. package/dist/browser/customLocationsManagementClient.js +30 -101
  38. package/dist/browser/customLocationsManagementClient.js.map +1 -1
  39. package/dist/browser/index.d.ts +16 -3
  40. package/dist/browser/index.js +7 -11
  41. package/dist/browser/index.js.map +1 -1
  42. package/dist/browser/logger.d.ts +2 -0
  43. package/dist/browser/logger.js +5 -0
  44. package/dist/browser/logger.js.map +1 -0
  45. package/dist/browser/models/index.d.ts +2 -540
  46. package/dist/browser/models/index.js +3 -33
  47. package/dist/browser/models/index.js.map +1 -1
  48. package/dist/browser/models/models.d.ts +402 -0
  49. package/dist/browser/models/models.js +506 -0
  50. package/dist/browser/models/models.js.map +1 -0
  51. package/dist/browser/restorePollerHelpers.d.ts +21 -0
  52. package/dist/browser/restorePollerHelpers.js +101 -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/customLocations/index.d.ts +3 -0
  73. package/dist/commonjs/api/customLocations/index.js +44 -0
  74. package/dist/commonjs/api/customLocations/index.js.map +7 -0
  75. package/dist/commonjs/api/customLocations/operations.d.ts +43 -0
  76. package/dist/commonjs/api/customLocations/operations.js +434 -0
  77. package/dist/commonjs/api/customLocations/operations.js.map +7 -0
  78. package/dist/commonjs/api/customLocations/options.d.ts +39 -0
  79. package/dist/commonjs/api/customLocations/options.js +16 -0
  80. package/dist/commonjs/api/customLocations/options.js.map +7 -0
  81. package/dist/commonjs/api/customLocationsManagementContext.d.ts +22 -0
  82. package/dist/commonjs/api/customLocationsManagementContext.js +47 -0
  83. package/dist/commonjs/api/customLocationsManagementContext.js.map +7 -0
  84. package/dist/commonjs/api/index.d.ts +3 -0
  85. package/dist/commonjs/api/index.js +28 -0
  86. package/dist/commonjs/api/index.js.map +7 -0
  87. package/dist/commonjs/api/resourceSyncRules/index.d.ts +3 -0
  88. package/dist/commonjs/api/resourceSyncRules/index.js +36 -0
  89. package/dist/commonjs/api/resourceSyncRules/index.js.map +7 -0
  90. package/dist/commonjs/api/resourceSyncRules/operations.d.ts +27 -0
  91. package/dist/commonjs/api/resourceSyncRules/operations.js +271 -0
  92. package/dist/commonjs/api/resourceSyncRules/operations.js.map +7 -0
  93. package/dist/commonjs/api/resourceSyncRules/options.d.ts +25 -0
  94. package/dist/commonjs/api/resourceSyncRules/options.js +16 -0
  95. package/dist/commonjs/api/resourceSyncRules/options.js.map +7 -0
  96. package/dist/commonjs/classic/customLocations/index.d.ts +37 -0
  97. package/dist/commonjs/classic/customLocations/index.js +63 -0
  98. package/dist/commonjs/classic/customLocations/index.js.map +7 -0
  99. package/dist/commonjs/classic/index.d.ts +3 -0
  100. package/dist/commonjs/classic/index.js +16 -0
  101. package/dist/commonjs/classic/index.js.map +7 -0
  102. package/dist/commonjs/classic/resourceSyncRules/index.d.ts +29 -0
  103. package/dist/commonjs/classic/resourceSyncRules/index.js +80 -0
  104. package/dist/commonjs/classic/resourceSyncRules/index.js.map +7 -0
  105. package/dist/commonjs/customLocationsManagementClient.d.ts +16 -19
  106. package/dist/commonjs/customLocationsManagementClient.js +56 -111
  107. package/dist/commonjs/customLocationsManagementClient.js.map +7 -1
  108. package/dist/commonjs/index.d.ts +16 -3
  109. package/dist/commonjs/index.js +48 -19
  110. package/dist/commonjs/index.js.map +7 -1
  111. package/dist/commonjs/logger.d.ts +2 -0
  112. package/dist/commonjs/logger.js +29 -0
  113. package/dist/commonjs/logger.js.map +7 -0
  114. package/dist/commonjs/models/index.d.ts +2 -540
  115. package/dist/commonjs/models/index.js +34 -37
  116. package/dist/commonjs/models/index.js.map +7 -1
  117. package/dist/commonjs/models/models.d.ts +402 -0
  118. package/dist/commonjs/models/models.js +560 -0
  119. package/dist/commonjs/models/models.js.map +7 -0
  120. package/dist/commonjs/restorePollerHelpers.d.ts +21 -0
  121. package/dist/commonjs/restorePollerHelpers.js +114 -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/static-helpers/serialization/check-prop-undefined.js +35 -0
  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/customLocations/index.d.ts +3 -0
  143. package/dist/esm/api/customLocations/index.js +4 -0
  144. package/dist/esm/api/customLocations/index.js.map +1 -0
  145. package/dist/esm/api/customLocations/operations.d.ts +43 -0
  146. package/dist/esm/api/customLocations/operations.js +305 -0
  147. package/dist/esm/api/customLocations/operations.js.map +1 -0
  148. package/dist/esm/api/customLocations/options.d.ts +39 -0
  149. package/dist/esm/api/customLocations/options.js +4 -0
  150. package/dist/esm/api/customLocations/options.js.map +1 -0
  151. package/dist/esm/api/customLocationsManagementContext.d.ts +22 -0
  152. package/dist/esm/api/customLocationsManagementContext.js +26 -0
  153. package/dist/esm/api/customLocationsManagementContext.js.map +1 -0
  154. package/dist/esm/api/index.d.ts +3 -0
  155. package/dist/esm/api/index.js +4 -0
  156. package/dist/esm/api/index.js.map +1 -0
  157. package/dist/esm/api/resourceSyncRules/index.d.ts +3 -0
  158. package/dist/esm/api/resourceSyncRules/index.js +4 -0
  159. package/dist/esm/api/resourceSyncRules/index.js.map +1 -0
  160. package/dist/esm/api/resourceSyncRules/operations.d.ts +27 -0
  161. package/dist/esm/api/resourceSyncRules/operations.js +181 -0
  162. package/dist/esm/api/resourceSyncRules/operations.js.map +1 -0
  163. package/dist/esm/api/resourceSyncRules/options.d.ts +25 -0
  164. package/dist/esm/api/resourceSyncRules/options.js +4 -0
  165. package/dist/esm/api/resourceSyncRules/options.js.map +1 -0
  166. package/dist/esm/classic/customLocations/index.d.ts +37 -0
  167. package/dist/esm/classic/customLocations/index.js +39 -0
  168. package/dist/esm/classic/customLocations/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/resourceSyncRules/index.d.ts +29 -0
  173. package/dist/esm/classic/resourceSyncRules/index.js +35 -0
  174. package/dist/esm/classic/resourceSyncRules/index.js.map +1 -0
  175. package/dist/esm/customLocationsManagementClient.d.ts +16 -19
  176. package/dist/esm/customLocationsManagementClient.js +30 -101
  177. package/dist/esm/customLocationsManagementClient.js.map +1 -1
  178. package/dist/esm/index.d.ts +16 -3
  179. package/dist/esm/index.js +7 -11
  180. package/dist/esm/index.js.map +1 -1
  181. package/dist/esm/logger.d.ts +2 -0
  182. package/dist/esm/logger.js +5 -0
  183. package/dist/esm/logger.js.map +1 -0
  184. package/dist/esm/models/index.d.ts +2 -540
  185. package/dist/esm/models/index.js +3 -33
  186. package/dist/esm/models/index.js.map +1 -1
  187. package/dist/esm/models/models.d.ts +402 -0
  188. package/dist/esm/models/models.js +506 -0
  189. package/dist/esm/models/models.js.map +1 -0
  190. package/dist/esm/restorePollerHelpers.d.ts +21 -0
  191. package/dist/esm/restorePollerHelpers.js +101 -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 -95
  212. package/CHANGELOG.md +0 -64
  213. package/dist/browser/customLocationsManagementClient.d.ts.map +0 -1
  214. package/dist/browser/index.d.ts.map +0 -1
  215. package/dist/browser/lroImpl.d.ts +0 -16
  216. package/dist/browser/lroImpl.d.ts.map +0 -1
  217. package/dist/browser/lroImpl.js +0 -33
  218. package/dist/browser/lroImpl.js.map +0 -1
  219. package/dist/browser/models/index.d.ts.map +0 -1
  220. package/dist/browser/models/mappers.d.ts +0 -26
  221. package/dist/browser/models/mappers.d.ts.map +0 -1
  222. package/dist/browser/models/mappers.js +0 -807
  223. package/dist/browser/models/mappers.js.map +0 -1
  224. package/dist/browser/models/parameters.d.ts +0 -27
  225. package/dist/browser/models/parameters.d.ts.map +0 -1
  226. package/dist/browser/models/parameters.js +0 -185
  227. package/dist/browser/models/parameters.js.map +0 -1
  228. package/dist/browser/operations/customLocations.d.ts +0 -155
  229. package/dist/browser/operations/customLocations.d.ts.map +0 -1
  230. package/dist/browser/operations/customLocations.js +0 -699
  231. package/dist/browser/operations/customLocations.js.map +0 -1
  232. package/dist/browser/operations/index.d.ts +0 -3
  233. package/dist/browser/operations/index.d.ts.map +0 -1
  234. package/dist/browser/operations/index.js +0 -10
  235. package/dist/browser/operations/index.js.map +0 -1
  236. package/dist/browser/operations/resourceSyncRules.d.ts +0 -97
  237. package/dist/browser/operations/resourceSyncRules.d.ts.map +0 -1
  238. package/dist/browser/operations/resourceSyncRules.js +0 -398
  239. package/dist/browser/operations/resourceSyncRules.js.map +0 -1
  240. package/dist/browser/operationsInterfaces/customLocations.d.ts +0 -86
  241. package/dist/browser/operationsInterfaces/customLocations.d.ts.map +0 -1
  242. package/dist/browser/operationsInterfaces/customLocations.js +0 -9
  243. package/dist/browser/operationsInterfaces/customLocations.js.map +0 -1
  244. package/dist/browser/operationsInterfaces/index.d.ts +0 -3
  245. package/dist/browser/operationsInterfaces/index.d.ts.map +0 -1
  246. package/dist/browser/operationsInterfaces/index.js +0 -10
  247. package/dist/browser/operationsInterfaces/index.js.map +0 -1
  248. package/dist/browser/operationsInterfaces/resourceSyncRules.d.ts +0 -71
  249. package/dist/browser/operationsInterfaces/resourceSyncRules.d.ts.map +0 -1
  250. package/dist/browser/operationsInterfaces/resourceSyncRules.js +0 -9
  251. package/dist/browser/operationsInterfaces/resourceSyncRules.js.map +0 -1
  252. package/dist/browser/pagingHelper.d.ts +0 -13
  253. package/dist/browser/pagingHelper.d.ts.map +0 -1
  254. package/dist/browser/pagingHelper.js +0 -30
  255. package/dist/browser/pagingHelper.js.map +0 -1
  256. package/dist/commonjs/customLocationsManagementClient.d.ts.map +0 -1
  257. package/dist/commonjs/index.d.ts.map +0 -1
  258. package/dist/commonjs/lroImpl.d.ts +0 -16
  259. package/dist/commonjs/lroImpl.d.ts.map +0 -1
  260. package/dist/commonjs/lroImpl.js +0 -37
  261. package/dist/commonjs/lroImpl.js.map +0 -1
  262. package/dist/commonjs/models/index.d.ts.map +0 -1
  263. package/dist/commonjs/models/mappers.d.ts +0 -26
  264. package/dist/commonjs/models/mappers.d.ts.map +0 -1
  265. package/dist/commonjs/models/mappers.js +0 -810
  266. package/dist/commonjs/models/mappers.js.map +0 -1
  267. package/dist/commonjs/models/parameters.d.ts +0 -27
  268. package/dist/commonjs/models/parameters.d.ts.map +0 -1
  269. package/dist/commonjs/models/parameters.js +0 -188
  270. package/dist/commonjs/models/parameters.js.map +0 -1
  271. package/dist/commonjs/operations/customLocations.d.ts +0 -155
  272. package/dist/commonjs/operations/customLocations.d.ts.map +0 -1
  273. package/dist/commonjs/operations/customLocations.js +0 -704
  274. package/dist/commonjs/operations/customLocations.js.map +0 -1
  275. package/dist/commonjs/operations/index.d.ts +0 -3
  276. package/dist/commonjs/operations/index.d.ts.map +0 -1
  277. package/dist/commonjs/operations/index.js +0 -13
  278. package/dist/commonjs/operations/index.js.map +0 -1
  279. package/dist/commonjs/operations/resourceSyncRules.d.ts +0 -97
  280. package/dist/commonjs/operations/resourceSyncRules.d.ts.map +0 -1
  281. package/dist/commonjs/operations/resourceSyncRules.js +0 -403
  282. package/dist/commonjs/operations/resourceSyncRules.js.map +0 -1
  283. package/dist/commonjs/operationsInterfaces/customLocations.d.ts +0 -86
  284. package/dist/commonjs/operationsInterfaces/customLocations.d.ts.map +0 -1
  285. package/dist/commonjs/operationsInterfaces/customLocations.js +0 -10
  286. package/dist/commonjs/operationsInterfaces/customLocations.js.map +0 -1
  287. package/dist/commonjs/operationsInterfaces/index.d.ts +0 -3
  288. package/dist/commonjs/operationsInterfaces/index.d.ts.map +0 -1
  289. package/dist/commonjs/operationsInterfaces/index.js +0 -13
  290. package/dist/commonjs/operationsInterfaces/index.js.map +0 -1
  291. package/dist/commonjs/operationsInterfaces/resourceSyncRules.d.ts +0 -71
  292. package/dist/commonjs/operationsInterfaces/resourceSyncRules.d.ts.map +0 -1
  293. package/dist/commonjs/operationsInterfaces/resourceSyncRules.js +0 -10
  294. package/dist/commonjs/operationsInterfaces/resourceSyncRules.js.map +0 -1
  295. package/dist/commonjs/pagingHelper.d.ts +0 -13
  296. package/dist/commonjs/pagingHelper.d.ts.map +0 -1
  297. package/dist/commonjs/pagingHelper.js +0 -34
  298. package/dist/commonjs/pagingHelper.js.map +0 -1
  299. package/dist/esm/customLocationsManagementClient.d.ts.map +0 -1
  300. package/dist/esm/index.d.ts.map +0 -1
  301. package/dist/esm/lroImpl.d.ts +0 -16
  302. package/dist/esm/lroImpl.d.ts.map +0 -1
  303. package/dist/esm/lroImpl.js +0 -33
  304. package/dist/esm/lroImpl.js.map +0 -1
  305. package/dist/esm/models/index.d.ts.map +0 -1
  306. package/dist/esm/models/mappers.d.ts +0 -26
  307. package/dist/esm/models/mappers.d.ts.map +0 -1
  308. package/dist/esm/models/mappers.js +0 -807
  309. package/dist/esm/models/mappers.js.map +0 -1
  310. package/dist/esm/models/parameters.d.ts +0 -27
  311. package/dist/esm/models/parameters.d.ts.map +0 -1
  312. package/dist/esm/models/parameters.js +0 -185
  313. package/dist/esm/models/parameters.js.map +0 -1
  314. package/dist/esm/operations/customLocations.d.ts +0 -155
  315. package/dist/esm/operations/customLocations.d.ts.map +0 -1
  316. package/dist/esm/operations/customLocations.js +0 -699
  317. package/dist/esm/operations/customLocations.js.map +0 -1
  318. package/dist/esm/operations/index.d.ts +0 -3
  319. package/dist/esm/operations/index.d.ts.map +0 -1
  320. package/dist/esm/operations/index.js +0 -10
  321. package/dist/esm/operations/index.js.map +0 -1
  322. package/dist/esm/operations/resourceSyncRules.d.ts +0 -97
  323. package/dist/esm/operations/resourceSyncRules.d.ts.map +0 -1
  324. package/dist/esm/operations/resourceSyncRules.js +0 -398
  325. package/dist/esm/operations/resourceSyncRules.js.map +0 -1
  326. package/dist/esm/operationsInterfaces/customLocations.d.ts +0 -86
  327. package/dist/esm/operationsInterfaces/customLocations.d.ts.map +0 -1
  328. package/dist/esm/operationsInterfaces/customLocations.js +0 -9
  329. package/dist/esm/operationsInterfaces/customLocations.js.map +0 -1
  330. package/dist/esm/operationsInterfaces/index.d.ts +0 -3
  331. package/dist/esm/operationsInterfaces/index.d.ts.map +0 -1
  332. package/dist/esm/operationsInterfaces/index.js +0 -10
  333. package/dist/esm/operationsInterfaces/index.js.map +0 -1
  334. package/dist/esm/operationsInterfaces/resourceSyncRules.d.ts +0 -71
  335. package/dist/esm/operationsInterfaces/resourceSyncRules.d.ts.map +0 -1
  336. package/dist/esm/operationsInterfaces/resourceSyncRules.js +0 -9
  337. package/dist/esm/operationsInterfaces/resourceSyncRules.js.map +0 -1
  338. package/dist/esm/pagingHelper.d.ts +0 -13
  339. package/dist/esm/pagingHelper.d.ts.map +0 -1
  340. package/dist/esm/pagingHelper.js +0 -30
  341. package/dist/esm/pagingHelper.js.map +0 -1
  342. package/dist/react-native/customLocationsManagementClient.d.ts +0 -21
  343. package/dist/react-native/customLocationsManagementClient.d.ts.map +0 -1
  344. package/dist/react-native/customLocationsManagementClient.js +0 -108
  345. package/dist/react-native/customLocationsManagementClient.js.map +0 -1
  346. package/dist/react-native/index.d.ts +0 -5
  347. package/dist/react-native/index.d.ts.map +0 -1
  348. package/dist/react-native/index.js +0 -13
  349. package/dist/react-native/index.js.map +0 -1
  350. package/dist/react-native/lroImpl.d.ts +0 -16
  351. package/dist/react-native/lroImpl.d.ts.map +0 -1
  352. package/dist/react-native/lroImpl.js +0 -33
  353. package/dist/react-native/lroImpl.js.map +0 -1
  354. package/dist/react-native/models/index.d.ts +0 -541
  355. package/dist/react-native/models/index.d.ts.map +0 -1
  356. package/dist/react-native/models/index.js +0 -34
  357. package/dist/react-native/models/index.js.map +0 -1
  358. package/dist/react-native/models/mappers.d.ts +0 -26
  359. package/dist/react-native/models/mappers.d.ts.map +0 -1
  360. package/dist/react-native/models/mappers.js +0 -807
  361. package/dist/react-native/models/mappers.js.map +0 -1
  362. package/dist/react-native/models/parameters.d.ts +0 -27
  363. package/dist/react-native/models/parameters.d.ts.map +0 -1
  364. package/dist/react-native/models/parameters.js +0 -185
  365. package/dist/react-native/models/parameters.js.map +0 -1
  366. package/dist/react-native/operations/customLocations.d.ts +0 -155
  367. package/dist/react-native/operations/customLocations.d.ts.map +0 -1
  368. package/dist/react-native/operations/customLocations.js +0 -699
  369. package/dist/react-native/operations/customLocations.js.map +0 -1
  370. package/dist/react-native/operations/index.d.ts +0 -3
  371. package/dist/react-native/operations/index.d.ts.map +0 -1
  372. package/dist/react-native/operations/index.js +0 -10
  373. package/dist/react-native/operations/index.js.map +0 -1
  374. package/dist/react-native/operations/resourceSyncRules.d.ts +0 -97
  375. package/dist/react-native/operations/resourceSyncRules.d.ts.map +0 -1
  376. package/dist/react-native/operations/resourceSyncRules.js +0 -398
  377. package/dist/react-native/operations/resourceSyncRules.js.map +0 -1
  378. package/dist/react-native/operationsInterfaces/customLocations.d.ts +0 -86
  379. package/dist/react-native/operationsInterfaces/customLocations.d.ts.map +0 -1
  380. package/dist/react-native/operationsInterfaces/customLocations.js +0 -9
  381. package/dist/react-native/operationsInterfaces/customLocations.js.map +0 -1
  382. package/dist/react-native/operationsInterfaces/index.d.ts +0 -3
  383. package/dist/react-native/operationsInterfaces/index.d.ts.map +0 -1
  384. package/dist/react-native/operationsInterfaces/index.js +0 -10
  385. package/dist/react-native/operationsInterfaces/index.js.map +0 -1
  386. package/dist/react-native/operationsInterfaces/resourceSyncRules.d.ts +0 -71
  387. package/dist/react-native/operationsInterfaces/resourceSyncRules.d.ts.map +0 -1
  388. package/dist/react-native/operationsInterfaces/resourceSyncRules.js +0 -9
  389. package/dist/react-native/operationsInterfaces/resourceSyncRules.js.map +0 -1
  390. package/dist/react-native/package.json +0 -3
  391. package/dist/react-native/pagingHelper.d.ts +0 -13
  392. package/dist/react-native/pagingHelper.d.ts.map +0 -1
  393. package/dist/react-native/pagingHelper.js +0 -30
  394. package/dist/react-native/pagingHelper.js.map +0 -1
  395. package/review/arm-extendedlocation-node.api.md +0 -434
@@ -1 +1,7 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAuWH,6EAA6E;AAC7E,IAAY,yBAKX;AALD,WAAY,yBAAyB;IACnC,qBAAqB;IACrB,8DAAiC,CAAA;IACjC,WAAW;IACX,0CAAa,CAAA;AACf,CAAC,EALW,yBAAyB,yCAAzB,yBAAyB,QAKpC;AAYD,iEAAiE;AACjE,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,iBAAiB;IACjB,0CAAyB,CAAA;AAC3B,CAAC,EAHW,aAAa,6BAAb,aAAa,QAGxB;AAWD,sEAAsE;AACtE,IAAY,kBASX;AATD,WAAY,kBAAkB;IAC5B,WAAW;IACX,mCAAa,CAAA;IACb,kBAAkB;IAClB,iDAA2B,CAAA;IAC3B,sBAAsB;IACtB,yDAAmC,CAAA;IACnC,UAAU;IACV,iCAAW,CAAA;AACb,CAAC,EATW,kBAAkB,kCAAlB,kBAAkB,QAS7B","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 * as coreClient from \"@azure/core-client\";\n\n/** Lists of Custom Locations operations. */\nexport interface CustomLocationOperationsList {\n /** Next page of operations. */\n nextLink?: string;\n /** Array of customLocationOperation */\n value: CustomLocationOperation[];\n}\n\n/** Custom Locations operation. */\nexport interface CustomLocationOperation {\n /**\n * Is this Operation a data plane operation\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly isDataAction?: boolean;\n /**\n * The name of the compute operation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The origin of the compute operation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly origin?: string;\n /**\n * The description of the operation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly description?: string;\n /**\n * The display name of the compute operation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly operation?: string;\n /**\n * The resource provider for the operation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly provider?: string;\n /**\n * The display name of the resource the operation applies to.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly resource?: string;\n}\n\n/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */\nexport interface ErrorResponse {\n /** The error object. */\n error?: ErrorDetail;\n}\n\n/** The error detail. */\nexport interface ErrorDetail {\n /**\n * The error code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code?: string;\n /**\n * The error message.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n /**\n * The error target.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly target?: string;\n /**\n * The error details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details?: ErrorDetail[];\n /**\n * The error additional info.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly additionalInfo?: ErrorAdditionalInfo[];\n}\n\n/** The resource management error additional info. */\nexport interface ErrorAdditionalInfo {\n /**\n * The additional info type.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The additional info.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly info?: Record<string, unknown>;\n}\n\n/** The List Custom Locations operation response. */\nexport interface CustomLocationListResult {\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n /**\n * The list of Custom Locations.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly value?: CustomLocation[];\n}\n\n/** Identity for the resource. */\nexport interface Identity {\n /**\n * The principal ID of resource identity.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly principalId?: string;\n /**\n * The tenant ID of resource.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /** The identity type. */\n type?: ResourceIdentityType;\n}\n\n/** This is optional input that contains the authentication that should be used to generate the namespace. */\nexport interface CustomLocationPropertiesAuthentication {\n /** The type of the Custom Locations authentication */\n type?: string;\n /** The kubeconfig value. */\n value?: string;\n}\n\n/** Metadata pertaining to creation and last modification of the resource. */\nexport interface SystemData {\n /** The identity that created the resource. */\n createdBy?: string;\n /** The type of identity that created the resource. */\n createdByType?: CreatedByType;\n /** The timestamp of resource creation (UTC). */\n createdAt?: Date;\n /** The identity that last modified the resource. */\n lastModifiedBy?: string;\n /** The type of identity that last modified the resource. */\n lastModifiedByType?: CreatedByType;\n /** The timestamp of resource last modification (UTC) */\n lastModifiedAt?: Date;\n}\n\n/** Common fields that are returned in the response for all Azure Resource Manager resources */\nexport interface Resource {\n /**\n * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The name of the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The type of the resource. E.g. \"Microsoft.Compute/virtualMachines\" or \"Microsoft.Storage/storageAccounts\"\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n}\n\n/** The Custom Locations patchable resource definition. */\nexport interface PatchableCustomLocations {\n /** Identity for the resource. */\n identity?: Identity;\n /** Resource tags */\n tags?: { [propertyName: string]: string };\n /** This is optional input that contains the authentication that should be used to generate the namespace. */\n authentication?: CustomLocationPropertiesAuthentication;\n /** Contains the reference to the add-on that contains charts to deploy CRDs and operators. */\n clusterExtensionIds?: string[];\n /** Display name for the Custom Locations location. */\n displayName?: string;\n /** Connected Cluster or AKS Cluster. The Custom Locations RP will perform a checkAccess API for listAdminCredentials permissions. */\n hostResourceId?: string;\n /** Type of host the Custom Locations is referencing (Kubernetes, etc...). */\n hostType?: HostType;\n /** Kubernetes namespace that will be created on the specified cluster. */\n namespace?: string;\n /** Provisioning State for the Custom Location. */\n provisioningState?: string;\n}\n\n/** List of EnabledResourceTypes definition. */\nexport interface EnabledResourceTypesListResult {\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n /**\n * The list of EnabledResourceTypes available for a customLocation.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly value?: EnabledResourceType[];\n}\n\n/** Metadata of the Resource Type. */\nexport interface EnabledResourceTypePropertiesTypesMetadataItem {\n /** Api Version of Resource Type */\n apiVersion?: string;\n /** Resource Provider Namespace of Resource Type */\n resourceProviderNamespace?: string;\n /** Resource Type */\n resourceType?: string;\n}\n\n/** The Find Target Resource Group operation request. */\nexport interface CustomLocationFindTargetResourceGroupProperties {\n /** Labels of the custom resource, this is a map of {key,value} pairs. */\n labels?: { [propertyName: string]: string };\n}\n\n/** The Find Target Resource Group operation response. */\nexport interface CustomLocationFindTargetResourceGroupResult {\n /**\n * The matching resource sync rule is the particular resource sync rule that matched the match expressions and labels and had lowest priority. This is the rule responsible for mapping the target resource to the target resource group.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly matchedResourceSyncRule?: string;\n /**\n * The target resource group of matching resource sync rule. The labels from the request will be used to find out matching resource sync rule against the selector property of the resource sync rule. The one with highest priority will be returned if there are multiple matching rules.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly targetResourceGroup?: string;\n}\n\n/** The List Resource Sync Rules operation response. */\nexport interface ResourceSyncRuleListResult {\n /**\n * The URL to use for getting the next set of results.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly nextLink?: string;\n /**\n * The list of Resource Sync Rules.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly value?: ResourceSyncRule[];\n}\n\n/** A label selector is composed of two parts, matchLabels and matchExpressions. The first part, matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. The second part, matchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. All of the requirements, from both matchLabels and matchExpressions must all be satisfied in order to match. */\nexport interface ResourceSyncRulePropertiesSelector {\n /** MatchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. */\n matchExpressions?: MatchExpressionsProperties[];\n /** MatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. */\n matchLabels?: { [propertyName: string]: string };\n}\n\n/** Resource Sync Rules matchExpression property definition. */\nexport interface MatchExpressionsProperties {\n /** Key is the label key that the selector applies to. */\n key?: string;\n /** The Operator field represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. */\n operator?: string;\n /** The label value */\n values?: string[];\n}\n\n/** The Resource Sync Rules patchable resource definition. */\nexport interface PatchableResourceSyncRule {\n /** Resource tags */\n tags?: { [propertyName: string]: string };\n /** Priority represents a priority of the Resource Sync Rule */\n priority?: number;\n /**\n * Provisioning State for the Resource Sync Rule.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly provisioningState?: string;\n /** A label selector is composed of two parts, matchLabels and matchExpressions. The first part, matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. The second part, matchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. All of the requirements, from both matchLabels and matchExpressions must all be satisfied in order to match. */\n selector?: ResourceSyncRulePropertiesSelector;\n /** For an unmapped custom resource, its labels will be used to find matching resource sync rules. If this resource sync rule is one of the matching rules with highest priority, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. The user creating this resource sync rule should have write permissions on the target resource group and this write permission will be validated when creating the resource sync rule. */\n targetResourceGroup?: string;\n}\n\n/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */\nexport interface TrackedResource extends Resource {\n /** Resource tags. */\n tags?: { [propertyName: string]: string };\n /** The geo-location where the resource lives */\n location: string;\n}\n\n/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */\nexport interface ProxyResource extends Resource {}\n\n/** Custom Locations definition. */\nexport interface CustomLocation extends TrackedResource {\n /** Identity for the resource. */\n identity?: Identity;\n /**\n * Metadata pertaining to creation and last modification of the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** This is optional input that contains the authentication that should be used to generate the namespace. */\n authentication?: CustomLocationPropertiesAuthentication;\n /** Contains the reference to the add-on that contains charts to deploy CRDs and operators. */\n clusterExtensionIds?: string[];\n /** Display name for the Custom Locations location. */\n displayName?: string;\n /** Connected Cluster or AKS Cluster. The Custom Locations RP will perform a checkAccess API for listAdminCredentials permissions. */\n hostResourceId?: string;\n /** Type of host the Custom Locations is referencing (Kubernetes, etc...). */\n hostType?: HostType;\n /** Kubernetes namespace that will be created on the specified cluster. */\n namespace?: string;\n /** Provisioning State for the Custom Location. */\n provisioningState?: string;\n}\n\n/** Resource Sync Rules definition. */\nexport interface ResourceSyncRule extends TrackedResource {\n /**\n * Metadata pertaining to creation and last modification of the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** Priority represents a priority of the Resource Sync Rule */\n priority?: number;\n /**\n * Provisioning State for the Resource Sync Rule.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly provisioningState?: string;\n /** A label selector is composed of two parts, matchLabels and matchExpressions. The first part, matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. The second part, matchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. All of the requirements, from both matchLabels and matchExpressions must all be satisfied in order to match. */\n selector?: ResourceSyncRulePropertiesSelector;\n /** For an unmapped custom resource, its labels will be used to find matching resource sync rules. If this resource sync rule is one of the matching rules with highest priority, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. The user creating this resource sync rule should have write permissions on the target resource group and this write permission will be validated when creating the resource sync rule. */\n targetResourceGroup?: string;\n}\n\n/** EnabledResourceType definition. */\nexport interface EnabledResourceType extends ProxyResource {\n /**\n * Metadata pertaining to creation and last modification of the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** Cluster Extension ID */\n clusterExtensionId?: string;\n /** Cluster Extension Type */\n extensionType?: string;\n /** Metadata of the Resource Type */\n typesMetadata?: EnabledResourceTypePropertiesTypesMetadataItem[];\n}\n\n/** Known values of {@link ResourceIdentityType} that the service accepts. */\nexport enum KnownResourceIdentityType {\n /** SystemAssigned */\n SystemAssigned = \"SystemAssigned\",\n /** None */\n None = \"None\"\n}\n\n/**\n * Defines values for ResourceIdentityType. \\\n * {@link KnownResourceIdentityType} can be used interchangeably with ResourceIdentityType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **SystemAssigned** \\\n * **None**\n */\nexport type ResourceIdentityType = string;\n\n/** Known values of {@link HostType} that the service accepts. */\nexport enum KnownHostType {\n /** Kubernetes */\n Kubernetes = \"Kubernetes\"\n}\n\n/**\n * Defines values for HostType. \\\n * {@link KnownHostType} can be used interchangeably with HostType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Kubernetes**\n */\nexport type HostType = string;\n\n/** Known values of {@link CreatedByType} that the service accepts. */\nexport enum KnownCreatedByType {\n /** User */\n User = \"User\",\n /** Application */\n Application = \"Application\",\n /** ManagedIdentity */\n ManagedIdentity = \"ManagedIdentity\",\n /** Key */\n Key = \"Key\"\n}\n\n/**\n * Defines values for CreatedByType. \\\n * {@link KnownCreatedByType} can be used interchangeably with CreatedByType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **User** \\\n * **Application** \\\n * **ManagedIdentity** \\\n * **Key**\n */\nexport type CreatedByType = string;\n\n/** Optional parameters. */\nexport interface CustomLocationsListOperationsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listOperations operation. */\nexport type CustomLocationsListOperationsResponse = CustomLocationOperationsList;\n\n/** Optional parameters. */\nexport interface CustomLocationsListBySubscriptionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscription operation. */\nexport type CustomLocationsListBySubscriptionResponse = CustomLocationListResult;\n\n/** Optional parameters. */\nexport interface CustomLocationsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type CustomLocationsListByResourceGroupResponse = CustomLocationListResult;\n\n/** Optional parameters. */\nexport interface CustomLocationsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type CustomLocationsGetResponse = CustomLocation;\n\n/** Optional parameters. */\nexport interface CustomLocationsCreateOrUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the createOrUpdate operation. */\nexport type CustomLocationsCreateOrUpdateResponse = CustomLocation;\n\n/** Optional parameters. */\nexport interface CustomLocationsDeleteOptionalParams\n extends coreClient.OperationOptions {\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Optional parameters. */\nexport interface CustomLocationsUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Identity for the resource. */\n identity?: Identity;\n /** Resource tags */\n tags?: { [propertyName: string]: string };\n /** This is optional input that contains the authentication that should be used to generate the namespace. */\n authentication?: CustomLocationPropertiesAuthentication;\n /** Contains the reference to the add-on that contains charts to deploy CRDs and operators. */\n clusterExtensionIds?: string[];\n /** Display name for the Custom Locations location. */\n displayName?: string;\n /** Connected Cluster or AKS Cluster. The Custom Locations RP will perform a checkAccess API for listAdminCredentials permissions. */\n hostResourceId?: string;\n /** Type of host the Custom Locations is referencing (Kubernetes, etc...). */\n hostType?: HostType;\n /** Kubernetes namespace that will be created on the specified cluster. */\n namespace?: string;\n /** Provisioning State for the Custom Location. */\n provisioningState?: string;\n}\n\n/** Contains response data for the update operation. */\nexport type CustomLocationsUpdateResponse = CustomLocation;\n\n/** Optional parameters. */\nexport interface CustomLocationsListEnabledResourceTypesOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listEnabledResourceTypes operation. */\nexport type CustomLocationsListEnabledResourceTypesResponse = EnabledResourceTypesListResult;\n\n/** Optional parameters. */\nexport interface CustomLocationsFindTargetResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the findTargetResourceGroup operation. */\nexport type CustomLocationsFindTargetResourceGroupResponse = CustomLocationFindTargetResourceGroupResult;\n\n/** Optional parameters. */\nexport interface CustomLocationsListOperationsNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listOperationsNext operation. */\nexport type CustomLocationsListOperationsNextResponse = CustomLocationOperationsList;\n\n/** Optional parameters. */\nexport interface CustomLocationsListBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscriptionNext operation. */\nexport type CustomLocationsListBySubscriptionNextResponse = CustomLocationListResult;\n\n/** Optional parameters. */\nexport interface CustomLocationsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type CustomLocationsListByResourceGroupNextResponse = CustomLocationListResult;\n\n/** Optional parameters. */\nexport interface CustomLocationsListEnabledResourceTypesNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listEnabledResourceTypesNext operation. */\nexport type CustomLocationsListEnabledResourceTypesNextResponse = EnabledResourceTypesListResult;\n\n/** Optional parameters. */\nexport interface ResourceSyncRulesListByCustomLocationIDOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByCustomLocationID operation. */\nexport type ResourceSyncRulesListByCustomLocationIDResponse = ResourceSyncRuleListResult;\n\n/** Optional parameters. */\nexport interface ResourceSyncRulesGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type ResourceSyncRulesGetResponse = ResourceSyncRule;\n\n/** Optional parameters. */\nexport interface ResourceSyncRulesCreateOrUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the createOrUpdate operation. */\nexport type ResourceSyncRulesCreateOrUpdateResponse = ResourceSyncRule;\n\n/** Optional parameters. */\nexport interface ResourceSyncRulesDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface ResourceSyncRulesUpdateOptionalParams\n extends coreClient.OperationOptions {\n /** Resource tags */\n tags?: { [propertyName: string]: string };\n /** Priority represents a priority of the Resource Sync Rule */\n priority?: number;\n /** A label selector is composed of two parts, matchLabels and matchExpressions. The first part, matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. The second part, matchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. All of the requirements, from both matchLabels and matchExpressions must all be satisfied in order to match. */\n selector?: ResourceSyncRulePropertiesSelector;\n /** For an unmapped custom resource, its labels will be used to find matching resource sync rules. If this resource sync rule is one of the matching rules with highest priority, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. The user creating this resource sync rule should have write permissions on the target resource group and this write permission will be validated when creating the resource sync rule. */\n targetResourceGroup?: string;\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the update operation. */\nexport type ResourceSyncRulesUpdateResponse = ResourceSyncRule;\n\n/** Optional parameters. */\nexport interface ResourceSyncRulesListByCustomLocationIDNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByCustomLocationIDNext operation. */\nexport type ResourceSyncRulesListByCustomLocationIDNextResponse = ResourceSyncRuleListResult;\n\n/** Optional parameters. */\nexport interface CustomLocationsManagementClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/models/index.ts"],
4
+ "sourcesContent": ["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport type {\n CustomLocationOperation,\n CustomLocationOperationValueDisplay,\n ErrorResponse,\n ErrorDetail,\n ErrorAdditionalInfo,\n CustomLocation,\n CustomLocationProperties,\n CustomLocationPropertiesAuthentication,\n HostType,\n Identity,\n ResourceIdentityType,\n TrackedResource,\n Resource,\n SystemData,\n CreatedByType,\n PatchableCustomLocations,\n EnabledResourceType,\n EnabledResourceTypeProperties,\n EnabledResourceTypePropertiesTypesMetadataItem,\n ProxyResource,\n CustomLocationFindTargetResourceGroupProperties,\n CustomLocationFindTargetResourceGroupResult,\n ResourceSyncRule,\n ResourceSyncRuleProperties,\n ResourceSyncRulePropertiesSelector,\n MatchExpressionsProperties,\n PatchableResourceSyncRule,\n} from \"./models.js\";\nexport {\n KnownHostType,\n KnownResourceIdentityType,\n KnownCreatedByType,\n KnownVersions,\n} from \"./models.js\";\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAgCA,oBAKO;",
6
+ "names": []
7
+ }
@@ -0,0 +1,402 @@
1
+ /**
2
+ * This file contains only generated model types and their (de)serializers.
3
+ * Disable the following rules for internal models with '_' prefix and deserializers which require 'any' for raw JSON input.
4
+ */
5
+ /** Collection of CustomLocationOperation items */
6
+ export interface _CustomLocationOperationsList {
7
+ /** The link to the next page of items */
8
+ nextLink?: string;
9
+ /** The CustomLocationOperation items */
10
+ value: CustomLocationOperation[];
11
+ }
12
+ export declare function _customLocationOperationsListDeserializer(item: any): _CustomLocationOperationsList;
13
+ export declare function customLocationOperationArrayDeserializer(result: Array<CustomLocationOperation>): any[];
14
+ /** Custom Locations operation. */
15
+ export interface CustomLocationOperation {
16
+ /** Is this Operation a data plane operation */
17
+ readonly isDataAction?: boolean;
18
+ /** The name of the compute operation. */
19
+ readonly name?: string;
20
+ /** The origin of the compute operation. */
21
+ readonly origin?: string;
22
+ /** The description of the operation. */
23
+ readonly description?: string;
24
+ /** The display name of the compute operation. */
25
+ readonly operation?: string;
26
+ /** The resource provider for the operation. */
27
+ readonly provider?: string;
28
+ /** The display name of the resource the operation applies to. */
29
+ readonly resource?: string;
30
+ }
31
+ export declare function customLocationOperationDeserializer(item: any): CustomLocationOperation;
32
+ /** Describes the properties of a Custom Locations Operation Value Display. */
33
+ export interface CustomLocationOperationValueDisplay {
34
+ /** The description of the operation. */
35
+ readonly description?: string;
36
+ /** The display name of the compute operation. */
37
+ readonly operation?: string;
38
+ /** The resource provider for the operation. */
39
+ readonly provider?: string;
40
+ /** The display name of the resource the operation applies to. */
41
+ readonly resource?: string;
42
+ }
43
+ export declare function customLocationOperationValueDisplayDeserializer(item: any): CustomLocationOperationValueDisplay;
44
+ /** Common error response for all Azure Resource Manager APIs to return error details for failed operations. */
45
+ export interface ErrorResponse {
46
+ /** The error object. */
47
+ error?: ErrorDetail;
48
+ }
49
+ export declare function errorResponseDeserializer(item: any): ErrorResponse;
50
+ /** The error detail. */
51
+ export interface ErrorDetail {
52
+ /** The error code. */
53
+ readonly code?: string;
54
+ /** The error message. */
55
+ readonly message?: string;
56
+ /** The error target. */
57
+ readonly target?: string;
58
+ /** The error details. */
59
+ readonly details?: ErrorDetail[];
60
+ /** The error additional info. */
61
+ readonly additionalInfo?: ErrorAdditionalInfo[];
62
+ }
63
+ export declare function errorDetailDeserializer(item: any): ErrorDetail;
64
+ export declare function errorDetailArrayDeserializer(result: Array<ErrorDetail>): any[];
65
+ export declare function errorAdditionalInfoArrayDeserializer(result: Array<ErrorAdditionalInfo>): any[];
66
+ /** The resource management error additional info. */
67
+ export interface ErrorAdditionalInfo {
68
+ /** The additional info type. */
69
+ readonly type?: string;
70
+ /** The additional info. */
71
+ readonly info?: any;
72
+ }
73
+ export declare function errorAdditionalInfoDeserializer(item: any): ErrorAdditionalInfo;
74
+ /** Custom Locations definition. */
75
+ export interface CustomLocation extends TrackedResource {
76
+ /** Identity for the resource. */
77
+ identity?: Identity;
78
+ /** This is optional input that contains the authentication that should be used to generate the namespace. */
79
+ authentication?: CustomLocationPropertiesAuthentication;
80
+ /** Contains the reference to the add-on that contains charts to deploy CRDs and operators. */
81
+ clusterExtensionIds?: string[];
82
+ /** Display name for the Custom Locations location. */
83
+ displayName?: string;
84
+ /** Connected Cluster or AKS Cluster. The Custom Locations RP will perform a checkAccess API for listAdminCredentials permissions. */
85
+ hostResourceId?: string;
86
+ /** Type of host the Custom Locations is referencing (Kubernetes, etc...). */
87
+ hostType?: HostType;
88
+ /** Kubernetes namespace that will be created on the specified cluster. */
89
+ namespace?: string;
90
+ /** Provisioning State for the Custom Location. */
91
+ provisioningState?: string;
92
+ }
93
+ export declare function customLocationSerializer(item: CustomLocation): any;
94
+ export declare function customLocationDeserializer(item: any): CustomLocation;
95
+ /** Properties for a custom location. */
96
+ export interface CustomLocationProperties {
97
+ /** This is optional input that contains the authentication that should be used to generate the namespace. */
98
+ authentication?: CustomLocationPropertiesAuthentication;
99
+ /** Contains the reference to the add-on that contains charts to deploy CRDs and operators. */
100
+ clusterExtensionIds?: string[];
101
+ /** Display name for the Custom Locations location. */
102
+ displayName?: string;
103
+ /** Connected Cluster or AKS Cluster. The Custom Locations RP will perform a checkAccess API for listAdminCredentials permissions. */
104
+ hostResourceId?: string;
105
+ /** Type of host the Custom Locations is referencing (Kubernetes, etc...). */
106
+ hostType?: HostType;
107
+ /** Kubernetes namespace that will be created on the specified cluster. */
108
+ namespace?: string;
109
+ /** Provisioning State for the Custom Location. */
110
+ provisioningState?: string;
111
+ }
112
+ export declare function customLocationPropertiesSerializer(item: CustomLocationProperties): any;
113
+ export declare function customLocationPropertiesDeserializer(item: any): CustomLocationProperties;
114
+ /** This is optional input that contains the authentication that should be used to generate the namespace. */
115
+ export interface CustomLocationPropertiesAuthentication {
116
+ /** The type of the Custom Locations authentication */
117
+ type?: string;
118
+ /** The kubeconfig value. */
119
+ value?: string;
120
+ }
121
+ export declare function customLocationPropertiesAuthenticationSerializer(item: CustomLocationPropertiesAuthentication): any;
122
+ export declare function customLocationPropertiesAuthenticationDeserializer(item: any): CustomLocationPropertiesAuthentication;
123
+ /** Type of host the Custom Locations is referencing (Kubernetes, etc...). */
124
+ export declare enum KnownHostType {
125
+ /** Kubernetes */
126
+ Kubernetes = "Kubernetes"
127
+ }
128
+ /**
129
+ * Type of host the Custom Locations is referencing (Kubernetes, etc...). \
130
+ * {@link KnownHostType} can be used interchangeably with HostType,
131
+ * this enum contains the known values that the service supports.
132
+ * ### Known values supported by the service
133
+ * **Kubernetes**: Kubernetes
134
+ */
135
+ export type HostType = string;
136
+ /** Identity for the resource. */
137
+ export interface Identity {
138
+ /** The principal ID of resource identity. */
139
+ readonly principalId?: string;
140
+ /** The tenant ID of resource. */
141
+ readonly tenantId?: string;
142
+ /** The identity type. */
143
+ type?: ResourceIdentityType;
144
+ }
145
+ export declare function identitySerializer(item: Identity): any;
146
+ export declare function identityDeserializer(item: any): Identity;
147
+ /** The identity type. */
148
+ export declare enum KnownResourceIdentityType {
149
+ /** SystemAssigned */
150
+ SystemAssigned = "SystemAssigned",
151
+ /** None */
152
+ None = "None"
153
+ }
154
+ /**
155
+ * The identity type. \
156
+ * {@link KnownResourceIdentityType} can be used interchangeably with ResourceIdentityType,
157
+ * this enum contains the known values that the service supports.
158
+ * ### Known values supported by the service
159
+ * **SystemAssigned**: SystemAssigned \
160
+ * **None**: None
161
+ */
162
+ export type ResourceIdentityType = string;
163
+ /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
164
+ export interface TrackedResource extends Resource {
165
+ /** Resource tags. */
166
+ tags?: Record<string, string>;
167
+ /** The geo-location where the resource lives */
168
+ location: string;
169
+ }
170
+ export declare function trackedResourceSerializer(item: TrackedResource): any;
171
+ export declare function trackedResourceDeserializer(item: any): TrackedResource;
172
+ /** Common fields that are returned in the response for all Azure Resource Manager resources */
173
+ export interface Resource {
174
+ /** Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */
175
+ readonly id?: string;
176
+ /** The name of the resource */
177
+ readonly name?: string;
178
+ /** The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */
179
+ readonly type?: string;
180
+ /** Azure Resource Manager metadata containing createdBy and modifiedBy information. */
181
+ readonly systemData?: SystemData;
182
+ }
183
+ export declare function resourceSerializer(_item: Resource): any;
184
+ export declare function resourceDeserializer(item: any): Resource;
185
+ /** Metadata pertaining to creation and last modification of the resource. */
186
+ export interface SystemData {
187
+ /** The identity that created the resource. */
188
+ createdBy?: string;
189
+ /** The type of identity that created the resource. */
190
+ createdByType?: CreatedByType;
191
+ /** The timestamp of resource creation (UTC). */
192
+ createdAt?: Date;
193
+ /** The identity that last modified the resource. */
194
+ lastModifiedBy?: string;
195
+ /** The type of identity that last modified the resource. */
196
+ lastModifiedByType?: CreatedByType;
197
+ /** The timestamp of resource last modification (UTC) */
198
+ lastModifiedAt?: Date;
199
+ }
200
+ export declare function systemDataDeserializer(item: any): SystemData;
201
+ /** The kind of entity that created the resource. */
202
+ export declare enum KnownCreatedByType {
203
+ /** The entity was created by a user. */
204
+ User = "User",
205
+ /** The entity was created by an application. */
206
+ Application = "Application",
207
+ /** The entity was created by a managed identity. */
208
+ ManagedIdentity = "ManagedIdentity",
209
+ /** The entity was created by a key. */
210
+ Key = "Key"
211
+ }
212
+ /**
213
+ * The kind of entity that created the resource. \
214
+ * {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
215
+ * this enum contains the known values that the service supports.
216
+ * ### Known values supported by the service
217
+ * **User**: The entity was created by a user. \
218
+ * **Application**: The entity was created by an application. \
219
+ * **ManagedIdentity**: The entity was created by a managed identity. \
220
+ * **Key**: The entity was created by a key.
221
+ */
222
+ export type CreatedByType = string;
223
+ /** The Custom Locations patchable resource definition. */
224
+ export interface PatchableCustomLocations {
225
+ /** Identity for the resource. */
226
+ identity?: Identity;
227
+ /** The Custom Locations patchable properties. */
228
+ properties?: CustomLocationProperties;
229
+ /** Resource tags */
230
+ tags?: Record<string, string>;
231
+ }
232
+ export declare function patchableCustomLocationsSerializer(item: PatchableCustomLocations): any;
233
+ /** The List Custom Locations operation response. */
234
+ export interface _CustomLocationListResult {
235
+ /** The URL to use for getting the next set of results. */
236
+ readonly nextLink?: string;
237
+ /** The list of Custom Locations. */
238
+ readonly value?: CustomLocation[];
239
+ }
240
+ export declare function _customLocationListResultDeserializer(item: any): _CustomLocationListResult;
241
+ export declare function customLocationArraySerializer(result: Array<CustomLocation>): any[];
242
+ export declare function customLocationArrayDeserializer(result: Array<CustomLocation>): any[];
243
+ /** List of EnabledResourceTypes definition. */
244
+ export interface _EnabledResourceTypesListResult {
245
+ /** The URL to use for getting the next set of results. */
246
+ readonly nextLink?: string;
247
+ /** The list of EnabledResourceTypes available for a customLocation. */
248
+ readonly value?: EnabledResourceType[];
249
+ }
250
+ export declare function _enabledResourceTypesListResultDeserializer(item: any): _EnabledResourceTypesListResult;
251
+ export declare function enabledResourceTypeArrayDeserializer(result: Array<EnabledResourceType>): any[];
252
+ /** EnabledResourceType definition. */
253
+ export interface EnabledResourceType extends ProxyResource {
254
+ /** Metadata pertaining to creation and last modification of the resource */
255
+ readonly systemData?: SystemData;
256
+ /** Cluster Extension ID */
257
+ clusterExtensionId?: string;
258
+ /** Cluster Extension Type */
259
+ extensionType?: string;
260
+ /** Metadata of the Resource Type */
261
+ typesMetadata?: EnabledResourceTypePropertiesTypesMetadataItem[];
262
+ }
263
+ export declare function enabledResourceTypeDeserializer(item: any): EnabledResourceType;
264
+ /** Properties for EnabledResourceType of a custom location. */
265
+ export interface EnabledResourceTypeProperties {
266
+ /** Cluster Extension ID */
267
+ clusterExtensionId?: string;
268
+ /** Cluster Extension Type */
269
+ extensionType?: string;
270
+ /** Metadata of the Resource Type */
271
+ typesMetadata?: EnabledResourceTypePropertiesTypesMetadataItem[];
272
+ }
273
+ export declare function enabledResourceTypePropertiesDeserializer(item: any): EnabledResourceTypeProperties;
274
+ export declare function enabledResourceTypePropertiesTypesMetadataItemArrayDeserializer(result: Array<EnabledResourceTypePropertiesTypesMetadataItem>): any[];
275
+ /** Metadata of the Resource Type. */
276
+ export interface EnabledResourceTypePropertiesTypesMetadataItem {
277
+ /** Api Version of Resource Type */
278
+ apiVersion?: string;
279
+ /** Resource Provider Namespace of Resource Type */
280
+ resourceProviderNamespace?: string;
281
+ /** Resource Type */
282
+ resourceType?: string;
283
+ }
284
+ export declare function enabledResourceTypePropertiesTypesMetadataItemDeserializer(item: any): EnabledResourceTypePropertiesTypesMetadataItem;
285
+ /** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
286
+ export interface ProxyResource extends Resource {
287
+ }
288
+ export declare function proxyResourceDeserializer(item: any): ProxyResource;
289
+ /** The Find Target Resource Group operation request. */
290
+ export interface CustomLocationFindTargetResourceGroupProperties {
291
+ /** Labels of the custom resource, this is a map of {key,value} pairs. */
292
+ labels?: Record<string, string>;
293
+ }
294
+ export declare function customLocationFindTargetResourceGroupPropertiesSerializer(item: CustomLocationFindTargetResourceGroupProperties): any;
295
+ /** The Find Target Resource Group operation response. */
296
+ export interface CustomLocationFindTargetResourceGroupResult {
297
+ /** The matching resource sync rule is the particular resource sync rule that matched the match expressions and labels and had lowest priority. This is the rule responsible for mapping the target resource to the target resource group. */
298
+ readonly matchedResourceSyncRule?: string;
299
+ /** The target resource group of matching resource sync rule. The labels from the request will be used to find out matching resource sync rule against the selector property of the resource sync rule. The one with highest priority will be returned if there are multiple matching rules. */
300
+ readonly targetResourceGroup?: string;
301
+ }
302
+ export declare function customLocationFindTargetResourceGroupResultDeserializer(item: any): CustomLocationFindTargetResourceGroupResult;
303
+ /** Resource Sync Rules definition. */
304
+ export interface ResourceSyncRule extends TrackedResource {
305
+ /** Priority represents a priority of the Resource Sync Rule */
306
+ priority?: number;
307
+ /** Provisioning State for the Resource Sync Rule. */
308
+ readonly provisioningState?: string;
309
+ /** A label selector is composed of two parts, matchLabels and matchExpressions. The first part, matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. The second part, matchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. All of the requirements, from both matchLabels and matchExpressions must all be satisfied in order to match. */
310
+ selector?: ResourceSyncRulePropertiesSelector;
311
+ /** For an unmapped custom resource, its labels will be used to find matching resource sync rules. If this resource sync rule is one of the matching rules with highest priority, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. The user creating this resource sync rule should have write permissions on the target resource group and this write permission will be validated when creating the resource sync rule. */
312
+ targetResourceGroup?: string;
313
+ }
314
+ export declare function resourceSyncRuleSerializer(item: ResourceSyncRule): any;
315
+ export declare function resourceSyncRuleDeserializer(item: any): ResourceSyncRule;
316
+ /** Properties for a resource sync rule. For an unmapped custom resource, its labels will be used to find out matching resource sync rules using the selector property of the resource sync rule. If this resource sync rule has highest priority among all matching rules, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. */
317
+ export interface ResourceSyncRuleProperties {
318
+ /** Priority represents a priority of the Resource Sync Rule */
319
+ priority?: number;
320
+ /** Provisioning State for the Resource Sync Rule. */
321
+ readonly provisioningState?: string;
322
+ /** A label selector is composed of two parts, matchLabels and matchExpressions. The first part, matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. The second part, matchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. All of the requirements, from both matchLabels and matchExpressions must all be satisfied in order to match. */
323
+ selector?: ResourceSyncRulePropertiesSelector;
324
+ /** For an unmapped custom resource, its labels will be used to find matching resource sync rules. If this resource sync rule is one of the matching rules with highest priority, then the unmapped custom resource will be projected to the target resource group associated with this resource sync rule. The user creating this resource sync rule should have write permissions on the target resource group and this write permission will be validated when creating the resource sync rule. */
325
+ targetResourceGroup?: string;
326
+ }
327
+ export declare function resourceSyncRulePropertiesSerializer(item: ResourceSyncRuleProperties): any;
328
+ export declare function resourceSyncRulePropertiesDeserializer(item: any): ResourceSyncRuleProperties;
329
+ /** A label selector is composed of two parts, matchLabels and matchExpressions. The first part, matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. The second part, matchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. All of the requirements, from both matchLabels and matchExpressions must all be satisfied in order to match. */
330
+ export interface ResourceSyncRulePropertiesSelector {
331
+ /** MatchExpressions is a list of resource selector requirements. Valid operators include In, NotIn, Exists, and DoesNotExist. The values set must be non-empty in the case of In and NotIn. The values set must be empty in the case of Exists and DoesNotExist. */
332
+ matchExpressions?: MatchExpressionsProperties[];
333
+ /** MatchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is 'key', the operator is 'In', and the values array contains only 'value'. */
334
+ matchLabels?: Record<string, string>;
335
+ }
336
+ export declare function resourceSyncRulePropertiesSelectorSerializer(item: ResourceSyncRulePropertiesSelector): any;
337
+ export declare function resourceSyncRulePropertiesSelectorDeserializer(item: any): ResourceSyncRulePropertiesSelector;
338
+ export declare function matchExpressionsPropertiesArraySerializer(result: Array<MatchExpressionsProperties>): any[];
339
+ export declare function matchExpressionsPropertiesArrayDeserializer(result: Array<MatchExpressionsProperties>): any[];
340
+ /** Resource Sync Rules matchExpression property definition. */
341
+ export interface MatchExpressionsProperties {
342
+ /** Key is the label key that the selector applies to. */
343
+ key?: string;
344
+ /** The Operator field represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. */
345
+ operator?: string;
346
+ /** The label value */
347
+ values?: string[];
348
+ }
349
+ export declare function matchExpressionsPropertiesSerializer(item: MatchExpressionsProperties): any;
350
+ export declare function matchExpressionsPropertiesDeserializer(item: any): MatchExpressionsProperties;
351
+ /** The Resource Sync Rules patchable resource definition. */
352
+ export interface PatchableResourceSyncRule {
353
+ /** The Resource Sync Rules patchable properties. */
354
+ properties?: ResourceSyncRuleProperties;
355
+ /** Resource tags */
356
+ tags?: Record<string, string>;
357
+ }
358
+ export declare function patchableResourceSyncRuleSerializer(item: PatchableResourceSyncRule): any;
359
+ /** The List Resource Sync Rules operation response. */
360
+ export interface _ResourceSyncRuleListResult {
361
+ /** The URL to use for getting the next set of results. */
362
+ readonly nextLink?: string;
363
+ /** The list of Resource Sync Rules. */
364
+ readonly value?: ResourceSyncRule[];
365
+ }
366
+ export declare function _resourceSyncRuleListResultDeserializer(item: any): _ResourceSyncRuleListResult;
367
+ export declare function resourceSyncRuleArraySerializer(result: Array<ResourceSyncRule>): any[];
368
+ export declare function resourceSyncRuleArrayDeserializer(result: Array<ResourceSyncRule>): any[];
369
+ /** The available API versions. */
370
+ export declare enum KnownVersions {
371
+ /** The 2021-08-31-preview API version. */
372
+ V20210831Preview = "2021-08-31-preview"
373
+ }
374
+ export declare function _customLocationOperationDisplayDeserializer(item: any): {
375
+ description: any;
376
+ operation: any;
377
+ provider: any;
378
+ resource: any;
379
+ };
380
+ export declare function _customLocationPropertiesSerializer(item: CustomLocation): any;
381
+ export declare function _customLocationPropertiesDeserializer(item: any): {
382
+ authentication: any;
383
+ clusterExtensionIds: any;
384
+ displayName: any;
385
+ hostResourceId: any;
386
+ hostType: any;
387
+ namespace: any;
388
+ provisioningState: any;
389
+ };
390
+ export declare function _enabledResourceTypePropertiesDeserializer(item: any): {
391
+ clusterExtensionId: any;
392
+ extensionType: any;
393
+ typesMetadata: any;
394
+ };
395
+ export declare function _resourceSyncRulePropertiesSerializer(item: ResourceSyncRule): any;
396
+ export declare function _resourceSyncRulePropertiesDeserializer(item: any): {
397
+ priority: any;
398
+ provisioningState: any;
399
+ selector: any;
400
+ targetResourceGroup: any;
401
+ };
402
+ //# sourceMappingURL=models.d.ts.map