pulumi-azure-native 2.72.0a1731341920__py3-none-any.whl → 2.72.0a1731506636__py3-none-any.whl

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.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

Files changed (1100) hide show
  1. pulumi_azure_native/__init__.py +165 -40
  2. pulumi_azure_native/apicenter/__init__.py +5 -0
  3. pulumi_azure_native/apicenter/_enums.py +19 -0
  4. pulumi_azure_native/apicenter/_inputs.py +57 -0
  5. pulumi_azure_native/apicenter/api.py +3 -3
  6. pulumi_azure_native/apicenter/api_definition.py +3 -3
  7. pulumi_azure_native/apicenter/api_source.py +345 -0
  8. pulumi_azure_native/apicenter/api_version.py +3 -3
  9. pulumi_azure_native/apicenter/deployment.py +3 -3
  10. pulumi_azure_native/apicenter/environment.py +3 -3
  11. pulumi_azure_native/apicenter/get_api.py +2 -2
  12. pulumi_azure_native/apicenter/get_api_definition.py +2 -2
  13. pulumi_azure_native/apicenter/get_api_source.py +213 -0
  14. pulumi_azure_native/apicenter/get_api_version.py +2 -2
  15. pulumi_azure_native/apicenter/get_deployment.py +2 -2
  16. pulumi_azure_native/apicenter/get_environment.py +2 -2
  17. pulumi_azure_native/apicenter/get_metadata_schema.py +2 -2
  18. pulumi_azure_native/apicenter/get_service.py +2 -2
  19. pulumi_azure_native/apicenter/get_workspace.py +2 -2
  20. pulumi_azure_native/apicenter/metadata_schema.py +3 -3
  21. pulumi_azure_native/apicenter/outputs.py +118 -0
  22. pulumi_azure_native/apicenter/service.py +3 -3
  23. pulumi_azure_native/apicenter/v20230701preview/service.py +1 -1
  24. pulumi_azure_native/apicenter/v20240301/api.py +1 -1
  25. pulumi_azure_native/apicenter/v20240301/api_definition.py +1 -1
  26. pulumi_azure_native/apicenter/v20240301/api_version.py +1 -1
  27. pulumi_azure_native/apicenter/v20240301/deployment.py +1 -1
  28. pulumi_azure_native/apicenter/v20240301/environment.py +1 -1
  29. pulumi_azure_native/apicenter/v20240301/metadata_schema.py +1 -1
  30. pulumi_azure_native/apicenter/v20240301/service.py +1 -1
  31. pulumi_azure_native/apicenter/v20240301/workspace.py +1 -1
  32. pulumi_azure_native/apicenter/v20240315preview/api.py +1 -1
  33. pulumi_azure_native/apicenter/v20240315preview/api_definition.py +1 -1
  34. pulumi_azure_native/apicenter/v20240315preview/api_version.py +1 -1
  35. pulumi_azure_native/apicenter/v20240315preview/deployment.py +1 -1
  36. pulumi_azure_native/apicenter/v20240315preview/environment.py +1 -1
  37. pulumi_azure_native/apicenter/v20240315preview/metadata_schema.py +1 -1
  38. pulumi_azure_native/apicenter/v20240315preview/service.py +1 -1
  39. pulumi_azure_native/apicenter/v20240315preview/workspace.py +1 -1
  40. pulumi_azure_native/apicenter/v20240601preview/__init__.py +28 -0
  41. pulumi_azure_native/apicenter/v20240601preview/_enums.py +196 -0
  42. pulumi_azure_native/apicenter/v20240601preview/_inputs.py +644 -0
  43. pulumi_azure_native/apicenter/v20240601preview/api.py +486 -0
  44. pulumi_azure_native/apicenter/v20240601preview/api_definition.py +322 -0
  45. pulumi_azure_native/apicenter/v20240601preview/api_source.py +343 -0
  46. pulumi_azure_native/apicenter/v20240601preview/api_version.py +293 -0
  47. pulumi_azure_native/apicenter/v20240601preview/deployment.py +437 -0
  48. pulumi_azure_native/apicenter/v20240601preview/environment.py +389 -0
  49. pulumi_azure_native/apicenter/v20240601preview/get_api.py +281 -0
  50. pulumi_azure_native/apicenter/v20240601preview/get_api_definition.py +195 -0
  51. pulumi_azure_native/apicenter/v20240601preview/get_api_source.py +211 -0
  52. pulumi_azure_native/apicenter/v20240601preview/get_api_version.py +175 -0
  53. pulumi_azure_native/apicenter/v20240601preview/get_deployment.py +245 -0
  54. pulumi_azure_native/apicenter/v20240601preview/get_environment.py +225 -0
  55. pulumi_azure_native/apicenter/v20240601preview/get_metadata_schema.py +163 -0
  56. pulumi_azure_native/{mobilepacketcore/v20231015preview/get_observability_service.py → apicenter/v20240601preview/get_service.py} +49 -77
  57. pulumi_azure_native/apicenter/v20240601preview/get_workspace.py +163 -0
  58. pulumi_azure_native/apicenter/v20240601preview/metadata_schema.py +251 -0
  59. pulumi_azure_native/apicenter/v20240601preview/outputs.py +782 -0
  60. pulumi_azure_native/{mobilepacketcore/v20231015preview/smf_deployment.py → apicenter/v20240601preview/service.py} +79 -123
  61. pulumi_azure_native/apicenter/v20240601preview/workspace.py +249 -0
  62. pulumi_azure_native/apicenter/workspace.py +3 -3
  63. pulumi_azure_native/containerservice/__init__.py +3 -0
  64. pulumi_azure_native/containerservice/agent_pool.py +3 -3
  65. pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
  66. pulumi_azure_native/containerservice/get_load_balancer.py +2 -2
  67. pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
  68. pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
  69. pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
  70. pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
  71. pulumi_azure_native/containerservice/get_snapshot.py +2 -2
  72. pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
  73. pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
  74. pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
  75. pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
  76. pulumi_azure_native/containerservice/load_balancer.py +3 -3
  77. pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
  78. pulumi_azure_native/containerservice/managed_cluster.py +3 -3
  79. pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
  80. pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
  81. pulumi_azure_native/containerservice/snapshot.py +3 -3
  82. pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
  83. pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
  84. pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
  85. pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
  86. pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
  87. pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
  88. pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
  89. pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
  90. pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
  91. pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
  92. pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
  93. pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
  94. pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
  95. pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
  96. pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
  97. pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
  98. pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
  99. pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
  100. pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
  101. pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
  102. pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
  103. pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
  104. pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
  105. pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
  106. pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
  107. pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
  108. pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
  109. pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
  110. pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
  111. pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
  112. pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
  113. pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
  114. pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
  115. pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
  116. pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
  117. pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
  118. pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
  119. pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
  120. pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
  121. pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
  122. pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
  123. pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
  124. pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
  125. pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
  126. pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
  127. pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
  128. pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
  129. pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
  130. pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
  131. pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
  132. pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
  133. pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
  134. pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
  135. pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
  136. pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
  137. pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
  138. pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
  139. pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
  140. pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
  141. pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
  142. pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
  143. pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
  144. pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
  145. pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
  146. pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
  147. pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
  148. pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
  149. pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
  150. pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
  151. pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
  152. pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
  153. pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
  154. pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
  155. pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
  156. pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
  157. pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
  158. pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
  159. pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
  160. pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
  161. pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
  162. pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
  163. pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
  164. pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
  165. pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
  166. pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
  167. pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
  168. pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
  169. pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
  170. pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
  171. pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
  172. pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
  173. pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
  174. pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
  175. pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
  176. pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
  177. pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
  178. pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
  179. pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
  180. pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
  181. pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
  182. pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
  183. pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
  184. pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
  185. pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +1 -1
  186. pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
  187. pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
  188. pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
  189. pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
  190. pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
  191. pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
  192. pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
  193. pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
  194. pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
  195. pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
  196. pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
  197. pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
  198. pulumi_azure_native/containerservice/v20240202preview/managed_cluster_snapshot.py +1 -1
  199. pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
  200. pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
  201. pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
  202. pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1 -1
  203. pulumi_azure_native/containerservice/v20240302preview/load_balancer.py +1 -1
  204. pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +1 -1
  205. pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1 -1
  206. pulumi_azure_native/containerservice/v20240302preview/managed_cluster_snapshot.py +1 -1
  207. pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +1 -1
  208. pulumi_azure_native/containerservice/v20240302preview/snapshot.py +1 -1
  209. pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +1 -1
  210. pulumi_azure_native/containerservice/v20240402preview/agent_pool.py +1 -1
  211. pulumi_azure_native/containerservice/v20240402preview/load_balancer.py +1 -1
  212. pulumi_azure_native/containerservice/v20240402preview/maintenance_configuration.py +1 -1
  213. pulumi_azure_native/containerservice/v20240402preview/managed_cluster.py +1 -1
  214. pulumi_azure_native/containerservice/v20240402preview/managed_cluster_snapshot.py +1 -1
  215. pulumi_azure_native/containerservice/v20240402preview/private_endpoint_connection.py +1 -1
  216. pulumi_azure_native/containerservice/v20240402preview/snapshot.py +1 -1
  217. pulumi_azure_native/containerservice/v20240402preview/trusted_access_role_binding.py +1 -1
  218. pulumi_azure_native/containerservice/v20240501/agent_pool.py +1 -1
  219. pulumi_azure_native/containerservice/v20240501/maintenance_configuration.py +1 -1
  220. pulumi_azure_native/containerservice/v20240501/managed_cluster.py +1 -1
  221. pulumi_azure_native/containerservice/v20240501/private_endpoint_connection.py +1 -1
  222. pulumi_azure_native/containerservice/v20240501/snapshot.py +1 -1
  223. pulumi_azure_native/containerservice/v20240501/trusted_access_role_binding.py +1 -1
  224. pulumi_azure_native/containerservice/v20240502preview/agent_pool.py +1 -1
  225. pulumi_azure_native/containerservice/v20240502preview/load_balancer.py +1 -1
  226. pulumi_azure_native/containerservice/v20240502preview/maintenance_configuration.py +1 -1
  227. pulumi_azure_native/containerservice/v20240502preview/managed_cluster.py +1 -1
  228. pulumi_azure_native/containerservice/v20240502preview/managed_cluster_snapshot.py +1 -1
  229. pulumi_azure_native/containerservice/v20240502preview/private_endpoint_connection.py +1 -1
  230. pulumi_azure_native/containerservice/v20240502preview/snapshot.py +1 -1
  231. pulumi_azure_native/containerservice/v20240502preview/trusted_access_role_binding.py +1 -1
  232. pulumi_azure_native/containerservice/v20240602preview/agent_pool.py +1 -1
  233. pulumi_azure_native/containerservice/v20240602preview/load_balancer.py +1 -1
  234. pulumi_azure_native/containerservice/v20240602preview/maintenance_configuration.py +1 -1
  235. pulumi_azure_native/containerservice/v20240602preview/managed_cluster.py +1 -1
  236. pulumi_azure_native/containerservice/v20240602preview/managed_cluster_snapshot.py +1 -1
  237. pulumi_azure_native/containerservice/v20240602preview/private_endpoint_connection.py +1 -1
  238. pulumi_azure_native/containerservice/v20240602preview/snapshot.py +1 -1
  239. pulumi_azure_native/containerservice/v20240602preview/trusted_access_role_binding.py +1 -1
  240. pulumi_azure_native/containerservice/v20240701/agent_pool.py +1 -1
  241. pulumi_azure_native/containerservice/v20240701/maintenance_configuration.py +1 -1
  242. pulumi_azure_native/containerservice/v20240701/managed_cluster.py +1 -1
  243. pulumi_azure_native/containerservice/v20240701/private_endpoint_connection.py +1 -1
  244. pulumi_azure_native/containerservice/v20240701/snapshot.py +1 -1
  245. pulumi_azure_native/containerservice/v20240701/trusted_access_role_binding.py +1 -1
  246. pulumi_azure_native/containerservice/v20240702preview/agent_pool.py +1 -1
  247. pulumi_azure_native/containerservice/v20240702preview/load_balancer.py +1 -1
  248. pulumi_azure_native/containerservice/v20240702preview/maintenance_configuration.py +1 -1
  249. pulumi_azure_native/containerservice/v20240702preview/managed_cluster.py +1 -1
  250. pulumi_azure_native/containerservice/v20240702preview/managed_cluster_snapshot.py +1 -1
  251. pulumi_azure_native/containerservice/v20240702preview/private_endpoint_connection.py +1 -1
  252. pulumi_azure_native/containerservice/v20240702preview/snapshot.py +1 -1
  253. pulumi_azure_native/containerservice/v20240702preview/trusted_access_role_binding.py +1 -1
  254. pulumi_azure_native/containerservice/v20240801/agent_pool.py +1 -1
  255. pulumi_azure_native/containerservice/v20240801/maintenance_configuration.py +1 -1
  256. pulumi_azure_native/containerservice/v20240801/managed_cluster.py +1 -1
  257. pulumi_azure_native/containerservice/v20240801/private_endpoint_connection.py +1 -1
  258. pulumi_azure_native/containerservice/v20240801/snapshot.py +1 -1
  259. pulumi_azure_native/containerservice/v20240801/trusted_access_role_binding.py +1 -1
  260. pulumi_azure_native/containerservice/v20240901/agent_pool.py +1 -1
  261. pulumi_azure_native/containerservice/v20240901/maintenance_configuration.py +1 -1
  262. pulumi_azure_native/containerservice/v20240901/managed_cluster.py +1 -1
  263. pulumi_azure_native/containerservice/v20240901/private_endpoint_connection.py +1 -1
  264. pulumi_azure_native/containerservice/v20240901/snapshot.py +1 -1
  265. pulumi_azure_native/containerservice/v20240901/trusted_access_role_binding.py +1 -1
  266. pulumi_azure_native/containerservice/v20240902preview/__init__.py +29 -0
  267. pulumi_azure_native/containerservice/v20240902preview/_enums.py +921 -0
  268. pulumi_azure_native/containerservice/v20240902preview/_inputs.py +9712 -0
  269. pulumi_azure_native/containerservice/v20240902preview/agent_pool.py +1691 -0
  270. pulumi_azure_native/containerservice/v20240902preview/get_agent_pool.py +877 -0
  271. pulumi_azure_native/containerservice/v20240902preview/get_load_balancer.py +219 -0
  272. pulumi_azure_native/containerservice/v20240902preview/get_maintenance_configuration.py +177 -0
  273. pulumi_azure_native/containerservice/v20240902preview/get_managed_cluster.py +899 -0
  274. pulumi_azure_native/containerservice/v20240902preview/get_managed_cluster_snapshot.py +199 -0
  275. pulumi_azure_native/containerservice/v20240902preview/get_private_endpoint_connection.py +163 -0
  276. pulumi_azure_native/containerservice/v20240902preview/get_snapshot.py +269 -0
  277. pulumi_azure_native/containerservice/v20240902preview/get_trusted_access_role_binding.py +177 -0
  278. pulumi_azure_native/containerservice/v20240902preview/list_managed_cluster_admin_credentials.py +93 -0
  279. pulumi_azure_native/containerservice/v20240902preview/list_managed_cluster_monitoring_user_credentials.py +93 -0
  280. pulumi_azure_native/containerservice/v20240902preview/list_managed_cluster_user_credentials.py +99 -0
  281. pulumi_azure_native/containerservice/v20240902preview/load_balancer.py +368 -0
  282. pulumi_azure_native/containerservice/v20240902preview/maintenance_configuration.py +279 -0
  283. pulumi_azure_native/containerservice/v20240902preview/managed_cluster.py +1595 -0
  284. pulumi_azure_native/containerservice/v20240902preview/managed_cluster_snapshot.py +297 -0
  285. pulumi_azure_native/containerservice/v20240902preview/outputs.py +8333 -0
  286. pulumi_azure_native/containerservice/v20240902preview/private_endpoint_connection.py +251 -0
  287. pulumi_azure_native/containerservice/v20240902preview/snapshot.py +347 -0
  288. pulumi_azure_native/containerservice/v20240902preview/trusted_access_role_binding.py +260 -0
  289. pulumi_azure_native/dashboard/v20231001preview/_inputs.py +58 -0
  290. pulumi_azure_native/dashboard/v20231001preview/outputs.py +53 -0
  291. pulumi_azure_native/documentdb/__init__.py +3 -0
  292. pulumi_azure_native/documentdb/cassandra_cluster.py +3 -3
  293. pulumi_azure_native/documentdb/cassandra_data_center.py +3 -3
  294. pulumi_azure_native/documentdb/cassandra_resource_cassandra_keyspace.py +3 -3
  295. pulumi_azure_native/documentdb/cassandra_resource_cassandra_table.py +3 -3
  296. pulumi_azure_native/documentdb/database_account.py +3 -3
  297. pulumi_azure_native/documentdb/get_cassandra_cluster.py +2 -2
  298. pulumi_azure_native/documentdb/get_cassandra_data_center.py +2 -2
  299. pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
  300. pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_table.py +2 -2
  301. pulumi_azure_native/documentdb/get_database_account.py +2 -2
  302. pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_database.py +2 -2
  303. pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_graph.py +2 -2
  304. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
  305. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_database.py +2 -2
  306. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
  307. pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
  308. pulumi_azure_native/documentdb/get_notebook_workspace.py +2 -2
  309. pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
  310. pulumi_azure_native/documentdb/get_service.py +2 -2
  311. pulumi_azure_native/documentdb/get_sql_resource_sql_container.py +2 -2
  312. pulumi_azure_native/documentdb/get_sql_resource_sql_database.py +2 -2
  313. pulumi_azure_native/documentdb/get_sql_resource_sql_role_assignment.py +2 -2
  314. pulumi_azure_native/documentdb/get_sql_resource_sql_role_definition.py +2 -2
  315. pulumi_azure_native/documentdb/get_sql_resource_sql_stored_procedure.py +2 -2
  316. pulumi_azure_native/documentdb/get_sql_resource_sql_trigger.py +2 -2
  317. pulumi_azure_native/documentdb/get_sql_resource_sql_user_defined_function.py +2 -2
  318. pulumi_azure_native/documentdb/get_table_resource_table.py +2 -2
  319. pulumi_azure_native/documentdb/gremlin_resource_gremlin_database.py +3 -3
  320. pulumi_azure_native/documentdb/gremlin_resource_gremlin_graph.py +3 -3
  321. pulumi_azure_native/documentdb/list_database_account_connection_strings.py +2 -2
  322. pulumi_azure_native/documentdb/list_database_account_keys.py +2 -2
  323. pulumi_azure_native/documentdb/list_notebook_workspace_connection_info.py +2 -2
  324. pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_collection.py +3 -3
  325. pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_database.py +3 -3
  326. pulumi_azure_native/documentdb/mongo_db_resource_mongo_role_definition.py +3 -3
  327. pulumi_azure_native/documentdb/mongo_db_resource_mongo_user_definition.py +3 -3
  328. pulumi_azure_native/documentdb/notebook_workspace.py +3 -3
  329. pulumi_azure_native/documentdb/private_endpoint_connection.py +3 -3
  330. pulumi_azure_native/documentdb/service.py +3 -3
  331. pulumi_azure_native/documentdb/sql_resource_sql_container.py +3 -3
  332. pulumi_azure_native/documentdb/sql_resource_sql_database.py +3 -3
  333. pulumi_azure_native/documentdb/sql_resource_sql_role_assignment.py +3 -3
  334. pulumi_azure_native/documentdb/sql_resource_sql_role_definition.py +3 -3
  335. pulumi_azure_native/documentdb/sql_resource_sql_stored_procedure.py +3 -3
  336. pulumi_azure_native/documentdb/sql_resource_sql_trigger.py +3 -3
  337. pulumi_azure_native/documentdb/sql_resource_sql_user_defined_function.py +3 -3
  338. pulumi_azure_native/documentdb/table_resource_table.py +3 -3
  339. pulumi_azure_native/documentdb/v20210401preview/database_account.py +1 -1
  340. pulumi_azure_native/documentdb/v20210701preview/cassandra_cluster.py +1 -1
  341. pulumi_azure_native/documentdb/v20230301preview/mongo_db_resource_mongo_role_definition.py +1 -1
  342. pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_keyspace.py +1 -1
  343. pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_table.py +1 -1
  344. pulumi_azure_native/documentdb/v20230315preview/database_account.py +1 -1
  345. pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_database.py +1 -1
  346. pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_graph.py +1 -1
  347. pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_collection.py +1 -1
  348. pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_database.py +1 -1
  349. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_container.py +1 -1
  350. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_database.py +1 -1
  351. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_stored_procedure.py +1 -1
  352. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_trigger.py +1 -1
  353. pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_user_defined_function.py +1 -1
  354. pulumi_azure_native/documentdb/v20230315preview/table_resource_table.py +1 -1
  355. pulumi_azure_native/documentdb/v20230415/cassandra_cluster.py +1 -1
  356. pulumi_azure_native/documentdb/v20230415/cassandra_data_center.py +1 -1
  357. pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_keyspace.py +1 -1
  358. pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_table.py +1 -1
  359. pulumi_azure_native/documentdb/v20230415/database_account.py +1 -1
  360. pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_database.py +1 -1
  361. pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_graph.py +1 -1
  362. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_collection.py +1 -1
  363. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_database.py +1 -1
  364. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_role_definition.py +1 -1
  365. pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_user_definition.py +1 -1
  366. pulumi_azure_native/documentdb/v20230415/notebook_workspace.py +1 -1
  367. pulumi_azure_native/documentdb/v20230415/private_endpoint_connection.py +1 -1
  368. pulumi_azure_native/documentdb/v20230415/service.py +1 -1
  369. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_container.py +1 -1
  370. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_database.py +1 -1
  371. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_assignment.py +1 -1
  372. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_definition.py +1 -1
  373. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_stored_procedure.py +1 -1
  374. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_trigger.py +1 -1
  375. pulumi_azure_native/documentdb/v20230415/sql_resource_sql_user_defined_function.py +1 -1
  376. pulumi_azure_native/documentdb/v20230415/table_resource_table.py +1 -1
  377. pulumi_azure_native/documentdb/v20230915/cassandra_cluster.py +1 -1
  378. pulumi_azure_native/documentdb/v20230915/cassandra_data_center.py +1 -1
  379. pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_keyspace.py +1 -1
  380. pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_table.py +1 -1
  381. pulumi_azure_native/documentdb/v20230915/database_account.py +1 -1
  382. pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_database.py +1 -1
  383. pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_graph.py +1 -1
  384. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_collection.py +1 -1
  385. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_database.py +1 -1
  386. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_role_definition.py +1 -1
  387. pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_user_definition.py +1 -1
  388. pulumi_azure_native/documentdb/v20230915/notebook_workspace.py +1 -1
  389. pulumi_azure_native/documentdb/v20230915/private_endpoint_connection.py +1 -1
  390. pulumi_azure_native/documentdb/v20230915/service.py +1 -1
  391. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_container.py +1 -1
  392. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_database.py +1 -1
  393. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_assignment.py +1 -1
  394. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_definition.py +1 -1
  395. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_stored_procedure.py +1 -1
  396. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_trigger.py +1 -1
  397. pulumi_azure_native/documentdb/v20230915/sql_resource_sql_user_defined_function.py +1 -1
  398. pulumi_azure_native/documentdb/v20230915/table_resource_table.py +1 -1
  399. pulumi_azure_native/documentdb/v20230915preview/cassandra_cluster.py +1 -1
  400. pulumi_azure_native/documentdb/v20230915preview/cassandra_data_center.py +1 -1
  401. pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_keyspace.py +1 -1
  402. pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_table.py +1 -1
  403. pulumi_azure_native/documentdb/v20230915preview/database_account.py +1 -1
  404. pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_database.py +1 -1
  405. pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_graph.py +1 -1
  406. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_collection.py +1 -1
  407. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_database.py +1 -1
  408. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_role_definition.py +1 -1
  409. pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_user_definition.py +1 -1
  410. pulumi_azure_native/documentdb/v20230915preview/notebook_workspace.py +1 -1
  411. pulumi_azure_native/documentdb/v20230915preview/private_endpoint_connection.py +1 -1
  412. pulumi_azure_native/documentdb/v20230915preview/service.py +1 -1
  413. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_container.py +1 -1
  414. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_database.py +1 -1
  415. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_assignment.py +1 -1
  416. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_definition.py +1 -1
  417. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_stored_procedure.py +1 -1
  418. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_trigger.py +1 -1
  419. pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_user_defined_function.py +1 -1
  420. pulumi_azure_native/documentdb/v20230915preview/table_resource_table.py +1 -1
  421. pulumi_azure_native/documentdb/v20231115/cassandra_cluster.py +1 -1
  422. pulumi_azure_native/documentdb/v20231115/cassandra_data_center.py +1 -1
  423. pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_keyspace.py +1 -1
  424. pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_table.py +1 -1
  425. pulumi_azure_native/documentdb/v20231115/database_account.py +1 -1
  426. pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_database.py +1 -1
  427. pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_graph.py +1 -1
  428. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_collection.py +1 -1
  429. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_database.py +1 -1
  430. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_role_definition.py +1 -1
  431. pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_user_definition.py +1 -1
  432. pulumi_azure_native/documentdb/v20231115/notebook_workspace.py +1 -1
  433. pulumi_azure_native/documentdb/v20231115/private_endpoint_connection.py +1 -1
  434. pulumi_azure_native/documentdb/v20231115/service.py +1 -1
  435. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_container.py +1 -1
  436. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_database.py +1 -1
  437. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_assignment.py +1 -1
  438. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_definition.py +1 -1
  439. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_stored_procedure.py +1 -1
  440. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_trigger.py +1 -1
  441. pulumi_azure_native/documentdb/v20231115/sql_resource_sql_user_defined_function.py +1 -1
  442. pulumi_azure_native/documentdb/v20231115/table_resource_table.py +1 -1
  443. pulumi_azure_native/documentdb/v20231115preview/cassandra_cluster.py +1 -1
  444. pulumi_azure_native/documentdb/v20231115preview/cassandra_data_center.py +1 -1
  445. pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_keyspace.py +1 -1
  446. pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_table.py +1 -1
  447. pulumi_azure_native/documentdb/v20231115preview/database_account.py +1 -1
  448. pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_database.py +1 -1
  449. pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_graph.py +1 -1
  450. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_collection.py +1 -1
  451. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_database.py +1 -1
  452. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_role_definition.py +1 -1
  453. pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_user_definition.py +1 -1
  454. pulumi_azure_native/documentdb/v20231115preview/notebook_workspace.py +1 -1
  455. pulumi_azure_native/documentdb/v20231115preview/private_endpoint_connection.py +1 -1
  456. pulumi_azure_native/documentdb/v20231115preview/service.py +1 -1
  457. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_container.py +1 -1
  458. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_database.py +1 -1
  459. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_assignment.py +1 -1
  460. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_definition.py +1 -1
  461. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_stored_procedure.py +1 -1
  462. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_trigger.py +1 -1
  463. pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_user_defined_function.py +1 -1
  464. pulumi_azure_native/documentdb/v20231115preview/table_resource_table.py +1 -1
  465. pulumi_azure_native/documentdb/v20240215preview/cassandra_cluster.py +1 -1
  466. pulumi_azure_native/documentdb/v20240215preview/cassandra_data_center.py +1 -1
  467. pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_keyspace.py +1 -1
  468. pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_table.py +1 -1
  469. pulumi_azure_native/documentdb/v20240215preview/database_account.py +1 -1
  470. pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_database.py +1 -1
  471. pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_graph.py +1 -1
  472. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_collection.py +1 -1
  473. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_database.py +1 -1
  474. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_role_definition.py +1 -1
  475. pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_user_definition.py +1 -1
  476. pulumi_azure_native/documentdb/v20240215preview/notebook_workspace.py +1 -1
  477. pulumi_azure_native/documentdb/v20240215preview/private_endpoint_connection.py +1 -1
  478. pulumi_azure_native/documentdb/v20240215preview/service.py +1 -1
  479. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_container.py +1 -1
  480. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_database.py +1 -1
  481. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_assignment.py +1 -1
  482. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_definition.py +1 -1
  483. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_stored_procedure.py +1 -1
  484. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_trigger.py +1 -1
  485. pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_user_defined_function.py +1 -1
  486. pulumi_azure_native/documentdb/v20240215preview/table_resource_table.py +1 -1
  487. pulumi_azure_native/documentdb/v20240515/cassandra_cluster.py +1 -1
  488. pulumi_azure_native/documentdb/v20240515/cassandra_data_center.py +1 -1
  489. pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_keyspace.py +1 -1
  490. pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_table.py +1 -1
  491. pulumi_azure_native/documentdb/v20240515/database_account.py +1 -1
  492. pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_database.py +1 -1
  493. pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_graph.py +1 -1
  494. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_collection.py +1 -1
  495. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_database.py +1 -1
  496. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_role_definition.py +1 -1
  497. pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_user_definition.py +1 -1
  498. pulumi_azure_native/documentdb/v20240515/notebook_workspace.py +1 -1
  499. pulumi_azure_native/documentdb/v20240515/private_endpoint_connection.py +1 -1
  500. pulumi_azure_native/documentdb/v20240515/service.py +1 -1
  501. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_container.py +1 -1
  502. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_database.py +1 -1
  503. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_assignment.py +1 -1
  504. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_definition.py +1 -1
  505. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_stored_procedure.py +1 -1
  506. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_trigger.py +1 -1
  507. pulumi_azure_native/documentdb/v20240515/sql_resource_sql_user_defined_function.py +1 -1
  508. pulumi_azure_native/documentdb/v20240515/table_resource_table.py +1 -1
  509. pulumi_azure_native/documentdb/v20240515preview/cassandra_cluster.py +1 -1
  510. pulumi_azure_native/documentdb/v20240515preview/cassandra_data_center.py +1 -1
  511. pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_keyspace.py +1 -1
  512. pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_table.py +1 -1
  513. pulumi_azure_native/documentdb/v20240515preview/database_account.py +1 -1
  514. pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_database.py +1 -1
  515. pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_graph.py +1 -1
  516. pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_collection.py +1 -1
  517. pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_database.py +1 -1
  518. pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_role_definition.py +1 -1
  519. pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_user_definition.py +1 -1
  520. pulumi_azure_native/documentdb/v20240515preview/notebook_workspace.py +1 -1
  521. pulumi_azure_native/documentdb/v20240515preview/private_endpoint_connection.py +1 -1
  522. pulumi_azure_native/documentdb/v20240515preview/service.py +1 -1
  523. pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_container.py +1 -1
  524. pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_database.py +1 -1
  525. pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_assignment.py +1 -1
  526. pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_definition.py +1 -1
  527. pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_stored_procedure.py +1 -1
  528. pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_trigger.py +1 -1
  529. pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_user_defined_function.py +1 -1
  530. pulumi_azure_native/documentdb/v20240515preview/table_resource_table.py +1 -1
  531. pulumi_azure_native/documentdb/v20240815/cassandra_cluster.py +1 -1
  532. pulumi_azure_native/documentdb/v20240815/cassandra_data_center.py +1 -1
  533. pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_keyspace.py +1 -1
  534. pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_table.py +1 -1
  535. pulumi_azure_native/documentdb/v20240815/database_account.py +1 -1
  536. pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_database.py +1 -1
  537. pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_graph.py +1 -1
  538. pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_collection.py +1 -1
  539. pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_database.py +1 -1
  540. pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_role_definition.py +1 -1
  541. pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_user_definition.py +1 -1
  542. pulumi_azure_native/documentdb/v20240815/notebook_workspace.py +1 -1
  543. pulumi_azure_native/documentdb/v20240815/private_endpoint_connection.py +1 -1
  544. pulumi_azure_native/documentdb/v20240815/service.py +1 -1
  545. pulumi_azure_native/documentdb/v20240815/sql_resource_sql_container.py +1 -1
  546. pulumi_azure_native/documentdb/v20240815/sql_resource_sql_database.py +1 -1
  547. pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_assignment.py +1 -1
  548. pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_definition.py +1 -1
  549. pulumi_azure_native/documentdb/v20240815/sql_resource_sql_stored_procedure.py +1 -1
  550. pulumi_azure_native/documentdb/v20240815/sql_resource_sql_trigger.py +1 -1
  551. pulumi_azure_native/documentdb/v20240815/sql_resource_sql_user_defined_function.py +1 -1
  552. pulumi_azure_native/documentdb/v20240815/table_resource_table.py +1 -1
  553. pulumi_azure_native/documentdb/v20240901preview/cassandra_cluster.py +1 -1
  554. pulumi_azure_native/documentdb/v20240901preview/cassandra_data_center.py +1 -1
  555. pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_keyspace.py +1 -1
  556. pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_table.py +1 -1
  557. pulumi_azure_native/documentdb/v20240901preview/database_account.py +1 -1
  558. pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_database.py +1 -1
  559. pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_graph.py +1 -1
  560. pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_collection.py +1 -1
  561. pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_database.py +1 -1
  562. pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_role_definition.py +1 -1
  563. pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_user_definition.py +1 -1
  564. pulumi_azure_native/documentdb/v20240901preview/notebook_workspace.py +1 -1
  565. pulumi_azure_native/documentdb/v20240901preview/private_endpoint_connection.py +1 -1
  566. pulumi_azure_native/documentdb/v20240901preview/service.py +1 -1
  567. pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_container.py +1 -1
  568. pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_database.py +1 -1
  569. pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_assignment.py +1 -1
  570. pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_definition.py +1 -1
  571. pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_stored_procedure.py +1 -1
  572. pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_trigger.py +1 -1
  573. pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_user_defined_function.py +1 -1
  574. pulumi_azure_native/documentdb/v20240901preview/table_resource_table.py +1 -1
  575. pulumi_azure_native/documentdb/v20241115/__init__.py +57 -0
  576. pulumi_azure_native/documentdb/v20241115/_enums.py +377 -0
  577. pulumi_azure_native/documentdb/v20241115/_inputs.py +5809 -0
  578. pulumi_azure_native/documentdb/v20241115/cassandra_cluster.py +277 -0
  579. pulumi_azure_native/documentdb/v20241115/cassandra_data_center.py +211 -0
  580. pulumi_azure_native/documentdb/v20241115/cassandra_resource_cassandra_keyspace.py +292 -0
  581. pulumi_azure_native/documentdb/v20241115/cassandra_resource_cassandra_table.py +313 -0
  582. pulumi_azure_native/documentdb/v20241115/database_account.py +1305 -0
  583. pulumi_azure_native/documentdb/v20241115/get_cassandra_cluster.py +171 -0
  584. pulumi_azure_native/documentdb/v20241115/get_cassandra_data_center.py +135 -0
  585. pulumi_azure_native/documentdb/v20241115/get_cassandra_resource_cassandra_keyspace.py +171 -0
  586. pulumi_azure_native/documentdb/v20241115/get_cassandra_resource_cassandra_table.py +177 -0
  587. pulumi_azure_native/documentdb/v20241115/get_database_account.py +745 -0
  588. pulumi_azure_native/documentdb/v20241115/get_gremlin_resource_gremlin_database.py +171 -0
  589. pulumi_azure_native/documentdb/v20241115/get_gremlin_resource_gremlin_graph.py +177 -0
  590. pulumi_azure_native/documentdb/v20241115/get_mongo_db_resource_mongo_db_collection.py +177 -0
  591. pulumi_azure_native/documentdb/v20241115/get_mongo_db_resource_mongo_db_database.py +171 -0
  592. pulumi_azure_native/documentdb/v20241115/get_mongo_db_resource_mongo_role_definition.py +177 -0
  593. pulumi_azure_native/documentdb/v20241115/get_mongo_db_resource_mongo_user_definition.py +205 -0
  594. pulumi_azure_native/documentdb/v20241115/get_notebook_workspace.py +148 -0
  595. pulumi_azure_native/documentdb/v20241115/get_private_endpoint_connection.py +177 -0
  596. pulumi_azure_native/documentdb/v20241115/get_service.py +135 -0
  597. pulumi_azure_native/documentdb/v20241115/get_sql_resource_sql_container.py +177 -0
  598. pulumi_azure_native/documentdb/v20241115/get_sql_resource_sql_database.py +171 -0
  599. pulumi_azure_native/documentdb/v20241115/get_sql_resource_sql_role_assignment.py +162 -0
  600. pulumi_azure_native/documentdb/v20241115/get_sql_resource_sql_role_definition.py +163 -0
  601. pulumi_azure_native/documentdb/v20241115/get_sql_resource_sql_stored_procedure.py +172 -0
  602. pulumi_azure_native/documentdb/v20241115/get_sql_resource_sql_trigger.py +172 -0
  603. pulumi_azure_native/documentdb/v20241115/get_sql_resource_sql_user_defined_function.py +172 -0
  604. pulumi_azure_native/documentdb/v20241115/get_table_resource_table.py +171 -0
  605. pulumi_azure_native/documentdb/v20241115/gremlin_resource_gremlin_database.py +293 -0
  606. pulumi_azure_native/documentdb/v20241115/gremlin_resource_gremlin_graph.py +314 -0
  607. pulumi_azure_native/documentdb/v20241115/list_database_account_connection_strings.py +87 -0
  608. pulumi_azure_native/documentdb/v20241115/list_database_account_keys.py +128 -0
  609. pulumi_azure_native/documentdb/v20241115/list_notebook_workspace_connection_info.py +106 -0
  610. pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_db_collection.py +314 -0
  611. pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_db_database.py +293 -0
  612. pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_role_definition.py +317 -0
  613. pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_user_definition.py +355 -0
  614. pulumi_azure_native/documentdb/v20241115/notebook_workspace.py +199 -0
  615. pulumi_azure_native/documentdb/v20241115/outputs.py +6465 -0
  616. pulumi_azure_native/documentdb/v20241115/private_endpoint_connection.py +297 -0
  617. pulumi_azure_native/documentdb/v20241115/service.py +211 -0
  618. pulumi_azure_native/documentdb/v20241115/sql_resource_sql_container.py +314 -0
  619. pulumi_azure_native/documentdb/v20241115/sql_resource_sql_database.py +293 -0
  620. pulumi_azure_native/documentdb/v20241115/sql_resource_sql_role_assignment.py +266 -0
  621. pulumi_azure_native/documentdb/v20241115/sql_resource_sql_role_definition.py +288 -0
  622. pulumi_azure_native/documentdb/v20241115/sql_resource_sql_stored_procedure.py +328 -0
  623. pulumi_azure_native/documentdb/v20241115/sql_resource_sql_trigger.py +329 -0
  624. pulumi_azure_native/documentdb/v20241115/sql_resource_sql_user_defined_function.py +328 -0
  625. pulumi_azure_native/documentdb/v20241115/table_resource_table.py +293 -0
  626. pulumi_azure_native/durabletask/__init__.py +21 -0
  627. pulumi_azure_native/durabletask/_inputs.py +134 -0
  628. pulumi_azure_native/durabletask/get_scheduler.py +173 -0
  629. pulumi_azure_native/durabletask/get_task_hub.py +151 -0
  630. pulumi_azure_native/{mobilepacketcore → durabletask}/outputs.py +123 -136
  631. pulumi_azure_native/{mobilepacketcore/smf_deployment.py → durabletask/scheduler.py} +55 -143
  632. pulumi_azure_native/durabletask/task_hub.py +202 -0
  633. pulumi_azure_native/{mobilepacketcore/v20230515preview → durabletask/v20241001preview}/__init__.py +5 -3
  634. pulumi_azure_native/durabletask/v20241001preview/_inputs.py +134 -0
  635. pulumi_azure_native/durabletask/v20241001preview/get_scheduler.py +171 -0
  636. pulumi_azure_native/durabletask/v20241001preview/get_task_hub.py +149 -0
  637. pulumi_azure_native/{mobilepacketcore/v20231015preview → durabletask/v20241001preview}/outputs.py +123 -136
  638. pulumi_azure_native/durabletask/v20241001preview/scheduler.py +257 -0
  639. pulumi_azure_native/durabletask/v20241001preview/task_hub.py +200 -0
  640. pulumi_azure_native/hybridcompute/__init__.py +3 -0
  641. pulumi_azure_native/hybridcompute/gateway.py +3 -3
  642. pulumi_azure_native/hybridcompute/get_gateway.py +2 -2
  643. pulumi_azure_native/hybridcompute/get_license.py +2 -2
  644. pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
  645. pulumi_azure_native/hybridcompute/get_machine.py +2 -2
  646. pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
  647. pulumi_azure_native/hybridcompute/get_machine_run_command.py +2 -2
  648. pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
  649. pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
  650. pulumi_azure_native/hybridcompute/license.py +3 -3
  651. pulumi_azure_native/hybridcompute/license_profile.py +3 -3
  652. pulumi_azure_native/hybridcompute/machine.py +3 -3
  653. pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
  654. pulumi_azure_native/hybridcompute/machine_run_command.py +3 -3
  655. pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
  656. pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
  657. pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
  658. pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
  659. pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
  660. pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
  661. pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
  662. pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
  663. pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
  664. pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
  665. pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
  666. pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
  667. pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
  668. pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
  669. pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
  670. pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
  671. pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
  672. pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
  673. pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
  674. pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
  675. pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
  676. pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
  677. pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
  678. pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
  679. pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
  680. pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
  681. pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +1 -1
  682. pulumi_azure_native/hybridcompute/v20240331preview/license.py +1 -1
  683. pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +1 -1
  684. pulumi_azure_native/hybridcompute/v20240331preview/machine.py +1 -1
  685. pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +1 -1
  686. pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +1 -1
  687. pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +1 -1
  688. pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +1 -1
  689. pulumi_azure_native/hybridcompute/v20240520preview/gateway.py +1 -1
  690. pulumi_azure_native/hybridcompute/v20240520preview/license.py +1 -1
  691. pulumi_azure_native/hybridcompute/v20240520preview/license_profile.py +1 -1
  692. pulumi_azure_native/hybridcompute/v20240520preview/machine.py +1 -1
  693. pulumi_azure_native/hybridcompute/v20240520preview/machine_extension.py +1 -1
  694. pulumi_azure_native/hybridcompute/v20240520preview/machine_run_command.py +1 -1
  695. pulumi_azure_native/hybridcompute/v20240520preview/private_endpoint_connection.py +1 -1
  696. pulumi_azure_native/hybridcompute/v20240520preview/private_link_scope.py +1 -1
  697. pulumi_azure_native/hybridcompute/v20240710/license.py +1 -1
  698. pulumi_azure_native/hybridcompute/v20240710/license_profile.py +1 -1
  699. pulumi_azure_native/hybridcompute/v20240710/machine.py +1 -1
  700. pulumi_azure_native/hybridcompute/v20240710/machine_extension.py +1 -1
  701. pulumi_azure_native/hybridcompute/v20240710/private_endpoint_connection.py +1 -1
  702. pulumi_azure_native/hybridcompute/v20240710/private_link_scope.py +1 -1
  703. pulumi_azure_native/hybridcompute/v20240731preview/gateway.py +1 -1
  704. pulumi_azure_native/hybridcompute/v20240731preview/license.py +1 -1
  705. pulumi_azure_native/hybridcompute/v20240731preview/license_profile.py +1 -1
  706. pulumi_azure_native/hybridcompute/v20240731preview/machine.py +1 -1
  707. pulumi_azure_native/hybridcompute/v20240731preview/machine_extension.py +1 -1
  708. pulumi_azure_native/hybridcompute/v20240731preview/machine_run_command.py +1 -1
  709. pulumi_azure_native/hybridcompute/v20240731preview/private_endpoint_connection.py +1 -1
  710. pulumi_azure_native/hybridcompute/v20240731preview/private_link_scope.py +1 -1
  711. pulumi_azure_native/hybridcompute/v20240910preview/__init__.py +26 -0
  712. pulumi_azure_native/hybridcompute/v20240910preview/_enums.py +172 -0
  713. pulumi_azure_native/hybridcompute/v20240910preview/_inputs.py +1924 -0
  714. pulumi_azure_native/{mobilepacketcore/v20231015preview/observability_service.py → hybridcompute/v20240910preview/gateway.py} +107 -109
  715. pulumi_azure_native/hybridcompute/v20240910preview/get_gateway.py +227 -0
  716. pulumi_azure_native/hybridcompute/v20240910preview/get_license.py +213 -0
  717. pulumi_azure_native/hybridcompute/v20240910preview/get_license_profile.py +387 -0
  718. pulumi_azure_native/hybridcompute/v20240910preview/get_machine.py +681 -0
  719. pulumi_azure_native/hybridcompute/v20240910preview/get_machine_extension.py +177 -0
  720. pulumi_azure_native/hybridcompute/v20240910preview/get_machine_run_command.py +345 -0
  721. pulumi_azure_native/hybridcompute/v20240910preview/get_private_endpoint_connection.py +149 -0
  722. pulumi_azure_native/hybridcompute/v20240910preview/get_private_link_scope.py +171 -0
  723. pulumi_azure_native/{mobilepacketcore/v20231015preview/nrf_deployment.py → hybridcompute/v20240910preview/license.py} +112 -131
  724. pulumi_azure_native/hybridcompute/v20240910preview/license_profile.py +505 -0
  725. pulumi_azure_native/hybridcompute/v20240910preview/machine.py +885 -0
  726. pulumi_azure_native/{mobilepacketcore/observability_service.py → hybridcompute/v20240910preview/machine_extension.py} +76 -117
  727. pulumi_azure_native/hybridcompute/v20240910preview/machine_run_command.py +592 -0
  728. pulumi_azure_native/hybridcompute/v20240910preview/outputs.py +3556 -0
  729. pulumi_azure_native/hybridcompute/v20240910preview/private_endpoint_connection.py +220 -0
  730. pulumi_azure_native/hybridcompute/v20240910preview/private_link_scope.py +258 -0
  731. pulumi_azure_native/impact/__init__.py +24 -0
  732. pulumi_azure_native/impact/_enums.py +202 -0
  733. pulumi_azure_native/impact/_inputs.py +1183 -0
  734. pulumi_azure_native/impact/connector.py +181 -0
  735. pulumi_azure_native/impact/get_connector.py +139 -0
  736. pulumi_azure_native/impact/get_insight.py +145 -0
  737. pulumi_azure_native/impact/get_workload_impact.py +139 -0
  738. pulumi_azure_native/impact/insight.py +201 -0
  739. pulumi_azure_native/impact/outputs.py +1117 -0
  740. pulumi_azure_native/impact/v20240501preview/__init__.py +16 -0
  741. pulumi_azure_native/impact/v20240501preview/_enums.py +202 -0
  742. pulumi_azure_native/impact/v20240501preview/_inputs.py +1183 -0
  743. pulumi_azure_native/impact/v20240501preview/connector.py +179 -0
  744. pulumi_azure_native/impact/v20240501preview/get_connector.py +137 -0
  745. pulumi_azure_native/impact/v20240501preview/get_insight.py +143 -0
  746. pulumi_azure_native/impact/v20240501preview/get_workload_impact.py +137 -0
  747. pulumi_azure_native/impact/v20240501preview/insight.py +199 -0
  748. pulumi_azure_native/impact/v20240501preview/outputs.py +1117 -0
  749. pulumi_azure_native/impact/v20240501preview/workload_impact.py +179 -0
  750. pulumi_azure_native/impact/workload_impact.py +181 -0
  751. pulumi_azure_native/kusto/__init__.py +4 -0
  752. pulumi_azure_native/kusto/attached_database_configuration.py +3 -3
  753. pulumi_azure_native/kusto/cluster.py +3 -3
  754. pulumi_azure_native/kusto/cluster_principal_assignment.py +3 -3
  755. pulumi_azure_native/kusto/cosmos_db_data_connection.py +1 -1
  756. pulumi_azure_native/kusto/database_principal_assignment.py +3 -3
  757. pulumi_azure_native/kusto/event_grid_data_connection.py +1 -1
  758. pulumi_azure_native/kusto/event_hub_data_connection.py +1 -1
  759. pulumi_azure_native/kusto/get_attached_database_configuration.py +2 -2
  760. pulumi_azure_native/kusto/get_cluster.py +2 -2
  761. pulumi_azure_native/kusto/get_cluster_principal_assignment.py +2 -2
  762. pulumi_azure_native/kusto/get_database_principal_assignment.py +2 -2
  763. pulumi_azure_native/kusto/get_managed_private_endpoint.py +2 -2
  764. pulumi_azure_native/kusto/get_private_endpoint_connection.py +2 -2
  765. pulumi_azure_native/kusto/get_sandbox_custom_image.py +4 -0
  766. pulumi_azure_native/kusto/get_script.py +2 -2
  767. pulumi_azure_native/kusto/iot_hub_data_connection.py +1 -1
  768. pulumi_azure_native/kusto/list_cluster_callout_policies.py +100 -0
  769. pulumi_azure_native/kusto/list_cluster_follower_databases.py +2 -2
  770. pulumi_azure_native/kusto/list_cluster_language_extensions.py +2 -2
  771. pulumi_azure_native/kusto/list_database_principals.py +2 -2
  772. pulumi_azure_native/kusto/managed_private_endpoint.py +3 -3
  773. pulumi_azure_native/kusto/outputs.py +59 -0
  774. pulumi_azure_native/kusto/private_endpoint_connection.py +3 -3
  775. pulumi_azure_native/kusto/read_only_following_database.py +1 -1
  776. pulumi_azure_native/kusto/read_write_database.py +1 -1
  777. pulumi_azure_native/kusto/sandbox_custom_image.py +5 -1
  778. pulumi_azure_native/kusto/script.py +3 -3
  779. pulumi_azure_native/kusto/v20180907preview/database.py +1 -1
  780. pulumi_azure_native/kusto/v20190515/database.py +1 -1
  781. pulumi_azure_native/kusto/v20190907/read_only_following_database.py +1 -1
  782. pulumi_azure_native/kusto/v20190907/read_write_database.py +1 -1
  783. pulumi_azure_native/kusto/v20191109/read_write_database.py +1 -1
  784. pulumi_azure_native/kusto/v20200215/event_grid_data_connection.py +1 -1
  785. pulumi_azure_native/kusto/v20210827/script.py +1 -1
  786. pulumi_azure_native/kusto/v20220707/cluster.py +1 -1
  787. pulumi_azure_native/kusto/v20221229/attached_database_configuration.py +1 -1
  788. pulumi_azure_native/kusto/v20221229/cluster.py +1 -1
  789. pulumi_azure_native/kusto/v20221229/cluster_principal_assignment.py +1 -1
  790. pulumi_azure_native/kusto/v20221229/cosmos_db_data_connection.py +1 -1
  791. pulumi_azure_native/kusto/v20221229/database_principal_assignment.py +1 -1
  792. pulumi_azure_native/kusto/v20221229/event_grid_data_connection.py +1 -1
  793. pulumi_azure_native/kusto/v20221229/event_hub_data_connection.py +1 -1
  794. pulumi_azure_native/kusto/v20221229/iot_hub_data_connection.py +1 -1
  795. pulumi_azure_native/kusto/v20221229/managed_private_endpoint.py +1 -1
  796. pulumi_azure_native/kusto/v20221229/private_endpoint_connection.py +1 -1
  797. pulumi_azure_native/kusto/v20221229/read_only_following_database.py +1 -1
  798. pulumi_azure_native/kusto/v20221229/read_write_database.py +1 -1
  799. pulumi_azure_native/kusto/v20221229/script.py +1 -1
  800. pulumi_azure_native/kusto/v20230502/attached_database_configuration.py +1 -1
  801. pulumi_azure_native/kusto/v20230502/cluster.py +1 -1
  802. pulumi_azure_native/kusto/v20230502/cluster_principal_assignment.py +1 -1
  803. pulumi_azure_native/kusto/v20230502/cosmos_db_data_connection.py +1 -1
  804. pulumi_azure_native/kusto/v20230502/database_principal_assignment.py +1 -1
  805. pulumi_azure_native/kusto/v20230502/event_grid_data_connection.py +1 -1
  806. pulumi_azure_native/kusto/v20230502/event_hub_data_connection.py +1 -1
  807. pulumi_azure_native/kusto/v20230502/iot_hub_data_connection.py +1 -1
  808. pulumi_azure_native/kusto/v20230502/managed_private_endpoint.py +1 -1
  809. pulumi_azure_native/kusto/v20230502/private_endpoint_connection.py +1 -1
  810. pulumi_azure_native/kusto/v20230502/read_only_following_database.py +1 -1
  811. pulumi_azure_native/kusto/v20230502/read_write_database.py +1 -1
  812. pulumi_azure_native/kusto/v20230502/script.py +1 -1
  813. pulumi_azure_native/kusto/v20230815/attached_database_configuration.py +1 -1
  814. pulumi_azure_native/kusto/v20230815/cluster.py +1 -1
  815. pulumi_azure_native/kusto/v20230815/cluster_principal_assignment.py +1 -1
  816. pulumi_azure_native/kusto/v20230815/cosmos_db_data_connection.py +1 -1
  817. pulumi_azure_native/kusto/v20230815/database_principal_assignment.py +1 -1
  818. pulumi_azure_native/kusto/v20230815/event_grid_data_connection.py +1 -1
  819. pulumi_azure_native/kusto/v20230815/event_hub_data_connection.py +1 -1
  820. pulumi_azure_native/kusto/v20230815/iot_hub_data_connection.py +1 -1
  821. pulumi_azure_native/kusto/v20230815/managed_private_endpoint.py +1 -1
  822. pulumi_azure_native/kusto/v20230815/private_endpoint_connection.py +1 -1
  823. pulumi_azure_native/kusto/v20230815/read_only_following_database.py +1 -1
  824. pulumi_azure_native/kusto/v20230815/read_write_database.py +1 -1
  825. pulumi_azure_native/kusto/v20230815/sandbox_custom_image.py +1 -1
  826. pulumi_azure_native/kusto/v20230815/script.py +1 -1
  827. pulumi_azure_native/kusto/v20240413/__init__.py +42 -0
  828. pulumi_azure_native/kusto/v20240413/_enums.py +379 -0
  829. pulumi_azure_native/kusto/v20240413/_inputs.py +950 -0
  830. pulumi_azure_native/kusto/v20240413/attached_database_configuration.py +408 -0
  831. pulumi_azure_native/kusto/v20240413/cluster.py +985 -0
  832. pulumi_azure_native/kusto/v20240413/cluster_principal_assignment.py +339 -0
  833. pulumi_azure_native/kusto/v20240413/cosmos_db_data_connection.py +491 -0
  834. pulumi_azure_native/kusto/v20240413/database_principal_assignment.py +360 -0
  835. pulumi_azure_native/kusto/v20240413/event_grid_data_connection.py +610 -0
  836. pulumi_azure_native/kusto/v20240413/event_hub_data_connection.py +580 -0
  837. pulumi_azure_native/kusto/v20240413/get_attached_database_configuration.py +247 -0
  838. pulumi_azure_native/kusto/v20240413/get_cluster.py +577 -0
  839. pulumi_azure_native/kusto/v20240413/get_cluster_principal_assignment.py +232 -0
  840. pulumi_azure_native/kusto/v20240413/get_cosmos_db_data_connection.py +281 -0
  841. pulumi_azure_native/kusto/v20240413/get_database_principal_assignment.py +238 -0
  842. pulumi_azure_native/kusto/v20240413/get_event_grid_data_connection.py +337 -0
  843. pulumi_azure_native/kusto/v20240413/get_event_hub_data_connection.py +323 -0
  844. pulumi_azure_native/kusto/v20240413/get_iot_hub_data_connection.py +295 -0
  845. pulumi_azure_native/kusto/v20240413/get_managed_private_endpoint.py +205 -0
  846. pulumi_azure_native/kusto/v20240413/get_private_endpoint_connection.py +191 -0
  847. pulumi_azure_native/kusto/v20240413/get_read_only_following_database.py +304 -0
  848. pulumi_azure_native/kusto/v20240413/get_read_write_database.py +248 -0
  849. pulumi_azure_native/kusto/v20240413/get_sandbox_custom_image.py +190 -0
  850. pulumi_azure_native/kusto/v20240413/get_script.py +225 -0
  851. pulumi_azure_native/kusto/v20240413/iot_hub_data_connection.py +542 -0
  852. pulumi_azure_native/kusto/v20240413/list_cluster_callout_policies.py +98 -0
  853. pulumi_azure_native/kusto/v20240413/list_cluster_follower_databases.py +87 -0
  854. pulumi_azure_native/kusto/v20240413/list_cluster_language_extensions.py +87 -0
  855. pulumi_azure_native/kusto/v20240413/list_database_principals.py +93 -0
  856. pulumi_azure_native/kusto/v20240413/managed_private_endpoint.py +318 -0
  857. pulumi_azure_native/kusto/v20240413/outputs.py +1412 -0
  858. pulumi_azure_native/kusto/v20240413/private_endpoint_connection.py +251 -0
  859. pulumi_azure_native/kusto/v20240413/read_only_following_database.py +392 -0
  860. pulumi_azure_native/kusto/v20240413/read_write_database.py +391 -0
  861. pulumi_azure_native/kusto/v20240413/sandbox_custom_image.py +307 -0
  862. pulumi_azure_native/kusto/v20240413/script.py +411 -0
  863. pulumi_azure_native/machinelearningservices/serverless_endpoint.py +4 -0
  864. pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py +20 -0
  865. pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +14 -0
  866. pulumi_azure_native/pulumi-plugin.json +1 -1
  867. pulumi_azure_native/recoveryservices/get_replication_fabric.py +2 -2
  868. pulumi_azure_native/recoveryservices/get_replication_migration_item.py +2 -2
  869. pulumi_azure_native/recoveryservices/get_replication_network_mapping.py +2 -2
  870. pulumi_azure_native/recoveryservices/get_replication_policy.py +2 -2
  871. pulumi_azure_native/recoveryservices/get_replication_protected_item.py +2 -2
  872. pulumi_azure_native/recoveryservices/get_replication_protection_cluster.py +2 -2
  873. pulumi_azure_native/recoveryservices/get_replication_protection_container_mapping.py +2 -2
  874. pulumi_azure_native/recoveryservices/get_replication_recovery_plan.py +2 -2
  875. pulumi_azure_native/recoveryservices/get_replication_recovery_services_provider.py +2 -2
  876. pulumi_azure_native/recoveryservices/get_replication_storage_classification_mapping.py +2 -2
  877. pulumi_azure_native/recoveryservices/get_replicationv_center.py +2 -2
  878. pulumi_azure_native/recoveryservices/replication_fabric.py +3 -3
  879. pulumi_azure_native/recoveryservices/replication_migration_item.py +3 -3
  880. pulumi_azure_native/recoveryservices/replication_network_mapping.py +3 -3
  881. pulumi_azure_native/recoveryservices/replication_policy.py +3 -3
  882. pulumi_azure_native/recoveryservices/replication_protected_item.py +3 -3
  883. pulumi_azure_native/recoveryservices/replication_protection_cluster.py +3 -3
  884. pulumi_azure_native/recoveryservices/replication_protection_container_mapping.py +3 -3
  885. pulumi_azure_native/recoveryservices/replication_recovery_plan.py +3 -3
  886. pulumi_azure_native/recoveryservices/replication_recovery_services_provider.py +3 -3
  887. pulumi_azure_native/recoveryservices/replication_storage_classification_mapping.py +3 -3
  888. pulumi_azure_native/recoveryservices/replicationv_center.py +3 -3
  889. pulumi_azure_native/recoveryservices/v20210301/replication_network_mapping.py +1 -1
  890. pulumi_azure_native/recoveryservices/v20210301/replicationv_center.py +1 -1
  891. pulumi_azure_native/recoveryservices/v20230401/replication_fabric.py +1 -1
  892. pulumi_azure_native/recoveryservices/v20230401/replication_migration_item.py +1 -1
  893. pulumi_azure_native/recoveryservices/v20230401/replication_network_mapping.py +1 -1
  894. pulumi_azure_native/recoveryservices/v20230401/replication_policy.py +1 -1
  895. pulumi_azure_native/recoveryservices/v20230401/replication_protected_item.py +1 -1
  896. pulumi_azure_native/recoveryservices/v20230401/replication_protection_container_mapping.py +1 -1
  897. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_plan.py +1 -1
  898. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_services_provider.py +1 -1
  899. pulumi_azure_native/recoveryservices/v20230401/replication_storage_classification_mapping.py +1 -1
  900. pulumi_azure_native/recoveryservices/v20230401/replicationv_center.py +1 -1
  901. pulumi_azure_native/recoveryservices/v20230601/replication_fabric.py +1 -1
  902. pulumi_azure_native/recoveryservices/v20230601/replication_migration_item.py +1 -1
  903. pulumi_azure_native/recoveryservices/v20230601/replication_network_mapping.py +1 -1
  904. pulumi_azure_native/recoveryservices/v20230601/replication_policy.py +1 -1
  905. pulumi_azure_native/recoveryservices/v20230601/replication_protected_item.py +1 -1
  906. pulumi_azure_native/recoveryservices/v20230601/replication_protection_container_mapping.py +1 -1
  907. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_plan.py +1 -1
  908. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_services_provider.py +1 -1
  909. pulumi_azure_native/recoveryservices/v20230601/replication_storage_classification_mapping.py +1 -1
  910. pulumi_azure_native/recoveryservices/v20230601/replicationv_center.py +1 -1
  911. pulumi_azure_native/recoveryservices/v20230801/replication_fabric.py +1 -1
  912. pulumi_azure_native/recoveryservices/v20230801/replication_migration_item.py +1 -1
  913. pulumi_azure_native/recoveryservices/v20230801/replication_network_mapping.py +1 -1
  914. pulumi_azure_native/recoveryservices/v20230801/replication_policy.py +1 -1
  915. pulumi_azure_native/recoveryservices/v20230801/replication_protected_item.py +1 -1
  916. pulumi_azure_native/recoveryservices/v20230801/replication_protection_container_mapping.py +1 -1
  917. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_plan.py +1 -1
  918. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_services_provider.py +1 -1
  919. pulumi_azure_native/recoveryservices/v20230801/replication_storage_classification_mapping.py +1 -1
  920. pulumi_azure_native/recoveryservices/v20230801/replicationv_center.py +1 -1
  921. pulumi_azure_native/recoveryservices/v20240101/replication_fabric.py +1 -1
  922. pulumi_azure_native/recoveryservices/v20240101/replication_migration_item.py +1 -1
  923. pulumi_azure_native/recoveryservices/v20240101/replication_network_mapping.py +1 -1
  924. pulumi_azure_native/recoveryservices/v20240101/replication_policy.py +1 -1
  925. pulumi_azure_native/recoveryservices/v20240101/replication_protected_item.py +1 -1
  926. pulumi_azure_native/recoveryservices/v20240101/replication_protection_container_mapping.py +1 -1
  927. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_plan.py +1 -1
  928. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_services_provider.py +1 -1
  929. pulumi_azure_native/recoveryservices/v20240101/replication_storage_classification_mapping.py +1 -1
  930. pulumi_azure_native/recoveryservices/v20240101/replicationv_center.py +1 -1
  931. pulumi_azure_native/recoveryservices/v20240201/replication_fabric.py +1 -1
  932. pulumi_azure_native/recoveryservices/v20240201/replication_migration_item.py +1 -1
  933. pulumi_azure_native/recoveryservices/v20240201/replication_network_mapping.py +1 -1
  934. pulumi_azure_native/recoveryservices/v20240201/replication_policy.py +1 -1
  935. pulumi_azure_native/recoveryservices/v20240201/replication_protected_item.py +1 -1
  936. pulumi_azure_native/recoveryservices/v20240201/replication_protection_cluster.py +1 -1
  937. pulumi_azure_native/recoveryservices/v20240201/replication_protection_container_mapping.py +1 -1
  938. pulumi_azure_native/recoveryservices/v20240201/replication_recovery_plan.py +1 -1
  939. pulumi_azure_native/recoveryservices/v20240201/replication_recovery_services_provider.py +1 -1
  940. pulumi_azure_native/recoveryservices/v20240201/replication_storage_classification_mapping.py +1 -1
  941. pulumi_azure_native/recoveryservices/v20240201/replicationv_center.py +1 -1
  942. pulumi_azure_native/recoveryservices/v20240401/replication_fabric.py +1 -1
  943. pulumi_azure_native/recoveryservices/v20240401/replication_migration_item.py +1 -1
  944. pulumi_azure_native/recoveryservices/v20240401/replication_network_mapping.py +1 -1
  945. pulumi_azure_native/recoveryservices/v20240401/replication_policy.py +1 -1
  946. pulumi_azure_native/recoveryservices/v20240401/replication_protected_item.py +1 -1
  947. pulumi_azure_native/recoveryservices/v20240401/replication_protection_cluster.py +1 -1
  948. pulumi_azure_native/recoveryservices/v20240401/replication_protection_container_mapping.py +1 -1
  949. pulumi_azure_native/recoveryservices/v20240401/replication_recovery_plan.py +1 -1
  950. pulumi_azure_native/recoveryservices/v20240401/replication_recovery_services_provider.py +1 -1
  951. pulumi_azure_native/recoveryservices/v20240401/replication_storage_classification_mapping.py +1 -1
  952. pulumi_azure_native/recoveryservices/v20240401/replicationv_center.py +1 -1
  953. pulumi_azure_native/recoveryservices/v20241001/__init__.py +22 -0
  954. pulumi_azure_native/recoveryservices/v20241001/_enums.py +179 -0
  955. pulumi_azure_native/recoveryservices/v20241001/_inputs.py +19709 -8709
  956. pulumi_azure_native/recoveryservices/v20241001/get_replication_fabric.py +155 -0
  957. pulumi_azure_native/recoveryservices/v20241001/get_replication_migration_item.py +161 -0
  958. pulumi_azure_native/recoveryservices/v20241001/get_replication_network_mapping.py +161 -0
  959. pulumi_azure_native/recoveryservices/v20241001/get_replication_policy.py +149 -0
  960. pulumi_azure_native/recoveryservices/v20241001/get_replication_protected_item.py +161 -0
  961. pulumi_azure_native/recoveryservices/v20241001/get_replication_protection_cluster.py +147 -0
  962. pulumi_azure_native/recoveryservices/v20241001/get_replication_protection_container_mapping.py +161 -0
  963. pulumi_azure_native/recoveryservices/v20241001/get_replication_recovery_plan.py +149 -0
  964. pulumi_azure_native/recoveryservices/v20241001/get_replication_recovery_services_provider.py +155 -0
  965. pulumi_azure_native/recoveryservices/v20241001/get_replication_storage_classification_mapping.py +161 -0
  966. pulumi_azure_native/recoveryservices/v20241001/get_replicationv_center.py +155 -0
  967. pulumi_azure_native/recoveryservices/v20241001/outputs.py +30504 -8186
  968. pulumi_azure_native/recoveryservices/v20241001/replication_fabric.py +220 -0
  969. pulumi_azure_native/recoveryservices/v20241001/replication_migration_item.py +264 -0
  970. pulumi_azure_native/recoveryservices/v20241001/replication_network_mapping.py +263 -0
  971. pulumi_azure_native/recoveryservices/v20241001/replication_policy.py +221 -0
  972. pulumi_azure_native/recoveryservices/v20241001/replication_protected_item.py +263 -0
  973. pulumi_azure_native/recoveryservices/v20241001/replication_protection_cluster.py +253 -0
  974. pulumi_azure_native/recoveryservices/v20241001/replication_protection_container_mapping.py +263 -0
  975. pulumi_azure_native/recoveryservices/v20241001/replication_recovery_plan.py +222 -0
  976. pulumi_azure_native/recoveryservices/v20241001/replication_recovery_services_provider.py +242 -0
  977. pulumi_azure_native/recoveryservices/v20241001/replication_storage_classification_mapping.py +262 -0
  978. pulumi_azure_native/recoveryservices/v20241001/replicationv_center.py +241 -0
  979. pulumi_azure_native/servicefabric/__init__.py +3 -0
  980. pulumi_azure_native/servicefabric/get_managed_cluster.py +2 -2
  981. pulumi_azure_native/servicefabric/get_managed_cluster_application.py +2 -2
  982. pulumi_azure_native/servicefabric/get_managed_cluster_application_type.py +2 -2
  983. pulumi_azure_native/servicefabric/get_managed_cluster_application_type_version.py +2 -2
  984. pulumi_azure_native/servicefabric/get_managed_cluster_service.py +2 -2
  985. pulumi_azure_native/servicefabric/get_node_type.py +2 -2
  986. pulumi_azure_native/servicefabric/getmanaged_az_resiliency_status.py +2 -2
  987. pulumi_azure_native/servicefabric/getmanaged_maintenance_window_status.py +2 -2
  988. pulumi_azure_native/servicefabric/managed_cluster.py +3 -3
  989. pulumi_azure_native/servicefabric/managed_cluster_application.py +3 -3
  990. pulumi_azure_native/servicefabric/managed_cluster_application_type.py +3 -3
  991. pulumi_azure_native/servicefabric/managed_cluster_application_type_version.py +3 -3
  992. pulumi_azure_native/servicefabric/managed_cluster_service.py +3 -3
  993. pulumi_azure_native/servicefabric/node_type.py +3 -3
  994. pulumi_azure_native/servicefabric/v20200101preview/managed_cluster.py +1 -1
  995. pulumi_azure_native/servicefabric/v20220101/managed_cluster.py +1 -1
  996. pulumi_azure_native/servicefabric/v20221001preview/managed_cluster.py +1 -1
  997. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster.py +1 -1
  998. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_application.py +1 -1
  999. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_application_type.py +1 -1
  1000. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_application_type_version.py +1 -1
  1001. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_service.py +1 -1
  1002. pulumi_azure_native/servicefabric/v20230301preview/node_type.py +1 -1
  1003. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster.py +1 -1
  1004. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_application.py +1 -1
  1005. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_application_type.py +1 -1
  1006. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_application_type_version.py +1 -1
  1007. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_service.py +1 -1
  1008. pulumi_azure_native/servicefabric/v20230701preview/node_type.py +1 -1
  1009. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster.py +1 -1
  1010. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_application.py +1 -1
  1011. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_application_type.py +1 -1
  1012. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_application_type_version.py +1 -1
  1013. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_service.py +1 -1
  1014. pulumi_azure_native/servicefabric/v20230901preview/node_type.py +1 -1
  1015. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster.py +1 -1
  1016. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_application.py +1 -1
  1017. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_application_type.py +1 -1
  1018. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_application_type_version.py +1 -1
  1019. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_service.py +1 -1
  1020. pulumi_azure_native/servicefabric/v20231101preview/node_type.py +1 -1
  1021. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster.py +1 -1
  1022. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_application.py +1 -1
  1023. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_application_type.py +1 -1
  1024. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_application_type_version.py +1 -1
  1025. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_service.py +1 -1
  1026. pulumi_azure_native/servicefabric/v20231201preview/node_type.py +1 -1
  1027. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster.py +1 -1
  1028. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_application.py +1 -1
  1029. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_application_type.py +1 -1
  1030. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_application_type_version.py +1 -1
  1031. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_service.py +1 -1
  1032. pulumi_azure_native/servicefabric/v20240201preview/node_type.py +1 -1
  1033. pulumi_azure_native/servicefabric/v20240401/managed_cluster.py +1 -1
  1034. pulumi_azure_native/servicefabric/v20240401/managed_cluster_application.py +1 -1
  1035. pulumi_azure_native/servicefabric/v20240401/managed_cluster_application_type.py +1 -1
  1036. pulumi_azure_native/servicefabric/v20240401/managed_cluster_application_type_version.py +1 -1
  1037. pulumi_azure_native/servicefabric/v20240401/managed_cluster_service.py +1 -1
  1038. pulumi_azure_native/servicefabric/v20240401/node_type.py +1 -1
  1039. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster.py +1 -1
  1040. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_application.py +1 -1
  1041. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_application_type.py +1 -1
  1042. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_application_type_version.py +1 -1
  1043. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_service.py +1 -1
  1044. pulumi_azure_native/servicefabric/v20240601preview/node_type.py +1 -1
  1045. pulumi_azure_native/servicefabric/v20240901preview/__init__.py +24 -0
  1046. pulumi_azure_native/servicefabric/v20240901preview/_enums.py +511 -0
  1047. pulumi_azure_native/servicefabric/v20240901preview/_inputs.py +5399 -0
  1048. pulumi_azure_native/servicefabric/v20240901preview/get_managed_cluster.py +759 -0
  1049. pulumi_azure_native/servicefabric/v20240901preview/get_managed_cluster_application.py +248 -0
  1050. pulumi_azure_native/servicefabric/v20240901preview/get_managed_cluster_application_type.py +177 -0
  1051. pulumi_azure_native/servicefabric/v20240901preview/get_managed_cluster_application_type_version.py +197 -0
  1052. pulumi_azure_native/servicefabric/v20240901preview/get_managed_cluster_service.py +183 -0
  1053. pulumi_azure_native/servicefabric/v20240901preview/get_node_type.py +863 -0
  1054. pulumi_azure_native/servicefabric/v20240901preview/getmanaged_az_resiliency_status.py +101 -0
  1055. pulumi_azure_native/servicefabric/v20240901preview/getmanaged_maintenance_window_status.py +170 -0
  1056. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster.py +1339 -0
  1057. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_application.py +409 -0
  1058. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_application_type.py +258 -0
  1059. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_application_type_version.py +309 -0
  1060. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_service.py +300 -0
  1061. pulumi_azure_native/servicefabric/v20240901preview/node_type.py +1695 -0
  1062. pulumi_azure_native/servicefabric/v20240901preview/outputs.py +4591 -0
  1063. {pulumi_azure_native-2.72.0a1731341920.dist-info → pulumi_azure_native-2.72.0a1731506636.dist-info}/METADATA +1 -1
  1064. {pulumi_azure_native-2.72.0a1731341920.dist-info → pulumi_azure_native-2.72.0a1731506636.dist-info}/RECORD +1066 -880
  1065. {pulumi_azure_native-2.72.0a1731341920.dist-info → pulumi_azure_native-2.72.0a1731506636.dist-info}/WHEEL +1 -1
  1066. pulumi_azure_native/mobilepacketcore/__init__.py +0 -37
  1067. pulumi_azure_native/mobilepacketcore/_enums.py +0 -139
  1068. pulumi_azure_native/mobilepacketcore/_inputs.py +0 -217
  1069. pulumi_azure_native/mobilepacketcore/amf_deployment.py +0 -347
  1070. pulumi_azure_native/mobilepacketcore/cluster_service.py +0 -371
  1071. pulumi_azure_native/mobilepacketcore/get_amf_deployment.py +0 -243
  1072. pulumi_azure_native/mobilepacketcore/get_cluster_service.py +0 -243
  1073. pulumi_azure_native/mobilepacketcore/get_network_function.py +0 -285
  1074. pulumi_azure_native/mobilepacketcore/get_nrf_deployment.py +0 -243
  1075. pulumi_azure_native/mobilepacketcore/get_nssf_deployment.py +0 -243
  1076. pulumi_azure_native/mobilepacketcore/get_observability_service.py +0 -229
  1077. pulumi_azure_native/mobilepacketcore/get_smf_deployment.py +0 -243
  1078. pulumi_azure_native/mobilepacketcore/get_upf_deployment.py +0 -243
  1079. pulumi_azure_native/mobilepacketcore/network_function.py +0 -437
  1080. pulumi_azure_native/mobilepacketcore/nrf_deployment.py +0 -347
  1081. pulumi_azure_native/mobilepacketcore/nssf_deployment.py +0 -347
  1082. pulumi_azure_native/mobilepacketcore/upf_deployment.py +0 -348
  1083. pulumi_azure_native/mobilepacketcore/v20230515preview/_enums.py +0 -109
  1084. pulumi_azure_native/mobilepacketcore/v20230515preview/get_network_function.py +0 -283
  1085. pulumi_azure_native/mobilepacketcore/v20230515preview/network_function.py +0 -435
  1086. pulumi_azure_native/mobilepacketcore/v20230515preview/outputs.py +0 -131
  1087. pulumi_azure_native/mobilepacketcore/v20231015preview/__init__.py +0 -24
  1088. pulumi_azure_native/mobilepacketcore/v20231015preview/_enums.py +0 -38
  1089. pulumi_azure_native/mobilepacketcore/v20231015preview/_inputs.py +0 -217
  1090. pulumi_azure_native/mobilepacketcore/v20231015preview/amf_deployment.py +0 -345
  1091. pulumi_azure_native/mobilepacketcore/v20231015preview/cluster_service.py +0 -369
  1092. pulumi_azure_native/mobilepacketcore/v20231015preview/get_amf_deployment.py +0 -241
  1093. pulumi_azure_native/mobilepacketcore/v20231015preview/get_cluster_service.py +0 -241
  1094. pulumi_azure_native/mobilepacketcore/v20231015preview/get_nrf_deployment.py +0 -241
  1095. pulumi_azure_native/mobilepacketcore/v20231015preview/get_nssf_deployment.py +0 -241
  1096. pulumi_azure_native/mobilepacketcore/v20231015preview/get_smf_deployment.py +0 -241
  1097. pulumi_azure_native/mobilepacketcore/v20231015preview/get_upf_deployment.py +0 -241
  1098. pulumi_azure_native/mobilepacketcore/v20231015preview/nssf_deployment.py +0 -345
  1099. pulumi_azure_native/mobilepacketcore/v20231015preview/upf_deployment.py +0 -346
  1100. {pulumi_azure_native-2.72.0a1731341920.dist-info → pulumi_azure_native-2.72.0a1731506636.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,921 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'AddonAutoscaling',
9
+ 'AgentPoolMode',
10
+ 'AgentPoolSSHAccess',
11
+ 'AgentPoolType',
12
+ 'ArtifactSource',
13
+ 'BackendPoolType',
14
+ 'ClusterServiceLoadBalancerHealthProbeMode',
15
+ 'Code',
16
+ 'ConnectionStatus',
17
+ 'DriverType',
18
+ 'Expander',
19
+ 'ExtendedLocationTypes',
20
+ 'GPUInstanceProfile',
21
+ 'IpFamily',
22
+ 'IpvsScheduler',
23
+ 'IstioIngressGatewayMode',
24
+ 'KeyVaultNetworkAccessTypes',
25
+ 'KubeletDiskType',
26
+ 'KubernetesSupportPlan',
27
+ 'Level',
28
+ 'LicenseType',
29
+ 'LoadBalancerSku',
30
+ 'ManagedClusterSKUName',
31
+ 'ManagedClusterSKUTier',
32
+ 'Mode',
33
+ 'NetworkDataplane',
34
+ 'NetworkMode',
35
+ 'NetworkPlugin',
36
+ 'NetworkPluginMode',
37
+ 'NetworkPolicy',
38
+ 'NginxIngressControllerType',
39
+ 'NodeOSUpgradeChannel',
40
+ 'NodeProvisioningMode',
41
+ 'OSDiskType',
42
+ 'OSSKU',
43
+ 'OSType',
44
+ 'Operator',
45
+ 'OutboundType',
46
+ 'PodIPAllocationMode',
47
+ 'PodLinkLocalAccess',
48
+ 'Protocol',
49
+ 'PublicNetworkAccess',
50
+ 'ResourceIdentityType',
51
+ 'RestrictionLevel',
52
+ 'ScaleDownMode',
53
+ 'ScaleSetEvictionPolicy',
54
+ 'ScaleSetPriority',
55
+ 'SeccompDefault',
56
+ 'ServiceMeshMode',
57
+ 'SnapshotType',
58
+ 'Type',
59
+ 'UndrainableNodeBehavior',
60
+ 'UpgradeChannel',
61
+ 'WeekDay',
62
+ 'WorkloadRuntime',
63
+ ]
64
+
65
+
66
+ class AddonAutoscaling(str, Enum):
67
+ """
68
+ Whether VPA add-on is enabled and configured to scale AKS-managed add-ons.
69
+ """
70
+ ENABLED = "Enabled"
71
+ """
72
+ Feature to autoscale AKS-managed add-ons is enabled. The default VPA update mode is Initial mode.
73
+ """
74
+ DISABLED = "Disabled"
75
+ """
76
+ Feature to autoscale AKS-managed add-ons is disabled.
77
+ """
78
+
79
+
80
+ class AgentPoolMode(str, Enum):
81
+ """
82
+ A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools
83
+ """
84
+ SYSTEM = "System"
85
+ """
86
+ System agent pools are primarily for hosting critical system pods such as CoreDNS and metrics-server. System agent pools osType must be Linux. System agent pools VM SKU must have at least 2vCPUs and 4GB of memory.
87
+ """
88
+ USER = "User"
89
+ """
90
+ User agent pools are primarily for hosting your application pods.
91
+ """
92
+ GATEWAY = "Gateway"
93
+ """
94
+ Gateway agent pools are dedicated to providing static egress IPs to pods. For more details, see https://aka.ms/aks/static-egress-gateway.
95
+ """
96
+
97
+
98
+ class AgentPoolSSHAccess(str, Enum):
99
+ """
100
+ SSH access method of an agent pool.
101
+ """
102
+ LOCAL_USER = "LocalUser"
103
+ """
104
+ Can SSH onto the node as a local user using private key.
105
+ """
106
+ DISABLED = "Disabled"
107
+ """
108
+ SSH service will be turned off on the node.
109
+ """
110
+
111
+
112
+ class AgentPoolType(str, Enum):
113
+ """
114
+ The type of Agent Pool.
115
+ """
116
+ VIRTUAL_MACHINE_SCALE_SETS = "VirtualMachineScaleSets"
117
+ """
118
+ Create an Agent Pool backed by a Virtual Machine Scale Set.
119
+ """
120
+ AVAILABILITY_SET = "AvailabilitySet"
121
+ """
122
+ Use of this is strongly discouraged.
123
+ """
124
+ VIRTUAL_MACHINES = "VirtualMachines"
125
+ """
126
+ Create an Agent Pool backed by a Single Instance VM orchestration mode.
127
+ """
128
+
129
+
130
+ class ArtifactSource(str, Enum):
131
+ """
132
+ The source where the artifacts are downloaded from.
133
+ """
134
+ CACHE = "Cache"
135
+ """
136
+ pull images from Azure Container Registry with cache
137
+ """
138
+ DIRECT = "Direct"
139
+ """
140
+ pull images from Microsoft Artifact Registry
141
+ """
142
+
143
+
144
+ class BackendPoolType(str, Enum):
145
+ """
146
+ The type of the managed inbound Load Balancer BackendPool.
147
+ """
148
+ NODE_IP_CONFIGURATION = "NodeIPConfiguration"
149
+ """
150
+ The type of the managed inbound Load Balancer BackendPool. https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend.
151
+ """
152
+ NODE_IP = "NodeIP"
153
+ """
154
+ The type of the managed inbound Load Balancer BackendPool. https://cloud-provider-azure.sigs.k8s.io/topics/loadbalancer/#configure-load-balancer-backend.
155
+ """
156
+
157
+
158
+ class ClusterServiceLoadBalancerHealthProbeMode(str, Enum):
159
+ """
160
+ The health probing behavior for External Traffic Policy Cluster services.
161
+ """
162
+ SERVICE_NODE_PORT = "ServiceNodePort"
163
+ """
164
+ Each External Traffic Policy Cluster service will have its own health probe targeting service nodePort.
165
+ """
166
+ SHARED = "Shared"
167
+ """
168
+ All External Traffic Policy Cluster services in a Standard Load Balancer will have a dedicated health probe targeting the backend nodes' kube-proxy health check port 10256.
169
+ """
170
+
171
+
172
+ class Code(str, Enum):
173
+ """
174
+ Tells whether the cluster is Running or Stopped
175
+ """
176
+ RUNNING = "Running"
177
+ """
178
+ The cluster is running.
179
+ """
180
+ STOPPED = "Stopped"
181
+ """
182
+ The cluster is stopped.
183
+ """
184
+
185
+
186
+ class ConnectionStatus(str, Enum):
187
+ """
188
+ The private link service connection status.
189
+ """
190
+ PENDING = "Pending"
191
+ APPROVED = "Approved"
192
+ REJECTED = "Rejected"
193
+ DISCONNECTED = "Disconnected"
194
+
195
+
196
+ class DriverType(str, Enum):
197
+ """
198
+ Specify the type of GPU driver to install when creating Windows agent pools. If not provided, AKS selects the driver based on system compatibility. This cannot be changed once the AgentPool has been created. This cannot be set on Linux AgentPools. For Linux AgentPools, the driver is selected based on system compatibility.
199
+ """
200
+ GRID = "GRID"
201
+ """
202
+ Install the GRID driver for the GPU, suitable for applications requiring virtualization support.
203
+ """
204
+ CUDA = "CUDA"
205
+ """
206
+ Install the CUDA driver for the GPU, optimized for computational tasks in scientific computing and data-intensive applications.
207
+ """
208
+
209
+
210
+ class Expander(str, Enum):
211
+ """
212
+ Available values are: 'least-waste', 'most-pods', 'priority', 'random'.
213
+ """
214
+ LEAST_WASTE = "least-waste"
215
+ """
216
+ Selects the node group that will have the least idle CPU (if tied, unused memory) after scale-up. This is useful when you have different classes of nodes, for example, high CPU or high memory nodes, and only want to expand those when there are pending pods that need a lot of those resources.
217
+ """
218
+ MOST_PODS = "most-pods"
219
+ """
220
+ Selects the node group that would be able to schedule the most pods when scaling up. This is useful when you are using nodeSelector to make sure certain pods land on certain nodes. Note that this won't cause the autoscaler to select bigger nodes vs. smaller, as it can add multiple smaller nodes at once.
221
+ """
222
+ PRIORITY = "priority"
223
+ """
224
+ Selects the node group that has the highest priority assigned by the user. It's configuration is described in more details [here](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/expander/priority/readme.md).
225
+ """
226
+ RANDOM = "random"
227
+ """
228
+ Used when you don't have a particular need for the node groups to scale differently.
229
+ """
230
+
231
+
232
+ class ExtendedLocationTypes(str, Enum):
233
+ """
234
+ The type of the extended location.
235
+ """
236
+ EDGE_ZONE = "EdgeZone"
237
+
238
+
239
+ class GPUInstanceProfile(str, Enum):
240
+ """
241
+ GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU.
242
+ """
243
+ MIG1G = "MIG1g"
244
+ MIG2G = "MIG2g"
245
+ MIG3G = "MIG3g"
246
+ MIG4G = "MIG4g"
247
+ MIG7G = "MIG7g"
248
+
249
+
250
+ class IpFamily(str, Enum):
251
+ """
252
+ The IP version to use for cluster networking and IP assignment.
253
+ """
254
+ I_PV4 = "IPv4"
255
+ I_PV6 = "IPv6"
256
+
257
+
258
+ class IpvsScheduler(str, Enum):
259
+ """
260
+ IPVS scheduler, for more information please see http://www.linuxvirtualserver.org/docs/scheduling.html.
261
+ """
262
+ ROUND_ROBIN = "RoundRobin"
263
+ """
264
+ Round Robin
265
+ """
266
+ LEAST_CONNECTION = "LeastConnection"
267
+ """
268
+ Least Connection
269
+ """
270
+
271
+
272
+ class IstioIngressGatewayMode(str, Enum):
273
+ """
274
+ Mode of an ingress gateway.
275
+ """
276
+ EXTERNAL = "External"
277
+ """
278
+ The ingress gateway is assigned a public IP address and is publicly accessible.
279
+ """
280
+ INTERNAL = "Internal"
281
+ """
282
+ The ingress gateway is assigned an internal IP address and cannot is accessed publicly.
283
+ """
284
+
285
+
286
+ class KeyVaultNetworkAccessTypes(str, Enum):
287
+ """
288
+ Network access of key vault. The possible values are `Public` and `Private`. `Public` means the key vault allows public access from all networks. `Private` means the key vault disables public access and enables private link. The default value is `Public`.
289
+ """
290
+ PUBLIC = "Public"
291
+ PRIVATE = "Private"
292
+
293
+
294
+ class KubeletDiskType(str, Enum):
295
+ """
296
+ Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage.
297
+ """
298
+ OS = "OS"
299
+ """
300
+ Kubelet will use the OS disk for its data.
301
+ """
302
+ TEMPORARY = "Temporary"
303
+ """
304
+ Kubelet will use the temporary disk for its data.
305
+ """
306
+
307
+
308
+ class KubernetesSupportPlan(str, Enum):
309
+ """
310
+ The support plan for the Managed Cluster. If unspecified, the default is 'KubernetesOfficial'.
311
+ """
312
+ KUBERNETES_OFFICIAL = "KubernetesOfficial"
313
+ """
314
+ Support for the version is the same as for the open source Kubernetes offering. Official Kubernetes open source community support versions for 1 year after release.
315
+ """
316
+ AKS_LONG_TERM_SUPPORT = "AKSLongTermSupport"
317
+ """
318
+ Support for the version extended past the KubernetesOfficial support of 1 year. AKS continues to patch CVEs for another 1 year, for a total of 2 years of support.
319
+ """
320
+
321
+
322
+ class Level(str, Enum):
323
+ """
324
+ The Safeguards level to be used. By default, Safeguards is enabled for all namespaces except those that AKS excludes via systemExcludedNamespaces
325
+ """
326
+ OFF = "Off"
327
+ WARNING = "Warning"
328
+ ENFORCEMENT = "Enforcement"
329
+
330
+
331
+ class LicenseType(str, Enum):
332
+ """
333
+ The license type to use for Windows VMs. See [Azure Hybrid User Benefits](https://azure.microsoft.com/pricing/hybrid-benefit/faq/) for more details.
334
+ """
335
+ NONE = "None"
336
+ """
337
+ No additional licensing is applied.
338
+ """
339
+ WINDOWS_SERVER = "Windows_Server"
340
+ """
341
+ Enables Azure Hybrid User Benefits for Windows VMs.
342
+ """
343
+
344
+
345
+ class LoadBalancerSku(str, Enum):
346
+ """
347
+ The default is 'standard'. See [Azure Load Balancer SKUs](https://docs.microsoft.com/azure/load-balancer/skus) for more information about the differences between load balancer SKUs.
348
+ """
349
+ STANDARD = "standard"
350
+ """
351
+ Use a a standard Load Balancer. This is the recommended Load Balancer SKU. For more information about on working with the load balancer in the managed cluster, see the [standard Load Balancer](https://docs.microsoft.com/azure/aks/load-balancer-standard) article.
352
+ """
353
+ BASIC = "basic"
354
+ """
355
+ Use a basic Load Balancer with limited functionality.
356
+ """
357
+
358
+
359
+ class ManagedClusterSKUName(str, Enum):
360
+ """
361
+ The name of a managed cluster SKU.
362
+ """
363
+ BASE = "Base"
364
+ """
365
+ Base option for the AKS control plane.
366
+ """
367
+ AUTOMATIC = "Automatic"
368
+ """
369
+ Automatic clusters are optimized to run most production workloads with configuration that follows AKS best practices and recommendations for cluster and workload setup, scalability, and security. For more details about Automatic clusters see aka.ms/aks/automatic.
370
+ """
371
+
372
+
373
+ class ManagedClusterSKUTier(str, Enum):
374
+ """
375
+ If not specified, the default is 'Free'. See [AKS Pricing Tier](https://learn.microsoft.com/azure/aks/free-standard-pricing-tiers) for more details.
376
+ """
377
+ PREMIUM = "Premium"
378
+ """
379
+ Cluster has premium capabilities in addition to all of the capabilities included in 'Standard'. Premium enables selection of LongTermSupport (aka.ms/aks/lts) for certain Kubernetes versions.
380
+ """
381
+ STANDARD = "Standard"
382
+ """
383
+ Recommended for mission-critical and production workloads. Includes Kubernetes control plane autoscaling, workload-intensive testing, and up to 5,000 nodes per cluster. Guarantees 99.95% availability of the Kubernetes API server endpoint for clusters that use Availability Zones and 99.9% of availability for clusters that don't use Availability Zones.
384
+ """
385
+ FREE = "Free"
386
+ """
387
+ The cluster management is free, but charged for VM, storage, and networking usage. Best for experimenting, learning, simple testing, or workloads with fewer than 10 nodes. Not recommended for production use cases.
388
+ """
389
+
390
+
391
+ class Mode(str, Enum):
392
+ """
393
+ Specify which proxy mode to use ('IPTABLES' or 'IPVS')
394
+ """
395
+ IPTABLES = "IPTABLES"
396
+ """
397
+ IPTables proxy mode
398
+ """
399
+ IPVS = "IPVS"
400
+ """
401
+ IPVS proxy mode. Must be using Kubernetes version >= 1.22.
402
+ """
403
+
404
+
405
+ class NetworkDataplane(str, Enum):
406
+ """
407
+ Network dataplane used in the Kubernetes cluster.
408
+ """
409
+ AZURE = "azure"
410
+ """
411
+ Use Azure network dataplane.
412
+ """
413
+ CILIUM = "cilium"
414
+ """
415
+ Use Cilium network dataplane. See [Azure CNI Powered by Cilium](https://learn.microsoft.com/azure/aks/azure-cni-powered-by-cilium) for more information.
416
+ """
417
+
418
+
419
+ class NetworkMode(str, Enum):
420
+ """
421
+ This cannot be specified if networkPlugin is anything other than 'azure'.
422
+ """
423
+ TRANSPARENT = "transparent"
424
+ """
425
+ No bridge is created. Intra-VM Pod to Pod communication is through IP routes created by Azure CNI. See [Transparent Mode](https://docs.microsoft.com/azure/aks/faq#transparent-mode) for more information.
426
+ """
427
+ BRIDGE = "bridge"
428
+ """
429
+ This is no longer supported
430
+ """
431
+
432
+
433
+ class NetworkPlugin(str, Enum):
434
+ """
435
+ Network plugin used for building the Kubernetes network.
436
+ """
437
+ AZURE = "azure"
438
+ """
439
+ Use the Azure CNI network plugin. See [Azure CNI (advanced) networking](https://docs.microsoft.com/azure/aks/concepts-network#azure-cni-advanced-networking) for more information.
440
+ """
441
+ KUBENET = "kubenet"
442
+ """
443
+ Use the Kubenet network plugin. See [Kubenet (basic) networking](https://docs.microsoft.com/azure/aks/concepts-network#kubenet-basic-networking) for more information.
444
+ """
445
+ NONE = "none"
446
+ """
447
+ Do not use a network plugin. A custom CNI will need to be installed after cluster creation for networking functionality.
448
+ """
449
+
450
+
451
+ class NetworkPluginMode(str, Enum):
452
+ """
453
+ Network plugin mode used for building the Kubernetes network.
454
+ """
455
+ OVERLAY = "overlay"
456
+ """
457
+ Pods are given IPs from the PodCIDR address space but use Azure Routing Domains rather than Kubenet reference plugins host-local and bridge.
458
+ """
459
+
460
+
461
+ class NetworkPolicy(str, Enum):
462
+ """
463
+ Network policy used for building the Kubernetes network.
464
+ """
465
+ NONE = "none"
466
+ """
467
+ Network policies will not be enforced. This is the default value when NetworkPolicy is not specified.
468
+ """
469
+ CALICO = "calico"
470
+ """
471
+ Use Calico network policies. See [differences between Azure and Calico policies](https://docs.microsoft.com/azure/aks/use-network-policies#differences-between-azure-and-calico-policies-and-their-capabilities) for more information.
472
+ """
473
+ AZURE = "azure"
474
+ """
475
+ Use Azure network policies. See [differences between Azure and Calico policies](https://docs.microsoft.com/azure/aks/use-network-policies#differences-between-azure-and-calico-policies-and-their-capabilities) for more information.
476
+ """
477
+ CILIUM = "cilium"
478
+ """
479
+ Use Cilium to enforce network policies. This requires networkDataplane to be 'cilium'.
480
+ """
481
+
482
+
483
+ class NginxIngressControllerType(str, Enum):
484
+ """
485
+ Ingress type for the default NginxIngressController custom resource
486
+ """
487
+ ANNOTATION_CONTROLLED = "AnnotationControlled"
488
+ """
489
+ The default NginxIngressController will be created. Users can edit the default NginxIngressController Custom Resource to configure load balancer annotations.
490
+ """
491
+ EXTERNAL = "External"
492
+ """
493
+ The default NginxIngressController will be created and the operator will provision an external loadbalancer with it. Any annotation to make the default loadbalancer internal will be overwritten.
494
+ """
495
+ INTERNAL = "Internal"
496
+ """
497
+ The default NginxIngressController will be created and the operator will provision an internal loadbalancer with it. Any annotation to make the default loadbalancer external will be overwritten.
498
+ """
499
+ NONE = "None"
500
+ """
501
+ The default Ingress Controller will not be created. It will not be deleted by the system if it exists. Users should delete the default NginxIngressController Custom Resource manually if desired.
502
+ """
503
+
504
+
505
+ class NodeOSUpgradeChannel(str, Enum):
506
+ """
507
+ The default is Unmanaged, but may change to either NodeImage or SecurityPatch at GA.
508
+ """
509
+ NONE = "None"
510
+ """
511
+ No attempt to update your machines OS will be made either by OS or by rolling VHDs. This means you are responsible for your security updates
512
+ """
513
+ UNMANAGED = "Unmanaged"
514
+ """
515
+ OS updates will be applied automatically through the OS built-in patching infrastructure. Newly scaled in machines will be unpatched initially, and will be patched at some later time by the OS's infrastructure. Behavior of this option depends on the OS in question. Ubuntu and Mariner apply security patches through unattended upgrade roughly once a day around 06:00 UTC. Windows does not apply security patches automatically and so for them this option is equivalent to None till further notice
516
+ """
517
+ SECURITY_PATCH = "SecurityPatch"
518
+ """
519
+ AKS downloads and updates the nodes with tested security updates. These updates honor the maintenance window settings and produce a new VHD that is used on new nodes. On some occasions it's not possible to apply the updates in place, in such cases the existing nodes will also be re-imaged to the newly produced VHD in order to apply the changes. This option incurs an extra cost of hosting the new Security Patch VHDs in your resource group for just in time consumption.
520
+ """
521
+ NODE_IMAGE = "NodeImage"
522
+ """
523
+ AKS will update the nodes with a newly patched VHD containing security fixes and bugfixes on a weekly cadence. With the VHD update machines will be rolling reimaged to that VHD following maintenance windows and surge settings. No extra VHD cost is incurred when choosing this option as AKS hosts the images.
524
+ """
525
+
526
+
527
+ class NodeProvisioningMode(str, Enum):
528
+ """
529
+ Once the mode it set to Auto, it cannot be changed back to Manual.
530
+ """
531
+ MANUAL = "Manual"
532
+ """
533
+ Nodes are provisioned manually by the user
534
+ """
535
+ AUTO = "Auto"
536
+ """
537
+ Nodes are provisioned automatically by AKS using Karpenter. Fixed size Node Pools can still be created, but autoscaling Node Pools cannot be. (See aka.ms/aks/nap for more details).
538
+ """
539
+
540
+
541
+ class OSDiskType(str, Enum):
542
+ """
543
+ The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os).
544
+ """
545
+ MANAGED = "Managed"
546
+ """
547
+ Azure replicates the operating system disk for a virtual machine to Azure storage to avoid data loss should the VM need to be relocated to another host. Since containers aren't designed to have local state persisted, this behavior offers limited value while providing some drawbacks, including slower node provisioning and higher read/write latency.
548
+ """
549
+ EPHEMERAL = "Ephemeral"
550
+ """
551
+ Ephemeral OS disks are stored only on the host machine, just like a temporary disk. This provides lower read/write latency, along with faster node scaling and cluster upgrades.
552
+ """
553
+
554
+
555
+ class OSSKU(str, Enum):
556
+ """
557
+ Specifies the OS SKU used by the agent pool. If not specified, the default is Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be changed to Windows2022 after Windows2019 is deprecated.
558
+ """
559
+ UBUNTU = "Ubuntu"
560
+ """
561
+ Use Ubuntu as the OS for node images.
562
+ """
563
+ MARINER = "Mariner"
564
+ """
565
+ Deprecated OSSKU. Microsoft recommends that new deployments choose 'AzureLinux' instead.
566
+ """
567
+ AZURE_LINUX = "AzureLinux"
568
+ """
569
+ Use AzureLinux as the OS for node images. Azure Linux is a container-optimized Linux distro built by Microsoft, visit https://aka.ms/azurelinux for more information.
570
+ """
571
+ CBL_MARINER = "CBLMariner"
572
+ """
573
+ Deprecated OSSKU. Microsoft recommends that new deployments choose 'AzureLinux' instead.
574
+ """
575
+ WINDOWS2019 = "Windows2019"
576
+ """
577
+ Use Windows2019 as the OS for node images. Unsupported for system node pools. Windows2019 only supports Windows2019 containers; it cannot run Windows2022 containers and vice versa.
578
+ """
579
+ WINDOWS2022 = "Windows2022"
580
+ """
581
+ Use Windows2022 as the OS for node images. Unsupported for system node pools. Windows2022 only supports Windows2022 containers; it cannot run Windows2019 containers and vice versa.
582
+ """
583
+ WINDOWS_ANNUAL = "WindowsAnnual"
584
+ """
585
+ Use Windows Annual Channel version as the OS for node images. Unsupported for system node pools. Details about supported container images and kubernetes versions under different AKS Annual Channel versions could be seen in https://aka.ms/aks/windows-annual-channel-details.
586
+ """
587
+
588
+
589
+ class OSType(str, Enum):
590
+ """
591
+ The operating system type. The default is Linux.
592
+ """
593
+ LINUX = "Linux"
594
+ """
595
+ Use Linux.
596
+ """
597
+ WINDOWS = "Windows"
598
+ """
599
+ Use Windows.
600
+ """
601
+
602
+
603
+ class Operator(str, Enum):
604
+ """
605
+ operator represents a key's relationship to a set of values. Valid operators are In and NotIn
606
+ """
607
+ IN_ = "In"
608
+ """
609
+ The value of the key should be in the given list.
610
+ """
611
+ NOT_IN = "NotIn"
612
+ """
613
+ The value of the key should not be in the given list.
614
+ """
615
+ EXISTS = "Exists"
616
+ """
617
+ The value of the key should exist.
618
+ """
619
+ DOES_NOT_EXIST = "DoesNotExist"
620
+ """
621
+ The value of the key should not exist.
622
+ """
623
+
624
+
625
+ class OutboundType(str, Enum):
626
+ """
627
+ This can only be set at cluster creation time and cannot be changed later. For more information see [egress outbound type](https://docs.microsoft.com/azure/aks/egress-outboundtype).
628
+ """
629
+ LOAD_BALANCER = "loadBalancer"
630
+ """
631
+ The load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'. For more information see [outbound type loadbalancer](https://docs.microsoft.com/azure/aks/egress-outboundtype#outbound-type-of-loadbalancer).
632
+ """
633
+ USER_DEFINED_ROUTING = "userDefinedRouting"
634
+ """
635
+ Egress paths must be defined by the user. This is an advanced scenario and requires proper network configuration. For more information see [outbound type userDefinedRouting](https://docs.microsoft.com/azure/aks/egress-outboundtype#outbound-type-of-userdefinedrouting).
636
+ """
637
+ MANAGED_NAT_GATEWAY = "managedNATGateway"
638
+ """
639
+ The AKS-managed NAT gateway is used for egress.
640
+ """
641
+ USER_ASSIGNED_NAT_GATEWAY = "userAssignedNATGateway"
642
+ """
643
+ The user-assigned NAT gateway associated to the cluster subnet is used for egress. This is an advanced scenario and requires proper network configuration.
644
+ """
645
+ NONE = "none"
646
+ """
647
+ The AKS cluster is not set with any outbound-type. All AKS nodes follows Azure VM default outbound behavior. Please refer to https://azure.microsoft.com/en-us/updates/default-outbound-access-for-vms-in-azure-will-be-retired-transition-to-a-new-method-of-internet-access/
648
+ """
649
+
650
+
651
+ class PodIPAllocationMode(str, Enum):
652
+ """
653
+ The IP allocation mode for pods in the agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'.
654
+ """
655
+ DYNAMIC_INDIVIDUAL = "DynamicIndividual"
656
+ """
657
+ Each pod gets a single IP address assigned. This is better for maximizing a small to medium subnet of size /16 or smaller. The Azure CNI cluster with dynamic IP allocation defaults to this mode if the customer does not explicitly specify a podIPAllocationMode
658
+ """
659
+ STATIC_BLOCK = "StaticBlock"
660
+ """
661
+ Each node is statically allocated CIDR block(s) of size /28 = 16 IPs per block to satisfy the maxPods per node. Number of CIDR blocks >= (maxPods / 16). The block, rather than a single IP, counts against the Azure Vnet Private IP limit of 65K. Therefore block mode is suitable for running larger workloads with more than the current limit of 65K pods in a cluster. This mode is better suited to scale with larger subnets of /15 or bigger
662
+ """
663
+
664
+
665
+ class PodLinkLocalAccess(str, Enum):
666
+ """
667
+ Defines access to special link local addresses (Azure Instance Metadata Service, aka IMDS) for pods with hostNetwork=false. if not specified, the default is 'IMDS'.
668
+ """
669
+ IMDS = "IMDS"
670
+ """
671
+ Pods with hostNetwork=false can access Azure Instance Metadata Service (IMDS) without restriction.
672
+ """
673
+ NONE = "None"
674
+ """
675
+ Pods with hostNetwork=false cannot access Azure Instance Metadata Service (IMDS).
676
+ """
677
+
678
+
679
+ class Protocol(str, Enum):
680
+ """
681
+ The network protocol of the port.
682
+ """
683
+ TCP = "TCP"
684
+ """
685
+ TCP protocol.
686
+ """
687
+ UDP = "UDP"
688
+ """
689
+ UDP protocol.
690
+ """
691
+
692
+
693
+ class PublicNetworkAccess(str, Enum):
694
+ """
695
+ Allow or deny public network access for AKS
696
+ """
697
+ ENABLED = "Enabled"
698
+ """
699
+ Inbound/Outbound to the managedCluster is allowed.
700
+ """
701
+ DISABLED = "Disabled"
702
+ """
703
+ Inbound traffic to managedCluster is disabled, traffic from managedCluster is allowed.
704
+ """
705
+ SECURED_BY_PERIMETER = "SecuredByPerimeter"
706
+ """
707
+ Inbound/Outbound traffic is managed by Microsoft.Network/NetworkSecurityPerimeters.
708
+ """
709
+
710
+
711
+ class ResourceIdentityType(str, Enum):
712
+ """
713
+ For more information see [use managed identities in AKS](https://docs.microsoft.com/azure/aks/use-managed-identity).
714
+ """
715
+ SYSTEM_ASSIGNED = "SystemAssigned"
716
+ """
717
+ Use an implicitly created system assigned managed identity to manage cluster resources. Master components in the control plane such as kube-controller-manager will use the system assigned managed identity to manipulate Azure resources.
718
+ """
719
+ USER_ASSIGNED = "UserAssigned"
720
+ """
721
+ Use a user-specified identity to manage cluster resources. Master components in the control plane such as kube-controller-manager will use the specified user assigned managed identity to manipulate Azure resources.
722
+ """
723
+ NONE = "None"
724
+ """
725
+ Do not use a managed identity for the Managed Cluster, service principal will be used instead.
726
+ """
727
+
728
+
729
+ class RestrictionLevel(str, Enum):
730
+ """
731
+ The restriction level applied to the cluster's node resource group
732
+ """
733
+ UNRESTRICTED = "Unrestricted"
734
+ """
735
+ All RBAC permissions are allowed on the managed node resource group
736
+ """
737
+ READ_ONLY = "ReadOnly"
738
+ """
739
+ Only */read RBAC permissions allowed on the managed node resource group
740
+ """
741
+
742
+
743
+ class ScaleDownMode(str, Enum):
744
+ """
745
+ This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete.
746
+ """
747
+ DELETE = "Delete"
748
+ """
749
+ Create new instances during scale up and remove instances during scale down.
750
+ """
751
+ DEALLOCATE = "Deallocate"
752
+ """
753
+ Attempt to start deallocated instances (if they exist) during scale up and deallocate instances during scale down.
754
+ """
755
+
756
+
757
+ class ScaleSetEvictionPolicy(str, Enum):
758
+ """
759
+ This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'.
760
+ """
761
+ DELETE = "Delete"
762
+ """
763
+ Nodes in the underlying Scale Set of the node pool are deleted when they're evicted.
764
+ """
765
+ DEALLOCATE = "Deallocate"
766
+ """
767
+ Nodes in the underlying Scale Set of the node pool are set to the stopped-deallocated state upon eviction. Nodes in the stopped-deallocated state count against your compute quota and can cause issues with cluster scaling or upgrading.
768
+ """
769
+
770
+
771
+ class ScaleSetPriority(str, Enum):
772
+ """
773
+ The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
774
+ """
775
+ SPOT = "Spot"
776
+ """
777
+ Spot priority VMs will be used. There is no SLA for spot nodes. See [spot on AKS](https://docs.microsoft.com/azure/aks/spot-node-pool) for more information.
778
+ """
779
+ REGULAR = "Regular"
780
+ """
781
+ Regular VMs will be used.
782
+ """
783
+
784
+
785
+ class SeccompDefault(str, Enum):
786
+ """
787
+ Specifies the default seccomp profile applied to all workloads. If not specified, 'Unconfined' will be used by default.
788
+ """
789
+ UNCONFINED = "Unconfined"
790
+ """
791
+ No seccomp profile is applied, allowing all system calls.
792
+ """
793
+ RUNTIME_DEFAULT = "RuntimeDefault"
794
+ """
795
+ The default seccomp profile for container runtime is applied, which restricts certain system calls for enhanced security.
796
+ """
797
+
798
+
799
+ class ServiceMeshMode(str, Enum):
800
+ """
801
+ Mode of the service mesh.
802
+ """
803
+ ISTIO = "Istio"
804
+ """
805
+ Istio deployed as an AKS addon.
806
+ """
807
+ DISABLED = "Disabled"
808
+ """
809
+ Mesh is disabled.
810
+ """
811
+
812
+
813
+ class SnapshotType(str, Enum):
814
+ """
815
+ The type of a snapshot. The default is NodePool.
816
+ """
817
+ NODE_POOL = "NodePool"
818
+ """
819
+ The snapshot is a snapshot of a node pool.
820
+ """
821
+ MANAGED_CLUSTER = "ManagedCluster"
822
+ """
823
+ The snapshot is a snapshot of a managed cluster.
824
+ """
825
+
826
+
827
+ class Type(str, Enum):
828
+ """
829
+ Specifies on which instance of the allowed days specified in daysOfWeek the maintenance occurs.
830
+ """
831
+ FIRST = "First"
832
+ """
833
+ First.
834
+ """
835
+ SECOND = "Second"
836
+ """
837
+ Second.
838
+ """
839
+ THIRD = "Third"
840
+ """
841
+ Third.
842
+ """
843
+ FOURTH = "Fourth"
844
+ """
845
+ Fourth.
846
+ """
847
+ LAST = "Last"
848
+ """
849
+ Last.
850
+ """
851
+
852
+
853
+ class UndrainableNodeBehavior(str, Enum):
854
+ """
855
+ Defines the behavior for undrainable nodes during upgrade. The most common cause of undrainable nodes is Pod Disruption Budgets (PDBs), but other issues, such as pod termination grace period is exceeding the remaining per-node drain timeout or pod is still being in a running state, can also cause undrainable nodes.
856
+ """
857
+ CORDON = "Cordon"
858
+ """
859
+ AKS will cordon the blocked nodes and replace them with surge nodes during upgrade. The blocked nodes will be cordoned and replaced by surge nodes. The blocked nodes will have label 'kubernetes.azure.com/upgrade-status:Quarantined'. A surge node will be retained for each blocked node. A best-effort attempt will be made to delete all other surge nodes. If there are enough surge nodes to replace blocked nodes, then the upgrade operation and the managed cluster will be in failed state. Otherwise, the upgrade operation and the managed cluster will be in canceled state.
860
+ """
861
+ SCHEDULE = "Schedule"
862
+ """
863
+ AKS will mark the blocked nodes schedulable, but the blocked nodes are not upgraded. A best-effort attempt will be made to delete all surge nodes. The upgrade operation and the managed cluster will be in failed state if there are any blocked nodes.
864
+ """
865
+
866
+
867
+ class UpgradeChannel(str, Enum):
868
+ """
869
+ For more information see [setting the AKS cluster auto-upgrade channel](https://docs.microsoft.com/azure/aks/upgrade-cluster#set-auto-upgrade-channel).
870
+ """
871
+ RAPID = "rapid"
872
+ """
873
+ Automatically upgrade the cluster to the latest supported patch release on the latest supported minor version. In cases where the cluster is at a version of Kubernetes that is at an N-2 minor version where N is the latest supported minor version, the cluster first upgrades to the latest supported patch version on N-1 minor version. For example, if a cluster is running version 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster first is upgraded to 1.18.6, then is upgraded to 1.19.1.
874
+ """
875
+ STABLE = "stable"
876
+ """
877
+ Automatically upgrade the cluster to the latest supported patch release on minor version N-1, where N is the latest supported minor version. For example, if a cluster is running version 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster is upgraded to 1.18.6.
878
+ """
879
+ PATCH = "patch"
880
+ """
881
+ Automatically upgrade the cluster to the latest supported patch version when it becomes available while keeping the minor version the same. For example, if a cluster is running version 1.17.7 and versions 1.17.9, 1.18.4, 1.18.6, and 1.19.1 are available, your cluster is upgraded to 1.17.9.
882
+ """
883
+ NODE_IMAGE = "node-image"
884
+ """
885
+ Automatically upgrade the node image to the latest version available. Consider using nodeOSUpgradeChannel instead as that allows you to configure node OS patching separate from Kubernetes version patching
886
+ """
887
+ NONE = "none"
888
+ """
889
+ Disables auto-upgrades and keeps the cluster at its current version of Kubernetes.
890
+ """
891
+
892
+
893
+ class WeekDay(str, Enum):
894
+ """
895
+ The day of the week.
896
+ """
897
+ SUNDAY = "Sunday"
898
+ MONDAY = "Monday"
899
+ TUESDAY = "Tuesday"
900
+ WEDNESDAY = "Wednesday"
901
+ THURSDAY = "Thursday"
902
+ FRIDAY = "Friday"
903
+ SATURDAY = "Saturday"
904
+
905
+
906
+ class WorkloadRuntime(str, Enum):
907
+ """
908
+ Determines the type of workload a node can run.
909
+ """
910
+ OCI_CONTAINER = "OCIContainer"
911
+ """
912
+ Nodes will use Kubelet to run standard OCI container workloads.
913
+ """
914
+ WASM_WASI = "WasmWasi"
915
+ """
916
+ Nodes will use Krustlet to run WASM workloads using the WASI provider (Preview).
917
+ """
918
+ KATA_MSHV_VM_ISOLATION = "KataMshvVmIsolation"
919
+ """
920
+ Nodes can use (Kata + Cloud Hypervisor + Hyper-V) to enable Nested VM-based pods (Preview). Due to the use Hyper-V, AKS node OS itself is a nested VM (the root OS) of Hyper-V. Thus it can only be used with VM series that support Nested Virtualization such as Dv3 series.
921
+ """