pulumi-azure-native 2.21.2__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.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
  361. {pulumi_azure_native-2.21.2.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.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
  377. {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,289 @@
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
+ 'GetVirtualMachineScaleSetVMExtensionResult',
15
+ 'AwaitableGetVirtualMachineScaleSetVMExtensionResult',
16
+ 'get_virtual_machine_scale_set_vm_extension',
17
+ 'get_virtual_machine_scale_set_vm_extension_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetVirtualMachineScaleSetVMExtensionResult:
22
+ """
23
+ Describes a VMSS VM Extension.
24
+ """
25
+ def __init__(__self__, auto_upgrade_minor_version=None, enable_automatic_upgrade=None, force_update_tag=None, id=None, instance_view=None, location=None, name=None, protected_settings=None, protected_settings_from_key_vault=None, provision_after_extensions=None, provisioning_state=None, publisher=None, settings=None, suppress_failures=None, type=None, type_handler_version=None):
26
+ if auto_upgrade_minor_version and not isinstance(auto_upgrade_minor_version, bool):
27
+ raise TypeError("Expected argument 'auto_upgrade_minor_version' to be a bool")
28
+ pulumi.set(__self__, "auto_upgrade_minor_version", auto_upgrade_minor_version)
29
+ if enable_automatic_upgrade and not isinstance(enable_automatic_upgrade, bool):
30
+ raise TypeError("Expected argument 'enable_automatic_upgrade' to be a bool")
31
+ pulumi.set(__self__, "enable_automatic_upgrade", enable_automatic_upgrade)
32
+ if force_update_tag and not isinstance(force_update_tag, str):
33
+ raise TypeError("Expected argument 'force_update_tag' to be a str")
34
+ pulumi.set(__self__, "force_update_tag", force_update_tag)
35
+ if id and not isinstance(id, str):
36
+ raise TypeError("Expected argument 'id' to be a str")
37
+ pulumi.set(__self__, "id", id)
38
+ if instance_view and not isinstance(instance_view, dict):
39
+ raise TypeError("Expected argument 'instance_view' to be a dict")
40
+ pulumi.set(__self__, "instance_view", instance_view)
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 protected_settings and not isinstance(protected_settings, dict):
48
+ raise TypeError("Expected argument 'protected_settings' to be a dict")
49
+ pulumi.set(__self__, "protected_settings", protected_settings)
50
+ if protected_settings_from_key_vault and not isinstance(protected_settings_from_key_vault, dict):
51
+ raise TypeError("Expected argument 'protected_settings_from_key_vault' to be a dict")
52
+ pulumi.set(__self__, "protected_settings_from_key_vault", protected_settings_from_key_vault)
53
+ if provision_after_extensions and not isinstance(provision_after_extensions, list):
54
+ raise TypeError("Expected argument 'provision_after_extensions' to be a list")
55
+ pulumi.set(__self__, "provision_after_extensions", provision_after_extensions)
56
+ if provisioning_state and not isinstance(provisioning_state, str):
57
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
58
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
59
+ if publisher and not isinstance(publisher, str):
60
+ raise TypeError("Expected argument 'publisher' to be a str")
61
+ pulumi.set(__self__, "publisher", publisher)
62
+ if settings and not isinstance(settings, dict):
63
+ raise TypeError("Expected argument 'settings' to be a dict")
64
+ pulumi.set(__self__, "settings", settings)
65
+ if suppress_failures and not isinstance(suppress_failures, bool):
66
+ raise TypeError("Expected argument 'suppress_failures' to be a bool")
67
+ pulumi.set(__self__, "suppress_failures", suppress_failures)
68
+ if type and not isinstance(type, str):
69
+ raise TypeError("Expected argument 'type' to be a str")
70
+ pulumi.set(__self__, "type", type)
71
+ if type_handler_version and not isinstance(type_handler_version, str):
72
+ raise TypeError("Expected argument 'type_handler_version' to be a str")
73
+ pulumi.set(__self__, "type_handler_version", type_handler_version)
74
+
75
+ @property
76
+ @pulumi.getter(name="autoUpgradeMinorVersion")
77
+ def auto_upgrade_minor_version(self) -> Optional[bool]:
78
+ """
79
+ Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
80
+ """
81
+ return pulumi.get(self, "auto_upgrade_minor_version")
82
+
83
+ @property
84
+ @pulumi.getter(name="enableAutomaticUpgrade")
85
+ def enable_automatic_upgrade(self) -> Optional[bool]:
86
+ """
87
+ Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
88
+ """
89
+ return pulumi.get(self, "enable_automatic_upgrade")
90
+
91
+ @property
92
+ @pulumi.getter(name="forceUpdateTag")
93
+ def force_update_tag(self) -> Optional[str]:
94
+ """
95
+ How the extension handler should be forced to update even if the extension configuration has not changed.
96
+ """
97
+ return pulumi.get(self, "force_update_tag")
98
+
99
+ @property
100
+ @pulumi.getter
101
+ def id(self) -> str:
102
+ """
103
+ Resource Id
104
+ """
105
+ return pulumi.get(self, "id")
106
+
107
+ @property
108
+ @pulumi.getter(name="instanceView")
109
+ def instance_view(self) -> Optional['outputs.VirtualMachineExtensionInstanceViewResponse']:
110
+ """
111
+ The virtual machine extension instance view.
112
+ """
113
+ return pulumi.get(self, "instance_view")
114
+
115
+ @property
116
+ @pulumi.getter
117
+ def location(self) -> Optional[str]:
118
+ """
119
+ The location of the extension.
120
+ """
121
+ return pulumi.get(self, "location")
122
+
123
+ @property
124
+ @pulumi.getter
125
+ def name(self) -> str:
126
+ """
127
+ The name of the extension.
128
+ """
129
+ return pulumi.get(self, "name")
130
+
131
+ @property
132
+ @pulumi.getter(name="protectedSettings")
133
+ def protected_settings(self) -> Optional[Any]:
134
+ """
135
+ The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
136
+ """
137
+ return pulumi.get(self, "protected_settings")
138
+
139
+ @property
140
+ @pulumi.getter(name="protectedSettingsFromKeyVault")
141
+ def protected_settings_from_key_vault(self) -> Optional['outputs.KeyVaultSecretReferenceResponse']:
142
+ """
143
+ The extensions protected settings that are passed by reference, and consumed from key vault
144
+ """
145
+ return pulumi.get(self, "protected_settings_from_key_vault")
146
+
147
+ @property
148
+ @pulumi.getter(name="provisionAfterExtensions")
149
+ def provision_after_extensions(self) -> Optional[Sequence[str]]:
150
+ """
151
+ Collection of extension names after which this extension needs to be provisioned.
152
+ """
153
+ return pulumi.get(self, "provision_after_extensions")
154
+
155
+ @property
156
+ @pulumi.getter(name="provisioningState")
157
+ def provisioning_state(self) -> str:
158
+ """
159
+ The provisioning state, which only appears in the response.
160
+ """
161
+ return pulumi.get(self, "provisioning_state")
162
+
163
+ @property
164
+ @pulumi.getter
165
+ def publisher(self) -> Optional[str]:
166
+ """
167
+ The name of the extension handler publisher.
168
+ """
169
+ return pulumi.get(self, "publisher")
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def settings(self) -> Optional[Any]:
174
+ """
175
+ Json formatted public settings for the extension.
176
+ """
177
+ return pulumi.get(self, "settings")
178
+
179
+ @property
180
+ @pulumi.getter(name="suppressFailures")
181
+ def suppress_failures(self) -> Optional[bool]:
182
+ """
183
+ Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
184
+ """
185
+ return pulumi.get(self, "suppress_failures")
186
+
187
+ @property
188
+ @pulumi.getter
189
+ def type(self) -> str:
190
+ """
191
+ Resource type
192
+ """
193
+ return pulumi.get(self, "type")
194
+
195
+ @property
196
+ @pulumi.getter(name="typeHandlerVersion")
197
+ def type_handler_version(self) -> Optional[str]:
198
+ """
199
+ Specifies the version of the script handler.
200
+ """
201
+ return pulumi.get(self, "type_handler_version")
202
+
203
+
204
+ class AwaitableGetVirtualMachineScaleSetVMExtensionResult(GetVirtualMachineScaleSetVMExtensionResult):
205
+ # pylint: disable=using-constant-test
206
+ def __await__(self):
207
+ if False:
208
+ yield self
209
+ return GetVirtualMachineScaleSetVMExtensionResult(
210
+ auto_upgrade_minor_version=self.auto_upgrade_minor_version,
211
+ enable_automatic_upgrade=self.enable_automatic_upgrade,
212
+ force_update_tag=self.force_update_tag,
213
+ id=self.id,
214
+ instance_view=self.instance_view,
215
+ location=self.location,
216
+ name=self.name,
217
+ protected_settings=self.protected_settings,
218
+ protected_settings_from_key_vault=self.protected_settings_from_key_vault,
219
+ provision_after_extensions=self.provision_after_extensions,
220
+ provisioning_state=self.provisioning_state,
221
+ publisher=self.publisher,
222
+ settings=self.settings,
223
+ suppress_failures=self.suppress_failures,
224
+ type=self.type,
225
+ type_handler_version=self.type_handler_version)
226
+
227
+
228
+ def get_virtual_machine_scale_set_vm_extension(expand: Optional[str] = None,
229
+ instance_id: Optional[str] = None,
230
+ resource_group_name: Optional[str] = None,
231
+ vm_extension_name: Optional[str] = None,
232
+ vm_scale_set_name: Optional[str] = None,
233
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVirtualMachineScaleSetVMExtensionResult:
234
+ """
235
+ The operation to get the VMSS VM extension.
236
+
237
+
238
+ :param str expand: The expand expression to apply on the operation.
239
+ :param str instance_id: The instance ID of the virtual machine.
240
+ :param str resource_group_name: The name of the resource group.
241
+ :param str vm_extension_name: The name of the virtual machine extension.
242
+ :param str vm_scale_set_name: The name of the VM scale set.
243
+ """
244
+ __args__ = dict()
245
+ __args__['expand'] = expand
246
+ __args__['instanceId'] = instance_id
247
+ __args__['resourceGroupName'] = resource_group_name
248
+ __args__['vmExtensionName'] = vm_extension_name
249
+ __args__['vmScaleSetName'] = vm_scale_set_name
250
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
251
+ __ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getVirtualMachineScaleSetVMExtension', __args__, opts=opts, typ=GetVirtualMachineScaleSetVMExtensionResult).value
252
+
253
+ return AwaitableGetVirtualMachineScaleSetVMExtensionResult(
254
+ auto_upgrade_minor_version=pulumi.get(__ret__, 'auto_upgrade_minor_version'),
255
+ enable_automatic_upgrade=pulumi.get(__ret__, 'enable_automatic_upgrade'),
256
+ force_update_tag=pulumi.get(__ret__, 'force_update_tag'),
257
+ id=pulumi.get(__ret__, 'id'),
258
+ instance_view=pulumi.get(__ret__, 'instance_view'),
259
+ location=pulumi.get(__ret__, 'location'),
260
+ name=pulumi.get(__ret__, 'name'),
261
+ protected_settings=pulumi.get(__ret__, 'protected_settings'),
262
+ protected_settings_from_key_vault=pulumi.get(__ret__, 'protected_settings_from_key_vault'),
263
+ provision_after_extensions=pulumi.get(__ret__, 'provision_after_extensions'),
264
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
265
+ publisher=pulumi.get(__ret__, 'publisher'),
266
+ settings=pulumi.get(__ret__, 'settings'),
267
+ suppress_failures=pulumi.get(__ret__, 'suppress_failures'),
268
+ type=pulumi.get(__ret__, 'type'),
269
+ type_handler_version=pulumi.get(__ret__, 'type_handler_version'))
270
+
271
+
272
+ @_utilities.lift_output_func(get_virtual_machine_scale_set_vm_extension)
273
+ def get_virtual_machine_scale_set_vm_extension_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
274
+ instance_id: Optional[pulumi.Input[str]] = None,
275
+ resource_group_name: Optional[pulumi.Input[str]] = None,
276
+ vm_extension_name: Optional[pulumi.Input[str]] = None,
277
+ vm_scale_set_name: Optional[pulumi.Input[str]] = None,
278
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVirtualMachineScaleSetVMExtensionResult]:
279
+ """
280
+ The operation to get the VMSS VM extension.
281
+
282
+
283
+ :param str expand: The expand expression to apply on the operation.
284
+ :param str instance_id: The instance ID of the virtual machine.
285
+ :param str resource_group_name: The name of the resource group.
286
+ :param str vm_extension_name: The name of the virtual machine extension.
287
+ :param str vm_scale_set_name: The name of the VM scale set.
288
+ """
289
+ ...
@@ -0,0 +1,328 @@
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
+ 'GetVirtualMachineScaleSetVMRunCommandResult',
15
+ 'AwaitableGetVirtualMachineScaleSetVMRunCommandResult',
16
+ 'get_virtual_machine_scale_set_vm_run_command',
17
+ 'get_virtual_machine_scale_set_vm_run_command_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetVirtualMachineScaleSetVMRunCommandResult:
22
+ """
23
+ Describes a Virtual Machine run command.
24
+ """
25
+ def __init__(__self__, async_execution=None, error_blob_managed_identity=None, error_blob_uri=None, id=None, instance_view=None, location=None, name=None, output_blob_managed_identity=None, output_blob_uri=None, parameters=None, protected_parameters=None, provisioning_state=None, run_as_password=None, run_as_user=None, source=None, tags=None, timeout_in_seconds=None, treat_failure_as_deployment_failure=None, type=None):
26
+ if async_execution and not isinstance(async_execution, bool):
27
+ raise TypeError("Expected argument 'async_execution' to be a bool")
28
+ pulumi.set(__self__, "async_execution", async_execution)
29
+ if error_blob_managed_identity and not isinstance(error_blob_managed_identity, dict):
30
+ raise TypeError("Expected argument 'error_blob_managed_identity' to be a dict")
31
+ pulumi.set(__self__, "error_blob_managed_identity", error_blob_managed_identity)
32
+ if error_blob_uri and not isinstance(error_blob_uri, str):
33
+ raise TypeError("Expected argument 'error_blob_uri' to be a str")
34
+ pulumi.set(__self__, "error_blob_uri", error_blob_uri)
35
+ if id and not isinstance(id, str):
36
+ raise TypeError("Expected argument 'id' to be a str")
37
+ pulumi.set(__self__, "id", id)
38
+ if instance_view and not isinstance(instance_view, dict):
39
+ raise TypeError("Expected argument 'instance_view' to be a dict")
40
+ pulumi.set(__self__, "instance_view", instance_view)
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 output_blob_managed_identity and not isinstance(output_blob_managed_identity, dict):
48
+ raise TypeError("Expected argument 'output_blob_managed_identity' to be a dict")
49
+ pulumi.set(__self__, "output_blob_managed_identity", output_blob_managed_identity)
50
+ if output_blob_uri and not isinstance(output_blob_uri, str):
51
+ raise TypeError("Expected argument 'output_blob_uri' to be a str")
52
+ pulumi.set(__self__, "output_blob_uri", output_blob_uri)
53
+ if parameters and not isinstance(parameters, list):
54
+ raise TypeError("Expected argument 'parameters' to be a list")
55
+ pulumi.set(__self__, "parameters", parameters)
56
+ if protected_parameters and not isinstance(protected_parameters, list):
57
+ raise TypeError("Expected argument 'protected_parameters' to be a list")
58
+ pulumi.set(__self__, "protected_parameters", protected_parameters)
59
+ if provisioning_state and not isinstance(provisioning_state, str):
60
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
61
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
62
+ if run_as_password and not isinstance(run_as_password, str):
63
+ raise TypeError("Expected argument 'run_as_password' to be a str")
64
+ pulumi.set(__self__, "run_as_password", run_as_password)
65
+ if run_as_user and not isinstance(run_as_user, str):
66
+ raise TypeError("Expected argument 'run_as_user' to be a str")
67
+ pulumi.set(__self__, "run_as_user", run_as_user)
68
+ if source and not isinstance(source, dict):
69
+ raise TypeError("Expected argument 'source' to be a dict")
70
+ pulumi.set(__self__, "source", source)
71
+ if tags and not isinstance(tags, dict):
72
+ raise TypeError("Expected argument 'tags' to be a dict")
73
+ pulumi.set(__self__, "tags", tags)
74
+ if timeout_in_seconds and not isinstance(timeout_in_seconds, int):
75
+ raise TypeError("Expected argument 'timeout_in_seconds' to be a int")
76
+ pulumi.set(__self__, "timeout_in_seconds", timeout_in_seconds)
77
+ if treat_failure_as_deployment_failure and not isinstance(treat_failure_as_deployment_failure, bool):
78
+ raise TypeError("Expected argument 'treat_failure_as_deployment_failure' to be a bool")
79
+ pulumi.set(__self__, "treat_failure_as_deployment_failure", treat_failure_as_deployment_failure)
80
+ if type and not isinstance(type, str):
81
+ raise TypeError("Expected argument 'type' to be a str")
82
+ pulumi.set(__self__, "type", type)
83
+
84
+ @property
85
+ @pulumi.getter(name="asyncExecution")
86
+ def async_execution(self) -> Optional[bool]:
87
+ """
88
+ Optional. If set to true, provisioning will complete as soon as the script starts and will not wait for script to complete.
89
+ """
90
+ return pulumi.get(self, "async_execution")
91
+
92
+ @property
93
+ @pulumi.getter(name="errorBlobManagedIdentity")
94
+ def error_blob_managed_identity(self) -> Optional['outputs.RunCommandManagedIdentityResponse']:
95
+ """
96
+ User-assigned managed identity that has access to errorBlobUri storage blob. Use an empty object in case of system-assigned identity. Make sure managed identity has been given access to blob's container with 'Storage Blob Data Contributor' role assignment. In case of user-assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged
97
+ """
98
+ return pulumi.get(self, "error_blob_managed_identity")
99
+
100
+ @property
101
+ @pulumi.getter(name="errorBlobUri")
102
+ def error_blob_uri(self) -> Optional[str]:
103
+ """
104
+ Specifies the Azure storage blob where script error stream will be uploaded. Use a SAS URI with read, append, create, write access OR use managed identity to provide the VM access to the blob. Refer errorBlobManagedIdentity parameter.
105
+ """
106
+ return pulumi.get(self, "error_blob_uri")
107
+
108
+ @property
109
+ @pulumi.getter
110
+ def id(self) -> str:
111
+ """
112
+ Resource Id
113
+ """
114
+ return pulumi.get(self, "id")
115
+
116
+ @property
117
+ @pulumi.getter(name="instanceView")
118
+ def instance_view(self) -> 'outputs.VirtualMachineRunCommandInstanceViewResponse':
119
+ """
120
+ The virtual machine run command instance view.
121
+ """
122
+ return pulumi.get(self, "instance_view")
123
+
124
+ @property
125
+ @pulumi.getter
126
+ def location(self) -> str:
127
+ """
128
+ Resource location
129
+ """
130
+ return pulumi.get(self, "location")
131
+
132
+ @property
133
+ @pulumi.getter
134
+ def name(self) -> str:
135
+ """
136
+ Resource name
137
+ """
138
+ return pulumi.get(self, "name")
139
+
140
+ @property
141
+ @pulumi.getter(name="outputBlobManagedIdentity")
142
+ def output_blob_managed_identity(self) -> Optional['outputs.RunCommandManagedIdentityResponse']:
143
+ """
144
+ User-assigned managed identity that has access to outputBlobUri storage blob. Use an empty object in case of system-assigned identity. Make sure managed identity has been given access to blob's container with 'Storage Blob Data Contributor' role assignment. In case of user-assigned identity, make sure you add it under VM's identity. For more info on managed identity and Run Command, refer https://aka.ms/ManagedIdentity and https://aka.ms/RunCommandManaged
145
+ """
146
+ return pulumi.get(self, "output_blob_managed_identity")
147
+
148
+ @property
149
+ @pulumi.getter(name="outputBlobUri")
150
+ def output_blob_uri(self) -> Optional[str]:
151
+ """
152
+ Specifies the Azure storage blob where script output stream will be uploaded. Use a SAS URI with read, append, create, write access OR use managed identity to provide the VM access to the blob. Refer outputBlobManagedIdentity parameter.
153
+ """
154
+ return pulumi.get(self, "output_blob_uri")
155
+
156
+ @property
157
+ @pulumi.getter
158
+ def parameters(self) -> Optional[Sequence['outputs.RunCommandInputParameterResponse']]:
159
+ """
160
+ The parameters used by the script.
161
+ """
162
+ return pulumi.get(self, "parameters")
163
+
164
+ @property
165
+ @pulumi.getter(name="protectedParameters")
166
+ def protected_parameters(self) -> Optional[Sequence['outputs.RunCommandInputParameterResponse']]:
167
+ """
168
+ The parameters used by the script.
169
+ """
170
+ return pulumi.get(self, "protected_parameters")
171
+
172
+ @property
173
+ @pulumi.getter(name="provisioningState")
174
+ def provisioning_state(self) -> str:
175
+ """
176
+ The provisioning state, which only appears in the response. If treatFailureAsDeploymentFailure set to true, any failure in the script will fail the deployment and ProvisioningState will be marked as Failed. If treatFailureAsDeploymentFailure set to false, ProvisioningState would only reflect whether the run command was run or not by the extensions platform, it would not indicate whether script failed in case of script failures. See instance view of run command in case of script failures to see executionMessage, output, error: https://aka.ms/runcommandmanaged#get-execution-status-and-results
177
+ """
178
+ return pulumi.get(self, "provisioning_state")
179
+
180
+ @property
181
+ @pulumi.getter(name="runAsPassword")
182
+ def run_as_password(self) -> Optional[str]:
183
+ """
184
+ Specifies the user account password on the VM when executing the run command.
185
+ """
186
+ return pulumi.get(self, "run_as_password")
187
+
188
+ @property
189
+ @pulumi.getter(name="runAsUser")
190
+ def run_as_user(self) -> Optional[str]:
191
+ """
192
+ Specifies the user account on the VM when executing the run command.
193
+ """
194
+ return pulumi.get(self, "run_as_user")
195
+
196
+ @property
197
+ @pulumi.getter
198
+ def source(self) -> Optional['outputs.VirtualMachineRunCommandScriptSourceResponse']:
199
+ """
200
+ The source of the run command script.
201
+ """
202
+ return pulumi.get(self, "source")
203
+
204
+ @property
205
+ @pulumi.getter
206
+ def tags(self) -> Optional[Mapping[str, str]]:
207
+ """
208
+ Resource tags
209
+ """
210
+ return pulumi.get(self, "tags")
211
+
212
+ @property
213
+ @pulumi.getter(name="timeoutInSeconds")
214
+ def timeout_in_seconds(self) -> Optional[int]:
215
+ """
216
+ The timeout in seconds to execute the run command.
217
+ """
218
+ return pulumi.get(self, "timeout_in_seconds")
219
+
220
+ @property
221
+ @pulumi.getter(name="treatFailureAsDeploymentFailure")
222
+ def treat_failure_as_deployment_failure(self) -> Optional[bool]:
223
+ """
224
+ Optional. If set to true, any failure in the script will fail the deployment and ProvisioningState will be marked as Failed. If set to false, ProvisioningState would only reflect whether the run command was run or not by the extensions platform, it would not indicate whether script failed in case of script failures. See instance view of run command in case of script failures to see executionMessage, output, error: https://aka.ms/runcommandmanaged#get-execution-status-and-results
225
+ """
226
+ return pulumi.get(self, "treat_failure_as_deployment_failure")
227
+
228
+ @property
229
+ @pulumi.getter
230
+ def type(self) -> str:
231
+ """
232
+ Resource type
233
+ """
234
+ return pulumi.get(self, "type")
235
+
236
+
237
+ class AwaitableGetVirtualMachineScaleSetVMRunCommandResult(GetVirtualMachineScaleSetVMRunCommandResult):
238
+ # pylint: disable=using-constant-test
239
+ def __await__(self):
240
+ if False:
241
+ yield self
242
+ return GetVirtualMachineScaleSetVMRunCommandResult(
243
+ async_execution=self.async_execution,
244
+ error_blob_managed_identity=self.error_blob_managed_identity,
245
+ error_blob_uri=self.error_blob_uri,
246
+ id=self.id,
247
+ instance_view=self.instance_view,
248
+ location=self.location,
249
+ name=self.name,
250
+ output_blob_managed_identity=self.output_blob_managed_identity,
251
+ output_blob_uri=self.output_blob_uri,
252
+ parameters=self.parameters,
253
+ protected_parameters=self.protected_parameters,
254
+ provisioning_state=self.provisioning_state,
255
+ run_as_password=self.run_as_password,
256
+ run_as_user=self.run_as_user,
257
+ source=self.source,
258
+ tags=self.tags,
259
+ timeout_in_seconds=self.timeout_in_seconds,
260
+ treat_failure_as_deployment_failure=self.treat_failure_as_deployment_failure,
261
+ type=self.type)
262
+
263
+
264
+ def get_virtual_machine_scale_set_vm_run_command(expand: Optional[str] = None,
265
+ instance_id: Optional[str] = None,
266
+ resource_group_name: Optional[str] = None,
267
+ run_command_name: Optional[str] = None,
268
+ vm_scale_set_name: Optional[str] = None,
269
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVirtualMachineScaleSetVMRunCommandResult:
270
+ """
271
+ The operation to get the VMSS VM run command.
272
+
273
+
274
+ :param str expand: The expand expression to apply on the operation.
275
+ :param str instance_id: The instance ID of the virtual machine.
276
+ :param str resource_group_name: The name of the resource group.
277
+ :param str run_command_name: The name of the virtual machine run command.
278
+ :param str vm_scale_set_name: The name of the VM scale set.
279
+ """
280
+ __args__ = dict()
281
+ __args__['expand'] = expand
282
+ __args__['instanceId'] = instance_id
283
+ __args__['resourceGroupName'] = resource_group_name
284
+ __args__['runCommandName'] = run_command_name
285
+ __args__['vmScaleSetName'] = vm_scale_set_name
286
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
287
+ __ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getVirtualMachineScaleSetVMRunCommand', __args__, opts=opts, typ=GetVirtualMachineScaleSetVMRunCommandResult).value
288
+
289
+ return AwaitableGetVirtualMachineScaleSetVMRunCommandResult(
290
+ async_execution=pulumi.get(__ret__, 'async_execution'),
291
+ error_blob_managed_identity=pulumi.get(__ret__, 'error_blob_managed_identity'),
292
+ error_blob_uri=pulumi.get(__ret__, 'error_blob_uri'),
293
+ id=pulumi.get(__ret__, 'id'),
294
+ instance_view=pulumi.get(__ret__, 'instance_view'),
295
+ location=pulumi.get(__ret__, 'location'),
296
+ name=pulumi.get(__ret__, 'name'),
297
+ output_blob_managed_identity=pulumi.get(__ret__, 'output_blob_managed_identity'),
298
+ output_blob_uri=pulumi.get(__ret__, 'output_blob_uri'),
299
+ parameters=pulumi.get(__ret__, 'parameters'),
300
+ protected_parameters=pulumi.get(__ret__, 'protected_parameters'),
301
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
302
+ run_as_password=pulumi.get(__ret__, 'run_as_password'),
303
+ run_as_user=pulumi.get(__ret__, 'run_as_user'),
304
+ source=pulumi.get(__ret__, 'source'),
305
+ tags=pulumi.get(__ret__, 'tags'),
306
+ timeout_in_seconds=pulumi.get(__ret__, 'timeout_in_seconds'),
307
+ treat_failure_as_deployment_failure=pulumi.get(__ret__, 'treat_failure_as_deployment_failure'),
308
+ type=pulumi.get(__ret__, 'type'))
309
+
310
+
311
+ @_utilities.lift_output_func(get_virtual_machine_scale_set_vm_run_command)
312
+ def get_virtual_machine_scale_set_vm_run_command_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
313
+ instance_id: Optional[pulumi.Input[str]] = None,
314
+ resource_group_name: Optional[pulumi.Input[str]] = None,
315
+ run_command_name: Optional[pulumi.Input[str]] = None,
316
+ vm_scale_set_name: Optional[pulumi.Input[str]] = None,
317
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVirtualMachineScaleSetVMRunCommandResult]:
318
+ """
319
+ The operation to get the VMSS VM run command.
320
+
321
+
322
+ :param str expand: The expand expression to apply on the operation.
323
+ :param str instance_id: The instance ID of the virtual machine.
324
+ :param str resource_group_name: The name of the resource group.
325
+ :param str run_command_name: The name of the virtual machine run command.
326
+ :param str vm_scale_set_name: The name of the VM scale set.
327
+ """
328
+ ...