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,4591 @@
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
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+
19
+ __all__ = [
20
+ 'AddRemoveIncrementalNamedPartitionScalingMechanismResponse',
21
+ 'AdditionalNetworkInterfaceConfigurationResponse',
22
+ 'ApplicationHealthPolicyResponse',
23
+ 'ApplicationTypeVersionsCleanupPolicyResponse',
24
+ 'ApplicationUpgradePolicyResponse',
25
+ 'ApplicationUserAssignedIdentityResponse',
26
+ 'AveragePartitionLoadScalingTriggerResponse',
27
+ 'AverageServiceLoadScalingTriggerResponse',
28
+ 'AzureActiveDirectoryResponse',
29
+ 'ClientCertificateResponse',
30
+ 'ClusterHealthPolicyResponse',
31
+ 'ClusterMonitoringPolicyResponse',
32
+ 'ClusterUpgradeDeltaHealthPolicyResponse',
33
+ 'ClusterUpgradePolicyResponse',
34
+ 'EndpointRangeDescriptionResponse',
35
+ 'FrontendConfigurationResponse',
36
+ 'IpConfigurationResponse',
37
+ 'IpConfigurationResponsePublicIPAddressConfiguration',
38
+ 'IpTagResponse',
39
+ 'LoadBalancingRuleResponse',
40
+ 'ManagedIdentityResponse',
41
+ 'NamedPartitionSchemeResponse',
42
+ 'NetworkSecurityRuleResponse',
43
+ 'NodeTypeNatConfigResponse',
44
+ 'NodeTypeSkuResponse',
45
+ 'PartitionInstanceCountScaleMechanismResponse',
46
+ 'ResourceAzStatusResponse',
47
+ 'RollingUpgradeMonitoringPolicyResponse',
48
+ 'ScalingPolicyResponse',
49
+ 'ServiceCorrelationResponse',
50
+ 'ServiceEndpointResponse',
51
+ 'ServiceLoadMetricResponse',
52
+ 'ServicePlacementInvalidDomainPolicyResponse',
53
+ 'ServicePlacementNonPartiallyPlaceServicePolicyResponse',
54
+ 'ServicePlacementPreferPrimaryDomainPolicyResponse',
55
+ 'ServicePlacementRequireDomainDistributionPolicyResponse',
56
+ 'ServicePlacementRequiredDomainPolicyResponse',
57
+ 'ServiceTypeHealthPolicyResponse',
58
+ 'SettingsParameterDescriptionResponse',
59
+ 'SettingsSectionDescriptionResponse',
60
+ 'SingletonPartitionSchemeResponse',
61
+ 'SkuResponse',
62
+ 'StatefulServicePropertiesResponse',
63
+ 'StatelessServicePropertiesResponse',
64
+ 'SubResourceResponse',
65
+ 'SubnetResponse',
66
+ 'SystemDataResponse',
67
+ 'UniformInt64RangePartitionSchemeResponse',
68
+ 'UserAssignedIdentityResponse',
69
+ 'VMSSExtensionResponse',
70
+ 'VaultCertificateResponse',
71
+ 'VaultSecretGroupResponse',
72
+ 'VmApplicationResponse',
73
+ 'VmImagePlanResponse',
74
+ 'VmManagedIdentityResponse',
75
+ 'VmssDataDiskResponse',
76
+ ]
77
+
78
+ @pulumi.output_type
79
+ class AddRemoveIncrementalNamedPartitionScalingMechanismResponse(dict):
80
+ """
81
+ Represents a scaling mechanism for adding or removing named partitions of a stateless service. Partition names are in the format '0','1'...'N-1'.
82
+ """
83
+ @staticmethod
84
+ def __key_warning(key: str):
85
+ suggest = None
86
+ if key == "maxPartitionCount":
87
+ suggest = "max_partition_count"
88
+ elif key == "minPartitionCount":
89
+ suggest = "min_partition_count"
90
+ elif key == "scaleIncrement":
91
+ suggest = "scale_increment"
92
+
93
+ if suggest:
94
+ pulumi.log.warn(f"Key '{key}' not found in AddRemoveIncrementalNamedPartitionScalingMechanismResponse. Access the value via the '{suggest}' property getter instead.")
95
+
96
+ def __getitem__(self, key: str) -> Any:
97
+ AddRemoveIncrementalNamedPartitionScalingMechanismResponse.__key_warning(key)
98
+ return super().__getitem__(key)
99
+
100
+ def get(self, key: str, default = None) -> Any:
101
+ AddRemoveIncrementalNamedPartitionScalingMechanismResponse.__key_warning(key)
102
+ return super().get(key, default)
103
+
104
+ def __init__(__self__, *,
105
+ kind: str,
106
+ max_partition_count: int,
107
+ min_partition_count: int,
108
+ scale_increment: int):
109
+ """
110
+ Represents a scaling mechanism for adding or removing named partitions of a stateless service. Partition names are in the format '0','1'...'N-1'.
111
+ :param str kind: Enumerates the ways that a service can be partitioned.
112
+ Expected value is 'AddRemoveIncrementalNamedPartition'.
113
+ :param int max_partition_count: Maximum number of named partitions of the service.
114
+ :param int min_partition_count: Minimum number of named partitions of the service.
115
+ :param int scale_increment: The number of instances to add or remove during a scaling operation.
116
+ """
117
+ pulumi.set(__self__, "kind", 'AddRemoveIncrementalNamedPartition')
118
+ pulumi.set(__self__, "max_partition_count", max_partition_count)
119
+ pulumi.set(__self__, "min_partition_count", min_partition_count)
120
+ pulumi.set(__self__, "scale_increment", scale_increment)
121
+
122
+ @property
123
+ @pulumi.getter
124
+ def kind(self) -> str:
125
+ """
126
+ Enumerates the ways that a service can be partitioned.
127
+ Expected value is 'AddRemoveIncrementalNamedPartition'.
128
+ """
129
+ return pulumi.get(self, "kind")
130
+
131
+ @property
132
+ @pulumi.getter(name="maxPartitionCount")
133
+ def max_partition_count(self) -> int:
134
+ """
135
+ Maximum number of named partitions of the service.
136
+ """
137
+ return pulumi.get(self, "max_partition_count")
138
+
139
+ @property
140
+ @pulumi.getter(name="minPartitionCount")
141
+ def min_partition_count(self) -> int:
142
+ """
143
+ Minimum number of named partitions of the service.
144
+ """
145
+ return pulumi.get(self, "min_partition_count")
146
+
147
+ @property
148
+ @pulumi.getter(name="scaleIncrement")
149
+ def scale_increment(self) -> int:
150
+ """
151
+ The number of instances to add or remove during a scaling operation.
152
+ """
153
+ return pulumi.get(self, "scale_increment")
154
+
155
+
156
+ @pulumi.output_type
157
+ class AdditionalNetworkInterfaceConfigurationResponse(dict):
158
+ """
159
+ Specifies the settings for a network interface to attach to the node type.
160
+ """
161
+ @staticmethod
162
+ def __key_warning(key: str):
163
+ suggest = None
164
+ if key == "ipConfigurations":
165
+ suggest = "ip_configurations"
166
+ elif key == "dscpConfiguration":
167
+ suggest = "dscp_configuration"
168
+ elif key == "enableAcceleratedNetworking":
169
+ suggest = "enable_accelerated_networking"
170
+
171
+ if suggest:
172
+ pulumi.log.warn(f"Key '{key}' not found in AdditionalNetworkInterfaceConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
173
+
174
+ def __getitem__(self, key: str) -> Any:
175
+ AdditionalNetworkInterfaceConfigurationResponse.__key_warning(key)
176
+ return super().__getitem__(key)
177
+
178
+ def get(self, key: str, default = None) -> Any:
179
+ AdditionalNetworkInterfaceConfigurationResponse.__key_warning(key)
180
+ return super().get(key, default)
181
+
182
+ def __init__(__self__, *,
183
+ ip_configurations: Sequence['outputs.IpConfigurationResponse'],
184
+ name: str,
185
+ dscp_configuration: Optional['outputs.SubResourceResponse'] = None,
186
+ enable_accelerated_networking: Optional[bool] = None):
187
+ """
188
+ Specifies the settings for a network interface to attach to the node type.
189
+ :param Sequence['IpConfigurationResponse'] ip_configurations: Specifies the IP configurations of the network interface.
190
+ :param str name: Name of the network interface.
191
+ :param 'SubResourceResponse' dscp_configuration: Specifies the DSCP configuration to apply to the network interface.
192
+ :param bool enable_accelerated_networking: Specifies whether the network interface is accelerated networking-enabled.
193
+ """
194
+ pulumi.set(__self__, "ip_configurations", ip_configurations)
195
+ pulumi.set(__self__, "name", name)
196
+ if dscp_configuration is not None:
197
+ pulumi.set(__self__, "dscp_configuration", dscp_configuration)
198
+ if enable_accelerated_networking is not None:
199
+ pulumi.set(__self__, "enable_accelerated_networking", enable_accelerated_networking)
200
+
201
+ @property
202
+ @pulumi.getter(name="ipConfigurations")
203
+ def ip_configurations(self) -> Sequence['outputs.IpConfigurationResponse']:
204
+ """
205
+ Specifies the IP configurations of the network interface.
206
+ """
207
+ return pulumi.get(self, "ip_configurations")
208
+
209
+ @property
210
+ @pulumi.getter
211
+ def name(self) -> str:
212
+ """
213
+ Name of the network interface.
214
+ """
215
+ return pulumi.get(self, "name")
216
+
217
+ @property
218
+ @pulumi.getter(name="dscpConfiguration")
219
+ def dscp_configuration(self) -> Optional['outputs.SubResourceResponse']:
220
+ """
221
+ Specifies the DSCP configuration to apply to the network interface.
222
+ """
223
+ return pulumi.get(self, "dscp_configuration")
224
+
225
+ @property
226
+ @pulumi.getter(name="enableAcceleratedNetworking")
227
+ def enable_accelerated_networking(self) -> Optional[bool]:
228
+ """
229
+ Specifies whether the network interface is accelerated networking-enabled.
230
+ """
231
+ return pulumi.get(self, "enable_accelerated_networking")
232
+
233
+
234
+ @pulumi.output_type
235
+ class ApplicationHealthPolicyResponse(dict):
236
+ """
237
+ Defines a health policy used to evaluate the health of an application or one of its children entities.
238
+ """
239
+ @staticmethod
240
+ def __key_warning(key: str):
241
+ suggest = None
242
+ if key == "considerWarningAsError":
243
+ suggest = "consider_warning_as_error"
244
+ elif key == "maxPercentUnhealthyDeployedApplications":
245
+ suggest = "max_percent_unhealthy_deployed_applications"
246
+ elif key == "defaultServiceTypeHealthPolicy":
247
+ suggest = "default_service_type_health_policy"
248
+ elif key == "serviceTypeHealthPolicyMap":
249
+ suggest = "service_type_health_policy_map"
250
+
251
+ if suggest:
252
+ pulumi.log.warn(f"Key '{key}' not found in ApplicationHealthPolicyResponse. Access the value via the '{suggest}' property getter instead.")
253
+
254
+ def __getitem__(self, key: str) -> Any:
255
+ ApplicationHealthPolicyResponse.__key_warning(key)
256
+ return super().__getitem__(key)
257
+
258
+ def get(self, key: str, default = None) -> Any:
259
+ ApplicationHealthPolicyResponse.__key_warning(key)
260
+ return super().get(key, default)
261
+
262
+ def __init__(__self__, *,
263
+ consider_warning_as_error: bool,
264
+ max_percent_unhealthy_deployed_applications: int,
265
+ default_service_type_health_policy: Optional['outputs.ServiceTypeHealthPolicyResponse'] = None,
266
+ service_type_health_policy_map: Optional[Mapping[str, 'outputs.ServiceTypeHealthPolicyResponse']] = None):
267
+ """
268
+ Defines a health policy used to evaluate the health of an application or one of its children entities.
269
+
270
+ :param bool consider_warning_as_error: Indicates whether warnings are treated with the same severity as errors.
271
+ :param int max_percent_unhealthy_deployed_applications: The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100.
272
+ The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error.
273
+ This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster.
274
+ The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
275
+ :param 'ServiceTypeHealthPolicyResponse' default_service_type_health_policy: The health policy used by default to evaluate the health of a service type.
276
+ :param Mapping[str, 'ServiceTypeHealthPolicyResponse'] service_type_health_policy_map: The map with service type health policy per service type name. The map is empty by default.
277
+ """
278
+ pulumi.set(__self__, "consider_warning_as_error", consider_warning_as_error)
279
+ pulumi.set(__self__, "max_percent_unhealthy_deployed_applications", max_percent_unhealthy_deployed_applications)
280
+ if default_service_type_health_policy is not None:
281
+ pulumi.set(__self__, "default_service_type_health_policy", default_service_type_health_policy)
282
+ if service_type_health_policy_map is not None:
283
+ pulumi.set(__self__, "service_type_health_policy_map", service_type_health_policy_map)
284
+
285
+ @property
286
+ @pulumi.getter(name="considerWarningAsError")
287
+ def consider_warning_as_error(self) -> bool:
288
+ """
289
+ Indicates whether warnings are treated with the same severity as errors.
290
+ """
291
+ return pulumi.get(self, "consider_warning_as_error")
292
+
293
+ @property
294
+ @pulumi.getter(name="maxPercentUnhealthyDeployedApplications")
295
+ def max_percent_unhealthy_deployed_applications(self) -> int:
296
+ """
297
+ The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100.
298
+ The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error.
299
+ This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster.
300
+ The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
301
+ """
302
+ return pulumi.get(self, "max_percent_unhealthy_deployed_applications")
303
+
304
+ @property
305
+ @pulumi.getter(name="defaultServiceTypeHealthPolicy")
306
+ def default_service_type_health_policy(self) -> Optional['outputs.ServiceTypeHealthPolicyResponse']:
307
+ """
308
+ The health policy used by default to evaluate the health of a service type.
309
+ """
310
+ return pulumi.get(self, "default_service_type_health_policy")
311
+
312
+ @property
313
+ @pulumi.getter(name="serviceTypeHealthPolicyMap")
314
+ def service_type_health_policy_map(self) -> Optional[Mapping[str, 'outputs.ServiceTypeHealthPolicyResponse']]:
315
+ """
316
+ The map with service type health policy per service type name. The map is empty by default.
317
+ """
318
+ return pulumi.get(self, "service_type_health_policy_map")
319
+
320
+
321
+ @pulumi.output_type
322
+ class ApplicationTypeVersionsCleanupPolicyResponse(dict):
323
+ """
324
+ The policy used to clean up unused versions. When the policy is not specified explicitly, the default unused application versions to keep will be 3.
325
+ """
326
+ @staticmethod
327
+ def __key_warning(key: str):
328
+ suggest = None
329
+ if key == "maxUnusedVersionsToKeep":
330
+ suggest = "max_unused_versions_to_keep"
331
+
332
+ if suggest:
333
+ pulumi.log.warn(f"Key '{key}' not found in ApplicationTypeVersionsCleanupPolicyResponse. Access the value via the '{suggest}' property getter instead.")
334
+
335
+ def __getitem__(self, key: str) -> Any:
336
+ ApplicationTypeVersionsCleanupPolicyResponse.__key_warning(key)
337
+ return super().__getitem__(key)
338
+
339
+ def get(self, key: str, default = None) -> Any:
340
+ ApplicationTypeVersionsCleanupPolicyResponse.__key_warning(key)
341
+ return super().get(key, default)
342
+
343
+ def __init__(__self__, *,
344
+ max_unused_versions_to_keep: int):
345
+ """
346
+ The policy used to clean up unused versions. When the policy is not specified explicitly, the default unused application versions to keep will be 3.
347
+ :param int max_unused_versions_to_keep: Number of unused versions per application type to keep.
348
+ """
349
+ pulumi.set(__self__, "max_unused_versions_to_keep", max_unused_versions_to_keep)
350
+
351
+ @property
352
+ @pulumi.getter(name="maxUnusedVersionsToKeep")
353
+ def max_unused_versions_to_keep(self) -> int:
354
+ """
355
+ Number of unused versions per application type to keep.
356
+ """
357
+ return pulumi.get(self, "max_unused_versions_to_keep")
358
+
359
+
360
+ @pulumi.output_type
361
+ class ApplicationUpgradePolicyResponse(dict):
362
+ """
363
+ Describes the policy for a monitored application upgrade.
364
+ """
365
+ @staticmethod
366
+ def __key_warning(key: str):
367
+ suggest = None
368
+ if key == "applicationHealthPolicy":
369
+ suggest = "application_health_policy"
370
+ elif key == "forceRestart":
371
+ suggest = "force_restart"
372
+ elif key == "instanceCloseDelayDuration":
373
+ suggest = "instance_close_delay_duration"
374
+ elif key == "recreateApplication":
375
+ suggest = "recreate_application"
376
+ elif key == "rollingUpgradeMonitoringPolicy":
377
+ suggest = "rolling_upgrade_monitoring_policy"
378
+ elif key == "upgradeMode":
379
+ suggest = "upgrade_mode"
380
+ elif key == "upgradeReplicaSetCheckTimeout":
381
+ suggest = "upgrade_replica_set_check_timeout"
382
+
383
+ if suggest:
384
+ pulumi.log.warn(f"Key '{key}' not found in ApplicationUpgradePolicyResponse. Access the value via the '{suggest}' property getter instead.")
385
+
386
+ def __getitem__(self, key: str) -> Any:
387
+ ApplicationUpgradePolicyResponse.__key_warning(key)
388
+ return super().__getitem__(key)
389
+
390
+ def get(self, key: str, default = None) -> Any:
391
+ ApplicationUpgradePolicyResponse.__key_warning(key)
392
+ return super().get(key, default)
393
+
394
+ def __init__(__self__, *,
395
+ application_health_policy: Optional['outputs.ApplicationHealthPolicyResponse'] = None,
396
+ force_restart: Optional[bool] = None,
397
+ instance_close_delay_duration: Optional[float] = None,
398
+ recreate_application: Optional[bool] = None,
399
+ rolling_upgrade_monitoring_policy: Optional['outputs.RollingUpgradeMonitoringPolicyResponse'] = None,
400
+ upgrade_mode: Optional[str] = None,
401
+ upgrade_replica_set_check_timeout: Optional[float] = None):
402
+ """
403
+ Describes the policy for a monitored application upgrade.
404
+ :param 'ApplicationHealthPolicyResponse' application_health_policy: Defines a health policy used to evaluate the health of an application or one of its children entities.
405
+ :param bool force_restart: If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
406
+ :param float instance_close_delay_duration: Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
407
+ :param bool recreate_application: Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
408
+ :param 'RollingUpgradeMonitoringPolicyResponse' rolling_upgrade_monitoring_policy: The policy used for monitoring the application upgrade
409
+ :param str upgrade_mode: The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
410
+ :param float upgrade_replica_set_check_timeout: The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
411
+ """
412
+ if application_health_policy is not None:
413
+ pulumi.set(__self__, "application_health_policy", application_health_policy)
414
+ if force_restart is not None:
415
+ pulumi.set(__self__, "force_restart", force_restart)
416
+ if instance_close_delay_duration is not None:
417
+ pulumi.set(__self__, "instance_close_delay_duration", instance_close_delay_duration)
418
+ if recreate_application is not None:
419
+ pulumi.set(__self__, "recreate_application", recreate_application)
420
+ if rolling_upgrade_monitoring_policy is not None:
421
+ pulumi.set(__self__, "rolling_upgrade_monitoring_policy", rolling_upgrade_monitoring_policy)
422
+ if upgrade_mode is not None:
423
+ pulumi.set(__self__, "upgrade_mode", upgrade_mode)
424
+ if upgrade_replica_set_check_timeout is not None:
425
+ pulumi.set(__self__, "upgrade_replica_set_check_timeout", upgrade_replica_set_check_timeout)
426
+
427
+ @property
428
+ @pulumi.getter(name="applicationHealthPolicy")
429
+ def application_health_policy(self) -> Optional['outputs.ApplicationHealthPolicyResponse']:
430
+ """
431
+ Defines a health policy used to evaluate the health of an application or one of its children entities.
432
+ """
433
+ return pulumi.get(self, "application_health_policy")
434
+
435
+ @property
436
+ @pulumi.getter(name="forceRestart")
437
+ def force_restart(self) -> Optional[bool]:
438
+ """
439
+ If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
440
+ """
441
+ return pulumi.get(self, "force_restart")
442
+
443
+ @property
444
+ @pulumi.getter(name="instanceCloseDelayDuration")
445
+ def instance_close_delay_duration(self) -> Optional[float]:
446
+ """
447
+ Duration in seconds, to wait before a stateless instance is closed, to allow the active requests to drain gracefully. This would be effective when the instance is closing during the application/cluster upgrade, only for those instances which have a non-zero delay duration configured in the service description.
448
+ """
449
+ return pulumi.get(self, "instance_close_delay_duration")
450
+
451
+ @property
452
+ @pulumi.getter(name="recreateApplication")
453
+ def recreate_application(self) -> Optional[bool]:
454
+ """
455
+ Determines whether the application should be recreated on update. If value=true, the rest of the upgrade policy parameters are not allowed.
456
+ """
457
+ return pulumi.get(self, "recreate_application")
458
+
459
+ @property
460
+ @pulumi.getter(name="rollingUpgradeMonitoringPolicy")
461
+ def rolling_upgrade_monitoring_policy(self) -> Optional['outputs.RollingUpgradeMonitoringPolicyResponse']:
462
+ """
463
+ The policy used for monitoring the application upgrade
464
+ """
465
+ return pulumi.get(self, "rolling_upgrade_monitoring_policy")
466
+
467
+ @property
468
+ @pulumi.getter(name="upgradeMode")
469
+ def upgrade_mode(self) -> Optional[str]:
470
+ """
471
+ The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.
472
+ """
473
+ return pulumi.get(self, "upgrade_mode")
474
+
475
+ @property
476
+ @pulumi.getter(name="upgradeReplicaSetCheckTimeout")
477
+ def upgrade_replica_set_check_timeout(self) -> Optional[float]:
478
+ """
479
+ The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues. When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues. The timeout is reset at the start of each upgrade domain. Valid values are between 0 and 42949672925 inclusive. (unsigned 32-bit integer).
480
+ """
481
+ return pulumi.get(self, "upgrade_replica_set_check_timeout")
482
+
483
+
484
+ @pulumi.output_type
485
+ class ApplicationUserAssignedIdentityResponse(dict):
486
+ @staticmethod
487
+ def __key_warning(key: str):
488
+ suggest = None
489
+ if key == "principalId":
490
+ suggest = "principal_id"
491
+
492
+ if suggest:
493
+ pulumi.log.warn(f"Key '{key}' not found in ApplicationUserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
494
+
495
+ def __getitem__(self, key: str) -> Any:
496
+ ApplicationUserAssignedIdentityResponse.__key_warning(key)
497
+ return super().__getitem__(key)
498
+
499
+ def get(self, key: str, default = None) -> Any:
500
+ ApplicationUserAssignedIdentityResponse.__key_warning(key)
501
+ return super().get(key, default)
502
+
503
+ def __init__(__self__, *,
504
+ name: str,
505
+ principal_id: str):
506
+ """
507
+ :param str name: The friendly name of user assigned identity.
508
+ :param str principal_id: The principal id of user assigned identity.
509
+ """
510
+ pulumi.set(__self__, "name", name)
511
+ pulumi.set(__self__, "principal_id", principal_id)
512
+
513
+ @property
514
+ @pulumi.getter
515
+ def name(self) -> str:
516
+ """
517
+ The friendly name of user assigned identity.
518
+ """
519
+ return pulumi.get(self, "name")
520
+
521
+ @property
522
+ @pulumi.getter(name="principalId")
523
+ def principal_id(self) -> str:
524
+ """
525
+ The principal id of user assigned identity.
526
+ """
527
+ return pulumi.get(self, "principal_id")
528
+
529
+
530
+ @pulumi.output_type
531
+ class AveragePartitionLoadScalingTriggerResponse(dict):
532
+ """
533
+ Represents a scaling trigger related to an average load of a metric/resource of a partition.
534
+ """
535
+ @staticmethod
536
+ def __key_warning(key: str):
537
+ suggest = None
538
+ if key == "lowerLoadThreshold":
539
+ suggest = "lower_load_threshold"
540
+ elif key == "metricName":
541
+ suggest = "metric_name"
542
+ elif key == "scaleInterval":
543
+ suggest = "scale_interval"
544
+ elif key == "upperLoadThreshold":
545
+ suggest = "upper_load_threshold"
546
+
547
+ if suggest:
548
+ pulumi.log.warn(f"Key '{key}' not found in AveragePartitionLoadScalingTriggerResponse. Access the value via the '{suggest}' property getter instead.")
549
+
550
+ def __getitem__(self, key: str) -> Any:
551
+ AveragePartitionLoadScalingTriggerResponse.__key_warning(key)
552
+ return super().__getitem__(key)
553
+
554
+ def get(self, key: str, default = None) -> Any:
555
+ AveragePartitionLoadScalingTriggerResponse.__key_warning(key)
556
+ return super().get(key, default)
557
+
558
+ def __init__(__self__, *,
559
+ kind: str,
560
+ lower_load_threshold: float,
561
+ metric_name: str,
562
+ scale_interval: str,
563
+ upper_load_threshold: float):
564
+ """
565
+ Represents a scaling trigger related to an average load of a metric/resource of a partition.
566
+ :param str kind: Enumerates the ways that a service can be partitioned.
567
+ Expected value is 'AveragePartitionLoadTrigger'.
568
+ :param float lower_load_threshold: The lower limit of the load below which a scale in operation should be performed.
569
+ :param str metric_name: The name of the metric for which usage should be tracked.
570
+ :param str scale_interval: The period in seconds on which a decision is made whether to scale or not. This property should come in ISO 8601 format "hh:mm:ss".
571
+ :param float upper_load_threshold: The upper limit of the load beyond which a scale out operation should be performed.
572
+ """
573
+ pulumi.set(__self__, "kind", 'AveragePartitionLoadTrigger')
574
+ pulumi.set(__self__, "lower_load_threshold", lower_load_threshold)
575
+ pulumi.set(__self__, "metric_name", metric_name)
576
+ pulumi.set(__self__, "scale_interval", scale_interval)
577
+ pulumi.set(__self__, "upper_load_threshold", upper_load_threshold)
578
+
579
+ @property
580
+ @pulumi.getter
581
+ def kind(self) -> str:
582
+ """
583
+ Enumerates the ways that a service can be partitioned.
584
+ Expected value is 'AveragePartitionLoadTrigger'.
585
+ """
586
+ return pulumi.get(self, "kind")
587
+
588
+ @property
589
+ @pulumi.getter(name="lowerLoadThreshold")
590
+ def lower_load_threshold(self) -> float:
591
+ """
592
+ The lower limit of the load below which a scale in operation should be performed.
593
+ """
594
+ return pulumi.get(self, "lower_load_threshold")
595
+
596
+ @property
597
+ @pulumi.getter(name="metricName")
598
+ def metric_name(self) -> str:
599
+ """
600
+ The name of the metric for which usage should be tracked.
601
+ """
602
+ return pulumi.get(self, "metric_name")
603
+
604
+ @property
605
+ @pulumi.getter(name="scaleInterval")
606
+ def scale_interval(self) -> str:
607
+ """
608
+ The period in seconds on which a decision is made whether to scale or not. This property should come in ISO 8601 format "hh:mm:ss".
609
+ """
610
+ return pulumi.get(self, "scale_interval")
611
+
612
+ @property
613
+ @pulumi.getter(name="upperLoadThreshold")
614
+ def upper_load_threshold(self) -> float:
615
+ """
616
+ The upper limit of the load beyond which a scale out operation should be performed.
617
+ """
618
+ return pulumi.get(self, "upper_load_threshold")
619
+
620
+
621
+ @pulumi.output_type
622
+ class AverageServiceLoadScalingTriggerResponse(dict):
623
+ """
624
+ Represents a scaling policy related to an average load of a metric/resource of a service.
625
+ """
626
+ @staticmethod
627
+ def __key_warning(key: str):
628
+ suggest = None
629
+ if key == "lowerLoadThreshold":
630
+ suggest = "lower_load_threshold"
631
+ elif key == "metricName":
632
+ suggest = "metric_name"
633
+ elif key == "scaleInterval":
634
+ suggest = "scale_interval"
635
+ elif key == "upperLoadThreshold":
636
+ suggest = "upper_load_threshold"
637
+ elif key == "useOnlyPrimaryLoad":
638
+ suggest = "use_only_primary_load"
639
+
640
+ if suggest:
641
+ pulumi.log.warn(f"Key '{key}' not found in AverageServiceLoadScalingTriggerResponse. Access the value via the '{suggest}' property getter instead.")
642
+
643
+ def __getitem__(self, key: str) -> Any:
644
+ AverageServiceLoadScalingTriggerResponse.__key_warning(key)
645
+ return super().__getitem__(key)
646
+
647
+ def get(self, key: str, default = None) -> Any:
648
+ AverageServiceLoadScalingTriggerResponse.__key_warning(key)
649
+ return super().get(key, default)
650
+
651
+ def __init__(__self__, *,
652
+ kind: str,
653
+ lower_load_threshold: float,
654
+ metric_name: str,
655
+ scale_interval: str,
656
+ upper_load_threshold: float,
657
+ use_only_primary_load: bool):
658
+ """
659
+ Represents a scaling policy related to an average load of a metric/resource of a service.
660
+ :param str kind: Enumerates the ways that a service can be partitioned.
661
+ Expected value is 'AverageServiceLoadTrigger'.
662
+ :param float lower_load_threshold: The lower limit of the load below which a scale in operation should be performed.
663
+ :param str metric_name: The name of the metric for which usage should be tracked.
664
+ :param str scale_interval: The period in seconds on which a decision is made whether to scale or not. This property should come in ISO 8601 format "hh:mm:ss".
665
+ :param float upper_load_threshold: The upper limit of the load beyond which a scale out operation should be performed.
666
+ :param bool use_only_primary_load: Flag determines whether only the load of primary replica should be considered for scaling. If set to true, then trigger will only consider the load of primary replicas of stateful service. If set to false, trigger will consider load of all replicas. This parameter cannot be set to true for stateless service.
667
+ """
668
+ pulumi.set(__self__, "kind", 'AverageServiceLoadTrigger')
669
+ pulumi.set(__self__, "lower_load_threshold", lower_load_threshold)
670
+ pulumi.set(__self__, "metric_name", metric_name)
671
+ pulumi.set(__self__, "scale_interval", scale_interval)
672
+ pulumi.set(__self__, "upper_load_threshold", upper_load_threshold)
673
+ pulumi.set(__self__, "use_only_primary_load", use_only_primary_load)
674
+
675
+ @property
676
+ @pulumi.getter
677
+ def kind(self) -> str:
678
+ """
679
+ Enumerates the ways that a service can be partitioned.
680
+ Expected value is 'AverageServiceLoadTrigger'.
681
+ """
682
+ return pulumi.get(self, "kind")
683
+
684
+ @property
685
+ @pulumi.getter(name="lowerLoadThreshold")
686
+ def lower_load_threshold(self) -> float:
687
+ """
688
+ The lower limit of the load below which a scale in operation should be performed.
689
+ """
690
+ return pulumi.get(self, "lower_load_threshold")
691
+
692
+ @property
693
+ @pulumi.getter(name="metricName")
694
+ def metric_name(self) -> str:
695
+ """
696
+ The name of the metric for which usage should be tracked.
697
+ """
698
+ return pulumi.get(self, "metric_name")
699
+
700
+ @property
701
+ @pulumi.getter(name="scaleInterval")
702
+ def scale_interval(self) -> str:
703
+ """
704
+ The period in seconds on which a decision is made whether to scale or not. This property should come in ISO 8601 format "hh:mm:ss".
705
+ """
706
+ return pulumi.get(self, "scale_interval")
707
+
708
+ @property
709
+ @pulumi.getter(name="upperLoadThreshold")
710
+ def upper_load_threshold(self) -> float:
711
+ """
712
+ The upper limit of the load beyond which a scale out operation should be performed.
713
+ """
714
+ return pulumi.get(self, "upper_load_threshold")
715
+
716
+ @property
717
+ @pulumi.getter(name="useOnlyPrimaryLoad")
718
+ def use_only_primary_load(self) -> bool:
719
+ """
720
+ Flag determines whether only the load of primary replica should be considered for scaling. If set to true, then trigger will only consider the load of primary replicas of stateful service. If set to false, trigger will consider load of all replicas. This parameter cannot be set to true for stateless service.
721
+ """
722
+ return pulumi.get(self, "use_only_primary_load")
723
+
724
+
725
+ @pulumi.output_type
726
+ class AzureActiveDirectoryResponse(dict):
727
+ """
728
+ The settings to enable AAD authentication on the cluster.
729
+ """
730
+ @staticmethod
731
+ def __key_warning(key: str):
732
+ suggest = None
733
+ if key == "clientApplication":
734
+ suggest = "client_application"
735
+ elif key == "clusterApplication":
736
+ suggest = "cluster_application"
737
+ elif key == "tenantId":
738
+ suggest = "tenant_id"
739
+
740
+ if suggest:
741
+ pulumi.log.warn(f"Key '{key}' not found in AzureActiveDirectoryResponse. Access the value via the '{suggest}' property getter instead.")
742
+
743
+ def __getitem__(self, key: str) -> Any:
744
+ AzureActiveDirectoryResponse.__key_warning(key)
745
+ return super().__getitem__(key)
746
+
747
+ def get(self, key: str, default = None) -> Any:
748
+ AzureActiveDirectoryResponse.__key_warning(key)
749
+ return super().get(key, default)
750
+
751
+ def __init__(__self__, *,
752
+ client_application: Optional[str] = None,
753
+ cluster_application: Optional[str] = None,
754
+ tenant_id: Optional[str] = None):
755
+ """
756
+ The settings to enable AAD authentication on the cluster.
757
+ :param str client_application: Azure active directory client application id.
758
+ :param str cluster_application: Azure active directory cluster application id.
759
+ :param str tenant_id: Azure active directory tenant id.
760
+ """
761
+ if client_application is not None:
762
+ pulumi.set(__self__, "client_application", client_application)
763
+ if cluster_application is not None:
764
+ pulumi.set(__self__, "cluster_application", cluster_application)
765
+ if tenant_id is not None:
766
+ pulumi.set(__self__, "tenant_id", tenant_id)
767
+
768
+ @property
769
+ @pulumi.getter(name="clientApplication")
770
+ def client_application(self) -> Optional[str]:
771
+ """
772
+ Azure active directory client application id.
773
+ """
774
+ return pulumi.get(self, "client_application")
775
+
776
+ @property
777
+ @pulumi.getter(name="clusterApplication")
778
+ def cluster_application(self) -> Optional[str]:
779
+ """
780
+ Azure active directory cluster application id.
781
+ """
782
+ return pulumi.get(self, "cluster_application")
783
+
784
+ @property
785
+ @pulumi.getter(name="tenantId")
786
+ def tenant_id(self) -> Optional[str]:
787
+ """
788
+ Azure active directory tenant id.
789
+ """
790
+ return pulumi.get(self, "tenant_id")
791
+
792
+
793
+ @pulumi.output_type
794
+ class ClientCertificateResponse(dict):
795
+ """
796
+ Client certificate definition.
797
+ """
798
+ @staticmethod
799
+ def __key_warning(key: str):
800
+ suggest = None
801
+ if key == "isAdmin":
802
+ suggest = "is_admin"
803
+ elif key == "commonName":
804
+ suggest = "common_name"
805
+ elif key == "issuerThumbprint":
806
+ suggest = "issuer_thumbprint"
807
+
808
+ if suggest:
809
+ pulumi.log.warn(f"Key '{key}' not found in ClientCertificateResponse. Access the value via the '{suggest}' property getter instead.")
810
+
811
+ def __getitem__(self, key: str) -> Any:
812
+ ClientCertificateResponse.__key_warning(key)
813
+ return super().__getitem__(key)
814
+
815
+ def get(self, key: str, default = None) -> Any:
816
+ ClientCertificateResponse.__key_warning(key)
817
+ return super().get(key, default)
818
+
819
+ def __init__(__self__, *,
820
+ is_admin: bool,
821
+ common_name: Optional[str] = None,
822
+ issuer_thumbprint: Optional[str] = None,
823
+ thumbprint: Optional[str] = None):
824
+ """
825
+ Client certificate definition.
826
+ :param bool is_admin: Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.
827
+ :param str common_name: Certificate common name.
828
+ :param str issuer_thumbprint: Issuer thumbprint for the certificate. Only used together with CommonName.
829
+ :param str thumbprint: Certificate thumbprint.
830
+ """
831
+ pulumi.set(__self__, "is_admin", is_admin)
832
+ if common_name is not None:
833
+ pulumi.set(__self__, "common_name", common_name)
834
+ if issuer_thumbprint is not None:
835
+ pulumi.set(__self__, "issuer_thumbprint", issuer_thumbprint)
836
+ if thumbprint is not None:
837
+ pulumi.set(__self__, "thumbprint", thumbprint)
838
+
839
+ @property
840
+ @pulumi.getter(name="isAdmin")
841
+ def is_admin(self) -> bool:
842
+ """
843
+ Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.
844
+ """
845
+ return pulumi.get(self, "is_admin")
846
+
847
+ @property
848
+ @pulumi.getter(name="commonName")
849
+ def common_name(self) -> Optional[str]:
850
+ """
851
+ Certificate common name.
852
+ """
853
+ return pulumi.get(self, "common_name")
854
+
855
+ @property
856
+ @pulumi.getter(name="issuerThumbprint")
857
+ def issuer_thumbprint(self) -> Optional[str]:
858
+ """
859
+ Issuer thumbprint for the certificate. Only used together with CommonName.
860
+ """
861
+ return pulumi.get(self, "issuer_thumbprint")
862
+
863
+ @property
864
+ @pulumi.getter
865
+ def thumbprint(self) -> Optional[str]:
866
+ """
867
+ Certificate thumbprint.
868
+ """
869
+ return pulumi.get(self, "thumbprint")
870
+
871
+
872
+ @pulumi.output_type
873
+ class ClusterHealthPolicyResponse(dict):
874
+ """
875
+ Defines a health policy used to evaluate the health of the cluster or of a cluster node.
876
+ """
877
+ @staticmethod
878
+ def __key_warning(key: str):
879
+ suggest = None
880
+ if key == "maxPercentUnhealthyApplications":
881
+ suggest = "max_percent_unhealthy_applications"
882
+ elif key == "maxPercentUnhealthyNodes":
883
+ suggest = "max_percent_unhealthy_nodes"
884
+
885
+ if suggest:
886
+ pulumi.log.warn(f"Key '{key}' not found in ClusterHealthPolicyResponse. Access the value via the '{suggest}' property getter instead.")
887
+
888
+ def __getitem__(self, key: str) -> Any:
889
+ ClusterHealthPolicyResponse.__key_warning(key)
890
+ return super().__getitem__(key)
891
+
892
+ def get(self, key: str, default = None) -> Any:
893
+ ClusterHealthPolicyResponse.__key_warning(key)
894
+ return super().get(key, default)
895
+
896
+ def __init__(__self__, *,
897
+ max_percent_unhealthy_applications: Optional[int] = None,
898
+ max_percent_unhealthy_nodes: Optional[int] = None):
899
+ """
900
+ Defines a health policy used to evaluate the health of the cluster or of a cluster node.
901
+
902
+ :param int max_percent_unhealthy_applications: The maximum allowed percentage of unhealthy applications before reporting an error. For example, to allow 10% of applications to be unhealthy, this value would be 10.
903
+
904
+ The percentage represents the maximum tolerated percentage of applications that can be unhealthy before the cluster is considered in error.
905
+ If the percentage is respected but there is at least one unhealthy application, the health is evaluated as Warning.
906
+ This is calculated by dividing the number of unhealthy applications over the total number of application instances in the cluster, excluding applications of application types that are included in the ApplicationTypeHealthPolicyMap.
907
+ The computation rounds up to tolerate one failure on small numbers of applications. Default percentage is zero.
908
+ :param int max_percent_unhealthy_nodes: The maximum allowed percentage of unhealthy nodes before reporting an error. For example, to allow 10% of nodes to be unhealthy, this value would be 10.
909
+
910
+ The percentage represents the maximum tolerated percentage of nodes that can be unhealthy before the cluster is considered in error.
911
+ If the percentage is respected but there is at least one unhealthy node, the health is evaluated as Warning.
912
+ The percentage is calculated by dividing the number of unhealthy nodes over the total number of nodes in the cluster.
913
+ The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
914
+
915
+ In large clusters, some nodes will always be down or out for repairs, so this percentage should be configured to tolerate that.
916
+ """
917
+ if max_percent_unhealthy_applications is None:
918
+ max_percent_unhealthy_applications = 0
919
+ pulumi.set(__self__, "max_percent_unhealthy_applications", max_percent_unhealthy_applications)
920
+ if max_percent_unhealthy_nodes is None:
921
+ max_percent_unhealthy_nodes = 0
922
+ pulumi.set(__self__, "max_percent_unhealthy_nodes", max_percent_unhealthy_nodes)
923
+
924
+ @property
925
+ @pulumi.getter(name="maxPercentUnhealthyApplications")
926
+ def max_percent_unhealthy_applications(self) -> int:
927
+ """
928
+ The maximum allowed percentage of unhealthy applications before reporting an error. For example, to allow 10% of applications to be unhealthy, this value would be 10.
929
+
930
+ The percentage represents the maximum tolerated percentage of applications that can be unhealthy before the cluster is considered in error.
931
+ If the percentage is respected but there is at least one unhealthy application, the health is evaluated as Warning.
932
+ This is calculated by dividing the number of unhealthy applications over the total number of application instances in the cluster, excluding applications of application types that are included in the ApplicationTypeHealthPolicyMap.
933
+ The computation rounds up to tolerate one failure on small numbers of applications. Default percentage is zero.
934
+ """
935
+ return pulumi.get(self, "max_percent_unhealthy_applications")
936
+
937
+ @property
938
+ @pulumi.getter(name="maxPercentUnhealthyNodes")
939
+ def max_percent_unhealthy_nodes(self) -> int:
940
+ """
941
+ The maximum allowed percentage of unhealthy nodes before reporting an error. For example, to allow 10% of nodes to be unhealthy, this value would be 10.
942
+
943
+ The percentage represents the maximum tolerated percentage of nodes that can be unhealthy before the cluster is considered in error.
944
+ If the percentage is respected but there is at least one unhealthy node, the health is evaluated as Warning.
945
+ The percentage is calculated by dividing the number of unhealthy nodes over the total number of nodes in the cluster.
946
+ The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.
947
+
948
+ In large clusters, some nodes will always be down or out for repairs, so this percentage should be configured to tolerate that.
949
+ """
950
+ return pulumi.get(self, "max_percent_unhealthy_nodes")
951
+
952
+
953
+ @pulumi.output_type
954
+ class ClusterMonitoringPolicyResponse(dict):
955
+ """
956
+ Describes the monitoring policies for the cluster upgrade.
957
+ """
958
+ @staticmethod
959
+ def __key_warning(key: str):
960
+ suggest = None
961
+ if key == "healthCheckRetryTimeout":
962
+ suggest = "health_check_retry_timeout"
963
+ elif key == "healthCheckStableDuration":
964
+ suggest = "health_check_stable_duration"
965
+ elif key == "healthCheckWaitDuration":
966
+ suggest = "health_check_wait_duration"
967
+ elif key == "upgradeDomainTimeout":
968
+ suggest = "upgrade_domain_timeout"
969
+ elif key == "upgradeTimeout":
970
+ suggest = "upgrade_timeout"
971
+
972
+ if suggest:
973
+ pulumi.log.warn(f"Key '{key}' not found in ClusterMonitoringPolicyResponse. Access the value via the '{suggest}' property getter instead.")
974
+
975
+ def __getitem__(self, key: str) -> Any:
976
+ ClusterMonitoringPolicyResponse.__key_warning(key)
977
+ return super().__getitem__(key)
978
+
979
+ def get(self, key: str, default = None) -> Any:
980
+ ClusterMonitoringPolicyResponse.__key_warning(key)
981
+ return super().get(key, default)
982
+
983
+ def __init__(__self__, *,
984
+ health_check_retry_timeout: str,
985
+ health_check_stable_duration: str,
986
+ health_check_wait_duration: str,
987
+ upgrade_domain_timeout: str,
988
+ upgrade_timeout: str):
989
+ """
990
+ Describes the monitoring policies for the cluster upgrade.
991
+ :param str health_check_retry_timeout: The amount of time to retry health evaluation when the application or cluster is unhealthy before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
992
+ :param str health_check_stable_duration: The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. The duration can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
993
+ :param str health_check_wait_duration: The length of time to wait after completing an upgrade domain before performing health checks. The duration can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
994
+ :param str upgrade_domain_timeout: The amount of time each upgrade domain has to complete before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
995
+ :param str upgrade_timeout: The amount of time the overall upgrade has to complete before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
996
+ """
997
+ pulumi.set(__self__, "health_check_retry_timeout", health_check_retry_timeout)
998
+ pulumi.set(__self__, "health_check_stable_duration", health_check_stable_duration)
999
+ pulumi.set(__self__, "health_check_wait_duration", health_check_wait_duration)
1000
+ pulumi.set(__self__, "upgrade_domain_timeout", upgrade_domain_timeout)
1001
+ pulumi.set(__self__, "upgrade_timeout", upgrade_timeout)
1002
+
1003
+ @property
1004
+ @pulumi.getter(name="healthCheckRetryTimeout")
1005
+ def health_check_retry_timeout(self) -> str:
1006
+ """
1007
+ The amount of time to retry health evaluation when the application or cluster is unhealthy before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
1008
+ """
1009
+ return pulumi.get(self, "health_check_retry_timeout")
1010
+
1011
+ @property
1012
+ @pulumi.getter(name="healthCheckStableDuration")
1013
+ def health_check_stable_duration(self) -> str:
1014
+ """
1015
+ The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. The duration can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
1016
+ """
1017
+ return pulumi.get(self, "health_check_stable_duration")
1018
+
1019
+ @property
1020
+ @pulumi.getter(name="healthCheckWaitDuration")
1021
+ def health_check_wait_duration(self) -> str:
1022
+ """
1023
+ The length of time to wait after completing an upgrade domain before performing health checks. The duration can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
1024
+ """
1025
+ return pulumi.get(self, "health_check_wait_duration")
1026
+
1027
+ @property
1028
+ @pulumi.getter(name="upgradeDomainTimeout")
1029
+ def upgrade_domain_timeout(self) -> str:
1030
+ """
1031
+ The amount of time each upgrade domain has to complete before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
1032
+ """
1033
+ return pulumi.get(self, "upgrade_domain_timeout")
1034
+
1035
+ @property
1036
+ @pulumi.getter(name="upgradeTimeout")
1037
+ def upgrade_timeout(self) -> str:
1038
+ """
1039
+ The amount of time the overall upgrade has to complete before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
1040
+ """
1041
+ return pulumi.get(self, "upgrade_timeout")
1042
+
1043
+
1044
+ @pulumi.output_type
1045
+ class ClusterUpgradeDeltaHealthPolicyResponse(dict):
1046
+ """
1047
+ Describes the delta health policies for the cluster upgrade.
1048
+ """
1049
+ @staticmethod
1050
+ def __key_warning(key: str):
1051
+ suggest = None
1052
+ if key == "maxPercentDeltaUnhealthyNodes":
1053
+ suggest = "max_percent_delta_unhealthy_nodes"
1054
+ elif key == "maxPercentDeltaUnhealthyApplications":
1055
+ suggest = "max_percent_delta_unhealthy_applications"
1056
+ elif key == "maxPercentUpgradeDomainDeltaUnhealthyNodes":
1057
+ suggest = "max_percent_upgrade_domain_delta_unhealthy_nodes"
1058
+
1059
+ if suggest:
1060
+ pulumi.log.warn(f"Key '{key}' not found in ClusterUpgradeDeltaHealthPolicyResponse. Access the value via the '{suggest}' property getter instead.")
1061
+
1062
+ def __getitem__(self, key: str) -> Any:
1063
+ ClusterUpgradeDeltaHealthPolicyResponse.__key_warning(key)
1064
+ return super().__getitem__(key)
1065
+
1066
+ def get(self, key: str, default = None) -> Any:
1067
+ ClusterUpgradeDeltaHealthPolicyResponse.__key_warning(key)
1068
+ return super().get(key, default)
1069
+
1070
+ def __init__(__self__, *,
1071
+ max_percent_delta_unhealthy_nodes: int,
1072
+ max_percent_delta_unhealthy_applications: Optional[int] = None,
1073
+ max_percent_upgrade_domain_delta_unhealthy_nodes: Optional[int] = None):
1074
+ """
1075
+ Describes the delta health policies for the cluster upgrade.
1076
+ :param int max_percent_delta_unhealthy_nodes: The maximum allowed percentage of nodes health degradation allowed during cluster upgrades.
1077
+ The delta is measured between the state of the nodes at the beginning of upgrade and the state of the nodes at the time of the health evaluation.
1078
+ The check is performed after every upgrade domain upgrade completion to make sure the global state of the cluster is within tolerated limits.
1079
+ :param int max_percent_delta_unhealthy_applications: The maximum allowed percentage of applications health degradation allowed during cluster upgrades.
1080
+ The delta is measured between the state of the applications at the beginning of upgrade and the state of the applications at the time of the health evaluation.
1081
+ The check is performed after every upgrade domain upgrade completion to make sure the global state of the cluster is within tolerated limits. System services are not included in this.
1082
+ NOTE: This value will overwrite the value specified in properties.UpgradeDescription.HealthPolicy.MaxPercentUnhealthyApplications
1083
+ :param int max_percent_upgrade_domain_delta_unhealthy_nodes: The maximum allowed percentage of upgrade domain nodes health degradation allowed during cluster upgrades.
1084
+ The delta is measured between the state of the upgrade domain nodes at the beginning of upgrade and the state of the upgrade domain nodes at the time of the health evaluation.
1085
+ The check is performed after every upgrade domain upgrade completion for all completed upgrade domains to make sure the state of the upgrade domains is within tolerated limits.
1086
+ """
1087
+ pulumi.set(__self__, "max_percent_delta_unhealthy_nodes", max_percent_delta_unhealthy_nodes)
1088
+ if max_percent_delta_unhealthy_applications is not None:
1089
+ pulumi.set(__self__, "max_percent_delta_unhealthy_applications", max_percent_delta_unhealthy_applications)
1090
+ if max_percent_upgrade_domain_delta_unhealthy_nodes is not None:
1091
+ pulumi.set(__self__, "max_percent_upgrade_domain_delta_unhealthy_nodes", max_percent_upgrade_domain_delta_unhealthy_nodes)
1092
+
1093
+ @property
1094
+ @pulumi.getter(name="maxPercentDeltaUnhealthyNodes")
1095
+ def max_percent_delta_unhealthy_nodes(self) -> int:
1096
+ """
1097
+ The maximum allowed percentage of nodes health degradation allowed during cluster upgrades.
1098
+ The delta is measured between the state of the nodes at the beginning of upgrade and the state of the nodes at the time of the health evaluation.
1099
+ The check is performed after every upgrade domain upgrade completion to make sure the global state of the cluster is within tolerated limits.
1100
+ """
1101
+ return pulumi.get(self, "max_percent_delta_unhealthy_nodes")
1102
+
1103
+ @property
1104
+ @pulumi.getter(name="maxPercentDeltaUnhealthyApplications")
1105
+ def max_percent_delta_unhealthy_applications(self) -> Optional[int]:
1106
+ """
1107
+ The maximum allowed percentage of applications health degradation allowed during cluster upgrades.
1108
+ The delta is measured between the state of the applications at the beginning of upgrade and the state of the applications at the time of the health evaluation.
1109
+ The check is performed after every upgrade domain upgrade completion to make sure the global state of the cluster is within tolerated limits. System services are not included in this.
1110
+ NOTE: This value will overwrite the value specified in properties.UpgradeDescription.HealthPolicy.MaxPercentUnhealthyApplications
1111
+ """
1112
+ return pulumi.get(self, "max_percent_delta_unhealthy_applications")
1113
+
1114
+ @property
1115
+ @pulumi.getter(name="maxPercentUpgradeDomainDeltaUnhealthyNodes")
1116
+ def max_percent_upgrade_domain_delta_unhealthy_nodes(self) -> Optional[int]:
1117
+ """
1118
+ The maximum allowed percentage of upgrade domain nodes health degradation allowed during cluster upgrades.
1119
+ The delta is measured between the state of the upgrade domain nodes at the beginning of upgrade and the state of the upgrade domain nodes at the time of the health evaluation.
1120
+ The check is performed after every upgrade domain upgrade completion for all completed upgrade domains to make sure the state of the upgrade domains is within tolerated limits.
1121
+ """
1122
+ return pulumi.get(self, "max_percent_upgrade_domain_delta_unhealthy_nodes")
1123
+
1124
+
1125
+ @pulumi.output_type
1126
+ class ClusterUpgradePolicyResponse(dict):
1127
+ """
1128
+ Describes the policy used when upgrading the cluster.
1129
+ """
1130
+ @staticmethod
1131
+ def __key_warning(key: str):
1132
+ suggest = None
1133
+ if key == "deltaHealthPolicy":
1134
+ suggest = "delta_health_policy"
1135
+ elif key == "forceRestart":
1136
+ suggest = "force_restart"
1137
+ elif key == "healthPolicy":
1138
+ suggest = "health_policy"
1139
+ elif key == "monitoringPolicy":
1140
+ suggest = "monitoring_policy"
1141
+ elif key == "upgradeReplicaSetCheckTimeout":
1142
+ suggest = "upgrade_replica_set_check_timeout"
1143
+
1144
+ if suggest:
1145
+ pulumi.log.warn(f"Key '{key}' not found in ClusterUpgradePolicyResponse. Access the value via the '{suggest}' property getter instead.")
1146
+
1147
+ def __getitem__(self, key: str) -> Any:
1148
+ ClusterUpgradePolicyResponse.__key_warning(key)
1149
+ return super().__getitem__(key)
1150
+
1151
+ def get(self, key: str, default = None) -> Any:
1152
+ ClusterUpgradePolicyResponse.__key_warning(key)
1153
+ return super().get(key, default)
1154
+
1155
+ def __init__(__self__, *,
1156
+ delta_health_policy: Optional['outputs.ClusterUpgradeDeltaHealthPolicyResponse'] = None,
1157
+ force_restart: Optional[bool] = None,
1158
+ health_policy: Optional['outputs.ClusterHealthPolicyResponse'] = None,
1159
+ monitoring_policy: Optional['outputs.ClusterMonitoringPolicyResponse'] = None,
1160
+ upgrade_replica_set_check_timeout: Optional[str] = None):
1161
+ """
1162
+ Describes the policy used when upgrading the cluster.
1163
+ :param 'ClusterUpgradeDeltaHealthPolicyResponse' delta_health_policy: The cluster delta health policy defines a health policy used to evaluate the health of the cluster during a cluster upgrade.
1164
+ :param bool force_restart: If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
1165
+ :param 'ClusterHealthPolicyResponse' health_policy: The cluster health policy defines a health policy used to evaluate the health of the cluster during a cluster upgrade.
1166
+ :param 'ClusterMonitoringPolicyResponse' monitoring_policy: The cluster monitoring policy describes the parameters for monitoring an upgrade in Monitored mode.
1167
+ :param str upgrade_replica_set_check_timeout: The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues.
1168
+ When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues.
1169
+ The timeout is reset at the start of each upgrade domain. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
1170
+ This value must be between 00:00:00 and 49710.06:28:15 (unsigned 32 bit integer for seconds)
1171
+ """
1172
+ if delta_health_policy is not None:
1173
+ pulumi.set(__self__, "delta_health_policy", delta_health_policy)
1174
+ if force_restart is not None:
1175
+ pulumi.set(__self__, "force_restart", force_restart)
1176
+ if health_policy is not None:
1177
+ pulumi.set(__self__, "health_policy", health_policy)
1178
+ if monitoring_policy is not None:
1179
+ pulumi.set(__self__, "monitoring_policy", monitoring_policy)
1180
+ if upgrade_replica_set_check_timeout is not None:
1181
+ pulumi.set(__self__, "upgrade_replica_set_check_timeout", upgrade_replica_set_check_timeout)
1182
+
1183
+ @property
1184
+ @pulumi.getter(name="deltaHealthPolicy")
1185
+ def delta_health_policy(self) -> Optional['outputs.ClusterUpgradeDeltaHealthPolicyResponse']:
1186
+ """
1187
+ The cluster delta health policy defines a health policy used to evaluate the health of the cluster during a cluster upgrade.
1188
+ """
1189
+ return pulumi.get(self, "delta_health_policy")
1190
+
1191
+ @property
1192
+ @pulumi.getter(name="forceRestart")
1193
+ def force_restart(self) -> Optional[bool]:
1194
+ """
1195
+ If true, then processes are forcefully restarted during upgrade even when the code version has not changed (the upgrade only changes configuration or data).
1196
+ """
1197
+ return pulumi.get(self, "force_restart")
1198
+
1199
+ @property
1200
+ @pulumi.getter(name="healthPolicy")
1201
+ def health_policy(self) -> Optional['outputs.ClusterHealthPolicyResponse']:
1202
+ """
1203
+ The cluster health policy defines a health policy used to evaluate the health of the cluster during a cluster upgrade.
1204
+ """
1205
+ return pulumi.get(self, "health_policy")
1206
+
1207
+ @property
1208
+ @pulumi.getter(name="monitoringPolicy")
1209
+ def monitoring_policy(self) -> Optional['outputs.ClusterMonitoringPolicyResponse']:
1210
+ """
1211
+ The cluster monitoring policy describes the parameters for monitoring an upgrade in Monitored mode.
1212
+ """
1213
+ return pulumi.get(self, "monitoring_policy")
1214
+
1215
+ @property
1216
+ @pulumi.getter(name="upgradeReplicaSetCheckTimeout")
1217
+ def upgrade_replica_set_check_timeout(self) -> Optional[str]:
1218
+ """
1219
+ The maximum amount of time to block processing of an upgrade domain and prevent loss of availability when there are unexpected issues.
1220
+ When this timeout expires, processing of the upgrade domain will proceed regardless of availability loss issues.
1221
+ The timeout is reset at the start of each upgrade domain. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.
1222
+ This value must be between 00:00:00 and 49710.06:28:15 (unsigned 32 bit integer for seconds)
1223
+ """
1224
+ return pulumi.get(self, "upgrade_replica_set_check_timeout")
1225
+
1226
+
1227
+ @pulumi.output_type
1228
+ class EndpointRangeDescriptionResponse(dict):
1229
+ """
1230
+ Port range details
1231
+ """
1232
+ @staticmethod
1233
+ def __key_warning(key: str):
1234
+ suggest = None
1235
+ if key == "endPort":
1236
+ suggest = "end_port"
1237
+ elif key == "startPort":
1238
+ suggest = "start_port"
1239
+
1240
+ if suggest:
1241
+ pulumi.log.warn(f"Key '{key}' not found in EndpointRangeDescriptionResponse. Access the value via the '{suggest}' property getter instead.")
1242
+
1243
+ def __getitem__(self, key: str) -> Any:
1244
+ EndpointRangeDescriptionResponse.__key_warning(key)
1245
+ return super().__getitem__(key)
1246
+
1247
+ def get(self, key: str, default = None) -> Any:
1248
+ EndpointRangeDescriptionResponse.__key_warning(key)
1249
+ return super().get(key, default)
1250
+
1251
+ def __init__(__self__, *,
1252
+ end_port: int,
1253
+ start_port: int):
1254
+ """
1255
+ Port range details
1256
+ :param int end_port: End port of a range of ports
1257
+ :param int start_port: Starting port of a range of ports
1258
+ """
1259
+ pulumi.set(__self__, "end_port", end_port)
1260
+ pulumi.set(__self__, "start_port", start_port)
1261
+
1262
+ @property
1263
+ @pulumi.getter(name="endPort")
1264
+ def end_port(self) -> int:
1265
+ """
1266
+ End port of a range of ports
1267
+ """
1268
+ return pulumi.get(self, "end_port")
1269
+
1270
+ @property
1271
+ @pulumi.getter(name="startPort")
1272
+ def start_port(self) -> int:
1273
+ """
1274
+ Starting port of a range of ports
1275
+ """
1276
+ return pulumi.get(self, "start_port")
1277
+
1278
+
1279
+ @pulumi.output_type
1280
+ class FrontendConfigurationResponse(dict):
1281
+ """
1282
+ Describes the frontend configurations for the node type.
1283
+ """
1284
+ @staticmethod
1285
+ def __key_warning(key: str):
1286
+ suggest = None
1287
+ if key == "applicationGatewayBackendAddressPoolId":
1288
+ suggest = "application_gateway_backend_address_pool_id"
1289
+ elif key == "ipAddressType":
1290
+ suggest = "ip_address_type"
1291
+ elif key == "loadBalancerBackendAddressPoolId":
1292
+ suggest = "load_balancer_backend_address_pool_id"
1293
+ elif key == "loadBalancerInboundNatPoolId":
1294
+ suggest = "load_balancer_inbound_nat_pool_id"
1295
+
1296
+ if suggest:
1297
+ pulumi.log.warn(f"Key '{key}' not found in FrontendConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1298
+
1299
+ def __getitem__(self, key: str) -> Any:
1300
+ FrontendConfigurationResponse.__key_warning(key)
1301
+ return super().__getitem__(key)
1302
+
1303
+ def get(self, key: str, default = None) -> Any:
1304
+ FrontendConfigurationResponse.__key_warning(key)
1305
+ return super().get(key, default)
1306
+
1307
+ def __init__(__self__, *,
1308
+ application_gateway_backend_address_pool_id: Optional[str] = None,
1309
+ ip_address_type: Optional[str] = None,
1310
+ load_balancer_backend_address_pool_id: Optional[str] = None,
1311
+ load_balancer_inbound_nat_pool_id: Optional[str] = None):
1312
+ """
1313
+ Describes the frontend configurations for the node type.
1314
+ :param str application_gateway_backend_address_pool_id: The resource Id of application gateway backend address pool. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/applicationGateways/<applicationGatewayName>/backendAddressPools/<backendAddressPoolName>'.
1315
+ :param str ip_address_type: The IP address type of this frontend configuration. If omitted the default value is IPv4.
1316
+ :param str load_balancer_backend_address_pool_id: The resource Id of the Load Balancer backend address pool that the VM instances of the node type are associated with. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/loadBalancers/<loadBalancerName>/backendAddressPools/<backendAddressPoolName>'.
1317
+ :param str load_balancer_inbound_nat_pool_id: The resource Id of the Load Balancer inbound NAT pool that the VM instances of the node type are associated with. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/loadBalancers/<loadBalancerName>/inboundNatPools/<inboundNatPoolName>'.
1318
+ """
1319
+ if application_gateway_backend_address_pool_id is not None:
1320
+ pulumi.set(__self__, "application_gateway_backend_address_pool_id", application_gateway_backend_address_pool_id)
1321
+ if ip_address_type is not None:
1322
+ pulumi.set(__self__, "ip_address_type", ip_address_type)
1323
+ if load_balancer_backend_address_pool_id is not None:
1324
+ pulumi.set(__self__, "load_balancer_backend_address_pool_id", load_balancer_backend_address_pool_id)
1325
+ if load_balancer_inbound_nat_pool_id is not None:
1326
+ pulumi.set(__self__, "load_balancer_inbound_nat_pool_id", load_balancer_inbound_nat_pool_id)
1327
+
1328
+ @property
1329
+ @pulumi.getter(name="applicationGatewayBackendAddressPoolId")
1330
+ def application_gateway_backend_address_pool_id(self) -> Optional[str]:
1331
+ """
1332
+ The resource Id of application gateway backend address pool. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/applicationGateways/<applicationGatewayName>/backendAddressPools/<backendAddressPoolName>'.
1333
+ """
1334
+ return pulumi.get(self, "application_gateway_backend_address_pool_id")
1335
+
1336
+ @property
1337
+ @pulumi.getter(name="ipAddressType")
1338
+ def ip_address_type(self) -> Optional[str]:
1339
+ """
1340
+ The IP address type of this frontend configuration. If omitted the default value is IPv4.
1341
+ """
1342
+ return pulumi.get(self, "ip_address_type")
1343
+
1344
+ @property
1345
+ @pulumi.getter(name="loadBalancerBackendAddressPoolId")
1346
+ def load_balancer_backend_address_pool_id(self) -> Optional[str]:
1347
+ """
1348
+ The resource Id of the Load Balancer backend address pool that the VM instances of the node type are associated with. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/loadBalancers/<loadBalancerName>/backendAddressPools/<backendAddressPoolName>'.
1349
+ """
1350
+ return pulumi.get(self, "load_balancer_backend_address_pool_id")
1351
+
1352
+ @property
1353
+ @pulumi.getter(name="loadBalancerInboundNatPoolId")
1354
+ def load_balancer_inbound_nat_pool_id(self) -> Optional[str]:
1355
+ """
1356
+ The resource Id of the Load Balancer inbound NAT pool that the VM instances of the node type are associated with. The format of the resource Id is '/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/loadBalancers/<loadBalancerName>/inboundNatPools/<inboundNatPoolName>'.
1357
+ """
1358
+ return pulumi.get(self, "load_balancer_inbound_nat_pool_id")
1359
+
1360
+
1361
+ @pulumi.output_type
1362
+ class IpConfigurationResponse(dict):
1363
+ """
1364
+ Specifies an IP configuration of the network interface.
1365
+ """
1366
+ @staticmethod
1367
+ def __key_warning(key: str):
1368
+ suggest = None
1369
+ if key == "applicationGatewayBackendAddressPools":
1370
+ suggest = "application_gateway_backend_address_pools"
1371
+ elif key == "loadBalancerBackendAddressPools":
1372
+ suggest = "load_balancer_backend_address_pools"
1373
+ elif key == "loadBalancerInboundNatPools":
1374
+ suggest = "load_balancer_inbound_nat_pools"
1375
+ elif key == "privateIPAddressVersion":
1376
+ suggest = "private_ip_address_version"
1377
+ elif key == "publicIPAddressConfiguration":
1378
+ suggest = "public_ip_address_configuration"
1379
+
1380
+ if suggest:
1381
+ pulumi.log.warn(f"Key '{key}' not found in IpConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
1382
+
1383
+ def __getitem__(self, key: str) -> Any:
1384
+ IpConfigurationResponse.__key_warning(key)
1385
+ return super().__getitem__(key)
1386
+
1387
+ def get(self, key: str, default = None) -> Any:
1388
+ IpConfigurationResponse.__key_warning(key)
1389
+ return super().get(key, default)
1390
+
1391
+ def __init__(__self__, *,
1392
+ name: str,
1393
+ application_gateway_backend_address_pools: Optional[Sequence['outputs.SubResourceResponse']] = None,
1394
+ load_balancer_backend_address_pools: Optional[Sequence['outputs.SubResourceResponse']] = None,
1395
+ load_balancer_inbound_nat_pools: Optional[Sequence['outputs.SubResourceResponse']] = None,
1396
+ private_ip_address_version: Optional[str] = None,
1397
+ public_ip_address_configuration: Optional['outputs.IpConfigurationResponsePublicIPAddressConfiguration'] = None,
1398
+ subnet: Optional['outputs.SubResourceResponse'] = None):
1399
+ """
1400
+ Specifies an IP configuration of the network interface.
1401
+ :param str name: Name of the network interface.
1402
+ :param Sequence['SubResourceResponse'] application_gateway_backend_address_pools: Specifies an array of references to backend address pools of application gateways. A node type can reference backend address pools of multiple application gateways. Multiple node types cannot use the same application gateway.
1403
+ :param Sequence['SubResourceResponse'] load_balancer_backend_address_pools: Specifies an array of references to backend address pools of load balancers. A node type can reference backend address pools of one public and one internal load balancer. Multiple node types cannot use the same basic sku load balancer.
1404
+ :param Sequence['SubResourceResponse'] load_balancer_inbound_nat_pools: Specifies an array of references to inbound Nat pools of the load balancers. A node type can reference inbound nat pools of one public and one internal load balancer. Multiple node types cannot use the same basic sku load balancer.
1405
+ :param str private_ip_address_version: Specifies whether the IP configuration's private IP is IPv4 or IPv6. Default is IPv4.
1406
+ :param 'IpConfigurationResponsePublicIPAddressConfiguration' public_ip_address_configuration: The public IP address configuration of the network interface.
1407
+ :param 'SubResourceResponse' subnet: Specifies the subnet of the network interface.
1408
+ """
1409
+ pulumi.set(__self__, "name", name)
1410
+ if application_gateway_backend_address_pools is not None:
1411
+ pulumi.set(__self__, "application_gateway_backend_address_pools", application_gateway_backend_address_pools)
1412
+ if load_balancer_backend_address_pools is not None:
1413
+ pulumi.set(__self__, "load_balancer_backend_address_pools", load_balancer_backend_address_pools)
1414
+ if load_balancer_inbound_nat_pools is not None:
1415
+ pulumi.set(__self__, "load_balancer_inbound_nat_pools", load_balancer_inbound_nat_pools)
1416
+ if private_ip_address_version is None:
1417
+ private_ip_address_version = 'IPv4'
1418
+ if private_ip_address_version is not None:
1419
+ pulumi.set(__self__, "private_ip_address_version", private_ip_address_version)
1420
+ if public_ip_address_configuration is not None:
1421
+ pulumi.set(__self__, "public_ip_address_configuration", public_ip_address_configuration)
1422
+ if subnet is not None:
1423
+ pulumi.set(__self__, "subnet", subnet)
1424
+
1425
+ @property
1426
+ @pulumi.getter
1427
+ def name(self) -> str:
1428
+ """
1429
+ Name of the network interface.
1430
+ """
1431
+ return pulumi.get(self, "name")
1432
+
1433
+ @property
1434
+ @pulumi.getter(name="applicationGatewayBackendAddressPools")
1435
+ def application_gateway_backend_address_pools(self) -> Optional[Sequence['outputs.SubResourceResponse']]:
1436
+ """
1437
+ Specifies an array of references to backend address pools of application gateways. A node type can reference backend address pools of multiple application gateways. Multiple node types cannot use the same application gateway.
1438
+ """
1439
+ return pulumi.get(self, "application_gateway_backend_address_pools")
1440
+
1441
+ @property
1442
+ @pulumi.getter(name="loadBalancerBackendAddressPools")
1443
+ def load_balancer_backend_address_pools(self) -> Optional[Sequence['outputs.SubResourceResponse']]:
1444
+ """
1445
+ Specifies an array of references to backend address pools of load balancers. A node type can reference backend address pools of one public and one internal load balancer. Multiple node types cannot use the same basic sku load balancer.
1446
+ """
1447
+ return pulumi.get(self, "load_balancer_backend_address_pools")
1448
+
1449
+ @property
1450
+ @pulumi.getter(name="loadBalancerInboundNatPools")
1451
+ def load_balancer_inbound_nat_pools(self) -> Optional[Sequence['outputs.SubResourceResponse']]:
1452
+ """
1453
+ Specifies an array of references to inbound Nat pools of the load balancers. A node type can reference inbound nat pools of one public and one internal load balancer. Multiple node types cannot use the same basic sku load balancer.
1454
+ """
1455
+ return pulumi.get(self, "load_balancer_inbound_nat_pools")
1456
+
1457
+ @property
1458
+ @pulumi.getter(name="privateIPAddressVersion")
1459
+ def private_ip_address_version(self) -> Optional[str]:
1460
+ """
1461
+ Specifies whether the IP configuration's private IP is IPv4 or IPv6. Default is IPv4.
1462
+ """
1463
+ return pulumi.get(self, "private_ip_address_version")
1464
+
1465
+ @property
1466
+ @pulumi.getter(name="publicIPAddressConfiguration")
1467
+ def public_ip_address_configuration(self) -> Optional['outputs.IpConfigurationResponsePublicIPAddressConfiguration']:
1468
+ """
1469
+ The public IP address configuration of the network interface.
1470
+ """
1471
+ return pulumi.get(self, "public_ip_address_configuration")
1472
+
1473
+ @property
1474
+ @pulumi.getter
1475
+ def subnet(self) -> Optional['outputs.SubResourceResponse']:
1476
+ """
1477
+ Specifies the subnet of the network interface.
1478
+ """
1479
+ return pulumi.get(self, "subnet")
1480
+
1481
+
1482
+ @pulumi.output_type
1483
+ class IpConfigurationResponsePublicIPAddressConfiguration(dict):
1484
+ """
1485
+ The public IP address configuration of the network interface.
1486
+ """
1487
+ @staticmethod
1488
+ def __key_warning(key: str):
1489
+ suggest = None
1490
+ if key == "ipTags":
1491
+ suggest = "ip_tags"
1492
+ elif key == "publicIPAddressVersion":
1493
+ suggest = "public_ip_address_version"
1494
+
1495
+ if suggest:
1496
+ pulumi.log.warn(f"Key '{key}' not found in IpConfigurationResponsePublicIPAddressConfiguration. Access the value via the '{suggest}' property getter instead.")
1497
+
1498
+ def __getitem__(self, key: str) -> Any:
1499
+ IpConfigurationResponsePublicIPAddressConfiguration.__key_warning(key)
1500
+ return super().__getitem__(key)
1501
+
1502
+ def get(self, key: str, default = None) -> Any:
1503
+ IpConfigurationResponsePublicIPAddressConfiguration.__key_warning(key)
1504
+ return super().get(key, default)
1505
+
1506
+ def __init__(__self__, *,
1507
+ name: str,
1508
+ ip_tags: Optional[Sequence['outputs.IpTagResponse']] = None,
1509
+ public_ip_address_version: Optional[str] = None):
1510
+ """
1511
+ The public IP address configuration of the network interface.
1512
+ :param str name: Name of the network interface.
1513
+ :param Sequence['IpTagResponse'] ip_tags: Specifies the list of IP tags associated with the public IP address.
1514
+ :param str public_ip_address_version: Specifies whether the IP configuration's public IP is IPv4 or IPv6. Default is IPv4.
1515
+ """
1516
+ pulumi.set(__self__, "name", name)
1517
+ if ip_tags is not None:
1518
+ pulumi.set(__self__, "ip_tags", ip_tags)
1519
+ if public_ip_address_version is None:
1520
+ public_ip_address_version = 'IPv4'
1521
+ if public_ip_address_version is not None:
1522
+ pulumi.set(__self__, "public_ip_address_version", public_ip_address_version)
1523
+
1524
+ @property
1525
+ @pulumi.getter
1526
+ def name(self) -> str:
1527
+ """
1528
+ Name of the network interface.
1529
+ """
1530
+ return pulumi.get(self, "name")
1531
+
1532
+ @property
1533
+ @pulumi.getter(name="ipTags")
1534
+ def ip_tags(self) -> Optional[Sequence['outputs.IpTagResponse']]:
1535
+ """
1536
+ Specifies the list of IP tags associated with the public IP address.
1537
+ """
1538
+ return pulumi.get(self, "ip_tags")
1539
+
1540
+ @property
1541
+ @pulumi.getter(name="publicIPAddressVersion")
1542
+ def public_ip_address_version(self) -> Optional[str]:
1543
+ """
1544
+ Specifies whether the IP configuration's public IP is IPv4 or IPv6. Default is IPv4.
1545
+ """
1546
+ return pulumi.get(self, "public_ip_address_version")
1547
+
1548
+
1549
+ @pulumi.output_type
1550
+ class IpTagResponse(dict):
1551
+ """
1552
+ The IP tag associated with the public IP address.
1553
+ """
1554
+ @staticmethod
1555
+ def __key_warning(key: str):
1556
+ suggest = None
1557
+ if key == "ipTagType":
1558
+ suggest = "ip_tag_type"
1559
+
1560
+ if suggest:
1561
+ pulumi.log.warn(f"Key '{key}' not found in IpTagResponse. Access the value via the '{suggest}' property getter instead.")
1562
+
1563
+ def __getitem__(self, key: str) -> Any:
1564
+ IpTagResponse.__key_warning(key)
1565
+ return super().__getitem__(key)
1566
+
1567
+ def get(self, key: str, default = None) -> Any:
1568
+ IpTagResponse.__key_warning(key)
1569
+ return super().get(key, default)
1570
+
1571
+ def __init__(__self__, *,
1572
+ ip_tag_type: str,
1573
+ tag: str):
1574
+ """
1575
+ The IP tag associated with the public IP address.
1576
+ :param str ip_tag_type: IP tag type. Example: FirstPartyUsage.
1577
+ :param str tag: IP tag associated with the public IP. Example: SQL, Storage etc.
1578
+ """
1579
+ pulumi.set(__self__, "ip_tag_type", ip_tag_type)
1580
+ pulumi.set(__self__, "tag", tag)
1581
+
1582
+ @property
1583
+ @pulumi.getter(name="ipTagType")
1584
+ def ip_tag_type(self) -> str:
1585
+ """
1586
+ IP tag type. Example: FirstPartyUsage.
1587
+ """
1588
+ return pulumi.get(self, "ip_tag_type")
1589
+
1590
+ @property
1591
+ @pulumi.getter
1592
+ def tag(self) -> str:
1593
+ """
1594
+ IP tag associated with the public IP. Example: SQL, Storage etc.
1595
+ """
1596
+ return pulumi.get(self, "tag")
1597
+
1598
+
1599
+ @pulumi.output_type
1600
+ class LoadBalancingRuleResponse(dict):
1601
+ """
1602
+ Describes a load balancing rule.
1603
+ """
1604
+ @staticmethod
1605
+ def __key_warning(key: str):
1606
+ suggest = None
1607
+ if key == "backendPort":
1608
+ suggest = "backend_port"
1609
+ elif key == "frontendPort":
1610
+ suggest = "frontend_port"
1611
+ elif key == "probeProtocol":
1612
+ suggest = "probe_protocol"
1613
+ elif key == "loadDistribution":
1614
+ suggest = "load_distribution"
1615
+ elif key == "probePort":
1616
+ suggest = "probe_port"
1617
+ elif key == "probeRequestPath":
1618
+ suggest = "probe_request_path"
1619
+
1620
+ if suggest:
1621
+ pulumi.log.warn(f"Key '{key}' not found in LoadBalancingRuleResponse. Access the value via the '{suggest}' property getter instead.")
1622
+
1623
+ def __getitem__(self, key: str) -> Any:
1624
+ LoadBalancingRuleResponse.__key_warning(key)
1625
+ return super().__getitem__(key)
1626
+
1627
+ def get(self, key: str, default = None) -> Any:
1628
+ LoadBalancingRuleResponse.__key_warning(key)
1629
+ return super().get(key, default)
1630
+
1631
+ def __init__(__self__, *,
1632
+ backend_port: int,
1633
+ frontend_port: int,
1634
+ probe_protocol: str,
1635
+ protocol: str,
1636
+ load_distribution: Optional[str] = None,
1637
+ probe_port: Optional[int] = None,
1638
+ probe_request_path: Optional[str] = None):
1639
+ """
1640
+ Describes a load balancing rule.
1641
+ :param int backend_port: The port used for internal connections on the endpoint. Acceptable values are between 1 and 65535.
1642
+ :param int frontend_port: The port for the external endpoint. Port numbers for each rule must be unique within the Load Balancer. Acceptable values are between 1 and 65534.
1643
+ :param str probe_protocol: the reference to the load balancer probe used by the load balancing rule.
1644
+ :param str protocol: The reference to the transport protocol used by the load balancing rule.
1645
+ :param str load_distribution: The load distribution policy for this rule.
1646
+ :param int probe_port: The prob port used by the load balancing rule. Acceptable values are between 1 and 65535.
1647
+ :param str probe_request_path: The probe request path. Only supported for HTTP/HTTPS probes.
1648
+ """
1649
+ pulumi.set(__self__, "backend_port", backend_port)
1650
+ pulumi.set(__self__, "frontend_port", frontend_port)
1651
+ pulumi.set(__self__, "probe_protocol", probe_protocol)
1652
+ pulumi.set(__self__, "protocol", protocol)
1653
+ if load_distribution is not None:
1654
+ pulumi.set(__self__, "load_distribution", load_distribution)
1655
+ if probe_port is not None:
1656
+ pulumi.set(__self__, "probe_port", probe_port)
1657
+ if probe_request_path is not None:
1658
+ pulumi.set(__self__, "probe_request_path", probe_request_path)
1659
+
1660
+ @property
1661
+ @pulumi.getter(name="backendPort")
1662
+ def backend_port(self) -> int:
1663
+ """
1664
+ The port used for internal connections on the endpoint. Acceptable values are between 1 and 65535.
1665
+ """
1666
+ return pulumi.get(self, "backend_port")
1667
+
1668
+ @property
1669
+ @pulumi.getter(name="frontendPort")
1670
+ def frontend_port(self) -> int:
1671
+ """
1672
+ The port for the external endpoint. Port numbers for each rule must be unique within the Load Balancer. Acceptable values are between 1 and 65534.
1673
+ """
1674
+ return pulumi.get(self, "frontend_port")
1675
+
1676
+ @property
1677
+ @pulumi.getter(name="probeProtocol")
1678
+ def probe_protocol(self) -> str:
1679
+ """
1680
+ the reference to the load balancer probe used by the load balancing rule.
1681
+ """
1682
+ return pulumi.get(self, "probe_protocol")
1683
+
1684
+ @property
1685
+ @pulumi.getter
1686
+ def protocol(self) -> str:
1687
+ """
1688
+ The reference to the transport protocol used by the load balancing rule.
1689
+ """
1690
+ return pulumi.get(self, "protocol")
1691
+
1692
+ @property
1693
+ @pulumi.getter(name="loadDistribution")
1694
+ def load_distribution(self) -> Optional[str]:
1695
+ """
1696
+ The load distribution policy for this rule.
1697
+ """
1698
+ return pulumi.get(self, "load_distribution")
1699
+
1700
+ @property
1701
+ @pulumi.getter(name="probePort")
1702
+ def probe_port(self) -> Optional[int]:
1703
+ """
1704
+ The prob port used by the load balancing rule. Acceptable values are between 1 and 65535.
1705
+ """
1706
+ return pulumi.get(self, "probe_port")
1707
+
1708
+ @property
1709
+ @pulumi.getter(name="probeRequestPath")
1710
+ def probe_request_path(self) -> Optional[str]:
1711
+ """
1712
+ The probe request path. Only supported for HTTP/HTTPS probes.
1713
+ """
1714
+ return pulumi.get(self, "probe_request_path")
1715
+
1716
+
1717
+ @pulumi.output_type
1718
+ class ManagedIdentityResponse(dict):
1719
+ """
1720
+ Describes the managed identities for an Azure resource.
1721
+ """
1722
+ @staticmethod
1723
+ def __key_warning(key: str):
1724
+ suggest = None
1725
+ if key == "principalId":
1726
+ suggest = "principal_id"
1727
+ elif key == "tenantId":
1728
+ suggest = "tenant_id"
1729
+ elif key == "userAssignedIdentities":
1730
+ suggest = "user_assigned_identities"
1731
+
1732
+ if suggest:
1733
+ pulumi.log.warn(f"Key '{key}' not found in ManagedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1734
+
1735
+ def __getitem__(self, key: str) -> Any:
1736
+ ManagedIdentityResponse.__key_warning(key)
1737
+ return super().__getitem__(key)
1738
+
1739
+ def get(self, key: str, default = None) -> Any:
1740
+ ManagedIdentityResponse.__key_warning(key)
1741
+ return super().get(key, default)
1742
+
1743
+ def __init__(__self__, *,
1744
+ principal_id: str,
1745
+ tenant_id: str,
1746
+ type: Optional[str] = None,
1747
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
1748
+ """
1749
+ Describes the managed identities for an Azure resource.
1750
+ :param str principal_id: The principal id of the managed identity. This property will only be provided for a system assigned identity.
1751
+ :param str tenant_id: The tenant id of the managed identity. This property will only be provided for a system assigned identity.
1752
+ :param str type: The type of managed identity for the resource.
1753
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form:
1754
+ '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
1755
+ """
1756
+ pulumi.set(__self__, "principal_id", principal_id)
1757
+ pulumi.set(__self__, "tenant_id", tenant_id)
1758
+ if type is not None:
1759
+ pulumi.set(__self__, "type", type)
1760
+ if user_assigned_identities is not None:
1761
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1762
+
1763
+ @property
1764
+ @pulumi.getter(name="principalId")
1765
+ def principal_id(self) -> str:
1766
+ """
1767
+ The principal id of the managed identity. This property will only be provided for a system assigned identity.
1768
+ """
1769
+ return pulumi.get(self, "principal_id")
1770
+
1771
+ @property
1772
+ @pulumi.getter(name="tenantId")
1773
+ def tenant_id(self) -> str:
1774
+ """
1775
+ The tenant id of the managed identity. This property will only be provided for a system assigned identity.
1776
+ """
1777
+ return pulumi.get(self, "tenant_id")
1778
+
1779
+ @property
1780
+ @pulumi.getter
1781
+ def type(self) -> Optional[str]:
1782
+ """
1783
+ The type of managed identity for the resource.
1784
+ """
1785
+ return pulumi.get(self, "type")
1786
+
1787
+ @property
1788
+ @pulumi.getter(name="userAssignedIdentities")
1789
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
1790
+ """
1791
+ The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form:
1792
+ '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
1793
+ """
1794
+ return pulumi.get(self, "user_assigned_identities")
1795
+
1796
+
1797
+ @pulumi.output_type
1798
+ class NamedPartitionSchemeResponse(dict):
1799
+ """
1800
+ Describes the named partition scheme of the service.
1801
+ """
1802
+ @staticmethod
1803
+ def __key_warning(key: str):
1804
+ suggest = None
1805
+ if key == "partitionScheme":
1806
+ suggest = "partition_scheme"
1807
+
1808
+ if suggest:
1809
+ pulumi.log.warn(f"Key '{key}' not found in NamedPartitionSchemeResponse. Access the value via the '{suggest}' property getter instead.")
1810
+
1811
+ def __getitem__(self, key: str) -> Any:
1812
+ NamedPartitionSchemeResponse.__key_warning(key)
1813
+ return super().__getitem__(key)
1814
+
1815
+ def get(self, key: str, default = None) -> Any:
1816
+ NamedPartitionSchemeResponse.__key_warning(key)
1817
+ return super().get(key, default)
1818
+
1819
+ def __init__(__self__, *,
1820
+ names: Sequence[str],
1821
+ partition_scheme: str):
1822
+ """
1823
+ Describes the named partition scheme of the service.
1824
+ :param Sequence[str] names: Array for the names of the partitions.
1825
+ :param str partition_scheme: Enumerates the ways that a service can be partitioned.
1826
+ Expected value is 'Named'.
1827
+ """
1828
+ pulumi.set(__self__, "names", names)
1829
+ pulumi.set(__self__, "partition_scheme", 'Named')
1830
+
1831
+ @property
1832
+ @pulumi.getter
1833
+ def names(self) -> Sequence[str]:
1834
+ """
1835
+ Array for the names of the partitions.
1836
+ """
1837
+ return pulumi.get(self, "names")
1838
+
1839
+ @property
1840
+ @pulumi.getter(name="partitionScheme")
1841
+ def partition_scheme(self) -> str:
1842
+ """
1843
+ Enumerates the ways that a service can be partitioned.
1844
+ Expected value is 'Named'.
1845
+ """
1846
+ return pulumi.get(self, "partition_scheme")
1847
+
1848
+
1849
+ @pulumi.output_type
1850
+ class NetworkSecurityRuleResponse(dict):
1851
+ """
1852
+ Describes a network security rule.
1853
+ """
1854
+ @staticmethod
1855
+ def __key_warning(key: str):
1856
+ suggest = None
1857
+ if key == "destinationAddressPrefix":
1858
+ suggest = "destination_address_prefix"
1859
+ elif key == "destinationAddressPrefixes":
1860
+ suggest = "destination_address_prefixes"
1861
+ elif key == "destinationPortRange":
1862
+ suggest = "destination_port_range"
1863
+ elif key == "destinationPortRanges":
1864
+ suggest = "destination_port_ranges"
1865
+ elif key == "sourceAddressPrefix":
1866
+ suggest = "source_address_prefix"
1867
+ elif key == "sourceAddressPrefixes":
1868
+ suggest = "source_address_prefixes"
1869
+ elif key == "sourcePortRange":
1870
+ suggest = "source_port_range"
1871
+ elif key == "sourcePortRanges":
1872
+ suggest = "source_port_ranges"
1873
+
1874
+ if suggest:
1875
+ pulumi.log.warn(f"Key '{key}' not found in NetworkSecurityRuleResponse. Access the value via the '{suggest}' property getter instead.")
1876
+
1877
+ def __getitem__(self, key: str) -> Any:
1878
+ NetworkSecurityRuleResponse.__key_warning(key)
1879
+ return super().__getitem__(key)
1880
+
1881
+ def get(self, key: str, default = None) -> Any:
1882
+ NetworkSecurityRuleResponse.__key_warning(key)
1883
+ return super().get(key, default)
1884
+
1885
+ def __init__(__self__, *,
1886
+ access: str,
1887
+ direction: str,
1888
+ name: str,
1889
+ priority: int,
1890
+ protocol: str,
1891
+ description: Optional[str] = None,
1892
+ destination_address_prefix: Optional[str] = None,
1893
+ destination_address_prefixes: Optional[Sequence[str]] = None,
1894
+ destination_port_range: Optional[str] = None,
1895
+ destination_port_ranges: Optional[Sequence[str]] = None,
1896
+ source_address_prefix: Optional[str] = None,
1897
+ source_address_prefixes: Optional[Sequence[str]] = None,
1898
+ source_port_range: Optional[str] = None,
1899
+ source_port_ranges: Optional[Sequence[str]] = None):
1900
+ """
1901
+ Describes a network security rule.
1902
+ :param str access: The network traffic is allowed or denied.
1903
+ :param str direction: Network security rule direction.
1904
+ :param str name: Network security rule name.
1905
+ :param int priority: The priority of the rule. The value can be in the range 1000 to 3000. Values outside this range are reserved for Service Fabric ManagerCluster Resource Provider. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
1906
+ :param str protocol: Network protocol this rule applies to.
1907
+ :param str description: Network security rule description.
1908
+ :param str destination_address_prefix: The destination address prefix. CIDR or destination IP range. Asterisk '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used.
1909
+ :param Sequence[str] destination_address_prefixes: The destination address prefixes. CIDR or destination IP ranges.
1910
+ :param str destination_port_range: he destination port or range. Integer or range between 0 and 65535. Asterisk '*' can also be used to match all ports.
1911
+ :param Sequence[str] destination_port_ranges: The destination port ranges.
1912
+ :param str source_address_prefix: The CIDR or source IP range. Asterisk '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used. If this is an ingress rule, specifies where network traffic originates from.
1913
+ :param Sequence[str] source_address_prefixes: The CIDR or source IP ranges.
1914
+ :param str source_port_range: The source port or range. Integer or range between 0 and 65535. Asterisk '*' can also be used to match all ports.
1915
+ :param Sequence[str] source_port_ranges: The source port ranges.
1916
+ """
1917
+ pulumi.set(__self__, "access", access)
1918
+ pulumi.set(__self__, "direction", direction)
1919
+ pulumi.set(__self__, "name", name)
1920
+ pulumi.set(__self__, "priority", priority)
1921
+ pulumi.set(__self__, "protocol", protocol)
1922
+ if description is not None:
1923
+ pulumi.set(__self__, "description", description)
1924
+ if destination_address_prefix is not None:
1925
+ pulumi.set(__self__, "destination_address_prefix", destination_address_prefix)
1926
+ if destination_address_prefixes is not None:
1927
+ pulumi.set(__self__, "destination_address_prefixes", destination_address_prefixes)
1928
+ if destination_port_range is not None:
1929
+ pulumi.set(__self__, "destination_port_range", destination_port_range)
1930
+ if destination_port_ranges is not None:
1931
+ pulumi.set(__self__, "destination_port_ranges", destination_port_ranges)
1932
+ if source_address_prefix is not None:
1933
+ pulumi.set(__self__, "source_address_prefix", source_address_prefix)
1934
+ if source_address_prefixes is not None:
1935
+ pulumi.set(__self__, "source_address_prefixes", source_address_prefixes)
1936
+ if source_port_range is not None:
1937
+ pulumi.set(__self__, "source_port_range", source_port_range)
1938
+ if source_port_ranges is not None:
1939
+ pulumi.set(__self__, "source_port_ranges", source_port_ranges)
1940
+
1941
+ @property
1942
+ @pulumi.getter
1943
+ def access(self) -> str:
1944
+ """
1945
+ The network traffic is allowed or denied.
1946
+ """
1947
+ return pulumi.get(self, "access")
1948
+
1949
+ @property
1950
+ @pulumi.getter
1951
+ def direction(self) -> str:
1952
+ """
1953
+ Network security rule direction.
1954
+ """
1955
+ return pulumi.get(self, "direction")
1956
+
1957
+ @property
1958
+ @pulumi.getter
1959
+ def name(self) -> str:
1960
+ """
1961
+ Network security rule name.
1962
+ """
1963
+ return pulumi.get(self, "name")
1964
+
1965
+ @property
1966
+ @pulumi.getter
1967
+ def priority(self) -> int:
1968
+ """
1969
+ The priority of the rule. The value can be in the range 1000 to 3000. Values outside this range are reserved for Service Fabric ManagerCluster Resource Provider. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
1970
+ """
1971
+ return pulumi.get(self, "priority")
1972
+
1973
+ @property
1974
+ @pulumi.getter
1975
+ def protocol(self) -> str:
1976
+ """
1977
+ Network protocol this rule applies to.
1978
+ """
1979
+ return pulumi.get(self, "protocol")
1980
+
1981
+ @property
1982
+ @pulumi.getter
1983
+ def description(self) -> Optional[str]:
1984
+ """
1985
+ Network security rule description.
1986
+ """
1987
+ return pulumi.get(self, "description")
1988
+
1989
+ @property
1990
+ @pulumi.getter(name="destinationAddressPrefix")
1991
+ def destination_address_prefix(self) -> Optional[str]:
1992
+ """
1993
+ The destination address prefix. CIDR or destination IP range. Asterisk '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used.
1994
+ """
1995
+ return pulumi.get(self, "destination_address_prefix")
1996
+
1997
+ @property
1998
+ @pulumi.getter(name="destinationAddressPrefixes")
1999
+ def destination_address_prefixes(self) -> Optional[Sequence[str]]:
2000
+ """
2001
+ The destination address prefixes. CIDR or destination IP ranges.
2002
+ """
2003
+ return pulumi.get(self, "destination_address_prefixes")
2004
+
2005
+ @property
2006
+ @pulumi.getter(name="destinationPortRange")
2007
+ def destination_port_range(self) -> Optional[str]:
2008
+ """
2009
+ he destination port or range. Integer or range between 0 and 65535. Asterisk '*' can also be used to match all ports.
2010
+ """
2011
+ return pulumi.get(self, "destination_port_range")
2012
+
2013
+ @property
2014
+ @pulumi.getter(name="destinationPortRanges")
2015
+ def destination_port_ranges(self) -> Optional[Sequence[str]]:
2016
+ """
2017
+ The destination port ranges.
2018
+ """
2019
+ return pulumi.get(self, "destination_port_ranges")
2020
+
2021
+ @property
2022
+ @pulumi.getter(name="sourceAddressPrefix")
2023
+ def source_address_prefix(self) -> Optional[str]:
2024
+ """
2025
+ The CIDR or source IP range. Asterisk '*' can also be used to match all source IPs. Default tags such as 'VirtualNetwork', 'AzureLoadBalancer' and 'Internet' can also be used. If this is an ingress rule, specifies where network traffic originates from.
2026
+ """
2027
+ return pulumi.get(self, "source_address_prefix")
2028
+
2029
+ @property
2030
+ @pulumi.getter(name="sourceAddressPrefixes")
2031
+ def source_address_prefixes(self) -> Optional[Sequence[str]]:
2032
+ """
2033
+ The CIDR or source IP ranges.
2034
+ """
2035
+ return pulumi.get(self, "source_address_prefixes")
2036
+
2037
+ @property
2038
+ @pulumi.getter(name="sourcePortRange")
2039
+ def source_port_range(self) -> Optional[str]:
2040
+ """
2041
+ The source port or range. Integer or range between 0 and 65535. Asterisk '*' can also be used to match all ports.
2042
+ """
2043
+ return pulumi.get(self, "source_port_range")
2044
+
2045
+ @property
2046
+ @pulumi.getter(name="sourcePortRanges")
2047
+ def source_port_ranges(self) -> Optional[Sequence[str]]:
2048
+ """
2049
+ The source port ranges.
2050
+ """
2051
+ return pulumi.get(self, "source_port_ranges")
2052
+
2053
+
2054
+ @pulumi.output_type
2055
+ class NodeTypeNatConfigResponse(dict):
2056
+ """
2057
+ Provides information about NAT configuration on the default public Load Balancer for the node type.
2058
+ """
2059
+ @staticmethod
2060
+ def __key_warning(key: str):
2061
+ suggest = None
2062
+ if key == "backendPort":
2063
+ suggest = "backend_port"
2064
+ elif key == "frontendPortRangeEnd":
2065
+ suggest = "frontend_port_range_end"
2066
+ elif key == "frontendPortRangeStart":
2067
+ suggest = "frontend_port_range_start"
2068
+
2069
+ if suggest:
2070
+ pulumi.log.warn(f"Key '{key}' not found in NodeTypeNatConfigResponse. Access the value via the '{suggest}' property getter instead.")
2071
+
2072
+ def __getitem__(self, key: str) -> Any:
2073
+ NodeTypeNatConfigResponse.__key_warning(key)
2074
+ return super().__getitem__(key)
2075
+
2076
+ def get(self, key: str, default = None) -> Any:
2077
+ NodeTypeNatConfigResponse.__key_warning(key)
2078
+ return super().get(key, default)
2079
+
2080
+ def __init__(__self__, *,
2081
+ backend_port: Optional[int] = None,
2082
+ frontend_port_range_end: Optional[int] = None,
2083
+ frontend_port_range_start: Optional[int] = None):
2084
+ """
2085
+ Provides information about NAT configuration on the default public Load Balancer for the node type.
2086
+ :param int backend_port: The internal port for the NAT configuration.
2087
+ :param int frontend_port_range_end: The port range end for the external endpoint.
2088
+ :param int frontend_port_range_start: The port range start for the external endpoint.
2089
+ """
2090
+ if backend_port is not None:
2091
+ pulumi.set(__self__, "backend_port", backend_port)
2092
+ if frontend_port_range_end is not None:
2093
+ pulumi.set(__self__, "frontend_port_range_end", frontend_port_range_end)
2094
+ if frontend_port_range_start is not None:
2095
+ pulumi.set(__self__, "frontend_port_range_start", frontend_port_range_start)
2096
+
2097
+ @property
2098
+ @pulumi.getter(name="backendPort")
2099
+ def backend_port(self) -> Optional[int]:
2100
+ """
2101
+ The internal port for the NAT configuration.
2102
+ """
2103
+ return pulumi.get(self, "backend_port")
2104
+
2105
+ @property
2106
+ @pulumi.getter(name="frontendPortRangeEnd")
2107
+ def frontend_port_range_end(self) -> Optional[int]:
2108
+ """
2109
+ The port range end for the external endpoint.
2110
+ """
2111
+ return pulumi.get(self, "frontend_port_range_end")
2112
+
2113
+ @property
2114
+ @pulumi.getter(name="frontendPortRangeStart")
2115
+ def frontend_port_range_start(self) -> Optional[int]:
2116
+ """
2117
+ The port range start for the external endpoint.
2118
+ """
2119
+ return pulumi.get(self, "frontend_port_range_start")
2120
+
2121
+
2122
+ @pulumi.output_type
2123
+ class NodeTypeSkuResponse(dict):
2124
+ """
2125
+ Describes a node type sku.
2126
+ """
2127
+ def __init__(__self__, *,
2128
+ capacity: int,
2129
+ name: Optional[str] = None,
2130
+ tier: Optional[str] = None):
2131
+ """
2132
+ Describes a node type sku.
2133
+ :param int capacity: The number of nodes in the node type.<br /><br />If present in request it will override properties.vmInstanceCount.
2134
+ :param str name: The sku name. <br /><br />Name is internally generated and is used in auto-scale scenarios.<br /> Property does not allow to be changed to other values than generated.<br /> To avoid deployment errors please omit the property.
2135
+ :param str tier: Specifies the tier of the node type. <br /><br /> Possible Values:<br /> **Standard**
2136
+ """
2137
+ pulumi.set(__self__, "capacity", capacity)
2138
+ if name is not None:
2139
+ pulumi.set(__self__, "name", name)
2140
+ if tier is not None:
2141
+ pulumi.set(__self__, "tier", tier)
2142
+
2143
+ @property
2144
+ @pulumi.getter
2145
+ def capacity(self) -> int:
2146
+ """
2147
+ The number of nodes in the node type.<br /><br />If present in request it will override properties.vmInstanceCount.
2148
+ """
2149
+ return pulumi.get(self, "capacity")
2150
+
2151
+ @property
2152
+ @pulumi.getter
2153
+ def name(self) -> Optional[str]:
2154
+ """
2155
+ The sku name. <br /><br />Name is internally generated and is used in auto-scale scenarios.<br /> Property does not allow to be changed to other values than generated.<br /> To avoid deployment errors please omit the property.
2156
+ """
2157
+ return pulumi.get(self, "name")
2158
+
2159
+ @property
2160
+ @pulumi.getter
2161
+ def tier(self) -> Optional[str]:
2162
+ """
2163
+ Specifies the tier of the node type. <br /><br /> Possible Values:<br /> **Standard**
2164
+ """
2165
+ return pulumi.get(self, "tier")
2166
+
2167
+
2168
+ @pulumi.output_type
2169
+ class PartitionInstanceCountScaleMechanismResponse(dict):
2170
+ """
2171
+ Represents a scaling mechanism for adding or removing instances of stateless service partition.
2172
+ """
2173
+ @staticmethod
2174
+ def __key_warning(key: str):
2175
+ suggest = None
2176
+ if key == "maxInstanceCount":
2177
+ suggest = "max_instance_count"
2178
+ elif key == "minInstanceCount":
2179
+ suggest = "min_instance_count"
2180
+ elif key == "scaleIncrement":
2181
+ suggest = "scale_increment"
2182
+
2183
+ if suggest:
2184
+ pulumi.log.warn(f"Key '{key}' not found in PartitionInstanceCountScaleMechanismResponse. Access the value via the '{suggest}' property getter instead.")
2185
+
2186
+ def __getitem__(self, key: str) -> Any:
2187
+ PartitionInstanceCountScaleMechanismResponse.__key_warning(key)
2188
+ return super().__getitem__(key)
2189
+
2190
+ def get(self, key: str, default = None) -> Any:
2191
+ PartitionInstanceCountScaleMechanismResponse.__key_warning(key)
2192
+ return super().get(key, default)
2193
+
2194
+ def __init__(__self__, *,
2195
+ kind: str,
2196
+ max_instance_count: int,
2197
+ min_instance_count: int,
2198
+ scale_increment: int):
2199
+ """
2200
+ Represents a scaling mechanism for adding or removing instances of stateless service partition.
2201
+ :param str kind: Enumerates the ways that a service can be partitioned.
2202
+ Expected value is 'ScalePartitionInstanceCount'.
2203
+ :param int max_instance_count: Maximum number of instances of the partition.
2204
+ :param int min_instance_count: Minimum number of instances of the partition.
2205
+ :param int scale_increment: The number of instances to add or remove during a scaling operation.
2206
+ """
2207
+ pulumi.set(__self__, "kind", 'ScalePartitionInstanceCount')
2208
+ pulumi.set(__self__, "max_instance_count", max_instance_count)
2209
+ pulumi.set(__self__, "min_instance_count", min_instance_count)
2210
+ pulumi.set(__self__, "scale_increment", scale_increment)
2211
+
2212
+ @property
2213
+ @pulumi.getter
2214
+ def kind(self) -> str:
2215
+ """
2216
+ Enumerates the ways that a service can be partitioned.
2217
+ Expected value is 'ScalePartitionInstanceCount'.
2218
+ """
2219
+ return pulumi.get(self, "kind")
2220
+
2221
+ @property
2222
+ @pulumi.getter(name="maxInstanceCount")
2223
+ def max_instance_count(self) -> int:
2224
+ """
2225
+ Maximum number of instances of the partition.
2226
+ """
2227
+ return pulumi.get(self, "max_instance_count")
2228
+
2229
+ @property
2230
+ @pulumi.getter(name="minInstanceCount")
2231
+ def min_instance_count(self) -> int:
2232
+ """
2233
+ Minimum number of instances of the partition.
2234
+ """
2235
+ return pulumi.get(self, "min_instance_count")
2236
+
2237
+ @property
2238
+ @pulumi.getter(name="scaleIncrement")
2239
+ def scale_increment(self) -> int:
2240
+ """
2241
+ The number of instances to add or remove during a scaling operation.
2242
+ """
2243
+ return pulumi.get(self, "scale_increment")
2244
+
2245
+
2246
+ @pulumi.output_type
2247
+ class ResourceAzStatusResponse(dict):
2248
+ """
2249
+ Describes Az Resiliency status of Base resources
2250
+ """
2251
+ def __init__(__self__, *,
2252
+ details: str,
2253
+ is_zone_resilient: bool,
2254
+ resource_name: str,
2255
+ resource_type: str):
2256
+ """
2257
+ Describes Az Resiliency status of Base resources
2258
+ :param str details: Zone resiliency status details for the resource.
2259
+ :param bool is_zone_resilient: VM Size name.
2260
+ :param str resource_name: VM Size properties.
2261
+ :param str resource_type: VM Size id.
2262
+ """
2263
+ pulumi.set(__self__, "details", details)
2264
+ pulumi.set(__self__, "is_zone_resilient", is_zone_resilient)
2265
+ pulumi.set(__self__, "resource_name", resource_name)
2266
+ pulumi.set(__self__, "resource_type", resource_type)
2267
+
2268
+ @property
2269
+ @pulumi.getter
2270
+ def details(self) -> str:
2271
+ """
2272
+ Zone resiliency status details for the resource.
2273
+ """
2274
+ return pulumi.get(self, "details")
2275
+
2276
+ @property
2277
+ @pulumi.getter(name="isZoneResilient")
2278
+ def is_zone_resilient(self) -> bool:
2279
+ """
2280
+ VM Size name.
2281
+ """
2282
+ return pulumi.get(self, "is_zone_resilient")
2283
+
2284
+ @property
2285
+ @pulumi.getter(name="resourceName")
2286
+ def resource_name(self) -> str:
2287
+ """
2288
+ VM Size properties.
2289
+ """
2290
+ return pulumi.get(self, "resource_name")
2291
+
2292
+ @property
2293
+ @pulumi.getter(name="resourceType")
2294
+ def resource_type(self) -> str:
2295
+ """
2296
+ VM Size id.
2297
+ """
2298
+ return pulumi.get(self, "resource_type")
2299
+
2300
+
2301
+ @pulumi.output_type
2302
+ class RollingUpgradeMonitoringPolicyResponse(dict):
2303
+ """
2304
+ The policy used for monitoring the application upgrade
2305
+ """
2306
+ @staticmethod
2307
+ def __key_warning(key: str):
2308
+ suggest = None
2309
+ if key == "failureAction":
2310
+ suggest = "failure_action"
2311
+ elif key == "healthCheckRetryTimeout":
2312
+ suggest = "health_check_retry_timeout"
2313
+ elif key == "healthCheckStableDuration":
2314
+ suggest = "health_check_stable_duration"
2315
+ elif key == "healthCheckWaitDuration":
2316
+ suggest = "health_check_wait_duration"
2317
+ elif key == "upgradeDomainTimeout":
2318
+ suggest = "upgrade_domain_timeout"
2319
+ elif key == "upgradeTimeout":
2320
+ suggest = "upgrade_timeout"
2321
+
2322
+ if suggest:
2323
+ pulumi.log.warn(f"Key '{key}' not found in RollingUpgradeMonitoringPolicyResponse. Access the value via the '{suggest}' property getter instead.")
2324
+
2325
+ def __getitem__(self, key: str) -> Any:
2326
+ RollingUpgradeMonitoringPolicyResponse.__key_warning(key)
2327
+ return super().__getitem__(key)
2328
+
2329
+ def get(self, key: str, default = None) -> Any:
2330
+ RollingUpgradeMonitoringPolicyResponse.__key_warning(key)
2331
+ return super().get(key, default)
2332
+
2333
+ def __init__(__self__, *,
2334
+ failure_action: str,
2335
+ health_check_retry_timeout: str,
2336
+ health_check_stable_duration: str,
2337
+ health_check_wait_duration: str,
2338
+ upgrade_domain_timeout: str,
2339
+ upgrade_timeout: str):
2340
+ """
2341
+ The policy used for monitoring the application upgrade
2342
+ :param str failure_action: The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
2343
+ :param str health_check_retry_timeout: The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2344
+ :param str health_check_stable_duration: The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2345
+ :param str health_check_wait_duration: The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2346
+ :param str upgrade_domain_timeout: The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2347
+ :param str upgrade_timeout: The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2348
+ """
2349
+ pulumi.set(__self__, "failure_action", failure_action)
2350
+ pulumi.set(__self__, "health_check_retry_timeout", health_check_retry_timeout)
2351
+ pulumi.set(__self__, "health_check_stable_duration", health_check_stable_duration)
2352
+ pulumi.set(__self__, "health_check_wait_duration", health_check_wait_duration)
2353
+ pulumi.set(__self__, "upgrade_domain_timeout", upgrade_domain_timeout)
2354
+ pulumi.set(__self__, "upgrade_timeout", upgrade_timeout)
2355
+
2356
+ @property
2357
+ @pulumi.getter(name="failureAction")
2358
+ def failure_action(self) -> str:
2359
+ """
2360
+ The compensating action to perform when a Monitored upgrade encounters monitoring policy or health policy violations. Invalid indicates the failure action is invalid. Rollback specifies that the upgrade will start rolling back automatically. Manual indicates that the upgrade will switch to UnmonitoredManual upgrade mode.
2361
+ """
2362
+ return pulumi.get(self, "failure_action")
2363
+
2364
+ @property
2365
+ @pulumi.getter(name="healthCheckRetryTimeout")
2366
+ def health_check_retry_timeout(self) -> str:
2367
+ """
2368
+ The amount of time to retry health evaluation when the application or cluster is unhealthy before FailureAction is executed. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2369
+ """
2370
+ return pulumi.get(self, "health_check_retry_timeout")
2371
+
2372
+ @property
2373
+ @pulumi.getter(name="healthCheckStableDuration")
2374
+ def health_check_stable_duration(self) -> str:
2375
+ """
2376
+ The amount of time that the application or cluster must remain healthy before the upgrade proceeds to the next upgrade domain. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2377
+ """
2378
+ return pulumi.get(self, "health_check_stable_duration")
2379
+
2380
+ @property
2381
+ @pulumi.getter(name="healthCheckWaitDuration")
2382
+ def health_check_wait_duration(self) -> str:
2383
+ """
2384
+ The amount of time to wait after completing an upgrade domain before applying health policies. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2385
+ """
2386
+ return pulumi.get(self, "health_check_wait_duration")
2387
+
2388
+ @property
2389
+ @pulumi.getter(name="upgradeDomainTimeout")
2390
+ def upgrade_domain_timeout(self) -> str:
2391
+ """
2392
+ The amount of time each upgrade domain has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2393
+ """
2394
+ return pulumi.get(self, "upgrade_domain_timeout")
2395
+
2396
+ @property
2397
+ @pulumi.getter(name="upgradeTimeout")
2398
+ def upgrade_timeout(self) -> str:
2399
+ """
2400
+ The amount of time the overall upgrade has to complete before FailureAction is executed. Cannot be larger than 12 hours. It is interpreted as a string representing an ISO 8601 duration with following format "hh:mm:ss.fff".
2401
+ """
2402
+ return pulumi.get(self, "upgrade_timeout")
2403
+
2404
+
2405
+ @pulumi.output_type
2406
+ class ScalingPolicyResponse(dict):
2407
+ """
2408
+ Specifies a metric to load balance a service during runtime.
2409
+ """
2410
+ @staticmethod
2411
+ def __key_warning(key: str):
2412
+ suggest = None
2413
+ if key == "scalingMechanism":
2414
+ suggest = "scaling_mechanism"
2415
+ elif key == "scalingTrigger":
2416
+ suggest = "scaling_trigger"
2417
+
2418
+ if suggest:
2419
+ pulumi.log.warn(f"Key '{key}' not found in ScalingPolicyResponse. Access the value via the '{suggest}' property getter instead.")
2420
+
2421
+ def __getitem__(self, key: str) -> Any:
2422
+ ScalingPolicyResponse.__key_warning(key)
2423
+ return super().__getitem__(key)
2424
+
2425
+ def get(self, key: str, default = None) -> Any:
2426
+ ScalingPolicyResponse.__key_warning(key)
2427
+ return super().get(key, default)
2428
+
2429
+ def __init__(__self__, *,
2430
+ scaling_mechanism: Any,
2431
+ scaling_trigger: Any):
2432
+ """
2433
+ Specifies a metric to load balance a service during runtime.
2434
+ :param Union['AddRemoveIncrementalNamedPartitionScalingMechanismResponse', 'PartitionInstanceCountScaleMechanismResponse'] scaling_mechanism: Specifies the mechanism associated with this scaling policy
2435
+ :param Union['AveragePartitionLoadScalingTriggerResponse', 'AverageServiceLoadScalingTriggerResponse'] scaling_trigger: Specifies the trigger associated with this scaling policy.
2436
+ """
2437
+ pulumi.set(__self__, "scaling_mechanism", scaling_mechanism)
2438
+ pulumi.set(__self__, "scaling_trigger", scaling_trigger)
2439
+
2440
+ @property
2441
+ @pulumi.getter(name="scalingMechanism")
2442
+ def scaling_mechanism(self) -> Any:
2443
+ """
2444
+ Specifies the mechanism associated with this scaling policy
2445
+ """
2446
+ return pulumi.get(self, "scaling_mechanism")
2447
+
2448
+ @property
2449
+ @pulumi.getter(name="scalingTrigger")
2450
+ def scaling_trigger(self) -> Any:
2451
+ """
2452
+ Specifies the trigger associated with this scaling policy.
2453
+ """
2454
+ return pulumi.get(self, "scaling_trigger")
2455
+
2456
+
2457
+ @pulumi.output_type
2458
+ class ServiceCorrelationResponse(dict):
2459
+ """
2460
+ Creates a particular correlation between services.
2461
+ """
2462
+ @staticmethod
2463
+ def __key_warning(key: str):
2464
+ suggest = None
2465
+ if key == "serviceName":
2466
+ suggest = "service_name"
2467
+
2468
+ if suggest:
2469
+ pulumi.log.warn(f"Key '{key}' not found in ServiceCorrelationResponse. Access the value via the '{suggest}' property getter instead.")
2470
+
2471
+ def __getitem__(self, key: str) -> Any:
2472
+ ServiceCorrelationResponse.__key_warning(key)
2473
+ return super().__getitem__(key)
2474
+
2475
+ def get(self, key: str, default = None) -> Any:
2476
+ ServiceCorrelationResponse.__key_warning(key)
2477
+ return super().get(key, default)
2478
+
2479
+ def __init__(__self__, *,
2480
+ scheme: str,
2481
+ service_name: str):
2482
+ """
2483
+ Creates a particular correlation between services.
2484
+ :param str scheme: The ServiceCorrelationScheme which describes the relationship between this service and the service specified via ServiceName.
2485
+ :param str service_name: The Arm Resource ID of the service that the correlation relationship is established with.
2486
+ """
2487
+ pulumi.set(__self__, "scheme", scheme)
2488
+ pulumi.set(__self__, "service_name", service_name)
2489
+
2490
+ @property
2491
+ @pulumi.getter
2492
+ def scheme(self) -> str:
2493
+ """
2494
+ The ServiceCorrelationScheme which describes the relationship between this service and the service specified via ServiceName.
2495
+ """
2496
+ return pulumi.get(self, "scheme")
2497
+
2498
+ @property
2499
+ @pulumi.getter(name="serviceName")
2500
+ def service_name(self) -> str:
2501
+ """
2502
+ The Arm Resource ID of the service that the correlation relationship is established with.
2503
+ """
2504
+ return pulumi.get(self, "service_name")
2505
+
2506
+
2507
+ @pulumi.output_type
2508
+ class ServiceEndpointResponse(dict):
2509
+ """
2510
+ The service endpoint properties.
2511
+ """
2512
+ def __init__(__self__, *,
2513
+ service: str,
2514
+ locations: Optional[Sequence[str]] = None):
2515
+ """
2516
+ The service endpoint properties.
2517
+ :param str service: The type of the endpoint service.
2518
+ :param Sequence[str] locations: A list of locations.
2519
+ """
2520
+ pulumi.set(__self__, "service", service)
2521
+ if locations is not None:
2522
+ pulumi.set(__self__, "locations", locations)
2523
+
2524
+ @property
2525
+ @pulumi.getter
2526
+ def service(self) -> str:
2527
+ """
2528
+ The type of the endpoint service.
2529
+ """
2530
+ return pulumi.get(self, "service")
2531
+
2532
+ @property
2533
+ @pulumi.getter
2534
+ def locations(self) -> Optional[Sequence[str]]:
2535
+ """
2536
+ A list of locations.
2537
+ """
2538
+ return pulumi.get(self, "locations")
2539
+
2540
+
2541
+ @pulumi.output_type
2542
+ class ServiceLoadMetricResponse(dict):
2543
+ """
2544
+ Specifies a metric to load balance a service during runtime.
2545
+ """
2546
+ @staticmethod
2547
+ def __key_warning(key: str):
2548
+ suggest = None
2549
+ if key == "defaultLoad":
2550
+ suggest = "default_load"
2551
+ elif key == "primaryDefaultLoad":
2552
+ suggest = "primary_default_load"
2553
+ elif key == "secondaryDefaultLoad":
2554
+ suggest = "secondary_default_load"
2555
+
2556
+ if suggest:
2557
+ pulumi.log.warn(f"Key '{key}' not found in ServiceLoadMetricResponse. Access the value via the '{suggest}' property getter instead.")
2558
+
2559
+ def __getitem__(self, key: str) -> Any:
2560
+ ServiceLoadMetricResponse.__key_warning(key)
2561
+ return super().__getitem__(key)
2562
+
2563
+ def get(self, key: str, default = None) -> Any:
2564
+ ServiceLoadMetricResponse.__key_warning(key)
2565
+ return super().get(key, default)
2566
+
2567
+ def __init__(__self__, *,
2568
+ name: str,
2569
+ default_load: Optional[int] = None,
2570
+ primary_default_load: Optional[int] = None,
2571
+ secondary_default_load: Optional[int] = None,
2572
+ weight: Optional[str] = None):
2573
+ """
2574
+ Specifies a metric to load balance a service during runtime.
2575
+ :param str name: The name of the metric. If the service chooses to report load during runtime, the load metric name should match the name that is specified in Name exactly. Note that metric names are case sensitive.
2576
+ :param int default_load: Used only for Stateless services. The default amount of load, as a number, that this service creates for this metric.
2577
+ :param int primary_default_load: Used only for Stateful services. The default amount of load, as a number, that this service creates for this metric when it is a Primary replica.
2578
+ :param int secondary_default_load: Used only for Stateful services. The default amount of load, as a number, that this service creates for this metric when it is a Secondary replica.
2579
+ :param str weight: The service load metric relative weight, compared to other metrics configured for this service, as a number.
2580
+ """
2581
+ pulumi.set(__self__, "name", name)
2582
+ if default_load is not None:
2583
+ pulumi.set(__self__, "default_load", default_load)
2584
+ if primary_default_load is not None:
2585
+ pulumi.set(__self__, "primary_default_load", primary_default_load)
2586
+ if secondary_default_load is not None:
2587
+ pulumi.set(__self__, "secondary_default_load", secondary_default_load)
2588
+ if weight is not None:
2589
+ pulumi.set(__self__, "weight", weight)
2590
+
2591
+ @property
2592
+ @pulumi.getter
2593
+ def name(self) -> str:
2594
+ """
2595
+ The name of the metric. If the service chooses to report load during runtime, the load metric name should match the name that is specified in Name exactly. Note that metric names are case sensitive.
2596
+ """
2597
+ return pulumi.get(self, "name")
2598
+
2599
+ @property
2600
+ @pulumi.getter(name="defaultLoad")
2601
+ def default_load(self) -> Optional[int]:
2602
+ """
2603
+ Used only for Stateless services. The default amount of load, as a number, that this service creates for this metric.
2604
+ """
2605
+ return pulumi.get(self, "default_load")
2606
+
2607
+ @property
2608
+ @pulumi.getter(name="primaryDefaultLoad")
2609
+ def primary_default_load(self) -> Optional[int]:
2610
+ """
2611
+ Used only for Stateful services. The default amount of load, as a number, that this service creates for this metric when it is a Primary replica.
2612
+ """
2613
+ return pulumi.get(self, "primary_default_load")
2614
+
2615
+ @property
2616
+ @pulumi.getter(name="secondaryDefaultLoad")
2617
+ def secondary_default_load(self) -> Optional[int]:
2618
+ """
2619
+ Used only for Stateful services. The default amount of load, as a number, that this service creates for this metric when it is a Secondary replica.
2620
+ """
2621
+ return pulumi.get(self, "secondary_default_load")
2622
+
2623
+ @property
2624
+ @pulumi.getter
2625
+ def weight(self) -> Optional[str]:
2626
+ """
2627
+ The service load metric relative weight, compared to other metrics configured for this service, as a number.
2628
+ """
2629
+ return pulumi.get(self, "weight")
2630
+
2631
+
2632
+ @pulumi.output_type
2633
+ class ServicePlacementInvalidDomainPolicyResponse(dict):
2634
+ """
2635
+ Describes the policy to be used for placement of a Service Fabric service where a particular fault or upgrade domain should not be used for placement of the instances or replicas of that service.
2636
+ """
2637
+ @staticmethod
2638
+ def __key_warning(key: str):
2639
+ suggest = None
2640
+ if key == "domainName":
2641
+ suggest = "domain_name"
2642
+
2643
+ if suggest:
2644
+ pulumi.log.warn(f"Key '{key}' not found in ServicePlacementInvalidDomainPolicyResponse. Access the value via the '{suggest}' property getter instead.")
2645
+
2646
+ def __getitem__(self, key: str) -> Any:
2647
+ ServicePlacementInvalidDomainPolicyResponse.__key_warning(key)
2648
+ return super().__getitem__(key)
2649
+
2650
+ def get(self, key: str, default = None) -> Any:
2651
+ ServicePlacementInvalidDomainPolicyResponse.__key_warning(key)
2652
+ return super().get(key, default)
2653
+
2654
+ def __init__(__self__, *,
2655
+ domain_name: str,
2656
+ type: str):
2657
+ """
2658
+ Describes the policy to be used for placement of a Service Fabric service where a particular fault or upgrade domain should not be used for placement of the instances or replicas of that service.
2659
+ :param str domain_name: The name of the domain that should not be used for placement.
2660
+ :param str type: The type of placement policy for a service fabric service. Following are the possible values.
2661
+ Expected value is 'InvalidDomain'.
2662
+ """
2663
+ pulumi.set(__self__, "domain_name", domain_name)
2664
+ pulumi.set(__self__, "type", 'InvalidDomain')
2665
+
2666
+ @property
2667
+ @pulumi.getter(name="domainName")
2668
+ def domain_name(self) -> str:
2669
+ """
2670
+ The name of the domain that should not be used for placement.
2671
+ """
2672
+ return pulumi.get(self, "domain_name")
2673
+
2674
+ @property
2675
+ @pulumi.getter
2676
+ def type(self) -> str:
2677
+ """
2678
+ The type of placement policy for a service fabric service. Following are the possible values.
2679
+ Expected value is 'InvalidDomain'.
2680
+ """
2681
+ return pulumi.get(self, "type")
2682
+
2683
+
2684
+ @pulumi.output_type
2685
+ class ServicePlacementNonPartiallyPlaceServicePolicyResponse(dict):
2686
+ """
2687
+ The name of the domain that should used for placement as per this policy.
2688
+ """
2689
+ def __init__(__self__, *,
2690
+ type: str):
2691
+ """
2692
+ The name of the domain that should used for placement as per this policy.
2693
+ :param str type: The type of placement policy for a service fabric service. Following are the possible values.
2694
+ Expected value is 'NonPartiallyPlaceService'.
2695
+ """
2696
+ pulumi.set(__self__, "type", 'NonPartiallyPlaceService')
2697
+
2698
+ @property
2699
+ @pulumi.getter
2700
+ def type(self) -> str:
2701
+ """
2702
+ The type of placement policy for a service fabric service. Following are the possible values.
2703
+ Expected value is 'NonPartiallyPlaceService'.
2704
+ """
2705
+ return pulumi.get(self, "type")
2706
+
2707
+
2708
+ @pulumi.output_type
2709
+ class ServicePlacementPreferPrimaryDomainPolicyResponse(dict):
2710
+ """
2711
+ Describes the policy to be used for placement of a Service Fabric service where the service's
2712
+ Primary replicas should optimally be placed in a particular domain.
2713
+
2714
+ This placement policy is usually used with fault domains in scenarios where the Service Fabric
2715
+ cluster is geographically distributed in order to indicate that a service's primary replica should
2716
+ be located in a particular fault domain, which in geo-distributed scenarios usually aligns with regional
2717
+ or datacenter boundaries. Note that since this is an optimization it is possible that the Primary replica
2718
+ may not end up located in this domain due to failures, capacity limits, or other constraints.
2719
+ """
2720
+ @staticmethod
2721
+ def __key_warning(key: str):
2722
+ suggest = None
2723
+ if key == "domainName":
2724
+ suggest = "domain_name"
2725
+
2726
+ if suggest:
2727
+ pulumi.log.warn(f"Key '{key}' not found in ServicePlacementPreferPrimaryDomainPolicyResponse. Access the value via the '{suggest}' property getter instead.")
2728
+
2729
+ def __getitem__(self, key: str) -> Any:
2730
+ ServicePlacementPreferPrimaryDomainPolicyResponse.__key_warning(key)
2731
+ return super().__getitem__(key)
2732
+
2733
+ def get(self, key: str, default = None) -> Any:
2734
+ ServicePlacementPreferPrimaryDomainPolicyResponse.__key_warning(key)
2735
+ return super().get(key, default)
2736
+
2737
+ def __init__(__self__, *,
2738
+ domain_name: str,
2739
+ type: str):
2740
+ """
2741
+ Describes the policy to be used for placement of a Service Fabric service where the service's
2742
+ Primary replicas should optimally be placed in a particular domain.
2743
+
2744
+ This placement policy is usually used with fault domains in scenarios where the Service Fabric
2745
+ cluster is geographically distributed in order to indicate that a service's primary replica should
2746
+ be located in a particular fault domain, which in geo-distributed scenarios usually aligns with regional
2747
+ or datacenter boundaries. Note that since this is an optimization it is possible that the Primary replica
2748
+ may not end up located in this domain due to failures, capacity limits, or other constraints.
2749
+
2750
+ :param str domain_name: The name of the domain that should used for placement as per this policy.
2751
+ :param str type: The type of placement policy for a service fabric service. Following are the possible values.
2752
+ Expected value is 'PreferredPrimaryDomain'.
2753
+ """
2754
+ pulumi.set(__self__, "domain_name", domain_name)
2755
+ pulumi.set(__self__, "type", 'PreferredPrimaryDomain')
2756
+
2757
+ @property
2758
+ @pulumi.getter(name="domainName")
2759
+ def domain_name(self) -> str:
2760
+ """
2761
+ The name of the domain that should used for placement as per this policy.
2762
+ """
2763
+ return pulumi.get(self, "domain_name")
2764
+
2765
+ @property
2766
+ @pulumi.getter
2767
+ def type(self) -> str:
2768
+ """
2769
+ The type of placement policy for a service fabric service. Following are the possible values.
2770
+ Expected value is 'PreferredPrimaryDomain'.
2771
+ """
2772
+ return pulumi.get(self, "type")
2773
+
2774
+
2775
+ @pulumi.output_type
2776
+ class ServicePlacementRequireDomainDistributionPolicyResponse(dict):
2777
+ """
2778
+ Describes the policy to be used for placement of a Service Fabric service where two replicas
2779
+ from the same partition should never be placed in the same fault or upgrade domain.
2780
+
2781
+ While this is not common it can expose the service to an increased risk of concurrent failures
2782
+ due to unplanned outages or other cases of subsequent/concurrent failures. As an example, consider
2783
+ a case where replicas are deployed across different data center, with one replica per location.
2784
+ In the event that one of the datacenters goes offline, normally the replica that was placed in that
2785
+ datacenter will be packed into one of the remaining datacenters. If this is not desirable then this
2786
+ policy should be set.
2787
+ """
2788
+ @staticmethod
2789
+ def __key_warning(key: str):
2790
+ suggest = None
2791
+ if key == "domainName":
2792
+ suggest = "domain_name"
2793
+
2794
+ if suggest:
2795
+ pulumi.log.warn(f"Key '{key}' not found in ServicePlacementRequireDomainDistributionPolicyResponse. Access the value via the '{suggest}' property getter instead.")
2796
+
2797
+ def __getitem__(self, key: str) -> Any:
2798
+ ServicePlacementRequireDomainDistributionPolicyResponse.__key_warning(key)
2799
+ return super().__getitem__(key)
2800
+
2801
+ def get(self, key: str, default = None) -> Any:
2802
+ ServicePlacementRequireDomainDistributionPolicyResponse.__key_warning(key)
2803
+ return super().get(key, default)
2804
+
2805
+ def __init__(__self__, *,
2806
+ domain_name: str,
2807
+ type: str):
2808
+ """
2809
+ Describes the policy to be used for placement of a Service Fabric service where two replicas
2810
+ from the same partition should never be placed in the same fault or upgrade domain.
2811
+
2812
+ While this is not common it can expose the service to an increased risk of concurrent failures
2813
+ due to unplanned outages or other cases of subsequent/concurrent failures. As an example, consider
2814
+ a case where replicas are deployed across different data center, with one replica per location.
2815
+ In the event that one of the datacenters goes offline, normally the replica that was placed in that
2816
+ datacenter will be packed into one of the remaining datacenters. If this is not desirable then this
2817
+ policy should be set.
2818
+
2819
+ :param str domain_name: The name of the domain that should used for placement as per this policy.
2820
+ :param str type: The type of placement policy for a service fabric service. Following are the possible values.
2821
+ Expected value is 'RequiredDomainDistribution'.
2822
+ """
2823
+ pulumi.set(__self__, "domain_name", domain_name)
2824
+ pulumi.set(__self__, "type", 'RequiredDomainDistribution')
2825
+
2826
+ @property
2827
+ @pulumi.getter(name="domainName")
2828
+ def domain_name(self) -> str:
2829
+ """
2830
+ The name of the domain that should used for placement as per this policy.
2831
+ """
2832
+ return pulumi.get(self, "domain_name")
2833
+
2834
+ @property
2835
+ @pulumi.getter
2836
+ def type(self) -> str:
2837
+ """
2838
+ The type of placement policy for a service fabric service. Following are the possible values.
2839
+ Expected value is 'RequiredDomainDistribution'.
2840
+ """
2841
+ return pulumi.get(self, "type")
2842
+
2843
+
2844
+ @pulumi.output_type
2845
+ class ServicePlacementRequiredDomainPolicyResponse(dict):
2846
+ """
2847
+ Describes the policy to be used for placement of a Service Fabric service where the instances or replicas of that service must be placed in a particular domain.
2848
+ """
2849
+ @staticmethod
2850
+ def __key_warning(key: str):
2851
+ suggest = None
2852
+ if key == "domainName":
2853
+ suggest = "domain_name"
2854
+
2855
+ if suggest:
2856
+ pulumi.log.warn(f"Key '{key}' not found in ServicePlacementRequiredDomainPolicyResponse. Access the value via the '{suggest}' property getter instead.")
2857
+
2858
+ def __getitem__(self, key: str) -> Any:
2859
+ ServicePlacementRequiredDomainPolicyResponse.__key_warning(key)
2860
+ return super().__getitem__(key)
2861
+
2862
+ def get(self, key: str, default = None) -> Any:
2863
+ ServicePlacementRequiredDomainPolicyResponse.__key_warning(key)
2864
+ return super().get(key, default)
2865
+
2866
+ def __init__(__self__, *,
2867
+ domain_name: str,
2868
+ type: str):
2869
+ """
2870
+ Describes the policy to be used for placement of a Service Fabric service where the instances or replicas of that service must be placed in a particular domain.
2871
+ :param str domain_name: The name of the domain that should used for placement as per this policy.
2872
+ :param str type: The type of placement policy for a service fabric service. Following are the possible values.
2873
+ Expected value is 'RequiredDomain'.
2874
+ """
2875
+ pulumi.set(__self__, "domain_name", domain_name)
2876
+ pulumi.set(__self__, "type", 'RequiredDomain')
2877
+
2878
+ @property
2879
+ @pulumi.getter(name="domainName")
2880
+ def domain_name(self) -> str:
2881
+ """
2882
+ The name of the domain that should used for placement as per this policy.
2883
+ """
2884
+ return pulumi.get(self, "domain_name")
2885
+
2886
+ @property
2887
+ @pulumi.getter
2888
+ def type(self) -> str:
2889
+ """
2890
+ The type of placement policy for a service fabric service. Following are the possible values.
2891
+ Expected value is 'RequiredDomain'.
2892
+ """
2893
+ return pulumi.get(self, "type")
2894
+
2895
+
2896
+ @pulumi.output_type
2897
+ class ServiceTypeHealthPolicyResponse(dict):
2898
+ """
2899
+ Represents the health policy used to evaluate the health of services belonging to a service type.
2900
+ """
2901
+ @staticmethod
2902
+ def __key_warning(key: str):
2903
+ suggest = None
2904
+ if key == "maxPercentUnhealthyPartitionsPerService":
2905
+ suggest = "max_percent_unhealthy_partitions_per_service"
2906
+ elif key == "maxPercentUnhealthyReplicasPerPartition":
2907
+ suggest = "max_percent_unhealthy_replicas_per_partition"
2908
+ elif key == "maxPercentUnhealthyServices":
2909
+ suggest = "max_percent_unhealthy_services"
2910
+
2911
+ if suggest:
2912
+ pulumi.log.warn(f"Key '{key}' not found in ServiceTypeHealthPolicyResponse. Access the value via the '{suggest}' property getter instead.")
2913
+
2914
+ def __getitem__(self, key: str) -> Any:
2915
+ ServiceTypeHealthPolicyResponse.__key_warning(key)
2916
+ return super().__getitem__(key)
2917
+
2918
+ def get(self, key: str, default = None) -> Any:
2919
+ ServiceTypeHealthPolicyResponse.__key_warning(key)
2920
+ return super().get(key, default)
2921
+
2922
+ def __init__(__self__, *,
2923
+ max_percent_unhealthy_partitions_per_service: int,
2924
+ max_percent_unhealthy_replicas_per_partition: int,
2925
+ max_percent_unhealthy_services: int):
2926
+ """
2927
+ Represents the health policy used to evaluate the health of services belonging to a service type.
2928
+
2929
+ :param int max_percent_unhealthy_partitions_per_service: The maximum allowed percentage of unhealthy partitions per service.
2930
+
2931
+ The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error.
2932
+ If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning.
2933
+ The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service.
2934
+ The computation rounds up to tolerate one failure on small numbers of partitions.
2935
+ :param int max_percent_unhealthy_replicas_per_partition: The maximum allowed percentage of unhealthy replicas per partition.
2936
+
2937
+ The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error.
2938
+ If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning.
2939
+ The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition.
2940
+ The computation rounds up to tolerate one failure on small numbers of replicas.
2941
+ :param int max_percent_unhealthy_services: The maximum allowed percentage of unhealthy services.
2942
+
2943
+ The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error.
2944
+ If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning.
2945
+ This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type.
2946
+ The computation rounds up to tolerate one failure on small numbers of services.
2947
+ """
2948
+ pulumi.set(__self__, "max_percent_unhealthy_partitions_per_service", max_percent_unhealthy_partitions_per_service)
2949
+ pulumi.set(__self__, "max_percent_unhealthy_replicas_per_partition", max_percent_unhealthy_replicas_per_partition)
2950
+ pulumi.set(__self__, "max_percent_unhealthy_services", max_percent_unhealthy_services)
2951
+
2952
+ @property
2953
+ @pulumi.getter(name="maxPercentUnhealthyPartitionsPerService")
2954
+ def max_percent_unhealthy_partitions_per_service(self) -> int:
2955
+ """
2956
+ The maximum allowed percentage of unhealthy partitions per service.
2957
+
2958
+ The percentage represents the maximum tolerated percentage of partitions that can be unhealthy before the service is considered in error.
2959
+ If the percentage is respected but there is at least one unhealthy partition, the health is evaluated as Warning.
2960
+ The percentage is calculated by dividing the number of unhealthy partitions over the total number of partitions in the service.
2961
+ The computation rounds up to tolerate one failure on small numbers of partitions.
2962
+ """
2963
+ return pulumi.get(self, "max_percent_unhealthy_partitions_per_service")
2964
+
2965
+ @property
2966
+ @pulumi.getter(name="maxPercentUnhealthyReplicasPerPartition")
2967
+ def max_percent_unhealthy_replicas_per_partition(self) -> int:
2968
+ """
2969
+ The maximum allowed percentage of unhealthy replicas per partition.
2970
+
2971
+ The percentage represents the maximum tolerated percentage of replicas that can be unhealthy before the partition is considered in error.
2972
+ If the percentage is respected but there is at least one unhealthy replica, the health is evaluated as Warning.
2973
+ The percentage is calculated by dividing the number of unhealthy replicas over the total number of replicas in the partition.
2974
+ The computation rounds up to tolerate one failure on small numbers of replicas.
2975
+ """
2976
+ return pulumi.get(self, "max_percent_unhealthy_replicas_per_partition")
2977
+
2978
+ @property
2979
+ @pulumi.getter(name="maxPercentUnhealthyServices")
2980
+ def max_percent_unhealthy_services(self) -> int:
2981
+ """
2982
+ The maximum allowed percentage of unhealthy services.
2983
+
2984
+ The percentage represents the maximum tolerated percentage of services that can be unhealthy before the application is considered in error.
2985
+ If the percentage is respected but there is at least one unhealthy service, the health is evaluated as Warning.
2986
+ This is calculated by dividing the number of unhealthy services of the specific service type over the total number of services of the specific service type.
2987
+ The computation rounds up to tolerate one failure on small numbers of services.
2988
+ """
2989
+ return pulumi.get(self, "max_percent_unhealthy_services")
2990
+
2991
+
2992
+ @pulumi.output_type
2993
+ class SettingsParameterDescriptionResponse(dict):
2994
+ """
2995
+ Describes a parameter in fabric settings of the cluster.
2996
+ """
2997
+ def __init__(__self__, *,
2998
+ name: str,
2999
+ value: str):
3000
+ """
3001
+ Describes a parameter in fabric settings of the cluster.
3002
+ :param str name: The parameter name of fabric setting.
3003
+ :param str value: The parameter value of fabric setting.
3004
+ """
3005
+ pulumi.set(__self__, "name", name)
3006
+ pulumi.set(__self__, "value", value)
3007
+
3008
+ @property
3009
+ @pulumi.getter
3010
+ def name(self) -> str:
3011
+ """
3012
+ The parameter name of fabric setting.
3013
+ """
3014
+ return pulumi.get(self, "name")
3015
+
3016
+ @property
3017
+ @pulumi.getter
3018
+ def value(self) -> str:
3019
+ """
3020
+ The parameter value of fabric setting.
3021
+ """
3022
+ return pulumi.get(self, "value")
3023
+
3024
+
3025
+ @pulumi.output_type
3026
+ class SettingsSectionDescriptionResponse(dict):
3027
+ """
3028
+ Describes a section in the fabric settings of the cluster.
3029
+ """
3030
+ def __init__(__self__, *,
3031
+ name: str,
3032
+ parameters: Sequence['outputs.SettingsParameterDescriptionResponse']):
3033
+ """
3034
+ Describes a section in the fabric settings of the cluster.
3035
+ :param str name: The section name of the fabric settings.
3036
+ :param Sequence['SettingsParameterDescriptionResponse'] parameters: The collection of parameters in the section.
3037
+ """
3038
+ pulumi.set(__self__, "name", name)
3039
+ pulumi.set(__self__, "parameters", parameters)
3040
+
3041
+ @property
3042
+ @pulumi.getter
3043
+ def name(self) -> str:
3044
+ """
3045
+ The section name of the fabric settings.
3046
+ """
3047
+ return pulumi.get(self, "name")
3048
+
3049
+ @property
3050
+ @pulumi.getter
3051
+ def parameters(self) -> Sequence['outputs.SettingsParameterDescriptionResponse']:
3052
+ """
3053
+ The collection of parameters in the section.
3054
+ """
3055
+ return pulumi.get(self, "parameters")
3056
+
3057
+
3058
+ @pulumi.output_type
3059
+ class SingletonPartitionSchemeResponse(dict):
3060
+ """
3061
+ Describes the partition scheme of a singleton-partitioned, or non-partitioned service.
3062
+ """
3063
+ @staticmethod
3064
+ def __key_warning(key: str):
3065
+ suggest = None
3066
+ if key == "partitionScheme":
3067
+ suggest = "partition_scheme"
3068
+
3069
+ if suggest:
3070
+ pulumi.log.warn(f"Key '{key}' not found in SingletonPartitionSchemeResponse. Access the value via the '{suggest}' property getter instead.")
3071
+
3072
+ def __getitem__(self, key: str) -> Any:
3073
+ SingletonPartitionSchemeResponse.__key_warning(key)
3074
+ return super().__getitem__(key)
3075
+
3076
+ def get(self, key: str, default = None) -> Any:
3077
+ SingletonPartitionSchemeResponse.__key_warning(key)
3078
+ return super().get(key, default)
3079
+
3080
+ def __init__(__self__, *,
3081
+ partition_scheme: str):
3082
+ """
3083
+ Describes the partition scheme of a singleton-partitioned, or non-partitioned service.
3084
+ :param str partition_scheme: Enumerates the ways that a service can be partitioned.
3085
+ Expected value is 'Singleton'.
3086
+ """
3087
+ pulumi.set(__self__, "partition_scheme", 'Singleton')
3088
+
3089
+ @property
3090
+ @pulumi.getter(name="partitionScheme")
3091
+ def partition_scheme(self) -> str:
3092
+ """
3093
+ Enumerates the ways that a service can be partitioned.
3094
+ Expected value is 'Singleton'.
3095
+ """
3096
+ return pulumi.get(self, "partition_scheme")
3097
+
3098
+
3099
+ @pulumi.output_type
3100
+ class SkuResponse(dict):
3101
+ """
3102
+ Service Fabric managed cluster Sku definition
3103
+ """
3104
+ def __init__(__self__, *,
3105
+ name: str):
3106
+ """
3107
+ Service Fabric managed cluster Sku definition
3108
+ :param str name: Sku Name.
3109
+ """
3110
+ pulumi.set(__self__, "name", name)
3111
+
3112
+ @property
3113
+ @pulumi.getter
3114
+ def name(self) -> str:
3115
+ """
3116
+ Sku Name.
3117
+ """
3118
+ return pulumi.get(self, "name")
3119
+
3120
+
3121
+ @pulumi.output_type
3122
+ class StatefulServicePropertiesResponse(dict):
3123
+ """
3124
+ The properties of a stateful service resource.
3125
+ """
3126
+ @staticmethod
3127
+ def __key_warning(key: str):
3128
+ suggest = None
3129
+ if key == "partitionDescription":
3130
+ suggest = "partition_description"
3131
+ elif key == "provisioningState":
3132
+ suggest = "provisioning_state"
3133
+ elif key == "serviceKind":
3134
+ suggest = "service_kind"
3135
+ elif key == "serviceTypeName":
3136
+ suggest = "service_type_name"
3137
+ elif key == "correlationScheme":
3138
+ suggest = "correlation_scheme"
3139
+ elif key == "defaultMoveCost":
3140
+ suggest = "default_move_cost"
3141
+ elif key == "hasPersistedState":
3142
+ suggest = "has_persisted_state"
3143
+ elif key == "minReplicaSetSize":
3144
+ suggest = "min_replica_set_size"
3145
+ elif key == "placementConstraints":
3146
+ suggest = "placement_constraints"
3147
+ elif key == "quorumLossWaitDuration":
3148
+ suggest = "quorum_loss_wait_duration"
3149
+ elif key == "replicaRestartWaitDuration":
3150
+ suggest = "replica_restart_wait_duration"
3151
+ elif key == "scalingPolicies":
3152
+ suggest = "scaling_policies"
3153
+ elif key == "serviceDnsName":
3154
+ suggest = "service_dns_name"
3155
+ elif key == "serviceLoadMetrics":
3156
+ suggest = "service_load_metrics"
3157
+ elif key == "servicePackageActivationMode":
3158
+ suggest = "service_package_activation_mode"
3159
+ elif key == "servicePlacementPolicies":
3160
+ suggest = "service_placement_policies"
3161
+ elif key == "servicePlacementTimeLimit":
3162
+ suggest = "service_placement_time_limit"
3163
+ elif key == "standByReplicaKeepDuration":
3164
+ suggest = "stand_by_replica_keep_duration"
3165
+ elif key == "targetReplicaSetSize":
3166
+ suggest = "target_replica_set_size"
3167
+
3168
+ if suggest:
3169
+ pulumi.log.warn(f"Key '{key}' not found in StatefulServicePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
3170
+
3171
+ def __getitem__(self, key: str) -> Any:
3172
+ StatefulServicePropertiesResponse.__key_warning(key)
3173
+ return super().__getitem__(key)
3174
+
3175
+ def get(self, key: str, default = None) -> Any:
3176
+ StatefulServicePropertiesResponse.__key_warning(key)
3177
+ return super().get(key, default)
3178
+
3179
+ def __init__(__self__, *,
3180
+ partition_description: Any,
3181
+ provisioning_state: str,
3182
+ service_kind: str,
3183
+ service_type_name: str,
3184
+ correlation_scheme: Optional[Sequence['outputs.ServiceCorrelationResponse']] = None,
3185
+ default_move_cost: Optional[str] = None,
3186
+ has_persisted_state: Optional[bool] = None,
3187
+ min_replica_set_size: Optional[int] = None,
3188
+ placement_constraints: Optional[str] = None,
3189
+ quorum_loss_wait_duration: Optional[str] = None,
3190
+ replica_restart_wait_duration: Optional[str] = None,
3191
+ scaling_policies: Optional[Sequence['outputs.ScalingPolicyResponse']] = None,
3192
+ service_dns_name: Optional[str] = None,
3193
+ service_load_metrics: Optional[Sequence['outputs.ServiceLoadMetricResponse']] = None,
3194
+ service_package_activation_mode: Optional[str] = None,
3195
+ service_placement_policies: Optional[Sequence[Any]] = None,
3196
+ service_placement_time_limit: Optional[str] = None,
3197
+ stand_by_replica_keep_duration: Optional[str] = None,
3198
+ target_replica_set_size: Optional[int] = None):
3199
+ """
3200
+ The properties of a stateful service resource.
3201
+ :param Union['NamedPartitionSchemeResponse', 'SingletonPartitionSchemeResponse', 'UniformInt64RangePartitionSchemeResponse'] partition_description: Describes how the service is partitioned.
3202
+ :param str provisioning_state: The current deployment or provisioning state, which only appears in the response
3203
+ :param str service_kind: The kind of service (Stateless or Stateful).
3204
+ Expected value is 'Stateful'.
3205
+ :param str service_type_name: The name of the service type
3206
+ :param Sequence['ServiceCorrelationResponse'] correlation_scheme: A list that describes the correlation of the service with other services.
3207
+ :param str default_move_cost: Specifies the move cost for the service.
3208
+ :param bool has_persisted_state: A flag indicating whether this is a persistent service which stores states on the local disk. If it is then the value of this property is true, if not it is false.
3209
+ :param int min_replica_set_size: The minimum replica set size as a number.
3210
+ :param str placement_constraints: The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".
3211
+ :param str quorum_loss_wait_duration: The maximum duration for which a partition is allowed to be in a state of quorum loss, represented in ISO 8601 format "hh:mm:ss".
3212
+ :param str replica_restart_wait_duration: The duration between when a replica goes down and when a new replica is created, represented in ISO 8601 format "hh:mm:ss".
3213
+ :param Sequence['ScalingPolicyResponse'] scaling_policies: Scaling policies for this service.
3214
+ :param str service_dns_name: Dns name used for the service. If this is specified, then the DNS name can be used to return the IP addresses of service endpoints for application layer protocols (e.g., HTTP).
3215
+ When updating serviceDnsName, old name may be temporarily resolvable. However, rely on new name.
3216
+ When removing serviceDnsName, removed name may temporarily be resolvable. Do not rely on the name being unresolvable.
3217
+ :param Sequence['ServiceLoadMetricResponse'] service_load_metrics: The service load metrics is given as an array of ServiceLoadMetric objects.
3218
+ :param str service_package_activation_mode: The activation Mode of the service package
3219
+ :param Sequence[Union['ServicePlacementInvalidDomainPolicyResponse', 'ServicePlacementNonPartiallyPlaceServicePolicyResponse', 'ServicePlacementPreferPrimaryDomainPolicyResponse', 'ServicePlacementRequireDomainDistributionPolicyResponse', 'ServicePlacementRequiredDomainPolicyResponse']] service_placement_policies: A list that describes the correlation of the service with other services.
3220
+ :param str service_placement_time_limit: The duration for which replicas can stay InBuild before reporting that build is stuck, represented in ISO 8601 format "hh:mm:ss".
3221
+ :param str stand_by_replica_keep_duration: The definition on how long StandBy replicas should be maintained before being removed, represented in ISO 8601 format "hh:mm:ss".
3222
+ :param int target_replica_set_size: The target replica set size as a number.
3223
+ """
3224
+ pulumi.set(__self__, "partition_description", partition_description)
3225
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
3226
+ pulumi.set(__self__, "service_kind", 'Stateful')
3227
+ pulumi.set(__self__, "service_type_name", service_type_name)
3228
+ if correlation_scheme is not None:
3229
+ pulumi.set(__self__, "correlation_scheme", correlation_scheme)
3230
+ if default_move_cost is not None:
3231
+ pulumi.set(__self__, "default_move_cost", default_move_cost)
3232
+ if has_persisted_state is not None:
3233
+ pulumi.set(__self__, "has_persisted_state", has_persisted_state)
3234
+ if min_replica_set_size is not None:
3235
+ pulumi.set(__self__, "min_replica_set_size", min_replica_set_size)
3236
+ if placement_constraints is not None:
3237
+ pulumi.set(__self__, "placement_constraints", placement_constraints)
3238
+ if quorum_loss_wait_duration is not None:
3239
+ pulumi.set(__self__, "quorum_loss_wait_duration", quorum_loss_wait_duration)
3240
+ if replica_restart_wait_duration is not None:
3241
+ pulumi.set(__self__, "replica_restart_wait_duration", replica_restart_wait_duration)
3242
+ if scaling_policies is not None:
3243
+ pulumi.set(__self__, "scaling_policies", scaling_policies)
3244
+ if service_dns_name is not None:
3245
+ pulumi.set(__self__, "service_dns_name", service_dns_name)
3246
+ if service_load_metrics is not None:
3247
+ pulumi.set(__self__, "service_load_metrics", service_load_metrics)
3248
+ if service_package_activation_mode is not None:
3249
+ pulumi.set(__self__, "service_package_activation_mode", service_package_activation_mode)
3250
+ if service_placement_policies is not None:
3251
+ pulumi.set(__self__, "service_placement_policies", service_placement_policies)
3252
+ if service_placement_time_limit is not None:
3253
+ pulumi.set(__self__, "service_placement_time_limit", service_placement_time_limit)
3254
+ if stand_by_replica_keep_duration is not None:
3255
+ pulumi.set(__self__, "stand_by_replica_keep_duration", stand_by_replica_keep_duration)
3256
+ if target_replica_set_size is not None:
3257
+ pulumi.set(__self__, "target_replica_set_size", target_replica_set_size)
3258
+
3259
+ @property
3260
+ @pulumi.getter(name="partitionDescription")
3261
+ def partition_description(self) -> Any:
3262
+ """
3263
+ Describes how the service is partitioned.
3264
+ """
3265
+ return pulumi.get(self, "partition_description")
3266
+
3267
+ @property
3268
+ @pulumi.getter(name="provisioningState")
3269
+ def provisioning_state(self) -> str:
3270
+ """
3271
+ The current deployment or provisioning state, which only appears in the response
3272
+ """
3273
+ return pulumi.get(self, "provisioning_state")
3274
+
3275
+ @property
3276
+ @pulumi.getter(name="serviceKind")
3277
+ def service_kind(self) -> str:
3278
+ """
3279
+ The kind of service (Stateless or Stateful).
3280
+ Expected value is 'Stateful'.
3281
+ """
3282
+ return pulumi.get(self, "service_kind")
3283
+
3284
+ @property
3285
+ @pulumi.getter(name="serviceTypeName")
3286
+ def service_type_name(self) -> str:
3287
+ """
3288
+ The name of the service type
3289
+ """
3290
+ return pulumi.get(self, "service_type_name")
3291
+
3292
+ @property
3293
+ @pulumi.getter(name="correlationScheme")
3294
+ def correlation_scheme(self) -> Optional[Sequence['outputs.ServiceCorrelationResponse']]:
3295
+ """
3296
+ A list that describes the correlation of the service with other services.
3297
+ """
3298
+ return pulumi.get(self, "correlation_scheme")
3299
+
3300
+ @property
3301
+ @pulumi.getter(name="defaultMoveCost")
3302
+ def default_move_cost(self) -> Optional[str]:
3303
+ """
3304
+ Specifies the move cost for the service.
3305
+ """
3306
+ return pulumi.get(self, "default_move_cost")
3307
+
3308
+ @property
3309
+ @pulumi.getter(name="hasPersistedState")
3310
+ def has_persisted_state(self) -> Optional[bool]:
3311
+ """
3312
+ A flag indicating whether this is a persistent service which stores states on the local disk. If it is then the value of this property is true, if not it is false.
3313
+ """
3314
+ return pulumi.get(self, "has_persisted_state")
3315
+
3316
+ @property
3317
+ @pulumi.getter(name="minReplicaSetSize")
3318
+ def min_replica_set_size(self) -> Optional[int]:
3319
+ """
3320
+ The minimum replica set size as a number.
3321
+ """
3322
+ return pulumi.get(self, "min_replica_set_size")
3323
+
3324
+ @property
3325
+ @pulumi.getter(name="placementConstraints")
3326
+ def placement_constraints(self) -> Optional[str]:
3327
+ """
3328
+ The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".
3329
+ """
3330
+ return pulumi.get(self, "placement_constraints")
3331
+
3332
+ @property
3333
+ @pulumi.getter(name="quorumLossWaitDuration")
3334
+ def quorum_loss_wait_duration(self) -> Optional[str]:
3335
+ """
3336
+ The maximum duration for which a partition is allowed to be in a state of quorum loss, represented in ISO 8601 format "hh:mm:ss".
3337
+ """
3338
+ return pulumi.get(self, "quorum_loss_wait_duration")
3339
+
3340
+ @property
3341
+ @pulumi.getter(name="replicaRestartWaitDuration")
3342
+ def replica_restart_wait_duration(self) -> Optional[str]:
3343
+ """
3344
+ The duration between when a replica goes down and when a new replica is created, represented in ISO 8601 format "hh:mm:ss".
3345
+ """
3346
+ return pulumi.get(self, "replica_restart_wait_duration")
3347
+
3348
+ @property
3349
+ @pulumi.getter(name="scalingPolicies")
3350
+ def scaling_policies(self) -> Optional[Sequence['outputs.ScalingPolicyResponse']]:
3351
+ """
3352
+ Scaling policies for this service.
3353
+ """
3354
+ return pulumi.get(self, "scaling_policies")
3355
+
3356
+ @property
3357
+ @pulumi.getter(name="serviceDnsName")
3358
+ def service_dns_name(self) -> Optional[str]:
3359
+ """
3360
+ Dns name used for the service. If this is specified, then the DNS name can be used to return the IP addresses of service endpoints for application layer protocols (e.g., HTTP).
3361
+ When updating serviceDnsName, old name may be temporarily resolvable. However, rely on new name.
3362
+ When removing serviceDnsName, removed name may temporarily be resolvable. Do not rely on the name being unresolvable.
3363
+ """
3364
+ return pulumi.get(self, "service_dns_name")
3365
+
3366
+ @property
3367
+ @pulumi.getter(name="serviceLoadMetrics")
3368
+ def service_load_metrics(self) -> Optional[Sequence['outputs.ServiceLoadMetricResponse']]:
3369
+ """
3370
+ The service load metrics is given as an array of ServiceLoadMetric objects.
3371
+ """
3372
+ return pulumi.get(self, "service_load_metrics")
3373
+
3374
+ @property
3375
+ @pulumi.getter(name="servicePackageActivationMode")
3376
+ def service_package_activation_mode(self) -> Optional[str]:
3377
+ """
3378
+ The activation Mode of the service package
3379
+ """
3380
+ return pulumi.get(self, "service_package_activation_mode")
3381
+
3382
+ @property
3383
+ @pulumi.getter(name="servicePlacementPolicies")
3384
+ def service_placement_policies(self) -> Optional[Sequence[Any]]:
3385
+ """
3386
+ A list that describes the correlation of the service with other services.
3387
+ """
3388
+ return pulumi.get(self, "service_placement_policies")
3389
+
3390
+ @property
3391
+ @pulumi.getter(name="servicePlacementTimeLimit")
3392
+ def service_placement_time_limit(self) -> Optional[str]:
3393
+ """
3394
+ The duration for which replicas can stay InBuild before reporting that build is stuck, represented in ISO 8601 format "hh:mm:ss".
3395
+ """
3396
+ return pulumi.get(self, "service_placement_time_limit")
3397
+
3398
+ @property
3399
+ @pulumi.getter(name="standByReplicaKeepDuration")
3400
+ def stand_by_replica_keep_duration(self) -> Optional[str]:
3401
+ """
3402
+ The definition on how long StandBy replicas should be maintained before being removed, represented in ISO 8601 format "hh:mm:ss".
3403
+ """
3404
+ return pulumi.get(self, "stand_by_replica_keep_duration")
3405
+
3406
+ @property
3407
+ @pulumi.getter(name="targetReplicaSetSize")
3408
+ def target_replica_set_size(self) -> Optional[int]:
3409
+ """
3410
+ The target replica set size as a number.
3411
+ """
3412
+ return pulumi.get(self, "target_replica_set_size")
3413
+
3414
+
3415
+ @pulumi.output_type
3416
+ class StatelessServicePropertiesResponse(dict):
3417
+ """
3418
+ The properties of a stateless service resource.
3419
+ """
3420
+ @staticmethod
3421
+ def __key_warning(key: str):
3422
+ suggest = None
3423
+ if key == "instanceCount":
3424
+ suggest = "instance_count"
3425
+ elif key == "partitionDescription":
3426
+ suggest = "partition_description"
3427
+ elif key == "provisioningState":
3428
+ suggest = "provisioning_state"
3429
+ elif key == "serviceKind":
3430
+ suggest = "service_kind"
3431
+ elif key == "serviceTypeName":
3432
+ suggest = "service_type_name"
3433
+ elif key == "correlationScheme":
3434
+ suggest = "correlation_scheme"
3435
+ elif key == "defaultMoveCost":
3436
+ suggest = "default_move_cost"
3437
+ elif key == "minInstanceCount":
3438
+ suggest = "min_instance_count"
3439
+ elif key == "minInstancePercentage":
3440
+ suggest = "min_instance_percentage"
3441
+ elif key == "placementConstraints":
3442
+ suggest = "placement_constraints"
3443
+ elif key == "scalingPolicies":
3444
+ suggest = "scaling_policies"
3445
+ elif key == "serviceDnsName":
3446
+ suggest = "service_dns_name"
3447
+ elif key == "serviceLoadMetrics":
3448
+ suggest = "service_load_metrics"
3449
+ elif key == "servicePackageActivationMode":
3450
+ suggest = "service_package_activation_mode"
3451
+ elif key == "servicePlacementPolicies":
3452
+ suggest = "service_placement_policies"
3453
+
3454
+ if suggest:
3455
+ pulumi.log.warn(f"Key '{key}' not found in StatelessServicePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
3456
+
3457
+ def __getitem__(self, key: str) -> Any:
3458
+ StatelessServicePropertiesResponse.__key_warning(key)
3459
+ return super().__getitem__(key)
3460
+
3461
+ def get(self, key: str, default = None) -> Any:
3462
+ StatelessServicePropertiesResponse.__key_warning(key)
3463
+ return super().get(key, default)
3464
+
3465
+ def __init__(__self__, *,
3466
+ instance_count: int,
3467
+ partition_description: Any,
3468
+ provisioning_state: str,
3469
+ service_kind: str,
3470
+ service_type_name: str,
3471
+ correlation_scheme: Optional[Sequence['outputs.ServiceCorrelationResponse']] = None,
3472
+ default_move_cost: Optional[str] = None,
3473
+ min_instance_count: Optional[int] = None,
3474
+ min_instance_percentage: Optional[int] = None,
3475
+ placement_constraints: Optional[str] = None,
3476
+ scaling_policies: Optional[Sequence['outputs.ScalingPolicyResponse']] = None,
3477
+ service_dns_name: Optional[str] = None,
3478
+ service_load_metrics: Optional[Sequence['outputs.ServiceLoadMetricResponse']] = None,
3479
+ service_package_activation_mode: Optional[str] = None,
3480
+ service_placement_policies: Optional[Sequence[Any]] = None):
3481
+ """
3482
+ The properties of a stateless service resource.
3483
+ :param int instance_count: The instance count.
3484
+ :param Union['NamedPartitionSchemeResponse', 'SingletonPartitionSchemeResponse', 'UniformInt64RangePartitionSchemeResponse'] partition_description: Describes how the service is partitioned.
3485
+ :param str provisioning_state: The current deployment or provisioning state, which only appears in the response
3486
+ :param str service_kind: The kind of service (Stateless or Stateful).
3487
+ Expected value is 'Stateless'.
3488
+ :param str service_type_name: The name of the service type
3489
+ :param Sequence['ServiceCorrelationResponse'] correlation_scheme: A list that describes the correlation of the service with other services.
3490
+ :param str default_move_cost: Specifies the move cost for the service.
3491
+ :param int min_instance_count: MinInstanceCount is the minimum number of instances that must be up to meet the EnsureAvailability safety check during operations like upgrade or deactivate node. The actual number that is used is max( MinInstanceCount, ceil( MinInstancePercentage/100.0 * InstanceCount) ). Note, if InstanceCount is set to -1, during MinInstanceCount computation -1 is first converted into the number of nodes on which the instances are allowed to be placed according to the placement constraints on the service.
3492
+ :param int min_instance_percentage: MinInstancePercentage is the minimum percentage of InstanceCount that must be up to meet the EnsureAvailability safety check during operations like upgrade or deactivate node. The actual number that is used is max( MinInstanceCount, ceil( MinInstancePercentage/100.0 * InstanceCount) ). Note, if InstanceCount is set to -1, during MinInstancePercentage computation, -1 is first converted into the number of nodes on which the instances are allowed to be placed according to the placement constraints on the service.
3493
+ :param str placement_constraints: The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".
3494
+ :param Sequence['ScalingPolicyResponse'] scaling_policies: Scaling policies for this service.
3495
+ :param str service_dns_name: Dns name used for the service. If this is specified, then the DNS name can be used to return the IP addresses of service endpoints for application layer protocols (e.g., HTTP).
3496
+ When updating serviceDnsName, old name may be temporarily resolvable. However, rely on new name.
3497
+ When removing serviceDnsName, removed name may temporarily be resolvable. Do not rely on the name being unresolvable.
3498
+ :param Sequence['ServiceLoadMetricResponse'] service_load_metrics: The service load metrics is given as an array of ServiceLoadMetric objects.
3499
+ :param str service_package_activation_mode: The activation Mode of the service package
3500
+ :param Sequence[Union['ServicePlacementInvalidDomainPolicyResponse', 'ServicePlacementNonPartiallyPlaceServicePolicyResponse', 'ServicePlacementPreferPrimaryDomainPolicyResponse', 'ServicePlacementRequireDomainDistributionPolicyResponse', 'ServicePlacementRequiredDomainPolicyResponse']] service_placement_policies: A list that describes the correlation of the service with other services.
3501
+ """
3502
+ pulumi.set(__self__, "instance_count", instance_count)
3503
+ pulumi.set(__self__, "partition_description", partition_description)
3504
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
3505
+ pulumi.set(__self__, "service_kind", 'Stateless')
3506
+ pulumi.set(__self__, "service_type_name", service_type_name)
3507
+ if correlation_scheme is not None:
3508
+ pulumi.set(__self__, "correlation_scheme", correlation_scheme)
3509
+ if default_move_cost is not None:
3510
+ pulumi.set(__self__, "default_move_cost", default_move_cost)
3511
+ if min_instance_count is not None:
3512
+ pulumi.set(__self__, "min_instance_count", min_instance_count)
3513
+ if min_instance_percentage is not None:
3514
+ pulumi.set(__self__, "min_instance_percentage", min_instance_percentage)
3515
+ if placement_constraints is not None:
3516
+ pulumi.set(__self__, "placement_constraints", placement_constraints)
3517
+ if scaling_policies is not None:
3518
+ pulumi.set(__self__, "scaling_policies", scaling_policies)
3519
+ if service_dns_name is not None:
3520
+ pulumi.set(__self__, "service_dns_name", service_dns_name)
3521
+ if service_load_metrics is not None:
3522
+ pulumi.set(__self__, "service_load_metrics", service_load_metrics)
3523
+ if service_package_activation_mode is not None:
3524
+ pulumi.set(__self__, "service_package_activation_mode", service_package_activation_mode)
3525
+ if service_placement_policies is not None:
3526
+ pulumi.set(__self__, "service_placement_policies", service_placement_policies)
3527
+
3528
+ @property
3529
+ @pulumi.getter(name="instanceCount")
3530
+ def instance_count(self) -> int:
3531
+ """
3532
+ The instance count.
3533
+ """
3534
+ return pulumi.get(self, "instance_count")
3535
+
3536
+ @property
3537
+ @pulumi.getter(name="partitionDescription")
3538
+ def partition_description(self) -> Any:
3539
+ """
3540
+ Describes how the service is partitioned.
3541
+ """
3542
+ return pulumi.get(self, "partition_description")
3543
+
3544
+ @property
3545
+ @pulumi.getter(name="provisioningState")
3546
+ def provisioning_state(self) -> str:
3547
+ """
3548
+ The current deployment or provisioning state, which only appears in the response
3549
+ """
3550
+ return pulumi.get(self, "provisioning_state")
3551
+
3552
+ @property
3553
+ @pulumi.getter(name="serviceKind")
3554
+ def service_kind(self) -> str:
3555
+ """
3556
+ The kind of service (Stateless or Stateful).
3557
+ Expected value is 'Stateless'.
3558
+ """
3559
+ return pulumi.get(self, "service_kind")
3560
+
3561
+ @property
3562
+ @pulumi.getter(name="serviceTypeName")
3563
+ def service_type_name(self) -> str:
3564
+ """
3565
+ The name of the service type
3566
+ """
3567
+ return pulumi.get(self, "service_type_name")
3568
+
3569
+ @property
3570
+ @pulumi.getter(name="correlationScheme")
3571
+ def correlation_scheme(self) -> Optional[Sequence['outputs.ServiceCorrelationResponse']]:
3572
+ """
3573
+ A list that describes the correlation of the service with other services.
3574
+ """
3575
+ return pulumi.get(self, "correlation_scheme")
3576
+
3577
+ @property
3578
+ @pulumi.getter(name="defaultMoveCost")
3579
+ def default_move_cost(self) -> Optional[str]:
3580
+ """
3581
+ Specifies the move cost for the service.
3582
+ """
3583
+ return pulumi.get(self, "default_move_cost")
3584
+
3585
+ @property
3586
+ @pulumi.getter(name="minInstanceCount")
3587
+ def min_instance_count(self) -> Optional[int]:
3588
+ """
3589
+ MinInstanceCount is the minimum number of instances that must be up to meet the EnsureAvailability safety check during operations like upgrade or deactivate node. The actual number that is used is max( MinInstanceCount, ceil( MinInstancePercentage/100.0 * InstanceCount) ). Note, if InstanceCount is set to -1, during MinInstanceCount computation -1 is first converted into the number of nodes on which the instances are allowed to be placed according to the placement constraints on the service.
3590
+ """
3591
+ return pulumi.get(self, "min_instance_count")
3592
+
3593
+ @property
3594
+ @pulumi.getter(name="minInstancePercentage")
3595
+ def min_instance_percentage(self) -> Optional[int]:
3596
+ """
3597
+ MinInstancePercentage is the minimum percentage of InstanceCount that must be up to meet the EnsureAvailability safety check during operations like upgrade or deactivate node. The actual number that is used is max( MinInstanceCount, ceil( MinInstancePercentage/100.0 * InstanceCount) ). Note, if InstanceCount is set to -1, during MinInstancePercentage computation, -1 is first converted into the number of nodes on which the instances are allowed to be placed according to the placement constraints on the service.
3598
+ """
3599
+ return pulumi.get(self, "min_instance_percentage")
3600
+
3601
+ @property
3602
+ @pulumi.getter(name="placementConstraints")
3603
+ def placement_constraints(self) -> Optional[str]:
3604
+ """
3605
+ The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".
3606
+ """
3607
+ return pulumi.get(self, "placement_constraints")
3608
+
3609
+ @property
3610
+ @pulumi.getter(name="scalingPolicies")
3611
+ def scaling_policies(self) -> Optional[Sequence['outputs.ScalingPolicyResponse']]:
3612
+ """
3613
+ Scaling policies for this service.
3614
+ """
3615
+ return pulumi.get(self, "scaling_policies")
3616
+
3617
+ @property
3618
+ @pulumi.getter(name="serviceDnsName")
3619
+ def service_dns_name(self) -> Optional[str]:
3620
+ """
3621
+ Dns name used for the service. If this is specified, then the DNS name can be used to return the IP addresses of service endpoints for application layer protocols (e.g., HTTP).
3622
+ When updating serviceDnsName, old name may be temporarily resolvable. However, rely on new name.
3623
+ When removing serviceDnsName, removed name may temporarily be resolvable. Do not rely on the name being unresolvable.
3624
+ """
3625
+ return pulumi.get(self, "service_dns_name")
3626
+
3627
+ @property
3628
+ @pulumi.getter(name="serviceLoadMetrics")
3629
+ def service_load_metrics(self) -> Optional[Sequence['outputs.ServiceLoadMetricResponse']]:
3630
+ """
3631
+ The service load metrics is given as an array of ServiceLoadMetric objects.
3632
+ """
3633
+ return pulumi.get(self, "service_load_metrics")
3634
+
3635
+ @property
3636
+ @pulumi.getter(name="servicePackageActivationMode")
3637
+ def service_package_activation_mode(self) -> Optional[str]:
3638
+ """
3639
+ The activation Mode of the service package
3640
+ """
3641
+ return pulumi.get(self, "service_package_activation_mode")
3642
+
3643
+ @property
3644
+ @pulumi.getter(name="servicePlacementPolicies")
3645
+ def service_placement_policies(self) -> Optional[Sequence[Any]]:
3646
+ """
3647
+ A list that describes the correlation of the service with other services.
3648
+ """
3649
+ return pulumi.get(self, "service_placement_policies")
3650
+
3651
+
3652
+ @pulumi.output_type
3653
+ class SubResourceResponse(dict):
3654
+ """
3655
+ Azure resource identifier.
3656
+ """
3657
+ def __init__(__self__, *,
3658
+ id: Optional[str] = None):
3659
+ """
3660
+ Azure resource identifier.
3661
+ :param str id: Azure resource identifier.
3662
+ """
3663
+ if id is not None:
3664
+ pulumi.set(__self__, "id", id)
3665
+
3666
+ @property
3667
+ @pulumi.getter
3668
+ def id(self) -> Optional[str]:
3669
+ """
3670
+ Azure resource identifier.
3671
+ """
3672
+ return pulumi.get(self, "id")
3673
+
3674
+
3675
+ @pulumi.output_type
3676
+ class SubnetResponse(dict):
3677
+ """
3678
+ Describes a Subnet.
3679
+ """
3680
+ @staticmethod
3681
+ def __key_warning(key: str):
3682
+ suggest = None
3683
+ if key == "enableIpv6":
3684
+ suggest = "enable_ipv6"
3685
+ elif key == "networkSecurityGroupId":
3686
+ suggest = "network_security_group_id"
3687
+ elif key == "privateEndpointNetworkPolicies":
3688
+ suggest = "private_endpoint_network_policies"
3689
+ elif key == "privateLinkServiceNetworkPolicies":
3690
+ suggest = "private_link_service_network_policies"
3691
+
3692
+ if suggest:
3693
+ pulumi.log.warn(f"Key '{key}' not found in SubnetResponse. Access the value via the '{suggest}' property getter instead.")
3694
+
3695
+ def __getitem__(self, key: str) -> Any:
3696
+ SubnetResponse.__key_warning(key)
3697
+ return super().__getitem__(key)
3698
+
3699
+ def get(self, key: str, default = None) -> Any:
3700
+ SubnetResponse.__key_warning(key)
3701
+ return super().get(key, default)
3702
+
3703
+ def __init__(__self__, *,
3704
+ name: str,
3705
+ enable_ipv6: Optional[bool] = None,
3706
+ network_security_group_id: Optional[str] = None,
3707
+ private_endpoint_network_policies: Optional[str] = None,
3708
+ private_link_service_network_policies: Optional[str] = None):
3709
+ """
3710
+ Describes a Subnet.
3711
+ :param str name: Subnet name.
3712
+ :param bool enable_ipv6: Indicates wether to enable Ipv6 or not. If not provided, it will take the same configuration as the cluster.
3713
+ :param str network_security_group_id: Full resource id for the network security group.
3714
+ :param str private_endpoint_network_policies: Enable or Disable apply network policies on private end point in the subnet.
3715
+ :param str private_link_service_network_policies: Enable or Disable apply network policies on private link service in the subnet.
3716
+ """
3717
+ pulumi.set(__self__, "name", name)
3718
+ if enable_ipv6 is not None:
3719
+ pulumi.set(__self__, "enable_ipv6", enable_ipv6)
3720
+ if network_security_group_id is not None:
3721
+ pulumi.set(__self__, "network_security_group_id", network_security_group_id)
3722
+ if private_endpoint_network_policies is not None:
3723
+ pulumi.set(__self__, "private_endpoint_network_policies", private_endpoint_network_policies)
3724
+ if private_link_service_network_policies is not None:
3725
+ pulumi.set(__self__, "private_link_service_network_policies", private_link_service_network_policies)
3726
+
3727
+ @property
3728
+ @pulumi.getter
3729
+ def name(self) -> str:
3730
+ """
3731
+ Subnet name.
3732
+ """
3733
+ return pulumi.get(self, "name")
3734
+
3735
+ @property
3736
+ @pulumi.getter(name="enableIpv6")
3737
+ def enable_ipv6(self) -> Optional[bool]:
3738
+ """
3739
+ Indicates wether to enable Ipv6 or not. If not provided, it will take the same configuration as the cluster.
3740
+ """
3741
+ return pulumi.get(self, "enable_ipv6")
3742
+
3743
+ @property
3744
+ @pulumi.getter(name="networkSecurityGroupId")
3745
+ def network_security_group_id(self) -> Optional[str]:
3746
+ """
3747
+ Full resource id for the network security group.
3748
+ """
3749
+ return pulumi.get(self, "network_security_group_id")
3750
+
3751
+ @property
3752
+ @pulumi.getter(name="privateEndpointNetworkPolicies")
3753
+ def private_endpoint_network_policies(self) -> Optional[str]:
3754
+ """
3755
+ Enable or Disable apply network policies on private end point in the subnet.
3756
+ """
3757
+ return pulumi.get(self, "private_endpoint_network_policies")
3758
+
3759
+ @property
3760
+ @pulumi.getter(name="privateLinkServiceNetworkPolicies")
3761
+ def private_link_service_network_policies(self) -> Optional[str]:
3762
+ """
3763
+ Enable or Disable apply network policies on private link service in the subnet.
3764
+ """
3765
+ return pulumi.get(self, "private_link_service_network_policies")
3766
+
3767
+
3768
+ @pulumi.output_type
3769
+ class SystemDataResponse(dict):
3770
+ """
3771
+ Metadata pertaining to creation and last modification of the resource.
3772
+ """
3773
+ @staticmethod
3774
+ def __key_warning(key: str):
3775
+ suggest = None
3776
+ if key == "createdAt":
3777
+ suggest = "created_at"
3778
+ elif key == "createdBy":
3779
+ suggest = "created_by"
3780
+ elif key == "createdByType":
3781
+ suggest = "created_by_type"
3782
+ elif key == "lastModifiedAt":
3783
+ suggest = "last_modified_at"
3784
+ elif key == "lastModifiedBy":
3785
+ suggest = "last_modified_by"
3786
+ elif key == "lastModifiedByType":
3787
+ suggest = "last_modified_by_type"
3788
+
3789
+ if suggest:
3790
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
3791
+
3792
+ def __getitem__(self, key: str) -> Any:
3793
+ SystemDataResponse.__key_warning(key)
3794
+ return super().__getitem__(key)
3795
+
3796
+ def get(self, key: str, default = None) -> Any:
3797
+ SystemDataResponse.__key_warning(key)
3798
+ return super().get(key, default)
3799
+
3800
+ def __init__(__self__, *,
3801
+ created_at: Optional[str] = None,
3802
+ created_by: Optional[str] = None,
3803
+ created_by_type: Optional[str] = None,
3804
+ last_modified_at: Optional[str] = None,
3805
+ last_modified_by: Optional[str] = None,
3806
+ last_modified_by_type: Optional[str] = None):
3807
+ """
3808
+ Metadata pertaining to creation and last modification of the resource.
3809
+ :param str created_at: The timestamp of resource creation (UTC).
3810
+ :param str created_by: The identity that created the resource.
3811
+ :param str created_by_type: The type of identity that created the resource.
3812
+ :param str last_modified_at: The timestamp of resource last modification (UTC).
3813
+ :param str last_modified_by: The identity that last modified the resource.
3814
+ :param str last_modified_by_type: The type of identity that last modified the resource.
3815
+ """
3816
+ if created_at is not None:
3817
+ pulumi.set(__self__, "created_at", created_at)
3818
+ if created_by is not None:
3819
+ pulumi.set(__self__, "created_by", created_by)
3820
+ if created_by_type is not None:
3821
+ pulumi.set(__self__, "created_by_type", created_by_type)
3822
+ if last_modified_at is not None:
3823
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
3824
+ if last_modified_by is not None:
3825
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
3826
+ if last_modified_by_type is not None:
3827
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
3828
+
3829
+ @property
3830
+ @pulumi.getter(name="createdAt")
3831
+ def created_at(self) -> Optional[str]:
3832
+ """
3833
+ The timestamp of resource creation (UTC).
3834
+ """
3835
+ return pulumi.get(self, "created_at")
3836
+
3837
+ @property
3838
+ @pulumi.getter(name="createdBy")
3839
+ def created_by(self) -> Optional[str]:
3840
+ """
3841
+ The identity that created the resource.
3842
+ """
3843
+ return pulumi.get(self, "created_by")
3844
+
3845
+ @property
3846
+ @pulumi.getter(name="createdByType")
3847
+ def created_by_type(self) -> Optional[str]:
3848
+ """
3849
+ The type of identity that created the resource.
3850
+ """
3851
+ return pulumi.get(self, "created_by_type")
3852
+
3853
+ @property
3854
+ @pulumi.getter(name="lastModifiedAt")
3855
+ def last_modified_at(self) -> Optional[str]:
3856
+ """
3857
+ The timestamp of resource last modification (UTC).
3858
+ """
3859
+ return pulumi.get(self, "last_modified_at")
3860
+
3861
+ @property
3862
+ @pulumi.getter(name="lastModifiedBy")
3863
+ def last_modified_by(self) -> Optional[str]:
3864
+ """
3865
+ The identity that last modified the resource.
3866
+ """
3867
+ return pulumi.get(self, "last_modified_by")
3868
+
3869
+ @property
3870
+ @pulumi.getter(name="lastModifiedByType")
3871
+ def last_modified_by_type(self) -> Optional[str]:
3872
+ """
3873
+ The type of identity that last modified the resource.
3874
+ """
3875
+ return pulumi.get(self, "last_modified_by_type")
3876
+
3877
+
3878
+ @pulumi.output_type
3879
+ class UniformInt64RangePartitionSchemeResponse(dict):
3880
+ """
3881
+ Describes a partitioning scheme where an integer range is allocated evenly across a number of partitions.
3882
+ """
3883
+ @staticmethod
3884
+ def __key_warning(key: str):
3885
+ suggest = None
3886
+ if key == "highKey":
3887
+ suggest = "high_key"
3888
+ elif key == "lowKey":
3889
+ suggest = "low_key"
3890
+ elif key == "partitionScheme":
3891
+ suggest = "partition_scheme"
3892
+
3893
+ if suggest:
3894
+ pulumi.log.warn(f"Key '{key}' not found in UniformInt64RangePartitionSchemeResponse. Access the value via the '{suggest}' property getter instead.")
3895
+
3896
+ def __getitem__(self, key: str) -> Any:
3897
+ UniformInt64RangePartitionSchemeResponse.__key_warning(key)
3898
+ return super().__getitem__(key)
3899
+
3900
+ def get(self, key: str, default = None) -> Any:
3901
+ UniformInt64RangePartitionSchemeResponse.__key_warning(key)
3902
+ return super().get(key, default)
3903
+
3904
+ def __init__(__self__, *,
3905
+ count: int,
3906
+ high_key: float,
3907
+ low_key: float,
3908
+ partition_scheme: str):
3909
+ """
3910
+ Describes a partitioning scheme where an integer range is allocated evenly across a number of partitions.
3911
+ :param int count: The number of partitions.
3912
+ :param float high_key: The upper bound of the partition key range that
3913
+ should be split between the partition ‘Count’
3914
+ :param float low_key: The lower bound of the partition key range that
3915
+ should be split between the partition ‘Count’
3916
+ :param str partition_scheme: Enumerates the ways that a service can be partitioned.
3917
+ Expected value is 'UniformInt64Range'.
3918
+ """
3919
+ pulumi.set(__self__, "count", count)
3920
+ pulumi.set(__self__, "high_key", high_key)
3921
+ pulumi.set(__self__, "low_key", low_key)
3922
+ pulumi.set(__self__, "partition_scheme", 'UniformInt64Range')
3923
+
3924
+ @property
3925
+ @pulumi.getter
3926
+ def count(self) -> int:
3927
+ """
3928
+ The number of partitions.
3929
+ """
3930
+ return pulumi.get(self, "count")
3931
+
3932
+ @property
3933
+ @pulumi.getter(name="highKey")
3934
+ def high_key(self) -> float:
3935
+ """
3936
+ The upper bound of the partition key range that
3937
+ should be split between the partition ‘Count’
3938
+ """
3939
+ return pulumi.get(self, "high_key")
3940
+
3941
+ @property
3942
+ @pulumi.getter(name="lowKey")
3943
+ def low_key(self) -> float:
3944
+ """
3945
+ The lower bound of the partition key range that
3946
+ should be split between the partition ‘Count’
3947
+ """
3948
+ return pulumi.get(self, "low_key")
3949
+
3950
+ @property
3951
+ @pulumi.getter(name="partitionScheme")
3952
+ def partition_scheme(self) -> str:
3953
+ """
3954
+ Enumerates the ways that a service can be partitioned.
3955
+ Expected value is 'UniformInt64Range'.
3956
+ """
3957
+ return pulumi.get(self, "partition_scheme")
3958
+
3959
+
3960
+ @pulumi.output_type
3961
+ class UserAssignedIdentityResponse(dict):
3962
+ @staticmethod
3963
+ def __key_warning(key: str):
3964
+ suggest = None
3965
+ if key == "clientId":
3966
+ suggest = "client_id"
3967
+ elif key == "principalId":
3968
+ suggest = "principal_id"
3969
+
3970
+ if suggest:
3971
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
3972
+
3973
+ def __getitem__(self, key: str) -> Any:
3974
+ UserAssignedIdentityResponse.__key_warning(key)
3975
+ return super().__getitem__(key)
3976
+
3977
+ def get(self, key: str, default = None) -> Any:
3978
+ UserAssignedIdentityResponse.__key_warning(key)
3979
+ return super().get(key, default)
3980
+
3981
+ def __init__(__self__, *,
3982
+ client_id: str,
3983
+ principal_id: str):
3984
+ """
3985
+ :param str client_id: The client id of user assigned identity.
3986
+ :param str principal_id: The principal id of user assigned identity.
3987
+ """
3988
+ pulumi.set(__self__, "client_id", client_id)
3989
+ pulumi.set(__self__, "principal_id", principal_id)
3990
+
3991
+ @property
3992
+ @pulumi.getter(name="clientId")
3993
+ def client_id(self) -> str:
3994
+ """
3995
+ The client id of user assigned identity.
3996
+ """
3997
+ return pulumi.get(self, "client_id")
3998
+
3999
+ @property
4000
+ @pulumi.getter(name="principalId")
4001
+ def principal_id(self) -> str:
4002
+ """
4003
+ The principal id of user assigned identity.
4004
+ """
4005
+ return pulumi.get(self, "principal_id")
4006
+
4007
+
4008
+ @pulumi.output_type
4009
+ class VMSSExtensionResponse(dict):
4010
+ """
4011
+ Specifies set of extensions that should be installed onto the virtual machines.
4012
+ """
4013
+ @staticmethod
4014
+ def __key_warning(key: str):
4015
+ suggest = None
4016
+ if key == "provisioningState":
4017
+ suggest = "provisioning_state"
4018
+ elif key == "typeHandlerVersion":
4019
+ suggest = "type_handler_version"
4020
+ elif key == "autoUpgradeMinorVersion":
4021
+ suggest = "auto_upgrade_minor_version"
4022
+ elif key == "enableAutomaticUpgrade":
4023
+ suggest = "enable_automatic_upgrade"
4024
+ elif key == "forceUpdateTag":
4025
+ suggest = "force_update_tag"
4026
+ elif key == "protectedSettings":
4027
+ suggest = "protected_settings"
4028
+ elif key == "provisionAfterExtensions":
4029
+ suggest = "provision_after_extensions"
4030
+ elif key == "setupOrder":
4031
+ suggest = "setup_order"
4032
+
4033
+ if suggest:
4034
+ pulumi.log.warn(f"Key '{key}' not found in VMSSExtensionResponse. Access the value via the '{suggest}' property getter instead.")
4035
+
4036
+ def __getitem__(self, key: str) -> Any:
4037
+ VMSSExtensionResponse.__key_warning(key)
4038
+ return super().__getitem__(key)
4039
+
4040
+ def get(self, key: str, default = None) -> Any:
4041
+ VMSSExtensionResponse.__key_warning(key)
4042
+ return super().get(key, default)
4043
+
4044
+ def __init__(__self__, *,
4045
+ name: str,
4046
+ provisioning_state: str,
4047
+ publisher: str,
4048
+ type: str,
4049
+ type_handler_version: str,
4050
+ auto_upgrade_minor_version: Optional[bool] = None,
4051
+ enable_automatic_upgrade: Optional[bool] = None,
4052
+ force_update_tag: Optional[str] = None,
4053
+ protected_settings: Optional[Any] = None,
4054
+ provision_after_extensions: Optional[Sequence[str]] = None,
4055
+ settings: Optional[Any] = None,
4056
+ setup_order: Optional[Sequence[str]] = None):
4057
+ """
4058
+ Specifies set of extensions that should be installed onto the virtual machines.
4059
+ :param str name: The name of the extension.
4060
+ :param str provisioning_state: The provisioning state, which only appears in the response.
4061
+ :param str publisher: The name of the extension handler publisher.
4062
+ :param str type: Specifies the type of the extension; an example is "CustomScriptExtension".
4063
+ :param str type_handler_version: Specifies the version of the script handler.
4064
+ :param bool auto_upgrade_minor_version: Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
4065
+ :param bool enable_automatic_upgrade: Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
4066
+ :param str force_update_tag: If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
4067
+ :param Any protected_settings: The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
4068
+ :param Sequence[str] provision_after_extensions: Collection of extension names after which this extension needs to be provisioned.
4069
+ :param Any settings: Json formatted public settings for the extension.
4070
+ :param Sequence[str] setup_order: Indicates the setup order for the extension.
4071
+ """
4072
+ pulumi.set(__self__, "name", name)
4073
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
4074
+ pulumi.set(__self__, "publisher", publisher)
4075
+ pulumi.set(__self__, "type", type)
4076
+ pulumi.set(__self__, "type_handler_version", type_handler_version)
4077
+ if auto_upgrade_minor_version is not None:
4078
+ pulumi.set(__self__, "auto_upgrade_minor_version", auto_upgrade_minor_version)
4079
+ if enable_automatic_upgrade is not None:
4080
+ pulumi.set(__self__, "enable_automatic_upgrade", enable_automatic_upgrade)
4081
+ if force_update_tag is not None:
4082
+ pulumi.set(__self__, "force_update_tag", force_update_tag)
4083
+ if protected_settings is not None:
4084
+ pulumi.set(__self__, "protected_settings", protected_settings)
4085
+ if provision_after_extensions is not None:
4086
+ pulumi.set(__self__, "provision_after_extensions", provision_after_extensions)
4087
+ if settings is not None:
4088
+ pulumi.set(__self__, "settings", settings)
4089
+ if setup_order is not None:
4090
+ pulumi.set(__self__, "setup_order", setup_order)
4091
+
4092
+ @property
4093
+ @pulumi.getter
4094
+ def name(self) -> str:
4095
+ """
4096
+ The name of the extension.
4097
+ """
4098
+ return pulumi.get(self, "name")
4099
+
4100
+ @property
4101
+ @pulumi.getter(name="provisioningState")
4102
+ def provisioning_state(self) -> str:
4103
+ """
4104
+ The provisioning state, which only appears in the response.
4105
+ """
4106
+ return pulumi.get(self, "provisioning_state")
4107
+
4108
+ @property
4109
+ @pulumi.getter
4110
+ def publisher(self) -> str:
4111
+ """
4112
+ The name of the extension handler publisher.
4113
+ """
4114
+ return pulumi.get(self, "publisher")
4115
+
4116
+ @property
4117
+ @pulumi.getter
4118
+ def type(self) -> str:
4119
+ """
4120
+ Specifies the type of the extension; an example is "CustomScriptExtension".
4121
+ """
4122
+ return pulumi.get(self, "type")
4123
+
4124
+ @property
4125
+ @pulumi.getter(name="typeHandlerVersion")
4126
+ def type_handler_version(self) -> str:
4127
+ """
4128
+ Specifies the version of the script handler.
4129
+ """
4130
+ return pulumi.get(self, "type_handler_version")
4131
+
4132
+ @property
4133
+ @pulumi.getter(name="autoUpgradeMinorVersion")
4134
+ def auto_upgrade_minor_version(self) -> Optional[bool]:
4135
+ """
4136
+ Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
4137
+ """
4138
+ return pulumi.get(self, "auto_upgrade_minor_version")
4139
+
4140
+ @property
4141
+ @pulumi.getter(name="enableAutomaticUpgrade")
4142
+ def enable_automatic_upgrade(self) -> Optional[bool]:
4143
+ """
4144
+ Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
4145
+ """
4146
+ return pulumi.get(self, "enable_automatic_upgrade")
4147
+
4148
+ @property
4149
+ @pulumi.getter(name="forceUpdateTag")
4150
+ def force_update_tag(self) -> Optional[str]:
4151
+ """
4152
+ If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.
4153
+ """
4154
+ return pulumi.get(self, "force_update_tag")
4155
+
4156
+ @property
4157
+ @pulumi.getter(name="protectedSettings")
4158
+ def protected_settings(self) -> Optional[Any]:
4159
+ """
4160
+ The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
4161
+ """
4162
+ return pulumi.get(self, "protected_settings")
4163
+
4164
+ @property
4165
+ @pulumi.getter(name="provisionAfterExtensions")
4166
+ def provision_after_extensions(self) -> Optional[Sequence[str]]:
4167
+ """
4168
+ Collection of extension names after which this extension needs to be provisioned.
4169
+ """
4170
+ return pulumi.get(self, "provision_after_extensions")
4171
+
4172
+ @property
4173
+ @pulumi.getter
4174
+ def settings(self) -> Optional[Any]:
4175
+ """
4176
+ Json formatted public settings for the extension.
4177
+ """
4178
+ return pulumi.get(self, "settings")
4179
+
4180
+ @property
4181
+ @pulumi.getter(name="setupOrder")
4182
+ def setup_order(self) -> Optional[Sequence[str]]:
4183
+ """
4184
+ Indicates the setup order for the extension.
4185
+ """
4186
+ return pulumi.get(self, "setup_order")
4187
+
4188
+
4189
+ @pulumi.output_type
4190
+ class VaultCertificateResponse(dict):
4191
+ """
4192
+ Describes a single certificate reference in a Key Vault, and where the certificate should reside on the VM.
4193
+ """
4194
+ @staticmethod
4195
+ def __key_warning(key: str):
4196
+ suggest = None
4197
+ if key == "certificateStore":
4198
+ suggest = "certificate_store"
4199
+ elif key == "certificateUrl":
4200
+ suggest = "certificate_url"
4201
+
4202
+ if suggest:
4203
+ pulumi.log.warn(f"Key '{key}' not found in VaultCertificateResponse. Access the value via the '{suggest}' property getter instead.")
4204
+
4205
+ def __getitem__(self, key: str) -> Any:
4206
+ VaultCertificateResponse.__key_warning(key)
4207
+ return super().__getitem__(key)
4208
+
4209
+ def get(self, key: str, default = None) -> Any:
4210
+ VaultCertificateResponse.__key_warning(key)
4211
+ return super().get(key, default)
4212
+
4213
+ def __init__(__self__, *,
4214
+ certificate_store: str,
4215
+ certificate_url: str):
4216
+ """
4217
+ Describes a single certificate reference in a Key Vault, and where the certificate should reside on the VM.
4218
+ :param str certificate_store: For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. <br><br>For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
4219
+ :param str certificate_url: This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the key vault](https://docs.microsoft.com/azure/key-vault/key-vault-get-started/#add).
4220
+ """
4221
+ pulumi.set(__self__, "certificate_store", certificate_store)
4222
+ pulumi.set(__self__, "certificate_url", certificate_url)
4223
+
4224
+ @property
4225
+ @pulumi.getter(name="certificateStore")
4226
+ def certificate_store(self) -> str:
4227
+ """
4228
+ For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. <br><br>For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
4229
+ """
4230
+ return pulumi.get(self, "certificate_store")
4231
+
4232
+ @property
4233
+ @pulumi.getter(name="certificateUrl")
4234
+ def certificate_url(self) -> str:
4235
+ """
4236
+ This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the key vault](https://docs.microsoft.com/azure/key-vault/key-vault-get-started/#add).
4237
+ """
4238
+ return pulumi.get(self, "certificate_url")
4239
+
4240
+
4241
+ @pulumi.output_type
4242
+ class VaultSecretGroupResponse(dict):
4243
+ """
4244
+ Specifies set of certificates that should be installed onto the virtual machines.
4245
+ """
4246
+ @staticmethod
4247
+ def __key_warning(key: str):
4248
+ suggest = None
4249
+ if key == "sourceVault":
4250
+ suggest = "source_vault"
4251
+ elif key == "vaultCertificates":
4252
+ suggest = "vault_certificates"
4253
+
4254
+ if suggest:
4255
+ pulumi.log.warn(f"Key '{key}' not found in VaultSecretGroupResponse. Access the value via the '{suggest}' property getter instead.")
4256
+
4257
+ def __getitem__(self, key: str) -> Any:
4258
+ VaultSecretGroupResponse.__key_warning(key)
4259
+ return super().__getitem__(key)
4260
+
4261
+ def get(self, key: str, default = None) -> Any:
4262
+ VaultSecretGroupResponse.__key_warning(key)
4263
+ return super().get(key, default)
4264
+
4265
+ def __init__(__self__, *,
4266
+ source_vault: 'outputs.SubResourceResponse',
4267
+ vault_certificates: Sequence['outputs.VaultCertificateResponse']):
4268
+ """
4269
+ Specifies set of certificates that should be installed onto the virtual machines.
4270
+ :param 'SubResourceResponse' source_vault: The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
4271
+ :param Sequence['VaultCertificateResponse'] vault_certificates: The list of key vault references in SourceVault which contain certificates.
4272
+ """
4273
+ pulumi.set(__self__, "source_vault", source_vault)
4274
+ pulumi.set(__self__, "vault_certificates", vault_certificates)
4275
+
4276
+ @property
4277
+ @pulumi.getter(name="sourceVault")
4278
+ def source_vault(self) -> 'outputs.SubResourceResponse':
4279
+ """
4280
+ The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
4281
+ """
4282
+ return pulumi.get(self, "source_vault")
4283
+
4284
+ @property
4285
+ @pulumi.getter(name="vaultCertificates")
4286
+ def vault_certificates(self) -> Sequence['outputs.VaultCertificateResponse']:
4287
+ """
4288
+ The list of key vault references in SourceVault which contain certificates.
4289
+ """
4290
+ return pulumi.get(self, "vault_certificates")
4291
+
4292
+
4293
+ @pulumi.output_type
4294
+ class VmApplicationResponse(dict):
4295
+ """
4296
+ Specifies the gallery application that should be made available to the underlying VMSS.
4297
+ """
4298
+ @staticmethod
4299
+ def __key_warning(key: str):
4300
+ suggest = None
4301
+ if key == "packageReferenceId":
4302
+ suggest = "package_reference_id"
4303
+ elif key == "configurationReference":
4304
+ suggest = "configuration_reference"
4305
+ elif key == "enableAutomaticUpgrade":
4306
+ suggest = "enable_automatic_upgrade"
4307
+ elif key == "treatFailureAsDeploymentFailure":
4308
+ suggest = "treat_failure_as_deployment_failure"
4309
+ elif key == "vmGalleryTags":
4310
+ suggest = "vm_gallery_tags"
4311
+
4312
+ if suggest:
4313
+ pulumi.log.warn(f"Key '{key}' not found in VmApplicationResponse. Access the value via the '{suggest}' property getter instead.")
4314
+
4315
+ def __getitem__(self, key: str) -> Any:
4316
+ VmApplicationResponse.__key_warning(key)
4317
+ return super().__getitem__(key)
4318
+
4319
+ def get(self, key: str, default = None) -> Any:
4320
+ VmApplicationResponse.__key_warning(key)
4321
+ return super().get(key, default)
4322
+
4323
+ def __init__(__self__, *,
4324
+ package_reference_id: str,
4325
+ configuration_reference: Optional[str] = None,
4326
+ enable_automatic_upgrade: Optional[bool] = None,
4327
+ order: Optional[int] = None,
4328
+ treat_failure_as_deployment_failure: Optional[bool] = None,
4329
+ vm_gallery_tags: Optional[str] = None):
4330
+ """
4331
+ Specifies the gallery application that should be made available to the underlying VMSS.
4332
+ :param str package_reference_id: Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}.
4333
+ :param str configuration_reference: Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided.
4334
+ :param bool enable_automatic_upgrade: If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the underlying VMSS.
4335
+ :param int order: Optional, Specifies the order in which the packages have to be installed.
4336
+ :param bool treat_failure_as_deployment_failure: Optional, If true, any failure for any operation in the VmApplication will fail the deployment.
4337
+ :param str vm_gallery_tags: Optional, Specifies a passthrough value for more generic context. Accepts a JSON-formatted string e.g. '{"Tag1":"Value1","Tag2":"Value2"}'.
4338
+ """
4339
+ pulumi.set(__self__, "package_reference_id", package_reference_id)
4340
+ if configuration_reference is not None:
4341
+ pulumi.set(__self__, "configuration_reference", configuration_reference)
4342
+ if enable_automatic_upgrade is not None:
4343
+ pulumi.set(__self__, "enable_automatic_upgrade", enable_automatic_upgrade)
4344
+ if order is not None:
4345
+ pulumi.set(__self__, "order", order)
4346
+ if treat_failure_as_deployment_failure is not None:
4347
+ pulumi.set(__self__, "treat_failure_as_deployment_failure", treat_failure_as_deployment_failure)
4348
+ if vm_gallery_tags is not None:
4349
+ pulumi.set(__self__, "vm_gallery_tags", vm_gallery_tags)
4350
+
4351
+ @property
4352
+ @pulumi.getter(name="packageReferenceId")
4353
+ def package_reference_id(self) -> str:
4354
+ """
4355
+ Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}.
4356
+ """
4357
+ return pulumi.get(self, "package_reference_id")
4358
+
4359
+ @property
4360
+ @pulumi.getter(name="configurationReference")
4361
+ def configuration_reference(self) -> Optional[str]:
4362
+ """
4363
+ Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided.
4364
+ """
4365
+ return pulumi.get(self, "configuration_reference")
4366
+
4367
+ @property
4368
+ @pulumi.getter(name="enableAutomaticUpgrade")
4369
+ def enable_automatic_upgrade(self) -> Optional[bool]:
4370
+ """
4371
+ If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the underlying VMSS.
4372
+ """
4373
+ return pulumi.get(self, "enable_automatic_upgrade")
4374
+
4375
+ @property
4376
+ @pulumi.getter
4377
+ def order(self) -> Optional[int]:
4378
+ """
4379
+ Optional, Specifies the order in which the packages have to be installed.
4380
+ """
4381
+ return pulumi.get(self, "order")
4382
+
4383
+ @property
4384
+ @pulumi.getter(name="treatFailureAsDeploymentFailure")
4385
+ def treat_failure_as_deployment_failure(self) -> Optional[bool]:
4386
+ """
4387
+ Optional, If true, any failure for any operation in the VmApplication will fail the deployment.
4388
+ """
4389
+ return pulumi.get(self, "treat_failure_as_deployment_failure")
4390
+
4391
+ @property
4392
+ @pulumi.getter(name="vmGalleryTags")
4393
+ def vm_gallery_tags(self) -> Optional[str]:
4394
+ """
4395
+ Optional, Specifies a passthrough value for more generic context. Accepts a JSON-formatted string e.g. '{"Tag1":"Value1","Tag2":"Value2"}'.
4396
+ """
4397
+ return pulumi.get(self, "vm_gallery_tags")
4398
+
4399
+
4400
+ @pulumi.output_type
4401
+ class VmImagePlanResponse(dict):
4402
+ """
4403
+ Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
4404
+ """
4405
+ @staticmethod
4406
+ def __key_warning(key: str):
4407
+ suggest = None
4408
+ if key == "promotionCode":
4409
+ suggest = "promotion_code"
4410
+
4411
+ if suggest:
4412
+ pulumi.log.warn(f"Key '{key}' not found in VmImagePlanResponse. Access the value via the '{suggest}' property getter instead.")
4413
+
4414
+ def __getitem__(self, key: str) -> Any:
4415
+ VmImagePlanResponse.__key_warning(key)
4416
+ return super().__getitem__(key)
4417
+
4418
+ def get(self, key: str, default = None) -> Any:
4419
+ VmImagePlanResponse.__key_warning(key)
4420
+ return super().get(key, default)
4421
+
4422
+ def __init__(__self__, *,
4423
+ name: Optional[str] = None,
4424
+ product: Optional[str] = None,
4425
+ promotion_code: Optional[str] = None,
4426
+ publisher: Optional[str] = None):
4427
+ """
4428
+ Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
4429
+ :param str name: The plan ID.
4430
+ :param str product: Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
4431
+ :param str promotion_code: The promotion code.
4432
+ :param str publisher: The publisher ID.
4433
+ """
4434
+ if name is not None:
4435
+ pulumi.set(__self__, "name", name)
4436
+ if product is not None:
4437
+ pulumi.set(__self__, "product", product)
4438
+ if promotion_code is not None:
4439
+ pulumi.set(__self__, "promotion_code", promotion_code)
4440
+ if publisher is not None:
4441
+ pulumi.set(__self__, "publisher", publisher)
4442
+
4443
+ @property
4444
+ @pulumi.getter
4445
+ def name(self) -> Optional[str]:
4446
+ """
4447
+ The plan ID.
4448
+ """
4449
+ return pulumi.get(self, "name")
4450
+
4451
+ @property
4452
+ @pulumi.getter
4453
+ def product(self) -> Optional[str]:
4454
+ """
4455
+ Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
4456
+ """
4457
+ return pulumi.get(self, "product")
4458
+
4459
+ @property
4460
+ @pulumi.getter(name="promotionCode")
4461
+ def promotion_code(self) -> Optional[str]:
4462
+ """
4463
+ The promotion code.
4464
+ """
4465
+ return pulumi.get(self, "promotion_code")
4466
+
4467
+ @property
4468
+ @pulumi.getter
4469
+ def publisher(self) -> Optional[str]:
4470
+ """
4471
+ The publisher ID.
4472
+ """
4473
+ return pulumi.get(self, "publisher")
4474
+
4475
+
4476
+ @pulumi.output_type
4477
+ class VmManagedIdentityResponse(dict):
4478
+ """
4479
+ Identities for the virtual machine scale set under the node type.
4480
+ """
4481
+ @staticmethod
4482
+ def __key_warning(key: str):
4483
+ suggest = None
4484
+ if key == "userAssignedIdentities":
4485
+ suggest = "user_assigned_identities"
4486
+
4487
+ if suggest:
4488
+ pulumi.log.warn(f"Key '{key}' not found in VmManagedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
4489
+
4490
+ def __getitem__(self, key: str) -> Any:
4491
+ VmManagedIdentityResponse.__key_warning(key)
4492
+ return super().__getitem__(key)
4493
+
4494
+ def get(self, key: str, default = None) -> Any:
4495
+ VmManagedIdentityResponse.__key_warning(key)
4496
+ return super().get(key, default)
4497
+
4498
+ def __init__(__self__, *,
4499
+ user_assigned_identities: Optional[Sequence[str]] = None):
4500
+ """
4501
+ Identities for the virtual machine scale set under the node type.
4502
+ :param Sequence[str] user_assigned_identities: The list of user identities associated with the virtual machine scale set under the node type. Each entry will be an ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
4503
+ """
4504
+ if user_assigned_identities is not None:
4505
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
4506
+
4507
+ @property
4508
+ @pulumi.getter(name="userAssignedIdentities")
4509
+ def user_assigned_identities(self) -> Optional[Sequence[str]]:
4510
+ """
4511
+ The list of user identities associated with the virtual machine scale set under the node type. Each entry will be an ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
4512
+ """
4513
+ return pulumi.get(self, "user_assigned_identities")
4514
+
4515
+
4516
+ @pulumi.output_type
4517
+ class VmssDataDiskResponse(dict):
4518
+ """
4519
+ Managed data disk description.
4520
+ """
4521
+ @staticmethod
4522
+ def __key_warning(key: str):
4523
+ suggest = None
4524
+ if key == "diskLetter":
4525
+ suggest = "disk_letter"
4526
+ elif key == "diskSizeGB":
4527
+ suggest = "disk_size_gb"
4528
+ elif key == "diskType":
4529
+ suggest = "disk_type"
4530
+
4531
+ if suggest:
4532
+ pulumi.log.warn(f"Key '{key}' not found in VmssDataDiskResponse. Access the value via the '{suggest}' property getter instead.")
4533
+
4534
+ def __getitem__(self, key: str) -> Any:
4535
+ VmssDataDiskResponse.__key_warning(key)
4536
+ return super().__getitem__(key)
4537
+
4538
+ def get(self, key: str, default = None) -> Any:
4539
+ VmssDataDiskResponse.__key_warning(key)
4540
+ return super().get(key, default)
4541
+
4542
+ def __init__(__self__, *,
4543
+ disk_letter: str,
4544
+ disk_size_gb: int,
4545
+ disk_type: str,
4546
+ lun: int):
4547
+ """
4548
+ Managed data disk description.
4549
+ :param str disk_letter: Managed data disk letter. It can not use the reserved letter C or D and it can not change after created.
4550
+ :param int disk_size_gb: Disk size for each vm in the node type in GBs.
4551
+ :param str disk_type: Managed data disk type. Specifies the storage account type for the managed disk
4552
+ :param int lun: Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM. Lun 0 is reserved for the service fabric data disk.
4553
+ """
4554
+ pulumi.set(__self__, "disk_letter", disk_letter)
4555
+ pulumi.set(__self__, "disk_size_gb", disk_size_gb)
4556
+ pulumi.set(__self__, "disk_type", disk_type)
4557
+ pulumi.set(__self__, "lun", lun)
4558
+
4559
+ @property
4560
+ @pulumi.getter(name="diskLetter")
4561
+ def disk_letter(self) -> str:
4562
+ """
4563
+ Managed data disk letter. It can not use the reserved letter C or D and it can not change after created.
4564
+ """
4565
+ return pulumi.get(self, "disk_letter")
4566
+
4567
+ @property
4568
+ @pulumi.getter(name="diskSizeGB")
4569
+ def disk_size_gb(self) -> int:
4570
+ """
4571
+ Disk size for each vm in the node type in GBs.
4572
+ """
4573
+ return pulumi.get(self, "disk_size_gb")
4574
+
4575
+ @property
4576
+ @pulumi.getter(name="diskType")
4577
+ def disk_type(self) -> str:
4578
+ """
4579
+ Managed data disk type. Specifies the storage account type for the managed disk
4580
+ """
4581
+ return pulumi.get(self, "disk_type")
4582
+
4583
+ @property
4584
+ @pulumi.getter
4585
+ def lun(self) -> int:
4586
+ """
4587
+ Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM. Lun 0 is reserved for the service fabric data disk.
4588
+ """
4589
+ return pulumi.get(self, "lun")
4590
+
4591
+