pulumi-azure-native 2.51.0a1721653278__py3-none-any.whl → 2.51.0a1721718685__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 (564) hide show
  1. pulumi_azure_native/__init__.py +98 -0
  2. pulumi_azure_native/azurefleet/_enums.py +328 -53
  3. pulumi_azure_native/azurefleet/_inputs.py +2361 -1827
  4. pulumi_azure_native/azurefleet/fleet.py +20 -0
  5. pulumi_azure_native/azurefleet/get_fleet.py +27 -1
  6. pulumi_azure_native/azurefleet/outputs.py +1348 -1126
  7. pulumi_azure_native/azurefleet/v20231101preview/_enums.py +328 -53
  8. pulumi_azure_native/azurefleet/v20231101preview/_inputs.py +2361 -1827
  9. pulumi_azure_native/azurefleet/v20231101preview/fleet.py +20 -0
  10. pulumi_azure_native/azurefleet/v20231101preview/get_fleet.py +27 -1
  11. pulumi_azure_native/azurefleet/v20231101preview/outputs.py +1348 -1126
  12. pulumi_azure_native/azurefleet/v20240501preview/_enums.py +328 -53
  13. pulumi_azure_native/azurefleet/v20240501preview/_inputs.py +2361 -1827
  14. pulumi_azure_native/azurefleet/v20240501preview/fleet.py +20 -0
  15. pulumi_azure_native/azurefleet/v20240501preview/get_fleet.py +27 -1
  16. pulumi_azure_native/azurefleet/v20240501preview/outputs.py +1348 -1126
  17. pulumi_azure_native/cognitiveservices/__init__.py +3 -0
  18. pulumi_azure_native/cognitiveservices/account.py +3 -3
  19. pulumi_azure_native/cognitiveservices/commitment_plan.py +3 -3
  20. pulumi_azure_native/cognitiveservices/commitment_plan_association.py +3 -3
  21. pulumi_azure_native/cognitiveservices/deployment.py +3 -3
  22. pulumi_azure_native/cognitiveservices/encryption_scope.py +3 -3
  23. pulumi_azure_native/cognitiveservices/get_account.py +2 -2
  24. pulumi_azure_native/cognitiveservices/get_commitment_plan.py +2 -2
  25. pulumi_azure_native/cognitiveservices/get_commitment_plan_association.py +2 -2
  26. pulumi_azure_native/cognitiveservices/get_deployment.py +2 -2
  27. pulumi_azure_native/cognitiveservices/get_encryption_scope.py +2 -2
  28. pulumi_azure_native/cognitiveservices/get_private_endpoint_connection.py +2 -2
  29. pulumi_azure_native/cognitiveservices/get_rai_blocklist.py +2 -2
  30. pulumi_azure_native/cognitiveservices/get_rai_blocklist_item.py +2 -2
  31. pulumi_azure_native/cognitiveservices/get_rai_policy.py +2 -2
  32. pulumi_azure_native/cognitiveservices/get_shared_commitment_plan.py +2 -2
  33. pulumi_azure_native/cognitiveservices/list_account_keys.py +2 -2
  34. pulumi_azure_native/cognitiveservices/private_endpoint_connection.py +3 -3
  35. pulumi_azure_native/cognitiveservices/rai_blocklist.py +3 -3
  36. pulumi_azure_native/cognitiveservices/rai_blocklist_item.py +3 -3
  37. pulumi_azure_native/cognitiveservices/rai_policy.py +3 -3
  38. pulumi_azure_native/cognitiveservices/shared_commitment_plan.py +3 -3
  39. pulumi_azure_native/cognitiveservices/v20170418/account.py +1 -1
  40. pulumi_azure_native/cognitiveservices/v20230501/account.py +1 -1
  41. pulumi_azure_native/cognitiveservices/v20230501/commitment_plan.py +1 -1
  42. pulumi_azure_native/cognitiveservices/v20230501/commitment_plan_association.py +1 -1
  43. pulumi_azure_native/cognitiveservices/v20230501/deployment.py +1 -1
  44. pulumi_azure_native/cognitiveservices/v20230501/private_endpoint_connection.py +1 -1
  45. pulumi_azure_native/cognitiveservices/v20230501/shared_commitment_plan.py +1 -1
  46. pulumi_azure_native/cognitiveservices/v20231001preview/account.py +1 -1
  47. pulumi_azure_native/cognitiveservices/v20231001preview/commitment_plan.py +1 -1
  48. pulumi_azure_native/cognitiveservices/v20231001preview/commitment_plan_association.py +1 -1
  49. pulumi_azure_native/cognitiveservices/v20231001preview/deployment.py +1 -1
  50. pulumi_azure_native/cognitiveservices/v20231001preview/encryption_scope.py +1 -1
  51. pulumi_azure_native/cognitiveservices/v20231001preview/private_endpoint_connection.py +1 -1
  52. pulumi_azure_native/cognitiveservices/v20231001preview/rai_blocklist.py +1 -1
  53. pulumi_azure_native/cognitiveservices/v20231001preview/rai_blocklist_item.py +1 -1
  54. pulumi_azure_native/cognitiveservices/v20231001preview/rai_policy.py +1 -1
  55. pulumi_azure_native/cognitiveservices/v20231001preview/shared_commitment_plan.py +1 -1
  56. pulumi_azure_native/cognitiveservices/v20240401preview/account.py +1 -1
  57. pulumi_azure_native/cognitiveservices/v20240401preview/commitment_plan.py +1 -1
  58. pulumi_azure_native/cognitiveservices/v20240401preview/commitment_plan_association.py +1 -1
  59. pulumi_azure_native/cognitiveservices/v20240401preview/deployment.py +1 -1
  60. pulumi_azure_native/cognitiveservices/v20240401preview/encryption_scope.py +1 -1
  61. pulumi_azure_native/cognitiveservices/v20240401preview/private_endpoint_connection.py +1 -1
  62. pulumi_azure_native/cognitiveservices/v20240401preview/rai_blocklist.py +1 -1
  63. pulumi_azure_native/cognitiveservices/v20240401preview/rai_blocklist_item.py +1 -1
  64. pulumi_azure_native/cognitiveservices/v20240401preview/rai_policy.py +1 -1
  65. pulumi_azure_native/cognitiveservices/v20240401preview/shared_commitment_plan.py +1 -1
  66. pulumi_azure_native/cognitiveservices/v20240601preview/__init__.py +31 -0
  67. pulumi_azure_native/cognitiveservices/v20240601preview/_enums.py +156 -0
  68. pulumi_azure_native/cognitiveservices/v20240601preview/_inputs.py +2517 -0
  69. pulumi_azure_native/cognitiveservices/v20240601preview/account.py +355 -0
  70. pulumi_azure_native/cognitiveservices/v20240601preview/commitment_plan.py +347 -0
  71. pulumi_azure_native/cognitiveservices/v20240601preview/commitment_plan_association.py +258 -0
  72. pulumi_azure_native/cognitiveservices/v20240601preview/deployment.py +289 -0
  73. pulumi_azure_native/cognitiveservices/v20240601preview/encryption_scope.py +260 -0
  74. pulumi_azure_native/cognitiveservices/v20240601preview/get_account.py +214 -0
  75. pulumi_azure_native/cognitiveservices/v20240601preview/get_commitment_plan.py +206 -0
  76. pulumi_azure_native/cognitiveservices/v20240601preview/get_commitment_plan_association.py +167 -0
  77. pulumi_azure_native/cognitiveservices/v20240601preview/get_deployment.py +180 -0
  78. pulumi_azure_native/cognitiveservices/v20240601preview/get_encryption_scope.py +167 -0
  79. pulumi_azure_native/cognitiveservices/v20240601preview/get_private_endpoint_connection.py +167 -0
  80. pulumi_azure_native/cognitiveservices/v20240601preview/get_rai_blocklist.py +167 -0
  81. pulumi_azure_native/cognitiveservices/v20240601preview/get_rai_blocklist_item.py +172 -0
  82. pulumi_azure_native/cognitiveservices/v20240601preview/get_rai_policy.py +167 -0
  83. pulumi_azure_native/cognitiveservices/v20240601preview/get_shared_commitment_plan.py +201 -0
  84. pulumi_azure_native/cognitiveservices/v20240601preview/list_account_keys.py +96 -0
  85. pulumi_azure_native/cognitiveservices/v20240601preview/outputs.py +3209 -0
  86. pulumi_azure_native/cognitiveservices/v20240601preview/private_endpoint_connection.py +260 -0
  87. pulumi_azure_native/cognitiveservices/v20240601preview/rai_blocklist.py +259 -0
  88. pulumi_azure_native/cognitiveservices/v20240601preview/rai_blocklist_item.py +280 -0
  89. pulumi_azure_native/cognitiveservices/v20240601preview/rai_policy.py +260 -0
  90. pulumi_azure_native/cognitiveservices/v20240601preview/shared_commitment_plan.py +326 -0
  91. pulumi_azure_native/compute/__init__.py +3 -0
  92. pulumi_azure_native/compute/disk.py +3 -3
  93. pulumi_azure_native/compute/disk_access.py +3 -3
  94. pulumi_azure_native/compute/disk_access_a_private_endpoint_connection.py +3 -3
  95. pulumi_azure_native/compute/disk_encryption_set.py +3 -3
  96. pulumi_azure_native/compute/get_disk.py +2 -2
  97. pulumi_azure_native/compute/get_disk_access.py +2 -2
  98. pulumi_azure_native/compute/get_disk_access_a_private_endpoint_connection.py +2 -2
  99. pulumi_azure_native/compute/get_disk_encryption_set.py +2 -2
  100. pulumi_azure_native/compute/get_snapshot.py +2 -2
  101. pulumi_azure_native/compute/snapshot.py +3 -3
  102. pulumi_azure_native/compute/v20220702/disk.py +1 -1
  103. pulumi_azure_native/compute/v20220702/disk_access.py +1 -1
  104. pulumi_azure_native/compute/v20220702/disk_access_a_private_endpoint_connection.py +1 -1
  105. pulumi_azure_native/compute/v20220702/disk_encryption_set.py +1 -1
  106. pulumi_azure_native/compute/v20220702/snapshot.py +1 -1
  107. pulumi_azure_native/compute/v20230102/disk.py +1 -1
  108. pulumi_azure_native/compute/v20230102/disk_access.py +1 -1
  109. pulumi_azure_native/compute/v20230102/disk_access_a_private_endpoint_connection.py +1 -1
  110. pulumi_azure_native/compute/v20230102/disk_encryption_set.py +1 -1
  111. pulumi_azure_native/compute/v20230102/snapshot.py +1 -1
  112. pulumi_azure_native/compute/v20230402/disk.py +1 -1
  113. pulumi_azure_native/compute/v20230402/disk_access.py +1 -1
  114. pulumi_azure_native/compute/v20230402/disk_access_a_private_endpoint_connection.py +1 -1
  115. pulumi_azure_native/compute/v20230402/disk_encryption_set.py +1 -1
  116. pulumi_azure_native/compute/v20230402/snapshot.py +1 -1
  117. pulumi_azure_native/compute/v20231002/disk.py +1 -1
  118. pulumi_azure_native/compute/v20231002/disk_access.py +1 -1
  119. pulumi_azure_native/compute/v20231002/disk_access_a_private_endpoint_connection.py +1 -1
  120. pulumi_azure_native/compute/v20231002/disk_encryption_set.py +1 -1
  121. pulumi_azure_native/compute/v20231002/snapshot.py +1 -1
  122. pulumi_azure_native/compute/v20240302/__init__.py +20 -0
  123. pulumi_azure_native/compute/v20240302/_enums.py +303 -0
  124. pulumi_azure_native/compute/v20240302/_inputs.py +1334 -0
  125. pulumi_azure_native/compute/v20240302/disk.py +1084 -0
  126. pulumi_azure_native/compute/v20240302/disk_access.py +278 -0
  127. pulumi_azure_native/compute/v20240302/disk_access_a_private_endpoint_connection.py +232 -0
  128. pulumi_azure_native/compute/v20240302/disk_encryption_set.py +404 -0
  129. pulumi_azure_native/compute/v20240302/get_disk.py +617 -0
  130. pulumi_azure_native/compute/v20240302/get_disk_access.py +188 -0
  131. pulumi_azure_native/compute/v20240302/get_disk_access_a_private_endpoint_connection.py +154 -0
  132. pulumi_azure_native/compute/v20240302/get_disk_encryption_set.py +253 -0
  133. pulumi_azure_native/compute/v20240302/get_snapshot.py +474 -0
  134. pulumi_azure_native/compute/v20240302/outputs.py +1568 -0
  135. pulumi_azure_native/compute/v20240302/snapshot.py +841 -0
  136. pulumi_azure_native/containerservice/__init__.py +3 -0
  137. pulumi_azure_native/containerservice/agent_pool.py +3 -3
  138. pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
  139. pulumi_azure_native/containerservice/get_load_balancer.py +2 -2
  140. pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
  141. pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
  142. pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
  143. pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
  144. pulumi_azure_native/containerservice/get_snapshot.py +2 -2
  145. pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
  146. pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
  147. pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
  148. pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
  149. pulumi_azure_native/containerservice/load_balancer.py +3 -3
  150. pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
  151. pulumi_azure_native/containerservice/managed_cluster.py +3 -3
  152. pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
  153. pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
  154. pulumi_azure_native/containerservice/snapshot.py +3 -3
  155. pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
  156. pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
  157. pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
  158. pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
  159. pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
  160. pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
  161. pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
  162. pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
  163. pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
  164. pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
  165. pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
  166. pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
  167. pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
  168. pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
  169. pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
  170. pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
  171. pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
  172. pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
  173. pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
  174. pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
  175. pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
  176. pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
  177. pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
  178. pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
  179. pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
  180. pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
  181. pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
  182. pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
  183. pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
  184. pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
  185. pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
  186. pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
  187. pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
  188. pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
  189. pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
  190. pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
  191. pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
  192. pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
  193. pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
  194. pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
  195. pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
  196. pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
  197. pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
  198. pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
  199. pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
  200. pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
  201. pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
  202. pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
  203. pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
  204. pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
  205. pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
  206. pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
  207. pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
  208. pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
  209. pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
  210. pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
  211. pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
  212. pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
  213. pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
  214. pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
  215. pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
  216. pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
  217. pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
  218. pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
  219. pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
  220. pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
  221. pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
  222. pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
  223. pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
  224. pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
  225. pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
  226. pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
  227. pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
  228. pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
  229. pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
  230. pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
  231. pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
  232. pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
  233. pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
  234. pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
  235. pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
  236. pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
  237. pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
  238. pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
  239. pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
  240. pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
  241. pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
  242. pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
  243. pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
  244. pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
  245. pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
  246. pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
  247. pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
  248. pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
  249. pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
  250. pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
  251. pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
  252. pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
  253. pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
  254. pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
  255. pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
  256. pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
  257. pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
  258. pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +1 -1
  259. pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
  260. pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
  261. pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
  262. pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
  263. pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
  264. pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
  265. pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
  266. pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
  267. pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
  268. pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
  269. pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
  270. pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
  271. pulumi_azure_native/containerservice/v20240202preview/managed_cluster_snapshot.py +1 -1
  272. pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
  273. pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
  274. pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
  275. pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1 -1
  276. pulumi_azure_native/containerservice/v20240302preview/load_balancer.py +1 -1
  277. pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +1 -1
  278. pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1 -1
  279. pulumi_azure_native/containerservice/v20240302preview/managed_cluster_snapshot.py +1 -1
  280. pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +1 -1
  281. pulumi_azure_native/containerservice/v20240302preview/snapshot.py +1 -1
  282. pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +1 -1
  283. pulumi_azure_native/containerservice/v20240402preview/agent_pool.py +1 -1
  284. pulumi_azure_native/containerservice/v20240402preview/load_balancer.py +1 -1
  285. pulumi_azure_native/containerservice/v20240402preview/maintenance_configuration.py +1 -1
  286. pulumi_azure_native/containerservice/v20240402preview/managed_cluster.py +1 -1
  287. pulumi_azure_native/containerservice/v20240402preview/managed_cluster_snapshot.py +1 -1
  288. pulumi_azure_native/containerservice/v20240402preview/private_endpoint_connection.py +1 -1
  289. pulumi_azure_native/containerservice/v20240402preview/snapshot.py +1 -1
  290. pulumi_azure_native/containerservice/v20240402preview/trusted_access_role_binding.py +1 -1
  291. pulumi_azure_native/containerservice/v20240501/agent_pool.py +1 -1
  292. pulumi_azure_native/containerservice/v20240501/maintenance_configuration.py +1 -1
  293. pulumi_azure_native/containerservice/v20240501/managed_cluster.py +1 -1
  294. pulumi_azure_native/containerservice/v20240501/private_endpoint_connection.py +1 -1
  295. pulumi_azure_native/containerservice/v20240501/snapshot.py +1 -1
  296. pulumi_azure_native/containerservice/v20240501/trusted_access_role_binding.py +1 -1
  297. pulumi_azure_native/containerservice/v20240502preview/__init__.py +29 -0
  298. pulumi_azure_native/containerservice/v20240502preview/_enums.py +874 -0
  299. pulumi_azure_native/containerservice/v20240502preview/_inputs.py +9520 -0
  300. pulumi_azure_native/containerservice/v20240502preview/agent_pool.py +1691 -0
  301. pulumi_azure_native/containerservice/v20240502preview/get_agent_pool.py +817 -0
  302. pulumi_azure_native/containerservice/v20240502preview/get_load_balancer.py +206 -0
  303. pulumi_azure_native/containerservice/v20240502preview/get_maintenance_configuration.py +167 -0
  304. pulumi_azure_native/containerservice/v20240502preview/get_managed_cluster.py +838 -0
  305. pulumi_azure_native/containerservice/v20240502preview/get_managed_cluster_snapshot.py +188 -0
  306. pulumi_azure_native/containerservice/v20240502preview/get_private_endpoint_connection.py +154 -0
  307. pulumi_azure_native/containerservice/v20240502preview/get_snapshot.py +253 -0
  308. pulumi_azure_native/containerservice/v20240502preview/get_trusted_access_role_binding.py +167 -0
  309. pulumi_azure_native/containerservice/v20240502preview/list_managed_cluster_admin_credentials.py +89 -0
  310. pulumi_azure_native/containerservice/v20240502preview/list_managed_cluster_monitoring_user_credentials.py +89 -0
  311. pulumi_azure_native/containerservice/v20240502preview/list_managed_cluster_user_credentials.py +94 -0
  312. pulumi_azure_native/containerservice/v20240502preview/load_balancer.py +368 -0
  313. pulumi_azure_native/containerservice/v20240502preview/maintenance_configuration.py +279 -0
  314. pulumi_azure_native/containerservice/v20240502preview/managed_cluster.py +1595 -0
  315. pulumi_azure_native/containerservice/v20240502preview/managed_cluster_snapshot.py +297 -0
  316. pulumi_azure_native/containerservice/v20240502preview/outputs.py +8194 -0
  317. pulumi_azure_native/containerservice/v20240502preview/private_endpoint_connection.py +251 -0
  318. pulumi_azure_native/containerservice/v20240502preview/snapshot.py +347 -0
  319. pulumi_azure_native/containerservice/v20240502preview/trusted_access_role_binding.py +260 -0
  320. pulumi_azure_native/datafactory/_inputs.py +110 -10
  321. pulumi_azure_native/datafactory/outputs.py +69 -7
  322. pulumi_azure_native/datafactory/v20180601/_inputs.py +110 -10
  323. pulumi_azure_native/datafactory/v20180601/outputs.py +69 -7
  324. pulumi_azure_native/desktopvirtualization/__init__.py +1 -0
  325. pulumi_azure_native/desktopvirtualization/list_host_pool_registration_tokens.py +103 -0
  326. pulumi_azure_native/desktopvirtualization/outputs.py +36 -0
  327. pulumi_azure_native/desktopvirtualization/v20240403/__init__.py +1 -0
  328. pulumi_azure_native/desktopvirtualization/v20240403/list_host_pool_registration_tokens.py +97 -0
  329. pulumi_azure_native/desktopvirtualization/v20240403/outputs.py +36 -0
  330. pulumi_azure_native/desktopvirtualization/v20240408preview/__init__.py +1 -0
  331. pulumi_azure_native/desktopvirtualization/v20240408preview/list_host_pool_registration_tokens.py +97 -0
  332. pulumi_azure_native/desktopvirtualization/v20240408preview/outputs.py +36 -0
  333. pulumi_azure_native/documentdb/v20230915/database_account.py +4 -4
  334. pulumi_azure_native/documentdb/v20230915/get_database_account.py +1 -1
  335. pulumi_azure_native/documentdb/v20231115/database_account.py +4 -4
  336. pulumi_azure_native/documentdb/v20231115/get_database_account.py +1 -1
  337. pulumi_azure_native/documentdb/v20240515/database_account.py +4 -4
  338. pulumi_azure_native/documentdb/v20240515/get_database_account.py +1 -1
  339. pulumi_azure_native/healthdataaiservices/__init__.py +22 -0
  340. pulumi_azure_native/healthdataaiservices/_enums.py +44 -0
  341. pulumi_azure_native/healthdataaiservices/_inputs.py +232 -0
  342. pulumi_azure_native/healthdataaiservices/deid_service.py +289 -0
  343. pulumi_azure_native/healthdataaiservices/get_deid_service.py +177 -0
  344. pulumi_azure_native/healthdataaiservices/get_private_endpoint_connection.py +143 -0
  345. pulumi_azure_native/healthdataaiservices/outputs.py +637 -0
  346. pulumi_azure_native/healthdataaiservices/private_endpoint_connection.py +223 -0
  347. pulumi_azure_native/healthdataaiservices/v20240228preview/__init__.py +14 -0
  348. pulumi_azure_native/healthdataaiservices/v20240228preview/_enums.py +44 -0
  349. pulumi_azure_native/healthdataaiservices/v20240228preview/_inputs.py +232 -0
  350. pulumi_azure_native/healthdataaiservices/v20240228preview/deid_service.py +287 -0
  351. pulumi_azure_native/healthdataaiservices/v20240228preview/get_deid_service.py +175 -0
  352. pulumi_azure_native/healthdataaiservices/v20240228preview/get_private_endpoint_connection.py +141 -0
  353. pulumi_azure_native/healthdataaiservices/v20240228preview/outputs.py +637 -0
  354. pulumi_azure_native/healthdataaiservices/v20240228preview/private_endpoint_connection.py +221 -0
  355. pulumi_azure_native/netapp/__init__.py +4 -0
  356. pulumi_azure_native/netapp/account.py +3 -3
  357. pulumi_azure_native/netapp/backup.py +2 -2
  358. pulumi_azure_native/netapp/backup_policy.py +3 -3
  359. pulumi_azure_native/netapp/backup_vault.py +3 -3
  360. pulumi_azure_native/netapp/get_account.py +2 -2
  361. pulumi_azure_native/netapp/get_backup.py +2 -2
  362. pulumi_azure_native/netapp/get_backup_policy.py +2 -2
  363. pulumi_azure_native/netapp/get_backup_vault.py +2 -2
  364. pulumi_azure_native/netapp/get_pool.py +2 -2
  365. pulumi_azure_native/netapp/get_snapshot.py +2 -2
  366. pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
  367. pulumi_azure_native/netapp/get_subvolume.py +2 -2
  368. pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
  369. pulumi_azure_native/netapp/get_volume.py +2 -2
  370. pulumi_azure_native/netapp/get_volume_group.py +2 -2
  371. pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
  372. pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
  373. pulumi_azure_native/netapp/list_volume_quota_report.py +109 -0
  374. pulumi_azure_native/netapp/list_volume_replications.py +2 -2
  375. pulumi_azure_native/netapp/outputs.py +84 -0
  376. pulumi_azure_native/netapp/pool.py +3 -3
  377. pulumi_azure_native/netapp/snapshot.py +3 -3
  378. pulumi_azure_native/netapp/snapshot_policy.py +3 -3
  379. pulumi_azure_native/netapp/subvolume.py +3 -3
  380. pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
  381. pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
  382. pulumi_azure_native/netapp/v20211001/volume.py +1 -1
  383. pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
  384. pulumi_azure_native/netapp/v20220501/account.py +1 -1
  385. pulumi_azure_native/netapp/v20221101/account.py +1 -1
  386. pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
  387. pulumi_azure_native/netapp/v20221101/pool.py +1 -1
  388. pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
  389. pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
  390. pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
  391. pulumi_azure_native/netapp/v20221101/volume.py +1 -1
  392. pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
  393. pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
  394. pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
  395. pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
  396. pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
  397. pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
  398. pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
  399. pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
  400. pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
  401. pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
  402. pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
  403. pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
  404. pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
  405. pulumi_azure_native/netapp/v20230501/account.py +1 -1
  406. pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
  407. pulumi_azure_native/netapp/v20230501/pool.py +1 -1
  408. pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
  409. pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
  410. pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
  411. pulumi_azure_native/netapp/v20230501/volume.py +1 -1
  412. pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
  413. pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
  414. pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
  415. pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
  416. pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
  417. pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
  418. pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
  419. pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
  420. pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
  421. pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
  422. pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
  423. pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
  424. pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
  425. pulumi_azure_native/netapp/v20230701/account.py +1 -1
  426. pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
  427. pulumi_azure_native/netapp/v20230701/pool.py +1 -1
  428. pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
  429. pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
  430. pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
  431. pulumi_azure_native/netapp/v20230701/volume.py +1 -1
  432. pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
  433. pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
  434. pulumi_azure_native/netapp/v20230701preview/account.py +1 -1
  435. pulumi_azure_native/netapp/v20230701preview/backup.py +1 -1
  436. pulumi_azure_native/netapp/v20230701preview/backup_policy.py +1 -1
  437. pulumi_azure_native/netapp/v20230701preview/backup_vault.py +1 -1
  438. pulumi_azure_native/netapp/v20230701preview/pool.py +1 -1
  439. pulumi_azure_native/netapp/v20230701preview/snapshot.py +1 -1
  440. pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +1 -1
  441. pulumi_azure_native/netapp/v20230701preview/subvolume.py +1 -1
  442. pulumi_azure_native/netapp/v20230701preview/volume.py +1 -1
  443. pulumi_azure_native/netapp/v20230701preview/volume_group.py +1 -1
  444. pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +1 -1
  445. pulumi_azure_native/netapp/v20231101/account.py +1 -1
  446. pulumi_azure_native/netapp/v20231101/backup.py +1 -1
  447. pulumi_azure_native/netapp/v20231101/backup_policy.py +1 -1
  448. pulumi_azure_native/netapp/v20231101/backup_vault.py +1 -1
  449. pulumi_azure_native/netapp/v20231101/pool.py +1 -1
  450. pulumi_azure_native/netapp/v20231101/snapshot.py +1 -1
  451. pulumi_azure_native/netapp/v20231101/snapshot_policy.py +1 -1
  452. pulumi_azure_native/netapp/v20231101/subvolume.py +1 -1
  453. pulumi_azure_native/netapp/v20231101/volume.py +1 -1
  454. pulumi_azure_native/netapp/v20231101/volume_group.py +1 -1
  455. pulumi_azure_native/netapp/v20231101/volume_quota_rule.py +1 -1
  456. pulumi_azure_native/netapp/v20231101preview/account.py +1 -1
  457. pulumi_azure_native/netapp/v20231101preview/backup.py +1 -1
  458. pulumi_azure_native/netapp/v20231101preview/backup_policy.py +1 -1
  459. pulumi_azure_native/netapp/v20231101preview/backup_vault.py +1 -1
  460. pulumi_azure_native/netapp/v20231101preview/pool.py +1 -1
  461. pulumi_azure_native/netapp/v20231101preview/snapshot.py +1 -1
  462. pulumi_azure_native/netapp/v20231101preview/snapshot_policy.py +1 -1
  463. pulumi_azure_native/netapp/v20231101preview/subvolume.py +1 -1
  464. pulumi_azure_native/netapp/v20231101preview/volume.py +1 -1
  465. pulumi_azure_native/netapp/v20231101preview/volume_group.py +1 -1
  466. pulumi_azure_native/netapp/v20231101preview/volume_quota_rule.py +1 -1
  467. pulumi_azure_native/netapp/v20240301preview/__init__.py +36 -0
  468. pulumi_azure_native/netapp/v20240301preview/_enums.py +565 -0
  469. pulumi_azure_native/netapp/v20240301preview/_inputs.py +3100 -0
  470. pulumi_azure_native/netapp/v20240301preview/account.py +385 -0
  471. pulumi_azure_native/netapp/v20240301preview/backup.py +402 -0
  472. pulumi_azure_native/netapp/v20240301preview/backup_policy.py +414 -0
  473. pulumi_azure_native/netapp/v20240301preview/backup_vault.py +258 -0
  474. pulumi_azure_native/netapp/v20240301preview/get_account.py +253 -0
  475. pulumi_azure_native/netapp/v20240301preview/get_backup.py +276 -0
  476. pulumi_azure_native/netapp/v20240301preview/get_backup_policy.py +271 -0
  477. pulumi_azure_native/netapp/v20240301preview/get_backup_vault.py +167 -0
  478. pulumi_azure_native/netapp/v20240301preview/get_pool.py +284 -0
  479. pulumi_azure_native/netapp/v20240301preview/get_snapshot.py +190 -0
  480. pulumi_azure_native/netapp/v20240301preview/get_snapshot_policy.py +245 -0
  481. pulumi_azure_native/netapp/v20240301preview/get_subvolume.py +190 -0
  482. pulumi_azure_native/netapp/v20240301preview/get_subvolume_metadata.py +254 -0
  483. pulumi_azure_native/netapp/v20240301preview/get_volume.py +926 -0
  484. pulumi_azure_native/netapp/v20240301preview/get_volume_group.py +167 -0
  485. pulumi_azure_native/netapp/v20240301preview/get_volume_group_id_for_ldap_user.py +98 -0
  486. pulumi_azure_native/netapp/v20240301preview/get_volume_quota_rule.py +216 -0
  487. pulumi_azure_native/netapp/v20240301preview/list_volume_quota_report.py +107 -0
  488. pulumi_azure_native/netapp/v20240301preview/list_volume_replications.py +94 -0
  489. pulumi_azure_native/netapp/v20240301preview/outputs.py +3344 -0
  490. pulumi_azure_native/netapp/v20240301preview/pool.py +462 -0
  491. pulumi_azure_native/netapp/v20240301preview/snapshot.py +291 -0
  492. pulumi_azure_native/netapp/v20240301preview/snapshot_policy.py +414 -0
  493. pulumi_azure_native/netapp/v20240301preview/subvolume.py +329 -0
  494. pulumi_azure_native/netapp/v20240301preview/volume.py +1707 -0
  495. pulumi_azure_native/netapp/v20240301preview/volume_group.py +279 -0
  496. pulumi_azure_native/netapp/v20240301preview/volume_quota_rule.py +388 -0
  497. pulumi_azure_native/netapp/volume.py +3 -3
  498. pulumi_azure_native/netapp/volume_group.py +3 -3
  499. pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
  500. pulumi_azure_native/pulumi-plugin.json +1 -1
  501. pulumi_azure_native/scvmm/__init__.py +3 -0
  502. pulumi_azure_native/scvmm/availability_set.py +3 -3
  503. pulumi_azure_native/scvmm/cloud.py +3 -3
  504. pulumi_azure_native/scvmm/get_availability_set.py +2 -2
  505. pulumi_azure_native/scvmm/get_cloud.py +2 -2
  506. pulumi_azure_native/scvmm/get_guest_agent.py +2 -2
  507. pulumi_azure_native/scvmm/get_inventory_item.py +2 -2
  508. pulumi_azure_native/scvmm/get_virtual_machine_instance.py +2 -2
  509. pulumi_azure_native/scvmm/get_virtual_machine_template.py +2 -2
  510. pulumi_azure_native/scvmm/get_virtual_network.py +2 -2
  511. pulumi_azure_native/scvmm/get_vmm_server.py +2 -2
  512. pulumi_azure_native/scvmm/guest_agent.py +2 -2
  513. pulumi_azure_native/scvmm/inventory_item.py +3 -3
  514. pulumi_azure_native/scvmm/v20220521preview/availability_set.py +1 -1
  515. pulumi_azure_native/scvmm/v20220521preview/cloud.py +1 -1
  516. pulumi_azure_native/scvmm/v20220521preview/inventory_item.py +1 -1
  517. pulumi_azure_native/scvmm/v20220521preview/virtual_machine_template.py +1 -1
  518. pulumi_azure_native/scvmm/v20220521preview/virtual_network.py +1 -1
  519. pulumi_azure_native/scvmm/v20220521preview/vmm_server.py +1 -1
  520. pulumi_azure_native/scvmm/v20230401preview/availability_set.py +1 -1
  521. pulumi_azure_native/scvmm/v20230401preview/cloud.py +1 -1
  522. pulumi_azure_native/scvmm/v20230401preview/inventory_item.py +1 -1
  523. pulumi_azure_native/scvmm/v20230401preview/virtual_machine_instance.py +1 -1
  524. pulumi_azure_native/scvmm/v20230401preview/virtual_machine_template.py +1 -1
  525. pulumi_azure_native/scvmm/v20230401preview/virtual_network.py +1 -1
  526. pulumi_azure_native/scvmm/v20230401preview/vm_instance_guest_agent.py +1 -1
  527. pulumi_azure_native/scvmm/v20230401preview/vmm_server.py +1 -1
  528. pulumi_azure_native/scvmm/v20231007/availability_set.py +1 -1
  529. pulumi_azure_native/scvmm/v20231007/cloud.py +1 -1
  530. pulumi_azure_native/scvmm/v20231007/guest_agent.py +1 -1
  531. pulumi_azure_native/scvmm/v20231007/inventory_item.py +1 -1
  532. pulumi_azure_native/scvmm/v20231007/virtual_machine_instance.py +1 -1
  533. pulumi_azure_native/scvmm/v20231007/virtual_machine_template.py +1 -1
  534. pulumi_azure_native/scvmm/v20231007/virtual_network.py +1 -1
  535. pulumi_azure_native/scvmm/v20231007/vmm_server.py +1 -1
  536. pulumi_azure_native/scvmm/v20240601/__init__.py +26 -0
  537. pulumi_azure_native/scvmm/v20240601/_enums.py +110 -0
  538. pulumi_azure_native/scvmm/v20240601/_inputs.py +1334 -0
  539. pulumi_azure_native/scvmm/v20240601/availability_set.py +326 -0
  540. pulumi_azure_native/scvmm/v20240601/cloud.py +385 -0
  541. pulumi_azure_native/scvmm/v20240601/get_availability_set.py +201 -0
  542. pulumi_azure_native/scvmm/v20240601/get_cloud.py +253 -0
  543. pulumi_azure_native/scvmm/v20240601/get_guest_agent.py +222 -0
  544. pulumi_azure_native/scvmm/v20240601/get_inventory_item.py +206 -0
  545. pulumi_azure_native/scvmm/v20240601/get_virtual_machine_instance.py +235 -0
  546. pulumi_azure_native/scvmm/v20240601/get_virtual_machine_template.py +396 -0
  547. pulumi_azure_native/scvmm/v20240601/get_virtual_network.py +227 -0
  548. pulumi_azure_native/scvmm/v20240601/get_vmm_server.py +266 -0
  549. pulumi_azure_native/scvmm/v20240601/guest_agent.py +307 -0
  550. pulumi_azure_native/scvmm/v20240601/inventory_item.py +290 -0
  551. pulumi_azure_native/scvmm/v20240601/outputs.py +1476 -0
  552. pulumi_azure_native/scvmm/v20240601/virtual_machine_instance.py +375 -0
  553. pulumi_azure_native/scvmm/v20240601/virtual_machine_template.py +495 -0
  554. pulumi_azure_native/scvmm/v20240601/virtual_network.py +365 -0
  555. pulumi_azure_native/scvmm/v20240601/vmm_server.py +396 -0
  556. pulumi_azure_native/scvmm/virtual_machine_instance.py +3 -3
  557. pulumi_azure_native/scvmm/virtual_machine_template.py +3 -3
  558. pulumi_azure_native/scvmm/virtual_network.py +3 -3
  559. pulumi_azure_native/scvmm/vm_instance_guest_agent.py +1 -1
  560. pulumi_azure_native/scvmm/vmm_server.py +3 -3
  561. {pulumi_azure_native-2.51.0a1721653278.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/METADATA +1 -1
  562. {pulumi_azure_native-2.51.0a1721653278.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/RECORD +564 -432
  563. {pulumi_azure_native-2.51.0a1721653278.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/WHEEL +0 -0
  564. {pulumi_azure_native-2.51.0a1721653278.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,617 @@
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
+
18
+ __all__ = [
19
+ 'GetDiskResult',
20
+ 'AwaitableGetDiskResult',
21
+ 'get_disk',
22
+ 'get_disk_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetDiskResult:
27
+ """
28
+ Disk resource.
29
+ """
30
+ def __init__(__self__, bursting_enabled=None, bursting_enabled_time=None, completion_percent=None, creation_data=None, data_access_auth_mode=None, disk_access_id=None, disk_iops_read_only=None, disk_iops_read_write=None, disk_m_bps_read_only=None, disk_m_bps_read_write=None, disk_size_bytes=None, disk_size_gb=None, disk_state=None, encryption=None, encryption_settings_collection=None, extended_location=None, hyper_v_generation=None, id=None, last_ownership_update_time=None, location=None, managed_by=None, managed_by_extended=None, max_shares=None, name=None, network_access_policy=None, optimized_for_frequent_attach=None, os_type=None, property_updates_in_progress=None, provisioning_state=None, public_network_access=None, purchase_plan=None, security_profile=None, share_info=None, sku=None, supported_capabilities=None, supports_hibernation=None, tags=None, tier=None, time_created=None, type=None, unique_id=None, zones=None):
31
+ if bursting_enabled and not isinstance(bursting_enabled, bool):
32
+ raise TypeError("Expected argument 'bursting_enabled' to be a bool")
33
+ pulumi.set(__self__, "bursting_enabled", bursting_enabled)
34
+ if bursting_enabled_time and not isinstance(bursting_enabled_time, str):
35
+ raise TypeError("Expected argument 'bursting_enabled_time' to be a str")
36
+ pulumi.set(__self__, "bursting_enabled_time", bursting_enabled_time)
37
+ if completion_percent and not isinstance(completion_percent, float):
38
+ raise TypeError("Expected argument 'completion_percent' to be a float")
39
+ pulumi.set(__self__, "completion_percent", completion_percent)
40
+ if creation_data and not isinstance(creation_data, dict):
41
+ raise TypeError("Expected argument 'creation_data' to be a dict")
42
+ pulumi.set(__self__, "creation_data", creation_data)
43
+ if data_access_auth_mode and not isinstance(data_access_auth_mode, str):
44
+ raise TypeError("Expected argument 'data_access_auth_mode' to be a str")
45
+ pulumi.set(__self__, "data_access_auth_mode", data_access_auth_mode)
46
+ if disk_access_id and not isinstance(disk_access_id, str):
47
+ raise TypeError("Expected argument 'disk_access_id' to be a str")
48
+ pulumi.set(__self__, "disk_access_id", disk_access_id)
49
+ if disk_iops_read_only and not isinstance(disk_iops_read_only, float):
50
+ raise TypeError("Expected argument 'disk_iops_read_only' to be a float")
51
+ pulumi.set(__self__, "disk_iops_read_only", disk_iops_read_only)
52
+ if disk_iops_read_write and not isinstance(disk_iops_read_write, float):
53
+ raise TypeError("Expected argument 'disk_iops_read_write' to be a float")
54
+ pulumi.set(__self__, "disk_iops_read_write", disk_iops_read_write)
55
+ if disk_m_bps_read_only and not isinstance(disk_m_bps_read_only, float):
56
+ raise TypeError("Expected argument 'disk_m_bps_read_only' to be a float")
57
+ pulumi.set(__self__, "disk_m_bps_read_only", disk_m_bps_read_only)
58
+ if disk_m_bps_read_write and not isinstance(disk_m_bps_read_write, float):
59
+ raise TypeError("Expected argument 'disk_m_bps_read_write' to be a float")
60
+ pulumi.set(__self__, "disk_m_bps_read_write", disk_m_bps_read_write)
61
+ if disk_size_bytes and not isinstance(disk_size_bytes, float):
62
+ raise TypeError("Expected argument 'disk_size_bytes' to be a float")
63
+ pulumi.set(__self__, "disk_size_bytes", disk_size_bytes)
64
+ if disk_size_gb and not isinstance(disk_size_gb, int):
65
+ raise TypeError("Expected argument 'disk_size_gb' to be a int")
66
+ pulumi.set(__self__, "disk_size_gb", disk_size_gb)
67
+ if disk_state and not isinstance(disk_state, str):
68
+ raise TypeError("Expected argument 'disk_state' to be a str")
69
+ pulumi.set(__self__, "disk_state", disk_state)
70
+ if encryption and not isinstance(encryption, dict):
71
+ raise TypeError("Expected argument 'encryption' to be a dict")
72
+ pulumi.set(__self__, "encryption", encryption)
73
+ if encryption_settings_collection and not isinstance(encryption_settings_collection, dict):
74
+ raise TypeError("Expected argument 'encryption_settings_collection' to be a dict")
75
+ pulumi.set(__self__, "encryption_settings_collection", encryption_settings_collection)
76
+ if extended_location and not isinstance(extended_location, dict):
77
+ raise TypeError("Expected argument 'extended_location' to be a dict")
78
+ pulumi.set(__self__, "extended_location", extended_location)
79
+ if hyper_v_generation and not isinstance(hyper_v_generation, str):
80
+ raise TypeError("Expected argument 'hyper_v_generation' to be a str")
81
+ pulumi.set(__self__, "hyper_v_generation", hyper_v_generation)
82
+ if id and not isinstance(id, str):
83
+ raise TypeError("Expected argument 'id' to be a str")
84
+ pulumi.set(__self__, "id", id)
85
+ if last_ownership_update_time and not isinstance(last_ownership_update_time, str):
86
+ raise TypeError("Expected argument 'last_ownership_update_time' to be a str")
87
+ pulumi.set(__self__, "last_ownership_update_time", last_ownership_update_time)
88
+ if location and not isinstance(location, str):
89
+ raise TypeError("Expected argument 'location' to be a str")
90
+ pulumi.set(__self__, "location", location)
91
+ if managed_by and not isinstance(managed_by, str):
92
+ raise TypeError("Expected argument 'managed_by' to be a str")
93
+ pulumi.set(__self__, "managed_by", managed_by)
94
+ if managed_by_extended and not isinstance(managed_by_extended, list):
95
+ raise TypeError("Expected argument 'managed_by_extended' to be a list")
96
+ pulumi.set(__self__, "managed_by_extended", managed_by_extended)
97
+ if max_shares and not isinstance(max_shares, int):
98
+ raise TypeError("Expected argument 'max_shares' to be a int")
99
+ pulumi.set(__self__, "max_shares", max_shares)
100
+ if name and not isinstance(name, str):
101
+ raise TypeError("Expected argument 'name' to be a str")
102
+ pulumi.set(__self__, "name", name)
103
+ if network_access_policy and not isinstance(network_access_policy, str):
104
+ raise TypeError("Expected argument 'network_access_policy' to be a str")
105
+ pulumi.set(__self__, "network_access_policy", network_access_policy)
106
+ if optimized_for_frequent_attach and not isinstance(optimized_for_frequent_attach, bool):
107
+ raise TypeError("Expected argument 'optimized_for_frequent_attach' to be a bool")
108
+ pulumi.set(__self__, "optimized_for_frequent_attach", optimized_for_frequent_attach)
109
+ if os_type and not isinstance(os_type, str):
110
+ raise TypeError("Expected argument 'os_type' to be a str")
111
+ pulumi.set(__self__, "os_type", os_type)
112
+ if property_updates_in_progress and not isinstance(property_updates_in_progress, dict):
113
+ raise TypeError("Expected argument 'property_updates_in_progress' to be a dict")
114
+ pulumi.set(__self__, "property_updates_in_progress", property_updates_in_progress)
115
+ if provisioning_state and not isinstance(provisioning_state, str):
116
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
117
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
118
+ if public_network_access and not isinstance(public_network_access, str):
119
+ raise TypeError("Expected argument 'public_network_access' to be a str")
120
+ pulumi.set(__self__, "public_network_access", public_network_access)
121
+ if purchase_plan and not isinstance(purchase_plan, dict):
122
+ raise TypeError("Expected argument 'purchase_plan' to be a dict")
123
+ pulumi.set(__self__, "purchase_plan", purchase_plan)
124
+ if security_profile and not isinstance(security_profile, dict):
125
+ raise TypeError("Expected argument 'security_profile' to be a dict")
126
+ pulumi.set(__self__, "security_profile", security_profile)
127
+ if share_info and not isinstance(share_info, list):
128
+ raise TypeError("Expected argument 'share_info' to be a list")
129
+ pulumi.set(__self__, "share_info", share_info)
130
+ if sku and not isinstance(sku, dict):
131
+ raise TypeError("Expected argument 'sku' to be a dict")
132
+ pulumi.set(__self__, "sku", sku)
133
+ if supported_capabilities and not isinstance(supported_capabilities, dict):
134
+ raise TypeError("Expected argument 'supported_capabilities' to be a dict")
135
+ pulumi.set(__self__, "supported_capabilities", supported_capabilities)
136
+ if supports_hibernation and not isinstance(supports_hibernation, bool):
137
+ raise TypeError("Expected argument 'supports_hibernation' to be a bool")
138
+ pulumi.set(__self__, "supports_hibernation", supports_hibernation)
139
+ if tags and not isinstance(tags, dict):
140
+ raise TypeError("Expected argument 'tags' to be a dict")
141
+ pulumi.set(__self__, "tags", tags)
142
+ if tier and not isinstance(tier, str):
143
+ raise TypeError("Expected argument 'tier' to be a str")
144
+ pulumi.set(__self__, "tier", tier)
145
+ if time_created and not isinstance(time_created, str):
146
+ raise TypeError("Expected argument 'time_created' to be a str")
147
+ pulumi.set(__self__, "time_created", time_created)
148
+ if type and not isinstance(type, str):
149
+ raise TypeError("Expected argument 'type' to be a str")
150
+ pulumi.set(__self__, "type", type)
151
+ if unique_id and not isinstance(unique_id, str):
152
+ raise TypeError("Expected argument 'unique_id' to be a str")
153
+ pulumi.set(__self__, "unique_id", unique_id)
154
+ if zones and not isinstance(zones, list):
155
+ raise TypeError("Expected argument 'zones' to be a list")
156
+ pulumi.set(__self__, "zones", zones)
157
+
158
+ @property
159
+ @pulumi.getter(name="burstingEnabled")
160
+ def bursting_enabled(self) -> Optional[bool]:
161
+ """
162
+ Set to true to enable bursting beyond the provisioned performance target of the disk. Bursting is disabled by default. Does not apply to Ultra disks.
163
+ """
164
+ return pulumi.get(self, "bursting_enabled")
165
+
166
+ @property
167
+ @pulumi.getter(name="burstingEnabledTime")
168
+ def bursting_enabled_time(self) -> str:
169
+ """
170
+ Latest time when bursting was last enabled on a disk.
171
+ """
172
+ return pulumi.get(self, "bursting_enabled_time")
173
+
174
+ @property
175
+ @pulumi.getter(name="completionPercent")
176
+ def completion_percent(self) -> Optional[float]:
177
+ """
178
+ Percentage complete for the background copy when a resource is created via the CopyStart operation.
179
+ """
180
+ return pulumi.get(self, "completion_percent")
181
+
182
+ @property
183
+ @pulumi.getter(name="creationData")
184
+ def creation_data(self) -> 'outputs.CreationDataResponse':
185
+ """
186
+ Disk source information. CreationData information cannot be changed after the disk has been created.
187
+ """
188
+ return pulumi.get(self, "creation_data")
189
+
190
+ @property
191
+ @pulumi.getter(name="dataAccessAuthMode")
192
+ def data_access_auth_mode(self) -> Optional[str]:
193
+ """
194
+ Additional authentication requirements when exporting or uploading to a disk or snapshot.
195
+ """
196
+ return pulumi.get(self, "data_access_auth_mode")
197
+
198
+ @property
199
+ @pulumi.getter(name="diskAccessId")
200
+ def disk_access_id(self) -> Optional[str]:
201
+ """
202
+ ARM id of the DiskAccess resource for using private endpoints on disks.
203
+ """
204
+ return pulumi.get(self, "disk_access_id")
205
+
206
+ @property
207
+ @pulumi.getter(name="diskIOPSReadOnly")
208
+ def disk_iops_read_only(self) -> Optional[float]:
209
+ """
210
+ The total number of IOPS that will be allowed across all VMs mounting the shared disk as ReadOnly. One operation can transfer between 4k and 256k bytes.
211
+ """
212
+ return pulumi.get(self, "disk_iops_read_only")
213
+
214
+ @property
215
+ @pulumi.getter(name="diskIOPSReadWrite")
216
+ def disk_iops_read_write(self) -> Optional[float]:
217
+ """
218
+ The number of IOPS allowed for this disk; only settable for UltraSSD disks. One operation can transfer between 4k and 256k bytes.
219
+ """
220
+ return pulumi.get(self, "disk_iops_read_write")
221
+
222
+ @property
223
+ @pulumi.getter(name="diskMBpsReadOnly")
224
+ def disk_m_bps_read_only(self) -> Optional[float]:
225
+ """
226
+ The total throughput (MBps) that will be allowed across all VMs mounting the shared disk as ReadOnly. MBps means millions of bytes per second - MB here uses the ISO notation, of powers of 10.
227
+ """
228
+ return pulumi.get(self, "disk_m_bps_read_only")
229
+
230
+ @property
231
+ @pulumi.getter(name="diskMBpsReadWrite")
232
+ def disk_m_bps_read_write(self) -> Optional[float]:
233
+ """
234
+ The bandwidth allowed for this disk; only settable for UltraSSD disks. MBps means millions of bytes per second - MB here uses the ISO notation, of powers of 10.
235
+ """
236
+ return pulumi.get(self, "disk_m_bps_read_write")
237
+
238
+ @property
239
+ @pulumi.getter(name="diskSizeBytes")
240
+ def disk_size_bytes(self) -> float:
241
+ """
242
+ The size of the disk in bytes. This field is read only.
243
+ """
244
+ return pulumi.get(self, "disk_size_bytes")
245
+
246
+ @property
247
+ @pulumi.getter(name="diskSizeGB")
248
+ def disk_size_gb(self) -> Optional[int]:
249
+ """
250
+ If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size.
251
+ """
252
+ return pulumi.get(self, "disk_size_gb")
253
+
254
+ @property
255
+ @pulumi.getter(name="diskState")
256
+ def disk_state(self) -> str:
257
+ """
258
+ The state of the disk.
259
+ """
260
+ return pulumi.get(self, "disk_state")
261
+
262
+ @property
263
+ @pulumi.getter
264
+ def encryption(self) -> Optional['outputs.EncryptionResponse']:
265
+ """
266
+ Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.
267
+ """
268
+ return pulumi.get(self, "encryption")
269
+
270
+ @property
271
+ @pulumi.getter(name="encryptionSettingsCollection")
272
+ def encryption_settings_collection(self) -> Optional['outputs.EncryptionSettingsCollectionResponse']:
273
+ """
274
+ Encryption settings collection used for Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot.
275
+ """
276
+ return pulumi.get(self, "encryption_settings_collection")
277
+
278
+ @property
279
+ @pulumi.getter(name="extendedLocation")
280
+ def extended_location(self) -> Optional['outputs.ExtendedLocationResponse']:
281
+ """
282
+ The extended location where the disk will be created. Extended location cannot be changed.
283
+ """
284
+ return pulumi.get(self, "extended_location")
285
+
286
+ @property
287
+ @pulumi.getter(name="hyperVGeneration")
288
+ def hyper_v_generation(self) -> Optional[str]:
289
+ """
290
+ The hypervisor generation of the Virtual Machine. Applicable to OS disks only.
291
+ """
292
+ return pulumi.get(self, "hyper_v_generation")
293
+
294
+ @property
295
+ @pulumi.getter
296
+ def id(self) -> str:
297
+ """
298
+ Resource Id
299
+ """
300
+ return pulumi.get(self, "id")
301
+
302
+ @property
303
+ @pulumi.getter(name="lastOwnershipUpdateTime")
304
+ def last_ownership_update_time(self) -> str:
305
+ """
306
+ The UTC time when the ownership state of the disk was last changed i.e., the time the disk was last attached or detached from a VM or the time when the VM to which the disk was attached was deallocated or started.
307
+ """
308
+ return pulumi.get(self, "last_ownership_update_time")
309
+
310
+ @property
311
+ @pulumi.getter
312
+ def location(self) -> str:
313
+ """
314
+ Resource location
315
+ """
316
+ return pulumi.get(self, "location")
317
+
318
+ @property
319
+ @pulumi.getter(name="managedBy")
320
+ def managed_by(self) -> str:
321
+ """
322
+ A relative URI containing the ID of the VM that has the disk attached.
323
+ """
324
+ return pulumi.get(self, "managed_by")
325
+
326
+ @property
327
+ @pulumi.getter(name="managedByExtended")
328
+ def managed_by_extended(self) -> Sequence[str]:
329
+ """
330
+ List of relative URIs containing the IDs of the VMs that have the disk attached. maxShares should be set to a value greater than one for disks to allow attaching them to multiple VMs.
331
+ """
332
+ return pulumi.get(self, "managed_by_extended")
333
+
334
+ @property
335
+ @pulumi.getter(name="maxShares")
336
+ def max_shares(self) -> Optional[int]:
337
+ """
338
+ The maximum number of VMs that can attach to the disk at the same time. Value greater than one indicates a disk that can be mounted on multiple VMs at the same time.
339
+ """
340
+ return pulumi.get(self, "max_shares")
341
+
342
+ @property
343
+ @pulumi.getter
344
+ def name(self) -> str:
345
+ """
346
+ Resource name
347
+ """
348
+ return pulumi.get(self, "name")
349
+
350
+ @property
351
+ @pulumi.getter(name="networkAccessPolicy")
352
+ def network_access_policy(self) -> Optional[str]:
353
+ """
354
+ Policy for accessing the disk via network.
355
+ """
356
+ return pulumi.get(self, "network_access_policy")
357
+
358
+ @property
359
+ @pulumi.getter(name="optimizedForFrequentAttach")
360
+ def optimized_for_frequent_attach(self) -> Optional[bool]:
361
+ """
362
+ Setting this property to true improves reliability and performance of data disks that are frequently (more than 5 times a day) by detached from one virtual machine and attached to another. This property should not be set for disks that are not detached and attached frequently as it causes the disks to not align with the fault domain of the virtual machine.
363
+ """
364
+ return pulumi.get(self, "optimized_for_frequent_attach")
365
+
366
+ @property
367
+ @pulumi.getter(name="osType")
368
+ def os_type(self) -> Optional[str]:
369
+ """
370
+ The Operating System type.
371
+ """
372
+ return pulumi.get(self, "os_type")
373
+
374
+ @property
375
+ @pulumi.getter(name="propertyUpdatesInProgress")
376
+ def property_updates_in_progress(self) -> 'outputs.PropertyUpdatesInProgressResponse':
377
+ """
378
+ Properties of the disk for which update is pending.
379
+ """
380
+ return pulumi.get(self, "property_updates_in_progress")
381
+
382
+ @property
383
+ @pulumi.getter(name="provisioningState")
384
+ def provisioning_state(self) -> str:
385
+ """
386
+ The disk provisioning state.
387
+ """
388
+ return pulumi.get(self, "provisioning_state")
389
+
390
+ @property
391
+ @pulumi.getter(name="publicNetworkAccess")
392
+ def public_network_access(self) -> Optional[str]:
393
+ """
394
+ Policy for controlling export on the disk.
395
+ """
396
+ return pulumi.get(self, "public_network_access")
397
+
398
+ @property
399
+ @pulumi.getter(name="purchasePlan")
400
+ def purchase_plan(self) -> Optional['outputs.PurchasePlanResponse']:
401
+ """
402
+ Purchase plan information for the the image from which the OS disk was created. E.g. - {name: 2019-Datacenter, publisher: MicrosoftWindowsServer, product: WindowsServer}
403
+ """
404
+ return pulumi.get(self, "purchase_plan")
405
+
406
+ @property
407
+ @pulumi.getter(name="securityProfile")
408
+ def security_profile(self) -> Optional['outputs.DiskSecurityProfileResponse']:
409
+ """
410
+ Contains the security related information for the resource.
411
+ """
412
+ return pulumi.get(self, "security_profile")
413
+
414
+ @property
415
+ @pulumi.getter(name="shareInfo")
416
+ def share_info(self) -> Sequence['outputs.ShareInfoElementResponse']:
417
+ """
418
+ Details of the list of all VMs that have the disk attached. maxShares should be set to a value greater than one for disks to allow attaching them to multiple VMs.
419
+ """
420
+ return pulumi.get(self, "share_info")
421
+
422
+ @property
423
+ @pulumi.getter
424
+ def sku(self) -> Optional['outputs.DiskSkuResponse']:
425
+ """
426
+ The disks sku name. Can be Standard_LRS, Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or PremiumV2_LRS.
427
+ """
428
+ return pulumi.get(self, "sku")
429
+
430
+ @property
431
+ @pulumi.getter(name="supportedCapabilities")
432
+ def supported_capabilities(self) -> Optional['outputs.SupportedCapabilitiesResponse']:
433
+ """
434
+ List of supported capabilities for the image from which the OS disk was created.
435
+ """
436
+ return pulumi.get(self, "supported_capabilities")
437
+
438
+ @property
439
+ @pulumi.getter(name="supportsHibernation")
440
+ def supports_hibernation(self) -> Optional[bool]:
441
+ """
442
+ Indicates the OS on a disk supports hibernation.
443
+ """
444
+ return pulumi.get(self, "supports_hibernation")
445
+
446
+ @property
447
+ @pulumi.getter
448
+ def tags(self) -> Optional[Mapping[str, str]]:
449
+ """
450
+ Resource tags
451
+ """
452
+ return pulumi.get(self, "tags")
453
+
454
+ @property
455
+ @pulumi.getter
456
+ def tier(self) -> Optional[str]:
457
+ """
458
+ Performance tier of the disk (e.g, P4, S10) as described here: https://azure.microsoft.com/en-us/pricing/details/managed-disks/. Does not apply to Ultra disks.
459
+ """
460
+ return pulumi.get(self, "tier")
461
+
462
+ @property
463
+ @pulumi.getter(name="timeCreated")
464
+ def time_created(self) -> str:
465
+ """
466
+ The time when the disk was created.
467
+ """
468
+ return pulumi.get(self, "time_created")
469
+
470
+ @property
471
+ @pulumi.getter
472
+ def type(self) -> str:
473
+ """
474
+ Resource type
475
+ """
476
+ return pulumi.get(self, "type")
477
+
478
+ @property
479
+ @pulumi.getter(name="uniqueId")
480
+ def unique_id(self) -> str:
481
+ """
482
+ Unique Guid identifying the resource.
483
+ """
484
+ return pulumi.get(self, "unique_id")
485
+
486
+ @property
487
+ @pulumi.getter
488
+ def zones(self) -> Optional[Sequence[str]]:
489
+ """
490
+ The Logical zone list for Disk.
491
+ """
492
+ return pulumi.get(self, "zones")
493
+
494
+
495
+ class AwaitableGetDiskResult(GetDiskResult):
496
+ # pylint: disable=using-constant-test
497
+ def __await__(self):
498
+ if False:
499
+ yield self
500
+ return GetDiskResult(
501
+ bursting_enabled=self.bursting_enabled,
502
+ bursting_enabled_time=self.bursting_enabled_time,
503
+ completion_percent=self.completion_percent,
504
+ creation_data=self.creation_data,
505
+ data_access_auth_mode=self.data_access_auth_mode,
506
+ disk_access_id=self.disk_access_id,
507
+ disk_iops_read_only=self.disk_iops_read_only,
508
+ disk_iops_read_write=self.disk_iops_read_write,
509
+ disk_m_bps_read_only=self.disk_m_bps_read_only,
510
+ disk_m_bps_read_write=self.disk_m_bps_read_write,
511
+ disk_size_bytes=self.disk_size_bytes,
512
+ disk_size_gb=self.disk_size_gb,
513
+ disk_state=self.disk_state,
514
+ encryption=self.encryption,
515
+ encryption_settings_collection=self.encryption_settings_collection,
516
+ extended_location=self.extended_location,
517
+ hyper_v_generation=self.hyper_v_generation,
518
+ id=self.id,
519
+ last_ownership_update_time=self.last_ownership_update_time,
520
+ location=self.location,
521
+ managed_by=self.managed_by,
522
+ managed_by_extended=self.managed_by_extended,
523
+ max_shares=self.max_shares,
524
+ name=self.name,
525
+ network_access_policy=self.network_access_policy,
526
+ optimized_for_frequent_attach=self.optimized_for_frequent_attach,
527
+ os_type=self.os_type,
528
+ property_updates_in_progress=self.property_updates_in_progress,
529
+ provisioning_state=self.provisioning_state,
530
+ public_network_access=self.public_network_access,
531
+ purchase_plan=self.purchase_plan,
532
+ security_profile=self.security_profile,
533
+ share_info=self.share_info,
534
+ sku=self.sku,
535
+ supported_capabilities=self.supported_capabilities,
536
+ supports_hibernation=self.supports_hibernation,
537
+ tags=self.tags,
538
+ tier=self.tier,
539
+ time_created=self.time_created,
540
+ type=self.type,
541
+ unique_id=self.unique_id,
542
+ zones=self.zones)
543
+
544
+
545
+ def get_disk(disk_name: Optional[str] = None,
546
+ resource_group_name: Optional[str] = None,
547
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDiskResult:
548
+ """
549
+ Gets information about a disk.
550
+
551
+
552
+ :param str disk_name: The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.
553
+ :param str resource_group_name: The name of the resource group.
554
+ """
555
+ __args__ = dict()
556
+ __args__['diskName'] = disk_name
557
+ __args__['resourceGroupName'] = resource_group_name
558
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
559
+ __ret__ = pulumi.runtime.invoke('azure-native:compute/v20240302:getDisk', __args__, opts=opts, typ=GetDiskResult).value
560
+
561
+ return AwaitableGetDiskResult(
562
+ bursting_enabled=pulumi.get(__ret__, 'bursting_enabled'),
563
+ bursting_enabled_time=pulumi.get(__ret__, 'bursting_enabled_time'),
564
+ completion_percent=pulumi.get(__ret__, 'completion_percent'),
565
+ creation_data=pulumi.get(__ret__, 'creation_data'),
566
+ data_access_auth_mode=pulumi.get(__ret__, 'data_access_auth_mode'),
567
+ disk_access_id=pulumi.get(__ret__, 'disk_access_id'),
568
+ disk_iops_read_only=pulumi.get(__ret__, 'disk_iops_read_only'),
569
+ disk_iops_read_write=pulumi.get(__ret__, 'disk_iops_read_write'),
570
+ disk_m_bps_read_only=pulumi.get(__ret__, 'disk_m_bps_read_only'),
571
+ disk_m_bps_read_write=pulumi.get(__ret__, 'disk_m_bps_read_write'),
572
+ disk_size_bytes=pulumi.get(__ret__, 'disk_size_bytes'),
573
+ disk_size_gb=pulumi.get(__ret__, 'disk_size_gb'),
574
+ disk_state=pulumi.get(__ret__, 'disk_state'),
575
+ encryption=pulumi.get(__ret__, 'encryption'),
576
+ encryption_settings_collection=pulumi.get(__ret__, 'encryption_settings_collection'),
577
+ extended_location=pulumi.get(__ret__, 'extended_location'),
578
+ hyper_v_generation=pulumi.get(__ret__, 'hyper_v_generation'),
579
+ id=pulumi.get(__ret__, 'id'),
580
+ last_ownership_update_time=pulumi.get(__ret__, 'last_ownership_update_time'),
581
+ location=pulumi.get(__ret__, 'location'),
582
+ managed_by=pulumi.get(__ret__, 'managed_by'),
583
+ managed_by_extended=pulumi.get(__ret__, 'managed_by_extended'),
584
+ max_shares=pulumi.get(__ret__, 'max_shares'),
585
+ name=pulumi.get(__ret__, 'name'),
586
+ network_access_policy=pulumi.get(__ret__, 'network_access_policy'),
587
+ optimized_for_frequent_attach=pulumi.get(__ret__, 'optimized_for_frequent_attach'),
588
+ os_type=pulumi.get(__ret__, 'os_type'),
589
+ property_updates_in_progress=pulumi.get(__ret__, 'property_updates_in_progress'),
590
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
591
+ public_network_access=pulumi.get(__ret__, 'public_network_access'),
592
+ purchase_plan=pulumi.get(__ret__, 'purchase_plan'),
593
+ security_profile=pulumi.get(__ret__, 'security_profile'),
594
+ share_info=pulumi.get(__ret__, 'share_info'),
595
+ sku=pulumi.get(__ret__, 'sku'),
596
+ supported_capabilities=pulumi.get(__ret__, 'supported_capabilities'),
597
+ supports_hibernation=pulumi.get(__ret__, 'supports_hibernation'),
598
+ tags=pulumi.get(__ret__, 'tags'),
599
+ tier=pulumi.get(__ret__, 'tier'),
600
+ time_created=pulumi.get(__ret__, 'time_created'),
601
+ type=pulumi.get(__ret__, 'type'),
602
+ unique_id=pulumi.get(__ret__, 'unique_id'),
603
+ zones=pulumi.get(__ret__, 'zones'))
604
+
605
+
606
+ @_utilities.lift_output_func(get_disk)
607
+ def get_disk_output(disk_name: Optional[pulumi.Input[str]] = None,
608
+ resource_group_name: Optional[pulumi.Input[str]] = None,
609
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDiskResult]:
610
+ """
611
+ Gets information about a disk.
612
+
613
+
614
+ :param str disk_name: The name of the managed disk that is being created. The name can't be changed after the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.
615
+ :param str resource_group_name: The name of the resource group.
616
+ """
617
+ ...