pulumi-azure-native 2.21.2a1702068757__py3-none-any.whl → 2.21.3a1702685082__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 (377) hide show
  1. pulumi_azure_native/__init__.py +90 -12
  2. pulumi_azure_native/app/_inputs.py +2 -2
  3. pulumi_azure_native/app/outputs.py +2 -2
  4. pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
  5. pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
  6. pulumi_azure_native/appconfiguration/__init__.py +3 -0
  7. pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
  8. pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
  9. pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
  10. pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
  11. pulumi_azure_native/appconfiguration/get_replica.py +4 -0
  12. pulumi_azure_native/appconfiguration/key_value.py +5 -1
  13. pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
  14. pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
  15. pulumi_azure_native/appconfiguration/replica.py +5 -1
  16. pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
  17. pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
  18. pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
  19. pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
  20. pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
  21. pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
  22. pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
  23. pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
  24. pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
  25. pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
  26. pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
  27. pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
  28. pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
  29. pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
  30. pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
  31. pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
  32. pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
  33. pulumi_azure_native/azurestackhci/__init__.py +5 -0
  34. pulumi_azure_native/azurestackhci/_enums.py +15 -0
  35. pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
  36. pulumi_azure_native/azurestackhci/cluster.py +3 -3
  37. pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
  38. pulumi_azure_native/azurestackhci/edge_device.py +5 -1
  39. pulumi_azure_native/azurestackhci/extension.py +3 -3
  40. pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
  41. pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
  42. pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
  43. pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
  44. pulumi_azure_native/azurestackhci/get_extension.py +2 -2
  45. pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
  46. pulumi_azure_native/azurestackhci/get_update.py +2 -2
  47. pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
  48. pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
  49. pulumi_azure_native/azurestackhci/outputs.py +92 -0
  50. pulumi_azure_native/azurestackhci/security_setting.py +241 -0
  51. pulumi_azure_native/azurestackhci/update.py +3 -3
  52. pulumi_azure_native/azurestackhci/update_run.py +3 -3
  53. pulumi_azure_native/azurestackhci/update_summary.py +3 -3
  54. pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
  55. pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
  56. pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
  57. pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
  58. pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
  59. pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
  60. pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
  61. pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
  62. pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
  63. pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
  64. pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
  65. pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
  66. pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
  67. pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
  68. pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
  69. pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
  70. pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
  71. pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
  72. pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
  73. pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
  74. pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
  75. pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
  76. pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
  77. pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
  78. pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
  79. pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
  80. pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
  81. pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
  82. pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
  83. pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
  84. pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
  85. pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
  86. pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
  87. pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
  88. pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
  89. pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
  90. pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
  91. pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
  92. pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
  93. pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
  94. pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
  95. pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
  96. pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
  97. pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
  98. pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
  99. pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
  100. pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
  101. pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
  102. pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
  103. pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
  104. pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
  105. pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
  106. pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
  107. pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
  108. pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
  109. pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
  110. pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
  111. pulumi_azure_native/compute/__init__.py +3 -0
  112. pulumi_azure_native/compute/availability_set.py +3 -3
  113. pulumi_azure_native/compute/capacity_reservation.py +3 -3
  114. pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
  115. pulumi_azure_native/compute/dedicated_host.py +3 -3
  116. pulumi_azure_native/compute/dedicated_host_group.py +3 -3
  117. pulumi_azure_native/compute/get_availability_set.py +2 -2
  118. pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
  119. pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
  120. pulumi_azure_native/compute/get_dedicated_host.py +2 -2
  121. pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
  122. pulumi_azure_native/compute/get_image.py +2 -2
  123. pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
  124. pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
  125. pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
  126. pulumi_azure_native/compute/get_restore_point.py +2 -2
  127. pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
  128. pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
  129. pulumi_azure_native/compute/get_virtual_machine.py +2 -2
  130. pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
  131. pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
  132. pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
  133. pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
  134. pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
  135. pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
  136. pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
  137. pulumi_azure_native/compute/image.py +3 -3
  138. pulumi_azure_native/compute/proximity_placement_group.py +3 -3
  139. pulumi_azure_native/compute/restore_point.py +3 -3
  140. pulumi_azure_native/compute/restore_point_collection.py +3 -3
  141. pulumi_azure_native/compute/ssh_public_key.py +3 -3
  142. pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
  143. pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
  144. pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
  145. pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
  146. pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
  147. pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
  148. pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
  149. pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
  150. pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
  151. pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
  152. pulumi_azure_native/compute/v20230301/image.py +1 -1
  153. pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
  154. pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
  155. pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
  156. pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
  157. pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
  158. pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
  159. pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
  160. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
  161. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
  162. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
  163. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
  164. pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
  165. pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
  166. pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
  167. pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
  168. pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
  169. pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
  170. pulumi_azure_native/compute/v20230701/image.py +1 -1
  171. pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
  172. pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
  173. pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
  174. pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
  175. pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
  176. pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
  177. pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
  178. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
  179. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
  180. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
  181. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
  182. pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
  183. pulumi_azure_native/compute/v20230901/__init__.py +48 -0
  184. pulumi_azure_native/compute/v20230901/_enums.py +650 -0
  185. pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
  186. pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
  187. pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
  188. pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
  189. pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
  190. pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
  191. pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
  192. pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
  193. pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
  194. pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
  195. pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
  196. pulumi_azure_native/compute/v20230901/get_image.py +201 -0
  197. pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
  198. pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
  199. pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
  200. pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
  201. pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
  202. pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
  203. pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
  204. pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
  205. pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
  206. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
  207. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
  208. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
  209. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
  210. pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
  211. pulumi_azure_native/compute/v20230901/image.py +340 -0
  212. pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
  213. pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
  214. pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
  215. pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
  216. pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
  217. pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
  218. pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
  219. pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
  220. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
  221. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
  222. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
  223. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
  224. pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
  225. pulumi_azure_native/compute/virtual_machine.py +3 -3
  226. pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
  227. pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
  228. pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
  229. pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
  230. pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
  231. pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
  232. pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
  233. pulumi_azure_native/databox/__init__.py +3 -0
  234. pulumi_azure_native/databox/get_job.py +2 -2
  235. pulumi_azure_native/databox/job.py +3 -3
  236. pulumi_azure_native/databox/list_job_credentials.py +2 -2
  237. pulumi_azure_native/databox/v20221201/job.py +1 -1
  238. pulumi_azure_native/databox/v20230301/job.py +1 -1
  239. pulumi_azure_native/databox/v20231201/__init__.py +13 -0
  240. pulumi_azure_native/databox/v20231201/_enums.py +270 -0
  241. pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
  242. pulumi_azure_native/databox/v20231201/get_job.py +383 -0
  243. pulumi_azure_native/databox/v20231201/job.py +524 -0
  244. pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
  245. pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
  246. pulumi_azure_native/dataprotection/__init__.py +0 -3
  247. pulumi_azure_native/dataprotection/backup_instance.py +3 -3
  248. pulumi_azure_native/dataprotection/backup_policy.py +3 -3
  249. pulumi_azure_native/dataprotection/backup_vault.py +3 -3
  250. pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
  251. pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
  252. pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
  253. pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
  254. pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
  255. pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
  256. pulumi_azure_native/dataprotection/resource_guard.py +3 -3
  257. pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
  258. pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
  259. pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
  260. pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
  261. pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
  262. pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
  263. pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
  264. pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
  265. pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
  266. pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
  267. pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
  268. pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
  269. pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
  270. pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
  271. pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
  272. pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
  273. pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
  274. pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
  275. pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
  276. pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
  277. pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
  278. pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
  279. pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
  280. pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
  281. pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
  282. pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
  283. pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
  284. pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
  285. pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
  286. pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
  287. pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
  288. pulumi_azure_native/kubernetes/__init__.py +3 -0
  289. pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
  290. pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
  291. pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
  292. pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
  293. pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
  294. pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
  295. pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
  296. pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
  297. pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
  298. pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
  299. pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
  300. pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
  301. pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
  302. pulumi_azure_native/maintenance/__init__.py +3 -0
  303. pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
  304. pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
  305. pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
  306. pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
  307. pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
  308. pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
  309. pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
  310. pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
  311. pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
  312. pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
  313. pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
  314. pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
  315. pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
  316. pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
  317. pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
  318. pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
  319. pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
  320. pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
  321. pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
  322. pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
  323. pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
  324. pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
  325. pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
  326. pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
  327. pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
  328. pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
  329. pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
  330. pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
  331. pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
  332. pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
  333. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
  334. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
  335. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
  336. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
  337. pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
  338. pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
  339. pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
  340. pulumi_azure_native/security/__init__.py +5 -0
  341. pulumi_azure_native/security/_enums.py +45 -0
  342. pulumi_azure_native/security/_inputs.py +63 -0
  343. pulumi_azure_native/security/get_pricing.py +250 -0
  344. pulumi_azure_native/security/outputs.py +122 -0
  345. pulumi_azure_native/security/pricing.py +345 -0
  346. pulumi_azure_native/security/v20240101/__init__.py +12 -0
  347. pulumi_azure_native/security/v20240101/_enums.py +53 -0
  348. pulumi_azure_native/security/v20240101/_inputs.py +78 -0
  349. pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
  350. pulumi_azure_native/security/v20240101/outputs.py +138 -0
  351. pulumi_azure_native/security/v20240101/pricing.py +343 -0
  352. pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
  353. pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
  354. pulumi_azure_native/synapse/big_data_pool.py +21 -2
  355. pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
  356. pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
  357. pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
  358. pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
  359. pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
  360. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
  361. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
  362. pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
  363. pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
  364. pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
  365. pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
  366. pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
  367. pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
  368. pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
  369. pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
  370. pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
  371. pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
  372. pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
  373. pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
  374. pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
  375. pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
  376. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
  377. {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,271 @@
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 pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetDedicatedHostResult',
15
+ 'AwaitableGetDedicatedHostResult',
16
+ 'get_dedicated_host',
17
+ 'get_dedicated_host_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetDedicatedHostResult:
22
+ """
23
+ Specifies information about the Dedicated host.
24
+ """
25
+ def __init__(__self__, auto_replace_on_failure=None, host_id=None, id=None, instance_view=None, license_type=None, location=None, name=None, platform_fault_domain=None, provisioning_state=None, provisioning_time=None, sku=None, tags=None, time_created=None, type=None, virtual_machines=None):
26
+ if auto_replace_on_failure and not isinstance(auto_replace_on_failure, bool):
27
+ raise TypeError("Expected argument 'auto_replace_on_failure' to be a bool")
28
+ pulumi.set(__self__, "auto_replace_on_failure", auto_replace_on_failure)
29
+ if host_id and not isinstance(host_id, str):
30
+ raise TypeError("Expected argument 'host_id' to be a str")
31
+ pulumi.set(__self__, "host_id", host_id)
32
+ if id and not isinstance(id, str):
33
+ raise TypeError("Expected argument 'id' to be a str")
34
+ pulumi.set(__self__, "id", id)
35
+ if instance_view and not isinstance(instance_view, dict):
36
+ raise TypeError("Expected argument 'instance_view' to be a dict")
37
+ pulumi.set(__self__, "instance_view", instance_view)
38
+ if license_type and not isinstance(license_type, str):
39
+ raise TypeError("Expected argument 'license_type' to be a str")
40
+ pulumi.set(__self__, "license_type", license_type)
41
+ if location and not isinstance(location, str):
42
+ raise TypeError("Expected argument 'location' to be a str")
43
+ pulumi.set(__self__, "location", location)
44
+ if name and not isinstance(name, str):
45
+ raise TypeError("Expected argument 'name' to be a str")
46
+ pulumi.set(__self__, "name", name)
47
+ if platform_fault_domain and not isinstance(platform_fault_domain, int):
48
+ raise TypeError("Expected argument 'platform_fault_domain' to be a int")
49
+ pulumi.set(__self__, "platform_fault_domain", platform_fault_domain)
50
+ if provisioning_state and not isinstance(provisioning_state, str):
51
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
52
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
53
+ if provisioning_time and not isinstance(provisioning_time, str):
54
+ raise TypeError("Expected argument 'provisioning_time' to be a str")
55
+ pulumi.set(__self__, "provisioning_time", provisioning_time)
56
+ if sku and not isinstance(sku, dict):
57
+ raise TypeError("Expected argument 'sku' to be a dict")
58
+ pulumi.set(__self__, "sku", sku)
59
+ if tags and not isinstance(tags, dict):
60
+ raise TypeError("Expected argument 'tags' to be a dict")
61
+ pulumi.set(__self__, "tags", tags)
62
+ if time_created and not isinstance(time_created, str):
63
+ raise TypeError("Expected argument 'time_created' to be a str")
64
+ pulumi.set(__self__, "time_created", time_created)
65
+ if type and not isinstance(type, str):
66
+ raise TypeError("Expected argument 'type' to be a str")
67
+ pulumi.set(__self__, "type", type)
68
+ if virtual_machines and not isinstance(virtual_machines, list):
69
+ raise TypeError("Expected argument 'virtual_machines' to be a list")
70
+ pulumi.set(__self__, "virtual_machines", virtual_machines)
71
+
72
+ @property
73
+ @pulumi.getter(name="autoReplaceOnFailure")
74
+ def auto_replace_on_failure(self) -> Optional[bool]:
75
+ """
76
+ Specifies whether the dedicated host should be replaced automatically in case of a failure. The value is defaulted to 'true' when not provided.
77
+ """
78
+ return pulumi.get(self, "auto_replace_on_failure")
79
+
80
+ @property
81
+ @pulumi.getter(name="hostId")
82
+ def host_id(self) -> str:
83
+ """
84
+ A unique id generated and assigned to the dedicated host by the platform. Does not change throughout the lifetime of the host.
85
+ """
86
+ return pulumi.get(self, "host_id")
87
+
88
+ @property
89
+ @pulumi.getter
90
+ def id(self) -> str:
91
+ """
92
+ Resource Id
93
+ """
94
+ return pulumi.get(self, "id")
95
+
96
+ @property
97
+ @pulumi.getter(name="instanceView")
98
+ def instance_view(self) -> 'outputs.DedicatedHostInstanceViewResponse':
99
+ """
100
+ The dedicated host instance view.
101
+ """
102
+ return pulumi.get(self, "instance_view")
103
+
104
+ @property
105
+ @pulumi.getter(name="licenseType")
106
+ def license_type(self) -> Optional[str]:
107
+ """
108
+ Specifies the software license type that will be applied to the VMs deployed on the dedicated host. Possible values are: **None,** **Windows_Server_Hybrid,** **Windows_Server_Perpetual.** The default value is: **None.**
109
+ """
110
+ return pulumi.get(self, "license_type")
111
+
112
+ @property
113
+ @pulumi.getter
114
+ def location(self) -> str:
115
+ """
116
+ Resource location
117
+ """
118
+ return pulumi.get(self, "location")
119
+
120
+ @property
121
+ @pulumi.getter
122
+ def name(self) -> str:
123
+ """
124
+ Resource name
125
+ """
126
+ return pulumi.get(self, "name")
127
+
128
+ @property
129
+ @pulumi.getter(name="platformFaultDomain")
130
+ def platform_fault_domain(self) -> Optional[int]:
131
+ """
132
+ Fault domain of the dedicated host within a dedicated host group.
133
+ """
134
+ return pulumi.get(self, "platform_fault_domain")
135
+
136
+ @property
137
+ @pulumi.getter(name="provisioningState")
138
+ def provisioning_state(self) -> str:
139
+ """
140
+ The provisioning state, which only appears in the response.
141
+ """
142
+ return pulumi.get(self, "provisioning_state")
143
+
144
+ @property
145
+ @pulumi.getter(name="provisioningTime")
146
+ def provisioning_time(self) -> str:
147
+ """
148
+ The date when the host was first provisioned.
149
+ """
150
+ return pulumi.get(self, "provisioning_time")
151
+
152
+ @property
153
+ @pulumi.getter
154
+ def sku(self) -> 'outputs.SkuResponse':
155
+ """
156
+ SKU of the dedicated host for Hardware Generation and VM family. Only name is required to be set. List Microsoft.Compute SKUs for a list of possible values.
157
+ """
158
+ return pulumi.get(self, "sku")
159
+
160
+ @property
161
+ @pulumi.getter
162
+ def tags(self) -> Optional[Mapping[str, str]]:
163
+ """
164
+ Resource tags
165
+ """
166
+ return pulumi.get(self, "tags")
167
+
168
+ @property
169
+ @pulumi.getter(name="timeCreated")
170
+ def time_created(self) -> str:
171
+ """
172
+ Specifies the time at which the Dedicated Host resource was created. Minimum api-version: 2021-11-01.
173
+ """
174
+ return pulumi.get(self, "time_created")
175
+
176
+ @property
177
+ @pulumi.getter
178
+ def type(self) -> str:
179
+ """
180
+ Resource type
181
+ """
182
+ return pulumi.get(self, "type")
183
+
184
+ @property
185
+ @pulumi.getter(name="virtualMachines")
186
+ def virtual_machines(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
187
+ """
188
+ A list of references to all virtual machines in the Dedicated Host.
189
+ """
190
+ return pulumi.get(self, "virtual_machines")
191
+
192
+
193
+ class AwaitableGetDedicatedHostResult(GetDedicatedHostResult):
194
+ # pylint: disable=using-constant-test
195
+ def __await__(self):
196
+ if False:
197
+ yield self
198
+ return GetDedicatedHostResult(
199
+ auto_replace_on_failure=self.auto_replace_on_failure,
200
+ host_id=self.host_id,
201
+ id=self.id,
202
+ instance_view=self.instance_view,
203
+ license_type=self.license_type,
204
+ location=self.location,
205
+ name=self.name,
206
+ platform_fault_domain=self.platform_fault_domain,
207
+ provisioning_state=self.provisioning_state,
208
+ provisioning_time=self.provisioning_time,
209
+ sku=self.sku,
210
+ tags=self.tags,
211
+ time_created=self.time_created,
212
+ type=self.type,
213
+ virtual_machines=self.virtual_machines)
214
+
215
+
216
+ def get_dedicated_host(expand: Optional[str] = None,
217
+ host_group_name: Optional[str] = None,
218
+ host_name: Optional[str] = None,
219
+ resource_group_name: Optional[str] = None,
220
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedHostResult:
221
+ """
222
+ Retrieves information about a dedicated host.
223
+
224
+
225
+ :param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated host. 'UserData' is not supported for dedicated host.
226
+ :param str host_group_name: The name of the dedicated host group.
227
+ :param str host_name: The name of the dedicated host.
228
+ :param str resource_group_name: The name of the resource group.
229
+ """
230
+ __args__ = dict()
231
+ __args__['expand'] = expand
232
+ __args__['hostGroupName'] = host_group_name
233
+ __args__['hostName'] = host_name
234
+ __args__['resourceGroupName'] = resource_group_name
235
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
236
+ __ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getDedicatedHost', __args__, opts=opts, typ=GetDedicatedHostResult).value
237
+
238
+ return AwaitableGetDedicatedHostResult(
239
+ auto_replace_on_failure=pulumi.get(__ret__, 'auto_replace_on_failure'),
240
+ host_id=pulumi.get(__ret__, 'host_id'),
241
+ id=pulumi.get(__ret__, 'id'),
242
+ instance_view=pulumi.get(__ret__, 'instance_view'),
243
+ license_type=pulumi.get(__ret__, 'license_type'),
244
+ location=pulumi.get(__ret__, 'location'),
245
+ name=pulumi.get(__ret__, 'name'),
246
+ platform_fault_domain=pulumi.get(__ret__, 'platform_fault_domain'),
247
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
248
+ provisioning_time=pulumi.get(__ret__, 'provisioning_time'),
249
+ sku=pulumi.get(__ret__, 'sku'),
250
+ tags=pulumi.get(__ret__, 'tags'),
251
+ time_created=pulumi.get(__ret__, 'time_created'),
252
+ type=pulumi.get(__ret__, 'type'),
253
+ virtual_machines=pulumi.get(__ret__, 'virtual_machines'))
254
+
255
+
256
+ @_utilities.lift_output_func(get_dedicated_host)
257
+ def get_dedicated_host_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
258
+ host_group_name: Optional[pulumi.Input[str]] = None,
259
+ host_name: Optional[pulumi.Input[str]] = None,
260
+ resource_group_name: Optional[pulumi.Input[str]] = None,
261
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDedicatedHostResult]:
262
+ """
263
+ Retrieves information about a dedicated host.
264
+
265
+
266
+ :param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated host. 'UserData' is not supported for dedicated host.
267
+ :param str host_group_name: The name of the dedicated host group.
268
+ :param str host_name: The name of the dedicated host.
269
+ :param str resource_group_name: The name of the resource group.
270
+ """
271
+ ...
@@ -0,0 +1,214 @@
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 pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetDedicatedHostGroupResult',
15
+ 'AwaitableGetDedicatedHostGroupResult',
16
+ 'get_dedicated_host_group',
17
+ 'get_dedicated_host_group_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetDedicatedHostGroupResult:
22
+ """
23
+ Specifies information about the dedicated host group that the dedicated hosts should be assigned to. Currently, a dedicated host can only be added to a dedicated host group at creation time. An existing dedicated host cannot be added to another dedicated host group.
24
+ """
25
+ def __init__(__self__, additional_capabilities=None, hosts=None, id=None, instance_view=None, location=None, name=None, platform_fault_domain_count=None, support_automatic_placement=None, tags=None, type=None, zones=None):
26
+ if additional_capabilities and not isinstance(additional_capabilities, dict):
27
+ raise TypeError("Expected argument 'additional_capabilities' to be a dict")
28
+ pulumi.set(__self__, "additional_capabilities", additional_capabilities)
29
+ if hosts and not isinstance(hosts, list):
30
+ raise TypeError("Expected argument 'hosts' to be a list")
31
+ pulumi.set(__self__, "hosts", hosts)
32
+ if id and not isinstance(id, str):
33
+ raise TypeError("Expected argument 'id' to be a str")
34
+ pulumi.set(__self__, "id", id)
35
+ if instance_view and not isinstance(instance_view, dict):
36
+ raise TypeError("Expected argument 'instance_view' to be a dict")
37
+ pulumi.set(__self__, "instance_view", instance_view)
38
+ if location and not isinstance(location, str):
39
+ raise TypeError("Expected argument 'location' to be a str")
40
+ pulumi.set(__self__, "location", location)
41
+ if name and not isinstance(name, str):
42
+ raise TypeError("Expected argument 'name' to be a str")
43
+ pulumi.set(__self__, "name", name)
44
+ if platform_fault_domain_count and not isinstance(platform_fault_domain_count, int):
45
+ raise TypeError("Expected argument 'platform_fault_domain_count' to be a int")
46
+ pulumi.set(__self__, "platform_fault_domain_count", platform_fault_domain_count)
47
+ if support_automatic_placement and not isinstance(support_automatic_placement, bool):
48
+ raise TypeError("Expected argument 'support_automatic_placement' to be a bool")
49
+ pulumi.set(__self__, "support_automatic_placement", support_automatic_placement)
50
+ if tags and not isinstance(tags, dict):
51
+ raise TypeError("Expected argument 'tags' to be a dict")
52
+ pulumi.set(__self__, "tags", tags)
53
+ if type and not isinstance(type, str):
54
+ raise TypeError("Expected argument 'type' to be a str")
55
+ pulumi.set(__self__, "type", type)
56
+ if zones and not isinstance(zones, list):
57
+ raise TypeError("Expected argument 'zones' to be a list")
58
+ pulumi.set(__self__, "zones", zones)
59
+
60
+ @property
61
+ @pulumi.getter(name="additionalCapabilities")
62
+ def additional_capabilities(self) -> Optional['outputs.DedicatedHostGroupPropertiesResponseAdditionalCapabilities']:
63
+ """
64
+ Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
65
+ """
66
+ return pulumi.get(self, "additional_capabilities")
67
+
68
+ @property
69
+ @pulumi.getter
70
+ def hosts(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
71
+ """
72
+ A list of references to all dedicated hosts in the dedicated host group.
73
+ """
74
+ return pulumi.get(self, "hosts")
75
+
76
+ @property
77
+ @pulumi.getter
78
+ def id(self) -> str:
79
+ """
80
+ Resource Id
81
+ """
82
+ return pulumi.get(self, "id")
83
+
84
+ @property
85
+ @pulumi.getter(name="instanceView")
86
+ def instance_view(self) -> 'outputs.DedicatedHostGroupInstanceViewResponse':
87
+ """
88
+ The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
89
+ """
90
+ return pulumi.get(self, "instance_view")
91
+
92
+ @property
93
+ @pulumi.getter
94
+ def location(self) -> str:
95
+ """
96
+ Resource location
97
+ """
98
+ return pulumi.get(self, "location")
99
+
100
+ @property
101
+ @pulumi.getter
102
+ def name(self) -> str:
103
+ """
104
+ Resource name
105
+ """
106
+ return pulumi.get(self, "name")
107
+
108
+ @property
109
+ @pulumi.getter(name="platformFaultDomainCount")
110
+ def platform_fault_domain_count(self) -> int:
111
+ """
112
+ Number of fault domains that the host group can span.
113
+ """
114
+ return pulumi.get(self, "platform_fault_domain_count")
115
+
116
+ @property
117
+ @pulumi.getter(name="supportAutomaticPlacement")
118
+ def support_automatic_placement(self) -> Optional[bool]:
119
+ """
120
+ Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
121
+ """
122
+ return pulumi.get(self, "support_automatic_placement")
123
+
124
+ @property
125
+ @pulumi.getter
126
+ def tags(self) -> Optional[Mapping[str, str]]:
127
+ """
128
+ Resource tags
129
+ """
130
+ return pulumi.get(self, "tags")
131
+
132
+ @property
133
+ @pulumi.getter
134
+ def type(self) -> str:
135
+ """
136
+ Resource type
137
+ """
138
+ return pulumi.get(self, "type")
139
+
140
+ @property
141
+ @pulumi.getter
142
+ def zones(self) -> Optional[Sequence[str]]:
143
+ """
144
+ Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
145
+ """
146
+ return pulumi.get(self, "zones")
147
+
148
+
149
+ class AwaitableGetDedicatedHostGroupResult(GetDedicatedHostGroupResult):
150
+ # pylint: disable=using-constant-test
151
+ def __await__(self):
152
+ if False:
153
+ yield self
154
+ return GetDedicatedHostGroupResult(
155
+ additional_capabilities=self.additional_capabilities,
156
+ hosts=self.hosts,
157
+ id=self.id,
158
+ instance_view=self.instance_view,
159
+ location=self.location,
160
+ name=self.name,
161
+ platform_fault_domain_count=self.platform_fault_domain_count,
162
+ support_automatic_placement=self.support_automatic_placement,
163
+ tags=self.tags,
164
+ type=self.type,
165
+ zones=self.zones)
166
+
167
+
168
+ def get_dedicated_host_group(expand: Optional[str] = None,
169
+ host_group_name: Optional[str] = None,
170
+ resource_group_name: Optional[str] = None,
171
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedHostGroupResult:
172
+ """
173
+ Retrieves information about a dedicated host group.
174
+
175
+
176
+ :param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated hosts under the dedicated host group. 'UserData' is not supported for dedicated host group.
177
+ :param str host_group_name: The name of the dedicated host group.
178
+ :param str resource_group_name: The name of the resource group.
179
+ """
180
+ __args__ = dict()
181
+ __args__['expand'] = expand
182
+ __args__['hostGroupName'] = host_group_name
183
+ __args__['resourceGroupName'] = resource_group_name
184
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
185
+ __ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getDedicatedHostGroup', __args__, opts=opts, typ=GetDedicatedHostGroupResult).value
186
+
187
+ return AwaitableGetDedicatedHostGroupResult(
188
+ additional_capabilities=pulumi.get(__ret__, 'additional_capabilities'),
189
+ hosts=pulumi.get(__ret__, 'hosts'),
190
+ id=pulumi.get(__ret__, 'id'),
191
+ instance_view=pulumi.get(__ret__, 'instance_view'),
192
+ location=pulumi.get(__ret__, 'location'),
193
+ name=pulumi.get(__ret__, 'name'),
194
+ platform_fault_domain_count=pulumi.get(__ret__, 'platform_fault_domain_count'),
195
+ support_automatic_placement=pulumi.get(__ret__, 'support_automatic_placement'),
196
+ tags=pulumi.get(__ret__, 'tags'),
197
+ type=pulumi.get(__ret__, 'type'),
198
+ zones=pulumi.get(__ret__, 'zones'))
199
+
200
+
201
+ @_utilities.lift_output_func(get_dedicated_host_group)
202
+ def get_dedicated_host_group_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
203
+ host_group_name: Optional[pulumi.Input[str]] = None,
204
+ resource_group_name: Optional[pulumi.Input[str]] = None,
205
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDedicatedHostGroupResult]:
206
+ """
207
+ Retrieves information about a dedicated host group.
208
+
209
+
210
+ :param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated hosts under the dedicated host group. 'UserData' is not supported for dedicated host group.
211
+ :param str host_group_name: The name of the dedicated host group.
212
+ :param str resource_group_name: The name of the resource group.
213
+ """
214
+ ...
@@ -0,0 +1,201 @@
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 pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetImageResult',
15
+ 'AwaitableGetImageResult',
16
+ 'get_image',
17
+ 'get_image_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetImageResult:
22
+ """
23
+ The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
24
+ """
25
+ def __init__(__self__, extended_location=None, hyper_v_generation=None, id=None, location=None, name=None, provisioning_state=None, source_virtual_machine=None, storage_profile=None, tags=None, type=None):
26
+ if extended_location and not isinstance(extended_location, dict):
27
+ raise TypeError("Expected argument 'extended_location' to be a dict")
28
+ pulumi.set(__self__, "extended_location", extended_location)
29
+ if hyper_v_generation and not isinstance(hyper_v_generation, str):
30
+ raise TypeError("Expected argument 'hyper_v_generation' to be a str")
31
+ pulumi.set(__self__, "hyper_v_generation", hyper_v_generation)
32
+ if id and not isinstance(id, str):
33
+ raise TypeError("Expected argument 'id' to be a str")
34
+ pulumi.set(__self__, "id", id)
35
+ if location and not isinstance(location, str):
36
+ raise TypeError("Expected argument 'location' to be a str")
37
+ pulumi.set(__self__, "location", location)
38
+ if name and not isinstance(name, str):
39
+ raise TypeError("Expected argument 'name' to be a str")
40
+ pulumi.set(__self__, "name", name)
41
+ if provisioning_state and not isinstance(provisioning_state, str):
42
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
43
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
44
+ if source_virtual_machine and not isinstance(source_virtual_machine, dict):
45
+ raise TypeError("Expected argument 'source_virtual_machine' to be a dict")
46
+ pulumi.set(__self__, "source_virtual_machine", source_virtual_machine)
47
+ if storage_profile and not isinstance(storage_profile, dict):
48
+ raise TypeError("Expected argument 'storage_profile' to be a dict")
49
+ pulumi.set(__self__, "storage_profile", storage_profile)
50
+ if tags and not isinstance(tags, dict):
51
+ raise TypeError("Expected argument 'tags' to be a dict")
52
+ pulumi.set(__self__, "tags", tags)
53
+ if type and not isinstance(type, str):
54
+ raise TypeError("Expected argument 'type' to be a str")
55
+ pulumi.set(__self__, "type", type)
56
+
57
+ @property
58
+ @pulumi.getter(name="extendedLocation")
59
+ def extended_location(self) -> Optional['outputs.ExtendedLocationResponse']:
60
+ """
61
+ The extended location of the Image.
62
+ """
63
+ return pulumi.get(self, "extended_location")
64
+
65
+ @property
66
+ @pulumi.getter(name="hyperVGeneration")
67
+ def hyper_v_generation(self) -> Optional[str]:
68
+ """
69
+ Specifies the HyperVGenerationType of the VirtualMachine created from the image. From API Version 2019-03-01 if the image source is a blob, then we need the user to specify the value, if the source is managed resource like disk or snapshot, we may require the user to specify the property if we cannot deduce it from the source managed resource.
70
+ """
71
+ return pulumi.get(self, "hyper_v_generation")
72
+
73
+ @property
74
+ @pulumi.getter
75
+ def id(self) -> str:
76
+ """
77
+ Resource Id
78
+ """
79
+ return pulumi.get(self, "id")
80
+
81
+ @property
82
+ @pulumi.getter
83
+ def location(self) -> str:
84
+ """
85
+ Resource location
86
+ """
87
+ return pulumi.get(self, "location")
88
+
89
+ @property
90
+ @pulumi.getter
91
+ def name(self) -> str:
92
+ """
93
+ Resource name
94
+ """
95
+ return pulumi.get(self, "name")
96
+
97
+ @property
98
+ @pulumi.getter(name="provisioningState")
99
+ def provisioning_state(self) -> str:
100
+ """
101
+ The provisioning state.
102
+ """
103
+ return pulumi.get(self, "provisioning_state")
104
+
105
+ @property
106
+ @pulumi.getter(name="sourceVirtualMachine")
107
+ def source_virtual_machine(self) -> Optional['outputs.SubResourceResponse']:
108
+ """
109
+ The source virtual machine from which Image is created.
110
+ """
111
+ return pulumi.get(self, "source_virtual_machine")
112
+
113
+ @property
114
+ @pulumi.getter(name="storageProfile")
115
+ def storage_profile(self) -> Optional['outputs.ImageStorageProfileResponse']:
116
+ """
117
+ Specifies the storage settings for the virtual machine disks.
118
+ """
119
+ return pulumi.get(self, "storage_profile")
120
+
121
+ @property
122
+ @pulumi.getter
123
+ def tags(self) -> Optional[Mapping[str, str]]:
124
+ """
125
+ Resource tags
126
+ """
127
+ return pulumi.get(self, "tags")
128
+
129
+ @property
130
+ @pulumi.getter
131
+ def type(self) -> str:
132
+ """
133
+ Resource type
134
+ """
135
+ return pulumi.get(self, "type")
136
+
137
+
138
+ class AwaitableGetImageResult(GetImageResult):
139
+ # pylint: disable=using-constant-test
140
+ def __await__(self):
141
+ if False:
142
+ yield self
143
+ return GetImageResult(
144
+ extended_location=self.extended_location,
145
+ hyper_v_generation=self.hyper_v_generation,
146
+ id=self.id,
147
+ location=self.location,
148
+ name=self.name,
149
+ provisioning_state=self.provisioning_state,
150
+ source_virtual_machine=self.source_virtual_machine,
151
+ storage_profile=self.storage_profile,
152
+ tags=self.tags,
153
+ type=self.type)
154
+
155
+
156
+ def get_image(expand: Optional[str] = None,
157
+ image_name: Optional[str] = None,
158
+ resource_group_name: Optional[str] = None,
159
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetImageResult:
160
+ """
161
+ Gets an image.
162
+
163
+
164
+ :param str expand: The expand expression to apply on the operation.
165
+ :param str image_name: The name of the image.
166
+ :param str resource_group_name: The name of the resource group.
167
+ """
168
+ __args__ = dict()
169
+ __args__['expand'] = expand
170
+ __args__['imageName'] = image_name
171
+ __args__['resourceGroupName'] = resource_group_name
172
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
173
+ __ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getImage', __args__, opts=opts, typ=GetImageResult).value
174
+
175
+ return AwaitableGetImageResult(
176
+ extended_location=pulumi.get(__ret__, 'extended_location'),
177
+ hyper_v_generation=pulumi.get(__ret__, 'hyper_v_generation'),
178
+ id=pulumi.get(__ret__, 'id'),
179
+ location=pulumi.get(__ret__, 'location'),
180
+ name=pulumi.get(__ret__, 'name'),
181
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
182
+ source_virtual_machine=pulumi.get(__ret__, 'source_virtual_machine'),
183
+ storage_profile=pulumi.get(__ret__, 'storage_profile'),
184
+ tags=pulumi.get(__ret__, 'tags'),
185
+ type=pulumi.get(__ret__, 'type'))
186
+
187
+
188
+ @_utilities.lift_output_func(get_image)
189
+ def get_image_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
190
+ image_name: Optional[pulumi.Input[str]] = None,
191
+ resource_group_name: Optional[pulumi.Input[str]] = None,
192
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetImageResult]:
193
+ """
194
+ Gets an image.
195
+
196
+
197
+ :param str expand: The expand expression to apply on the operation.
198
+ :param str image_name: The name of the image.
199
+ :param str resource_group_name: The name of the resource group.
200
+ """
201
+ ...