pulumi-azure-native 2.51.0a1721670234__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.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/METADATA +1 -1
  562. {pulumi_azure_native-2.51.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/RECORD +564 -432
  563. {pulumi_azure_native-2.51.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/WHEEL +0 -0
  564. {pulumi_azure_native-2.51.0a1721670234.dist-info → pulumi_azure_native-2.51.0a1721718685.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1334 @@
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 ._enums import *
17
+
18
+ __all__ = [
19
+ 'CopyCompletionErrorArgs',
20
+ 'CopyCompletionErrorArgsDict',
21
+ 'CreationDataArgs',
22
+ 'CreationDataArgsDict',
23
+ 'DiskSecurityProfileArgs',
24
+ 'DiskSecurityProfileArgsDict',
25
+ 'DiskSkuArgs',
26
+ 'DiskSkuArgsDict',
27
+ 'EncryptionSetIdentityArgs',
28
+ 'EncryptionSetIdentityArgsDict',
29
+ 'EncryptionSettingsCollectionArgs',
30
+ 'EncryptionSettingsCollectionArgsDict',
31
+ 'EncryptionSettingsElementArgs',
32
+ 'EncryptionSettingsElementArgsDict',
33
+ 'EncryptionArgs',
34
+ 'EncryptionArgsDict',
35
+ 'ExtendedLocationArgs',
36
+ 'ExtendedLocationArgsDict',
37
+ 'ImageDiskReferenceArgs',
38
+ 'ImageDiskReferenceArgsDict',
39
+ 'KeyForDiskEncryptionSetArgs',
40
+ 'KeyForDiskEncryptionSetArgsDict',
41
+ 'KeyVaultAndKeyReferenceArgs',
42
+ 'KeyVaultAndKeyReferenceArgsDict',
43
+ 'KeyVaultAndSecretReferenceArgs',
44
+ 'KeyVaultAndSecretReferenceArgsDict',
45
+ 'PrivateLinkServiceConnectionStateArgs',
46
+ 'PrivateLinkServiceConnectionStateArgsDict',
47
+ 'PurchasePlanArgs',
48
+ 'PurchasePlanArgsDict',
49
+ 'SnapshotSkuArgs',
50
+ 'SnapshotSkuArgsDict',
51
+ 'SourceVaultArgs',
52
+ 'SourceVaultArgsDict',
53
+ 'SupportedCapabilitiesArgs',
54
+ 'SupportedCapabilitiesArgsDict',
55
+ ]
56
+
57
+ MYPY = False
58
+
59
+ if not MYPY:
60
+ class CopyCompletionErrorArgsDict(TypedDict):
61
+ """
62
+ Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
63
+ """
64
+ error_code: pulumi.Input[Union[str, 'CopyCompletionErrorReason']]
65
+ """
66
+ Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
67
+ """
68
+ error_message: pulumi.Input[str]
69
+ """
70
+ Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
71
+ """
72
+ elif False:
73
+ CopyCompletionErrorArgsDict: TypeAlias = Mapping[str, Any]
74
+
75
+ @pulumi.input_type
76
+ class CopyCompletionErrorArgs:
77
+ def __init__(__self__, *,
78
+ error_code: pulumi.Input[Union[str, 'CopyCompletionErrorReason']],
79
+ error_message: pulumi.Input[str]):
80
+ """
81
+ Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
82
+ :param pulumi.Input[Union[str, 'CopyCompletionErrorReason']] error_code: Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
83
+ :param pulumi.Input[str] error_message: Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
84
+ """
85
+ pulumi.set(__self__, "error_code", error_code)
86
+ pulumi.set(__self__, "error_message", error_message)
87
+
88
+ @property
89
+ @pulumi.getter(name="errorCode")
90
+ def error_code(self) -> pulumi.Input[Union[str, 'CopyCompletionErrorReason']]:
91
+ """
92
+ Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
93
+ """
94
+ return pulumi.get(self, "error_code")
95
+
96
+ @error_code.setter
97
+ def error_code(self, value: pulumi.Input[Union[str, 'CopyCompletionErrorReason']]):
98
+ pulumi.set(self, "error_code", value)
99
+
100
+ @property
101
+ @pulumi.getter(name="errorMessage")
102
+ def error_message(self) -> pulumi.Input[str]:
103
+ """
104
+ Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
105
+ """
106
+ return pulumi.get(self, "error_message")
107
+
108
+ @error_message.setter
109
+ def error_message(self, value: pulumi.Input[str]):
110
+ pulumi.set(self, "error_message", value)
111
+
112
+
113
+ if not MYPY:
114
+ class CreationDataArgsDict(TypedDict):
115
+ """
116
+ Data used when creating a disk.
117
+ """
118
+ create_option: pulumi.Input[Union[str, 'DiskCreateOption']]
119
+ """
120
+ This enumerates the possible sources of a disk's creation.
121
+ """
122
+ elastic_san_resource_id: NotRequired[pulumi.Input[str]]
123
+ """
124
+ Required if createOption is CopyFromSanSnapshot. This is the ARM id of the source elastic san volume snapshot.
125
+ """
126
+ gallery_image_reference: NotRequired[pulumi.Input['ImageDiskReferenceArgsDict']]
127
+ """
128
+ Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
129
+ """
130
+ image_reference: NotRequired[pulumi.Input['ImageDiskReferenceArgsDict']]
131
+ """
132
+ Disk source information for PIR or user images.
133
+ """
134
+ logical_sector_size: NotRequired[pulumi.Input[int]]
135
+ """
136
+ Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
137
+ """
138
+ performance_plus: NotRequired[pulumi.Input[bool]]
139
+ """
140
+ Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
141
+ """
142
+ provisioned_bandwidth_copy_speed: NotRequired[pulumi.Input[Union[str, 'ProvisionedBandwidthCopyOption']]]
143
+ """
144
+ If this field is set on a snapshot and createOption is CopyStart, the snapshot will be copied at a quicker speed.
145
+ """
146
+ security_data_uri: NotRequired[pulumi.Input[str]]
147
+ """
148
+ If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
149
+ """
150
+ source_resource_id: NotRequired[pulumi.Input[str]]
151
+ """
152
+ If createOption is Copy, this is the ARM id of the source snapshot or disk.
153
+ """
154
+ source_uri: NotRequired[pulumi.Input[str]]
155
+ """
156
+ If createOption is Import, this is the URI of a blob to be imported into a managed disk.
157
+ """
158
+ storage_account_id: NotRequired[pulumi.Input[str]]
159
+ """
160
+ Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
161
+ """
162
+ upload_size_bytes: NotRequired[pulumi.Input[float]]
163
+ """
164
+ If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
165
+ """
166
+ elif False:
167
+ CreationDataArgsDict: TypeAlias = Mapping[str, Any]
168
+
169
+ @pulumi.input_type
170
+ class CreationDataArgs:
171
+ def __init__(__self__, *,
172
+ create_option: pulumi.Input[Union[str, 'DiskCreateOption']],
173
+ elastic_san_resource_id: Optional[pulumi.Input[str]] = None,
174
+ gallery_image_reference: Optional[pulumi.Input['ImageDiskReferenceArgs']] = None,
175
+ image_reference: Optional[pulumi.Input['ImageDiskReferenceArgs']] = None,
176
+ logical_sector_size: Optional[pulumi.Input[int]] = None,
177
+ performance_plus: Optional[pulumi.Input[bool]] = None,
178
+ provisioned_bandwidth_copy_speed: Optional[pulumi.Input[Union[str, 'ProvisionedBandwidthCopyOption']]] = None,
179
+ security_data_uri: Optional[pulumi.Input[str]] = None,
180
+ source_resource_id: Optional[pulumi.Input[str]] = None,
181
+ source_uri: Optional[pulumi.Input[str]] = None,
182
+ storage_account_id: Optional[pulumi.Input[str]] = None,
183
+ upload_size_bytes: Optional[pulumi.Input[float]] = None):
184
+ """
185
+ Data used when creating a disk.
186
+ :param pulumi.Input[Union[str, 'DiskCreateOption']] create_option: This enumerates the possible sources of a disk's creation.
187
+ :param pulumi.Input[str] elastic_san_resource_id: Required if createOption is CopyFromSanSnapshot. This is the ARM id of the source elastic san volume snapshot.
188
+ :param pulumi.Input['ImageDiskReferenceArgs'] gallery_image_reference: Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
189
+ :param pulumi.Input['ImageDiskReferenceArgs'] image_reference: Disk source information for PIR or user images.
190
+ :param pulumi.Input[int] logical_sector_size: Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
191
+ :param pulumi.Input[bool] performance_plus: Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
192
+ :param pulumi.Input[Union[str, 'ProvisionedBandwidthCopyOption']] provisioned_bandwidth_copy_speed: If this field is set on a snapshot and createOption is CopyStart, the snapshot will be copied at a quicker speed.
193
+ :param pulumi.Input[str] security_data_uri: If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
194
+ :param pulumi.Input[str] source_resource_id: If createOption is Copy, this is the ARM id of the source snapshot or disk.
195
+ :param pulumi.Input[str] source_uri: If createOption is Import, this is the URI of a blob to be imported into a managed disk.
196
+ :param pulumi.Input[str] storage_account_id: Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
197
+ :param pulumi.Input[float] upload_size_bytes: If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
198
+ """
199
+ pulumi.set(__self__, "create_option", create_option)
200
+ if elastic_san_resource_id is not None:
201
+ pulumi.set(__self__, "elastic_san_resource_id", elastic_san_resource_id)
202
+ if gallery_image_reference is not None:
203
+ pulumi.set(__self__, "gallery_image_reference", gallery_image_reference)
204
+ if image_reference is not None:
205
+ pulumi.set(__self__, "image_reference", image_reference)
206
+ if logical_sector_size is not None:
207
+ pulumi.set(__self__, "logical_sector_size", logical_sector_size)
208
+ if performance_plus is not None:
209
+ pulumi.set(__self__, "performance_plus", performance_plus)
210
+ if provisioned_bandwidth_copy_speed is not None:
211
+ pulumi.set(__self__, "provisioned_bandwidth_copy_speed", provisioned_bandwidth_copy_speed)
212
+ if security_data_uri is not None:
213
+ pulumi.set(__self__, "security_data_uri", security_data_uri)
214
+ if source_resource_id is not None:
215
+ pulumi.set(__self__, "source_resource_id", source_resource_id)
216
+ if source_uri is not None:
217
+ pulumi.set(__self__, "source_uri", source_uri)
218
+ if storage_account_id is not None:
219
+ pulumi.set(__self__, "storage_account_id", storage_account_id)
220
+ if upload_size_bytes is not None:
221
+ pulumi.set(__self__, "upload_size_bytes", upload_size_bytes)
222
+
223
+ @property
224
+ @pulumi.getter(name="createOption")
225
+ def create_option(self) -> pulumi.Input[Union[str, 'DiskCreateOption']]:
226
+ """
227
+ This enumerates the possible sources of a disk's creation.
228
+ """
229
+ return pulumi.get(self, "create_option")
230
+
231
+ @create_option.setter
232
+ def create_option(self, value: pulumi.Input[Union[str, 'DiskCreateOption']]):
233
+ pulumi.set(self, "create_option", value)
234
+
235
+ @property
236
+ @pulumi.getter(name="elasticSanResourceId")
237
+ def elastic_san_resource_id(self) -> Optional[pulumi.Input[str]]:
238
+ """
239
+ Required if createOption is CopyFromSanSnapshot. This is the ARM id of the source elastic san volume snapshot.
240
+ """
241
+ return pulumi.get(self, "elastic_san_resource_id")
242
+
243
+ @elastic_san_resource_id.setter
244
+ def elastic_san_resource_id(self, value: Optional[pulumi.Input[str]]):
245
+ pulumi.set(self, "elastic_san_resource_id", value)
246
+
247
+ @property
248
+ @pulumi.getter(name="galleryImageReference")
249
+ def gallery_image_reference(self) -> Optional[pulumi.Input['ImageDiskReferenceArgs']]:
250
+ """
251
+ Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
252
+ """
253
+ return pulumi.get(self, "gallery_image_reference")
254
+
255
+ @gallery_image_reference.setter
256
+ def gallery_image_reference(self, value: Optional[pulumi.Input['ImageDiskReferenceArgs']]):
257
+ pulumi.set(self, "gallery_image_reference", value)
258
+
259
+ @property
260
+ @pulumi.getter(name="imageReference")
261
+ def image_reference(self) -> Optional[pulumi.Input['ImageDiskReferenceArgs']]:
262
+ """
263
+ Disk source information for PIR or user images.
264
+ """
265
+ return pulumi.get(self, "image_reference")
266
+
267
+ @image_reference.setter
268
+ def image_reference(self, value: Optional[pulumi.Input['ImageDiskReferenceArgs']]):
269
+ pulumi.set(self, "image_reference", value)
270
+
271
+ @property
272
+ @pulumi.getter(name="logicalSectorSize")
273
+ def logical_sector_size(self) -> Optional[pulumi.Input[int]]:
274
+ """
275
+ Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
276
+ """
277
+ return pulumi.get(self, "logical_sector_size")
278
+
279
+ @logical_sector_size.setter
280
+ def logical_sector_size(self, value: Optional[pulumi.Input[int]]):
281
+ pulumi.set(self, "logical_sector_size", value)
282
+
283
+ @property
284
+ @pulumi.getter(name="performancePlus")
285
+ def performance_plus(self) -> Optional[pulumi.Input[bool]]:
286
+ """
287
+ Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
288
+ """
289
+ return pulumi.get(self, "performance_plus")
290
+
291
+ @performance_plus.setter
292
+ def performance_plus(self, value: Optional[pulumi.Input[bool]]):
293
+ pulumi.set(self, "performance_plus", value)
294
+
295
+ @property
296
+ @pulumi.getter(name="provisionedBandwidthCopySpeed")
297
+ def provisioned_bandwidth_copy_speed(self) -> Optional[pulumi.Input[Union[str, 'ProvisionedBandwidthCopyOption']]]:
298
+ """
299
+ If this field is set on a snapshot and createOption is CopyStart, the snapshot will be copied at a quicker speed.
300
+ """
301
+ return pulumi.get(self, "provisioned_bandwidth_copy_speed")
302
+
303
+ @provisioned_bandwidth_copy_speed.setter
304
+ def provisioned_bandwidth_copy_speed(self, value: Optional[pulumi.Input[Union[str, 'ProvisionedBandwidthCopyOption']]]):
305
+ pulumi.set(self, "provisioned_bandwidth_copy_speed", value)
306
+
307
+ @property
308
+ @pulumi.getter(name="securityDataUri")
309
+ def security_data_uri(self) -> Optional[pulumi.Input[str]]:
310
+ """
311
+ If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
312
+ """
313
+ return pulumi.get(self, "security_data_uri")
314
+
315
+ @security_data_uri.setter
316
+ def security_data_uri(self, value: Optional[pulumi.Input[str]]):
317
+ pulumi.set(self, "security_data_uri", value)
318
+
319
+ @property
320
+ @pulumi.getter(name="sourceResourceId")
321
+ def source_resource_id(self) -> Optional[pulumi.Input[str]]:
322
+ """
323
+ If createOption is Copy, this is the ARM id of the source snapshot or disk.
324
+ """
325
+ return pulumi.get(self, "source_resource_id")
326
+
327
+ @source_resource_id.setter
328
+ def source_resource_id(self, value: Optional[pulumi.Input[str]]):
329
+ pulumi.set(self, "source_resource_id", value)
330
+
331
+ @property
332
+ @pulumi.getter(name="sourceUri")
333
+ def source_uri(self) -> Optional[pulumi.Input[str]]:
334
+ """
335
+ If createOption is Import, this is the URI of a blob to be imported into a managed disk.
336
+ """
337
+ return pulumi.get(self, "source_uri")
338
+
339
+ @source_uri.setter
340
+ def source_uri(self, value: Optional[pulumi.Input[str]]):
341
+ pulumi.set(self, "source_uri", value)
342
+
343
+ @property
344
+ @pulumi.getter(name="storageAccountId")
345
+ def storage_account_id(self) -> Optional[pulumi.Input[str]]:
346
+ """
347
+ Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
348
+ """
349
+ return pulumi.get(self, "storage_account_id")
350
+
351
+ @storage_account_id.setter
352
+ def storage_account_id(self, value: Optional[pulumi.Input[str]]):
353
+ pulumi.set(self, "storage_account_id", value)
354
+
355
+ @property
356
+ @pulumi.getter(name="uploadSizeBytes")
357
+ def upload_size_bytes(self) -> Optional[pulumi.Input[float]]:
358
+ """
359
+ If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
360
+ """
361
+ return pulumi.get(self, "upload_size_bytes")
362
+
363
+ @upload_size_bytes.setter
364
+ def upload_size_bytes(self, value: Optional[pulumi.Input[float]]):
365
+ pulumi.set(self, "upload_size_bytes", value)
366
+
367
+
368
+ if not MYPY:
369
+ class DiskSecurityProfileArgsDict(TypedDict):
370
+ """
371
+ Contains the security related information for the resource.
372
+ """
373
+ secure_vm_disk_encryption_set_id: NotRequired[pulumi.Input[str]]
374
+ """
375
+ ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
376
+ """
377
+ security_type: NotRequired[pulumi.Input[Union[str, 'DiskSecurityTypes']]]
378
+ """
379
+ Specifies the SecurityType of the VM. Applicable for OS disks only.
380
+ """
381
+ elif False:
382
+ DiskSecurityProfileArgsDict: TypeAlias = Mapping[str, Any]
383
+
384
+ @pulumi.input_type
385
+ class DiskSecurityProfileArgs:
386
+ def __init__(__self__, *,
387
+ secure_vm_disk_encryption_set_id: Optional[pulumi.Input[str]] = None,
388
+ security_type: Optional[pulumi.Input[Union[str, 'DiskSecurityTypes']]] = None):
389
+ """
390
+ Contains the security related information for the resource.
391
+ :param pulumi.Input[str] secure_vm_disk_encryption_set_id: ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
392
+ :param pulumi.Input[Union[str, 'DiskSecurityTypes']] security_type: Specifies the SecurityType of the VM. Applicable for OS disks only.
393
+ """
394
+ if secure_vm_disk_encryption_set_id is not None:
395
+ pulumi.set(__self__, "secure_vm_disk_encryption_set_id", secure_vm_disk_encryption_set_id)
396
+ if security_type is not None:
397
+ pulumi.set(__self__, "security_type", security_type)
398
+
399
+ @property
400
+ @pulumi.getter(name="secureVMDiskEncryptionSetId")
401
+ def secure_vm_disk_encryption_set_id(self) -> Optional[pulumi.Input[str]]:
402
+ """
403
+ ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
404
+ """
405
+ return pulumi.get(self, "secure_vm_disk_encryption_set_id")
406
+
407
+ @secure_vm_disk_encryption_set_id.setter
408
+ def secure_vm_disk_encryption_set_id(self, value: Optional[pulumi.Input[str]]):
409
+ pulumi.set(self, "secure_vm_disk_encryption_set_id", value)
410
+
411
+ @property
412
+ @pulumi.getter(name="securityType")
413
+ def security_type(self) -> Optional[pulumi.Input[Union[str, 'DiskSecurityTypes']]]:
414
+ """
415
+ Specifies the SecurityType of the VM. Applicable for OS disks only.
416
+ """
417
+ return pulumi.get(self, "security_type")
418
+
419
+ @security_type.setter
420
+ def security_type(self, value: Optional[pulumi.Input[Union[str, 'DiskSecurityTypes']]]):
421
+ pulumi.set(self, "security_type", value)
422
+
423
+
424
+ if not MYPY:
425
+ class DiskSkuArgsDict(TypedDict):
426
+ """
427
+ The disks sku name. Can be Standard_LRS, Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or PremiumV2_LRS.
428
+ """
429
+ name: NotRequired[pulumi.Input[Union[str, 'DiskStorageAccountTypes']]]
430
+ """
431
+ The sku name.
432
+ """
433
+ elif False:
434
+ DiskSkuArgsDict: TypeAlias = Mapping[str, Any]
435
+
436
+ @pulumi.input_type
437
+ class DiskSkuArgs:
438
+ def __init__(__self__, *,
439
+ name: Optional[pulumi.Input[Union[str, 'DiskStorageAccountTypes']]] = None):
440
+ """
441
+ The disks sku name. Can be Standard_LRS, Premium_LRS, StandardSSD_LRS, UltraSSD_LRS, Premium_ZRS, StandardSSD_ZRS, or PremiumV2_LRS.
442
+ :param pulumi.Input[Union[str, 'DiskStorageAccountTypes']] name: The sku name.
443
+ """
444
+ if name is not None:
445
+ pulumi.set(__self__, "name", name)
446
+
447
+ @property
448
+ @pulumi.getter
449
+ def name(self) -> Optional[pulumi.Input[Union[str, 'DiskStorageAccountTypes']]]:
450
+ """
451
+ The sku name.
452
+ """
453
+ return pulumi.get(self, "name")
454
+
455
+ @name.setter
456
+ def name(self, value: Optional[pulumi.Input[Union[str, 'DiskStorageAccountTypes']]]):
457
+ pulumi.set(self, "name", value)
458
+
459
+
460
+ if not MYPY:
461
+ class EncryptionSetIdentityArgsDict(TypedDict):
462
+ """
463
+ The managed identity for the disk encryption set. It should be given permission on the key vault before it can be used to encrypt disks.
464
+ """
465
+ type: NotRequired[pulumi.Input[Union[str, 'DiskEncryptionSetIdentityType']]]
466
+ """
467
+ The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is supported for new creations. Disk Encryption Sets can be updated with Identity type None during migration of subscription to a new Azure Active Directory tenant; it will cause the encrypted resources to lose access to the keys.
468
+ """
469
+ user_assigned_identities: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
470
+ """
471
+ The list of user identities associated with the disk encryption set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
472
+ """
473
+ elif False:
474
+ EncryptionSetIdentityArgsDict: TypeAlias = Mapping[str, Any]
475
+
476
+ @pulumi.input_type
477
+ class EncryptionSetIdentityArgs:
478
+ def __init__(__self__, *,
479
+ type: Optional[pulumi.Input[Union[str, 'DiskEncryptionSetIdentityType']]] = None,
480
+ user_assigned_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
481
+ """
482
+ The managed identity for the disk encryption set. It should be given permission on the key vault before it can be used to encrypt disks.
483
+ :param pulumi.Input[Union[str, 'DiskEncryptionSetIdentityType']] type: The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is supported for new creations. Disk Encryption Sets can be updated with Identity type None during migration of subscription to a new Azure Active Directory tenant; it will cause the encrypted resources to lose access to the keys.
484
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] user_assigned_identities: The list of user identities associated with the disk encryption set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
485
+ """
486
+ if type is not None:
487
+ pulumi.set(__self__, "type", type)
488
+ if user_assigned_identities is not None:
489
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
490
+
491
+ @property
492
+ @pulumi.getter
493
+ def type(self) -> Optional[pulumi.Input[Union[str, 'DiskEncryptionSetIdentityType']]]:
494
+ """
495
+ The type of Managed Identity used by the DiskEncryptionSet. Only SystemAssigned is supported for new creations. Disk Encryption Sets can be updated with Identity type None during migration of subscription to a new Azure Active Directory tenant; it will cause the encrypted resources to lose access to the keys.
496
+ """
497
+ return pulumi.get(self, "type")
498
+
499
+ @type.setter
500
+ def type(self, value: Optional[pulumi.Input[Union[str, 'DiskEncryptionSetIdentityType']]]):
501
+ pulumi.set(self, "type", value)
502
+
503
+ @property
504
+ @pulumi.getter(name="userAssignedIdentities")
505
+ def user_assigned_identities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
506
+ """
507
+ The list of user identities associated with the disk encryption set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
508
+ """
509
+ return pulumi.get(self, "user_assigned_identities")
510
+
511
+ @user_assigned_identities.setter
512
+ def user_assigned_identities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
513
+ pulumi.set(self, "user_assigned_identities", value)
514
+
515
+
516
+ if not MYPY:
517
+ class EncryptionSettingsCollectionArgsDict(TypedDict):
518
+ """
519
+ Encryption settings for disk or snapshot
520
+ """
521
+ enabled: pulumi.Input[bool]
522
+ """
523
+ Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
524
+ """
525
+ encryption_settings: NotRequired[pulumi.Input[Sequence[pulumi.Input['EncryptionSettingsElementArgsDict']]]]
526
+ """
527
+ A collection of encryption settings, one for each disk volume.
528
+ """
529
+ encryption_settings_version: NotRequired[pulumi.Input[str]]
530
+ """
531
+ Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
532
+ """
533
+ elif False:
534
+ EncryptionSettingsCollectionArgsDict: TypeAlias = Mapping[str, Any]
535
+
536
+ @pulumi.input_type
537
+ class EncryptionSettingsCollectionArgs:
538
+ def __init__(__self__, *,
539
+ enabled: pulumi.Input[bool],
540
+ encryption_settings: Optional[pulumi.Input[Sequence[pulumi.Input['EncryptionSettingsElementArgs']]]] = None,
541
+ encryption_settings_version: Optional[pulumi.Input[str]] = None):
542
+ """
543
+ Encryption settings for disk or snapshot
544
+ :param pulumi.Input[bool] enabled: Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
545
+ :param pulumi.Input[Sequence[pulumi.Input['EncryptionSettingsElementArgs']]] encryption_settings: A collection of encryption settings, one for each disk volume.
546
+ :param pulumi.Input[str] encryption_settings_version: Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
547
+ """
548
+ pulumi.set(__self__, "enabled", enabled)
549
+ if encryption_settings is not None:
550
+ pulumi.set(__self__, "encryption_settings", encryption_settings)
551
+ if encryption_settings_version is not None:
552
+ pulumi.set(__self__, "encryption_settings_version", encryption_settings_version)
553
+
554
+ @property
555
+ @pulumi.getter
556
+ def enabled(self) -> pulumi.Input[bool]:
557
+ """
558
+ Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
559
+ """
560
+ return pulumi.get(self, "enabled")
561
+
562
+ @enabled.setter
563
+ def enabled(self, value: pulumi.Input[bool]):
564
+ pulumi.set(self, "enabled", value)
565
+
566
+ @property
567
+ @pulumi.getter(name="encryptionSettings")
568
+ def encryption_settings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EncryptionSettingsElementArgs']]]]:
569
+ """
570
+ A collection of encryption settings, one for each disk volume.
571
+ """
572
+ return pulumi.get(self, "encryption_settings")
573
+
574
+ @encryption_settings.setter
575
+ def encryption_settings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['EncryptionSettingsElementArgs']]]]):
576
+ pulumi.set(self, "encryption_settings", value)
577
+
578
+ @property
579
+ @pulumi.getter(name="encryptionSettingsVersion")
580
+ def encryption_settings_version(self) -> Optional[pulumi.Input[str]]:
581
+ """
582
+ Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
583
+ """
584
+ return pulumi.get(self, "encryption_settings_version")
585
+
586
+ @encryption_settings_version.setter
587
+ def encryption_settings_version(self, value: Optional[pulumi.Input[str]]):
588
+ pulumi.set(self, "encryption_settings_version", value)
589
+
590
+
591
+ if not MYPY:
592
+ class EncryptionSettingsElementArgsDict(TypedDict):
593
+ """
594
+ Encryption settings for one disk volume.
595
+ """
596
+ disk_encryption_key: NotRequired[pulumi.Input['KeyVaultAndSecretReferenceArgsDict']]
597
+ """
598
+ Key Vault Secret Url and vault id of the disk encryption key
599
+ """
600
+ key_encryption_key: NotRequired[pulumi.Input['KeyVaultAndKeyReferenceArgsDict']]
601
+ """
602
+ Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
603
+ """
604
+ elif False:
605
+ EncryptionSettingsElementArgsDict: TypeAlias = Mapping[str, Any]
606
+
607
+ @pulumi.input_type
608
+ class EncryptionSettingsElementArgs:
609
+ def __init__(__self__, *,
610
+ disk_encryption_key: Optional[pulumi.Input['KeyVaultAndSecretReferenceArgs']] = None,
611
+ key_encryption_key: Optional[pulumi.Input['KeyVaultAndKeyReferenceArgs']] = None):
612
+ """
613
+ Encryption settings for one disk volume.
614
+ :param pulumi.Input['KeyVaultAndSecretReferenceArgs'] disk_encryption_key: Key Vault Secret Url and vault id of the disk encryption key
615
+ :param pulumi.Input['KeyVaultAndKeyReferenceArgs'] key_encryption_key: Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
616
+ """
617
+ if disk_encryption_key is not None:
618
+ pulumi.set(__self__, "disk_encryption_key", disk_encryption_key)
619
+ if key_encryption_key is not None:
620
+ pulumi.set(__self__, "key_encryption_key", key_encryption_key)
621
+
622
+ @property
623
+ @pulumi.getter(name="diskEncryptionKey")
624
+ def disk_encryption_key(self) -> Optional[pulumi.Input['KeyVaultAndSecretReferenceArgs']]:
625
+ """
626
+ Key Vault Secret Url and vault id of the disk encryption key
627
+ """
628
+ return pulumi.get(self, "disk_encryption_key")
629
+
630
+ @disk_encryption_key.setter
631
+ def disk_encryption_key(self, value: Optional[pulumi.Input['KeyVaultAndSecretReferenceArgs']]):
632
+ pulumi.set(self, "disk_encryption_key", value)
633
+
634
+ @property
635
+ @pulumi.getter(name="keyEncryptionKey")
636
+ def key_encryption_key(self) -> Optional[pulumi.Input['KeyVaultAndKeyReferenceArgs']]:
637
+ """
638
+ Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
639
+ """
640
+ return pulumi.get(self, "key_encryption_key")
641
+
642
+ @key_encryption_key.setter
643
+ def key_encryption_key(self, value: Optional[pulumi.Input['KeyVaultAndKeyReferenceArgs']]):
644
+ pulumi.set(self, "key_encryption_key", value)
645
+
646
+
647
+ if not MYPY:
648
+ class EncryptionArgsDict(TypedDict):
649
+ """
650
+ Encryption at rest settings for disk or snapshot
651
+ """
652
+ disk_encryption_set_id: NotRequired[pulumi.Input[str]]
653
+ """
654
+ ResourceId of the disk encryption set to use for enabling encryption at rest.
655
+ """
656
+ type: NotRequired[pulumi.Input[Union[str, 'EncryptionType']]]
657
+ """
658
+ The type of key used to encrypt the data of the disk.
659
+ """
660
+ elif False:
661
+ EncryptionArgsDict: TypeAlias = Mapping[str, Any]
662
+
663
+ @pulumi.input_type
664
+ class EncryptionArgs:
665
+ def __init__(__self__, *,
666
+ disk_encryption_set_id: Optional[pulumi.Input[str]] = None,
667
+ type: Optional[pulumi.Input[Union[str, 'EncryptionType']]] = None):
668
+ """
669
+ Encryption at rest settings for disk or snapshot
670
+ :param pulumi.Input[str] disk_encryption_set_id: ResourceId of the disk encryption set to use for enabling encryption at rest.
671
+ :param pulumi.Input[Union[str, 'EncryptionType']] type: The type of key used to encrypt the data of the disk.
672
+ """
673
+ if disk_encryption_set_id is not None:
674
+ pulumi.set(__self__, "disk_encryption_set_id", disk_encryption_set_id)
675
+ if type is not None:
676
+ pulumi.set(__self__, "type", type)
677
+
678
+ @property
679
+ @pulumi.getter(name="diskEncryptionSetId")
680
+ def disk_encryption_set_id(self) -> Optional[pulumi.Input[str]]:
681
+ """
682
+ ResourceId of the disk encryption set to use for enabling encryption at rest.
683
+ """
684
+ return pulumi.get(self, "disk_encryption_set_id")
685
+
686
+ @disk_encryption_set_id.setter
687
+ def disk_encryption_set_id(self, value: Optional[pulumi.Input[str]]):
688
+ pulumi.set(self, "disk_encryption_set_id", value)
689
+
690
+ @property
691
+ @pulumi.getter
692
+ def type(self) -> Optional[pulumi.Input[Union[str, 'EncryptionType']]]:
693
+ """
694
+ The type of key used to encrypt the data of the disk.
695
+ """
696
+ return pulumi.get(self, "type")
697
+
698
+ @type.setter
699
+ def type(self, value: Optional[pulumi.Input[Union[str, 'EncryptionType']]]):
700
+ pulumi.set(self, "type", value)
701
+
702
+
703
+ if not MYPY:
704
+ class ExtendedLocationArgsDict(TypedDict):
705
+ """
706
+ The complex type of the extended location.
707
+ """
708
+ name: NotRequired[pulumi.Input[str]]
709
+ """
710
+ The name of the extended location.
711
+ """
712
+ type: NotRequired[pulumi.Input[Union[str, 'ExtendedLocationTypes']]]
713
+ """
714
+ The type of the extended location.
715
+ """
716
+ elif False:
717
+ ExtendedLocationArgsDict: TypeAlias = Mapping[str, Any]
718
+
719
+ @pulumi.input_type
720
+ class ExtendedLocationArgs:
721
+ def __init__(__self__, *,
722
+ name: Optional[pulumi.Input[str]] = None,
723
+ type: Optional[pulumi.Input[Union[str, 'ExtendedLocationTypes']]] = None):
724
+ """
725
+ The complex type of the extended location.
726
+ :param pulumi.Input[str] name: The name of the extended location.
727
+ :param pulumi.Input[Union[str, 'ExtendedLocationTypes']] type: The type of the extended location.
728
+ """
729
+ if name is not None:
730
+ pulumi.set(__self__, "name", name)
731
+ if type is not None:
732
+ pulumi.set(__self__, "type", type)
733
+
734
+ @property
735
+ @pulumi.getter
736
+ def name(self) -> Optional[pulumi.Input[str]]:
737
+ """
738
+ The name of the extended location.
739
+ """
740
+ return pulumi.get(self, "name")
741
+
742
+ @name.setter
743
+ def name(self, value: Optional[pulumi.Input[str]]):
744
+ pulumi.set(self, "name", value)
745
+
746
+ @property
747
+ @pulumi.getter
748
+ def type(self) -> Optional[pulumi.Input[Union[str, 'ExtendedLocationTypes']]]:
749
+ """
750
+ The type of the extended location.
751
+ """
752
+ return pulumi.get(self, "type")
753
+
754
+ @type.setter
755
+ def type(self, value: Optional[pulumi.Input[Union[str, 'ExtendedLocationTypes']]]):
756
+ pulumi.set(self, "type", value)
757
+
758
+
759
+ if not MYPY:
760
+ class ImageDiskReferenceArgsDict(TypedDict):
761
+ """
762
+ The source image used for creating the disk.
763
+ """
764
+ community_gallery_image_id: NotRequired[pulumi.Input[str]]
765
+ """
766
+ A relative uri containing a community Azure Compute Gallery image reference.
767
+ """
768
+ id: NotRequired[pulumi.Input[str]]
769
+ """
770
+ A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
771
+ """
772
+ lun: NotRequired[pulumi.Input[int]]
773
+ """
774
+ If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
775
+ """
776
+ shared_gallery_image_id: NotRequired[pulumi.Input[str]]
777
+ """
778
+ A relative uri containing a direct shared Azure Compute Gallery image reference.
779
+ """
780
+ elif False:
781
+ ImageDiskReferenceArgsDict: TypeAlias = Mapping[str, Any]
782
+
783
+ @pulumi.input_type
784
+ class ImageDiskReferenceArgs:
785
+ def __init__(__self__, *,
786
+ community_gallery_image_id: Optional[pulumi.Input[str]] = None,
787
+ id: Optional[pulumi.Input[str]] = None,
788
+ lun: Optional[pulumi.Input[int]] = None,
789
+ shared_gallery_image_id: Optional[pulumi.Input[str]] = None):
790
+ """
791
+ The source image used for creating the disk.
792
+ :param pulumi.Input[str] community_gallery_image_id: A relative uri containing a community Azure Compute Gallery image reference.
793
+ :param pulumi.Input[str] id: A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
794
+ :param pulumi.Input[int] lun: If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
795
+ :param pulumi.Input[str] shared_gallery_image_id: A relative uri containing a direct shared Azure Compute Gallery image reference.
796
+ """
797
+ if community_gallery_image_id is not None:
798
+ pulumi.set(__self__, "community_gallery_image_id", community_gallery_image_id)
799
+ if id is not None:
800
+ pulumi.set(__self__, "id", id)
801
+ if lun is not None:
802
+ pulumi.set(__self__, "lun", lun)
803
+ if shared_gallery_image_id is not None:
804
+ pulumi.set(__self__, "shared_gallery_image_id", shared_gallery_image_id)
805
+
806
+ @property
807
+ @pulumi.getter(name="communityGalleryImageId")
808
+ def community_gallery_image_id(self) -> Optional[pulumi.Input[str]]:
809
+ """
810
+ A relative uri containing a community Azure Compute Gallery image reference.
811
+ """
812
+ return pulumi.get(self, "community_gallery_image_id")
813
+
814
+ @community_gallery_image_id.setter
815
+ def community_gallery_image_id(self, value: Optional[pulumi.Input[str]]):
816
+ pulumi.set(self, "community_gallery_image_id", value)
817
+
818
+ @property
819
+ @pulumi.getter
820
+ def id(self) -> Optional[pulumi.Input[str]]:
821
+ """
822
+ A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
823
+ """
824
+ return pulumi.get(self, "id")
825
+
826
+ @id.setter
827
+ def id(self, value: Optional[pulumi.Input[str]]):
828
+ pulumi.set(self, "id", value)
829
+
830
+ @property
831
+ @pulumi.getter
832
+ def lun(self) -> Optional[pulumi.Input[int]]:
833
+ """
834
+ If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
835
+ """
836
+ return pulumi.get(self, "lun")
837
+
838
+ @lun.setter
839
+ def lun(self, value: Optional[pulumi.Input[int]]):
840
+ pulumi.set(self, "lun", value)
841
+
842
+ @property
843
+ @pulumi.getter(name="sharedGalleryImageId")
844
+ def shared_gallery_image_id(self) -> Optional[pulumi.Input[str]]:
845
+ """
846
+ A relative uri containing a direct shared Azure Compute Gallery image reference.
847
+ """
848
+ return pulumi.get(self, "shared_gallery_image_id")
849
+
850
+ @shared_gallery_image_id.setter
851
+ def shared_gallery_image_id(self, value: Optional[pulumi.Input[str]]):
852
+ pulumi.set(self, "shared_gallery_image_id", value)
853
+
854
+
855
+ if not MYPY:
856
+ class KeyForDiskEncryptionSetArgsDict(TypedDict):
857
+ """
858
+ Key Vault Key Url to be used for server side encryption of Managed Disks and Snapshots
859
+ """
860
+ key_url: pulumi.Input[str]
861
+ """
862
+ Fully versioned Key Url pointing to a key in KeyVault. Version segment of the Url is required regardless of rotationToLatestKeyVersionEnabled value.
863
+ """
864
+ source_vault: NotRequired[pulumi.Input['SourceVaultArgsDict']]
865
+ """
866
+ Resource id of the KeyVault containing the key or secret. This property is optional and cannot be used if the KeyVault subscription is not the same as the Disk Encryption Set subscription.
867
+ """
868
+ elif False:
869
+ KeyForDiskEncryptionSetArgsDict: TypeAlias = Mapping[str, Any]
870
+
871
+ @pulumi.input_type
872
+ class KeyForDiskEncryptionSetArgs:
873
+ def __init__(__self__, *,
874
+ key_url: pulumi.Input[str],
875
+ source_vault: Optional[pulumi.Input['SourceVaultArgs']] = None):
876
+ """
877
+ Key Vault Key Url to be used for server side encryption of Managed Disks and Snapshots
878
+ :param pulumi.Input[str] key_url: Fully versioned Key Url pointing to a key in KeyVault. Version segment of the Url is required regardless of rotationToLatestKeyVersionEnabled value.
879
+ :param pulumi.Input['SourceVaultArgs'] source_vault: Resource id of the KeyVault containing the key or secret. This property is optional and cannot be used if the KeyVault subscription is not the same as the Disk Encryption Set subscription.
880
+ """
881
+ pulumi.set(__self__, "key_url", key_url)
882
+ if source_vault is not None:
883
+ pulumi.set(__self__, "source_vault", source_vault)
884
+
885
+ @property
886
+ @pulumi.getter(name="keyUrl")
887
+ def key_url(self) -> pulumi.Input[str]:
888
+ """
889
+ Fully versioned Key Url pointing to a key in KeyVault. Version segment of the Url is required regardless of rotationToLatestKeyVersionEnabled value.
890
+ """
891
+ return pulumi.get(self, "key_url")
892
+
893
+ @key_url.setter
894
+ def key_url(self, value: pulumi.Input[str]):
895
+ pulumi.set(self, "key_url", value)
896
+
897
+ @property
898
+ @pulumi.getter(name="sourceVault")
899
+ def source_vault(self) -> Optional[pulumi.Input['SourceVaultArgs']]:
900
+ """
901
+ Resource id of the KeyVault containing the key or secret. This property is optional and cannot be used if the KeyVault subscription is not the same as the Disk Encryption Set subscription.
902
+ """
903
+ return pulumi.get(self, "source_vault")
904
+
905
+ @source_vault.setter
906
+ def source_vault(self, value: Optional[pulumi.Input['SourceVaultArgs']]):
907
+ pulumi.set(self, "source_vault", value)
908
+
909
+
910
+ if not MYPY:
911
+ class KeyVaultAndKeyReferenceArgsDict(TypedDict):
912
+ """
913
+ Key Vault Key Url and vault id of KeK, KeK is optional and when provided is used to unwrap the encryptionKey
914
+ """
915
+ key_url: pulumi.Input[str]
916
+ """
917
+ Url pointing to a key or secret in KeyVault
918
+ """
919
+ source_vault: pulumi.Input['SourceVaultArgsDict']
920
+ """
921
+ Resource id of the KeyVault containing the key or secret
922
+ """
923
+ elif False:
924
+ KeyVaultAndKeyReferenceArgsDict: TypeAlias = Mapping[str, Any]
925
+
926
+ @pulumi.input_type
927
+ class KeyVaultAndKeyReferenceArgs:
928
+ def __init__(__self__, *,
929
+ key_url: pulumi.Input[str],
930
+ source_vault: pulumi.Input['SourceVaultArgs']):
931
+ """
932
+ Key Vault Key Url and vault id of KeK, KeK is optional and when provided is used to unwrap the encryptionKey
933
+ :param pulumi.Input[str] key_url: Url pointing to a key or secret in KeyVault
934
+ :param pulumi.Input['SourceVaultArgs'] source_vault: Resource id of the KeyVault containing the key or secret
935
+ """
936
+ pulumi.set(__self__, "key_url", key_url)
937
+ pulumi.set(__self__, "source_vault", source_vault)
938
+
939
+ @property
940
+ @pulumi.getter(name="keyUrl")
941
+ def key_url(self) -> pulumi.Input[str]:
942
+ """
943
+ Url pointing to a key or secret in KeyVault
944
+ """
945
+ return pulumi.get(self, "key_url")
946
+
947
+ @key_url.setter
948
+ def key_url(self, value: pulumi.Input[str]):
949
+ pulumi.set(self, "key_url", value)
950
+
951
+ @property
952
+ @pulumi.getter(name="sourceVault")
953
+ def source_vault(self) -> pulumi.Input['SourceVaultArgs']:
954
+ """
955
+ Resource id of the KeyVault containing the key or secret
956
+ """
957
+ return pulumi.get(self, "source_vault")
958
+
959
+ @source_vault.setter
960
+ def source_vault(self, value: pulumi.Input['SourceVaultArgs']):
961
+ pulumi.set(self, "source_vault", value)
962
+
963
+
964
+ if not MYPY:
965
+ class KeyVaultAndSecretReferenceArgsDict(TypedDict):
966
+ """
967
+ Key Vault Secret Url and vault id of the encryption key
968
+ """
969
+ secret_url: pulumi.Input[str]
970
+ """
971
+ Url pointing to a key or secret in KeyVault
972
+ """
973
+ source_vault: pulumi.Input['SourceVaultArgsDict']
974
+ """
975
+ Resource id of the KeyVault containing the key or secret
976
+ """
977
+ elif False:
978
+ KeyVaultAndSecretReferenceArgsDict: TypeAlias = Mapping[str, Any]
979
+
980
+ @pulumi.input_type
981
+ class KeyVaultAndSecretReferenceArgs:
982
+ def __init__(__self__, *,
983
+ secret_url: pulumi.Input[str],
984
+ source_vault: pulumi.Input['SourceVaultArgs']):
985
+ """
986
+ Key Vault Secret Url and vault id of the encryption key
987
+ :param pulumi.Input[str] secret_url: Url pointing to a key or secret in KeyVault
988
+ :param pulumi.Input['SourceVaultArgs'] source_vault: Resource id of the KeyVault containing the key or secret
989
+ """
990
+ pulumi.set(__self__, "secret_url", secret_url)
991
+ pulumi.set(__self__, "source_vault", source_vault)
992
+
993
+ @property
994
+ @pulumi.getter(name="secretUrl")
995
+ def secret_url(self) -> pulumi.Input[str]:
996
+ """
997
+ Url pointing to a key or secret in KeyVault
998
+ """
999
+ return pulumi.get(self, "secret_url")
1000
+
1001
+ @secret_url.setter
1002
+ def secret_url(self, value: pulumi.Input[str]):
1003
+ pulumi.set(self, "secret_url", value)
1004
+
1005
+ @property
1006
+ @pulumi.getter(name="sourceVault")
1007
+ def source_vault(self) -> pulumi.Input['SourceVaultArgs']:
1008
+ """
1009
+ Resource id of the KeyVault containing the key or secret
1010
+ """
1011
+ return pulumi.get(self, "source_vault")
1012
+
1013
+ @source_vault.setter
1014
+ def source_vault(self, value: pulumi.Input['SourceVaultArgs']):
1015
+ pulumi.set(self, "source_vault", value)
1016
+
1017
+
1018
+ if not MYPY:
1019
+ class PrivateLinkServiceConnectionStateArgsDict(TypedDict):
1020
+ """
1021
+ A collection of information about the state of the connection between service consumer and provider.
1022
+ """
1023
+ actions_required: NotRequired[pulumi.Input[str]]
1024
+ """
1025
+ A message indicating if changes on the service provider require any updates on the consumer.
1026
+ """
1027
+ description: NotRequired[pulumi.Input[str]]
1028
+ """
1029
+ The reason for approval/rejection of the connection.
1030
+ """
1031
+ status: NotRequired[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]
1032
+ """
1033
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
1034
+ """
1035
+ elif False:
1036
+ PrivateLinkServiceConnectionStateArgsDict: TypeAlias = Mapping[str, Any]
1037
+
1038
+ @pulumi.input_type
1039
+ class PrivateLinkServiceConnectionStateArgs:
1040
+ def __init__(__self__, *,
1041
+ actions_required: Optional[pulumi.Input[str]] = None,
1042
+ description: Optional[pulumi.Input[str]] = None,
1043
+ status: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]] = None):
1044
+ """
1045
+ A collection of information about the state of the connection between service consumer and provider.
1046
+ :param pulumi.Input[str] actions_required: A message indicating if changes on the service provider require any updates on the consumer.
1047
+ :param pulumi.Input[str] description: The reason for approval/rejection of the connection.
1048
+ :param pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']] status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
1049
+ """
1050
+ if actions_required is not None:
1051
+ pulumi.set(__self__, "actions_required", actions_required)
1052
+ if description is not None:
1053
+ pulumi.set(__self__, "description", description)
1054
+ if status is not None:
1055
+ pulumi.set(__self__, "status", status)
1056
+
1057
+ @property
1058
+ @pulumi.getter(name="actionsRequired")
1059
+ def actions_required(self) -> Optional[pulumi.Input[str]]:
1060
+ """
1061
+ A message indicating if changes on the service provider require any updates on the consumer.
1062
+ """
1063
+ return pulumi.get(self, "actions_required")
1064
+
1065
+ @actions_required.setter
1066
+ def actions_required(self, value: Optional[pulumi.Input[str]]):
1067
+ pulumi.set(self, "actions_required", value)
1068
+
1069
+ @property
1070
+ @pulumi.getter
1071
+ def description(self) -> Optional[pulumi.Input[str]]:
1072
+ """
1073
+ The reason for approval/rejection of the connection.
1074
+ """
1075
+ return pulumi.get(self, "description")
1076
+
1077
+ @description.setter
1078
+ def description(self, value: Optional[pulumi.Input[str]]):
1079
+ pulumi.set(self, "description", value)
1080
+
1081
+ @property
1082
+ @pulumi.getter
1083
+ def status(self) -> Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]:
1084
+ """
1085
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
1086
+ """
1087
+ return pulumi.get(self, "status")
1088
+
1089
+ @status.setter
1090
+ def status(self, value: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]):
1091
+ pulumi.set(self, "status", value)
1092
+
1093
+
1094
+ if not MYPY:
1095
+ class PurchasePlanArgsDict(TypedDict):
1096
+ """
1097
+ Used for establishing the purchase context of any 3rd Party artifact through MarketPlace.
1098
+ """
1099
+ name: pulumi.Input[str]
1100
+ """
1101
+ The plan ID.
1102
+ """
1103
+ product: pulumi.Input[str]
1104
+ """
1105
+ Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
1106
+ """
1107
+ publisher: pulumi.Input[str]
1108
+ """
1109
+ The publisher ID.
1110
+ """
1111
+ promotion_code: NotRequired[pulumi.Input[str]]
1112
+ """
1113
+ The Offer Promotion Code.
1114
+ """
1115
+ elif False:
1116
+ PurchasePlanArgsDict: TypeAlias = Mapping[str, Any]
1117
+
1118
+ @pulumi.input_type
1119
+ class PurchasePlanArgs:
1120
+ def __init__(__self__, *,
1121
+ name: pulumi.Input[str],
1122
+ product: pulumi.Input[str],
1123
+ publisher: pulumi.Input[str],
1124
+ promotion_code: Optional[pulumi.Input[str]] = None):
1125
+ """
1126
+ Used for establishing the purchase context of any 3rd Party artifact through MarketPlace.
1127
+ :param pulumi.Input[str] name: The plan ID.
1128
+ :param pulumi.Input[str] product: Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
1129
+ :param pulumi.Input[str] publisher: The publisher ID.
1130
+ :param pulumi.Input[str] promotion_code: The Offer Promotion Code.
1131
+ """
1132
+ pulumi.set(__self__, "name", name)
1133
+ pulumi.set(__self__, "product", product)
1134
+ pulumi.set(__self__, "publisher", publisher)
1135
+ if promotion_code is not None:
1136
+ pulumi.set(__self__, "promotion_code", promotion_code)
1137
+
1138
+ @property
1139
+ @pulumi.getter
1140
+ def name(self) -> pulumi.Input[str]:
1141
+ """
1142
+ The plan ID.
1143
+ """
1144
+ return pulumi.get(self, "name")
1145
+
1146
+ @name.setter
1147
+ def name(self, value: pulumi.Input[str]):
1148
+ pulumi.set(self, "name", value)
1149
+
1150
+ @property
1151
+ @pulumi.getter
1152
+ def product(self) -> pulumi.Input[str]:
1153
+ """
1154
+ Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
1155
+ """
1156
+ return pulumi.get(self, "product")
1157
+
1158
+ @product.setter
1159
+ def product(self, value: pulumi.Input[str]):
1160
+ pulumi.set(self, "product", value)
1161
+
1162
+ @property
1163
+ @pulumi.getter
1164
+ def publisher(self) -> pulumi.Input[str]:
1165
+ """
1166
+ The publisher ID.
1167
+ """
1168
+ return pulumi.get(self, "publisher")
1169
+
1170
+ @publisher.setter
1171
+ def publisher(self, value: pulumi.Input[str]):
1172
+ pulumi.set(self, "publisher", value)
1173
+
1174
+ @property
1175
+ @pulumi.getter(name="promotionCode")
1176
+ def promotion_code(self) -> Optional[pulumi.Input[str]]:
1177
+ """
1178
+ The Offer Promotion Code.
1179
+ """
1180
+ return pulumi.get(self, "promotion_code")
1181
+
1182
+ @promotion_code.setter
1183
+ def promotion_code(self, value: Optional[pulumi.Input[str]]):
1184
+ pulumi.set(self, "promotion_code", value)
1185
+
1186
+
1187
+ if not MYPY:
1188
+ class SnapshotSkuArgsDict(TypedDict):
1189
+ """
1190
+ The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
1191
+ """
1192
+ name: NotRequired[pulumi.Input[Union[str, 'SnapshotStorageAccountTypes']]]
1193
+ """
1194
+ The sku name.
1195
+ """
1196
+ elif False:
1197
+ SnapshotSkuArgsDict: TypeAlias = Mapping[str, Any]
1198
+
1199
+ @pulumi.input_type
1200
+ class SnapshotSkuArgs:
1201
+ def __init__(__self__, *,
1202
+ name: Optional[pulumi.Input[Union[str, 'SnapshotStorageAccountTypes']]] = None):
1203
+ """
1204
+ The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
1205
+ :param pulumi.Input[Union[str, 'SnapshotStorageAccountTypes']] name: The sku name.
1206
+ """
1207
+ if name is not None:
1208
+ pulumi.set(__self__, "name", name)
1209
+
1210
+ @property
1211
+ @pulumi.getter
1212
+ def name(self) -> Optional[pulumi.Input[Union[str, 'SnapshotStorageAccountTypes']]]:
1213
+ """
1214
+ The sku name.
1215
+ """
1216
+ return pulumi.get(self, "name")
1217
+
1218
+ @name.setter
1219
+ def name(self, value: Optional[pulumi.Input[Union[str, 'SnapshotStorageAccountTypes']]]):
1220
+ pulumi.set(self, "name", value)
1221
+
1222
+
1223
+ if not MYPY:
1224
+ class SourceVaultArgsDict(TypedDict):
1225
+ """
1226
+ The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}
1227
+ """
1228
+ id: NotRequired[pulumi.Input[str]]
1229
+ """
1230
+ Resource Id
1231
+ """
1232
+ elif False:
1233
+ SourceVaultArgsDict: TypeAlias = Mapping[str, Any]
1234
+
1235
+ @pulumi.input_type
1236
+ class SourceVaultArgs:
1237
+ def __init__(__self__, *,
1238
+ id: Optional[pulumi.Input[str]] = None):
1239
+ """
1240
+ The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}
1241
+ :param pulumi.Input[str] id: Resource Id
1242
+ """
1243
+ if id is not None:
1244
+ pulumi.set(__self__, "id", id)
1245
+
1246
+ @property
1247
+ @pulumi.getter
1248
+ def id(self) -> Optional[pulumi.Input[str]]:
1249
+ """
1250
+ Resource Id
1251
+ """
1252
+ return pulumi.get(self, "id")
1253
+
1254
+ @id.setter
1255
+ def id(self, value: Optional[pulumi.Input[str]]):
1256
+ pulumi.set(self, "id", value)
1257
+
1258
+
1259
+ if not MYPY:
1260
+ class SupportedCapabilitiesArgsDict(TypedDict):
1261
+ """
1262
+ List of supported capabilities persisted on the disk resource for VM use.
1263
+ """
1264
+ accelerated_network: NotRequired[pulumi.Input[bool]]
1265
+ """
1266
+ True if the image from which the OS disk is created supports accelerated networking.
1267
+ """
1268
+ architecture: NotRequired[pulumi.Input[Union[str, 'Architecture']]]
1269
+ """
1270
+ CPU architecture supported by an OS disk.
1271
+ """
1272
+ disk_controller_types: NotRequired[pulumi.Input[str]]
1273
+ """
1274
+ The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
1275
+ """
1276
+ elif False:
1277
+ SupportedCapabilitiesArgsDict: TypeAlias = Mapping[str, Any]
1278
+
1279
+ @pulumi.input_type
1280
+ class SupportedCapabilitiesArgs:
1281
+ def __init__(__self__, *,
1282
+ accelerated_network: Optional[pulumi.Input[bool]] = None,
1283
+ architecture: Optional[pulumi.Input[Union[str, 'Architecture']]] = None,
1284
+ disk_controller_types: Optional[pulumi.Input[str]] = None):
1285
+ """
1286
+ List of supported capabilities persisted on the disk resource for VM use.
1287
+ :param pulumi.Input[bool] accelerated_network: True if the image from which the OS disk is created supports accelerated networking.
1288
+ :param pulumi.Input[Union[str, 'Architecture']] architecture: CPU architecture supported by an OS disk.
1289
+ :param pulumi.Input[str] disk_controller_types: The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
1290
+ """
1291
+ if accelerated_network is not None:
1292
+ pulumi.set(__self__, "accelerated_network", accelerated_network)
1293
+ if architecture is not None:
1294
+ pulumi.set(__self__, "architecture", architecture)
1295
+ if disk_controller_types is not None:
1296
+ pulumi.set(__self__, "disk_controller_types", disk_controller_types)
1297
+
1298
+ @property
1299
+ @pulumi.getter(name="acceleratedNetwork")
1300
+ def accelerated_network(self) -> Optional[pulumi.Input[bool]]:
1301
+ """
1302
+ True if the image from which the OS disk is created supports accelerated networking.
1303
+ """
1304
+ return pulumi.get(self, "accelerated_network")
1305
+
1306
+ @accelerated_network.setter
1307
+ def accelerated_network(self, value: Optional[pulumi.Input[bool]]):
1308
+ pulumi.set(self, "accelerated_network", value)
1309
+
1310
+ @property
1311
+ @pulumi.getter
1312
+ def architecture(self) -> Optional[pulumi.Input[Union[str, 'Architecture']]]:
1313
+ """
1314
+ CPU architecture supported by an OS disk.
1315
+ """
1316
+ return pulumi.get(self, "architecture")
1317
+
1318
+ @architecture.setter
1319
+ def architecture(self, value: Optional[pulumi.Input[Union[str, 'Architecture']]]):
1320
+ pulumi.set(self, "architecture", value)
1321
+
1322
+ @property
1323
+ @pulumi.getter(name="diskControllerTypes")
1324
+ def disk_controller_types(self) -> Optional[pulumi.Input[str]]:
1325
+ """
1326
+ The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
1327
+ """
1328
+ return pulumi.get(self, "disk_controller_types")
1329
+
1330
+ @disk_controller_types.setter
1331
+ def disk_controller_types(self, value: Optional[pulumi.Input[str]]):
1332
+ pulumi.set(self, "disk_controller_types", value)
1333
+
1334
+