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,3556 @@
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
+ 'AgentConfigurationResponse',
21
+ 'AgentUpgradeResponse',
22
+ 'CloudMetadataResponse',
23
+ 'ConfigurationExtensionResponse',
24
+ 'DiskResponse',
25
+ 'ErrorAdditionalInfoResponse',
26
+ 'ErrorDetailResponse',
27
+ 'EsuKeyResponse',
28
+ 'ExtensionsResourceStatusResponse',
29
+ 'FirmwareProfileResponse',
30
+ 'HardwareProfileResponse',
31
+ 'HybridComputePrivateLinkScopePropertiesResponse',
32
+ 'IdentityResponse',
33
+ 'IpAddressResponse',
34
+ 'LicenseDetailsResponse',
35
+ 'LicenseProfileMachineInstanceViewEsuPropertiesResponse',
36
+ 'LicenseProfileMachineInstanceViewResponse',
37
+ 'LicenseResponse',
38
+ 'LocationDataResponse',
39
+ 'MachineExtensionInstanceViewResponse',
40
+ 'MachineExtensionInstanceViewResponseStatus',
41
+ 'MachineExtensionPropertiesResponse',
42
+ 'MachineExtensionResponse',
43
+ 'MachineRunCommandInstanceViewResponse',
44
+ 'MachineRunCommandScriptSourceResponse',
45
+ 'NetworkInterfaceResponse',
46
+ 'NetworkProfileResponse',
47
+ 'OSProfileResponse',
48
+ 'OSProfileResponseLinuxConfiguration',
49
+ 'OSProfileResponseWindowsConfiguration',
50
+ 'PatchSettingsResponseStatus',
51
+ 'PrivateEndpointConnectionDataModelResponse',
52
+ 'PrivateEndpointConnectionPropertiesResponse',
53
+ 'PrivateEndpointPropertyResponse',
54
+ 'PrivateLinkServiceConnectionStatePropertyResponse',
55
+ 'ProcessorResponse',
56
+ 'ProductFeatureResponse',
57
+ 'RunCommandInputParameterResponse',
58
+ 'RunCommandManagedIdentityResponse',
59
+ 'ServiceStatusResponse',
60
+ 'ServiceStatusesResponse',
61
+ 'StorageProfileResponse',
62
+ 'SubnetResponse',
63
+ 'SystemDataResponse',
64
+ 'VolumeLicenseDetailsResponse',
65
+ ]
66
+
67
+ @pulumi.output_type
68
+ class AgentConfigurationResponse(dict):
69
+ """
70
+ Configurable properties that the user can set locally via the azcmagent config command, or remotely via ARM.
71
+ """
72
+ @staticmethod
73
+ def __key_warning(key: str):
74
+ suggest = None
75
+ if key == "configMode":
76
+ suggest = "config_mode"
77
+ elif key == "extensionsAllowList":
78
+ suggest = "extensions_allow_list"
79
+ elif key == "extensionsBlockList":
80
+ suggest = "extensions_block_list"
81
+ elif key == "extensionsEnabled":
82
+ suggest = "extensions_enabled"
83
+ elif key == "guestConfigurationEnabled":
84
+ suggest = "guest_configuration_enabled"
85
+ elif key == "incomingConnectionsPorts":
86
+ suggest = "incoming_connections_ports"
87
+ elif key == "proxyBypass":
88
+ suggest = "proxy_bypass"
89
+ elif key == "proxyUrl":
90
+ suggest = "proxy_url"
91
+
92
+ if suggest:
93
+ pulumi.log.warn(f"Key '{key}' not found in AgentConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
94
+
95
+ def __getitem__(self, key: str) -> Any:
96
+ AgentConfigurationResponse.__key_warning(key)
97
+ return super().__getitem__(key)
98
+
99
+ def get(self, key: str, default = None) -> Any:
100
+ AgentConfigurationResponse.__key_warning(key)
101
+ return super().get(key, default)
102
+
103
+ def __init__(__self__, *,
104
+ config_mode: str,
105
+ extensions_allow_list: Sequence['outputs.ConfigurationExtensionResponse'],
106
+ extensions_block_list: Sequence['outputs.ConfigurationExtensionResponse'],
107
+ extensions_enabled: str,
108
+ guest_configuration_enabled: str,
109
+ incoming_connections_ports: Sequence[str],
110
+ proxy_bypass: Sequence[str],
111
+ proxy_url: str):
112
+ """
113
+ Configurable properties that the user can set locally via the azcmagent config command, or remotely via ARM.
114
+ :param str config_mode: Name of configuration mode to use. Modes are pre-defined configurations of security controls, extension allowlists and guest configuration, maintained by Microsoft.
115
+ :param Sequence['ConfigurationExtensionResponse'] extensions_allow_list: Array of extensions that are allowed to be installed or updated.
116
+ :param Sequence['ConfigurationExtensionResponse'] extensions_block_list: Array of extensions that are blocked (cannot be installed or updated)
117
+ :param str extensions_enabled: Specifies whether the extension service is enabled or disabled.
118
+ :param str guest_configuration_enabled: Specified whether the guest configuration service is enabled or disabled.
119
+ :param Sequence[str] incoming_connections_ports: Specifies the list of ports that the agent will be able to listen on.
120
+ :param Sequence[str] proxy_bypass: List of service names which should not use the specified proxy server.
121
+ :param str proxy_url: Specifies the URL of the proxy to be used.
122
+ """
123
+ pulumi.set(__self__, "config_mode", config_mode)
124
+ pulumi.set(__self__, "extensions_allow_list", extensions_allow_list)
125
+ pulumi.set(__self__, "extensions_block_list", extensions_block_list)
126
+ pulumi.set(__self__, "extensions_enabled", extensions_enabled)
127
+ pulumi.set(__self__, "guest_configuration_enabled", guest_configuration_enabled)
128
+ pulumi.set(__self__, "incoming_connections_ports", incoming_connections_ports)
129
+ pulumi.set(__self__, "proxy_bypass", proxy_bypass)
130
+ pulumi.set(__self__, "proxy_url", proxy_url)
131
+
132
+ @property
133
+ @pulumi.getter(name="configMode")
134
+ def config_mode(self) -> str:
135
+ """
136
+ Name of configuration mode to use. Modes are pre-defined configurations of security controls, extension allowlists and guest configuration, maintained by Microsoft.
137
+ """
138
+ return pulumi.get(self, "config_mode")
139
+
140
+ @property
141
+ @pulumi.getter(name="extensionsAllowList")
142
+ def extensions_allow_list(self) -> Sequence['outputs.ConfigurationExtensionResponse']:
143
+ """
144
+ Array of extensions that are allowed to be installed or updated.
145
+ """
146
+ return pulumi.get(self, "extensions_allow_list")
147
+
148
+ @property
149
+ @pulumi.getter(name="extensionsBlockList")
150
+ def extensions_block_list(self) -> Sequence['outputs.ConfigurationExtensionResponse']:
151
+ """
152
+ Array of extensions that are blocked (cannot be installed or updated)
153
+ """
154
+ return pulumi.get(self, "extensions_block_list")
155
+
156
+ @property
157
+ @pulumi.getter(name="extensionsEnabled")
158
+ def extensions_enabled(self) -> str:
159
+ """
160
+ Specifies whether the extension service is enabled or disabled.
161
+ """
162
+ return pulumi.get(self, "extensions_enabled")
163
+
164
+ @property
165
+ @pulumi.getter(name="guestConfigurationEnabled")
166
+ def guest_configuration_enabled(self) -> str:
167
+ """
168
+ Specified whether the guest configuration service is enabled or disabled.
169
+ """
170
+ return pulumi.get(self, "guest_configuration_enabled")
171
+
172
+ @property
173
+ @pulumi.getter(name="incomingConnectionsPorts")
174
+ def incoming_connections_ports(self) -> Sequence[str]:
175
+ """
176
+ Specifies the list of ports that the agent will be able to listen on.
177
+ """
178
+ return pulumi.get(self, "incoming_connections_ports")
179
+
180
+ @property
181
+ @pulumi.getter(name="proxyBypass")
182
+ def proxy_bypass(self) -> Sequence[str]:
183
+ """
184
+ List of service names which should not use the specified proxy server.
185
+ """
186
+ return pulumi.get(self, "proxy_bypass")
187
+
188
+ @property
189
+ @pulumi.getter(name="proxyUrl")
190
+ def proxy_url(self) -> str:
191
+ """
192
+ Specifies the URL of the proxy to be used.
193
+ """
194
+ return pulumi.get(self, "proxy_url")
195
+
196
+
197
+ @pulumi.output_type
198
+ class AgentUpgradeResponse(dict):
199
+ """
200
+ The info w.r.t Agent Upgrade.
201
+ """
202
+ @staticmethod
203
+ def __key_warning(key: str):
204
+ suggest = None
205
+ if key == "lastAttemptDesiredVersion":
206
+ suggest = "last_attempt_desired_version"
207
+ elif key == "lastAttemptMessage":
208
+ suggest = "last_attempt_message"
209
+ elif key == "lastAttemptStatus":
210
+ suggest = "last_attempt_status"
211
+ elif key == "lastAttemptTimestamp":
212
+ suggest = "last_attempt_timestamp"
213
+ elif key == "correlationId":
214
+ suggest = "correlation_id"
215
+ elif key == "desiredVersion":
216
+ suggest = "desired_version"
217
+ elif key == "enableAutomaticUpgrade":
218
+ suggest = "enable_automatic_upgrade"
219
+
220
+ if suggest:
221
+ pulumi.log.warn(f"Key '{key}' not found in AgentUpgradeResponse. Access the value via the '{suggest}' property getter instead.")
222
+
223
+ def __getitem__(self, key: str) -> Any:
224
+ AgentUpgradeResponse.__key_warning(key)
225
+ return super().__getitem__(key)
226
+
227
+ def get(self, key: str, default = None) -> Any:
228
+ AgentUpgradeResponse.__key_warning(key)
229
+ return super().get(key, default)
230
+
231
+ def __init__(__self__, *,
232
+ last_attempt_desired_version: str,
233
+ last_attempt_message: str,
234
+ last_attempt_status: str,
235
+ last_attempt_timestamp: str,
236
+ correlation_id: Optional[str] = None,
237
+ desired_version: Optional[str] = None,
238
+ enable_automatic_upgrade: Optional[bool] = None):
239
+ """
240
+ The info w.r.t Agent Upgrade.
241
+ :param str last_attempt_desired_version: Specifies the version of the last attempt
242
+ :param str last_attempt_message: Failure message of last upgrade attempt if any.
243
+ :param str last_attempt_status: Specifies the status of Agent Upgrade.
244
+ :param str last_attempt_timestamp: Timestamp of last upgrade attempt
245
+ :param str correlation_id: The correlation ID associated with an agent upgrade operation.
246
+ :param str desired_version: Specifies the version info w.r.t AgentUpgrade for the machine.
247
+ :param bool enable_automatic_upgrade: Specifies if the machine's agent should be upgraded
248
+ """
249
+ pulumi.set(__self__, "last_attempt_desired_version", last_attempt_desired_version)
250
+ pulumi.set(__self__, "last_attempt_message", last_attempt_message)
251
+ pulumi.set(__self__, "last_attempt_status", last_attempt_status)
252
+ pulumi.set(__self__, "last_attempt_timestamp", last_attempt_timestamp)
253
+ if correlation_id is not None:
254
+ pulumi.set(__self__, "correlation_id", correlation_id)
255
+ if desired_version is not None:
256
+ pulumi.set(__self__, "desired_version", desired_version)
257
+ if enable_automatic_upgrade is not None:
258
+ pulumi.set(__self__, "enable_automatic_upgrade", enable_automatic_upgrade)
259
+
260
+ @property
261
+ @pulumi.getter(name="lastAttemptDesiredVersion")
262
+ def last_attempt_desired_version(self) -> str:
263
+ """
264
+ Specifies the version of the last attempt
265
+ """
266
+ return pulumi.get(self, "last_attempt_desired_version")
267
+
268
+ @property
269
+ @pulumi.getter(name="lastAttemptMessage")
270
+ def last_attempt_message(self) -> str:
271
+ """
272
+ Failure message of last upgrade attempt if any.
273
+ """
274
+ return pulumi.get(self, "last_attempt_message")
275
+
276
+ @property
277
+ @pulumi.getter(name="lastAttemptStatus")
278
+ def last_attempt_status(self) -> str:
279
+ """
280
+ Specifies the status of Agent Upgrade.
281
+ """
282
+ return pulumi.get(self, "last_attempt_status")
283
+
284
+ @property
285
+ @pulumi.getter(name="lastAttemptTimestamp")
286
+ def last_attempt_timestamp(self) -> str:
287
+ """
288
+ Timestamp of last upgrade attempt
289
+ """
290
+ return pulumi.get(self, "last_attempt_timestamp")
291
+
292
+ @property
293
+ @pulumi.getter(name="correlationId")
294
+ def correlation_id(self) -> Optional[str]:
295
+ """
296
+ The correlation ID associated with an agent upgrade operation.
297
+ """
298
+ return pulumi.get(self, "correlation_id")
299
+
300
+ @property
301
+ @pulumi.getter(name="desiredVersion")
302
+ def desired_version(self) -> Optional[str]:
303
+ """
304
+ Specifies the version info w.r.t AgentUpgrade for the machine.
305
+ """
306
+ return pulumi.get(self, "desired_version")
307
+
308
+ @property
309
+ @pulumi.getter(name="enableAutomaticUpgrade")
310
+ def enable_automatic_upgrade(self) -> Optional[bool]:
311
+ """
312
+ Specifies if the machine's agent should be upgraded
313
+ """
314
+ return pulumi.get(self, "enable_automatic_upgrade")
315
+
316
+
317
+ @pulumi.output_type
318
+ class CloudMetadataResponse(dict):
319
+ """
320
+ The metadata of the cloud environment (Azure/GCP/AWS/OCI...).
321
+ """
322
+ def __init__(__self__, *,
323
+ provider: str):
324
+ """
325
+ The metadata of the cloud environment (Azure/GCP/AWS/OCI...).
326
+ :param str provider: Specifies the cloud provider (Azure/AWS/GCP...).
327
+ """
328
+ pulumi.set(__self__, "provider", provider)
329
+
330
+ @property
331
+ @pulumi.getter
332
+ def provider(self) -> str:
333
+ """
334
+ Specifies the cloud provider (Azure/AWS/GCP...).
335
+ """
336
+ return pulumi.get(self, "provider")
337
+
338
+
339
+ @pulumi.output_type
340
+ class ConfigurationExtensionResponse(dict):
341
+ """
342
+ Describes properties that can identify extensions.
343
+ """
344
+ def __init__(__self__, *,
345
+ publisher: str,
346
+ type: str):
347
+ """
348
+ Describes properties that can identify extensions.
349
+ :param str publisher: Publisher of the extension.
350
+ :param str type: Type of the extension.
351
+ """
352
+ pulumi.set(__self__, "publisher", publisher)
353
+ pulumi.set(__self__, "type", type)
354
+
355
+ @property
356
+ @pulumi.getter
357
+ def publisher(self) -> str:
358
+ """
359
+ Publisher of the extension.
360
+ """
361
+ return pulumi.get(self, "publisher")
362
+
363
+ @property
364
+ @pulumi.getter
365
+ def type(self) -> str:
366
+ """
367
+ Type of the extension.
368
+ """
369
+ return pulumi.get(self, "type")
370
+
371
+
372
+ @pulumi.output_type
373
+ class DiskResponse(dict):
374
+ """
375
+ Describes a disk on the machine
376
+ """
377
+ @staticmethod
378
+ def __key_warning(key: str):
379
+ suggest = None
380
+ if key == "diskType":
381
+ suggest = "disk_type"
382
+ elif key == "generatedId":
383
+ suggest = "generated_id"
384
+ elif key == "maxSizeInBytes":
385
+ suggest = "max_size_in_bytes"
386
+ elif key == "usedSpaceInBytes":
387
+ suggest = "used_space_in_bytes"
388
+
389
+ if suggest:
390
+ pulumi.log.warn(f"Key '{key}' not found in DiskResponse. Access the value via the '{suggest}' property getter instead.")
391
+
392
+ def __getitem__(self, key: str) -> Any:
393
+ DiskResponse.__key_warning(key)
394
+ return super().__getitem__(key)
395
+
396
+ def get(self, key: str, default = None) -> Any:
397
+ DiskResponse.__key_warning(key)
398
+ return super().get(key, default)
399
+
400
+ def __init__(__self__, *,
401
+ disk_type: Optional[str] = None,
402
+ generated_id: Optional[str] = None,
403
+ id: Optional[str] = None,
404
+ max_size_in_bytes: Optional[float] = None,
405
+ name: Optional[str] = None,
406
+ path: Optional[str] = None,
407
+ used_space_in_bytes: Optional[float] = None):
408
+ """
409
+ Describes a disk on the machine
410
+ :param str disk_type: The type of the disk.
411
+ :param str generated_id: The generated ID of the disk.
412
+ :param str id: The ID of the disk.
413
+ :param float max_size_in_bytes: The size of the disk, in bytes
414
+ :param str name: The name of the disk.
415
+ :param str path: The path of the disk.
416
+ :param float used_space_in_bytes: The amount of space used on the disk, in bytes
417
+ """
418
+ if disk_type is not None:
419
+ pulumi.set(__self__, "disk_type", disk_type)
420
+ if generated_id is not None:
421
+ pulumi.set(__self__, "generated_id", generated_id)
422
+ if id is not None:
423
+ pulumi.set(__self__, "id", id)
424
+ if max_size_in_bytes is not None:
425
+ pulumi.set(__self__, "max_size_in_bytes", max_size_in_bytes)
426
+ if name is not None:
427
+ pulumi.set(__self__, "name", name)
428
+ if path is not None:
429
+ pulumi.set(__self__, "path", path)
430
+ if used_space_in_bytes is not None:
431
+ pulumi.set(__self__, "used_space_in_bytes", used_space_in_bytes)
432
+
433
+ @property
434
+ @pulumi.getter(name="diskType")
435
+ def disk_type(self) -> Optional[str]:
436
+ """
437
+ The type of the disk.
438
+ """
439
+ return pulumi.get(self, "disk_type")
440
+
441
+ @property
442
+ @pulumi.getter(name="generatedId")
443
+ def generated_id(self) -> Optional[str]:
444
+ """
445
+ The generated ID of the disk.
446
+ """
447
+ return pulumi.get(self, "generated_id")
448
+
449
+ @property
450
+ @pulumi.getter
451
+ def id(self) -> Optional[str]:
452
+ """
453
+ The ID of the disk.
454
+ """
455
+ return pulumi.get(self, "id")
456
+
457
+ @property
458
+ @pulumi.getter(name="maxSizeInBytes")
459
+ def max_size_in_bytes(self) -> Optional[float]:
460
+ """
461
+ The size of the disk, in bytes
462
+ """
463
+ return pulumi.get(self, "max_size_in_bytes")
464
+
465
+ @property
466
+ @pulumi.getter
467
+ def name(self) -> Optional[str]:
468
+ """
469
+ The name of the disk.
470
+ """
471
+ return pulumi.get(self, "name")
472
+
473
+ @property
474
+ @pulumi.getter
475
+ def path(self) -> Optional[str]:
476
+ """
477
+ The path of the disk.
478
+ """
479
+ return pulumi.get(self, "path")
480
+
481
+ @property
482
+ @pulumi.getter(name="usedSpaceInBytes")
483
+ def used_space_in_bytes(self) -> Optional[float]:
484
+ """
485
+ The amount of space used on the disk, in bytes
486
+ """
487
+ return pulumi.get(self, "used_space_in_bytes")
488
+
489
+
490
+ @pulumi.output_type
491
+ class ErrorAdditionalInfoResponse(dict):
492
+ """
493
+ The resource management error additional info.
494
+ """
495
+ def __init__(__self__, *,
496
+ info: Any,
497
+ type: str):
498
+ """
499
+ The resource management error additional info.
500
+ :param Any info: The additional info.
501
+ :param str type: The additional info type.
502
+ """
503
+ pulumi.set(__self__, "info", info)
504
+ pulumi.set(__self__, "type", type)
505
+
506
+ @property
507
+ @pulumi.getter
508
+ def info(self) -> Any:
509
+ """
510
+ The additional info.
511
+ """
512
+ return pulumi.get(self, "info")
513
+
514
+ @property
515
+ @pulumi.getter
516
+ def type(self) -> str:
517
+ """
518
+ The additional info type.
519
+ """
520
+ return pulumi.get(self, "type")
521
+
522
+
523
+ @pulumi.output_type
524
+ class ErrorDetailResponse(dict):
525
+ """
526
+ The error detail.
527
+ """
528
+ @staticmethod
529
+ def __key_warning(key: str):
530
+ suggest = None
531
+ if key == "additionalInfo":
532
+ suggest = "additional_info"
533
+
534
+ if suggest:
535
+ pulumi.log.warn(f"Key '{key}' not found in ErrorDetailResponse. Access the value via the '{suggest}' property getter instead.")
536
+
537
+ def __getitem__(self, key: str) -> Any:
538
+ ErrorDetailResponse.__key_warning(key)
539
+ return super().__getitem__(key)
540
+
541
+ def get(self, key: str, default = None) -> Any:
542
+ ErrorDetailResponse.__key_warning(key)
543
+ return super().get(key, default)
544
+
545
+ def __init__(__self__, *,
546
+ additional_info: Sequence['outputs.ErrorAdditionalInfoResponse'],
547
+ code: str,
548
+ details: Sequence['outputs.ErrorDetailResponse'],
549
+ message: str,
550
+ target: str):
551
+ """
552
+ The error detail.
553
+ :param Sequence['ErrorAdditionalInfoResponse'] additional_info: The error additional info.
554
+ :param str code: The error code.
555
+ :param Sequence['ErrorDetailResponse'] details: The error details.
556
+ :param str message: The error message.
557
+ :param str target: The error target.
558
+ """
559
+ pulumi.set(__self__, "additional_info", additional_info)
560
+ pulumi.set(__self__, "code", code)
561
+ pulumi.set(__self__, "details", details)
562
+ pulumi.set(__self__, "message", message)
563
+ pulumi.set(__self__, "target", target)
564
+
565
+ @property
566
+ @pulumi.getter(name="additionalInfo")
567
+ def additional_info(self) -> Sequence['outputs.ErrorAdditionalInfoResponse']:
568
+ """
569
+ The error additional info.
570
+ """
571
+ return pulumi.get(self, "additional_info")
572
+
573
+ @property
574
+ @pulumi.getter
575
+ def code(self) -> str:
576
+ """
577
+ The error code.
578
+ """
579
+ return pulumi.get(self, "code")
580
+
581
+ @property
582
+ @pulumi.getter
583
+ def details(self) -> Sequence['outputs.ErrorDetailResponse']:
584
+ """
585
+ The error details.
586
+ """
587
+ return pulumi.get(self, "details")
588
+
589
+ @property
590
+ @pulumi.getter
591
+ def message(self) -> str:
592
+ """
593
+ The error message.
594
+ """
595
+ return pulumi.get(self, "message")
596
+
597
+ @property
598
+ @pulumi.getter
599
+ def target(self) -> str:
600
+ """
601
+ The error target.
602
+ """
603
+ return pulumi.get(self, "target")
604
+
605
+
606
+ @pulumi.output_type
607
+ class EsuKeyResponse(dict):
608
+ """
609
+ ESU key
610
+ """
611
+ @staticmethod
612
+ def __key_warning(key: str):
613
+ suggest = None
614
+ if key == "licenseStatus":
615
+ suggest = "license_status"
616
+
617
+ if suggest:
618
+ pulumi.log.warn(f"Key '{key}' not found in EsuKeyResponse. Access the value via the '{suggest}' property getter instead.")
619
+
620
+ def __getitem__(self, key: str) -> Any:
621
+ EsuKeyResponse.__key_warning(key)
622
+ return super().__getitem__(key)
623
+
624
+ def get(self, key: str, default = None) -> Any:
625
+ EsuKeyResponse.__key_warning(key)
626
+ return super().get(key, default)
627
+
628
+ def __init__(__self__, *,
629
+ license_status: Optional[int] = None,
630
+ sku: Optional[str] = None):
631
+ """
632
+ ESU key
633
+ :param int license_status: The current status of the license profile key. Represented by the same integer value that is presented on the machine itself when querying the license key status.
634
+ :param str sku: SKU number.
635
+ """
636
+ if license_status is not None:
637
+ pulumi.set(__self__, "license_status", license_status)
638
+ if sku is not None:
639
+ pulumi.set(__self__, "sku", sku)
640
+
641
+ @property
642
+ @pulumi.getter(name="licenseStatus")
643
+ def license_status(self) -> Optional[int]:
644
+ """
645
+ The current status of the license profile key. Represented by the same integer value that is presented on the machine itself when querying the license key status.
646
+ """
647
+ return pulumi.get(self, "license_status")
648
+
649
+ @property
650
+ @pulumi.getter
651
+ def sku(self) -> Optional[str]:
652
+ """
653
+ SKU number.
654
+ """
655
+ return pulumi.get(self, "sku")
656
+
657
+
658
+ @pulumi.output_type
659
+ class ExtensionsResourceStatusResponse(dict):
660
+ """
661
+ Instance view status.
662
+ """
663
+ @staticmethod
664
+ def __key_warning(key: str):
665
+ suggest = None
666
+ if key == "displayStatus":
667
+ suggest = "display_status"
668
+
669
+ if suggest:
670
+ pulumi.log.warn(f"Key '{key}' not found in ExtensionsResourceStatusResponse. Access the value via the '{suggest}' property getter instead.")
671
+
672
+ def __getitem__(self, key: str) -> Any:
673
+ ExtensionsResourceStatusResponse.__key_warning(key)
674
+ return super().__getitem__(key)
675
+
676
+ def get(self, key: str, default = None) -> Any:
677
+ ExtensionsResourceStatusResponse.__key_warning(key)
678
+ return super().get(key, default)
679
+
680
+ def __init__(__self__, *,
681
+ code: Optional[str] = None,
682
+ display_status: Optional[str] = None,
683
+ level: Optional[str] = None,
684
+ message: Optional[str] = None,
685
+ time: Optional[str] = None):
686
+ """
687
+ Instance view status.
688
+ :param str code: The status code.
689
+ :param str display_status: The short localizable label for the status.
690
+ :param str level: The level code.
691
+ :param str message: The detailed status message, including for alerts and error messages.
692
+ :param str time: The time of the status.
693
+ """
694
+ if code is not None:
695
+ pulumi.set(__self__, "code", code)
696
+ if display_status is not None:
697
+ pulumi.set(__self__, "display_status", display_status)
698
+ if level is not None:
699
+ pulumi.set(__self__, "level", level)
700
+ if message is not None:
701
+ pulumi.set(__self__, "message", message)
702
+ if time is not None:
703
+ pulumi.set(__self__, "time", time)
704
+
705
+ @property
706
+ @pulumi.getter
707
+ def code(self) -> Optional[str]:
708
+ """
709
+ The status code.
710
+ """
711
+ return pulumi.get(self, "code")
712
+
713
+ @property
714
+ @pulumi.getter(name="displayStatus")
715
+ def display_status(self) -> Optional[str]:
716
+ """
717
+ The short localizable label for the status.
718
+ """
719
+ return pulumi.get(self, "display_status")
720
+
721
+ @property
722
+ @pulumi.getter
723
+ def level(self) -> Optional[str]:
724
+ """
725
+ The level code.
726
+ """
727
+ return pulumi.get(self, "level")
728
+
729
+ @property
730
+ @pulumi.getter
731
+ def message(self) -> Optional[str]:
732
+ """
733
+ The detailed status message, including for alerts and error messages.
734
+ """
735
+ return pulumi.get(self, "message")
736
+
737
+ @property
738
+ @pulumi.getter
739
+ def time(self) -> Optional[str]:
740
+ """
741
+ The time of the status.
742
+ """
743
+ return pulumi.get(self, "time")
744
+
745
+
746
+ @pulumi.output_type
747
+ class FirmwareProfileResponse(dict):
748
+ """
749
+ Describes the firmware of the machine
750
+ """
751
+ @staticmethod
752
+ def __key_warning(key: str):
753
+ suggest = None
754
+ if key == "serialNumber":
755
+ suggest = "serial_number"
756
+
757
+ if suggest:
758
+ pulumi.log.warn(f"Key '{key}' not found in FirmwareProfileResponse. Access the value via the '{suggest}' property getter instead.")
759
+
760
+ def __getitem__(self, key: str) -> Any:
761
+ FirmwareProfileResponse.__key_warning(key)
762
+ return super().__getitem__(key)
763
+
764
+ def get(self, key: str, default = None) -> Any:
765
+ FirmwareProfileResponse.__key_warning(key)
766
+ return super().get(key, default)
767
+
768
+ def __init__(__self__, *,
769
+ serial_number: str,
770
+ type: str):
771
+ """
772
+ Describes the firmware of the machine
773
+ :param str serial_number: The serial number of the firmware
774
+ :param str type: The type of the firmware
775
+ """
776
+ pulumi.set(__self__, "serial_number", serial_number)
777
+ pulumi.set(__self__, "type", type)
778
+
779
+ @property
780
+ @pulumi.getter(name="serialNumber")
781
+ def serial_number(self) -> str:
782
+ """
783
+ The serial number of the firmware
784
+ """
785
+ return pulumi.get(self, "serial_number")
786
+
787
+ @property
788
+ @pulumi.getter
789
+ def type(self) -> str:
790
+ """
791
+ The type of the firmware
792
+ """
793
+ return pulumi.get(self, "type")
794
+
795
+
796
+ @pulumi.output_type
797
+ class HardwareProfileResponse(dict):
798
+ """
799
+ Describes the hardware of the machine
800
+ """
801
+ @staticmethod
802
+ def __key_warning(key: str):
803
+ suggest = None
804
+ if key == "numberOfCpuSockets":
805
+ suggest = "number_of_cpu_sockets"
806
+ elif key == "totalPhysicalMemoryInBytes":
807
+ suggest = "total_physical_memory_in_bytes"
808
+
809
+ if suggest:
810
+ pulumi.log.warn(f"Key '{key}' not found in HardwareProfileResponse. Access the value via the '{suggest}' property getter instead.")
811
+
812
+ def __getitem__(self, key: str) -> Any:
813
+ HardwareProfileResponse.__key_warning(key)
814
+ return super().__getitem__(key)
815
+
816
+ def get(self, key: str, default = None) -> Any:
817
+ HardwareProfileResponse.__key_warning(key)
818
+ return super().get(key, default)
819
+
820
+ def __init__(__self__, *,
821
+ number_of_cpu_sockets: int,
822
+ processors: Sequence['outputs.ProcessorResponse'],
823
+ total_physical_memory_in_bytes: float):
824
+ """
825
+ Describes the hardware of the machine
826
+ :param int number_of_cpu_sockets: The total number of CPU sockets available on the machine
827
+ :param Sequence['ProcessorResponse'] processors: The physical processors of the machine.
828
+ :param float total_physical_memory_in_bytes: The total physical memory on the machine
829
+ """
830
+ pulumi.set(__self__, "number_of_cpu_sockets", number_of_cpu_sockets)
831
+ pulumi.set(__self__, "processors", processors)
832
+ pulumi.set(__self__, "total_physical_memory_in_bytes", total_physical_memory_in_bytes)
833
+
834
+ @property
835
+ @pulumi.getter(name="numberOfCpuSockets")
836
+ def number_of_cpu_sockets(self) -> int:
837
+ """
838
+ The total number of CPU sockets available on the machine
839
+ """
840
+ return pulumi.get(self, "number_of_cpu_sockets")
841
+
842
+ @property
843
+ @pulumi.getter
844
+ def processors(self) -> Sequence['outputs.ProcessorResponse']:
845
+ """
846
+ The physical processors of the machine.
847
+ """
848
+ return pulumi.get(self, "processors")
849
+
850
+ @property
851
+ @pulumi.getter(name="totalPhysicalMemoryInBytes")
852
+ def total_physical_memory_in_bytes(self) -> float:
853
+ """
854
+ The total physical memory on the machine
855
+ """
856
+ return pulumi.get(self, "total_physical_memory_in_bytes")
857
+
858
+
859
+ @pulumi.output_type
860
+ class HybridComputePrivateLinkScopePropertiesResponse(dict):
861
+ """
862
+ Properties that define a Azure Arc PrivateLinkScope resource.
863
+ """
864
+ @staticmethod
865
+ def __key_warning(key: str):
866
+ suggest = None
867
+ if key == "privateEndpointConnections":
868
+ suggest = "private_endpoint_connections"
869
+ elif key == "privateLinkScopeId":
870
+ suggest = "private_link_scope_id"
871
+ elif key == "provisioningState":
872
+ suggest = "provisioning_state"
873
+ elif key == "publicNetworkAccess":
874
+ suggest = "public_network_access"
875
+
876
+ if suggest:
877
+ pulumi.log.warn(f"Key '{key}' not found in HybridComputePrivateLinkScopePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
878
+
879
+ def __getitem__(self, key: str) -> Any:
880
+ HybridComputePrivateLinkScopePropertiesResponse.__key_warning(key)
881
+ return super().__getitem__(key)
882
+
883
+ def get(self, key: str, default = None) -> Any:
884
+ HybridComputePrivateLinkScopePropertiesResponse.__key_warning(key)
885
+ return super().get(key, default)
886
+
887
+ def __init__(__self__, *,
888
+ private_endpoint_connections: Sequence['outputs.PrivateEndpointConnectionDataModelResponse'],
889
+ private_link_scope_id: str,
890
+ provisioning_state: str,
891
+ public_network_access: Optional[str] = None):
892
+ """
893
+ Properties that define a Azure Arc PrivateLinkScope resource.
894
+ :param Sequence['PrivateEndpointConnectionDataModelResponse'] private_endpoint_connections: The collection of associated Private Endpoint Connections.
895
+ :param str private_link_scope_id: The Guid id of the private link scope.
896
+ :param str provisioning_state: Current state of this PrivateLinkScope: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Provisioning ,Succeeded, Canceled and Failed.
897
+ :param str public_network_access: Indicates whether machines associated with the private link scope can also use public Azure Arc service endpoints.
898
+ """
899
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
900
+ pulumi.set(__self__, "private_link_scope_id", private_link_scope_id)
901
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
902
+ if public_network_access is not None:
903
+ pulumi.set(__self__, "public_network_access", public_network_access)
904
+
905
+ @property
906
+ @pulumi.getter(name="privateEndpointConnections")
907
+ def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionDataModelResponse']:
908
+ """
909
+ The collection of associated Private Endpoint Connections.
910
+ """
911
+ return pulumi.get(self, "private_endpoint_connections")
912
+
913
+ @property
914
+ @pulumi.getter(name="privateLinkScopeId")
915
+ def private_link_scope_id(self) -> str:
916
+ """
917
+ The Guid id of the private link scope.
918
+ """
919
+ return pulumi.get(self, "private_link_scope_id")
920
+
921
+ @property
922
+ @pulumi.getter(name="provisioningState")
923
+ def provisioning_state(self) -> str:
924
+ """
925
+ Current state of this PrivateLinkScope: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Provisioning ,Succeeded, Canceled and Failed.
926
+ """
927
+ return pulumi.get(self, "provisioning_state")
928
+
929
+ @property
930
+ @pulumi.getter(name="publicNetworkAccess")
931
+ def public_network_access(self) -> Optional[str]:
932
+ """
933
+ Indicates whether machines associated with the private link scope can also use public Azure Arc service endpoints.
934
+ """
935
+ return pulumi.get(self, "public_network_access")
936
+
937
+
938
+ @pulumi.output_type
939
+ class IdentityResponse(dict):
940
+ """
941
+ Identity for the resource.
942
+ """
943
+ @staticmethod
944
+ def __key_warning(key: str):
945
+ suggest = None
946
+ if key == "principalId":
947
+ suggest = "principal_id"
948
+ elif key == "tenantId":
949
+ suggest = "tenant_id"
950
+
951
+ if suggest:
952
+ pulumi.log.warn(f"Key '{key}' not found in IdentityResponse. Access the value via the '{suggest}' property getter instead.")
953
+
954
+ def __getitem__(self, key: str) -> Any:
955
+ IdentityResponse.__key_warning(key)
956
+ return super().__getitem__(key)
957
+
958
+ def get(self, key: str, default = None) -> Any:
959
+ IdentityResponse.__key_warning(key)
960
+ return super().get(key, default)
961
+
962
+ def __init__(__self__, *,
963
+ principal_id: str,
964
+ tenant_id: str,
965
+ type: Optional[str] = None):
966
+ """
967
+ Identity for the resource.
968
+ :param str principal_id: The principal ID of resource identity.
969
+ :param str tenant_id: The tenant ID of resource.
970
+ :param str type: The identity type.
971
+ """
972
+ pulumi.set(__self__, "principal_id", principal_id)
973
+ pulumi.set(__self__, "tenant_id", tenant_id)
974
+ if type is not None:
975
+ pulumi.set(__self__, "type", type)
976
+
977
+ @property
978
+ @pulumi.getter(name="principalId")
979
+ def principal_id(self) -> str:
980
+ """
981
+ The principal ID of resource identity.
982
+ """
983
+ return pulumi.get(self, "principal_id")
984
+
985
+ @property
986
+ @pulumi.getter(name="tenantId")
987
+ def tenant_id(self) -> str:
988
+ """
989
+ The tenant ID of resource.
990
+ """
991
+ return pulumi.get(self, "tenant_id")
992
+
993
+ @property
994
+ @pulumi.getter
995
+ def type(self) -> Optional[str]:
996
+ """
997
+ The identity type.
998
+ """
999
+ return pulumi.get(self, "type")
1000
+
1001
+
1002
+ @pulumi.output_type
1003
+ class IpAddressResponse(dict):
1004
+ """
1005
+ Describes properties of the IP address.
1006
+ """
1007
+ @staticmethod
1008
+ def __key_warning(key: str):
1009
+ suggest = None
1010
+ if key == "ipAddressVersion":
1011
+ suggest = "ip_address_version"
1012
+
1013
+ if suggest:
1014
+ pulumi.log.warn(f"Key '{key}' not found in IpAddressResponse. Access the value via the '{suggest}' property getter instead.")
1015
+
1016
+ def __getitem__(self, key: str) -> Any:
1017
+ IpAddressResponse.__key_warning(key)
1018
+ return super().__getitem__(key)
1019
+
1020
+ def get(self, key: str, default = None) -> Any:
1021
+ IpAddressResponse.__key_warning(key)
1022
+ return super().get(key, default)
1023
+
1024
+ def __init__(__self__, *,
1025
+ subnet: 'outputs.SubnetResponse',
1026
+ address: Optional[str] = None,
1027
+ ip_address_version: Optional[str] = None):
1028
+ """
1029
+ Describes properties of the IP address.
1030
+ :param 'SubnetResponse' subnet: The subnet to which this IP address belongs.
1031
+ :param str address: Represents the IP Address.
1032
+ :param str ip_address_version: Represents the Ip Address Version.
1033
+ """
1034
+ pulumi.set(__self__, "subnet", subnet)
1035
+ if address is not None:
1036
+ pulumi.set(__self__, "address", address)
1037
+ if ip_address_version is not None:
1038
+ pulumi.set(__self__, "ip_address_version", ip_address_version)
1039
+
1040
+ @property
1041
+ @pulumi.getter
1042
+ def subnet(self) -> 'outputs.SubnetResponse':
1043
+ """
1044
+ The subnet to which this IP address belongs.
1045
+ """
1046
+ return pulumi.get(self, "subnet")
1047
+
1048
+ @property
1049
+ @pulumi.getter
1050
+ def address(self) -> Optional[str]:
1051
+ """
1052
+ Represents the IP Address.
1053
+ """
1054
+ return pulumi.get(self, "address")
1055
+
1056
+ @property
1057
+ @pulumi.getter(name="ipAddressVersion")
1058
+ def ip_address_version(self) -> Optional[str]:
1059
+ """
1060
+ Represents the Ip Address Version.
1061
+ """
1062
+ return pulumi.get(self, "ip_address_version")
1063
+
1064
+
1065
+ @pulumi.output_type
1066
+ class LicenseDetailsResponse(dict):
1067
+ """
1068
+ Describes the properties of a License.
1069
+ """
1070
+ @staticmethod
1071
+ def __key_warning(key: str):
1072
+ suggest = None
1073
+ if key == "assignedLicenses":
1074
+ suggest = "assigned_licenses"
1075
+ elif key == "immutableId":
1076
+ suggest = "immutable_id"
1077
+ elif key == "volumeLicenseDetails":
1078
+ suggest = "volume_license_details"
1079
+
1080
+ if suggest:
1081
+ pulumi.log.warn(f"Key '{key}' not found in LicenseDetailsResponse. Access the value via the '{suggest}' property getter instead.")
1082
+
1083
+ def __getitem__(self, key: str) -> Any:
1084
+ LicenseDetailsResponse.__key_warning(key)
1085
+ return super().__getitem__(key)
1086
+
1087
+ def get(self, key: str, default = None) -> Any:
1088
+ LicenseDetailsResponse.__key_warning(key)
1089
+ return super().get(key, default)
1090
+
1091
+ def __init__(__self__, *,
1092
+ assigned_licenses: int,
1093
+ immutable_id: str,
1094
+ edition: Optional[str] = None,
1095
+ processors: Optional[int] = None,
1096
+ state: Optional[str] = None,
1097
+ target: Optional[str] = None,
1098
+ type: Optional[str] = None,
1099
+ volume_license_details: Optional[Sequence['outputs.VolumeLicenseDetailsResponse']] = None):
1100
+ """
1101
+ Describes the properties of a License.
1102
+ :param int assigned_licenses: Describes the number of assigned licenses.
1103
+ :param str immutable_id: Describes the immutable id.
1104
+ :param str edition: Describes the edition of the license. The values are either Standard or Datacenter.
1105
+ :param int processors: Describes the number of processors.
1106
+ :param str state: Describes the state of the license.
1107
+ :param str target: Describes the license target server.
1108
+ :param str type: Describes the license core type (pCore or vCore).
1109
+ :param Sequence['VolumeLicenseDetailsResponse'] volume_license_details: A list of volume license details.
1110
+ """
1111
+ pulumi.set(__self__, "assigned_licenses", assigned_licenses)
1112
+ pulumi.set(__self__, "immutable_id", immutable_id)
1113
+ if edition is not None:
1114
+ pulumi.set(__self__, "edition", edition)
1115
+ if processors is not None:
1116
+ pulumi.set(__self__, "processors", processors)
1117
+ if state is not None:
1118
+ pulumi.set(__self__, "state", state)
1119
+ if target is not None:
1120
+ pulumi.set(__self__, "target", target)
1121
+ if type is not None:
1122
+ pulumi.set(__self__, "type", type)
1123
+ if volume_license_details is not None:
1124
+ pulumi.set(__self__, "volume_license_details", volume_license_details)
1125
+
1126
+ @property
1127
+ @pulumi.getter(name="assignedLicenses")
1128
+ def assigned_licenses(self) -> int:
1129
+ """
1130
+ Describes the number of assigned licenses.
1131
+ """
1132
+ return pulumi.get(self, "assigned_licenses")
1133
+
1134
+ @property
1135
+ @pulumi.getter(name="immutableId")
1136
+ def immutable_id(self) -> str:
1137
+ """
1138
+ Describes the immutable id.
1139
+ """
1140
+ return pulumi.get(self, "immutable_id")
1141
+
1142
+ @property
1143
+ @pulumi.getter
1144
+ def edition(self) -> Optional[str]:
1145
+ """
1146
+ Describes the edition of the license. The values are either Standard or Datacenter.
1147
+ """
1148
+ return pulumi.get(self, "edition")
1149
+
1150
+ @property
1151
+ @pulumi.getter
1152
+ def processors(self) -> Optional[int]:
1153
+ """
1154
+ Describes the number of processors.
1155
+ """
1156
+ return pulumi.get(self, "processors")
1157
+
1158
+ @property
1159
+ @pulumi.getter
1160
+ def state(self) -> Optional[str]:
1161
+ """
1162
+ Describes the state of the license.
1163
+ """
1164
+ return pulumi.get(self, "state")
1165
+
1166
+ @property
1167
+ @pulumi.getter
1168
+ def target(self) -> Optional[str]:
1169
+ """
1170
+ Describes the license target server.
1171
+ """
1172
+ return pulumi.get(self, "target")
1173
+
1174
+ @property
1175
+ @pulumi.getter
1176
+ def type(self) -> Optional[str]:
1177
+ """
1178
+ Describes the license core type (pCore or vCore).
1179
+ """
1180
+ return pulumi.get(self, "type")
1181
+
1182
+ @property
1183
+ @pulumi.getter(name="volumeLicenseDetails")
1184
+ def volume_license_details(self) -> Optional[Sequence['outputs.VolumeLicenseDetailsResponse']]:
1185
+ """
1186
+ A list of volume license details.
1187
+ """
1188
+ return pulumi.get(self, "volume_license_details")
1189
+
1190
+
1191
+ @pulumi.output_type
1192
+ class LicenseProfileMachineInstanceViewEsuPropertiesResponse(dict):
1193
+ """
1194
+ Properties for the Machine ESU profile.
1195
+ """
1196
+ @staticmethod
1197
+ def __key_warning(key: str):
1198
+ suggest = None
1199
+ if key == "assignedLicenseImmutableId":
1200
+ suggest = "assigned_license_immutable_id"
1201
+ elif key == "esuEligibility":
1202
+ suggest = "esu_eligibility"
1203
+ elif key == "esuKeyState":
1204
+ suggest = "esu_key_state"
1205
+ elif key == "esuKeys":
1206
+ suggest = "esu_keys"
1207
+ elif key == "serverType":
1208
+ suggest = "server_type"
1209
+ elif key == "assignedLicense":
1210
+ suggest = "assigned_license"
1211
+ elif key == "licenseAssignmentState":
1212
+ suggest = "license_assignment_state"
1213
+
1214
+ if suggest:
1215
+ pulumi.log.warn(f"Key '{key}' not found in LicenseProfileMachineInstanceViewEsuPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1216
+
1217
+ def __getitem__(self, key: str) -> Any:
1218
+ LicenseProfileMachineInstanceViewEsuPropertiesResponse.__key_warning(key)
1219
+ return super().__getitem__(key)
1220
+
1221
+ def get(self, key: str, default = None) -> Any:
1222
+ LicenseProfileMachineInstanceViewEsuPropertiesResponse.__key_warning(key)
1223
+ return super().get(key, default)
1224
+
1225
+ def __init__(__self__, *,
1226
+ assigned_license_immutable_id: str,
1227
+ esu_eligibility: str,
1228
+ esu_key_state: str,
1229
+ esu_keys: Sequence['outputs.EsuKeyResponse'],
1230
+ server_type: str,
1231
+ assigned_license: Optional['outputs.LicenseResponse'] = None,
1232
+ license_assignment_state: Optional[str] = None):
1233
+ """
1234
+ Properties for the Machine ESU profile.
1235
+ :param str assigned_license_immutable_id: The guid id of the license.
1236
+ :param str esu_eligibility: Indicates the eligibility state of Esu.
1237
+ :param str esu_key_state: Indicates whether there is an ESU Key currently active for the machine.
1238
+ :param Sequence['EsuKeyResponse'] esu_keys: The list of ESU keys.
1239
+ :param str server_type: The type of the Esu servers.
1240
+ :param 'LicenseResponse' assigned_license: The assigned license resource.
1241
+ :param str license_assignment_state: Describes the license assignment state (Assigned or NotAssigned).
1242
+ """
1243
+ pulumi.set(__self__, "assigned_license_immutable_id", assigned_license_immutable_id)
1244
+ pulumi.set(__self__, "esu_eligibility", esu_eligibility)
1245
+ pulumi.set(__self__, "esu_key_state", esu_key_state)
1246
+ pulumi.set(__self__, "esu_keys", esu_keys)
1247
+ pulumi.set(__self__, "server_type", server_type)
1248
+ if assigned_license is not None:
1249
+ pulumi.set(__self__, "assigned_license", assigned_license)
1250
+ if license_assignment_state is not None:
1251
+ pulumi.set(__self__, "license_assignment_state", license_assignment_state)
1252
+
1253
+ @property
1254
+ @pulumi.getter(name="assignedLicenseImmutableId")
1255
+ def assigned_license_immutable_id(self) -> str:
1256
+ """
1257
+ The guid id of the license.
1258
+ """
1259
+ return pulumi.get(self, "assigned_license_immutable_id")
1260
+
1261
+ @property
1262
+ @pulumi.getter(name="esuEligibility")
1263
+ def esu_eligibility(self) -> str:
1264
+ """
1265
+ Indicates the eligibility state of Esu.
1266
+ """
1267
+ return pulumi.get(self, "esu_eligibility")
1268
+
1269
+ @property
1270
+ @pulumi.getter(name="esuKeyState")
1271
+ def esu_key_state(self) -> str:
1272
+ """
1273
+ Indicates whether there is an ESU Key currently active for the machine.
1274
+ """
1275
+ return pulumi.get(self, "esu_key_state")
1276
+
1277
+ @property
1278
+ @pulumi.getter(name="esuKeys")
1279
+ def esu_keys(self) -> Sequence['outputs.EsuKeyResponse']:
1280
+ """
1281
+ The list of ESU keys.
1282
+ """
1283
+ return pulumi.get(self, "esu_keys")
1284
+
1285
+ @property
1286
+ @pulumi.getter(name="serverType")
1287
+ def server_type(self) -> str:
1288
+ """
1289
+ The type of the Esu servers.
1290
+ """
1291
+ return pulumi.get(self, "server_type")
1292
+
1293
+ @property
1294
+ @pulumi.getter(name="assignedLicense")
1295
+ def assigned_license(self) -> Optional['outputs.LicenseResponse']:
1296
+ """
1297
+ The assigned license resource.
1298
+ """
1299
+ return pulumi.get(self, "assigned_license")
1300
+
1301
+ @property
1302
+ @pulumi.getter(name="licenseAssignmentState")
1303
+ def license_assignment_state(self) -> Optional[str]:
1304
+ """
1305
+ Describes the license assignment state (Assigned or NotAssigned).
1306
+ """
1307
+ return pulumi.get(self, "license_assignment_state")
1308
+
1309
+
1310
+ @pulumi.output_type
1311
+ class LicenseProfileMachineInstanceViewResponse(dict):
1312
+ """
1313
+ License Profile Instance View in Machine Properties.
1314
+ """
1315
+ @staticmethod
1316
+ def __key_warning(key: str):
1317
+ suggest = None
1318
+ if key == "billingEndDate":
1319
+ suggest = "billing_end_date"
1320
+ elif key == "billingStartDate":
1321
+ suggest = "billing_start_date"
1322
+ elif key == "disenrollmentDate":
1323
+ suggest = "disenrollment_date"
1324
+ elif key == "enrollmentDate":
1325
+ suggest = "enrollment_date"
1326
+ elif key == "licenseChannel":
1327
+ suggest = "license_channel"
1328
+ elif key == "licenseStatus":
1329
+ suggest = "license_status"
1330
+ elif key == "esuProfile":
1331
+ suggest = "esu_profile"
1332
+ elif key == "productFeatures":
1333
+ suggest = "product_features"
1334
+ elif key == "productType":
1335
+ suggest = "product_type"
1336
+ elif key == "softwareAssuranceCustomer":
1337
+ suggest = "software_assurance_customer"
1338
+ elif key == "subscriptionStatus":
1339
+ suggest = "subscription_status"
1340
+
1341
+ if suggest:
1342
+ pulumi.log.warn(f"Key '{key}' not found in LicenseProfileMachineInstanceViewResponse. Access the value via the '{suggest}' property getter instead.")
1343
+
1344
+ def __getitem__(self, key: str) -> Any:
1345
+ LicenseProfileMachineInstanceViewResponse.__key_warning(key)
1346
+ return super().__getitem__(key)
1347
+
1348
+ def get(self, key: str, default = None) -> Any:
1349
+ LicenseProfileMachineInstanceViewResponse.__key_warning(key)
1350
+ return super().get(key, default)
1351
+
1352
+ def __init__(__self__, *,
1353
+ billing_end_date: str,
1354
+ billing_start_date: str,
1355
+ disenrollment_date: str,
1356
+ enrollment_date: str,
1357
+ error: 'outputs.ErrorDetailResponse',
1358
+ license_channel: str,
1359
+ license_status: str,
1360
+ esu_profile: Optional['outputs.LicenseProfileMachineInstanceViewEsuPropertiesResponse'] = None,
1361
+ product_features: Optional[Sequence['outputs.ProductFeatureResponse']] = None,
1362
+ product_type: Optional[str] = None,
1363
+ software_assurance_customer: Optional[bool] = None,
1364
+ subscription_status: Optional[str] = None):
1365
+ """
1366
+ License Profile Instance View in Machine Properties.
1367
+ :param str billing_end_date: The timestamp in UTC when the billing ends.
1368
+ :param str billing_start_date: The timestamp in UTC when the billing starts.
1369
+ :param str disenrollment_date: The timestamp in UTC when the user disenrolled the feature.
1370
+ :param str enrollment_date: The timestamp in UTC when the user enrolls the feature.
1371
+ :param 'ErrorDetailResponse' error: The errors that were encountered during the feature enrollment or disenrollment.
1372
+ :param str license_channel: Indicates the license channel.
1373
+ :param str license_status: Indicates the license status of the OS.
1374
+ :param 'LicenseProfileMachineInstanceViewEsuPropertiesResponse' esu_profile: Properties for the Machine ESU profile.
1375
+ :param Sequence['ProductFeatureResponse'] product_features: The list of product features.
1376
+ :param str product_type: Indicates the product type of the license.
1377
+ :param bool software_assurance_customer: Specifies if this machine is licensed as part of a Software Assurance agreement.
1378
+ :param str subscription_status: Indicates the subscription status of the product.
1379
+ """
1380
+ pulumi.set(__self__, "billing_end_date", billing_end_date)
1381
+ pulumi.set(__self__, "billing_start_date", billing_start_date)
1382
+ pulumi.set(__self__, "disenrollment_date", disenrollment_date)
1383
+ pulumi.set(__self__, "enrollment_date", enrollment_date)
1384
+ pulumi.set(__self__, "error", error)
1385
+ pulumi.set(__self__, "license_channel", license_channel)
1386
+ pulumi.set(__self__, "license_status", license_status)
1387
+ if esu_profile is not None:
1388
+ pulumi.set(__self__, "esu_profile", esu_profile)
1389
+ if product_features is not None:
1390
+ pulumi.set(__self__, "product_features", product_features)
1391
+ if product_type is not None:
1392
+ pulumi.set(__self__, "product_type", product_type)
1393
+ if software_assurance_customer is not None:
1394
+ pulumi.set(__self__, "software_assurance_customer", software_assurance_customer)
1395
+ if subscription_status is not None:
1396
+ pulumi.set(__self__, "subscription_status", subscription_status)
1397
+
1398
+ @property
1399
+ @pulumi.getter(name="billingEndDate")
1400
+ def billing_end_date(self) -> str:
1401
+ """
1402
+ The timestamp in UTC when the billing ends.
1403
+ """
1404
+ return pulumi.get(self, "billing_end_date")
1405
+
1406
+ @property
1407
+ @pulumi.getter(name="billingStartDate")
1408
+ def billing_start_date(self) -> str:
1409
+ """
1410
+ The timestamp in UTC when the billing starts.
1411
+ """
1412
+ return pulumi.get(self, "billing_start_date")
1413
+
1414
+ @property
1415
+ @pulumi.getter(name="disenrollmentDate")
1416
+ def disenrollment_date(self) -> str:
1417
+ """
1418
+ The timestamp in UTC when the user disenrolled the feature.
1419
+ """
1420
+ return pulumi.get(self, "disenrollment_date")
1421
+
1422
+ @property
1423
+ @pulumi.getter(name="enrollmentDate")
1424
+ def enrollment_date(self) -> str:
1425
+ """
1426
+ The timestamp in UTC when the user enrolls the feature.
1427
+ """
1428
+ return pulumi.get(self, "enrollment_date")
1429
+
1430
+ @property
1431
+ @pulumi.getter
1432
+ def error(self) -> 'outputs.ErrorDetailResponse':
1433
+ """
1434
+ The errors that were encountered during the feature enrollment or disenrollment.
1435
+ """
1436
+ return pulumi.get(self, "error")
1437
+
1438
+ @property
1439
+ @pulumi.getter(name="licenseChannel")
1440
+ def license_channel(self) -> str:
1441
+ """
1442
+ Indicates the license channel.
1443
+ """
1444
+ return pulumi.get(self, "license_channel")
1445
+
1446
+ @property
1447
+ @pulumi.getter(name="licenseStatus")
1448
+ def license_status(self) -> str:
1449
+ """
1450
+ Indicates the license status of the OS.
1451
+ """
1452
+ return pulumi.get(self, "license_status")
1453
+
1454
+ @property
1455
+ @pulumi.getter(name="esuProfile")
1456
+ def esu_profile(self) -> Optional['outputs.LicenseProfileMachineInstanceViewEsuPropertiesResponse']:
1457
+ """
1458
+ Properties for the Machine ESU profile.
1459
+ """
1460
+ return pulumi.get(self, "esu_profile")
1461
+
1462
+ @property
1463
+ @pulumi.getter(name="productFeatures")
1464
+ def product_features(self) -> Optional[Sequence['outputs.ProductFeatureResponse']]:
1465
+ """
1466
+ The list of product features.
1467
+ """
1468
+ return pulumi.get(self, "product_features")
1469
+
1470
+ @property
1471
+ @pulumi.getter(name="productType")
1472
+ def product_type(self) -> Optional[str]:
1473
+ """
1474
+ Indicates the product type of the license.
1475
+ """
1476
+ return pulumi.get(self, "product_type")
1477
+
1478
+ @property
1479
+ @pulumi.getter(name="softwareAssuranceCustomer")
1480
+ def software_assurance_customer(self) -> Optional[bool]:
1481
+ """
1482
+ Specifies if this machine is licensed as part of a Software Assurance agreement.
1483
+ """
1484
+ return pulumi.get(self, "software_assurance_customer")
1485
+
1486
+ @property
1487
+ @pulumi.getter(name="subscriptionStatus")
1488
+ def subscription_status(self) -> Optional[str]:
1489
+ """
1490
+ Indicates the subscription status of the product.
1491
+ """
1492
+ return pulumi.get(self, "subscription_status")
1493
+
1494
+
1495
+ @pulumi.output_type
1496
+ class LicenseResponse(dict):
1497
+ """
1498
+ Describes a license in a hybrid machine.
1499
+ """
1500
+ @staticmethod
1501
+ def __key_warning(key: str):
1502
+ suggest = None
1503
+ if key == "provisioningState":
1504
+ suggest = "provisioning_state"
1505
+ elif key == "systemData":
1506
+ suggest = "system_data"
1507
+ elif key == "licenseDetails":
1508
+ suggest = "license_details"
1509
+ elif key == "licenseType":
1510
+ suggest = "license_type"
1511
+ elif key == "tenantId":
1512
+ suggest = "tenant_id"
1513
+
1514
+ if suggest:
1515
+ pulumi.log.warn(f"Key '{key}' not found in LicenseResponse. Access the value via the '{suggest}' property getter instead.")
1516
+
1517
+ def __getitem__(self, key: str) -> Any:
1518
+ LicenseResponse.__key_warning(key)
1519
+ return super().__getitem__(key)
1520
+
1521
+ def get(self, key: str, default = None) -> Any:
1522
+ LicenseResponse.__key_warning(key)
1523
+ return super().get(key, default)
1524
+
1525
+ def __init__(__self__, *,
1526
+ id: str,
1527
+ location: str,
1528
+ name: str,
1529
+ provisioning_state: str,
1530
+ system_data: 'outputs.SystemDataResponse',
1531
+ type: str,
1532
+ license_details: Optional['outputs.LicenseDetailsResponse'] = None,
1533
+ license_type: Optional[str] = None,
1534
+ tags: Optional[Mapping[str, str]] = None,
1535
+ tenant_id: Optional[str] = None):
1536
+ """
1537
+ Describes a license in a hybrid machine.
1538
+ :param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
1539
+ :param str location: The geo-location where the resource lives
1540
+ :param str name: The name of the resource
1541
+ :param str provisioning_state: The provisioning state, which only appears in the response.
1542
+ :param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
1543
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
1544
+ :param 'LicenseDetailsResponse' license_details: Describes the properties of a License.
1545
+ :param str license_type: The type of the license resource.
1546
+ :param Mapping[str, str] tags: Resource tags.
1547
+ :param str tenant_id: Describes the tenant id.
1548
+ """
1549
+ pulumi.set(__self__, "id", id)
1550
+ pulumi.set(__self__, "location", location)
1551
+ pulumi.set(__self__, "name", name)
1552
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1553
+ pulumi.set(__self__, "system_data", system_data)
1554
+ pulumi.set(__self__, "type", type)
1555
+ if license_details is not None:
1556
+ pulumi.set(__self__, "license_details", license_details)
1557
+ if license_type is not None:
1558
+ pulumi.set(__self__, "license_type", license_type)
1559
+ if tags is not None:
1560
+ pulumi.set(__self__, "tags", tags)
1561
+ if tenant_id is not None:
1562
+ pulumi.set(__self__, "tenant_id", tenant_id)
1563
+
1564
+ @property
1565
+ @pulumi.getter
1566
+ def id(self) -> str:
1567
+ """
1568
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
1569
+ """
1570
+ return pulumi.get(self, "id")
1571
+
1572
+ @property
1573
+ @pulumi.getter
1574
+ def location(self) -> str:
1575
+ """
1576
+ The geo-location where the resource lives
1577
+ """
1578
+ return pulumi.get(self, "location")
1579
+
1580
+ @property
1581
+ @pulumi.getter
1582
+ def name(self) -> str:
1583
+ """
1584
+ The name of the resource
1585
+ """
1586
+ return pulumi.get(self, "name")
1587
+
1588
+ @property
1589
+ @pulumi.getter(name="provisioningState")
1590
+ def provisioning_state(self) -> str:
1591
+ """
1592
+ The provisioning state, which only appears in the response.
1593
+ """
1594
+ return pulumi.get(self, "provisioning_state")
1595
+
1596
+ @property
1597
+ @pulumi.getter(name="systemData")
1598
+ def system_data(self) -> 'outputs.SystemDataResponse':
1599
+ """
1600
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
1601
+ """
1602
+ return pulumi.get(self, "system_data")
1603
+
1604
+ @property
1605
+ @pulumi.getter
1606
+ def type(self) -> str:
1607
+ """
1608
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
1609
+ """
1610
+ return pulumi.get(self, "type")
1611
+
1612
+ @property
1613
+ @pulumi.getter(name="licenseDetails")
1614
+ def license_details(self) -> Optional['outputs.LicenseDetailsResponse']:
1615
+ """
1616
+ Describes the properties of a License.
1617
+ """
1618
+ return pulumi.get(self, "license_details")
1619
+
1620
+ @property
1621
+ @pulumi.getter(name="licenseType")
1622
+ def license_type(self) -> Optional[str]:
1623
+ """
1624
+ The type of the license resource.
1625
+ """
1626
+ return pulumi.get(self, "license_type")
1627
+
1628
+ @property
1629
+ @pulumi.getter
1630
+ def tags(self) -> Optional[Mapping[str, str]]:
1631
+ """
1632
+ Resource tags.
1633
+ """
1634
+ return pulumi.get(self, "tags")
1635
+
1636
+ @property
1637
+ @pulumi.getter(name="tenantId")
1638
+ def tenant_id(self) -> Optional[str]:
1639
+ """
1640
+ Describes the tenant id.
1641
+ """
1642
+ return pulumi.get(self, "tenant_id")
1643
+
1644
+
1645
+ @pulumi.output_type
1646
+ class LocationDataResponse(dict):
1647
+ """
1648
+ Metadata pertaining to the geographic location of the resource.
1649
+ """
1650
+ @staticmethod
1651
+ def __key_warning(key: str):
1652
+ suggest = None
1653
+ if key == "countryOrRegion":
1654
+ suggest = "country_or_region"
1655
+
1656
+ if suggest:
1657
+ pulumi.log.warn(f"Key '{key}' not found in LocationDataResponse. Access the value via the '{suggest}' property getter instead.")
1658
+
1659
+ def __getitem__(self, key: str) -> Any:
1660
+ LocationDataResponse.__key_warning(key)
1661
+ return super().__getitem__(key)
1662
+
1663
+ def get(self, key: str, default = None) -> Any:
1664
+ LocationDataResponse.__key_warning(key)
1665
+ return super().get(key, default)
1666
+
1667
+ def __init__(__self__, *,
1668
+ name: str,
1669
+ city: Optional[str] = None,
1670
+ country_or_region: Optional[str] = None,
1671
+ district: Optional[str] = None):
1672
+ """
1673
+ Metadata pertaining to the geographic location of the resource.
1674
+ :param str name: A canonical name for the geographic or physical location.
1675
+ :param str city: The city or locality where the resource is located.
1676
+ :param str country_or_region: The country or region where the resource is located
1677
+ :param str district: The district, state, or province where the resource is located.
1678
+ """
1679
+ pulumi.set(__self__, "name", name)
1680
+ if city is not None:
1681
+ pulumi.set(__self__, "city", city)
1682
+ if country_or_region is not None:
1683
+ pulumi.set(__self__, "country_or_region", country_or_region)
1684
+ if district is not None:
1685
+ pulumi.set(__self__, "district", district)
1686
+
1687
+ @property
1688
+ @pulumi.getter
1689
+ def name(self) -> str:
1690
+ """
1691
+ A canonical name for the geographic or physical location.
1692
+ """
1693
+ return pulumi.get(self, "name")
1694
+
1695
+ @property
1696
+ @pulumi.getter
1697
+ def city(self) -> Optional[str]:
1698
+ """
1699
+ The city or locality where the resource is located.
1700
+ """
1701
+ return pulumi.get(self, "city")
1702
+
1703
+ @property
1704
+ @pulumi.getter(name="countryOrRegion")
1705
+ def country_or_region(self) -> Optional[str]:
1706
+ """
1707
+ The country or region where the resource is located
1708
+ """
1709
+ return pulumi.get(self, "country_or_region")
1710
+
1711
+ @property
1712
+ @pulumi.getter
1713
+ def district(self) -> Optional[str]:
1714
+ """
1715
+ The district, state, or province where the resource is located.
1716
+ """
1717
+ return pulumi.get(self, "district")
1718
+
1719
+
1720
+ @pulumi.output_type
1721
+ class MachineExtensionInstanceViewResponse(dict):
1722
+ """
1723
+ Describes the Machine Extension Instance View.
1724
+ """
1725
+ @staticmethod
1726
+ def __key_warning(key: str):
1727
+ suggest = None
1728
+ if key == "typeHandlerVersion":
1729
+ suggest = "type_handler_version"
1730
+
1731
+ if suggest:
1732
+ pulumi.log.warn(f"Key '{key}' not found in MachineExtensionInstanceViewResponse. Access the value via the '{suggest}' property getter instead.")
1733
+
1734
+ def __getitem__(self, key: str) -> Any:
1735
+ MachineExtensionInstanceViewResponse.__key_warning(key)
1736
+ return super().__getitem__(key)
1737
+
1738
+ def get(self, key: str, default = None) -> Any:
1739
+ MachineExtensionInstanceViewResponse.__key_warning(key)
1740
+ return super().get(key, default)
1741
+
1742
+ def __init__(__self__, *,
1743
+ name: Optional[str] = None,
1744
+ status: Optional['outputs.MachineExtensionInstanceViewResponseStatus'] = None,
1745
+ type: Optional[str] = None,
1746
+ type_handler_version: Optional[str] = None):
1747
+ """
1748
+ Describes the Machine Extension Instance View.
1749
+ :param str name: The machine extension name.
1750
+ :param 'MachineExtensionInstanceViewResponseStatus' status: Instance view status.
1751
+ :param str type: Specifies the type of the extension; an example is "CustomScriptExtension".
1752
+ :param str type_handler_version: Specifies the version of the script handler.
1753
+ """
1754
+ if name is not None:
1755
+ pulumi.set(__self__, "name", name)
1756
+ if status is not None:
1757
+ pulumi.set(__self__, "status", status)
1758
+ if type is not None:
1759
+ pulumi.set(__self__, "type", type)
1760
+ if type_handler_version is not None:
1761
+ pulumi.set(__self__, "type_handler_version", type_handler_version)
1762
+
1763
+ @property
1764
+ @pulumi.getter
1765
+ def name(self) -> Optional[str]:
1766
+ """
1767
+ The machine extension name.
1768
+ """
1769
+ return pulumi.get(self, "name")
1770
+
1771
+ @property
1772
+ @pulumi.getter
1773
+ def status(self) -> Optional['outputs.MachineExtensionInstanceViewResponseStatus']:
1774
+ """
1775
+ Instance view status.
1776
+ """
1777
+ return pulumi.get(self, "status")
1778
+
1779
+ @property
1780
+ @pulumi.getter
1781
+ def type(self) -> Optional[str]:
1782
+ """
1783
+ Specifies the type of the extension; an example is "CustomScriptExtension".
1784
+ """
1785
+ return pulumi.get(self, "type")
1786
+
1787
+ @property
1788
+ @pulumi.getter(name="typeHandlerVersion")
1789
+ def type_handler_version(self) -> Optional[str]:
1790
+ """
1791
+ Specifies the version of the script handler.
1792
+ """
1793
+ return pulumi.get(self, "type_handler_version")
1794
+
1795
+
1796
+ @pulumi.output_type
1797
+ class MachineExtensionInstanceViewResponseStatus(dict):
1798
+ """
1799
+ Instance view status.
1800
+ """
1801
+ @staticmethod
1802
+ def __key_warning(key: str):
1803
+ suggest = None
1804
+ if key == "displayStatus":
1805
+ suggest = "display_status"
1806
+
1807
+ if suggest:
1808
+ pulumi.log.warn(f"Key '{key}' not found in MachineExtensionInstanceViewResponseStatus. Access the value via the '{suggest}' property getter instead.")
1809
+
1810
+ def __getitem__(self, key: str) -> Any:
1811
+ MachineExtensionInstanceViewResponseStatus.__key_warning(key)
1812
+ return super().__getitem__(key)
1813
+
1814
+ def get(self, key: str, default = None) -> Any:
1815
+ MachineExtensionInstanceViewResponseStatus.__key_warning(key)
1816
+ return super().get(key, default)
1817
+
1818
+ def __init__(__self__, *,
1819
+ code: Optional[str] = None,
1820
+ display_status: Optional[str] = None,
1821
+ level: Optional[str] = None,
1822
+ message: Optional[str] = None,
1823
+ time: Optional[str] = None):
1824
+ """
1825
+ Instance view status.
1826
+ :param str code: The status code.
1827
+ :param str display_status: The short localizable label for the status.
1828
+ :param str level: The level code.
1829
+ :param str message: The detailed status message, including for alerts and error messages.
1830
+ :param str time: The time of the status.
1831
+ """
1832
+ if code is not None:
1833
+ pulumi.set(__self__, "code", code)
1834
+ if display_status is not None:
1835
+ pulumi.set(__self__, "display_status", display_status)
1836
+ if level is not None:
1837
+ pulumi.set(__self__, "level", level)
1838
+ if message is not None:
1839
+ pulumi.set(__self__, "message", message)
1840
+ if time is not None:
1841
+ pulumi.set(__self__, "time", time)
1842
+
1843
+ @property
1844
+ @pulumi.getter
1845
+ def code(self) -> Optional[str]:
1846
+ """
1847
+ The status code.
1848
+ """
1849
+ return pulumi.get(self, "code")
1850
+
1851
+ @property
1852
+ @pulumi.getter(name="displayStatus")
1853
+ def display_status(self) -> Optional[str]:
1854
+ """
1855
+ The short localizable label for the status.
1856
+ """
1857
+ return pulumi.get(self, "display_status")
1858
+
1859
+ @property
1860
+ @pulumi.getter
1861
+ def level(self) -> Optional[str]:
1862
+ """
1863
+ The level code.
1864
+ """
1865
+ return pulumi.get(self, "level")
1866
+
1867
+ @property
1868
+ @pulumi.getter
1869
+ def message(self) -> Optional[str]:
1870
+ """
1871
+ The detailed status message, including for alerts and error messages.
1872
+ """
1873
+ return pulumi.get(self, "message")
1874
+
1875
+ @property
1876
+ @pulumi.getter
1877
+ def time(self) -> Optional[str]:
1878
+ """
1879
+ The time of the status.
1880
+ """
1881
+ return pulumi.get(self, "time")
1882
+
1883
+
1884
+ @pulumi.output_type
1885
+ class MachineExtensionPropertiesResponse(dict):
1886
+ """
1887
+ Describes the properties of a Machine Extension.
1888
+ """
1889
+ @staticmethod
1890
+ def __key_warning(key: str):
1891
+ suggest = None
1892
+ if key == "provisioningState":
1893
+ suggest = "provisioning_state"
1894
+ elif key == "autoUpgradeMinorVersion":
1895
+ suggest = "auto_upgrade_minor_version"
1896
+ elif key == "enableAutomaticUpgrade":
1897
+ suggest = "enable_automatic_upgrade"
1898
+ elif key == "forceUpdateTag":
1899
+ suggest = "force_update_tag"
1900
+ elif key == "instanceView":
1901
+ suggest = "instance_view"
1902
+ elif key == "protectedSettings":
1903
+ suggest = "protected_settings"
1904
+ elif key == "typeHandlerVersion":
1905
+ suggest = "type_handler_version"
1906
+
1907
+ if suggest:
1908
+ pulumi.log.warn(f"Key '{key}' not found in MachineExtensionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1909
+
1910
+ def __getitem__(self, key: str) -> Any:
1911
+ MachineExtensionPropertiesResponse.__key_warning(key)
1912
+ return super().__getitem__(key)
1913
+
1914
+ def get(self, key: str, default = None) -> Any:
1915
+ MachineExtensionPropertiesResponse.__key_warning(key)
1916
+ return super().get(key, default)
1917
+
1918
+ def __init__(__self__, *,
1919
+ provisioning_state: str,
1920
+ auto_upgrade_minor_version: Optional[bool] = None,
1921
+ enable_automatic_upgrade: Optional[bool] = None,
1922
+ force_update_tag: Optional[str] = None,
1923
+ instance_view: Optional['outputs.MachineExtensionInstanceViewResponse'] = None,
1924
+ protected_settings: Optional[Any] = None,
1925
+ publisher: Optional[str] = None,
1926
+ settings: Optional[Any] = None,
1927
+ type: Optional[str] = None,
1928
+ type_handler_version: Optional[str] = None):
1929
+ """
1930
+ Describes the properties of a Machine Extension.
1931
+ :param str provisioning_state: The provisioning state, which only appears in the response.
1932
+ :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.
1933
+ :param bool enable_automatic_upgrade: Indicates whether the extension should be automatically upgraded by the platform if there is a newer version available.
1934
+ :param str force_update_tag: How the extension handler should be forced to update even if the extension configuration has not changed.
1935
+ :param 'MachineExtensionInstanceViewResponse' instance_view: The machine extension instance view.
1936
+ :param Any protected_settings: The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
1937
+ :param str publisher: The name of the extension handler publisher.
1938
+ :param Any settings: Json formatted public settings for the extension.
1939
+ :param str type: Specifies the type of the extension; an example is "CustomScriptExtension".
1940
+ :param str type_handler_version: Specifies the version of the script handler.
1941
+ """
1942
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1943
+ if auto_upgrade_minor_version is not None:
1944
+ pulumi.set(__self__, "auto_upgrade_minor_version", auto_upgrade_minor_version)
1945
+ if enable_automatic_upgrade is not None:
1946
+ pulumi.set(__self__, "enable_automatic_upgrade", enable_automatic_upgrade)
1947
+ if force_update_tag is not None:
1948
+ pulumi.set(__self__, "force_update_tag", force_update_tag)
1949
+ if instance_view is not None:
1950
+ pulumi.set(__self__, "instance_view", instance_view)
1951
+ if protected_settings is not None:
1952
+ pulumi.set(__self__, "protected_settings", protected_settings)
1953
+ if publisher is not None:
1954
+ pulumi.set(__self__, "publisher", publisher)
1955
+ if settings is not None:
1956
+ pulumi.set(__self__, "settings", settings)
1957
+ if type is not None:
1958
+ pulumi.set(__self__, "type", type)
1959
+ if type_handler_version is not None:
1960
+ pulumi.set(__self__, "type_handler_version", type_handler_version)
1961
+
1962
+ @property
1963
+ @pulumi.getter(name="provisioningState")
1964
+ def provisioning_state(self) -> str:
1965
+ """
1966
+ The provisioning state, which only appears in the response.
1967
+ """
1968
+ return pulumi.get(self, "provisioning_state")
1969
+
1970
+ @property
1971
+ @pulumi.getter(name="autoUpgradeMinorVersion")
1972
+ def auto_upgrade_minor_version(self) -> Optional[bool]:
1973
+ """
1974
+ 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.
1975
+ """
1976
+ return pulumi.get(self, "auto_upgrade_minor_version")
1977
+
1978
+ @property
1979
+ @pulumi.getter(name="enableAutomaticUpgrade")
1980
+ def enable_automatic_upgrade(self) -> Optional[bool]:
1981
+ """
1982
+ Indicates whether the extension should be automatically upgraded by the platform if there is a newer version available.
1983
+ """
1984
+ return pulumi.get(self, "enable_automatic_upgrade")
1985
+
1986
+ @property
1987
+ @pulumi.getter(name="forceUpdateTag")
1988
+ def force_update_tag(self) -> Optional[str]:
1989
+ """
1990
+ How the extension handler should be forced to update even if the extension configuration has not changed.
1991
+ """
1992
+ return pulumi.get(self, "force_update_tag")
1993
+
1994
+ @property
1995
+ @pulumi.getter(name="instanceView")
1996
+ def instance_view(self) -> Optional['outputs.MachineExtensionInstanceViewResponse']:
1997
+ """
1998
+ The machine extension instance view.
1999
+ """
2000
+ return pulumi.get(self, "instance_view")
2001
+
2002
+ @property
2003
+ @pulumi.getter(name="protectedSettings")
2004
+ def protected_settings(self) -> Optional[Any]:
2005
+ """
2006
+ The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
2007
+ """
2008
+ return pulumi.get(self, "protected_settings")
2009
+
2010
+ @property
2011
+ @pulumi.getter
2012
+ def publisher(self) -> Optional[str]:
2013
+ """
2014
+ The name of the extension handler publisher.
2015
+ """
2016
+ return pulumi.get(self, "publisher")
2017
+
2018
+ @property
2019
+ @pulumi.getter
2020
+ def settings(self) -> Optional[Any]:
2021
+ """
2022
+ Json formatted public settings for the extension.
2023
+ """
2024
+ return pulumi.get(self, "settings")
2025
+
2026
+ @property
2027
+ @pulumi.getter
2028
+ def type(self) -> Optional[str]:
2029
+ """
2030
+ Specifies the type of the extension; an example is "CustomScriptExtension".
2031
+ """
2032
+ return pulumi.get(self, "type")
2033
+
2034
+ @property
2035
+ @pulumi.getter(name="typeHandlerVersion")
2036
+ def type_handler_version(self) -> Optional[str]:
2037
+ """
2038
+ Specifies the version of the script handler.
2039
+ """
2040
+ return pulumi.get(self, "type_handler_version")
2041
+
2042
+
2043
+ @pulumi.output_type
2044
+ class MachineExtensionResponse(dict):
2045
+ """
2046
+ Describes a Machine Extension.
2047
+ """
2048
+ @staticmethod
2049
+ def __key_warning(key: str):
2050
+ suggest = None
2051
+ if key == "systemData":
2052
+ suggest = "system_data"
2053
+
2054
+ if suggest:
2055
+ pulumi.log.warn(f"Key '{key}' not found in MachineExtensionResponse. Access the value via the '{suggest}' property getter instead.")
2056
+
2057
+ def __getitem__(self, key: str) -> Any:
2058
+ MachineExtensionResponse.__key_warning(key)
2059
+ return super().__getitem__(key)
2060
+
2061
+ def get(self, key: str, default = None) -> Any:
2062
+ MachineExtensionResponse.__key_warning(key)
2063
+ return super().get(key, default)
2064
+
2065
+ def __init__(__self__, *,
2066
+ id: str,
2067
+ location: str,
2068
+ name: str,
2069
+ system_data: 'outputs.SystemDataResponse',
2070
+ type: str,
2071
+ properties: Optional['outputs.MachineExtensionPropertiesResponse'] = None,
2072
+ tags: Optional[Mapping[str, str]] = None):
2073
+ """
2074
+ Describes a Machine Extension.
2075
+ :param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
2076
+ :param str location: The geo-location where the resource lives
2077
+ :param str name: The name of the resource
2078
+ :param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
2079
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
2080
+ :param 'MachineExtensionPropertiesResponse' properties: Describes Machine Extension Properties.
2081
+ :param Mapping[str, str] tags: Resource tags.
2082
+ """
2083
+ pulumi.set(__self__, "id", id)
2084
+ pulumi.set(__self__, "location", location)
2085
+ pulumi.set(__self__, "name", name)
2086
+ pulumi.set(__self__, "system_data", system_data)
2087
+ pulumi.set(__self__, "type", type)
2088
+ if properties is not None:
2089
+ pulumi.set(__self__, "properties", properties)
2090
+ if tags is not None:
2091
+ pulumi.set(__self__, "tags", tags)
2092
+
2093
+ @property
2094
+ @pulumi.getter
2095
+ def id(self) -> str:
2096
+ """
2097
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
2098
+ """
2099
+ return pulumi.get(self, "id")
2100
+
2101
+ @property
2102
+ @pulumi.getter
2103
+ def location(self) -> str:
2104
+ """
2105
+ The geo-location where the resource lives
2106
+ """
2107
+ return pulumi.get(self, "location")
2108
+
2109
+ @property
2110
+ @pulumi.getter
2111
+ def name(self) -> str:
2112
+ """
2113
+ The name of the resource
2114
+ """
2115
+ return pulumi.get(self, "name")
2116
+
2117
+ @property
2118
+ @pulumi.getter(name="systemData")
2119
+ def system_data(self) -> 'outputs.SystemDataResponse':
2120
+ """
2121
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
2122
+ """
2123
+ return pulumi.get(self, "system_data")
2124
+
2125
+ @property
2126
+ @pulumi.getter
2127
+ def type(self) -> str:
2128
+ """
2129
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
2130
+ """
2131
+ return pulumi.get(self, "type")
2132
+
2133
+ @property
2134
+ @pulumi.getter
2135
+ def properties(self) -> Optional['outputs.MachineExtensionPropertiesResponse']:
2136
+ """
2137
+ Describes Machine Extension Properties.
2138
+ """
2139
+ return pulumi.get(self, "properties")
2140
+
2141
+ @property
2142
+ @pulumi.getter
2143
+ def tags(self) -> Optional[Mapping[str, str]]:
2144
+ """
2145
+ Resource tags.
2146
+ """
2147
+ return pulumi.get(self, "tags")
2148
+
2149
+
2150
+ @pulumi.output_type
2151
+ class MachineRunCommandInstanceViewResponse(dict):
2152
+ """
2153
+ The instance view of a machine run command.
2154
+ """
2155
+ @staticmethod
2156
+ def __key_warning(key: str):
2157
+ suggest = None
2158
+ if key == "endTime":
2159
+ suggest = "end_time"
2160
+ elif key == "executionMessage":
2161
+ suggest = "execution_message"
2162
+ elif key == "executionState":
2163
+ suggest = "execution_state"
2164
+ elif key == "exitCode":
2165
+ suggest = "exit_code"
2166
+ elif key == "startTime":
2167
+ suggest = "start_time"
2168
+
2169
+ if suggest:
2170
+ pulumi.log.warn(f"Key '{key}' not found in MachineRunCommandInstanceViewResponse. Access the value via the '{suggest}' property getter instead.")
2171
+
2172
+ def __getitem__(self, key: str) -> Any:
2173
+ MachineRunCommandInstanceViewResponse.__key_warning(key)
2174
+ return super().__getitem__(key)
2175
+
2176
+ def get(self, key: str, default = None) -> Any:
2177
+ MachineRunCommandInstanceViewResponse.__key_warning(key)
2178
+ return super().get(key, default)
2179
+
2180
+ def __init__(__self__, *,
2181
+ end_time: Optional[str] = None,
2182
+ error: Optional[str] = None,
2183
+ execution_message: Optional[str] = None,
2184
+ execution_state: Optional[str] = None,
2185
+ exit_code: Optional[int] = None,
2186
+ output: Optional[str] = None,
2187
+ start_time: Optional[str] = None,
2188
+ statuses: Optional[Sequence['outputs.ExtensionsResourceStatusResponse']] = None):
2189
+ """
2190
+ The instance view of a machine run command.
2191
+ :param str end_time: Script end time.
2192
+ :param str error: Script error stream.
2193
+ :param str execution_message: Communicate script configuration errors or execution messages.
2194
+ :param str execution_state: Script execution status.
2195
+ :param int exit_code: Exit code returned from script execution.
2196
+ :param str output: Script output stream.
2197
+ :param str start_time: Script start time.
2198
+ :param Sequence['ExtensionsResourceStatusResponse'] statuses: The status information.
2199
+ """
2200
+ if end_time is not None:
2201
+ pulumi.set(__self__, "end_time", end_time)
2202
+ if error is not None:
2203
+ pulumi.set(__self__, "error", error)
2204
+ if execution_message is not None:
2205
+ pulumi.set(__self__, "execution_message", execution_message)
2206
+ if execution_state is not None:
2207
+ pulumi.set(__self__, "execution_state", execution_state)
2208
+ if exit_code is not None:
2209
+ pulumi.set(__self__, "exit_code", exit_code)
2210
+ if output is not None:
2211
+ pulumi.set(__self__, "output", output)
2212
+ if start_time is not None:
2213
+ pulumi.set(__self__, "start_time", start_time)
2214
+ if statuses is not None:
2215
+ pulumi.set(__self__, "statuses", statuses)
2216
+
2217
+ @property
2218
+ @pulumi.getter(name="endTime")
2219
+ def end_time(self) -> Optional[str]:
2220
+ """
2221
+ Script end time.
2222
+ """
2223
+ return pulumi.get(self, "end_time")
2224
+
2225
+ @property
2226
+ @pulumi.getter
2227
+ def error(self) -> Optional[str]:
2228
+ """
2229
+ Script error stream.
2230
+ """
2231
+ return pulumi.get(self, "error")
2232
+
2233
+ @property
2234
+ @pulumi.getter(name="executionMessage")
2235
+ def execution_message(self) -> Optional[str]:
2236
+ """
2237
+ Communicate script configuration errors or execution messages.
2238
+ """
2239
+ return pulumi.get(self, "execution_message")
2240
+
2241
+ @property
2242
+ @pulumi.getter(name="executionState")
2243
+ def execution_state(self) -> Optional[str]:
2244
+ """
2245
+ Script execution status.
2246
+ """
2247
+ return pulumi.get(self, "execution_state")
2248
+
2249
+ @property
2250
+ @pulumi.getter(name="exitCode")
2251
+ def exit_code(self) -> Optional[int]:
2252
+ """
2253
+ Exit code returned from script execution.
2254
+ """
2255
+ return pulumi.get(self, "exit_code")
2256
+
2257
+ @property
2258
+ @pulumi.getter
2259
+ def output(self) -> Optional[str]:
2260
+ """
2261
+ Script output stream.
2262
+ """
2263
+ return pulumi.get(self, "output")
2264
+
2265
+ @property
2266
+ @pulumi.getter(name="startTime")
2267
+ def start_time(self) -> Optional[str]:
2268
+ """
2269
+ Script start time.
2270
+ """
2271
+ return pulumi.get(self, "start_time")
2272
+
2273
+ @property
2274
+ @pulumi.getter
2275
+ def statuses(self) -> Optional[Sequence['outputs.ExtensionsResourceStatusResponse']]:
2276
+ """
2277
+ The status information.
2278
+ """
2279
+ return pulumi.get(self, "statuses")
2280
+
2281
+
2282
+ @pulumi.output_type
2283
+ class MachineRunCommandScriptSourceResponse(dict):
2284
+ """
2285
+ Describes the script sources for run command. Use only one of script, scriptUri, commandId.
2286
+ """
2287
+ @staticmethod
2288
+ def __key_warning(key: str):
2289
+ suggest = None
2290
+ if key == "commandId":
2291
+ suggest = "command_id"
2292
+ elif key == "scriptUri":
2293
+ suggest = "script_uri"
2294
+ elif key == "scriptUriManagedIdentity":
2295
+ suggest = "script_uri_managed_identity"
2296
+
2297
+ if suggest:
2298
+ pulumi.log.warn(f"Key '{key}' not found in MachineRunCommandScriptSourceResponse. Access the value via the '{suggest}' property getter instead.")
2299
+
2300
+ def __getitem__(self, key: str) -> Any:
2301
+ MachineRunCommandScriptSourceResponse.__key_warning(key)
2302
+ return super().__getitem__(key)
2303
+
2304
+ def get(self, key: str, default = None) -> Any:
2305
+ MachineRunCommandScriptSourceResponse.__key_warning(key)
2306
+ return super().get(key, default)
2307
+
2308
+ def __init__(__self__, *,
2309
+ command_id: Optional[str] = None,
2310
+ script: Optional[str] = None,
2311
+ script_uri: Optional[str] = None,
2312
+ script_uri_managed_identity: Optional['outputs.RunCommandManagedIdentityResponse'] = None):
2313
+ """
2314
+ Describes the script sources for run command. Use only one of script, scriptUri, commandId.
2315
+ :param str command_id: Specifies the commandId of predefined built-in script.
2316
+ :param str script: Specifies the script content to be executed on the machine.
2317
+ :param str script_uri: Specifies the script download location. It can be either SAS URI of an Azure storage blob with read access or public URI.
2318
+ :param 'RunCommandManagedIdentityResponse' script_uri_managed_identity: User-assigned managed identity that has access to scriptUri in case of Azure storage blob. Use an empty object in case of system-assigned identity. Make sure the Azure storage blob exists, and managed identity has been given access to blob's container with 'Storage Blob Data Reader' role assignment. In case of user-assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged.
2319
+ """
2320
+ if command_id is not None:
2321
+ pulumi.set(__self__, "command_id", command_id)
2322
+ if script is not None:
2323
+ pulumi.set(__self__, "script", script)
2324
+ if script_uri is not None:
2325
+ pulumi.set(__self__, "script_uri", script_uri)
2326
+ if script_uri_managed_identity is not None:
2327
+ pulumi.set(__self__, "script_uri_managed_identity", script_uri_managed_identity)
2328
+
2329
+ @property
2330
+ @pulumi.getter(name="commandId")
2331
+ def command_id(self) -> Optional[str]:
2332
+ """
2333
+ Specifies the commandId of predefined built-in script.
2334
+ """
2335
+ return pulumi.get(self, "command_id")
2336
+
2337
+ @property
2338
+ @pulumi.getter
2339
+ def script(self) -> Optional[str]:
2340
+ """
2341
+ Specifies the script content to be executed on the machine.
2342
+ """
2343
+ return pulumi.get(self, "script")
2344
+
2345
+ @property
2346
+ @pulumi.getter(name="scriptUri")
2347
+ def script_uri(self) -> Optional[str]:
2348
+ """
2349
+ Specifies the script download location. It can be either SAS URI of an Azure storage blob with read access or public URI.
2350
+ """
2351
+ return pulumi.get(self, "script_uri")
2352
+
2353
+ @property
2354
+ @pulumi.getter(name="scriptUriManagedIdentity")
2355
+ def script_uri_managed_identity(self) -> Optional['outputs.RunCommandManagedIdentityResponse']:
2356
+ """
2357
+ User-assigned managed identity that has access to scriptUri in case of Azure storage blob. Use an empty object in case of system-assigned identity. Make sure the Azure storage blob exists, and managed identity has been given access to blob's container with 'Storage Blob Data Reader' role assignment. In case of user-assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged.
2358
+ """
2359
+ return pulumi.get(self, "script_uri_managed_identity")
2360
+
2361
+
2362
+ @pulumi.output_type
2363
+ class NetworkInterfaceResponse(dict):
2364
+ """
2365
+ Describes a network interface.
2366
+ """
2367
+ @staticmethod
2368
+ def __key_warning(key: str):
2369
+ suggest = None
2370
+ if key == "ipAddresses":
2371
+ suggest = "ip_addresses"
2372
+ elif key == "macAddress":
2373
+ suggest = "mac_address"
2374
+
2375
+ if suggest:
2376
+ pulumi.log.warn(f"Key '{key}' not found in NetworkInterfaceResponse. Access the value via the '{suggest}' property getter instead.")
2377
+
2378
+ def __getitem__(self, key: str) -> Any:
2379
+ NetworkInterfaceResponse.__key_warning(key)
2380
+ return super().__getitem__(key)
2381
+
2382
+ def get(self, key: str, default = None) -> Any:
2383
+ NetworkInterfaceResponse.__key_warning(key)
2384
+ return super().get(key, default)
2385
+
2386
+ def __init__(__self__, *,
2387
+ id: Optional[str] = None,
2388
+ ip_addresses: Optional[Sequence['outputs.IpAddressResponse']] = None,
2389
+ mac_address: Optional[str] = None,
2390
+ name: Optional[str] = None):
2391
+ """
2392
+ Describes a network interface.
2393
+ :param str id: Represents the ID of the network interface.
2394
+ :param Sequence['IpAddressResponse'] ip_addresses: The list of IP addresses in this interface.
2395
+ :param str mac_address: Represents MAC address of the network interface.
2396
+ :param str name: Represents the name of the network interface.
2397
+ """
2398
+ if id is not None:
2399
+ pulumi.set(__self__, "id", id)
2400
+ if ip_addresses is not None:
2401
+ pulumi.set(__self__, "ip_addresses", ip_addresses)
2402
+ if mac_address is not None:
2403
+ pulumi.set(__self__, "mac_address", mac_address)
2404
+ if name is not None:
2405
+ pulumi.set(__self__, "name", name)
2406
+
2407
+ @property
2408
+ @pulumi.getter
2409
+ def id(self) -> Optional[str]:
2410
+ """
2411
+ Represents the ID of the network interface.
2412
+ """
2413
+ return pulumi.get(self, "id")
2414
+
2415
+ @property
2416
+ @pulumi.getter(name="ipAddresses")
2417
+ def ip_addresses(self) -> Optional[Sequence['outputs.IpAddressResponse']]:
2418
+ """
2419
+ The list of IP addresses in this interface.
2420
+ """
2421
+ return pulumi.get(self, "ip_addresses")
2422
+
2423
+ @property
2424
+ @pulumi.getter(name="macAddress")
2425
+ def mac_address(self) -> Optional[str]:
2426
+ """
2427
+ Represents MAC address of the network interface.
2428
+ """
2429
+ return pulumi.get(self, "mac_address")
2430
+
2431
+ @property
2432
+ @pulumi.getter
2433
+ def name(self) -> Optional[str]:
2434
+ """
2435
+ Represents the name of the network interface.
2436
+ """
2437
+ return pulumi.get(self, "name")
2438
+
2439
+
2440
+ @pulumi.output_type
2441
+ class NetworkProfileResponse(dict):
2442
+ """
2443
+ Describes the network information on this machine.
2444
+ """
2445
+ @staticmethod
2446
+ def __key_warning(key: str):
2447
+ suggest = None
2448
+ if key == "networkInterfaces":
2449
+ suggest = "network_interfaces"
2450
+
2451
+ if suggest:
2452
+ pulumi.log.warn(f"Key '{key}' not found in NetworkProfileResponse. Access the value via the '{suggest}' property getter instead.")
2453
+
2454
+ def __getitem__(self, key: str) -> Any:
2455
+ NetworkProfileResponse.__key_warning(key)
2456
+ return super().__getitem__(key)
2457
+
2458
+ def get(self, key: str, default = None) -> Any:
2459
+ NetworkProfileResponse.__key_warning(key)
2460
+ return super().get(key, default)
2461
+
2462
+ def __init__(__self__, *,
2463
+ network_interfaces: Optional[Sequence['outputs.NetworkInterfaceResponse']] = None):
2464
+ """
2465
+ Describes the network information on this machine.
2466
+ :param Sequence['NetworkInterfaceResponse'] network_interfaces: The list of network interfaces.
2467
+ """
2468
+ if network_interfaces is not None:
2469
+ pulumi.set(__self__, "network_interfaces", network_interfaces)
2470
+
2471
+ @property
2472
+ @pulumi.getter(name="networkInterfaces")
2473
+ def network_interfaces(self) -> Optional[Sequence['outputs.NetworkInterfaceResponse']]:
2474
+ """
2475
+ The list of network interfaces.
2476
+ """
2477
+ return pulumi.get(self, "network_interfaces")
2478
+
2479
+
2480
+ @pulumi.output_type
2481
+ class OSProfileResponse(dict):
2482
+ """
2483
+ Specifies the operating system settings for the hybrid machine.
2484
+ """
2485
+ @staticmethod
2486
+ def __key_warning(key: str):
2487
+ suggest = None
2488
+ if key == "computerName":
2489
+ suggest = "computer_name"
2490
+ elif key == "linuxConfiguration":
2491
+ suggest = "linux_configuration"
2492
+ elif key == "windowsConfiguration":
2493
+ suggest = "windows_configuration"
2494
+
2495
+ if suggest:
2496
+ pulumi.log.warn(f"Key '{key}' not found in OSProfileResponse. Access the value via the '{suggest}' property getter instead.")
2497
+
2498
+ def __getitem__(self, key: str) -> Any:
2499
+ OSProfileResponse.__key_warning(key)
2500
+ return super().__getitem__(key)
2501
+
2502
+ def get(self, key: str, default = None) -> Any:
2503
+ OSProfileResponse.__key_warning(key)
2504
+ return super().get(key, default)
2505
+
2506
+ def __init__(__self__, *,
2507
+ computer_name: str,
2508
+ linux_configuration: Optional['outputs.OSProfileResponseLinuxConfiguration'] = None,
2509
+ windows_configuration: Optional['outputs.OSProfileResponseWindowsConfiguration'] = None):
2510
+ """
2511
+ Specifies the operating system settings for the hybrid machine.
2512
+ :param str computer_name: Specifies the host OS name of the hybrid machine.
2513
+ :param 'OSProfileResponseLinuxConfiguration' linux_configuration: Specifies the linux configuration for update management.
2514
+ :param 'OSProfileResponseWindowsConfiguration' windows_configuration: Specifies the windows configuration for update management.
2515
+ """
2516
+ pulumi.set(__self__, "computer_name", computer_name)
2517
+ if linux_configuration is not None:
2518
+ pulumi.set(__self__, "linux_configuration", linux_configuration)
2519
+ if windows_configuration is not None:
2520
+ pulumi.set(__self__, "windows_configuration", windows_configuration)
2521
+
2522
+ @property
2523
+ @pulumi.getter(name="computerName")
2524
+ def computer_name(self) -> str:
2525
+ """
2526
+ Specifies the host OS name of the hybrid machine.
2527
+ """
2528
+ return pulumi.get(self, "computer_name")
2529
+
2530
+ @property
2531
+ @pulumi.getter(name="linuxConfiguration")
2532
+ def linux_configuration(self) -> Optional['outputs.OSProfileResponseLinuxConfiguration']:
2533
+ """
2534
+ Specifies the linux configuration for update management.
2535
+ """
2536
+ return pulumi.get(self, "linux_configuration")
2537
+
2538
+ @property
2539
+ @pulumi.getter(name="windowsConfiguration")
2540
+ def windows_configuration(self) -> Optional['outputs.OSProfileResponseWindowsConfiguration']:
2541
+ """
2542
+ Specifies the windows configuration for update management.
2543
+ """
2544
+ return pulumi.get(self, "windows_configuration")
2545
+
2546
+
2547
+ @pulumi.output_type
2548
+ class OSProfileResponseLinuxConfiguration(dict):
2549
+ """
2550
+ Specifies the linux configuration for update management.
2551
+ """
2552
+ @staticmethod
2553
+ def __key_warning(key: str):
2554
+ suggest = None
2555
+ if key == "assessmentMode":
2556
+ suggest = "assessment_mode"
2557
+ elif key == "enableHotpatching":
2558
+ suggest = "enable_hotpatching"
2559
+ elif key == "patchMode":
2560
+ suggest = "patch_mode"
2561
+
2562
+ if suggest:
2563
+ pulumi.log.warn(f"Key '{key}' not found in OSProfileResponseLinuxConfiguration. Access the value via the '{suggest}' property getter instead.")
2564
+
2565
+ def __getitem__(self, key: str) -> Any:
2566
+ OSProfileResponseLinuxConfiguration.__key_warning(key)
2567
+ return super().__getitem__(key)
2568
+
2569
+ def get(self, key: str, default = None) -> Any:
2570
+ OSProfileResponseLinuxConfiguration.__key_warning(key)
2571
+ return super().get(key, default)
2572
+
2573
+ def __init__(__self__, *,
2574
+ status: 'outputs.PatchSettingsResponseStatus',
2575
+ assessment_mode: Optional[str] = None,
2576
+ enable_hotpatching: Optional[bool] = None,
2577
+ patch_mode: Optional[str] = None):
2578
+ """
2579
+ Specifies the linux configuration for update management.
2580
+ :param 'PatchSettingsResponseStatus' status: Status of the hotpatch capability enrollment or disenrollment.
2581
+ :param str assessment_mode: Specifies the assessment mode.
2582
+ :param bool enable_hotpatching: Captures the hotpatch capability enrollment intent of the customers, which enables customers to patch their Windows machines without requiring a reboot.
2583
+ :param str patch_mode: Specifies the patch mode.
2584
+ """
2585
+ pulumi.set(__self__, "status", status)
2586
+ if assessment_mode is not None:
2587
+ pulumi.set(__self__, "assessment_mode", assessment_mode)
2588
+ if enable_hotpatching is not None:
2589
+ pulumi.set(__self__, "enable_hotpatching", enable_hotpatching)
2590
+ if patch_mode is not None:
2591
+ pulumi.set(__self__, "patch_mode", patch_mode)
2592
+
2593
+ @property
2594
+ @pulumi.getter
2595
+ def status(self) -> 'outputs.PatchSettingsResponseStatus':
2596
+ """
2597
+ Status of the hotpatch capability enrollment or disenrollment.
2598
+ """
2599
+ return pulumi.get(self, "status")
2600
+
2601
+ @property
2602
+ @pulumi.getter(name="assessmentMode")
2603
+ def assessment_mode(self) -> Optional[str]:
2604
+ """
2605
+ Specifies the assessment mode.
2606
+ """
2607
+ return pulumi.get(self, "assessment_mode")
2608
+
2609
+ @property
2610
+ @pulumi.getter(name="enableHotpatching")
2611
+ def enable_hotpatching(self) -> Optional[bool]:
2612
+ """
2613
+ Captures the hotpatch capability enrollment intent of the customers, which enables customers to patch their Windows machines without requiring a reboot.
2614
+ """
2615
+ return pulumi.get(self, "enable_hotpatching")
2616
+
2617
+ @property
2618
+ @pulumi.getter(name="patchMode")
2619
+ def patch_mode(self) -> Optional[str]:
2620
+ """
2621
+ Specifies the patch mode.
2622
+ """
2623
+ return pulumi.get(self, "patch_mode")
2624
+
2625
+
2626
+ @pulumi.output_type
2627
+ class OSProfileResponseWindowsConfiguration(dict):
2628
+ """
2629
+ Specifies the windows configuration for update management.
2630
+ """
2631
+ @staticmethod
2632
+ def __key_warning(key: str):
2633
+ suggest = None
2634
+ if key == "assessmentMode":
2635
+ suggest = "assessment_mode"
2636
+ elif key == "enableHotpatching":
2637
+ suggest = "enable_hotpatching"
2638
+ elif key == "patchMode":
2639
+ suggest = "patch_mode"
2640
+
2641
+ if suggest:
2642
+ pulumi.log.warn(f"Key '{key}' not found in OSProfileResponseWindowsConfiguration. Access the value via the '{suggest}' property getter instead.")
2643
+
2644
+ def __getitem__(self, key: str) -> Any:
2645
+ OSProfileResponseWindowsConfiguration.__key_warning(key)
2646
+ return super().__getitem__(key)
2647
+
2648
+ def get(self, key: str, default = None) -> Any:
2649
+ OSProfileResponseWindowsConfiguration.__key_warning(key)
2650
+ return super().get(key, default)
2651
+
2652
+ def __init__(__self__, *,
2653
+ status: 'outputs.PatchSettingsResponseStatus',
2654
+ assessment_mode: Optional[str] = None,
2655
+ enable_hotpatching: Optional[bool] = None,
2656
+ patch_mode: Optional[str] = None):
2657
+ """
2658
+ Specifies the windows configuration for update management.
2659
+ :param 'PatchSettingsResponseStatus' status: Status of the hotpatch capability enrollment or disenrollment.
2660
+ :param str assessment_mode: Specifies the assessment mode.
2661
+ :param bool enable_hotpatching: Captures the hotpatch capability enrollment intent of the customers, which enables customers to patch their Windows machines without requiring a reboot.
2662
+ :param str patch_mode: Specifies the patch mode.
2663
+ """
2664
+ pulumi.set(__self__, "status", status)
2665
+ if assessment_mode is not None:
2666
+ pulumi.set(__self__, "assessment_mode", assessment_mode)
2667
+ if enable_hotpatching is not None:
2668
+ pulumi.set(__self__, "enable_hotpatching", enable_hotpatching)
2669
+ if patch_mode is not None:
2670
+ pulumi.set(__self__, "patch_mode", patch_mode)
2671
+
2672
+ @property
2673
+ @pulumi.getter
2674
+ def status(self) -> 'outputs.PatchSettingsResponseStatus':
2675
+ """
2676
+ Status of the hotpatch capability enrollment or disenrollment.
2677
+ """
2678
+ return pulumi.get(self, "status")
2679
+
2680
+ @property
2681
+ @pulumi.getter(name="assessmentMode")
2682
+ def assessment_mode(self) -> Optional[str]:
2683
+ """
2684
+ Specifies the assessment mode.
2685
+ """
2686
+ return pulumi.get(self, "assessment_mode")
2687
+
2688
+ @property
2689
+ @pulumi.getter(name="enableHotpatching")
2690
+ def enable_hotpatching(self) -> Optional[bool]:
2691
+ """
2692
+ Captures the hotpatch capability enrollment intent of the customers, which enables customers to patch their Windows machines without requiring a reboot.
2693
+ """
2694
+ return pulumi.get(self, "enable_hotpatching")
2695
+
2696
+ @property
2697
+ @pulumi.getter(name="patchMode")
2698
+ def patch_mode(self) -> Optional[str]:
2699
+ """
2700
+ Specifies the patch mode.
2701
+ """
2702
+ return pulumi.get(self, "patch_mode")
2703
+
2704
+
2705
+ @pulumi.output_type
2706
+ class PatchSettingsResponseStatus(dict):
2707
+ """
2708
+ Status of the hotpatch capability enrollment or disenrollment.
2709
+ """
2710
+ @staticmethod
2711
+ def __key_warning(key: str):
2712
+ suggest = None
2713
+ if key == "hotpatchEnablementStatus":
2714
+ suggest = "hotpatch_enablement_status"
2715
+
2716
+ if suggest:
2717
+ pulumi.log.warn(f"Key '{key}' not found in PatchSettingsResponseStatus. Access the value via the '{suggest}' property getter instead.")
2718
+
2719
+ def __getitem__(self, key: str) -> Any:
2720
+ PatchSettingsResponseStatus.__key_warning(key)
2721
+ return super().__getitem__(key)
2722
+
2723
+ def get(self, key: str, default = None) -> Any:
2724
+ PatchSettingsResponseStatus.__key_warning(key)
2725
+ return super().get(key, default)
2726
+
2727
+ def __init__(__self__, *,
2728
+ error: 'outputs.ErrorDetailResponse',
2729
+ hotpatch_enablement_status: Optional[str] = None):
2730
+ """
2731
+ Status of the hotpatch capability enrollment or disenrollment.
2732
+ :param 'ErrorDetailResponse' error: The errors that were encountered during the hotpatch capability enrollment or disenrollment.
2733
+ :param str hotpatch_enablement_status: Indicates the current status of the hotpatch being enabled or disabled.
2734
+ """
2735
+ pulumi.set(__self__, "error", error)
2736
+ if hotpatch_enablement_status is not None:
2737
+ pulumi.set(__self__, "hotpatch_enablement_status", hotpatch_enablement_status)
2738
+
2739
+ @property
2740
+ @pulumi.getter
2741
+ def error(self) -> 'outputs.ErrorDetailResponse':
2742
+ """
2743
+ The errors that were encountered during the hotpatch capability enrollment or disenrollment.
2744
+ """
2745
+ return pulumi.get(self, "error")
2746
+
2747
+ @property
2748
+ @pulumi.getter(name="hotpatchEnablementStatus")
2749
+ def hotpatch_enablement_status(self) -> Optional[str]:
2750
+ """
2751
+ Indicates the current status of the hotpatch being enabled or disabled.
2752
+ """
2753
+ return pulumi.get(self, "hotpatch_enablement_status")
2754
+
2755
+
2756
+ @pulumi.output_type
2757
+ class PrivateEndpointConnectionDataModelResponse(dict):
2758
+ """
2759
+ The Data Model for a Private Endpoint Connection associated with a Private Link Scope
2760
+ """
2761
+ def __init__(__self__, *,
2762
+ id: str,
2763
+ name: str,
2764
+ type: str,
2765
+ properties: Optional['outputs.PrivateEndpointConnectionPropertiesResponse'] = None):
2766
+ """
2767
+ The Data Model for a Private Endpoint Connection associated with a Private Link Scope
2768
+ :param str id: The ARM Resource Id of the Private Endpoint.
2769
+ :param str name: The Name of the Private Endpoint.
2770
+ :param str type: Azure resource type
2771
+ :param 'PrivateEndpointConnectionPropertiesResponse' properties: The Private Endpoint Connection properties.
2772
+ """
2773
+ pulumi.set(__self__, "id", id)
2774
+ pulumi.set(__self__, "name", name)
2775
+ pulumi.set(__self__, "type", type)
2776
+ if properties is not None:
2777
+ pulumi.set(__self__, "properties", properties)
2778
+
2779
+ @property
2780
+ @pulumi.getter
2781
+ def id(self) -> str:
2782
+ """
2783
+ The ARM Resource Id of the Private Endpoint.
2784
+ """
2785
+ return pulumi.get(self, "id")
2786
+
2787
+ @property
2788
+ @pulumi.getter
2789
+ def name(self) -> str:
2790
+ """
2791
+ The Name of the Private Endpoint.
2792
+ """
2793
+ return pulumi.get(self, "name")
2794
+
2795
+ @property
2796
+ @pulumi.getter
2797
+ def type(self) -> str:
2798
+ """
2799
+ Azure resource type
2800
+ """
2801
+ return pulumi.get(self, "type")
2802
+
2803
+ @property
2804
+ @pulumi.getter
2805
+ def properties(self) -> Optional['outputs.PrivateEndpointConnectionPropertiesResponse']:
2806
+ """
2807
+ The Private Endpoint Connection properties.
2808
+ """
2809
+ return pulumi.get(self, "properties")
2810
+
2811
+
2812
+ @pulumi.output_type
2813
+ class PrivateEndpointConnectionPropertiesResponse(dict):
2814
+ """
2815
+ Properties of a private endpoint connection.
2816
+ """
2817
+ @staticmethod
2818
+ def __key_warning(key: str):
2819
+ suggest = None
2820
+ if key == "groupIds":
2821
+ suggest = "group_ids"
2822
+ elif key == "provisioningState":
2823
+ suggest = "provisioning_state"
2824
+ elif key == "privateEndpoint":
2825
+ suggest = "private_endpoint"
2826
+ elif key == "privateLinkServiceConnectionState":
2827
+ suggest = "private_link_service_connection_state"
2828
+
2829
+ if suggest:
2830
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2831
+
2832
+ def __getitem__(self, key: str) -> Any:
2833
+ PrivateEndpointConnectionPropertiesResponse.__key_warning(key)
2834
+ return super().__getitem__(key)
2835
+
2836
+ def get(self, key: str, default = None) -> Any:
2837
+ PrivateEndpointConnectionPropertiesResponse.__key_warning(key)
2838
+ return super().get(key, default)
2839
+
2840
+ def __init__(__self__, *,
2841
+ group_ids: Sequence[str],
2842
+ provisioning_state: str,
2843
+ private_endpoint: Optional['outputs.PrivateEndpointPropertyResponse'] = None,
2844
+ private_link_service_connection_state: Optional['outputs.PrivateLinkServiceConnectionStatePropertyResponse'] = None):
2845
+ """
2846
+ Properties of a private endpoint connection.
2847
+ :param Sequence[str] group_ids: List of group IDs.
2848
+ :param str provisioning_state: State of the private endpoint connection.
2849
+ :param 'PrivateEndpointPropertyResponse' private_endpoint: Private endpoint which the connection belongs to.
2850
+ :param 'PrivateLinkServiceConnectionStatePropertyResponse' private_link_service_connection_state: Connection state of the private endpoint connection.
2851
+ """
2852
+ pulumi.set(__self__, "group_ids", group_ids)
2853
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
2854
+ if private_endpoint is not None:
2855
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
2856
+ if private_link_service_connection_state is not None:
2857
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
2858
+
2859
+ @property
2860
+ @pulumi.getter(name="groupIds")
2861
+ def group_ids(self) -> Sequence[str]:
2862
+ """
2863
+ List of group IDs.
2864
+ """
2865
+ return pulumi.get(self, "group_ids")
2866
+
2867
+ @property
2868
+ @pulumi.getter(name="provisioningState")
2869
+ def provisioning_state(self) -> str:
2870
+ """
2871
+ State of the private endpoint connection.
2872
+ """
2873
+ return pulumi.get(self, "provisioning_state")
2874
+
2875
+ @property
2876
+ @pulumi.getter(name="privateEndpoint")
2877
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointPropertyResponse']:
2878
+ """
2879
+ Private endpoint which the connection belongs to.
2880
+ """
2881
+ return pulumi.get(self, "private_endpoint")
2882
+
2883
+ @property
2884
+ @pulumi.getter(name="privateLinkServiceConnectionState")
2885
+ def private_link_service_connection_state(self) -> Optional['outputs.PrivateLinkServiceConnectionStatePropertyResponse']:
2886
+ """
2887
+ Connection state of the private endpoint connection.
2888
+ """
2889
+ return pulumi.get(self, "private_link_service_connection_state")
2890
+
2891
+
2892
+ @pulumi.output_type
2893
+ class PrivateEndpointPropertyResponse(dict):
2894
+ """
2895
+ Private endpoint which the connection belongs to.
2896
+ """
2897
+ def __init__(__self__, *,
2898
+ id: Optional[str] = None):
2899
+ """
2900
+ Private endpoint which the connection belongs to.
2901
+ :param str id: Resource id of the private endpoint.
2902
+ """
2903
+ if id is not None:
2904
+ pulumi.set(__self__, "id", id)
2905
+
2906
+ @property
2907
+ @pulumi.getter
2908
+ def id(self) -> Optional[str]:
2909
+ """
2910
+ Resource id of the private endpoint.
2911
+ """
2912
+ return pulumi.get(self, "id")
2913
+
2914
+
2915
+ @pulumi.output_type
2916
+ class PrivateLinkServiceConnectionStatePropertyResponse(dict):
2917
+ """
2918
+ State of the private endpoint connection.
2919
+ """
2920
+ @staticmethod
2921
+ def __key_warning(key: str):
2922
+ suggest = None
2923
+ if key == "actionsRequired":
2924
+ suggest = "actions_required"
2925
+
2926
+ if suggest:
2927
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStatePropertyResponse. Access the value via the '{suggest}' property getter instead.")
2928
+
2929
+ def __getitem__(self, key: str) -> Any:
2930
+ PrivateLinkServiceConnectionStatePropertyResponse.__key_warning(key)
2931
+ return super().__getitem__(key)
2932
+
2933
+ def get(self, key: str, default = None) -> Any:
2934
+ PrivateLinkServiceConnectionStatePropertyResponse.__key_warning(key)
2935
+ return super().get(key, default)
2936
+
2937
+ def __init__(__self__, *,
2938
+ actions_required: str,
2939
+ description: str,
2940
+ status: str):
2941
+ """
2942
+ State of the private endpoint connection.
2943
+ :param str actions_required: The actions required for private link service connection.
2944
+ :param str description: The private link service connection description.
2945
+ :param str status: The private link service connection status.
2946
+ """
2947
+ pulumi.set(__self__, "actions_required", actions_required)
2948
+ pulumi.set(__self__, "description", description)
2949
+ pulumi.set(__self__, "status", status)
2950
+
2951
+ @property
2952
+ @pulumi.getter(name="actionsRequired")
2953
+ def actions_required(self) -> str:
2954
+ """
2955
+ The actions required for private link service connection.
2956
+ """
2957
+ return pulumi.get(self, "actions_required")
2958
+
2959
+ @property
2960
+ @pulumi.getter
2961
+ def description(self) -> str:
2962
+ """
2963
+ The private link service connection description.
2964
+ """
2965
+ return pulumi.get(self, "description")
2966
+
2967
+ @property
2968
+ @pulumi.getter
2969
+ def status(self) -> str:
2970
+ """
2971
+ The private link service connection status.
2972
+ """
2973
+ return pulumi.get(self, "status")
2974
+
2975
+
2976
+ @pulumi.output_type
2977
+ class ProcessorResponse(dict):
2978
+ """
2979
+ Describes the firmware of the machine
2980
+ """
2981
+ @staticmethod
2982
+ def __key_warning(key: str):
2983
+ suggest = None
2984
+ if key == "numberOfCores":
2985
+ suggest = "number_of_cores"
2986
+
2987
+ if suggest:
2988
+ pulumi.log.warn(f"Key '{key}' not found in ProcessorResponse. Access the value via the '{suggest}' property getter instead.")
2989
+
2990
+ def __getitem__(self, key: str) -> Any:
2991
+ ProcessorResponse.__key_warning(key)
2992
+ return super().__getitem__(key)
2993
+
2994
+ def get(self, key: str, default = None) -> Any:
2995
+ ProcessorResponse.__key_warning(key)
2996
+ return super().get(key, default)
2997
+
2998
+ def __init__(__self__, *,
2999
+ name: str,
3000
+ number_of_cores: int):
3001
+ """
3002
+ Describes the firmware of the machine
3003
+ :param str name: The name of the processor.
3004
+ :param int number_of_cores: The total number of physical cores on the processor.
3005
+ """
3006
+ pulumi.set(__self__, "name", name)
3007
+ pulumi.set(__self__, "number_of_cores", number_of_cores)
3008
+
3009
+ @property
3010
+ @pulumi.getter
3011
+ def name(self) -> str:
3012
+ """
3013
+ The name of the processor.
3014
+ """
3015
+ return pulumi.get(self, "name")
3016
+
3017
+ @property
3018
+ @pulumi.getter(name="numberOfCores")
3019
+ def number_of_cores(self) -> int:
3020
+ """
3021
+ The total number of physical cores on the processor.
3022
+ """
3023
+ return pulumi.get(self, "number_of_cores")
3024
+
3025
+
3026
+ @pulumi.output_type
3027
+ class ProductFeatureResponse(dict):
3028
+ """
3029
+ Product Feature
3030
+ """
3031
+ @staticmethod
3032
+ def __key_warning(key: str):
3033
+ suggest = None
3034
+ if key == "billingEndDate":
3035
+ suggest = "billing_end_date"
3036
+ elif key == "billingStartDate":
3037
+ suggest = "billing_start_date"
3038
+ elif key == "disenrollmentDate":
3039
+ suggest = "disenrollment_date"
3040
+ elif key == "enrollmentDate":
3041
+ suggest = "enrollment_date"
3042
+ elif key == "subscriptionStatus":
3043
+ suggest = "subscription_status"
3044
+
3045
+ if suggest:
3046
+ pulumi.log.warn(f"Key '{key}' not found in ProductFeatureResponse. Access the value via the '{suggest}' property getter instead.")
3047
+
3048
+ def __getitem__(self, key: str) -> Any:
3049
+ ProductFeatureResponse.__key_warning(key)
3050
+ return super().__getitem__(key)
3051
+
3052
+ def get(self, key: str, default = None) -> Any:
3053
+ ProductFeatureResponse.__key_warning(key)
3054
+ return super().get(key, default)
3055
+
3056
+ def __init__(__self__, *,
3057
+ billing_end_date: str,
3058
+ billing_start_date: str,
3059
+ disenrollment_date: str,
3060
+ enrollment_date: str,
3061
+ error: 'outputs.ErrorDetailResponse',
3062
+ name: Optional[str] = None,
3063
+ subscription_status: Optional[str] = None):
3064
+ """
3065
+ Product Feature
3066
+ :param str billing_end_date: The timestamp in UTC when the billing ends.
3067
+ :param str billing_start_date: The timestamp in UTC when the billing starts.
3068
+ :param str disenrollment_date: The timestamp in UTC when the user disenrolled the feature.
3069
+ :param str enrollment_date: The timestamp in UTC when the user enrolls the feature.
3070
+ :param 'ErrorDetailResponse' error: The errors that were encountered during the feature enrollment or disenrollment.
3071
+ :param str name: Product feature name.
3072
+ :param str subscription_status: Indicates the current status of the product features.
3073
+ """
3074
+ pulumi.set(__self__, "billing_end_date", billing_end_date)
3075
+ pulumi.set(__self__, "billing_start_date", billing_start_date)
3076
+ pulumi.set(__self__, "disenrollment_date", disenrollment_date)
3077
+ pulumi.set(__self__, "enrollment_date", enrollment_date)
3078
+ pulumi.set(__self__, "error", error)
3079
+ if name is not None:
3080
+ pulumi.set(__self__, "name", name)
3081
+ if subscription_status is not None:
3082
+ pulumi.set(__self__, "subscription_status", subscription_status)
3083
+
3084
+ @property
3085
+ @pulumi.getter(name="billingEndDate")
3086
+ def billing_end_date(self) -> str:
3087
+ """
3088
+ The timestamp in UTC when the billing ends.
3089
+ """
3090
+ return pulumi.get(self, "billing_end_date")
3091
+
3092
+ @property
3093
+ @pulumi.getter(name="billingStartDate")
3094
+ def billing_start_date(self) -> str:
3095
+ """
3096
+ The timestamp in UTC when the billing starts.
3097
+ """
3098
+ return pulumi.get(self, "billing_start_date")
3099
+
3100
+ @property
3101
+ @pulumi.getter(name="disenrollmentDate")
3102
+ def disenrollment_date(self) -> str:
3103
+ """
3104
+ The timestamp in UTC when the user disenrolled the feature.
3105
+ """
3106
+ return pulumi.get(self, "disenrollment_date")
3107
+
3108
+ @property
3109
+ @pulumi.getter(name="enrollmentDate")
3110
+ def enrollment_date(self) -> str:
3111
+ """
3112
+ The timestamp in UTC when the user enrolls the feature.
3113
+ """
3114
+ return pulumi.get(self, "enrollment_date")
3115
+
3116
+ @property
3117
+ @pulumi.getter
3118
+ def error(self) -> 'outputs.ErrorDetailResponse':
3119
+ """
3120
+ The errors that were encountered during the feature enrollment or disenrollment.
3121
+ """
3122
+ return pulumi.get(self, "error")
3123
+
3124
+ @property
3125
+ @pulumi.getter
3126
+ def name(self) -> Optional[str]:
3127
+ """
3128
+ Product feature name.
3129
+ """
3130
+ return pulumi.get(self, "name")
3131
+
3132
+ @property
3133
+ @pulumi.getter(name="subscriptionStatus")
3134
+ def subscription_status(self) -> Optional[str]:
3135
+ """
3136
+ Indicates the current status of the product features.
3137
+ """
3138
+ return pulumi.get(self, "subscription_status")
3139
+
3140
+
3141
+ @pulumi.output_type
3142
+ class RunCommandInputParameterResponse(dict):
3143
+ """
3144
+ Describes the properties of a run command parameter.
3145
+ """
3146
+ def __init__(__self__, *,
3147
+ name: str,
3148
+ value: str):
3149
+ """
3150
+ Describes the properties of a run command parameter.
3151
+ :param str name: The run command parameter name.
3152
+ :param str value: The run command parameter value.
3153
+ """
3154
+ pulumi.set(__self__, "name", name)
3155
+ pulumi.set(__self__, "value", value)
3156
+
3157
+ @property
3158
+ @pulumi.getter
3159
+ def name(self) -> str:
3160
+ """
3161
+ The run command parameter name.
3162
+ """
3163
+ return pulumi.get(self, "name")
3164
+
3165
+ @property
3166
+ @pulumi.getter
3167
+ def value(self) -> str:
3168
+ """
3169
+ The run command parameter value.
3170
+ """
3171
+ return pulumi.get(self, "value")
3172
+
3173
+
3174
+ @pulumi.output_type
3175
+ class RunCommandManagedIdentityResponse(dict):
3176
+ """
3177
+ Contains clientId or objectId (use only one, not both) of a user-assigned managed identity that has access to storage blob used in Run Command. Use an empty RunCommandManagedIdentity object in case of system-assigned identity. Make sure the Azure storage blob exists in case of scriptUri, and managed identity has been given access to blob's container with 'Storage Blob Data Reader' role assignment with scriptUri blob and 'Storage Blob Data Contributor' for Append blobs(outputBlobUri, errorBlobUri). In case of user assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged.
3178
+ """
3179
+ @staticmethod
3180
+ def __key_warning(key: str):
3181
+ suggest = None
3182
+ if key == "clientId":
3183
+ suggest = "client_id"
3184
+ elif key == "objectId":
3185
+ suggest = "object_id"
3186
+
3187
+ if suggest:
3188
+ pulumi.log.warn(f"Key '{key}' not found in RunCommandManagedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
3189
+
3190
+ def __getitem__(self, key: str) -> Any:
3191
+ RunCommandManagedIdentityResponse.__key_warning(key)
3192
+ return super().__getitem__(key)
3193
+
3194
+ def get(self, key: str, default = None) -> Any:
3195
+ RunCommandManagedIdentityResponse.__key_warning(key)
3196
+ return super().get(key, default)
3197
+
3198
+ def __init__(__self__, *,
3199
+ client_id: Optional[str] = None,
3200
+ object_id: Optional[str] = None):
3201
+ """
3202
+ Contains clientId or objectId (use only one, not both) of a user-assigned managed identity that has access to storage blob used in Run Command. Use an empty RunCommandManagedIdentity object in case of system-assigned identity. Make sure the Azure storage blob exists in case of scriptUri, and managed identity has been given access to blob's container with 'Storage Blob Data Reader' role assignment with scriptUri blob and 'Storage Blob Data Contributor' for Append blobs(outputBlobUri, errorBlobUri). In case of user assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged.
3203
+ :param str client_id: Client Id (GUID value) of the user-assigned managed identity. ObjectId should not be used if this is provided.
3204
+ :param str object_id: Object Id (GUID value) of the user-assigned managed identity. ClientId should not be used if this is provided.
3205
+ """
3206
+ if client_id is not None:
3207
+ pulumi.set(__self__, "client_id", client_id)
3208
+ if object_id is not None:
3209
+ pulumi.set(__self__, "object_id", object_id)
3210
+
3211
+ @property
3212
+ @pulumi.getter(name="clientId")
3213
+ def client_id(self) -> Optional[str]:
3214
+ """
3215
+ Client Id (GUID value) of the user-assigned managed identity. ObjectId should not be used if this is provided.
3216
+ """
3217
+ return pulumi.get(self, "client_id")
3218
+
3219
+ @property
3220
+ @pulumi.getter(name="objectId")
3221
+ def object_id(self) -> Optional[str]:
3222
+ """
3223
+ Object Id (GUID value) of the user-assigned managed identity. ClientId should not be used if this is provided.
3224
+ """
3225
+ return pulumi.get(self, "object_id")
3226
+
3227
+
3228
+ @pulumi.output_type
3229
+ class ServiceStatusResponse(dict):
3230
+ """
3231
+ Describes the status and behavior of a service.
3232
+ """
3233
+ @staticmethod
3234
+ def __key_warning(key: str):
3235
+ suggest = None
3236
+ if key == "startupType":
3237
+ suggest = "startup_type"
3238
+
3239
+ if suggest:
3240
+ pulumi.log.warn(f"Key '{key}' not found in ServiceStatusResponse. Access the value via the '{suggest}' property getter instead.")
3241
+
3242
+ def __getitem__(self, key: str) -> Any:
3243
+ ServiceStatusResponse.__key_warning(key)
3244
+ return super().__getitem__(key)
3245
+
3246
+ def get(self, key: str, default = None) -> Any:
3247
+ ServiceStatusResponse.__key_warning(key)
3248
+ return super().get(key, default)
3249
+
3250
+ def __init__(__self__, *,
3251
+ startup_type: Optional[str] = None,
3252
+ status: Optional[str] = None):
3253
+ """
3254
+ Describes the status and behavior of a service.
3255
+ :param str startup_type: The behavior of the service when the Arc-enabled machine starts up.
3256
+ :param str status: The current status of the service.
3257
+ """
3258
+ if startup_type is not None:
3259
+ pulumi.set(__self__, "startup_type", startup_type)
3260
+ if status is not None:
3261
+ pulumi.set(__self__, "status", status)
3262
+
3263
+ @property
3264
+ @pulumi.getter(name="startupType")
3265
+ def startup_type(self) -> Optional[str]:
3266
+ """
3267
+ The behavior of the service when the Arc-enabled machine starts up.
3268
+ """
3269
+ return pulumi.get(self, "startup_type")
3270
+
3271
+ @property
3272
+ @pulumi.getter
3273
+ def status(self) -> Optional[str]:
3274
+ """
3275
+ The current status of the service.
3276
+ """
3277
+ return pulumi.get(self, "status")
3278
+
3279
+
3280
+ @pulumi.output_type
3281
+ class ServiceStatusesResponse(dict):
3282
+ """
3283
+ Reports the state and behavior of dependent services.
3284
+ """
3285
+ @staticmethod
3286
+ def __key_warning(key: str):
3287
+ suggest = None
3288
+ if key == "extensionService":
3289
+ suggest = "extension_service"
3290
+ elif key == "guestConfigurationService":
3291
+ suggest = "guest_configuration_service"
3292
+
3293
+ if suggest:
3294
+ pulumi.log.warn(f"Key '{key}' not found in ServiceStatusesResponse. Access the value via the '{suggest}' property getter instead.")
3295
+
3296
+ def __getitem__(self, key: str) -> Any:
3297
+ ServiceStatusesResponse.__key_warning(key)
3298
+ return super().__getitem__(key)
3299
+
3300
+ def get(self, key: str, default = None) -> Any:
3301
+ ServiceStatusesResponse.__key_warning(key)
3302
+ return super().get(key, default)
3303
+
3304
+ def __init__(__self__, *,
3305
+ extension_service: Optional['outputs.ServiceStatusResponse'] = None,
3306
+ guest_configuration_service: Optional['outputs.ServiceStatusResponse'] = None):
3307
+ """
3308
+ Reports the state and behavior of dependent services.
3309
+ :param 'ServiceStatusResponse' extension_service: The state of the extension service on the Arc-enabled machine.
3310
+ :param 'ServiceStatusResponse' guest_configuration_service: The state of the guest configuration service on the Arc-enabled machine.
3311
+ """
3312
+ if extension_service is not None:
3313
+ pulumi.set(__self__, "extension_service", extension_service)
3314
+ if guest_configuration_service is not None:
3315
+ pulumi.set(__self__, "guest_configuration_service", guest_configuration_service)
3316
+
3317
+ @property
3318
+ @pulumi.getter(name="extensionService")
3319
+ def extension_service(self) -> Optional['outputs.ServiceStatusResponse']:
3320
+ """
3321
+ The state of the extension service on the Arc-enabled machine.
3322
+ """
3323
+ return pulumi.get(self, "extension_service")
3324
+
3325
+ @property
3326
+ @pulumi.getter(name="guestConfigurationService")
3327
+ def guest_configuration_service(self) -> Optional['outputs.ServiceStatusResponse']:
3328
+ """
3329
+ The state of the guest configuration service on the Arc-enabled machine.
3330
+ """
3331
+ return pulumi.get(self, "guest_configuration_service")
3332
+
3333
+
3334
+ @pulumi.output_type
3335
+ class StorageProfileResponse(dict):
3336
+ """
3337
+ Describes the storage configuration of the machine
3338
+ """
3339
+ def __init__(__self__, *,
3340
+ disks: Optional[Sequence['outputs.DiskResponse']] = None):
3341
+ """
3342
+ Describes the storage configuration of the machine
3343
+ :param Sequence['DiskResponse'] disks: The disks on the machine.
3344
+ """
3345
+ if disks is not None:
3346
+ pulumi.set(__self__, "disks", disks)
3347
+
3348
+ @property
3349
+ @pulumi.getter
3350
+ def disks(self) -> Optional[Sequence['outputs.DiskResponse']]:
3351
+ """
3352
+ The disks on the machine.
3353
+ """
3354
+ return pulumi.get(self, "disks")
3355
+
3356
+
3357
+ @pulumi.output_type
3358
+ class SubnetResponse(dict):
3359
+ """
3360
+ Describes the subnet.
3361
+ """
3362
+ @staticmethod
3363
+ def __key_warning(key: str):
3364
+ suggest = None
3365
+ if key == "addressPrefix":
3366
+ suggest = "address_prefix"
3367
+
3368
+ if suggest:
3369
+ pulumi.log.warn(f"Key '{key}' not found in SubnetResponse. Access the value via the '{suggest}' property getter instead.")
3370
+
3371
+ def __getitem__(self, key: str) -> Any:
3372
+ SubnetResponse.__key_warning(key)
3373
+ return super().__getitem__(key)
3374
+
3375
+ def get(self, key: str, default = None) -> Any:
3376
+ SubnetResponse.__key_warning(key)
3377
+ return super().get(key, default)
3378
+
3379
+ def __init__(__self__, *,
3380
+ address_prefix: Optional[str] = None):
3381
+ """
3382
+ Describes the subnet.
3383
+ :param str address_prefix: Represents address prefix.
3384
+ """
3385
+ if address_prefix is not None:
3386
+ pulumi.set(__self__, "address_prefix", address_prefix)
3387
+
3388
+ @property
3389
+ @pulumi.getter(name="addressPrefix")
3390
+ def address_prefix(self) -> Optional[str]:
3391
+ """
3392
+ Represents address prefix.
3393
+ """
3394
+ return pulumi.get(self, "address_prefix")
3395
+
3396
+
3397
+ @pulumi.output_type
3398
+ class SystemDataResponse(dict):
3399
+ """
3400
+ Metadata pertaining to creation and last modification of the resource.
3401
+ """
3402
+ @staticmethod
3403
+ def __key_warning(key: str):
3404
+ suggest = None
3405
+ if key == "createdAt":
3406
+ suggest = "created_at"
3407
+ elif key == "createdBy":
3408
+ suggest = "created_by"
3409
+ elif key == "createdByType":
3410
+ suggest = "created_by_type"
3411
+ elif key == "lastModifiedAt":
3412
+ suggest = "last_modified_at"
3413
+ elif key == "lastModifiedBy":
3414
+ suggest = "last_modified_by"
3415
+ elif key == "lastModifiedByType":
3416
+ suggest = "last_modified_by_type"
3417
+
3418
+ if suggest:
3419
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
3420
+
3421
+ def __getitem__(self, key: str) -> Any:
3422
+ SystemDataResponse.__key_warning(key)
3423
+ return super().__getitem__(key)
3424
+
3425
+ def get(self, key: str, default = None) -> Any:
3426
+ SystemDataResponse.__key_warning(key)
3427
+ return super().get(key, default)
3428
+
3429
+ def __init__(__self__, *,
3430
+ created_at: Optional[str] = None,
3431
+ created_by: Optional[str] = None,
3432
+ created_by_type: Optional[str] = None,
3433
+ last_modified_at: Optional[str] = None,
3434
+ last_modified_by: Optional[str] = None,
3435
+ last_modified_by_type: Optional[str] = None):
3436
+ """
3437
+ Metadata pertaining to creation and last modification of the resource.
3438
+ :param str created_at: The timestamp of resource creation (UTC).
3439
+ :param str created_by: The identity that created the resource.
3440
+ :param str created_by_type: The type of identity that created the resource.
3441
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
3442
+ :param str last_modified_by: The identity that last modified the resource.
3443
+ :param str last_modified_by_type: The type of identity that last modified the resource.
3444
+ """
3445
+ if created_at is not None:
3446
+ pulumi.set(__self__, "created_at", created_at)
3447
+ if created_by is not None:
3448
+ pulumi.set(__self__, "created_by", created_by)
3449
+ if created_by_type is not None:
3450
+ pulumi.set(__self__, "created_by_type", created_by_type)
3451
+ if last_modified_at is not None:
3452
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
3453
+ if last_modified_by is not None:
3454
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
3455
+ if last_modified_by_type is not None:
3456
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
3457
+
3458
+ @property
3459
+ @pulumi.getter(name="createdAt")
3460
+ def created_at(self) -> Optional[str]:
3461
+ """
3462
+ The timestamp of resource creation (UTC).
3463
+ """
3464
+ return pulumi.get(self, "created_at")
3465
+
3466
+ @property
3467
+ @pulumi.getter(name="createdBy")
3468
+ def created_by(self) -> Optional[str]:
3469
+ """
3470
+ The identity that created the resource.
3471
+ """
3472
+ return pulumi.get(self, "created_by")
3473
+
3474
+ @property
3475
+ @pulumi.getter(name="createdByType")
3476
+ def created_by_type(self) -> Optional[str]:
3477
+ """
3478
+ The type of identity that created the resource.
3479
+ """
3480
+ return pulumi.get(self, "created_by_type")
3481
+
3482
+ @property
3483
+ @pulumi.getter(name="lastModifiedAt")
3484
+ def last_modified_at(self) -> Optional[str]:
3485
+ """
3486
+ The timestamp of resource last modification (UTC)
3487
+ """
3488
+ return pulumi.get(self, "last_modified_at")
3489
+
3490
+ @property
3491
+ @pulumi.getter(name="lastModifiedBy")
3492
+ def last_modified_by(self) -> Optional[str]:
3493
+ """
3494
+ The identity that last modified the resource.
3495
+ """
3496
+ return pulumi.get(self, "last_modified_by")
3497
+
3498
+ @property
3499
+ @pulumi.getter(name="lastModifiedByType")
3500
+ def last_modified_by_type(self) -> Optional[str]:
3501
+ """
3502
+ The type of identity that last modified the resource.
3503
+ """
3504
+ return pulumi.get(self, "last_modified_by_type")
3505
+
3506
+
3507
+ @pulumi.output_type
3508
+ class VolumeLicenseDetailsResponse(dict):
3509
+ @staticmethod
3510
+ def __key_warning(key: str):
3511
+ suggest = None
3512
+ if key == "invoiceId":
3513
+ suggest = "invoice_id"
3514
+ elif key == "programYear":
3515
+ suggest = "program_year"
3516
+
3517
+ if suggest:
3518
+ pulumi.log.warn(f"Key '{key}' not found in VolumeLicenseDetailsResponse. Access the value via the '{suggest}' property getter instead.")
3519
+
3520
+ def __getitem__(self, key: str) -> Any:
3521
+ VolumeLicenseDetailsResponse.__key_warning(key)
3522
+ return super().__getitem__(key)
3523
+
3524
+ def get(self, key: str, default = None) -> Any:
3525
+ VolumeLicenseDetailsResponse.__key_warning(key)
3526
+ return super().get(key, default)
3527
+
3528
+ def __init__(__self__, *,
3529
+ invoice_id: Optional[str] = None,
3530
+ program_year: Optional[str] = None):
3531
+ """
3532
+ :param str invoice_id: The invoice id for the volume license.
3533
+ :param str program_year: Describes the program year the volume license is for.
3534
+ """
3535
+ if invoice_id is not None:
3536
+ pulumi.set(__self__, "invoice_id", invoice_id)
3537
+ if program_year is not None:
3538
+ pulumi.set(__self__, "program_year", program_year)
3539
+
3540
+ @property
3541
+ @pulumi.getter(name="invoiceId")
3542
+ def invoice_id(self) -> Optional[str]:
3543
+ """
3544
+ The invoice id for the volume license.
3545
+ """
3546
+ return pulumi.get(self, "invoice_id")
3547
+
3548
+ @property
3549
+ @pulumi.getter(name="programYear")
3550
+ def program_year(self) -> Optional[str]:
3551
+ """
3552
+ Describes the program year the volume license is for.
3553
+ """
3554
+ return pulumi.get(self, "program_year")
3555
+
3556
+