pulumi-azure-native 2.86.0a1738343576__py3-none-any.whl → 2.87.0__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 (2173) hide show
  1. pulumi_azure_native/__init__.py +248 -16
  2. pulumi_azure_native/_utilities.py +8 -4
  3. pulumi_azure_native/authorization/__init__.py +2 -0
  4. pulumi_azure_native/authorization/_enums.py +88 -0
  5. pulumi_azure_native/authorization/_inputs.py +1431 -43
  6. pulumi_azure_native/authorization/get_role_management_policy.py +247 -0
  7. pulumi_azure_native/authorization/outputs.py +312 -0
  8. pulumi_azure_native/authorization/role_management_policy.py +332 -0
  9. pulumi_azure_native/authorization/v20201001/__init__.py +4 -0
  10. pulumi_azure_native/authorization/v20201001/_enums.py +78 -0
  11. pulumi_azure_native/authorization/v20201001/_inputs.py +1134 -0
  12. pulumi_azure_native/authorization/v20201001/get_role_management_policy.py +241 -0
  13. pulumi_azure_native/authorization/v20201001/outputs.py +89 -0
  14. pulumi_azure_native/authorization/v20201001/role_management_policy.py +326 -0
  15. pulumi_azure_native/authorization/v20201001preview/__init__.py +4 -0
  16. pulumi_azure_native/authorization/v20201001preview/_enums.py +78 -0
  17. pulumi_azure_native/authorization/v20201001preview/_inputs.py +1134 -0
  18. pulumi_azure_native/authorization/v20201001preview/get_role_management_policy.py +241 -0
  19. pulumi_azure_native/authorization/v20201001preview/outputs.py +959 -0
  20. pulumi_azure_native/authorization/v20201001preview/role_management_policy.py +326 -0
  21. pulumi_azure_native/authorization/v20240201preview/__init__.py +4 -0
  22. pulumi_azure_native/authorization/v20240201preview/_enums.py +96 -0
  23. pulumi_azure_native/authorization/v20240201preview/_inputs.py +1390 -0
  24. pulumi_azure_native/authorization/v20240201preview/get_role_management_policy.py +241 -0
  25. pulumi_azure_native/authorization/v20240201preview/outputs.py +89 -0
  26. pulumi_azure_native/authorization/v20240201preview/role_management_policy.py +326 -0
  27. pulumi_azure_native/authorization/v20240901preview/__init__.py +4 -0
  28. pulumi_azure_native/authorization/v20240901preview/_enums.py +96 -0
  29. pulumi_azure_native/authorization/v20240901preview/_inputs.py +1410 -0
  30. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy.py +241 -0
  31. pulumi_azure_native/authorization/v20240901preview/outputs.py +89 -0
  32. pulumi_azure_native/authorization/v20240901preview/role_management_policy.py +326 -0
  33. pulumi_azure_native/azurestackhci/__init__.py +3 -0
  34. pulumi_azure_native/azurestackhci/gallery_image.py +3 -3
  35. pulumi_azure_native/azurestackhci/get_gallery_image.py +2 -2
  36. pulumi_azure_native/azurestackhci/get_guest_agent.py +2 -2
  37. pulumi_azure_native/azurestackhci/get_logical_network.py +2 -2
  38. pulumi_azure_native/azurestackhci/get_marketplace_gallery_image.py +2 -2
  39. pulumi_azure_native/azurestackhci/get_network_interface.py +2 -2
  40. pulumi_azure_native/azurestackhci/get_network_security_group.py +2 -2
  41. pulumi_azure_native/azurestackhci/get_security_rule.py +2 -2
  42. pulumi_azure_native/azurestackhci/get_storage_container.py +2 -2
  43. pulumi_azure_native/azurestackhci/get_virtual_hard_disk.py +2 -2
  44. pulumi_azure_native/azurestackhci/get_virtual_machine_instance.py +2 -2
  45. pulumi_azure_native/azurestackhci/guest_agent.py +2 -2
  46. pulumi_azure_native/azurestackhci/logical_network.py +3 -3
  47. pulumi_azure_native/azurestackhci/marketplace_gallery_image.py +3 -3
  48. pulumi_azure_native/azurestackhci/network_interface.py +3 -3
  49. pulumi_azure_native/azurestackhci/network_security_group.py +3 -3
  50. pulumi_azure_native/azurestackhci/security_rule.py +3 -3
  51. pulumi_azure_native/azurestackhci/storage_container.py +3 -3
  52. pulumi_azure_native/azurestackhci/v20210901preview/galleryimage_retrieve.py +1 -1
  53. pulumi_azure_native/azurestackhci/v20210901preview/marketplacegalleryimage.py +1 -1
  54. pulumi_azure_native/azurestackhci/v20210901preview/networkinterface_retrieve.py +1 -1
  55. pulumi_azure_native/azurestackhci/v20210901preview/storagecontainer_retrieve.py +1 -1
  56. pulumi_azure_native/azurestackhci/v20210901preview/virtualharddisk_retrieve.py +1 -1
  57. pulumi_azure_native/azurestackhci/v20221215preview/gallery_image.py +1 -1
  58. pulumi_azure_native/azurestackhci/v20221215preview/marketplace_gallery_image.py +1 -1
  59. pulumi_azure_native/azurestackhci/v20221215preview/network_interface.py +1 -1
  60. pulumi_azure_native/azurestackhci/v20221215preview/storage_container.py +1 -1
  61. pulumi_azure_native/azurestackhci/v20221215preview/virtual_hard_disk.py +1 -1
  62. pulumi_azure_native/azurestackhci/v20230701preview/gallery_image.py +1 -1
  63. pulumi_azure_native/azurestackhci/v20230701preview/guest_agent.py +1 -1
  64. pulumi_azure_native/azurestackhci/v20230701preview/marketplace_gallery_image.py +1 -1
  65. pulumi_azure_native/azurestackhci/v20230701preview/network_interface.py +1 -1
  66. pulumi_azure_native/azurestackhci/v20230701preview/storage_container.py +1 -1
  67. pulumi_azure_native/azurestackhci/v20230701preview/virtual_hard_disk.py +1 -1
  68. pulumi_azure_native/azurestackhci/v20230701preview/virtual_machine_instance.py +1 -1
  69. pulumi_azure_native/azurestackhci/v20230901preview/gallery_image.py +1 -1
  70. pulumi_azure_native/azurestackhci/v20230901preview/guest_agent.py +1 -1
  71. pulumi_azure_native/azurestackhci/v20230901preview/logical_network.py +1 -1
  72. pulumi_azure_native/azurestackhci/v20230901preview/marketplace_gallery_image.py +1 -1
  73. pulumi_azure_native/azurestackhci/v20230901preview/network_interface.py +1 -1
  74. pulumi_azure_native/azurestackhci/v20230901preview/storage_container.py +1 -1
  75. pulumi_azure_native/azurestackhci/v20230901preview/virtual_hard_disk.py +1 -1
  76. pulumi_azure_native/azurestackhci/v20230901preview/virtual_machine_instance.py +1 -1
  77. pulumi_azure_native/azurestackhci/v20240101/gallery_image.py +1 -1
  78. pulumi_azure_native/azurestackhci/v20240101/guest_agent.py +1 -1
  79. pulumi_azure_native/azurestackhci/v20240101/logical_network.py +1 -1
  80. pulumi_azure_native/azurestackhci/v20240101/marketplace_gallery_image.py +1 -1
  81. pulumi_azure_native/azurestackhci/v20240101/network_interface.py +1 -1
  82. pulumi_azure_native/azurestackhci/v20240101/storage_container.py +1 -1
  83. pulumi_azure_native/azurestackhci/v20240101/virtual_hard_disk.py +1 -1
  84. pulumi_azure_native/azurestackhci/v20240101/virtual_machine_instance.py +1 -1
  85. pulumi_azure_native/azurestackhci/v20240201preview/gallery_image.py +1 -1
  86. pulumi_azure_native/azurestackhci/v20240201preview/guest_agent.py +1 -1
  87. pulumi_azure_native/azurestackhci/v20240201preview/logical_network.py +1 -1
  88. pulumi_azure_native/azurestackhci/v20240201preview/marketplace_gallery_image.py +1 -1
  89. pulumi_azure_native/azurestackhci/v20240201preview/network_interface.py +1 -1
  90. pulumi_azure_native/azurestackhci/v20240201preview/network_security_group.py +1 -1
  91. pulumi_azure_native/azurestackhci/v20240201preview/security_rule.py +1 -1
  92. pulumi_azure_native/azurestackhci/v20240201preview/storage_container.py +1 -1
  93. pulumi_azure_native/azurestackhci/v20240201preview/virtual_hard_disk.py +1 -1
  94. pulumi_azure_native/azurestackhci/v20240201preview/virtual_machine_instance.py +1 -1
  95. pulumi_azure_native/azurestackhci/v20240501preview/gallery_image.py +1 -1
  96. pulumi_azure_native/azurestackhci/v20240501preview/guest_agent.py +1 -1
  97. pulumi_azure_native/azurestackhci/v20240501preview/logical_network.py +1 -1
  98. pulumi_azure_native/azurestackhci/v20240501preview/marketplace_gallery_image.py +1 -1
  99. pulumi_azure_native/azurestackhci/v20240501preview/network_interface.py +1 -1
  100. pulumi_azure_native/azurestackhci/v20240501preview/network_security_group.py +1 -1
  101. pulumi_azure_native/azurestackhci/v20240501preview/security_rule.py +1 -1
  102. pulumi_azure_native/azurestackhci/v20240501preview/storage_container.py +1 -1
  103. pulumi_azure_native/azurestackhci/v20240501preview/virtual_hard_disk.py +1 -1
  104. pulumi_azure_native/azurestackhci/v20240501preview/virtual_machine_instance.py +1 -1
  105. pulumi_azure_native/azurestackhci/v20240715preview/gallery_image.py +1 -1
  106. pulumi_azure_native/azurestackhci/v20240715preview/guest_agent.py +1 -1
  107. pulumi_azure_native/azurestackhci/v20240715preview/logical_network.py +1 -1
  108. pulumi_azure_native/azurestackhci/v20240715preview/marketplace_gallery_image.py +1 -1
  109. pulumi_azure_native/azurestackhci/v20240715preview/network_interface.py +1 -1
  110. pulumi_azure_native/azurestackhci/v20240715preview/network_security_group.py +1 -1
  111. pulumi_azure_native/azurestackhci/v20240715preview/security_rule.py +1 -1
  112. pulumi_azure_native/azurestackhci/v20240715preview/storage_container.py +1 -1
  113. pulumi_azure_native/azurestackhci/v20240715preview/virtual_hard_disk.py +1 -1
  114. pulumi_azure_native/azurestackhci/v20240715preview/virtual_machine_instance.py +1 -1
  115. pulumi_azure_native/azurestackhci/v20240801preview/gallery_image.py +1 -1
  116. pulumi_azure_native/azurestackhci/v20240801preview/guest_agent.py +1 -1
  117. pulumi_azure_native/azurestackhci/v20240801preview/logical_network.py +1 -1
  118. pulumi_azure_native/azurestackhci/v20240801preview/marketplace_gallery_image.py +1 -1
  119. pulumi_azure_native/azurestackhci/v20240801preview/network_interface.py +1 -1
  120. pulumi_azure_native/azurestackhci/v20240801preview/network_security_group.py +1 -1
  121. pulumi_azure_native/azurestackhci/v20240801preview/security_rule.py +1 -1
  122. pulumi_azure_native/azurestackhci/v20240801preview/storage_container.py +1 -1
  123. pulumi_azure_native/azurestackhci/v20240801preview/virtual_hard_disk.py +1 -1
  124. pulumi_azure_native/azurestackhci/v20240801preview/virtual_machine_instance.py +1 -1
  125. pulumi_azure_native/azurestackhci/v20241001preview/gallery_image.py +1 -1
  126. pulumi_azure_native/azurestackhci/v20241001preview/guest_agent.py +1 -1
  127. pulumi_azure_native/azurestackhci/v20241001preview/logical_network.py +1 -1
  128. pulumi_azure_native/azurestackhci/v20241001preview/marketplace_gallery_image.py +1 -1
  129. pulumi_azure_native/azurestackhci/v20241001preview/network_interface.py +1 -1
  130. pulumi_azure_native/azurestackhci/v20241001preview/network_security_group.py +1 -1
  131. pulumi_azure_native/azurestackhci/v20241001preview/security_rule.py +1 -1
  132. pulumi_azure_native/azurestackhci/v20241001preview/storage_container.py +1 -1
  133. pulumi_azure_native/azurestackhci/v20241001preview/virtual_hard_disk.py +1 -1
  134. pulumi_azure_native/azurestackhci/v20241001preview/virtual_machine_instance.py +1 -1
  135. pulumi_azure_native/azurestackhci/v20250201preview/__init__.py +30 -0
  136. pulumi_azure_native/azurestackhci/v20250201preview/_enums.py +332 -0
  137. pulumi_azure_native/azurestackhci/v20250201preview/_inputs.py +2417 -0
  138. pulumi_azure_native/azurestackhci/v20250201preview/gallery_image.py +540 -0
  139. pulumi_azure_native/azurestackhci/v20250201preview/get_gallery_image.py +325 -0
  140. pulumi_azure_native/azurestackhci/v20250201preview/get_guest_agent.py +179 -0
  141. pulumi_azure_native/azurestackhci/v20250201preview/get_logical_network.py +241 -0
  142. pulumi_azure_native/azurestackhci/v20250201preview/get_marketplace_gallery_image.py +283 -0
  143. pulumi_azure_native/azurestackhci/v20250201preview/get_network_interface.py +269 -0
  144. pulumi_azure_native/azurestackhci/v20250201preview/get_network_security_group.py +241 -0
  145. pulumi_azure_native/azurestackhci/v20250201preview/get_security_rule.py +289 -0
  146. pulumi_azure_native/azurestackhci/v20250201preview/get_storage_container.py +213 -0
  147. pulumi_azure_native/azurestackhci/v20250201preview/get_virtual_hard_disk.py +339 -0
  148. pulumi_azure_native/azurestackhci/v20250201preview/get_virtual_machine_instance.py +333 -0
  149. pulumi_azure_native/azurestackhci/v20250201preview/guest_agent.py +229 -0
  150. pulumi_azure_native/azurestackhci/v20250201preview/logical_network.py +365 -0
  151. pulumi_azure_native/azurestackhci/v20250201preview/marketplace_gallery_image.py +453 -0
  152. pulumi_azure_native/azurestackhci/v20250201preview/network_interface.py +427 -0
  153. pulumi_azure_native/azurestackhci/v20250201preview/network_security_group.py +308 -0
  154. pulumi_azure_native/azurestackhci/v20250201preview/outputs.py +4062 -0
  155. pulumi_azure_native/azurestackhci/v20250201preview/security_rule.py +496 -0
  156. pulumi_azure_native/azurestackhci/v20250201preview/storage_container.py +308 -0
  157. pulumi_azure_native/azurestackhci/v20250201preview/virtual_hard_disk.py +572 -0
  158. pulumi_azure_native/azurestackhci/v20250201preview/virtual_machine_instance.py +495 -0
  159. pulumi_azure_native/azurestackhci/virtual_hard_disk.py +3 -3
  160. pulumi_azure_native/azurestackhci/virtual_machine_instance.py +3 -3
  161. pulumi_azure_native/chaos/__init__.py +3 -0
  162. pulumi_azure_native/chaos/capability.py +3 -3
  163. pulumi_azure_native/chaos/experiment.py +3 -3
  164. pulumi_azure_native/chaos/get_capability.py +2 -2
  165. pulumi_azure_native/chaos/get_experiment.py +2 -2
  166. pulumi_azure_native/chaos/get_experiment_execution_details.py +2 -2
  167. pulumi_azure_native/chaos/get_target.py +2 -2
  168. pulumi_azure_native/chaos/target.py +3 -3
  169. pulumi_azure_native/chaos/v20230415preview/capability.py +1 -1
  170. pulumi_azure_native/chaos/v20230415preview/experiment.py +1 -1
  171. pulumi_azure_native/chaos/v20230415preview/target.py +1 -1
  172. pulumi_azure_native/chaos/v20230901preview/capability.py +1 -1
  173. pulumi_azure_native/chaos/v20230901preview/experiment.py +1 -1
  174. pulumi_azure_native/chaos/v20230901preview/target.py +1 -1
  175. pulumi_azure_native/chaos/v20231027preview/capability.py +1 -1
  176. pulumi_azure_native/chaos/v20231027preview/experiment.py +1 -1
  177. pulumi_azure_native/chaos/v20231027preview/target.py +1 -1
  178. pulumi_azure_native/chaos/v20231101/capability.py +1 -1
  179. pulumi_azure_native/chaos/v20231101/experiment.py +1 -1
  180. pulumi_azure_native/chaos/v20231101/target.py +1 -1
  181. pulumi_azure_native/chaos/v20240101/capability.py +1 -1
  182. pulumi_azure_native/chaos/v20240101/experiment.py +1 -1
  183. pulumi_azure_native/chaos/v20240101/target.py +1 -1
  184. pulumi_azure_native/chaos/v20240322preview/capability.py +1 -1
  185. pulumi_azure_native/chaos/v20240322preview/experiment.py +1 -1
  186. pulumi_azure_native/chaos/v20240322preview/target.py +1 -1
  187. pulumi_azure_native/chaos/v20241101preview/capability.py +1 -1
  188. pulumi_azure_native/chaos/v20241101preview/experiment.py +1 -1
  189. pulumi_azure_native/chaos/v20241101preview/target.py +1 -1
  190. pulumi_azure_native/{networkanalytics/v20231115 → chaos/v20250101}/__init__.py +7 -5
  191. pulumi_azure_native/chaos/v20250101/_enums.py +66 -0
  192. pulumi_azure_native/chaos/v20250101/_inputs.py +907 -0
  193. pulumi_azure_native/chaos/v20250101/capability.py +303 -0
  194. pulumi_azure_native/chaos/v20250101/experiment.py +328 -0
  195. pulumi_azure_native/chaos/v20250101/get_capability.py +223 -0
  196. pulumi_azure_native/chaos/v20250101/get_experiment.py +213 -0
  197. pulumi_azure_native/chaos/v20250101/get_experiment_execution_details.py +135 -0
  198. pulumi_azure_native/chaos/v20250101/get_target.py +175 -0
  199. pulumi_azure_native/chaos/v20250101/outputs.py +1208 -0
  200. pulumi_azure_native/chaos/v20250101/target.py +290 -0
  201. pulumi_azure_native/cloudngfw/__init__.py +3 -0
  202. pulumi_azure_native/cloudngfw/certificate_object_global_rulestack.py +3 -3
  203. pulumi_azure_native/cloudngfw/certificate_object_local_rulestack.py +3 -3
  204. pulumi_azure_native/cloudngfw/firewall.py +3 -3
  205. pulumi_azure_native/cloudngfw/fqdn_list_global_rulestack.py +3 -3
  206. pulumi_azure_native/cloudngfw/fqdn_list_local_rulestack.py +3 -3
  207. pulumi_azure_native/cloudngfw/get_certificate_object_global_rulestack.py +2 -2
  208. pulumi_azure_native/cloudngfw/get_certificate_object_local_rulestack.py +2 -2
  209. pulumi_azure_native/cloudngfw/get_firewall.py +2 -2
  210. pulumi_azure_native/cloudngfw/get_firewall_global_rulestack.py +2 -2
  211. pulumi_azure_native/cloudngfw/get_firewall_log_profile.py +2 -2
  212. pulumi_azure_native/cloudngfw/get_firewall_support_info.py +2 -2
  213. pulumi_azure_native/cloudngfw/get_fqdn_list_global_rulestack.py +2 -2
  214. pulumi_azure_native/cloudngfw/get_fqdn_list_local_rulestack.py +2 -2
  215. pulumi_azure_native/cloudngfw/get_global_rulestack.py +2 -2
  216. pulumi_azure_native/cloudngfw/get_global_rulestack_change_log.py +2 -2
  217. pulumi_azure_native/cloudngfw/get_local_rule.py +2 -2
  218. pulumi_azure_native/cloudngfw/get_local_rule_counters.py +2 -2
  219. pulumi_azure_native/cloudngfw/get_local_rulestack.py +2 -2
  220. pulumi_azure_native/cloudngfw/get_local_rulestack_change_log.py +2 -2
  221. pulumi_azure_native/cloudngfw/get_local_rulestack_support_info.py +2 -2
  222. pulumi_azure_native/cloudngfw/get_post_rule.py +2 -2
  223. pulumi_azure_native/cloudngfw/get_post_rule_counters.py +2 -2
  224. pulumi_azure_native/cloudngfw/get_pre_rule.py +2 -2
  225. pulumi_azure_native/cloudngfw/get_pre_rule_counters.py +2 -2
  226. pulumi_azure_native/cloudngfw/get_prefix_list_global_rulestack.py +2 -2
  227. pulumi_azure_native/cloudngfw/get_prefix_list_local_rulestack.py +2 -2
  228. pulumi_azure_native/cloudngfw/global_rulestack.py +3 -3
  229. pulumi_azure_native/cloudngfw/list_global_rulestack_advanced_security_objects.py +2 -2
  230. pulumi_azure_native/cloudngfw/list_global_rulestack_app_ids.py +2 -2
  231. pulumi_azure_native/cloudngfw/list_global_rulestack_countries.py +2 -2
  232. pulumi_azure_native/cloudngfw/list_global_rulestack_firewalls.py +2 -2
  233. pulumi_azure_native/cloudngfw/list_global_rulestack_predefined_url_categories.py +2 -2
  234. pulumi_azure_native/cloudngfw/list_global_rulestack_security_services.py +2 -2
  235. pulumi_azure_native/cloudngfw/list_local_rulestack_advanced_security_objects.py +2 -2
  236. pulumi_azure_native/cloudngfw/list_local_rulestack_app_ids.py +2 -2
  237. pulumi_azure_native/cloudngfw/list_local_rulestack_countries.py +2 -2
  238. pulumi_azure_native/cloudngfw/list_local_rulestack_firewalls.py +2 -2
  239. pulumi_azure_native/cloudngfw/list_local_rulestack_predefined_url_categories.py +2 -2
  240. pulumi_azure_native/cloudngfw/list_local_rulestack_security_services.py +2 -2
  241. pulumi_azure_native/cloudngfw/list_palo_alto_networks_cloudngfw_cloud_manager_tenants.py +4 -0
  242. pulumi_azure_native/cloudngfw/list_palo_alto_networks_cloudngfw_product_serial_number_status.py +4 -0
  243. pulumi_azure_native/cloudngfw/list_palo_alto_networks_cloudngfw_support_info.py +2 -2
  244. pulumi_azure_native/cloudngfw/local_rule.py +3 -3
  245. pulumi_azure_native/cloudngfw/local_rulestack.py +3 -3
  246. pulumi_azure_native/cloudngfw/post_rule.py +3 -3
  247. pulumi_azure_native/cloudngfw/pre_rule.py +3 -3
  248. pulumi_azure_native/cloudngfw/prefix_list_global_rulestack.py +3 -3
  249. pulumi_azure_native/cloudngfw/prefix_list_local_rulestack.py +3 -3
  250. pulumi_azure_native/cloudngfw/v20220829/certificate_object_global_rulestack.py +1 -1
  251. pulumi_azure_native/cloudngfw/v20220829/certificate_object_local_rulestack.py +1 -1
  252. pulumi_azure_native/cloudngfw/v20220829/firewall.py +1 -1
  253. pulumi_azure_native/cloudngfw/v20220829/fqdn_list_global_rulestack.py +1 -1
  254. pulumi_azure_native/cloudngfw/v20220829/fqdn_list_local_rulestack.py +1 -1
  255. pulumi_azure_native/cloudngfw/v20220829/global_rulestack.py +1 -1
  256. pulumi_azure_native/cloudngfw/v20220829/local_rule.py +1 -1
  257. pulumi_azure_native/cloudngfw/v20220829/local_rulestack.py +1 -1
  258. pulumi_azure_native/cloudngfw/v20220829/post_rule.py +1 -1
  259. pulumi_azure_native/cloudngfw/v20220829/pre_rule.py +1 -1
  260. pulumi_azure_native/cloudngfw/v20220829/prefix_list_global_rulestack.py +1 -1
  261. pulumi_azure_native/cloudngfw/v20220829/prefix_list_local_rulestack.py +1 -1
  262. pulumi_azure_native/cloudngfw/v20220829preview/certificate_object_global_rulestack.py +1 -1
  263. pulumi_azure_native/cloudngfw/v20220829preview/certificate_object_local_rulestack.py +1 -1
  264. pulumi_azure_native/cloudngfw/v20220829preview/firewall.py +1 -1
  265. pulumi_azure_native/cloudngfw/v20220829preview/fqdn_list_global_rulestack.py +1 -1
  266. pulumi_azure_native/cloudngfw/v20220829preview/fqdn_list_local_rulestack.py +1 -1
  267. pulumi_azure_native/cloudngfw/v20220829preview/global_rulestack.py +1 -1
  268. pulumi_azure_native/cloudngfw/v20220829preview/local_rule.py +1 -1
  269. pulumi_azure_native/cloudngfw/v20220829preview/local_rulestack.py +1 -1
  270. pulumi_azure_native/cloudngfw/v20220829preview/post_rule.py +1 -1
  271. pulumi_azure_native/cloudngfw/v20220829preview/pre_rule.py +1 -1
  272. pulumi_azure_native/cloudngfw/v20220829preview/prefix_list_global_rulestack.py +1 -1
  273. pulumi_azure_native/cloudngfw/v20220829preview/prefix_list_local_rulestack.py +1 -1
  274. pulumi_azure_native/cloudngfw/v20230901/certificate_object_global_rulestack.py +1 -1
  275. pulumi_azure_native/cloudngfw/v20230901/certificate_object_local_rulestack.py +1 -1
  276. pulumi_azure_native/cloudngfw/v20230901/firewall.py +1 -1
  277. pulumi_azure_native/cloudngfw/v20230901/fqdn_list_global_rulestack.py +1 -1
  278. pulumi_azure_native/cloudngfw/v20230901/fqdn_list_local_rulestack.py +1 -1
  279. pulumi_azure_native/cloudngfw/v20230901/global_rulestack.py +1 -1
  280. pulumi_azure_native/cloudngfw/v20230901/local_rule.py +1 -1
  281. pulumi_azure_native/cloudngfw/v20230901/local_rulestack.py +1 -1
  282. pulumi_azure_native/cloudngfw/v20230901/post_rule.py +1 -1
  283. pulumi_azure_native/cloudngfw/v20230901/pre_rule.py +1 -1
  284. pulumi_azure_native/cloudngfw/v20230901/prefix_list_global_rulestack.py +1 -1
  285. pulumi_azure_native/cloudngfw/v20230901/prefix_list_local_rulestack.py +1 -1
  286. pulumi_azure_native/cloudngfw/v20230901preview/certificate_object_global_rulestack.py +1 -1
  287. pulumi_azure_native/cloudngfw/v20230901preview/certificate_object_local_rulestack.py +1 -1
  288. pulumi_azure_native/cloudngfw/v20230901preview/firewall.py +1 -1
  289. pulumi_azure_native/cloudngfw/v20230901preview/fqdn_list_global_rulestack.py +1 -1
  290. pulumi_azure_native/cloudngfw/v20230901preview/fqdn_list_local_rulestack.py +1 -1
  291. pulumi_azure_native/cloudngfw/v20230901preview/global_rulestack.py +1 -1
  292. pulumi_azure_native/cloudngfw/v20230901preview/local_rule.py +1 -1
  293. pulumi_azure_native/cloudngfw/v20230901preview/local_rulestack.py +1 -1
  294. pulumi_azure_native/cloudngfw/v20230901preview/post_rule.py +1 -1
  295. pulumi_azure_native/cloudngfw/v20230901preview/pre_rule.py +1 -1
  296. pulumi_azure_native/cloudngfw/v20230901preview/prefix_list_global_rulestack.py +1 -1
  297. pulumi_azure_native/cloudngfw/v20230901preview/prefix_list_local_rulestack.py +1 -1
  298. pulumi_azure_native/cloudngfw/v20231010preview/certificate_object_global_rulestack.py +1 -1
  299. pulumi_azure_native/cloudngfw/v20231010preview/certificate_object_local_rulestack.py +1 -1
  300. pulumi_azure_native/cloudngfw/v20231010preview/firewall.py +1 -1
  301. pulumi_azure_native/cloudngfw/v20231010preview/fqdn_list_global_rulestack.py +1 -1
  302. pulumi_azure_native/cloudngfw/v20231010preview/fqdn_list_local_rulestack.py +1 -1
  303. pulumi_azure_native/cloudngfw/v20231010preview/global_rulestack.py +1 -1
  304. pulumi_azure_native/cloudngfw/v20231010preview/local_rule.py +1 -1
  305. pulumi_azure_native/cloudngfw/v20231010preview/local_rulestack.py +1 -1
  306. pulumi_azure_native/cloudngfw/v20231010preview/post_rule.py +1 -1
  307. pulumi_azure_native/cloudngfw/v20231010preview/pre_rule.py +1 -1
  308. pulumi_azure_native/cloudngfw/v20231010preview/prefix_list_global_rulestack.py +1 -1
  309. pulumi_azure_native/cloudngfw/v20231010preview/prefix_list_local_rulestack.py +1 -1
  310. pulumi_azure_native/cloudngfw/v20240119preview/certificate_object_global_rulestack.py +1 -1
  311. pulumi_azure_native/cloudngfw/v20240119preview/certificate_object_local_rulestack.py +1 -1
  312. pulumi_azure_native/cloudngfw/v20240119preview/firewall.py +1 -1
  313. pulumi_azure_native/cloudngfw/v20240119preview/fqdn_list_global_rulestack.py +1 -1
  314. pulumi_azure_native/cloudngfw/v20240119preview/fqdn_list_local_rulestack.py +1 -1
  315. pulumi_azure_native/cloudngfw/v20240119preview/global_rulestack.py +1 -1
  316. pulumi_azure_native/cloudngfw/v20240119preview/local_rule.py +1 -1
  317. pulumi_azure_native/cloudngfw/v20240119preview/local_rulestack.py +1 -1
  318. pulumi_azure_native/cloudngfw/v20240119preview/post_rule.py +1 -1
  319. pulumi_azure_native/cloudngfw/v20240119preview/pre_rule.py +1 -1
  320. pulumi_azure_native/cloudngfw/v20240119preview/prefix_list_global_rulestack.py +1 -1
  321. pulumi_azure_native/cloudngfw/v20240119preview/prefix_list_local_rulestack.py +1 -1
  322. pulumi_azure_native/cloudngfw/v20240207preview/certificate_object_global_rulestack.py +1 -1
  323. pulumi_azure_native/cloudngfw/v20240207preview/certificate_object_local_rulestack.py +1 -1
  324. pulumi_azure_native/cloudngfw/v20240207preview/firewall.py +1 -1
  325. pulumi_azure_native/cloudngfw/v20240207preview/fqdn_list_global_rulestack.py +1 -1
  326. pulumi_azure_native/cloudngfw/v20240207preview/fqdn_list_local_rulestack.py +1 -1
  327. pulumi_azure_native/cloudngfw/v20240207preview/global_rulestack.py +1 -1
  328. pulumi_azure_native/cloudngfw/v20240207preview/local_rule.py +1 -1
  329. pulumi_azure_native/cloudngfw/v20240207preview/local_rulestack.py +1 -1
  330. pulumi_azure_native/cloudngfw/v20240207preview/post_rule.py +1 -1
  331. pulumi_azure_native/cloudngfw/v20240207preview/pre_rule.py +1 -1
  332. pulumi_azure_native/cloudngfw/v20240207preview/prefix_list_global_rulestack.py +1 -1
  333. pulumi_azure_native/cloudngfw/v20240207preview/prefix_list_local_rulestack.py +1 -1
  334. pulumi_azure_native/cloudngfw/v20250206preview/__init__.py +58 -0
  335. pulumi_azure_native/cloudngfw/v20250206preview/_enums.py +153 -0
  336. pulumi_azure_native/cloudngfw/v20250206preview/_inputs.py +1678 -0
  337. pulumi_azure_native/cloudngfw/v20250206preview/certificate_object_global_rulestack.py +306 -0
  338. pulumi_azure_native/cloudngfw/v20250206preview/certificate_object_local_rulestack.py +327 -0
  339. pulumi_azure_native/cloudngfw/v20250206preview/firewall.py +591 -0
  340. pulumi_azure_native/cloudngfw/v20250206preview/fqdn_list_global_rulestack.py +276 -0
  341. pulumi_azure_native/cloudngfw/v20250206preview/fqdn_list_local_rulestack.py +297 -0
  342. pulumi_azure_native/cloudngfw/v20250206preview/get_certificate_object_global_rulestack.py +213 -0
  343. pulumi_azure_native/cloudngfw/v20250206preview/get_certificate_object_local_rulestack.py +219 -0
  344. pulumi_azure_native/cloudngfw/v20250206preview/get_firewall.py +339 -0
  345. pulumi_azure_native/cloudngfw/v20250206preview/get_firewall_global_rulestack.py +86 -0
  346. pulumi_azure_native/cloudngfw/v20250206preview/get_firewall_log_profile.py +171 -0
  347. pulumi_azure_native/cloudngfw/v20250206preview/get_firewall_support_info.py +274 -0
  348. pulumi_azure_native/cloudngfw/v20250206preview/get_fqdn_list_global_rulestack.py +199 -0
  349. pulumi_azure_native/cloudngfw/v20250206preview/get_fqdn_list_local_rulestack.py +205 -0
  350. pulumi_azure_native/cloudngfw/v20250206preview/get_global_rulestack.py +277 -0
  351. pulumi_azure_native/cloudngfw/v20250206preview/get_global_rulestack_change_log.py +108 -0
  352. pulumi_azure_native/cloudngfw/v20250206preview/get_local_rule.py +412 -0
  353. pulumi_azure_native/cloudngfw/v20250206preview/get_local_rule_counters.py +223 -0
  354. pulumi_azure_native/cloudngfw/v20250206preview/get_local_rulestack.py +297 -0
  355. pulumi_azure_native/cloudngfw/v20250206preview/get_local_rulestack_change_log.py +114 -0
  356. pulumi_azure_native/cloudngfw/v20250206preview/get_local_rulestack_support_info.py +274 -0
  357. pulumi_azure_native/cloudngfw/v20250206preview/get_post_rule.py +406 -0
  358. pulumi_azure_native/cloudngfw/v20250206preview/get_post_rule_counters.py +217 -0
  359. pulumi_azure_native/cloudngfw/v20250206preview/get_pre_rule.py +406 -0
  360. pulumi_azure_native/cloudngfw/v20250206preview/get_pre_rule_counters.py +217 -0
  361. pulumi_azure_native/cloudngfw/v20250206preview/get_prefix_list_global_rulestack.py +199 -0
  362. pulumi_azure_native/cloudngfw/v20250206preview/get_prefix_list_local_rulestack.py +205 -0
  363. pulumi_azure_native/cloudngfw/v20250206preview/global_rulestack.py +450 -0
  364. pulumi_azure_native/cloudngfw/v20250206preview/list_global_rulestack_advanced_security_objects.py +107 -0
  365. pulumi_azure_native/cloudngfw/v20250206preview/list_global_rulestack_app_ids.py +107 -0
  366. pulumi_azure_native/cloudngfw/v20250206preview/list_global_rulestack_countries.py +103 -0
  367. pulumi_azure_native/cloudngfw/v20250206preview/list_global_rulestack_firewalls.py +94 -0
  368. pulumi_azure_native/cloudngfw/v20250206preview/list_global_rulestack_predefined_url_categories.py +103 -0
  369. pulumi_azure_native/cloudngfw/v20250206preview/list_global_rulestack_security_services.py +107 -0
  370. pulumi_azure_native/cloudngfw/v20250206preview/list_local_rulestack_advanced_security_objects.py +113 -0
  371. pulumi_azure_native/cloudngfw/v20250206preview/list_local_rulestack_app_ids.py +113 -0
  372. pulumi_azure_native/cloudngfw/v20250206preview/list_local_rulestack_countries.py +109 -0
  373. pulumi_azure_native/cloudngfw/v20250206preview/list_local_rulestack_firewalls.py +100 -0
  374. pulumi_azure_native/cloudngfw/v20250206preview/list_local_rulestack_predefined_url_categories.py +109 -0
  375. pulumi_azure_native/cloudngfw/v20250206preview/list_local_rulestack_security_services.py +113 -0
  376. pulumi_azure_native/cloudngfw/v20250206preview/list_palo_alto_networks_cloudngfw_cloud_manager_tenants.py +70 -0
  377. pulumi_azure_native/cloudngfw/v20250206preview/list_palo_alto_networks_cloudngfw_product_serial_number_status.py +84 -0
  378. pulumi_azure_native/cloudngfw/v20250206preview/list_palo_alto_networks_cloudngfw_support_info.py +294 -0
  379. pulumi_azure_native/cloudngfw/v20250206preview/local_rule.py +716 -0
  380. pulumi_azure_native/cloudngfw/v20250206preview/local_rulestack.py +500 -0
  381. pulumi_azure_native/cloudngfw/v20250206preview/outputs.py +2216 -0
  382. pulumi_azure_native/cloudngfw/v20250206preview/post_rule.py +695 -0
  383. pulumi_azure_native/cloudngfw/v20250206preview/pre_rule.py +695 -0
  384. pulumi_azure_native/cloudngfw/v20250206preview/prefix_list_global_rulestack.py +276 -0
  385. pulumi_azure_native/cloudngfw/v20250206preview/prefix_list_local_rulestack.py +297 -0
  386. pulumi_azure_native/containerservice/__init__.py +3 -0
  387. pulumi_azure_native/containerservice/agent_pool.py +3 -3
  388. pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
  389. pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
  390. pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
  391. pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
  392. pulumi_azure_native/containerservice/get_snapshot.py +2 -2
  393. pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
  394. pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
  395. pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
  396. pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
  397. pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
  398. pulumi_azure_native/containerservice/managed_cluster.py +3 -3
  399. pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
  400. pulumi_azure_native/containerservice/snapshot.py +3 -3
  401. pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
  402. pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
  403. pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
  404. pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
  405. pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
  406. pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
  407. pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
  408. pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
  409. pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
  410. pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
  411. pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
  412. pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
  413. pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
  414. pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
  415. pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
  416. pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
  417. pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
  418. pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
  419. pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
  420. pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
  421. pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
  422. pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
  423. pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
  424. pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
  425. pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
  426. pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
  427. pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
  428. pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
  429. pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
  430. pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
  431. pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
  432. pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
  433. pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
  434. pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
  435. pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
  436. pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
  437. pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
  438. pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
  439. pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
  440. pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
  441. pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
  442. pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
  443. pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
  444. pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
  445. pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
  446. pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
  447. pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
  448. pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
  449. pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
  450. pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
  451. pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
  452. pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
  453. pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
  454. pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
  455. pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
  456. pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
  457. pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
  458. pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
  459. pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
  460. pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
  461. pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
  462. pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
  463. pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
  464. pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
  465. pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
  466. pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
  467. pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
  468. pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
  469. pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
  470. pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
  471. pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
  472. pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
  473. pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
  474. pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
  475. pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
  476. pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
  477. pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
  478. pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
  479. pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
  480. pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
  481. pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
  482. pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
  483. pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
  484. pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
  485. pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
  486. pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
  487. pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
  488. pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
  489. pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
  490. pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
  491. pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
  492. pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
  493. pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
  494. pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
  495. pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
  496. pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
  497. pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
  498. pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
  499. pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
  500. pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
  501. pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
  502. pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
  503. pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
  504. pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
  505. pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
  506. pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
  507. pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
  508. pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
  509. pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
  510. pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
  511. pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
  512. pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1 -1
  513. pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +1 -1
  514. pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1 -1
  515. pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +1 -1
  516. pulumi_azure_native/containerservice/v20240302preview/snapshot.py +1 -1
  517. pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +1 -1
  518. pulumi_azure_native/containerservice/v20240402preview/agent_pool.py +1 -1
  519. pulumi_azure_native/containerservice/v20240402preview/maintenance_configuration.py +1 -1
  520. pulumi_azure_native/containerservice/v20240402preview/managed_cluster.py +1 -1
  521. pulumi_azure_native/containerservice/v20240402preview/private_endpoint_connection.py +1 -1
  522. pulumi_azure_native/containerservice/v20240402preview/snapshot.py +1 -1
  523. pulumi_azure_native/containerservice/v20240402preview/trusted_access_role_binding.py +1 -1
  524. pulumi_azure_native/containerservice/v20240501/agent_pool.py +1 -1
  525. pulumi_azure_native/containerservice/v20240501/maintenance_configuration.py +1 -1
  526. pulumi_azure_native/containerservice/v20240501/managed_cluster.py +1 -1
  527. pulumi_azure_native/containerservice/v20240501/private_endpoint_connection.py +1 -1
  528. pulumi_azure_native/containerservice/v20240501/snapshot.py +1 -1
  529. pulumi_azure_native/containerservice/v20240501/trusted_access_role_binding.py +1 -1
  530. pulumi_azure_native/containerservice/v20240502preview/agent_pool.py +1 -1
  531. pulumi_azure_native/containerservice/v20240502preview/maintenance_configuration.py +1 -1
  532. pulumi_azure_native/containerservice/v20240502preview/managed_cluster.py +1 -1
  533. pulumi_azure_native/containerservice/v20240502preview/private_endpoint_connection.py +1 -1
  534. pulumi_azure_native/containerservice/v20240502preview/snapshot.py +1 -1
  535. pulumi_azure_native/containerservice/v20240502preview/trusted_access_role_binding.py +1 -1
  536. pulumi_azure_native/containerservice/v20240602preview/agent_pool.py +1 -1
  537. pulumi_azure_native/containerservice/v20240602preview/maintenance_configuration.py +1 -1
  538. pulumi_azure_native/containerservice/v20240602preview/managed_cluster.py +1 -1
  539. pulumi_azure_native/containerservice/v20240602preview/private_endpoint_connection.py +1 -1
  540. pulumi_azure_native/containerservice/v20240602preview/snapshot.py +1 -1
  541. pulumi_azure_native/containerservice/v20240602preview/trusted_access_role_binding.py +1 -1
  542. pulumi_azure_native/containerservice/v20240701/agent_pool.py +1 -1
  543. pulumi_azure_native/containerservice/v20240701/maintenance_configuration.py +1 -1
  544. pulumi_azure_native/containerservice/v20240701/managed_cluster.py +1 -1
  545. pulumi_azure_native/containerservice/v20240701/private_endpoint_connection.py +1 -1
  546. pulumi_azure_native/containerservice/v20240701/snapshot.py +1 -1
  547. pulumi_azure_native/containerservice/v20240701/trusted_access_role_binding.py +1 -1
  548. pulumi_azure_native/containerservice/v20240702preview/agent_pool.py +1 -1
  549. pulumi_azure_native/containerservice/v20240702preview/maintenance_configuration.py +1 -1
  550. pulumi_azure_native/containerservice/v20240702preview/managed_cluster.py +1 -1
  551. pulumi_azure_native/containerservice/v20240702preview/private_endpoint_connection.py +1 -1
  552. pulumi_azure_native/containerservice/v20240702preview/snapshot.py +1 -1
  553. pulumi_azure_native/containerservice/v20240702preview/trusted_access_role_binding.py +1 -1
  554. pulumi_azure_native/containerservice/v20240801/agent_pool.py +1 -1
  555. pulumi_azure_native/containerservice/v20240801/maintenance_configuration.py +1 -1
  556. pulumi_azure_native/containerservice/v20240801/managed_cluster.py +1 -1
  557. pulumi_azure_native/containerservice/v20240801/private_endpoint_connection.py +1 -1
  558. pulumi_azure_native/containerservice/v20240801/snapshot.py +1 -1
  559. pulumi_azure_native/containerservice/v20240801/trusted_access_role_binding.py +1 -1
  560. pulumi_azure_native/containerservice/v20240901/agent_pool.py +1 -1
  561. pulumi_azure_native/containerservice/v20240901/maintenance_configuration.py +1 -1
  562. pulumi_azure_native/containerservice/v20240901/managed_cluster.py +1 -1
  563. pulumi_azure_native/containerservice/v20240901/private_endpoint_connection.py +1 -1
  564. pulumi_azure_native/containerservice/v20240901/snapshot.py +1 -1
  565. pulumi_azure_native/containerservice/v20240901/trusted_access_role_binding.py +1 -1
  566. pulumi_azure_native/containerservice/v20240902preview/agent_pool.py +1 -1
  567. pulumi_azure_native/containerservice/v20240902preview/maintenance_configuration.py +1 -1
  568. pulumi_azure_native/containerservice/v20240902preview/managed_cluster.py +1 -1
  569. pulumi_azure_native/containerservice/v20240902preview/private_endpoint_connection.py +1 -1
  570. pulumi_azure_native/containerservice/v20240902preview/snapshot.py +1 -1
  571. pulumi_azure_native/containerservice/v20240902preview/trusted_access_role_binding.py +1 -1
  572. pulumi_azure_native/containerservice/v20241001/__init__.py +25 -0
  573. pulumi_azure_native/containerservice/v20241001/_enums.py +643 -0
  574. pulumi_azure_native/containerservice/v20241001/_inputs.py +7762 -0
  575. pulumi_azure_native/containerservice/v20241001/agent_pool.py +1459 -0
  576. pulumi_azure_native/containerservice/v20241001/get_agent_pool.py +765 -0
  577. pulumi_azure_native/containerservice/v20241001/get_maintenance_configuration.py +177 -0
  578. pulumi_azure_native/containerservice/v20241001/get_managed_cluster.py +801 -0
  579. pulumi_azure_native/containerservice/v20241001/get_private_endpoint_connection.py +163 -0
  580. pulumi_azure_native/containerservice/v20241001/get_snapshot.py +269 -0
  581. pulumi_azure_native/containerservice/v20241001/get_trusted_access_role_binding.py +177 -0
  582. pulumi_azure_native/containerservice/v20241001/list_managed_cluster_admin_credentials.py +93 -0
  583. pulumi_azure_native/containerservice/v20241001/list_managed_cluster_monitoring_user_credentials.py +93 -0
  584. pulumi_azure_native/containerservice/v20241001/list_managed_cluster_user_credentials.py +99 -0
  585. pulumi_azure_native/containerservice/v20241001/maintenance_configuration.py +279 -0
  586. pulumi_azure_native/containerservice/v20241001/managed_cluster.py +1392 -0
  587. pulumi_azure_native/containerservice/v20241001/outputs.py +6648 -0
  588. pulumi_azure_native/containerservice/v20241001/private_endpoint_connection.py +251 -0
  589. pulumi_azure_native/containerservice/v20241001/snapshot.py +347 -0
  590. pulumi_azure_native/containerservice/v20241001/trusted_access_role_binding.py +260 -0
  591. pulumi_azure_native/dataprotection/__init__.py +3 -0
  592. pulumi_azure_native/dataprotection/backup_instance.py +3 -3
  593. pulumi_azure_native/dataprotection/backup_policy.py +3 -3
  594. pulumi_azure_native/dataprotection/backup_vault.py +3 -3
  595. pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
  596. pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
  597. pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
  598. pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
  599. pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
  600. pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
  601. pulumi_azure_native/dataprotection/resource_guard.py +3 -3
  602. pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
  603. pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
  604. pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
  605. pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
  606. pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
  607. pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
  608. pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
  609. pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
  610. pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
  611. pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
  612. pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
  613. pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
  614. pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
  615. pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
  616. pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
  617. pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
  618. pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
  619. pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
  620. pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
  621. pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
  622. pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
  623. pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
  624. pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
  625. pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
  626. pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
  627. pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
  628. pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
  629. pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
  630. pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
  631. pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
  632. pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
  633. pulumi_azure_native/dataprotection/v20231201/backup_instance.py +1 -1
  634. pulumi_azure_native/dataprotection/v20231201/backup_policy.py +1 -1
  635. pulumi_azure_native/dataprotection/v20231201/backup_vault.py +1 -1
  636. pulumi_azure_native/dataprotection/v20231201/dpp_resource_guard_proxy.py +1 -1
  637. pulumi_azure_native/dataprotection/v20231201/resource_guard.py +1 -1
  638. pulumi_azure_native/dataprotection/v20240201preview/backup_instance.py +1 -1
  639. pulumi_azure_native/dataprotection/v20240201preview/backup_policy.py +1 -1
  640. pulumi_azure_native/dataprotection/v20240201preview/backup_vault.py +1 -1
  641. pulumi_azure_native/dataprotection/v20240201preview/dpp_resource_guard_proxy.py +1 -1
  642. pulumi_azure_native/dataprotection/v20240201preview/resource_guard.py +1 -1
  643. pulumi_azure_native/dataprotection/v20240301/backup_instance.py +1 -1
  644. pulumi_azure_native/dataprotection/v20240301/backup_policy.py +1 -1
  645. pulumi_azure_native/dataprotection/v20240301/backup_vault.py +1 -1
  646. pulumi_azure_native/dataprotection/v20240301/dpp_resource_guard_proxy.py +1 -1
  647. pulumi_azure_native/dataprotection/v20240301/resource_guard.py +1 -1
  648. pulumi_azure_native/dataprotection/v20240401/backup_instance.py +1 -1
  649. pulumi_azure_native/dataprotection/v20240401/backup_policy.py +1 -1
  650. pulumi_azure_native/dataprotection/v20240401/backup_vault.py +1 -1
  651. pulumi_azure_native/dataprotection/v20240401/dpp_resource_guard_proxy.py +1 -1
  652. pulumi_azure_native/dataprotection/v20240401/resource_guard.py +1 -1
  653. pulumi_azure_native/dataprotection/v20250101/__init__.py +20 -0
  654. pulumi_azure_native/dataprotection/v20250101/_enums.py +206 -0
  655. pulumi_azure_native/dataprotection/v20250101/_inputs.py +3570 -0
  656. pulumi_azure_native/dataprotection/v20250101/backup_instance.py +250 -0
  657. pulumi_azure_native/dataprotection/v20250101/backup_policy.py +221 -0
  658. pulumi_azure_native/dataprotection/v20250101/backup_vault.py +317 -0
  659. pulumi_azure_native/dataprotection/v20250101/dpp_resource_guard_proxy.py +220 -0
  660. pulumi_azure_native/dataprotection/v20250101/get_backup_instance.py +163 -0
  661. pulumi_azure_native/dataprotection/v20250101/get_backup_policy.py +147 -0
  662. pulumi_azure_native/dataprotection/v20250101/get_backup_vault.py +199 -0
  663. pulumi_azure_native/dataprotection/v20250101/get_dpp_resource_guard_proxy.py +149 -0
  664. pulumi_azure_native/dataprotection/v20250101/get_resource_guard.py +180 -0
  665. pulumi_azure_native/dataprotection/v20250101/outputs.py +3913 -0
  666. pulumi_azure_native/dataprotection/v20250101/resource_guard.py +284 -0
  667. pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +20 -0
  668. pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +14 -0
  669. pulumi_azure_native/dbforpostgresql/v20241101preview/_inputs.py +20 -0
  670. pulumi_azure_native/dbforpostgresql/v20241101preview/outputs.py +14 -0
  671. pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
  672. pulumi_azure_native/maintenance/v20230401/get_configuration_assignments_for_subscription.py +2 -2
  673. pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +2 -2
  674. pulumi_azure_native/netapp/__init__.py +3 -0
  675. pulumi_azure_native/netapp/account.py +3 -3
  676. pulumi_azure_native/netapp/backup.py +2 -2
  677. pulumi_azure_native/netapp/backup_policy.py +3 -3
  678. pulumi_azure_native/netapp/backup_vault.py +3 -3
  679. pulumi_azure_native/netapp/get_account.py +2 -2
  680. pulumi_azure_native/netapp/get_backup.py +2 -2
  681. pulumi_azure_native/netapp/get_backup_policy.py +2 -2
  682. pulumi_azure_native/netapp/get_backup_vault.py +2 -2
  683. pulumi_azure_native/netapp/get_pool.py +2 -2
  684. pulumi_azure_native/netapp/get_snapshot.py +2 -2
  685. pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
  686. pulumi_azure_native/netapp/get_subvolume.py +2 -2
  687. pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
  688. pulumi_azure_native/netapp/get_volume.py +2 -2
  689. pulumi_azure_native/netapp/get_volume_group.py +2 -2
  690. pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
  691. pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
  692. pulumi_azure_native/netapp/list_volume_quota_report.py +2 -2
  693. pulumi_azure_native/netapp/list_volume_replications.py +2 -2
  694. pulumi_azure_native/netapp/pool.py +3 -3
  695. pulumi_azure_native/netapp/snapshot.py +3 -3
  696. pulumi_azure_native/netapp/snapshot_policy.py +3 -3
  697. pulumi_azure_native/netapp/subvolume.py +3 -3
  698. pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
  699. pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
  700. pulumi_azure_native/netapp/v20211001/volume.py +1 -1
  701. pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
  702. pulumi_azure_native/netapp/v20220501/account.py +1 -1
  703. pulumi_azure_native/netapp/v20221101/account.py +1 -1
  704. pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
  705. pulumi_azure_native/netapp/v20221101/pool.py +1 -1
  706. pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
  707. pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
  708. pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
  709. pulumi_azure_native/netapp/v20221101/volume.py +1 -1
  710. pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
  711. pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
  712. pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
  713. pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
  714. pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
  715. pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
  716. pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
  717. pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
  718. pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
  719. pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
  720. pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
  721. pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
  722. pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
  723. pulumi_azure_native/netapp/v20230501/account.py +1 -1
  724. pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
  725. pulumi_azure_native/netapp/v20230501/pool.py +1 -1
  726. pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
  727. pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
  728. pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
  729. pulumi_azure_native/netapp/v20230501/volume.py +1 -1
  730. pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
  731. pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
  732. pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
  733. pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
  734. pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
  735. pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
  736. pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
  737. pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
  738. pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
  739. pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
  740. pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
  741. pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
  742. pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
  743. pulumi_azure_native/netapp/v20230701/account.py +1 -1
  744. pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
  745. pulumi_azure_native/netapp/v20230701/pool.py +1 -1
  746. pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
  747. pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
  748. pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
  749. pulumi_azure_native/netapp/v20230701/volume.py +1 -1
  750. pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
  751. pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
  752. pulumi_azure_native/netapp/v20230701preview/account.py +1 -1
  753. pulumi_azure_native/netapp/v20230701preview/backup.py +1 -1
  754. pulumi_azure_native/netapp/v20230701preview/backup_policy.py +1 -1
  755. pulumi_azure_native/netapp/v20230701preview/backup_vault.py +1 -1
  756. pulumi_azure_native/netapp/v20230701preview/pool.py +1 -1
  757. pulumi_azure_native/netapp/v20230701preview/snapshot.py +1 -1
  758. pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +1 -1
  759. pulumi_azure_native/netapp/v20230701preview/subvolume.py +1 -1
  760. pulumi_azure_native/netapp/v20230701preview/volume.py +1 -1
  761. pulumi_azure_native/netapp/v20230701preview/volume_group.py +1 -1
  762. pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +1 -1
  763. pulumi_azure_native/netapp/v20231101/account.py +1 -1
  764. pulumi_azure_native/netapp/v20231101/backup.py +1 -1
  765. pulumi_azure_native/netapp/v20231101/backup_policy.py +1 -1
  766. pulumi_azure_native/netapp/v20231101/backup_vault.py +1 -1
  767. pulumi_azure_native/netapp/v20231101/pool.py +1 -1
  768. pulumi_azure_native/netapp/v20231101/snapshot.py +1 -1
  769. pulumi_azure_native/netapp/v20231101/snapshot_policy.py +1 -1
  770. pulumi_azure_native/netapp/v20231101/subvolume.py +1 -1
  771. pulumi_azure_native/netapp/v20231101/volume.py +1 -1
  772. pulumi_azure_native/netapp/v20231101/volume_group.py +1 -1
  773. pulumi_azure_native/netapp/v20231101/volume_quota_rule.py +1 -1
  774. pulumi_azure_native/netapp/v20231101preview/account.py +1 -1
  775. pulumi_azure_native/netapp/v20231101preview/backup.py +1 -1
  776. pulumi_azure_native/netapp/v20231101preview/backup_policy.py +1 -1
  777. pulumi_azure_native/netapp/v20231101preview/backup_vault.py +1 -1
  778. pulumi_azure_native/netapp/v20231101preview/pool.py +1 -1
  779. pulumi_azure_native/netapp/v20231101preview/snapshot.py +1 -1
  780. pulumi_azure_native/netapp/v20231101preview/snapshot_policy.py +1 -1
  781. pulumi_azure_native/netapp/v20231101preview/subvolume.py +1 -1
  782. pulumi_azure_native/netapp/v20231101preview/volume.py +1 -1
  783. pulumi_azure_native/netapp/v20231101preview/volume_group.py +1 -1
  784. pulumi_azure_native/netapp/v20231101preview/volume_quota_rule.py +1 -1
  785. pulumi_azure_native/netapp/v20240101/account.py +1 -1
  786. pulumi_azure_native/netapp/v20240101/backup.py +1 -1
  787. pulumi_azure_native/netapp/v20240101/backup_policy.py +1 -1
  788. pulumi_azure_native/netapp/v20240101/backup_vault.py +1 -1
  789. pulumi_azure_native/netapp/v20240101/pool.py +1 -1
  790. pulumi_azure_native/netapp/v20240101/snapshot.py +1 -1
  791. pulumi_azure_native/netapp/v20240101/snapshot_policy.py +1 -1
  792. pulumi_azure_native/netapp/v20240101/subvolume.py +1 -1
  793. pulumi_azure_native/netapp/v20240101/volume.py +1 -1
  794. pulumi_azure_native/netapp/v20240101/volume_group.py +1 -1
  795. pulumi_azure_native/netapp/v20240101/volume_quota_rule.py +1 -1
  796. pulumi_azure_native/netapp/v20240301/account.py +1 -1
  797. pulumi_azure_native/netapp/v20240301/backup.py +1 -1
  798. pulumi_azure_native/netapp/v20240301/backup_policy.py +1 -1
  799. pulumi_azure_native/netapp/v20240301/backup_vault.py +1 -1
  800. pulumi_azure_native/netapp/v20240301/pool.py +1 -1
  801. pulumi_azure_native/netapp/v20240301/snapshot.py +1 -1
  802. pulumi_azure_native/netapp/v20240301/snapshot_policy.py +1 -1
  803. pulumi_azure_native/netapp/v20240301/subvolume.py +1 -1
  804. pulumi_azure_native/netapp/v20240301/volume.py +1 -1
  805. pulumi_azure_native/netapp/v20240301/volume_group.py +1 -1
  806. pulumi_azure_native/netapp/v20240301/volume_quota_rule.py +1 -1
  807. pulumi_azure_native/netapp/v20240301preview/account.py +1 -1
  808. pulumi_azure_native/netapp/v20240301preview/backup.py +1 -1
  809. pulumi_azure_native/netapp/v20240301preview/backup_policy.py +1 -1
  810. pulumi_azure_native/netapp/v20240301preview/backup_vault.py +1 -1
  811. pulumi_azure_native/netapp/v20240301preview/pool.py +1 -1
  812. pulumi_azure_native/netapp/v20240301preview/snapshot.py +1 -1
  813. pulumi_azure_native/netapp/v20240301preview/snapshot_policy.py +1 -1
  814. pulumi_azure_native/netapp/v20240301preview/subvolume.py +1 -1
  815. pulumi_azure_native/netapp/v20240301preview/volume.py +1 -1
  816. pulumi_azure_native/netapp/v20240301preview/volume_group.py +1 -1
  817. pulumi_azure_native/netapp/v20240301preview/volume_quota_rule.py +1 -1
  818. pulumi_azure_native/netapp/v20240501/account.py +1 -1
  819. pulumi_azure_native/netapp/v20240501/backup.py +1 -1
  820. pulumi_azure_native/netapp/v20240501/backup_policy.py +1 -1
  821. pulumi_azure_native/netapp/v20240501/backup_vault.py +1 -1
  822. pulumi_azure_native/netapp/v20240501/pool.py +1 -1
  823. pulumi_azure_native/netapp/v20240501/snapshot.py +1 -1
  824. pulumi_azure_native/netapp/v20240501/snapshot_policy.py +1 -1
  825. pulumi_azure_native/netapp/v20240501/subvolume.py +1 -1
  826. pulumi_azure_native/netapp/v20240501/volume.py +1 -1
  827. pulumi_azure_native/netapp/v20240501/volume_group.py +1 -1
  828. pulumi_azure_native/netapp/v20240501/volume_quota_rule.py +1 -1
  829. pulumi_azure_native/netapp/v20240501preview/account.py +1 -1
  830. pulumi_azure_native/netapp/v20240501preview/backup.py +1 -1
  831. pulumi_azure_native/netapp/v20240501preview/backup_policy.py +1 -1
  832. pulumi_azure_native/netapp/v20240501preview/backup_vault.py +1 -1
  833. pulumi_azure_native/netapp/v20240501preview/pool.py +1 -1
  834. pulumi_azure_native/netapp/v20240501preview/snapshot.py +1 -1
  835. pulumi_azure_native/netapp/v20240501preview/snapshot_policy.py +1 -1
  836. pulumi_azure_native/netapp/v20240501preview/subvolume.py +1 -1
  837. pulumi_azure_native/netapp/v20240501preview/volume.py +1 -1
  838. pulumi_azure_native/netapp/v20240501preview/volume_group.py +1 -1
  839. pulumi_azure_native/netapp/v20240501preview/volume_quota_rule.py +1 -1
  840. pulumi_azure_native/netapp/v20240701/account.py +1 -1
  841. pulumi_azure_native/netapp/v20240701/backup.py +1 -1
  842. pulumi_azure_native/netapp/v20240701/backup_policy.py +1 -1
  843. pulumi_azure_native/netapp/v20240701/backup_vault.py +1 -1
  844. pulumi_azure_native/netapp/v20240701/pool.py +1 -1
  845. pulumi_azure_native/netapp/v20240701/snapshot.py +1 -1
  846. pulumi_azure_native/netapp/v20240701/snapshot_policy.py +1 -1
  847. pulumi_azure_native/netapp/v20240701/subvolume.py +1 -1
  848. pulumi_azure_native/netapp/v20240701/volume.py +1 -1
  849. pulumi_azure_native/netapp/v20240701/volume_group.py +1 -1
  850. pulumi_azure_native/netapp/v20240701/volume_quota_rule.py +1 -1
  851. pulumi_azure_native/netapp/v20240701preview/account.py +1 -1
  852. pulumi_azure_native/netapp/v20240701preview/backup.py +1 -1
  853. pulumi_azure_native/netapp/v20240701preview/backup_policy.py +1 -1
  854. pulumi_azure_native/netapp/v20240701preview/backup_vault.py +1 -1
  855. pulumi_azure_native/netapp/v20240701preview/pool.py +1 -1
  856. pulumi_azure_native/netapp/v20240701preview/snapshot.py +1 -1
  857. pulumi_azure_native/netapp/v20240701preview/snapshot_policy.py +1 -1
  858. pulumi_azure_native/netapp/v20240701preview/subvolume.py +1 -1
  859. pulumi_azure_native/netapp/v20240701preview/volume.py +1 -1
  860. pulumi_azure_native/netapp/v20240701preview/volume_group.py +1 -1
  861. pulumi_azure_native/netapp/v20240701preview/volume_quota_rule.py +1 -1
  862. pulumi_azure_native/netapp/v20240901/account.py +1 -1
  863. pulumi_azure_native/netapp/v20240901/backup.py +1 -1
  864. pulumi_azure_native/netapp/v20240901/backup_policy.py +1 -1
  865. pulumi_azure_native/netapp/v20240901/backup_vault.py +1 -1
  866. pulumi_azure_native/netapp/v20240901/pool.py +1 -1
  867. pulumi_azure_native/netapp/v20240901/snapshot.py +1 -1
  868. pulumi_azure_native/netapp/v20240901/snapshot_policy.py +1 -1
  869. pulumi_azure_native/netapp/v20240901/subvolume.py +1 -1
  870. pulumi_azure_native/netapp/v20240901/volume.py +1 -1
  871. pulumi_azure_native/netapp/v20240901/volume_group.py +1 -1
  872. pulumi_azure_native/netapp/v20240901/volume_quota_rule.py +1 -1
  873. pulumi_azure_native/netapp/v20240901preview/__init__.py +36 -0
  874. pulumi_azure_native/netapp/v20240901preview/_enums.py +578 -0
  875. pulumi_azure_native/netapp/v20240901preview/_inputs.py +3121 -0
  876. pulumi_azure_native/netapp/v20240901preview/account.py +385 -0
  877. pulumi_azure_native/netapp/v20240901preview/backup.py +412 -0
  878. pulumi_azure_native/netapp/v20240901preview/backup_policy.py +414 -0
  879. pulumi_azure_native/netapp/v20240901preview/backup_vault.py +258 -0
  880. pulumi_azure_native/netapp/v20240901preview/get_account.py +269 -0
  881. pulumi_azure_native/netapp/v20240901preview/get_backup.py +309 -0
  882. pulumi_azure_native/netapp/v20240901preview/get_backup_policy.py +289 -0
  883. pulumi_azure_native/netapp/v20240901preview/get_backup_vault.py +177 -0
  884. pulumi_azure_native/netapp/v20240901preview/get_pool.py +314 -0
  885. pulumi_azure_native/netapp/v20240901preview/get_snapshot.py +203 -0
  886. pulumi_azure_native/netapp/v20240901preview/get_snapshot_policy.py +261 -0
  887. pulumi_azure_native/netapp/v20240901preview/get_subvolume.py +203 -0
  888. pulumi_azure_native/netapp/v20240901preview/get_subvolume_metadata.py +272 -0
  889. pulumi_azure_native/netapp/v20240901preview/get_volume.py +1023 -0
  890. pulumi_azure_native/netapp/v20240901preview/get_volume_group.py +177 -0
  891. pulumi_azure_native/netapp/v20240901preview/get_volume_group_id_for_ldap_user.py +104 -0
  892. pulumi_azure_native/netapp/v20240901preview/get_volume_quota_rule.py +231 -0
  893. pulumi_azure_native/netapp/v20240901preview/list_volume_quota_report.py +113 -0
  894. pulumi_azure_native/netapp/v20240901preview/list_volume_replications.py +99 -0
  895. pulumi_azure_native/netapp/v20240901preview/outputs.py +3372 -0
  896. pulumi_azure_native/netapp/v20240901preview/pool.py +483 -0
  897. pulumi_azure_native/netapp/v20240901preview/snapshot.py +291 -0
  898. pulumi_azure_native/netapp/v20240901preview/snapshot_policy.py +414 -0
  899. pulumi_azure_native/netapp/v20240901preview/subvolume.py +329 -0
  900. pulumi_azure_native/netapp/v20240901preview/volume.py +1746 -0
  901. pulumi_azure_native/netapp/v20240901preview/volume_group.py +279 -0
  902. pulumi_azure_native/netapp/v20240901preview/volume_quota_rule.py +388 -0
  903. pulumi_azure_native/netapp/volume.py +3 -3
  904. pulumi_azure_native/netapp/volume_group.py +3 -3
  905. pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
  906. pulumi_azure_native/network/__init__.py +13 -0
  907. pulumi_azure_native/network/_inputs.py +58 -0
  908. pulumi_azure_native/network/get_network_security_perimeter.py +2 -2
  909. pulumi_azure_native/network/get_network_security_perimeter_access_rule.py +283 -0
  910. pulumi_azure_native/network/get_network_security_perimeter_association.py +221 -0
  911. pulumi_azure_native/network/get_network_security_perimeter_link.py +276 -0
  912. pulumi_azure_native/network/get_network_security_perimeter_logging_configuration.py +151 -0
  913. pulumi_azure_native/network/get_network_security_perimeter_profile.py +178 -0
  914. pulumi_azure_native/network/network_security_perimeter.py +3 -3
  915. pulumi_azure_native/network/network_security_perimeter_access_rule.py +506 -0
  916. pulumi_azure_native/network/network_security_perimeter_association.py +369 -0
  917. pulumi_azure_native/network/network_security_perimeter_link.py +367 -0
  918. pulumi_azure_native/network/network_security_perimeter_logging_configuration.py +222 -0
  919. pulumi_azure_native/network/network_security_perimeter_profile.py +279 -0
  920. pulumi_azure_native/network/nsp_access_rule.py +1 -1
  921. pulumi_azure_native/network/nsp_association.py +1 -1
  922. pulumi_azure_native/network/nsp_link.py +1 -1
  923. pulumi_azure_native/network/nsp_profile.py +1 -1
  924. pulumi_azure_native/network/outputs.py +53 -0
  925. pulumi_azure_native/network/v20210201preview/network_security_perimeter.py +1 -1
  926. pulumi_azure_native/network/v20210201preview/nsp_access_rule.py +1 -1
  927. pulumi_azure_native/network/v20210201preview/nsp_association.py +1 -1
  928. pulumi_azure_native/network/v20210201preview/nsp_link.py +1 -1
  929. pulumi_azure_native/network/v20210201preview/nsp_profile.py +1 -1
  930. pulumi_azure_native/network/v20210301preview/network_security_perimeter.py +1 -1
  931. pulumi_azure_native/network/v20230701preview/network_security_perimeter.py +1 -1
  932. pulumi_azure_native/network/v20230701preview/nsp_access_rule.py +1 -1
  933. pulumi_azure_native/network/v20230701preview/nsp_association.py +1 -1
  934. pulumi_azure_native/network/v20230701preview/nsp_link.py +1 -1
  935. pulumi_azure_native/network/v20230701preview/nsp_profile.py +1 -1
  936. pulumi_azure_native/network/v20230801preview/network_security_perimeter.py +1 -1
  937. pulumi_azure_native/network/v20230801preview/nsp_access_rule.py +1 -1
  938. pulumi_azure_native/network/v20230801preview/nsp_association.py +1 -1
  939. pulumi_azure_native/network/v20230801preview/nsp_link.py +1 -1
  940. pulumi_azure_native/network/v20230801preview/nsp_profile.py +1 -1
  941. pulumi_azure_native/network/v20240601preview/__init__.py +22 -0
  942. pulumi_azure_native/network/v20240601preview/_enums.py +27 -0
  943. pulumi_azure_native/network/v20240601preview/_inputs.py +161 -0
  944. pulumi_azure_native/network/v20240601preview/get_network_security_perimeter.py +170 -0
  945. pulumi_azure_native/network/v20240601preview/get_network_security_perimeter_access_rule.py +281 -0
  946. pulumi_azure_native/network/v20240601preview/get_network_security_perimeter_association.py +219 -0
  947. pulumi_azure_native/network/v20240601preview/get_network_security_perimeter_link.py +274 -0
  948. pulumi_azure_native/network/v20240601preview/get_network_security_perimeter_logging_configuration.py +149 -0
  949. pulumi_azure_native/network/v20240601preview/get_network_security_perimeter_profile.py +176 -0
  950. pulumi_azure_native/network/v20240601preview/network_security_perimeter.py +256 -0
  951. pulumi_azure_native/network/v20240601preview/network_security_perimeter_access_rule.py +504 -0
  952. pulumi_azure_native/network/v20240601preview/network_security_perimeter_association.py +367 -0
  953. pulumi_azure_native/network/v20240601preview/network_security_perimeter_link.py +365 -0
  954. pulumi_azure_native/network/v20240601preview/network_security_perimeter_logging_configuration.py +220 -0
  955. pulumi_azure_native/network/v20240601preview/network_security_perimeter_profile.py +277 -0
  956. pulumi_azure_native/network/v20240601preview/outputs.py +175 -0
  957. pulumi_azure_native/pulumi-plugin.json +1 -1
  958. pulumi_azure_native/quantum/v20231113preview/_enums.py +26 -6
  959. pulumi_azure_native/quantum/v20231113preview/_inputs.py +121 -24
  960. pulumi_azure_native/quantum/v20231113preview/get_workspace.py +16 -86
  961. pulumi_azure_native/quantum/v20231113preview/outputs.py +236 -65
  962. pulumi_azure_native/quantum/v20231113preview/workspace.py +30 -118
  963. pulumi_azure_native/securityinsights/__init__.py +3 -0
  964. pulumi_azure_native/securityinsights/_enums.py +1 -1
  965. pulumi_azure_native/securityinsights/aad_data_connector.py +1 -1
  966. pulumi_azure_native/securityinsights/aatp_data_connector.py +1 -1
  967. pulumi_azure_native/securityinsights/action.py +3 -3
  968. pulumi_azure_native/securityinsights/activity_custom_entity_query.py +1 -1
  969. pulumi_azure_native/securityinsights/anomalies.py +1 -1
  970. pulumi_azure_native/securityinsights/anomaly_security_ml_analytics_settings.py +1 -1
  971. pulumi_azure_native/securityinsights/asc_data_connector.py +1 -1
  972. pulumi_azure_native/securityinsights/automation_rule.py +3 -3
  973. pulumi_azure_native/securityinsights/aws_cloud_trail_data_connector.py +1 -1
  974. pulumi_azure_native/securityinsights/bookmark.py +3 -3
  975. pulumi_azure_native/securityinsights/bookmark_relation.py +3 -3
  976. pulumi_azure_native/securityinsights/business_application_agent.py +3 -3
  977. pulumi_azure_native/securityinsights/content_package.py +3 -3
  978. pulumi_azure_native/securityinsights/content_template.py +3 -3
  979. pulumi_azure_native/securityinsights/customizable_connector_definition.py +1 -1
  980. pulumi_azure_native/securityinsights/entity_analytics.py +1 -1
  981. pulumi_azure_native/securityinsights/eyes_on.py +1 -1
  982. pulumi_azure_native/securityinsights/file_import.py +3 -3
  983. pulumi_azure_native/securityinsights/fusion_alert_rule.py +1 -1
  984. pulumi_azure_native/securityinsights/get_action.py +2 -2
  985. pulumi_azure_native/securityinsights/get_automation_rule.py +2 -2
  986. pulumi_azure_native/securityinsights/get_bookmark.py +2 -2
  987. pulumi_azure_native/securityinsights/get_bookmark_relation.py +2 -2
  988. pulumi_azure_native/securityinsights/get_business_application_agent.py +2 -2
  989. pulumi_azure_native/securityinsights/get_content_package.py +2 -2
  990. pulumi_azure_native/securityinsights/get_content_template.py +2 -2
  991. pulumi_azure_native/securityinsights/get_entities_get_timeline.py +2 -2
  992. pulumi_azure_native/securityinsights/get_entity_insights.py +2 -2
  993. pulumi_azure_native/securityinsights/get_file_import.py +2 -2
  994. pulumi_azure_native/securityinsights/get_hunt.py +2 -2
  995. pulumi_azure_native/securityinsights/get_hunt_comment.py +2 -2
  996. pulumi_azure_native/securityinsights/get_hunt_relation.py +2 -2
  997. pulumi_azure_native/securityinsights/get_incident.py +2 -2
  998. pulumi_azure_native/securityinsights/get_incident_comment.py +2 -2
  999. pulumi_azure_native/securityinsights/get_incident_relation.py +2 -2
  1000. pulumi_azure_native/securityinsights/get_incident_task.py +2 -2
  1001. pulumi_azure_native/securityinsights/get_metadata.py +2 -2
  1002. pulumi_azure_native/securityinsights/get_sentinel_onboarding_state.py +2 -2
  1003. pulumi_azure_native/securityinsights/get_system.py +2 -2
  1004. pulumi_azure_native/securityinsights/get_threat_intelligence_indicator.py +2 -2
  1005. pulumi_azure_native/securityinsights/get_watchlist.py +2 -2
  1006. pulumi_azure_native/securityinsights/get_watchlist_item.py +2 -2
  1007. pulumi_azure_native/securityinsights/get_workspace_manager_assignment.py +2 -2
  1008. pulumi_azure_native/securityinsights/get_workspace_manager_configuration.py +2 -2
  1009. pulumi_azure_native/securityinsights/get_workspace_manager_group.py +2 -2
  1010. pulumi_azure_native/securityinsights/get_workspace_manager_member.py +2 -2
  1011. pulumi_azure_native/securityinsights/hunt.py +3 -3
  1012. pulumi_azure_native/securityinsights/hunt_comment.py +3 -3
  1013. pulumi_azure_native/securityinsights/hunt_relation.py +3 -3
  1014. pulumi_azure_native/securityinsights/incident.py +3 -3
  1015. pulumi_azure_native/securityinsights/incident_comment.py +3 -3
  1016. pulumi_azure_native/securityinsights/incident_relation.py +3 -3
  1017. pulumi_azure_native/securityinsights/incident_task.py +3 -3
  1018. pulumi_azure_native/securityinsights/list_geodata_by_ip.py +2 -2
  1019. pulumi_azure_native/securityinsights/list_source_control_repositories.py +2 -2
  1020. pulumi_azure_native/securityinsights/list_system_actions.py +2 -2
  1021. pulumi_azure_native/securityinsights/list_whois_by_domain.py +2 -2
  1022. pulumi_azure_native/securityinsights/mcas_data_connector.py +1 -1
  1023. pulumi_azure_native/securityinsights/mdatp_data_connector.py +1 -1
  1024. pulumi_azure_native/securityinsights/metadata.py +3 -3
  1025. pulumi_azure_native/securityinsights/microsoft_security_incident_creation_alert_rule.py +1 -1
  1026. pulumi_azure_native/securityinsights/office_data_connector.py +1 -1
  1027. pulumi_azure_native/securityinsights/scheduled_alert_rule.py +1 -1
  1028. pulumi_azure_native/securityinsights/sentinel_onboarding_state.py +3 -3
  1029. pulumi_azure_native/securityinsights/system.py +3 -3
  1030. pulumi_azure_native/securityinsights/threat_intelligence_indicator.py +3 -3
  1031. pulumi_azure_native/securityinsights/ti_data_connector.py +1 -1
  1032. pulumi_azure_native/securityinsights/ueba.py +1 -1
  1033. pulumi_azure_native/securityinsights/v20190101preview/automation_rule.py +1 -1
  1034. pulumi_azure_native/securityinsights/v20190101preview/bookmark.py +1 -1
  1035. pulumi_azure_native/securityinsights/v20190101preview/bookmark_relation.py +1 -1
  1036. pulumi_azure_native/securityinsights/v20190101preview/ip_syncer.py +1 -1
  1037. pulumi_azure_native/securityinsights/v20190101preview/watchlist.py +1 -1
  1038. pulumi_azure_native/securityinsights/v20210301preview/_enums.py +1 -1
  1039. pulumi_azure_native/securityinsights/v20210301preview/aad_data_connector.py +1 -1
  1040. pulumi_azure_native/securityinsights/v20210301preview/aatp_data_connector.py +1 -1
  1041. pulumi_azure_native/securityinsights/v20210301preview/action.py +1 -1
  1042. pulumi_azure_native/securityinsights/v20210301preview/activity_custom_entity_query.py +1 -1
  1043. pulumi_azure_native/securityinsights/v20210301preview/anomalies.py +1 -1
  1044. pulumi_azure_native/securityinsights/v20210301preview/asc_data_connector.py +1 -1
  1045. pulumi_azure_native/securityinsights/v20210301preview/aws_cloud_trail_data_connector.py +1 -1
  1046. pulumi_azure_native/securityinsights/v20210301preview/codeless_ui_data_connector.py +1 -1
  1047. pulumi_azure_native/securityinsights/v20210301preview/dynamics365_data_connector.py +1 -1
  1048. pulumi_azure_native/securityinsights/v20210301preview/entity_analytics.py +1 -1
  1049. pulumi_azure_native/securityinsights/v20210301preview/eyes_on.py +1 -1
  1050. pulumi_azure_native/securityinsights/v20210301preview/fusion_alert_rule.py +1 -1
  1051. pulumi_azure_native/securityinsights/v20210301preview/incident.py +1 -1
  1052. pulumi_azure_native/securityinsights/v20210301preview/incident_comment.py +1 -1
  1053. pulumi_azure_native/securityinsights/v20210301preview/incident_relation.py +1 -1
  1054. pulumi_azure_native/securityinsights/v20210301preview/mcas_data_connector.py +1 -1
  1055. pulumi_azure_native/securityinsights/v20210301preview/mdatp_data_connector.py +1 -1
  1056. pulumi_azure_native/securityinsights/v20210301preview/metadata.py +1 -1
  1057. pulumi_azure_native/securityinsights/v20210301preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1058. pulumi_azure_native/securityinsights/v20210301preview/ml_behavior_analytics_alert_rule.py +1 -1
  1059. pulumi_azure_native/securityinsights/v20210301preview/msti_data_connector.py +1 -1
  1060. pulumi_azure_native/securityinsights/v20210301preview/mtp_data_connector.py +1 -1
  1061. pulumi_azure_native/securityinsights/v20210301preview/office_atp_data_connector.py +1 -1
  1062. pulumi_azure_native/securityinsights/v20210301preview/office_data_connector.py +1 -1
  1063. pulumi_azure_native/securityinsights/v20210301preview/scheduled_alert_rule.py +1 -1
  1064. pulumi_azure_native/securityinsights/v20210301preview/sentinel_onboarding_state.py +1 -1
  1065. pulumi_azure_native/securityinsights/v20210301preview/threat_intelligence_alert_rule.py +1 -1
  1066. pulumi_azure_native/securityinsights/v20210301preview/ti_data_connector.py +1 -1
  1067. pulumi_azure_native/securityinsights/v20210301preview/ti_taxii_data_connector.py +1 -1
  1068. pulumi_azure_native/securityinsights/v20210301preview/ueba.py +1 -1
  1069. pulumi_azure_native/securityinsights/v20210301preview/watchlist.py +1 -1
  1070. pulumi_azure_native/securityinsights/v20210401/threat_intelligence_indicator.py +1 -1
  1071. pulumi_azure_native/securityinsights/v20210401/watchlist.py +1 -1
  1072. pulumi_azure_native/securityinsights/v20210401/watchlist_item.py +1 -1
  1073. pulumi_azure_native/securityinsights/v20210901preview/threat_intelligence_indicator.py +1 -1
  1074. pulumi_azure_native/securityinsights/v20211001preview/fusion_alert_rule.py +1 -1
  1075. pulumi_azure_native/securityinsights/v20211001preview/nrt_alert_rule.py +1 -1
  1076. pulumi_azure_native/securityinsights/v20211001preview/watchlist.py +1 -1
  1077. pulumi_azure_native/securityinsights/v20220101preview/entity_analytics.py +1 -1
  1078. pulumi_azure_native/securityinsights/v20220101preview/watchlist.py +1 -1
  1079. pulumi_azure_native/securityinsights/v20230201/aad_data_connector.py +1 -1
  1080. pulumi_azure_native/securityinsights/v20230201/aatp_data_connector.py +1 -1
  1081. pulumi_azure_native/securityinsights/v20230201/action.py +1 -1
  1082. pulumi_azure_native/securityinsights/v20230201/automation_rule.py +1 -1
  1083. pulumi_azure_native/securityinsights/v20230201/aws_cloud_trail_data_connector.py +1 -1
  1084. pulumi_azure_native/securityinsights/v20230201/bookmark.py +1 -1
  1085. pulumi_azure_native/securityinsights/v20230201/incident.py +1 -1
  1086. pulumi_azure_native/securityinsights/v20230201/incident_comment.py +1 -1
  1087. pulumi_azure_native/securityinsights/v20230201/incident_relation.py +1 -1
  1088. pulumi_azure_native/securityinsights/v20230201/mcas_data_connector.py +1 -1
  1089. pulumi_azure_native/securityinsights/v20230201/mdatp_data_connector.py +1 -1
  1090. pulumi_azure_native/securityinsights/v20230201/metadata.py +1 -1
  1091. pulumi_azure_native/securityinsights/v20230201/office_data_connector.py +1 -1
  1092. pulumi_azure_native/securityinsights/v20230201/sentinel_onboarding_state.py +1 -1
  1093. pulumi_azure_native/securityinsights/v20230201/threat_intelligence_indicator.py +1 -1
  1094. pulumi_azure_native/securityinsights/v20230201/ti_data_connector.py +1 -1
  1095. pulumi_azure_native/securityinsights/v20230201/watchlist.py +1 -1
  1096. pulumi_azure_native/securityinsights/v20230201/watchlist_item.py +1 -1
  1097. pulumi_azure_native/securityinsights/v20230201preview/incident.py +1 -1
  1098. pulumi_azure_native/securityinsights/v20230201preview/metadata.py +1 -1
  1099. pulumi_azure_native/securityinsights/v20230301preview/incident.py +1 -1
  1100. pulumi_azure_native/securityinsights/v20230501preview/_enums.py +1 -1
  1101. pulumi_azure_native/securityinsights/v20230601preview/aad_data_connector.py +1 -1
  1102. pulumi_azure_native/securityinsights/v20230601preview/aatp_data_connector.py +1 -1
  1103. pulumi_azure_native/securityinsights/v20230601preview/action.py +1 -1
  1104. pulumi_azure_native/securityinsights/v20230601preview/activity_custom_entity_query.py +1 -1
  1105. pulumi_azure_native/securityinsights/v20230601preview/anomalies.py +1 -1
  1106. pulumi_azure_native/securityinsights/v20230601preview/anomaly_security_ml_analytics_settings.py +1 -1
  1107. pulumi_azure_native/securityinsights/v20230601preview/asc_data_connector.py +1 -1
  1108. pulumi_azure_native/securityinsights/v20230601preview/automation_rule.py +1 -1
  1109. pulumi_azure_native/securityinsights/v20230601preview/aws_cloud_trail_data_connector.py +1 -1
  1110. pulumi_azure_native/securityinsights/v20230601preview/aws_s3_data_connector.py +1 -1
  1111. pulumi_azure_native/securityinsights/v20230601preview/bookmark.py +1 -1
  1112. pulumi_azure_native/securityinsights/v20230601preview/bookmark_relation.py +1 -1
  1113. pulumi_azure_native/securityinsights/v20230601preview/codeless_api_polling_data_connector.py +1 -1
  1114. pulumi_azure_native/securityinsights/v20230601preview/codeless_ui_data_connector.py +1 -1
  1115. pulumi_azure_native/securityinsights/v20230601preview/content_package.py +1 -1
  1116. pulumi_azure_native/securityinsights/v20230601preview/content_template.py +1 -1
  1117. pulumi_azure_native/securityinsights/v20230601preview/dynamics365_data_connector.py +1 -1
  1118. pulumi_azure_native/securityinsights/v20230601preview/entity_analytics.py +1 -1
  1119. pulumi_azure_native/securityinsights/v20230601preview/eyes_on.py +1 -1
  1120. pulumi_azure_native/securityinsights/v20230601preview/file_import.py +1 -1
  1121. pulumi_azure_native/securityinsights/v20230601preview/fusion_alert_rule.py +1 -1
  1122. pulumi_azure_native/securityinsights/v20230601preview/gcp_data_connector.py +1 -1
  1123. pulumi_azure_native/securityinsights/v20230601preview/hunt.py +1 -1
  1124. pulumi_azure_native/securityinsights/v20230601preview/hunt_comment.py +1 -1
  1125. pulumi_azure_native/securityinsights/v20230601preview/hunt_relation.py +1 -1
  1126. pulumi_azure_native/securityinsights/v20230601preview/incident.py +1 -1
  1127. pulumi_azure_native/securityinsights/v20230601preview/incident_comment.py +1 -1
  1128. pulumi_azure_native/securityinsights/v20230601preview/incident_relation.py +1 -1
  1129. pulumi_azure_native/securityinsights/v20230601preview/incident_task.py +1 -1
  1130. pulumi_azure_native/securityinsights/v20230601preview/io_t_data_connector.py +1 -1
  1131. pulumi_azure_native/securityinsights/v20230601preview/mcas_data_connector.py +1 -1
  1132. pulumi_azure_native/securityinsights/v20230601preview/mdatp_data_connector.py +1 -1
  1133. pulumi_azure_native/securityinsights/v20230601preview/metadata.py +1 -1
  1134. pulumi_azure_native/securityinsights/v20230601preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1135. pulumi_azure_native/securityinsights/v20230601preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1136. pulumi_azure_native/securityinsights/v20230601preview/ml_behavior_analytics_alert_rule.py +1 -1
  1137. pulumi_azure_native/securityinsights/v20230601preview/msti_data_connector.py +1 -1
  1138. pulumi_azure_native/securityinsights/v20230601preview/mtp_data_connector.py +1 -1
  1139. pulumi_azure_native/securityinsights/v20230601preview/nrt_alert_rule.py +1 -1
  1140. pulumi_azure_native/securityinsights/v20230601preview/office365_project_data_connector.py +1 -1
  1141. pulumi_azure_native/securityinsights/v20230601preview/office_atp_data_connector.py +1 -1
  1142. pulumi_azure_native/securityinsights/v20230601preview/office_data_connector.py +1 -1
  1143. pulumi_azure_native/securityinsights/v20230601preview/office_irm_data_connector.py +1 -1
  1144. pulumi_azure_native/securityinsights/v20230601preview/office_power_bi_data_connector.py +1 -1
  1145. pulumi_azure_native/securityinsights/v20230601preview/scheduled_alert_rule.py +1 -1
  1146. pulumi_azure_native/securityinsights/v20230601preview/sentinel_onboarding_state.py +1 -1
  1147. pulumi_azure_native/securityinsights/v20230601preview/threat_intelligence_alert_rule.py +1 -1
  1148. pulumi_azure_native/securityinsights/v20230601preview/threat_intelligence_indicator.py +1 -1
  1149. pulumi_azure_native/securityinsights/v20230601preview/ti_data_connector.py +1 -1
  1150. pulumi_azure_native/securityinsights/v20230601preview/ti_taxii_data_connector.py +1 -1
  1151. pulumi_azure_native/securityinsights/v20230601preview/ueba.py +1 -1
  1152. pulumi_azure_native/securityinsights/v20230601preview/watchlist.py +1 -1
  1153. pulumi_azure_native/securityinsights/v20230601preview/watchlist_item.py +1 -1
  1154. pulumi_azure_native/securityinsights/v20230601preview/workspace_manager_assignment.py +1 -1
  1155. pulumi_azure_native/securityinsights/v20230601preview/workspace_manager_configuration.py +1 -1
  1156. pulumi_azure_native/securityinsights/v20230601preview/workspace_manager_group.py +1 -1
  1157. pulumi_azure_native/securityinsights/v20230601preview/workspace_manager_member.py +1 -1
  1158. pulumi_azure_native/securityinsights/v20230701preview/aad_data_connector.py +1 -1
  1159. pulumi_azure_native/securityinsights/v20230701preview/aatp_data_connector.py +1 -1
  1160. pulumi_azure_native/securityinsights/v20230701preview/action.py +1 -1
  1161. pulumi_azure_native/securityinsights/v20230701preview/activity_custom_entity_query.py +1 -1
  1162. pulumi_azure_native/securityinsights/v20230701preview/anomalies.py +1 -1
  1163. pulumi_azure_native/securityinsights/v20230701preview/anomaly_security_ml_analytics_settings.py +1 -1
  1164. pulumi_azure_native/securityinsights/v20230701preview/asc_data_connector.py +1 -1
  1165. pulumi_azure_native/securityinsights/v20230701preview/automation_rule.py +1 -1
  1166. pulumi_azure_native/securityinsights/v20230701preview/aws_cloud_trail_data_connector.py +1 -1
  1167. pulumi_azure_native/securityinsights/v20230701preview/aws_s3_data_connector.py +1 -1
  1168. pulumi_azure_native/securityinsights/v20230701preview/bookmark.py +1 -1
  1169. pulumi_azure_native/securityinsights/v20230701preview/bookmark_relation.py +1 -1
  1170. pulumi_azure_native/securityinsights/v20230701preview/codeless_api_polling_data_connector.py +1 -1
  1171. pulumi_azure_native/securityinsights/v20230701preview/codeless_ui_data_connector.py +1 -1
  1172. pulumi_azure_native/securityinsights/v20230701preview/content_package.py +1 -1
  1173. pulumi_azure_native/securityinsights/v20230701preview/content_template.py +1 -1
  1174. pulumi_azure_native/securityinsights/v20230701preview/customizable_connector_definition.py +1 -1
  1175. pulumi_azure_native/securityinsights/v20230701preview/dynamics365_data_connector.py +1 -1
  1176. pulumi_azure_native/securityinsights/v20230701preview/entity_analytics.py +1 -1
  1177. pulumi_azure_native/securityinsights/v20230701preview/eyes_on.py +1 -1
  1178. pulumi_azure_native/securityinsights/v20230701preview/file_import.py +1 -1
  1179. pulumi_azure_native/securityinsights/v20230701preview/fusion_alert_rule.py +1 -1
  1180. pulumi_azure_native/securityinsights/v20230701preview/gcp_data_connector.py +1 -1
  1181. pulumi_azure_native/securityinsights/v20230701preview/hunt.py +1 -1
  1182. pulumi_azure_native/securityinsights/v20230701preview/hunt_comment.py +1 -1
  1183. pulumi_azure_native/securityinsights/v20230701preview/hunt_relation.py +1 -1
  1184. pulumi_azure_native/securityinsights/v20230701preview/incident.py +1 -1
  1185. pulumi_azure_native/securityinsights/v20230701preview/incident_comment.py +1 -1
  1186. pulumi_azure_native/securityinsights/v20230701preview/incident_relation.py +1 -1
  1187. pulumi_azure_native/securityinsights/v20230701preview/incident_task.py +1 -1
  1188. pulumi_azure_native/securityinsights/v20230701preview/io_t_data_connector.py +1 -1
  1189. pulumi_azure_native/securityinsights/v20230701preview/mcas_data_connector.py +1 -1
  1190. pulumi_azure_native/securityinsights/v20230701preview/mdatp_data_connector.py +1 -1
  1191. pulumi_azure_native/securityinsights/v20230701preview/metadata.py +1 -1
  1192. pulumi_azure_native/securityinsights/v20230701preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1193. pulumi_azure_native/securityinsights/v20230701preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1194. pulumi_azure_native/securityinsights/v20230701preview/ml_behavior_analytics_alert_rule.py +1 -1
  1195. pulumi_azure_native/securityinsights/v20230701preview/msti_data_connector.py +1 -1
  1196. pulumi_azure_native/securityinsights/v20230701preview/mtp_data_connector.py +1 -1
  1197. pulumi_azure_native/securityinsights/v20230701preview/nrt_alert_rule.py +1 -1
  1198. pulumi_azure_native/securityinsights/v20230701preview/office365_project_data_connector.py +1 -1
  1199. pulumi_azure_native/securityinsights/v20230701preview/office_atp_data_connector.py +1 -1
  1200. pulumi_azure_native/securityinsights/v20230701preview/office_data_connector.py +1 -1
  1201. pulumi_azure_native/securityinsights/v20230701preview/office_irm_data_connector.py +1 -1
  1202. pulumi_azure_native/securityinsights/v20230701preview/office_power_bi_data_connector.py +1 -1
  1203. pulumi_azure_native/securityinsights/v20230701preview/scheduled_alert_rule.py +1 -1
  1204. pulumi_azure_native/securityinsights/v20230701preview/sentinel_onboarding_state.py +1 -1
  1205. pulumi_azure_native/securityinsights/v20230701preview/threat_intelligence_alert_rule.py +1 -1
  1206. pulumi_azure_native/securityinsights/v20230701preview/threat_intelligence_indicator.py +1 -1
  1207. pulumi_azure_native/securityinsights/v20230701preview/ti_data_connector.py +1 -1
  1208. pulumi_azure_native/securityinsights/v20230701preview/ti_taxii_data_connector.py +1 -1
  1209. pulumi_azure_native/securityinsights/v20230701preview/ueba.py +1 -1
  1210. pulumi_azure_native/securityinsights/v20230701preview/watchlist.py +1 -1
  1211. pulumi_azure_native/securityinsights/v20230701preview/watchlist_item.py +1 -1
  1212. pulumi_azure_native/securityinsights/v20230701preview/workspace_manager_assignment.py +1 -1
  1213. pulumi_azure_native/securityinsights/v20230701preview/workspace_manager_configuration.py +1 -1
  1214. pulumi_azure_native/securityinsights/v20230701preview/workspace_manager_group.py +1 -1
  1215. pulumi_azure_native/securityinsights/v20230701preview/workspace_manager_member.py +1 -1
  1216. pulumi_azure_native/securityinsights/v20230801preview/aad_data_connector.py +1 -1
  1217. pulumi_azure_native/securityinsights/v20230801preview/aatp_data_connector.py +1 -1
  1218. pulumi_azure_native/securityinsights/v20230801preview/action.py +1 -1
  1219. pulumi_azure_native/securityinsights/v20230801preview/activity_custom_entity_query.py +1 -1
  1220. pulumi_azure_native/securityinsights/v20230801preview/anomalies.py +1 -1
  1221. pulumi_azure_native/securityinsights/v20230801preview/anomaly_security_ml_analytics_settings.py +1 -1
  1222. pulumi_azure_native/securityinsights/v20230801preview/asc_data_connector.py +1 -1
  1223. pulumi_azure_native/securityinsights/v20230801preview/automation_rule.py +1 -1
  1224. pulumi_azure_native/securityinsights/v20230801preview/aws_cloud_trail_data_connector.py +1 -1
  1225. pulumi_azure_native/securityinsights/v20230801preview/aws_s3_data_connector.py +1 -1
  1226. pulumi_azure_native/securityinsights/v20230801preview/bookmark.py +1 -1
  1227. pulumi_azure_native/securityinsights/v20230801preview/bookmark_relation.py +1 -1
  1228. pulumi_azure_native/securityinsights/v20230801preview/codeless_api_polling_data_connector.py +1 -1
  1229. pulumi_azure_native/securityinsights/v20230801preview/codeless_ui_data_connector.py +1 -1
  1230. pulumi_azure_native/securityinsights/v20230801preview/content_package.py +1 -1
  1231. pulumi_azure_native/securityinsights/v20230801preview/content_template.py +1 -1
  1232. pulumi_azure_native/securityinsights/v20230801preview/customizable_connector_definition.py +1 -1
  1233. pulumi_azure_native/securityinsights/v20230801preview/dynamics365_data_connector.py +1 -1
  1234. pulumi_azure_native/securityinsights/v20230801preview/entity_analytics.py +1 -1
  1235. pulumi_azure_native/securityinsights/v20230801preview/eyes_on.py +1 -1
  1236. pulumi_azure_native/securityinsights/v20230801preview/file_import.py +1 -1
  1237. pulumi_azure_native/securityinsights/v20230801preview/fusion_alert_rule.py +1 -1
  1238. pulumi_azure_native/securityinsights/v20230801preview/gcp_data_connector.py +1 -1
  1239. pulumi_azure_native/securityinsights/v20230801preview/hunt.py +1 -1
  1240. pulumi_azure_native/securityinsights/v20230801preview/hunt_comment.py +1 -1
  1241. pulumi_azure_native/securityinsights/v20230801preview/hunt_relation.py +1 -1
  1242. pulumi_azure_native/securityinsights/v20230801preview/incident.py +1 -1
  1243. pulumi_azure_native/securityinsights/v20230801preview/incident_comment.py +1 -1
  1244. pulumi_azure_native/securityinsights/v20230801preview/incident_relation.py +1 -1
  1245. pulumi_azure_native/securityinsights/v20230801preview/incident_task.py +1 -1
  1246. pulumi_azure_native/securityinsights/v20230801preview/io_t_data_connector.py +1 -1
  1247. pulumi_azure_native/securityinsights/v20230801preview/mcas_data_connector.py +1 -1
  1248. pulumi_azure_native/securityinsights/v20230801preview/mdatp_data_connector.py +1 -1
  1249. pulumi_azure_native/securityinsights/v20230801preview/metadata.py +1 -1
  1250. pulumi_azure_native/securityinsights/v20230801preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1251. pulumi_azure_native/securityinsights/v20230801preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1252. pulumi_azure_native/securityinsights/v20230801preview/ml_behavior_analytics_alert_rule.py +1 -1
  1253. pulumi_azure_native/securityinsights/v20230801preview/msti_data_connector.py +1 -1
  1254. pulumi_azure_native/securityinsights/v20230801preview/mtp_data_connector.py +1 -1
  1255. pulumi_azure_native/securityinsights/v20230801preview/nrt_alert_rule.py +1 -1
  1256. pulumi_azure_native/securityinsights/v20230801preview/office365_project_data_connector.py +1 -1
  1257. pulumi_azure_native/securityinsights/v20230801preview/office_atp_data_connector.py +1 -1
  1258. pulumi_azure_native/securityinsights/v20230801preview/office_data_connector.py +1 -1
  1259. pulumi_azure_native/securityinsights/v20230801preview/office_irm_data_connector.py +1 -1
  1260. pulumi_azure_native/securityinsights/v20230801preview/office_power_bi_data_connector.py +1 -1
  1261. pulumi_azure_native/securityinsights/v20230801preview/scheduled_alert_rule.py +1 -1
  1262. pulumi_azure_native/securityinsights/v20230801preview/sentinel_onboarding_state.py +1 -1
  1263. pulumi_azure_native/securityinsights/v20230801preview/threat_intelligence_alert_rule.py +1 -1
  1264. pulumi_azure_native/securityinsights/v20230801preview/threat_intelligence_indicator.py +1 -1
  1265. pulumi_azure_native/securityinsights/v20230801preview/ti_data_connector.py +1 -1
  1266. pulumi_azure_native/securityinsights/v20230801preview/ti_taxii_data_connector.py +1 -1
  1267. pulumi_azure_native/securityinsights/v20230801preview/ueba.py +1 -1
  1268. pulumi_azure_native/securityinsights/v20230801preview/watchlist.py +1 -1
  1269. pulumi_azure_native/securityinsights/v20230801preview/watchlist_item.py +1 -1
  1270. pulumi_azure_native/securityinsights/v20230801preview/workspace_manager_assignment.py +1 -1
  1271. pulumi_azure_native/securityinsights/v20230801preview/workspace_manager_configuration.py +1 -1
  1272. pulumi_azure_native/securityinsights/v20230801preview/workspace_manager_group.py +1 -1
  1273. pulumi_azure_native/securityinsights/v20230801preview/workspace_manager_member.py +1 -1
  1274. pulumi_azure_native/securityinsights/v20230901preview/aad_data_connector.py +1 -1
  1275. pulumi_azure_native/securityinsights/v20230901preview/aatp_data_connector.py +1 -1
  1276. pulumi_azure_native/securityinsights/v20230901preview/action.py +1 -1
  1277. pulumi_azure_native/securityinsights/v20230901preview/activity_custom_entity_query.py +1 -1
  1278. pulumi_azure_native/securityinsights/v20230901preview/anomalies.py +1 -1
  1279. pulumi_azure_native/securityinsights/v20230901preview/anomaly_security_ml_analytics_settings.py +1 -1
  1280. pulumi_azure_native/securityinsights/v20230901preview/asc_data_connector.py +1 -1
  1281. pulumi_azure_native/securityinsights/v20230901preview/automation_rule.py +1 -1
  1282. pulumi_azure_native/securityinsights/v20230901preview/aws_cloud_trail_data_connector.py +1 -1
  1283. pulumi_azure_native/securityinsights/v20230901preview/aws_s3_data_connector.py +1 -1
  1284. pulumi_azure_native/securityinsights/v20230901preview/bookmark.py +1 -1
  1285. pulumi_azure_native/securityinsights/v20230901preview/bookmark_relation.py +1 -1
  1286. pulumi_azure_native/securityinsights/v20230901preview/codeless_api_polling_data_connector.py +1 -1
  1287. pulumi_azure_native/securityinsights/v20230901preview/codeless_ui_data_connector.py +1 -1
  1288. pulumi_azure_native/securityinsights/v20230901preview/content_package.py +1 -1
  1289. pulumi_azure_native/securityinsights/v20230901preview/content_template.py +1 -1
  1290. pulumi_azure_native/securityinsights/v20230901preview/customizable_connector_definition.py +1 -1
  1291. pulumi_azure_native/securityinsights/v20230901preview/dynamics365_data_connector.py +1 -1
  1292. pulumi_azure_native/securityinsights/v20230901preview/entity_analytics.py +1 -1
  1293. pulumi_azure_native/securityinsights/v20230901preview/eyes_on.py +1 -1
  1294. pulumi_azure_native/securityinsights/v20230901preview/file_import.py +1 -1
  1295. pulumi_azure_native/securityinsights/v20230901preview/fusion_alert_rule.py +1 -1
  1296. pulumi_azure_native/securityinsights/v20230901preview/gcp_data_connector.py +1 -1
  1297. pulumi_azure_native/securityinsights/v20230901preview/hunt.py +1 -1
  1298. pulumi_azure_native/securityinsights/v20230901preview/hunt_comment.py +1 -1
  1299. pulumi_azure_native/securityinsights/v20230901preview/hunt_relation.py +1 -1
  1300. pulumi_azure_native/securityinsights/v20230901preview/incident.py +1 -1
  1301. pulumi_azure_native/securityinsights/v20230901preview/incident_comment.py +1 -1
  1302. pulumi_azure_native/securityinsights/v20230901preview/incident_relation.py +1 -1
  1303. pulumi_azure_native/securityinsights/v20230901preview/incident_task.py +1 -1
  1304. pulumi_azure_native/securityinsights/v20230901preview/io_t_data_connector.py +1 -1
  1305. pulumi_azure_native/securityinsights/v20230901preview/mcas_data_connector.py +1 -1
  1306. pulumi_azure_native/securityinsights/v20230901preview/mdatp_data_connector.py +1 -1
  1307. pulumi_azure_native/securityinsights/v20230901preview/metadata.py +1 -1
  1308. pulumi_azure_native/securityinsights/v20230901preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1309. pulumi_azure_native/securityinsights/v20230901preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1310. pulumi_azure_native/securityinsights/v20230901preview/ml_behavior_analytics_alert_rule.py +1 -1
  1311. pulumi_azure_native/securityinsights/v20230901preview/msti_data_connector.py +1 -1
  1312. pulumi_azure_native/securityinsights/v20230901preview/mtp_data_connector.py +1 -1
  1313. pulumi_azure_native/securityinsights/v20230901preview/nrt_alert_rule.py +1 -1
  1314. pulumi_azure_native/securityinsights/v20230901preview/office365_project_data_connector.py +1 -1
  1315. pulumi_azure_native/securityinsights/v20230901preview/office_atp_data_connector.py +1 -1
  1316. pulumi_azure_native/securityinsights/v20230901preview/office_data_connector.py +1 -1
  1317. pulumi_azure_native/securityinsights/v20230901preview/office_irm_data_connector.py +1 -1
  1318. pulumi_azure_native/securityinsights/v20230901preview/office_power_bi_data_connector.py +1 -1
  1319. pulumi_azure_native/securityinsights/v20230901preview/scheduled_alert_rule.py +1 -1
  1320. pulumi_azure_native/securityinsights/v20230901preview/sentinel_onboarding_state.py +1 -1
  1321. pulumi_azure_native/securityinsights/v20230901preview/threat_intelligence_alert_rule.py +1 -1
  1322. pulumi_azure_native/securityinsights/v20230901preview/threat_intelligence_indicator.py +1 -1
  1323. pulumi_azure_native/securityinsights/v20230901preview/ti_data_connector.py +1 -1
  1324. pulumi_azure_native/securityinsights/v20230901preview/ti_taxii_data_connector.py +1 -1
  1325. pulumi_azure_native/securityinsights/v20230901preview/ueba.py +1 -1
  1326. pulumi_azure_native/securityinsights/v20230901preview/watchlist.py +1 -1
  1327. pulumi_azure_native/securityinsights/v20230901preview/watchlist_item.py +1 -1
  1328. pulumi_azure_native/securityinsights/v20230901preview/workspace_manager_assignment.py +1 -1
  1329. pulumi_azure_native/securityinsights/v20230901preview/workspace_manager_configuration.py +1 -1
  1330. pulumi_azure_native/securityinsights/v20230901preview/workspace_manager_group.py +1 -1
  1331. pulumi_azure_native/securityinsights/v20230901preview/workspace_manager_member.py +1 -1
  1332. pulumi_azure_native/securityinsights/v20231001preview/aad_data_connector.py +1 -1
  1333. pulumi_azure_native/securityinsights/v20231001preview/aatp_data_connector.py +1 -1
  1334. pulumi_azure_native/securityinsights/v20231001preview/action.py +1 -1
  1335. pulumi_azure_native/securityinsights/v20231001preview/activity_custom_entity_query.py +1 -1
  1336. pulumi_azure_native/securityinsights/v20231001preview/anomalies.py +1 -1
  1337. pulumi_azure_native/securityinsights/v20231001preview/anomaly_security_ml_analytics_settings.py +1 -1
  1338. pulumi_azure_native/securityinsights/v20231001preview/asc_data_connector.py +1 -1
  1339. pulumi_azure_native/securityinsights/v20231001preview/automation_rule.py +1 -1
  1340. pulumi_azure_native/securityinsights/v20231001preview/aws_cloud_trail_data_connector.py +1 -1
  1341. pulumi_azure_native/securityinsights/v20231001preview/aws_s3_data_connector.py +1 -1
  1342. pulumi_azure_native/securityinsights/v20231001preview/bookmark.py +1 -1
  1343. pulumi_azure_native/securityinsights/v20231001preview/bookmark_relation.py +1 -1
  1344. pulumi_azure_native/securityinsights/v20231001preview/codeless_api_polling_data_connector.py +1 -1
  1345. pulumi_azure_native/securityinsights/v20231001preview/codeless_ui_data_connector.py +1 -1
  1346. pulumi_azure_native/securityinsights/v20231001preview/content_package.py +1 -1
  1347. pulumi_azure_native/securityinsights/v20231001preview/content_template.py +1 -1
  1348. pulumi_azure_native/securityinsights/v20231001preview/customizable_connector_definition.py +1 -1
  1349. pulumi_azure_native/securityinsights/v20231001preview/dynamics365_data_connector.py +1 -1
  1350. pulumi_azure_native/securityinsights/v20231001preview/entity_analytics.py +1 -1
  1351. pulumi_azure_native/securityinsights/v20231001preview/eyes_on.py +1 -1
  1352. pulumi_azure_native/securityinsights/v20231001preview/file_import.py +1 -1
  1353. pulumi_azure_native/securityinsights/v20231001preview/fusion_alert_rule.py +1 -1
  1354. pulumi_azure_native/securityinsights/v20231001preview/gcp_data_connector.py +1 -1
  1355. pulumi_azure_native/securityinsights/v20231001preview/hunt.py +1 -1
  1356. pulumi_azure_native/securityinsights/v20231001preview/hunt_comment.py +1 -1
  1357. pulumi_azure_native/securityinsights/v20231001preview/hunt_relation.py +1 -1
  1358. pulumi_azure_native/securityinsights/v20231001preview/incident.py +1 -1
  1359. pulumi_azure_native/securityinsights/v20231001preview/incident_comment.py +1 -1
  1360. pulumi_azure_native/securityinsights/v20231001preview/incident_relation.py +1 -1
  1361. pulumi_azure_native/securityinsights/v20231001preview/incident_task.py +1 -1
  1362. pulumi_azure_native/securityinsights/v20231001preview/io_t_data_connector.py +1 -1
  1363. pulumi_azure_native/securityinsights/v20231001preview/mcas_data_connector.py +1 -1
  1364. pulumi_azure_native/securityinsights/v20231001preview/mdatp_data_connector.py +1 -1
  1365. pulumi_azure_native/securityinsights/v20231001preview/metadata.py +1 -1
  1366. pulumi_azure_native/securityinsights/v20231001preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1367. pulumi_azure_native/securityinsights/v20231001preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1368. pulumi_azure_native/securityinsights/v20231001preview/ml_behavior_analytics_alert_rule.py +1 -1
  1369. pulumi_azure_native/securityinsights/v20231001preview/msti_data_connector.py +1 -1
  1370. pulumi_azure_native/securityinsights/v20231001preview/mtp_data_connector.py +1 -1
  1371. pulumi_azure_native/securityinsights/v20231001preview/nrt_alert_rule.py +1 -1
  1372. pulumi_azure_native/securityinsights/v20231001preview/office365_project_data_connector.py +1 -1
  1373. pulumi_azure_native/securityinsights/v20231001preview/office_atp_data_connector.py +1 -1
  1374. pulumi_azure_native/securityinsights/v20231001preview/office_data_connector.py +1 -1
  1375. pulumi_azure_native/securityinsights/v20231001preview/office_irm_data_connector.py +1 -1
  1376. pulumi_azure_native/securityinsights/v20231001preview/office_power_bi_data_connector.py +1 -1
  1377. pulumi_azure_native/securityinsights/v20231001preview/scheduled_alert_rule.py +1 -1
  1378. pulumi_azure_native/securityinsights/v20231001preview/sentinel_onboarding_state.py +1 -1
  1379. pulumi_azure_native/securityinsights/v20231001preview/threat_intelligence_alert_rule.py +1 -1
  1380. pulumi_azure_native/securityinsights/v20231001preview/threat_intelligence_indicator.py +1 -1
  1381. pulumi_azure_native/securityinsights/v20231001preview/ti_data_connector.py +1 -1
  1382. pulumi_azure_native/securityinsights/v20231001preview/ti_taxii_data_connector.py +1 -1
  1383. pulumi_azure_native/securityinsights/v20231001preview/ueba.py +1 -1
  1384. pulumi_azure_native/securityinsights/v20231001preview/watchlist.py +1 -1
  1385. pulumi_azure_native/securityinsights/v20231001preview/watchlist_item.py +1 -1
  1386. pulumi_azure_native/securityinsights/v20231001preview/workspace_manager_assignment.py +1 -1
  1387. pulumi_azure_native/securityinsights/v20231001preview/workspace_manager_configuration.py +1 -1
  1388. pulumi_azure_native/securityinsights/v20231001preview/workspace_manager_group.py +1 -1
  1389. pulumi_azure_native/securityinsights/v20231001preview/workspace_manager_member.py +1 -1
  1390. pulumi_azure_native/securityinsights/v20231101/aad_data_connector.py +1 -1
  1391. pulumi_azure_native/securityinsights/v20231101/aatp_data_connector.py +1 -1
  1392. pulumi_azure_native/securityinsights/v20231101/action.py +1 -1
  1393. pulumi_azure_native/securityinsights/v20231101/anomaly_security_ml_analytics_settings.py +1 -1
  1394. pulumi_azure_native/securityinsights/v20231101/asc_data_connector.py +1 -1
  1395. pulumi_azure_native/securityinsights/v20231101/automation_rule.py +1 -1
  1396. pulumi_azure_native/securityinsights/v20231101/aws_cloud_trail_data_connector.py +1 -1
  1397. pulumi_azure_native/securityinsights/v20231101/bookmark.py +1 -1
  1398. pulumi_azure_native/securityinsights/v20231101/content_package.py +1 -1
  1399. pulumi_azure_native/securityinsights/v20231101/content_template.py +1 -1
  1400. pulumi_azure_native/securityinsights/v20231101/fusion_alert_rule.py +1 -1
  1401. pulumi_azure_native/securityinsights/v20231101/incident.py +1 -1
  1402. pulumi_azure_native/securityinsights/v20231101/incident_comment.py +1 -1
  1403. pulumi_azure_native/securityinsights/v20231101/incident_relation.py +1 -1
  1404. pulumi_azure_native/securityinsights/v20231101/mcas_data_connector.py +1 -1
  1405. pulumi_azure_native/securityinsights/v20231101/mdatp_data_connector.py +1 -1
  1406. pulumi_azure_native/securityinsights/v20231101/metadata.py +1 -1
  1407. pulumi_azure_native/securityinsights/v20231101/microsoft_security_incident_creation_alert_rule.py +1 -1
  1408. pulumi_azure_native/securityinsights/v20231101/office_data_connector.py +1 -1
  1409. pulumi_azure_native/securityinsights/v20231101/scheduled_alert_rule.py +1 -1
  1410. pulumi_azure_native/securityinsights/v20231101/sentinel_onboarding_state.py +1 -1
  1411. pulumi_azure_native/securityinsights/v20231101/threat_intelligence_indicator.py +1 -1
  1412. pulumi_azure_native/securityinsights/v20231101/ti_data_connector.py +1 -1
  1413. pulumi_azure_native/securityinsights/v20231101/watchlist.py +1 -1
  1414. pulumi_azure_native/securityinsights/v20231101/watchlist_item.py +1 -1
  1415. pulumi_azure_native/securityinsights/v20231201preview/aad_data_connector.py +1 -1
  1416. pulumi_azure_native/securityinsights/v20231201preview/aatp_data_connector.py +1 -1
  1417. pulumi_azure_native/securityinsights/v20231201preview/action.py +1 -1
  1418. pulumi_azure_native/securityinsights/v20231201preview/activity_custom_entity_query.py +1 -1
  1419. pulumi_azure_native/securityinsights/v20231201preview/anomalies.py +1 -1
  1420. pulumi_azure_native/securityinsights/v20231201preview/anomaly_security_ml_analytics_settings.py +1 -1
  1421. pulumi_azure_native/securityinsights/v20231201preview/asc_data_connector.py +1 -1
  1422. pulumi_azure_native/securityinsights/v20231201preview/automation_rule.py +1 -1
  1423. pulumi_azure_native/securityinsights/v20231201preview/aws_cloud_trail_data_connector.py +1 -1
  1424. pulumi_azure_native/securityinsights/v20231201preview/aws_s3_data_connector.py +1 -1
  1425. pulumi_azure_native/securityinsights/v20231201preview/bookmark.py +1 -1
  1426. pulumi_azure_native/securityinsights/v20231201preview/bookmark_relation.py +1 -1
  1427. pulumi_azure_native/securityinsights/v20231201preview/codeless_api_polling_data_connector.py +1 -1
  1428. pulumi_azure_native/securityinsights/v20231201preview/codeless_ui_data_connector.py +1 -1
  1429. pulumi_azure_native/securityinsights/v20231201preview/content_package.py +1 -1
  1430. pulumi_azure_native/securityinsights/v20231201preview/content_template.py +1 -1
  1431. pulumi_azure_native/securityinsights/v20231201preview/customizable_connector_definition.py +1 -1
  1432. pulumi_azure_native/securityinsights/v20231201preview/dynamics365_data_connector.py +1 -1
  1433. pulumi_azure_native/securityinsights/v20231201preview/entity_analytics.py +1 -1
  1434. pulumi_azure_native/securityinsights/v20231201preview/eyes_on.py +1 -1
  1435. pulumi_azure_native/securityinsights/v20231201preview/file_import.py +1 -1
  1436. pulumi_azure_native/securityinsights/v20231201preview/fusion_alert_rule.py +1 -1
  1437. pulumi_azure_native/securityinsights/v20231201preview/gcp_data_connector.py +1 -1
  1438. pulumi_azure_native/securityinsights/v20231201preview/hunt.py +1 -1
  1439. pulumi_azure_native/securityinsights/v20231201preview/hunt_comment.py +1 -1
  1440. pulumi_azure_native/securityinsights/v20231201preview/hunt_relation.py +1 -1
  1441. pulumi_azure_native/securityinsights/v20231201preview/incident.py +1 -1
  1442. pulumi_azure_native/securityinsights/v20231201preview/incident_comment.py +1 -1
  1443. pulumi_azure_native/securityinsights/v20231201preview/incident_relation.py +1 -1
  1444. pulumi_azure_native/securityinsights/v20231201preview/incident_task.py +1 -1
  1445. pulumi_azure_native/securityinsights/v20231201preview/io_t_data_connector.py +1 -1
  1446. pulumi_azure_native/securityinsights/v20231201preview/mcas_data_connector.py +1 -1
  1447. pulumi_azure_native/securityinsights/v20231201preview/mdatp_data_connector.py +1 -1
  1448. pulumi_azure_native/securityinsights/v20231201preview/metadata.py +1 -1
  1449. pulumi_azure_native/securityinsights/v20231201preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1450. pulumi_azure_native/securityinsights/v20231201preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1451. pulumi_azure_native/securityinsights/v20231201preview/ml_behavior_analytics_alert_rule.py +1 -1
  1452. pulumi_azure_native/securityinsights/v20231201preview/msti_data_connector.py +1 -1
  1453. pulumi_azure_native/securityinsights/v20231201preview/mtp_data_connector.py +1 -1
  1454. pulumi_azure_native/securityinsights/v20231201preview/nrt_alert_rule.py +1 -1
  1455. pulumi_azure_native/securityinsights/v20231201preview/office365_project_data_connector.py +1 -1
  1456. pulumi_azure_native/securityinsights/v20231201preview/office_atp_data_connector.py +1 -1
  1457. pulumi_azure_native/securityinsights/v20231201preview/office_data_connector.py +1 -1
  1458. pulumi_azure_native/securityinsights/v20231201preview/office_irm_data_connector.py +1 -1
  1459. pulumi_azure_native/securityinsights/v20231201preview/office_power_bi_data_connector.py +1 -1
  1460. pulumi_azure_native/securityinsights/v20231201preview/scheduled_alert_rule.py +1 -1
  1461. pulumi_azure_native/securityinsights/v20231201preview/sentinel_onboarding_state.py +1 -1
  1462. pulumi_azure_native/securityinsights/v20231201preview/threat_intelligence_alert_rule.py +1 -1
  1463. pulumi_azure_native/securityinsights/v20231201preview/threat_intelligence_indicator.py +1 -1
  1464. pulumi_azure_native/securityinsights/v20231201preview/ti_data_connector.py +1 -1
  1465. pulumi_azure_native/securityinsights/v20231201preview/ti_taxii_data_connector.py +1 -1
  1466. pulumi_azure_native/securityinsights/v20231201preview/ueba.py +1 -1
  1467. pulumi_azure_native/securityinsights/v20231201preview/watchlist.py +1 -1
  1468. pulumi_azure_native/securityinsights/v20231201preview/watchlist_item.py +1 -1
  1469. pulumi_azure_native/securityinsights/v20231201preview/workspace_manager_assignment.py +1 -1
  1470. pulumi_azure_native/securityinsights/v20231201preview/workspace_manager_configuration.py +1 -1
  1471. pulumi_azure_native/securityinsights/v20231201preview/workspace_manager_group.py +1 -1
  1472. pulumi_azure_native/securityinsights/v20231201preview/workspace_manager_member.py +1 -1
  1473. pulumi_azure_native/securityinsights/v20240101preview/aad_data_connector.py +1 -1
  1474. pulumi_azure_native/securityinsights/v20240101preview/aatp_data_connector.py +1 -1
  1475. pulumi_azure_native/securityinsights/v20240101preview/action.py +1 -1
  1476. pulumi_azure_native/securityinsights/v20240101preview/activity_custom_entity_query.py +1 -1
  1477. pulumi_azure_native/securityinsights/v20240101preview/anomalies.py +1 -1
  1478. pulumi_azure_native/securityinsights/v20240101preview/anomaly_security_ml_analytics_settings.py +1 -1
  1479. pulumi_azure_native/securityinsights/v20240101preview/asc_data_connector.py +1 -1
  1480. pulumi_azure_native/securityinsights/v20240101preview/automation_rule.py +1 -1
  1481. pulumi_azure_native/securityinsights/v20240101preview/aws_cloud_trail_data_connector.py +1 -1
  1482. pulumi_azure_native/securityinsights/v20240101preview/aws_s3_data_connector.py +1 -1
  1483. pulumi_azure_native/securityinsights/v20240101preview/bookmark.py +1 -1
  1484. pulumi_azure_native/securityinsights/v20240101preview/bookmark_relation.py +1 -1
  1485. pulumi_azure_native/securityinsights/v20240101preview/codeless_api_polling_data_connector.py +1 -1
  1486. pulumi_azure_native/securityinsights/v20240101preview/codeless_ui_data_connector.py +1 -1
  1487. pulumi_azure_native/securityinsights/v20240101preview/content_package.py +1 -1
  1488. pulumi_azure_native/securityinsights/v20240101preview/content_template.py +1 -1
  1489. pulumi_azure_native/securityinsights/v20240101preview/customizable_connector_definition.py +1 -1
  1490. pulumi_azure_native/securityinsights/v20240101preview/dynamics365_data_connector.py +1 -1
  1491. pulumi_azure_native/securityinsights/v20240101preview/entity_analytics.py +1 -1
  1492. pulumi_azure_native/securityinsights/v20240101preview/eyes_on.py +1 -1
  1493. pulumi_azure_native/securityinsights/v20240101preview/file_import.py +1 -1
  1494. pulumi_azure_native/securityinsights/v20240101preview/fusion_alert_rule.py +1 -1
  1495. pulumi_azure_native/securityinsights/v20240101preview/gcp_data_connector.py +1 -1
  1496. pulumi_azure_native/securityinsights/v20240101preview/hunt.py +1 -1
  1497. pulumi_azure_native/securityinsights/v20240101preview/hunt_comment.py +1 -1
  1498. pulumi_azure_native/securityinsights/v20240101preview/hunt_relation.py +1 -1
  1499. pulumi_azure_native/securityinsights/v20240101preview/incident.py +1 -1
  1500. pulumi_azure_native/securityinsights/v20240101preview/incident_comment.py +1 -1
  1501. pulumi_azure_native/securityinsights/v20240101preview/incident_relation.py +1 -1
  1502. pulumi_azure_native/securityinsights/v20240101preview/incident_task.py +1 -1
  1503. pulumi_azure_native/securityinsights/v20240101preview/io_t_data_connector.py +1 -1
  1504. pulumi_azure_native/securityinsights/v20240101preview/mcas_data_connector.py +1 -1
  1505. pulumi_azure_native/securityinsights/v20240101preview/mdatp_data_connector.py +1 -1
  1506. pulumi_azure_native/securityinsights/v20240101preview/metadata.py +1 -1
  1507. pulumi_azure_native/securityinsights/v20240101preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1508. pulumi_azure_native/securityinsights/v20240101preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1509. pulumi_azure_native/securityinsights/v20240101preview/ml_behavior_analytics_alert_rule.py +1 -1
  1510. pulumi_azure_native/securityinsights/v20240101preview/msti_data_connector.py +1 -1
  1511. pulumi_azure_native/securityinsights/v20240101preview/mtp_data_connector.py +1 -1
  1512. pulumi_azure_native/securityinsights/v20240101preview/nrt_alert_rule.py +1 -1
  1513. pulumi_azure_native/securityinsights/v20240101preview/office365_project_data_connector.py +1 -1
  1514. pulumi_azure_native/securityinsights/v20240101preview/office_atp_data_connector.py +1 -1
  1515. pulumi_azure_native/securityinsights/v20240101preview/office_data_connector.py +1 -1
  1516. pulumi_azure_native/securityinsights/v20240101preview/office_irm_data_connector.py +1 -1
  1517. pulumi_azure_native/securityinsights/v20240101preview/office_power_bi_data_connector.py +1 -1
  1518. pulumi_azure_native/securityinsights/v20240101preview/rest_api_poller_data_connector.py +1 -1
  1519. pulumi_azure_native/securityinsights/v20240101preview/scheduled_alert_rule.py +1 -1
  1520. pulumi_azure_native/securityinsights/v20240101preview/sentinel_onboarding_state.py +1 -1
  1521. pulumi_azure_native/securityinsights/v20240101preview/threat_intelligence_alert_rule.py +1 -1
  1522. pulumi_azure_native/securityinsights/v20240101preview/threat_intelligence_indicator.py +1 -1
  1523. pulumi_azure_native/securityinsights/v20240101preview/ti_data_connector.py +1 -1
  1524. pulumi_azure_native/securityinsights/v20240101preview/ti_taxii_data_connector.py +1 -1
  1525. pulumi_azure_native/securityinsights/v20240101preview/ueba.py +1 -1
  1526. pulumi_azure_native/securityinsights/v20240101preview/watchlist.py +1 -1
  1527. pulumi_azure_native/securityinsights/v20240101preview/watchlist_item.py +1 -1
  1528. pulumi_azure_native/securityinsights/v20240101preview/workspace_manager_assignment.py +1 -1
  1529. pulumi_azure_native/securityinsights/v20240101preview/workspace_manager_configuration.py +1 -1
  1530. pulumi_azure_native/securityinsights/v20240101preview/workspace_manager_group.py +1 -1
  1531. pulumi_azure_native/securityinsights/v20240101preview/workspace_manager_member.py +1 -1
  1532. pulumi_azure_native/securityinsights/v20240301/aad_data_connector.py +1 -1
  1533. pulumi_azure_native/securityinsights/v20240301/aatp_data_connector.py +1 -1
  1534. pulumi_azure_native/securityinsights/v20240301/action.py +1 -1
  1535. pulumi_azure_native/securityinsights/v20240301/anomaly_security_ml_analytics_settings.py +1 -1
  1536. pulumi_azure_native/securityinsights/v20240301/asc_data_connector.py +1 -1
  1537. pulumi_azure_native/securityinsights/v20240301/automation_rule.py +1 -1
  1538. pulumi_azure_native/securityinsights/v20240301/aws_cloud_trail_data_connector.py +1 -1
  1539. pulumi_azure_native/securityinsights/v20240301/bookmark.py +1 -1
  1540. pulumi_azure_native/securityinsights/v20240301/content_package.py +1 -1
  1541. pulumi_azure_native/securityinsights/v20240301/content_template.py +1 -1
  1542. pulumi_azure_native/securityinsights/v20240301/fusion_alert_rule.py +1 -1
  1543. pulumi_azure_native/securityinsights/v20240301/incident.py +1 -1
  1544. pulumi_azure_native/securityinsights/v20240301/incident_comment.py +1 -1
  1545. pulumi_azure_native/securityinsights/v20240301/incident_relation.py +1 -1
  1546. pulumi_azure_native/securityinsights/v20240301/incident_task.py +1 -1
  1547. pulumi_azure_native/securityinsights/v20240301/mcas_data_connector.py +1 -1
  1548. pulumi_azure_native/securityinsights/v20240301/mdatp_data_connector.py +1 -1
  1549. pulumi_azure_native/securityinsights/v20240301/metadata.py +1 -1
  1550. pulumi_azure_native/securityinsights/v20240301/microsoft_security_incident_creation_alert_rule.py +1 -1
  1551. pulumi_azure_native/securityinsights/v20240301/office_data_connector.py +1 -1
  1552. pulumi_azure_native/securityinsights/v20240301/scheduled_alert_rule.py +1 -1
  1553. pulumi_azure_native/securityinsights/v20240301/sentinel_onboarding_state.py +1 -1
  1554. pulumi_azure_native/securityinsights/v20240301/threat_intelligence_indicator.py +1 -1
  1555. pulumi_azure_native/securityinsights/v20240301/ti_data_connector.py +1 -1
  1556. pulumi_azure_native/securityinsights/v20240301/watchlist.py +1 -1
  1557. pulumi_azure_native/securityinsights/v20240301/watchlist_item.py +1 -1
  1558. pulumi_azure_native/securityinsights/v20240401preview/aad_data_connector.py +1 -1
  1559. pulumi_azure_native/securityinsights/v20240401preview/aatp_data_connector.py +1 -1
  1560. pulumi_azure_native/securityinsights/v20240401preview/action.py +1 -1
  1561. pulumi_azure_native/securityinsights/v20240401preview/activity_custom_entity_query.py +1 -1
  1562. pulumi_azure_native/securityinsights/v20240401preview/anomalies.py +1 -1
  1563. pulumi_azure_native/securityinsights/v20240401preview/anomaly_security_ml_analytics_settings.py +1 -1
  1564. pulumi_azure_native/securityinsights/v20240401preview/asc_data_connector.py +1 -1
  1565. pulumi_azure_native/securityinsights/v20240401preview/automation_rule.py +1 -1
  1566. pulumi_azure_native/securityinsights/v20240401preview/aws_cloud_trail_data_connector.py +1 -1
  1567. pulumi_azure_native/securityinsights/v20240401preview/aws_s3_data_connector.py +1 -1
  1568. pulumi_azure_native/securityinsights/v20240401preview/bookmark.py +1 -1
  1569. pulumi_azure_native/securityinsights/v20240401preview/bookmark_relation.py +1 -1
  1570. pulumi_azure_native/securityinsights/v20240401preview/business_application_agent.py +1 -1
  1571. pulumi_azure_native/securityinsights/v20240401preview/codeless_api_polling_data_connector.py +1 -1
  1572. pulumi_azure_native/securityinsights/v20240401preview/codeless_ui_data_connector.py +1 -1
  1573. pulumi_azure_native/securityinsights/v20240401preview/content_package.py +1 -1
  1574. pulumi_azure_native/securityinsights/v20240401preview/content_template.py +1 -1
  1575. pulumi_azure_native/securityinsights/v20240401preview/customizable_connector_definition.py +1 -1
  1576. pulumi_azure_native/securityinsights/v20240401preview/dynamics365_data_connector.py +1 -1
  1577. pulumi_azure_native/securityinsights/v20240401preview/entity_analytics.py +1 -1
  1578. pulumi_azure_native/securityinsights/v20240401preview/eyes_on.py +1 -1
  1579. pulumi_azure_native/securityinsights/v20240401preview/file_import.py +1 -1
  1580. pulumi_azure_native/securityinsights/v20240401preview/fusion_alert_rule.py +1 -1
  1581. pulumi_azure_native/securityinsights/v20240401preview/gcp_data_connector.py +1 -1
  1582. pulumi_azure_native/securityinsights/v20240401preview/hunt.py +1 -1
  1583. pulumi_azure_native/securityinsights/v20240401preview/hunt_comment.py +1 -1
  1584. pulumi_azure_native/securityinsights/v20240401preview/hunt_relation.py +1 -1
  1585. pulumi_azure_native/securityinsights/v20240401preview/incident.py +1 -1
  1586. pulumi_azure_native/securityinsights/v20240401preview/incident_comment.py +1 -1
  1587. pulumi_azure_native/securityinsights/v20240401preview/incident_relation.py +1 -1
  1588. pulumi_azure_native/securityinsights/v20240401preview/incident_task.py +1 -1
  1589. pulumi_azure_native/securityinsights/v20240401preview/io_t_data_connector.py +1 -1
  1590. pulumi_azure_native/securityinsights/v20240401preview/mcas_data_connector.py +1 -1
  1591. pulumi_azure_native/securityinsights/v20240401preview/mdatp_data_connector.py +1 -1
  1592. pulumi_azure_native/securityinsights/v20240401preview/metadata.py +1 -1
  1593. pulumi_azure_native/securityinsights/v20240401preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1594. pulumi_azure_native/securityinsights/v20240401preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1595. pulumi_azure_native/securityinsights/v20240401preview/ml_behavior_analytics_alert_rule.py +1 -1
  1596. pulumi_azure_native/securityinsights/v20240401preview/msti_data_connector.py +1 -1
  1597. pulumi_azure_native/securityinsights/v20240401preview/mtp_data_connector.py +1 -1
  1598. pulumi_azure_native/securityinsights/v20240401preview/nrt_alert_rule.py +1 -1
  1599. pulumi_azure_native/securityinsights/v20240401preview/office365_project_data_connector.py +1 -1
  1600. pulumi_azure_native/securityinsights/v20240401preview/office_atp_data_connector.py +1 -1
  1601. pulumi_azure_native/securityinsights/v20240401preview/office_data_connector.py +1 -1
  1602. pulumi_azure_native/securityinsights/v20240401preview/office_irm_data_connector.py +1 -1
  1603. pulumi_azure_native/securityinsights/v20240401preview/office_power_bi_data_connector.py +1 -1
  1604. pulumi_azure_native/securityinsights/v20240401preview/rest_api_poller_data_connector.py +1 -1
  1605. pulumi_azure_native/securityinsights/v20240401preview/scheduled_alert_rule.py +1 -1
  1606. pulumi_azure_native/securityinsights/v20240401preview/sentinel_onboarding_state.py +1 -1
  1607. pulumi_azure_native/securityinsights/v20240401preview/system.py +1 -1
  1608. pulumi_azure_native/securityinsights/v20240401preview/threat_intelligence_alert_rule.py +1 -1
  1609. pulumi_azure_native/securityinsights/v20240401preview/threat_intelligence_indicator.py +1 -1
  1610. pulumi_azure_native/securityinsights/v20240401preview/ti_data_connector.py +1 -1
  1611. pulumi_azure_native/securityinsights/v20240401preview/ti_taxii_data_connector.py +1 -1
  1612. pulumi_azure_native/securityinsights/v20240401preview/ueba.py +1 -1
  1613. pulumi_azure_native/securityinsights/v20240401preview/watchlist.py +1 -1
  1614. pulumi_azure_native/securityinsights/v20240401preview/watchlist_item.py +1 -1
  1615. pulumi_azure_native/securityinsights/v20240401preview/workspace_manager_assignment.py +1 -1
  1616. pulumi_azure_native/securityinsights/v20240401preview/workspace_manager_configuration.py +1 -1
  1617. pulumi_azure_native/securityinsights/v20240401preview/workspace_manager_group.py +1 -1
  1618. pulumi_azure_native/securityinsights/v20240401preview/workspace_manager_member.py +1 -1
  1619. pulumi_azure_native/securityinsights/v20240901/aad_data_connector.py +1 -1
  1620. pulumi_azure_native/securityinsights/v20240901/aatp_data_connector.py +1 -1
  1621. pulumi_azure_native/securityinsights/v20240901/action.py +1 -1
  1622. pulumi_azure_native/securityinsights/v20240901/anomaly_security_ml_analytics_settings.py +1 -1
  1623. pulumi_azure_native/securityinsights/v20240901/asc_data_connector.py +1 -1
  1624. pulumi_azure_native/securityinsights/v20240901/automation_rule.py +1 -1
  1625. pulumi_azure_native/securityinsights/v20240901/aws_cloud_trail_data_connector.py +1 -1
  1626. pulumi_azure_native/securityinsights/v20240901/bookmark.py +1 -1
  1627. pulumi_azure_native/securityinsights/v20240901/content_package.py +1 -1
  1628. pulumi_azure_native/securityinsights/v20240901/content_template.py +1 -1
  1629. pulumi_azure_native/securityinsights/v20240901/customizable_connector_definition.py +1 -1
  1630. pulumi_azure_native/securityinsights/v20240901/fusion_alert_rule.py +1 -1
  1631. pulumi_azure_native/securityinsights/v20240901/incident.py +1 -1
  1632. pulumi_azure_native/securityinsights/v20240901/incident_comment.py +1 -1
  1633. pulumi_azure_native/securityinsights/v20240901/incident_relation.py +1 -1
  1634. pulumi_azure_native/securityinsights/v20240901/incident_task.py +1 -1
  1635. pulumi_azure_native/securityinsights/v20240901/mcas_data_connector.py +1 -1
  1636. pulumi_azure_native/securityinsights/v20240901/mdatp_data_connector.py +1 -1
  1637. pulumi_azure_native/securityinsights/v20240901/metadata.py +1 -1
  1638. pulumi_azure_native/securityinsights/v20240901/microsoft_security_incident_creation_alert_rule.py +1 -1
  1639. pulumi_azure_native/securityinsights/v20240901/msti_data_connector.py +1 -1
  1640. pulumi_azure_native/securityinsights/v20240901/office_data_connector.py +1 -1
  1641. pulumi_azure_native/securityinsights/v20240901/premium_microsoft_defender_for_threat_intelligence.py +1 -1
  1642. pulumi_azure_native/securityinsights/v20240901/rest_api_poller_data_connector.py +1 -1
  1643. pulumi_azure_native/securityinsights/v20240901/scheduled_alert_rule.py +1 -1
  1644. pulumi_azure_native/securityinsights/v20240901/sentinel_onboarding_state.py +1 -1
  1645. pulumi_azure_native/securityinsights/v20240901/threat_intelligence_indicator.py +1 -1
  1646. pulumi_azure_native/securityinsights/v20240901/ti_data_connector.py +1 -1
  1647. pulumi_azure_native/securityinsights/v20240901/watchlist.py +1 -1
  1648. pulumi_azure_native/securityinsights/v20240901/watchlist_item.py +1 -1
  1649. pulumi_azure_native/securityinsights/v20241001preview/aad_data_connector.py +1 -1
  1650. pulumi_azure_native/securityinsights/v20241001preview/aatp_data_connector.py +1 -1
  1651. pulumi_azure_native/securityinsights/v20241001preview/action.py +1 -1
  1652. pulumi_azure_native/securityinsights/v20241001preview/activity_custom_entity_query.py +1 -1
  1653. pulumi_azure_native/securityinsights/v20241001preview/anomalies.py +1 -1
  1654. pulumi_azure_native/securityinsights/v20241001preview/anomaly_security_ml_analytics_settings.py +1 -1
  1655. pulumi_azure_native/securityinsights/v20241001preview/asc_data_connector.py +1 -1
  1656. pulumi_azure_native/securityinsights/v20241001preview/automation_rule.py +1 -1
  1657. pulumi_azure_native/securityinsights/v20241001preview/aws_cloud_trail_data_connector.py +1 -1
  1658. pulumi_azure_native/securityinsights/v20241001preview/aws_s3_data_connector.py +1 -1
  1659. pulumi_azure_native/securityinsights/v20241001preview/bookmark.py +1 -1
  1660. pulumi_azure_native/securityinsights/v20241001preview/bookmark_relation.py +1 -1
  1661. pulumi_azure_native/securityinsights/v20241001preview/business_application_agent.py +1 -1
  1662. pulumi_azure_native/securityinsights/v20241001preview/codeless_api_polling_data_connector.py +1 -1
  1663. pulumi_azure_native/securityinsights/v20241001preview/codeless_ui_data_connector.py +1 -1
  1664. pulumi_azure_native/securityinsights/v20241001preview/content_package.py +1 -1
  1665. pulumi_azure_native/securityinsights/v20241001preview/content_template.py +1 -1
  1666. pulumi_azure_native/securityinsights/v20241001preview/customizable_connector_definition.py +1 -1
  1667. pulumi_azure_native/securityinsights/v20241001preview/dynamics365_data_connector.py +1 -1
  1668. pulumi_azure_native/securityinsights/v20241001preview/entity_analytics.py +1 -1
  1669. pulumi_azure_native/securityinsights/v20241001preview/eyes_on.py +1 -1
  1670. pulumi_azure_native/securityinsights/v20241001preview/file_import.py +1 -1
  1671. pulumi_azure_native/securityinsights/v20241001preview/fusion_alert_rule.py +1 -1
  1672. pulumi_azure_native/securityinsights/v20241001preview/gcp_data_connector.py +1 -1
  1673. pulumi_azure_native/securityinsights/v20241001preview/hunt.py +1 -1
  1674. pulumi_azure_native/securityinsights/v20241001preview/hunt_comment.py +1 -1
  1675. pulumi_azure_native/securityinsights/v20241001preview/hunt_relation.py +1 -1
  1676. pulumi_azure_native/securityinsights/v20241001preview/incident.py +1 -1
  1677. pulumi_azure_native/securityinsights/v20241001preview/incident_comment.py +1 -1
  1678. pulumi_azure_native/securityinsights/v20241001preview/incident_relation.py +1 -1
  1679. pulumi_azure_native/securityinsights/v20241001preview/incident_task.py +1 -1
  1680. pulumi_azure_native/securityinsights/v20241001preview/io_t_data_connector.py +1 -1
  1681. pulumi_azure_native/securityinsights/v20241001preview/mcas_data_connector.py +1 -1
  1682. pulumi_azure_native/securityinsights/v20241001preview/mdatp_data_connector.py +1 -1
  1683. pulumi_azure_native/securityinsights/v20241001preview/metadata.py +1 -1
  1684. pulumi_azure_native/securityinsights/v20241001preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1685. pulumi_azure_native/securityinsights/v20241001preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1686. pulumi_azure_native/securityinsights/v20241001preview/ml_behavior_analytics_alert_rule.py +1 -1
  1687. pulumi_azure_native/securityinsights/v20241001preview/msti_data_connector.py +1 -1
  1688. pulumi_azure_native/securityinsights/v20241001preview/mtp_data_connector.py +1 -1
  1689. pulumi_azure_native/securityinsights/v20241001preview/nrt_alert_rule.py +1 -1
  1690. pulumi_azure_native/securityinsights/v20241001preview/office365_project_data_connector.py +1 -1
  1691. pulumi_azure_native/securityinsights/v20241001preview/office_atp_data_connector.py +1 -1
  1692. pulumi_azure_native/securityinsights/v20241001preview/office_data_connector.py +1 -1
  1693. pulumi_azure_native/securityinsights/v20241001preview/office_irm_data_connector.py +1 -1
  1694. pulumi_azure_native/securityinsights/v20241001preview/office_power_bi_data_connector.py +1 -1
  1695. pulumi_azure_native/securityinsights/v20241001preview/purview_audit_data_connector.py +1 -1
  1696. pulumi_azure_native/securityinsights/v20241001preview/rest_api_poller_data_connector.py +1 -1
  1697. pulumi_azure_native/securityinsights/v20241001preview/scheduled_alert_rule.py +1 -1
  1698. pulumi_azure_native/securityinsights/v20241001preview/sentinel_onboarding_state.py +1 -1
  1699. pulumi_azure_native/securityinsights/v20241001preview/system.py +1 -1
  1700. pulumi_azure_native/securityinsights/v20241001preview/threat_intelligence_alert_rule.py +1 -1
  1701. pulumi_azure_native/securityinsights/v20241001preview/threat_intelligence_indicator.py +1 -1
  1702. pulumi_azure_native/securityinsights/v20241001preview/ti_data_connector.py +1 -1
  1703. pulumi_azure_native/securityinsights/v20241001preview/ti_taxii_data_connector.py +1 -1
  1704. pulumi_azure_native/securityinsights/v20241001preview/ueba.py +1 -1
  1705. pulumi_azure_native/securityinsights/v20241001preview/watchlist.py +1 -1
  1706. pulumi_azure_native/securityinsights/v20241001preview/watchlist_item.py +1 -1
  1707. pulumi_azure_native/securityinsights/v20241001preview/workspace_manager_assignment.py +1 -1
  1708. pulumi_azure_native/securityinsights/v20241001preview/workspace_manager_configuration.py +1 -1
  1709. pulumi_azure_native/securityinsights/v20241001preview/workspace_manager_group.py +1 -1
  1710. pulumi_azure_native/securityinsights/v20241001preview/workspace_manager_member.py +1 -1
  1711. pulumi_azure_native/securityinsights/v20250101preview/__init__.py +140 -0
  1712. pulumi_azure_native/securityinsights/v20250101preview/_enums.py +1507 -0
  1713. pulumi_azure_native/securityinsights/v20250101preview/_inputs.py +11019 -0
  1714. pulumi_azure_native/securityinsights/v20250101preview/aad_data_connector.py +295 -0
  1715. pulumi_azure_native/securityinsights/v20250101preview/aatp_data_connector.py +295 -0
  1716. pulumi_azure_native/securityinsights/v20250101preview/action.py +282 -0
  1717. pulumi_azure_native/securityinsights/v20250101preview/activity_custom_entity_query.py +517 -0
  1718. pulumi_azure_native/securityinsights/v20250101preview/anomalies.py +244 -0
  1719. pulumi_azure_native/securityinsights/v20250101preview/anomaly_security_ml_analytics_settings.py +629 -0
  1720. pulumi_azure_native/securityinsights/v20250101preview/asc_data_connector.py +294 -0
  1721. pulumi_azure_native/securityinsights/v20250101preview/automation_rule.py +360 -0
  1722. pulumi_azure_native/securityinsights/v20250101preview/aws_cloud_trail_data_connector.py +295 -0
  1723. pulumi_azure_native/securityinsights/v20250101preview/aws_s3_data_connector.py +356 -0
  1724. pulumi_azure_native/securityinsights/v20250101preview/bookmark.py +668 -0
  1725. pulumi_azure_native/securityinsights/v20250101preview/bookmark_relation.py +281 -0
  1726. pulumi_azure_native/securityinsights/v20250101preview/business_application_agent.py +268 -0
  1727. pulumi_azure_native/securityinsights/v20250101preview/codeless_api_polling_data_connector.py +294 -0
  1728. pulumi_azure_native/securityinsights/v20250101preview/codeless_ui_data_connector.py +265 -0
  1729. pulumi_azure_native/securityinsights/v20250101preview/content_package.py +874 -0
  1730. pulumi_azure_native/securityinsights/v20250101preview/content_template.py +955 -0
  1731. pulumi_azure_native/securityinsights/v20250101preview/customizable_connector_definition.py +353 -0
  1732. pulumi_azure_native/securityinsights/v20250101preview/dynamics365_data_connector.py +296 -0
  1733. pulumi_azure_native/securityinsights/v20250101preview/entity_analytics.py +264 -0
  1734. pulumi_azure_native/securityinsights/v20250101preview/eyes_on.py +244 -0
  1735. pulumi_azure_native/securityinsights/v20250101preview/file_import.py +402 -0
  1736. pulumi_azure_native/securityinsights/v20250101preview/fusion_alert_rule.py +424 -0
  1737. pulumi_azure_native/securityinsights/v20250101preview/gcp_data_connector.py +354 -0
  1738. pulumi_azure_native/securityinsights/v20250101preview/get_aad_data_connector.py +192 -0
  1739. pulumi_azure_native/securityinsights/v20250101preview/get_aatp_data_connector.py +192 -0
  1740. pulumi_azure_native/securityinsights/v20250101preview/get_action.py +183 -0
  1741. pulumi_azure_native/securityinsights/v20250101preview/get_activity_custom_entity_query.py +318 -0
  1742. pulumi_azure_native/securityinsights/v20250101preview/get_anomalies.py +178 -0
  1743. pulumi_azure_native/securityinsights/v20250101preview/get_anomaly_security_ml_analytics_settings.py +360 -0
  1744. pulumi_azure_native/securityinsights/v20250101preview/get_asc_data_connector.py +192 -0
  1745. pulumi_azure_native/securityinsights/v20250101preview/get_automation_rule.py +258 -0
  1746. pulumi_azure_native/securityinsights/v20250101preview/get_aws_cloud_trail_data_connector.py +192 -0
  1747. pulumi_azure_native/securityinsights/v20250101preview/get_aws_s3_data_connector.py +220 -0
  1748. pulumi_azure_native/securityinsights/v20250101preview/get_bookmark.py +373 -0
  1749. pulumi_azure_native/securityinsights/v20250101preview/get_bookmark_relation.py +211 -0
  1750. pulumi_azure_native/securityinsights/v20250101preview/get_business_application_agent.py +196 -0
  1751. pulumi_azure_native/securityinsights/v20250101preview/get_codeless_api_polling_data_connector.py +192 -0
  1752. pulumi_azure_native/securityinsights/v20250101preview/get_codeless_ui_data_connector.py +178 -0
  1753. pulumi_azure_native/securityinsights/v20250101preview/get_content_package.py +471 -0
  1754. pulumi_azure_native/securityinsights/v20250101preview/get_content_template.py +533 -0
  1755. pulumi_azure_native/securityinsights/v20250101preview/get_customizable_connector_definition.py +220 -0
  1756. pulumi_azure_native/securityinsights/v20250101preview/get_dynamics365_data_connector.py +192 -0
  1757. pulumi_azure_native/securityinsights/v20250101preview/get_entities_get_timeline.py +132 -0
  1758. pulumi_azure_native/securityinsights/v20250101preview/get_entity_analytics.py +178 -0
  1759. pulumi_azure_native/securityinsights/v20250101preview/get_entity_insights.py +131 -0
  1760. pulumi_azure_native/securityinsights/v20250101preview/get_eyes_on.py +178 -0
  1761. pulumi_azure_native/securityinsights/v20250101preview/get_file_import.py +317 -0
  1762. pulumi_azure_native/securityinsights/v20250101preview/get_fusion_alert_rule.py +318 -0
  1763. pulumi_azure_native/securityinsights/v20250101preview/get_gcp_data_connector.py +220 -0
  1764. pulumi_azure_native/securityinsights/v20250101preview/get_hunt.py +261 -0
  1765. pulumi_azure_native/securityinsights/v20250101preview/get_hunt_comment.py +169 -0
  1766. pulumi_azure_native/securityinsights/v20250101preview/get_hunt_relation.py +225 -0
  1767. pulumi_azure_native/securityinsights/v20250101preview/get_incident.py +426 -0
  1768. pulumi_azure_native/securityinsights/v20250101preview/get_incident_comment.py +211 -0
  1769. pulumi_azure_native/securityinsights/v20250101preview/get_incident_relation.py +211 -0
  1770. pulumi_azure_native/securityinsights/v20250101preview/get_incident_task.py +247 -0
  1771. pulumi_azure_native/securityinsights/v20250101preview/get_io_t_data_connector.py +192 -0
  1772. pulumi_azure_native/securityinsights/v20250101preview/get_mcas_data_connector.py +192 -0
  1773. pulumi_azure_native/securityinsights/v20250101preview/get_mdatp_data_connector.py +192 -0
  1774. pulumi_azure_native/securityinsights/v20250101preview/get_metadata.py +415 -0
  1775. pulumi_azure_native/securityinsights/v20250101preview/get_microsoft_purview_information_protection_data_connector.py +192 -0
  1776. pulumi_azure_native/securityinsights/v20250101preview/get_microsoft_security_incident_creation_alert_rule.py +290 -0
  1777. pulumi_azure_native/securityinsights/v20250101preview/get_ml_behavior_analytics_alert_rule.py +290 -0
  1778. pulumi_azure_native/securityinsights/v20250101preview/get_msti_data_connector.py +192 -0
  1779. pulumi_azure_native/securityinsights/v20250101preview/get_mtp_data_connector.py +206 -0
  1780. pulumi_azure_native/securityinsights/v20250101preview/get_nrt_alert_rule.py +430 -0
  1781. pulumi_azure_native/securityinsights/v20250101preview/get_office365_project_data_connector.py +192 -0
  1782. pulumi_azure_native/securityinsights/v20250101preview/get_office_atp_data_connector.py +192 -0
  1783. pulumi_azure_native/securityinsights/v20250101preview/get_office_data_connector.py +192 -0
  1784. pulumi_azure_native/securityinsights/v20250101preview/get_office_irm_data_connector.py +192 -0
  1785. pulumi_azure_native/securityinsights/v20250101preview/get_office_power_bi_data_connector.py +192 -0
  1786. pulumi_azure_native/securityinsights/v20250101preview/get_purview_audit_data_connector.py +234 -0
  1787. pulumi_azure_native/securityinsights/v20250101preview/get_rest_api_poller_data_connector.py +290 -0
  1788. pulumi_azure_native/securityinsights/v20250101preview/get_scheduled_alert_rule.py +486 -0
  1789. pulumi_azure_native/securityinsights/v20250101preview/get_sentinel_onboarding_state.py +163 -0
  1790. pulumi_azure_native/securityinsights/v20250101preview/get_system.py +205 -0
  1791. pulumi_azure_native/securityinsights/v20250101preview/get_threat_intelligence_alert_rule.py +290 -0
  1792. pulumi_azure_native/securityinsights/v20250101preview/get_threat_intelligence_indicator.py +163 -0
  1793. pulumi_azure_native/securityinsights/v20250101preview/get_ti_data_connector.py +206 -0
  1794. pulumi_azure_native/securityinsights/v20250101preview/get_ti_taxii_data_connector.py +304 -0
  1795. pulumi_azure_native/securityinsights/v20250101preview/get_ueba.py +178 -0
  1796. pulumi_azure_native/securityinsights/v20250101preview/get_watchlist.py +457 -0
  1797. pulumi_azure_native/securityinsights/v20250101preview/get_watchlist_item.py +295 -0
  1798. pulumi_azure_native/securityinsights/v20250101preview/get_workspace_manager_assignment.py +205 -0
  1799. pulumi_azure_native/securityinsights/v20250101preview/get_workspace_manager_configuration.py +163 -0
  1800. pulumi_azure_native/securityinsights/v20250101preview/get_workspace_manager_group.py +191 -0
  1801. pulumi_azure_native/securityinsights/v20250101preview/get_workspace_manager_member.py +177 -0
  1802. pulumi_azure_native/securityinsights/v20250101preview/hunt.py +444 -0
  1803. pulumi_azure_native/securityinsights/v20250101preview/hunt_comment.py +251 -0
  1804. pulumi_azure_native/securityinsights/v20250101preview/hunt_relation.py +310 -0
  1805. pulumi_azure_native/securityinsights/v20250101preview/incident.py +612 -0
  1806. pulumi_azure_native/securityinsights/v20250101preview/incident_comment.py +281 -0
  1807. pulumi_azure_native/securityinsights/v20250101preview/incident_relation.py +281 -0
  1808. pulumi_azure_native/securityinsights/v20250101preview/incident_task.py +380 -0
  1809. pulumi_azure_native/securityinsights/v20250101preview/io_t_data_connector.py +294 -0
  1810. pulumi_azure_native/securityinsights/v20250101preview/list_geodata_by_ip.py +322 -0
  1811. pulumi_azure_native/securityinsights/v20250101preview/list_source_control_repositories.py +138 -0
  1812. pulumi_azure_native/securityinsights/v20250101preview/list_system_actions.py +113 -0
  1813. pulumi_azure_native/securityinsights/v20250101preview/list_whois_by_domain.py +169 -0
  1814. pulumi_azure_native/securityinsights/v20250101preview/mcas_data_connector.py +296 -0
  1815. pulumi_azure_native/securityinsights/v20250101preview/mdatp_data_connector.py +295 -0
  1816. pulumi_azure_native/securityinsights/v20250101preview/metadata.py +755 -0
  1817. pulumi_azure_native/securityinsights/v20250101preview/microsoft_purview_information_protection_data_connector.py +296 -0
  1818. pulumi_azure_native/securityinsights/v20250101preview/microsoft_security_incident_creation_alert_rule.py +480 -0
  1819. pulumi_azure_native/securityinsights/v20250101preview/ml_behavior_analytics_alert_rule.py +364 -0
  1820. pulumi_azure_native/securityinsights/v20250101preview/msti_data_connector.py +296 -0
  1821. pulumi_azure_native/securityinsights/v20250101preview/mtp_data_connector.py +325 -0
  1822. pulumi_azure_native/securityinsights/v20250101preview/nrt_alert_rule.py +774 -0
  1823. pulumi_azure_native/securityinsights/v20250101preview/office365_project_data_connector.py +296 -0
  1824. pulumi_azure_native/securityinsights/v20250101preview/office_atp_data_connector.py +295 -0
  1825. pulumi_azure_native/securityinsights/v20250101preview/office_data_connector.py +296 -0
  1826. pulumi_azure_native/securityinsights/v20250101preview/office_irm_data_connector.py +295 -0
  1827. pulumi_azure_native/securityinsights/v20250101preview/office_power_bi_data_connector.py +296 -0
  1828. pulumi_azure_native/securityinsights/v20250101preview/outputs.py +10619 -0
  1829. pulumi_azure_native/securityinsights/v20250101preview/purview_audit_data_connector.py +383 -0
  1830. pulumi_azure_native/securityinsights/v20250101preview/rest_api_poller_data_connector.py +500 -0
  1831. pulumi_azure_native/securityinsights/v20250101preview/scheduled_alert_rule.py +894 -0
  1832. pulumi_azure_native/securityinsights/v20250101preview/sentinel_onboarding_state.py +229 -0
  1833. pulumi_azure_native/securityinsights/v20250101preview/system.py +311 -0
  1834. pulumi_azure_native/securityinsights/v20250101preview/threat_intelligence_alert_rule.py +364 -0
  1835. pulumi_azure_native/securityinsights/v20250101preview/threat_intelligence_indicator.py +793 -0
  1836. pulumi_azure_native/securityinsights/v20250101preview/ti_data_connector.py +325 -0
  1837. pulumi_azure_native/securityinsights/v20250101preview/ti_taxii_data_connector.py +529 -0
  1838. pulumi_azure_native/securityinsights/v20250101preview/ueba.py +264 -0
  1839. pulumi_azure_native/securityinsights/v20250101preview/watchlist.py +804 -0
  1840. pulumi_azure_native/securityinsights/v20250101preview/watchlist_item.py +493 -0
  1841. pulumi_azure_native/securityinsights/v20250101preview/workspace_manager_assignment.py +281 -0
  1842. pulumi_azure_native/securityinsights/v20250101preview/workspace_manager_configuration.py +231 -0
  1843. pulumi_azure_native/securityinsights/v20250101preview/workspace_manager_group.py +289 -0
  1844. pulumi_azure_native/securityinsights/v20250101preview/workspace_manager_member.py +260 -0
  1845. pulumi_azure_native/securityinsights/watchlist.py +3 -3
  1846. pulumi_azure_native/securityinsights/watchlist_item.py +3 -3
  1847. pulumi_azure_native/securityinsights/workspace_manager_assignment.py +3 -3
  1848. pulumi_azure_native/securityinsights/workspace_manager_configuration.py +3 -3
  1849. pulumi_azure_native/securityinsights/workspace_manager_group.py +3 -3
  1850. pulumi_azure_native/securityinsights/workspace_manager_member.py +3 -3
  1851. pulumi_azure_native/servicefabric/__init__.py +7 -0
  1852. pulumi_azure_native/servicefabric/get_managed_cluster.py +2 -2
  1853. pulumi_azure_native/servicefabric/get_managed_cluster_application.py +2 -2
  1854. pulumi_azure_native/servicefabric/get_managed_cluster_application_type.py +2 -2
  1855. pulumi_azure_native/servicefabric/get_managed_cluster_application_type_version.py +2 -2
  1856. pulumi_azure_native/servicefabric/get_managed_cluster_fault_simulation.py +151 -0
  1857. pulumi_azure_native/servicefabric/get_managed_cluster_service.py +2 -2
  1858. pulumi_azure_native/servicefabric/get_node_type.py +2 -2
  1859. pulumi_azure_native/servicefabric/get_node_type_fault_simulation.py +157 -0
  1860. pulumi_azure_native/servicefabric/getmanaged_az_resiliency_status.py +2 -2
  1861. pulumi_azure_native/servicefabric/getmanaged_maintenance_window_status.py +2 -2
  1862. pulumi_azure_native/servicefabric/list_managed_cluster_fault_simulation.py +103 -0
  1863. pulumi_azure_native/servicefabric/list_node_type_fault_simulation.py +109 -0
  1864. pulumi_azure_native/servicefabric/managed_cluster.py +3 -3
  1865. pulumi_azure_native/servicefabric/managed_cluster_application.py +3 -3
  1866. pulumi_azure_native/servicefabric/managed_cluster_application_type.py +3 -3
  1867. pulumi_azure_native/servicefabric/managed_cluster_application_type_version.py +3 -3
  1868. pulumi_azure_native/servicefabric/managed_cluster_service.py +3 -3
  1869. pulumi_azure_native/servicefabric/node_type.py +3 -3
  1870. pulumi_azure_native/servicefabric/outputs.py +277 -0
  1871. pulumi_azure_native/servicefabric/v20200101preview/managed_cluster.py +1 -1
  1872. pulumi_azure_native/servicefabric/v20220101/managed_cluster.py +1 -1
  1873. pulumi_azure_native/servicefabric/v20221001preview/managed_cluster.py +1 -1
  1874. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster.py +1 -1
  1875. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_application.py +1 -1
  1876. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_application_type.py +1 -1
  1877. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_application_type_version.py +1 -1
  1878. pulumi_azure_native/servicefabric/v20230301preview/managed_cluster_service.py +1 -1
  1879. pulumi_azure_native/servicefabric/v20230301preview/node_type.py +1 -1
  1880. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster.py +1 -1
  1881. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_application.py +1 -1
  1882. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_application_type.py +1 -1
  1883. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_application_type_version.py +1 -1
  1884. pulumi_azure_native/servicefabric/v20230701preview/managed_cluster_service.py +1 -1
  1885. pulumi_azure_native/servicefabric/v20230701preview/node_type.py +1 -1
  1886. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster.py +1 -1
  1887. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_application.py +1 -1
  1888. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_application_type.py +1 -1
  1889. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_application_type_version.py +1 -1
  1890. pulumi_azure_native/servicefabric/v20230901preview/managed_cluster_service.py +1 -1
  1891. pulumi_azure_native/servicefabric/v20230901preview/node_type.py +1 -1
  1892. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster.py +1 -1
  1893. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_application.py +1 -1
  1894. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_application_type.py +1 -1
  1895. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_application_type_version.py +1 -1
  1896. pulumi_azure_native/servicefabric/v20231101preview/managed_cluster_service.py +1 -1
  1897. pulumi_azure_native/servicefabric/v20231101preview/node_type.py +1 -1
  1898. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster.py +1 -1
  1899. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_application.py +1 -1
  1900. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_application_type.py +1 -1
  1901. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_application_type_version.py +1 -1
  1902. pulumi_azure_native/servicefabric/v20231201preview/managed_cluster_service.py +1 -1
  1903. pulumi_azure_native/servicefabric/v20231201preview/node_type.py +1 -1
  1904. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster.py +1 -1
  1905. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_application.py +1 -1
  1906. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_application_type.py +1 -1
  1907. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_application_type_version.py +1 -1
  1908. pulumi_azure_native/servicefabric/v20240201preview/managed_cluster_service.py +1 -1
  1909. pulumi_azure_native/servicefabric/v20240201preview/node_type.py +1 -1
  1910. pulumi_azure_native/servicefabric/v20240401/managed_cluster.py +1 -1
  1911. pulumi_azure_native/servicefabric/v20240401/managed_cluster_application.py +1 -1
  1912. pulumi_azure_native/servicefabric/v20240401/managed_cluster_application_type.py +1 -1
  1913. pulumi_azure_native/servicefabric/v20240401/managed_cluster_application_type_version.py +1 -1
  1914. pulumi_azure_native/servicefabric/v20240401/managed_cluster_service.py +1 -1
  1915. pulumi_azure_native/servicefabric/v20240401/node_type.py +1 -1
  1916. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster.py +1 -1
  1917. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_application.py +1 -1
  1918. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_application_type.py +1 -1
  1919. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_application_type_version.py +1 -1
  1920. pulumi_azure_native/servicefabric/v20240601preview/managed_cluster_service.py +1 -1
  1921. pulumi_azure_native/servicefabric/v20240601preview/node_type.py +1 -1
  1922. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster.py +1 -1
  1923. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_application.py +1 -1
  1924. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_application_type.py +1 -1
  1925. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_application_type_version.py +1 -1
  1926. pulumi_azure_native/servicefabric/v20240901preview/managed_cluster_service.py +1 -1
  1927. pulumi_azure_native/servicefabric/v20240901preview/node_type.py +1 -1
  1928. pulumi_azure_native/servicefabric/v20241101preview/__init__.py +28 -0
  1929. pulumi_azure_native/servicefabric/v20241101preview/_enums.py +523 -0
  1930. pulumi_azure_native/servicefabric/v20241101preview/_inputs.py +5399 -0
  1931. pulumi_azure_native/servicefabric/v20241101preview/get_managed_cluster.py +759 -0
  1932. pulumi_azure_native/servicefabric/v20241101preview/get_managed_cluster_application.py +248 -0
  1933. pulumi_azure_native/servicefabric/v20241101preview/get_managed_cluster_application_type.py +177 -0
  1934. pulumi_azure_native/servicefabric/v20241101preview/get_managed_cluster_application_type_version.py +197 -0
  1935. pulumi_azure_native/servicefabric/v20241101preview/get_managed_cluster_fault_simulation.py +149 -0
  1936. pulumi_azure_native/servicefabric/v20241101preview/get_managed_cluster_service.py +183 -0
  1937. pulumi_azure_native/servicefabric/v20241101preview/get_node_type.py +863 -0
  1938. pulumi_azure_native/servicefabric/v20241101preview/get_node_type_fault_simulation.py +155 -0
  1939. pulumi_azure_native/servicefabric/v20241101preview/getmanaged_az_resiliency_status.py +101 -0
  1940. pulumi_azure_native/servicefabric/v20241101preview/getmanaged_maintenance_window_status.py +170 -0
  1941. pulumi_azure_native/servicefabric/v20241101preview/list_managed_cluster_fault_simulation.py +101 -0
  1942. pulumi_azure_native/servicefabric/v20241101preview/list_node_type_fault_simulation.py +107 -0
  1943. pulumi_azure_native/servicefabric/v20241101preview/managed_cluster.py +1339 -0
  1944. pulumi_azure_native/servicefabric/v20241101preview/managed_cluster_application.py +409 -0
  1945. pulumi_azure_native/servicefabric/v20241101preview/managed_cluster_application_type.py +258 -0
  1946. pulumi_azure_native/servicefabric/v20241101preview/managed_cluster_application_type_version.py +309 -0
  1947. pulumi_azure_native/servicefabric/v20241101preview/managed_cluster_service.py +300 -0
  1948. pulumi_azure_native/servicefabric/v20241101preview/node_type.py +1695 -0
  1949. pulumi_azure_native/servicefabric/v20241101preview/outputs.py +4868 -0
  1950. pulumi_azure_native/sovereign/__init__.py +24 -0
  1951. pulumi_azure_native/sovereign/_enums.py +119 -0
  1952. pulumi_azure_native/sovereign/_inputs.py +1208 -0
  1953. pulumi_azure_native/sovereign/get_landing_zone_account_operation.py +187 -0
  1954. pulumi_azure_native/sovereign/get_landing_zone_configuration_operation.py +151 -0
  1955. pulumi_azure_native/sovereign/get_landing_zone_registration_operation.py +151 -0
  1956. pulumi_azure_native/sovereign/landing_zone_account_operation.py +289 -0
  1957. pulumi_azure_native/sovereign/landing_zone_configuration_operation.py +223 -0
  1958. pulumi_azure_native/sovereign/landing_zone_registration_operation.py +223 -0
  1959. pulumi_azure_native/sovereign/outputs.py +1237 -0
  1960. pulumi_azure_native/sovereign/v20250227preview/__init__.py +16 -0
  1961. pulumi_azure_native/sovereign/v20250227preview/_enums.py +119 -0
  1962. pulumi_azure_native/sovereign/v20250227preview/_inputs.py +1208 -0
  1963. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_account_operation.py +185 -0
  1964. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_configuration_operation.py +149 -0
  1965. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_registration_operation.py +149 -0
  1966. pulumi_azure_native/sovereign/v20250227preview/landing_zone_account_operation.py +287 -0
  1967. pulumi_azure_native/sovereign/v20250227preview/landing_zone_configuration_operation.py +221 -0
  1968. pulumi_azure_native/sovereign/v20250227preview/landing_zone_registration_operation.py +221 -0
  1969. pulumi_azure_native/sovereign/v20250227preview/outputs.py +1237 -0
  1970. pulumi_azure_native/storage/__init__.py +3 -0
  1971. pulumi_azure_native/storage/blob_container.py +3 -3
  1972. pulumi_azure_native/storage/blob_container_immutability_policy.py +3 -3
  1973. pulumi_azure_native/storage/blob_inventory_policy.py +3 -3
  1974. pulumi_azure_native/storage/blob_service_properties.py +3 -3
  1975. pulumi_azure_native/storage/encryption_scope.py +3 -3
  1976. pulumi_azure_native/storage/file_service_properties.py +3 -3
  1977. pulumi_azure_native/storage/file_share.py +3 -3
  1978. pulumi_azure_native/storage/get_blob_container.py +2 -2
  1979. pulumi_azure_native/storage/get_blob_container_immutability_policy.py +2 -2
  1980. pulumi_azure_native/storage/get_blob_inventory_policy.py +2 -2
  1981. pulumi_azure_native/storage/get_blob_service_properties.py +2 -2
  1982. pulumi_azure_native/storage/get_encryption_scope.py +2 -2
  1983. pulumi_azure_native/storage/get_file_service_properties.py +2 -2
  1984. pulumi_azure_native/storage/get_file_share.py +2 -2
  1985. pulumi_azure_native/storage/get_local_user.py +2 -2
  1986. pulumi_azure_native/storage/get_management_policy.py +2 -2
  1987. pulumi_azure_native/storage/get_object_replication_policy.py +2 -2
  1988. pulumi_azure_native/storage/get_private_endpoint_connection.py +2 -2
  1989. pulumi_azure_native/storage/get_queue.py +2 -2
  1990. pulumi_azure_native/storage/get_queue_service_properties.py +2 -2
  1991. pulumi_azure_native/storage/get_storage_account.py +2 -2
  1992. pulumi_azure_native/storage/get_storage_task_assignment.py +4 -0
  1993. pulumi_azure_native/storage/get_table.py +2 -2
  1994. pulumi_azure_native/storage/get_table_service_properties.py +2 -2
  1995. pulumi_azure_native/storage/list_local_user_keys.py +2 -2
  1996. pulumi_azure_native/storage/list_storage_account_keys.py +2 -2
  1997. pulumi_azure_native/storage/list_storage_account_sas.py +2 -2
  1998. pulumi_azure_native/storage/list_storage_account_service_sas.py +2 -2
  1999. pulumi_azure_native/storage/local_user.py +3 -3
  2000. pulumi_azure_native/storage/management_policy.py +3 -3
  2001. pulumi_azure_native/storage/object_replication_policy.py +3 -3
  2002. pulumi_azure_native/storage/private_endpoint_connection.py +3 -3
  2003. pulumi_azure_native/storage/queue.py +3 -3
  2004. pulumi_azure_native/storage/queue_service_properties.py +3 -3
  2005. pulumi_azure_native/storage/storage_account.py +3 -3
  2006. pulumi_azure_native/storage/storage_task_assignment.py +5 -1
  2007. pulumi_azure_native/storage/table.py +3 -3
  2008. pulumi_azure_native/storage/table_service_properties.py +3 -3
  2009. pulumi_azure_native/storage/v20220901/blob_container.py +1 -1
  2010. pulumi_azure_native/storage/v20220901/blob_container_immutability_policy.py +1 -1
  2011. pulumi_azure_native/storage/v20220901/blob_inventory_policy.py +1 -1
  2012. pulumi_azure_native/storage/v20220901/blob_service_properties.py +1 -1
  2013. pulumi_azure_native/storage/v20220901/encryption_scope.py +1 -1
  2014. pulumi_azure_native/storage/v20220901/file_service_properties.py +1 -1
  2015. pulumi_azure_native/storage/v20220901/file_share.py +1 -1
  2016. pulumi_azure_native/storage/v20220901/local_user.py +1 -1
  2017. pulumi_azure_native/storage/v20220901/management_policy.py +1 -1
  2018. pulumi_azure_native/storage/v20220901/object_replication_policy.py +1 -1
  2019. pulumi_azure_native/storage/v20220901/private_endpoint_connection.py +1 -1
  2020. pulumi_azure_native/storage/v20220901/queue.py +1 -1
  2021. pulumi_azure_native/storage/v20220901/queue_service_properties.py +1 -1
  2022. pulumi_azure_native/storage/v20220901/storage_account.py +1 -1
  2023. pulumi_azure_native/storage/v20220901/table.py +1 -1
  2024. pulumi_azure_native/storage/v20220901/table_service_properties.py +1 -1
  2025. pulumi_azure_native/storage/v20230101/blob_container.py +1 -1
  2026. pulumi_azure_native/storage/v20230101/blob_container_immutability_policy.py +1 -1
  2027. pulumi_azure_native/storage/v20230101/blob_inventory_policy.py +1 -1
  2028. pulumi_azure_native/storage/v20230101/blob_service_properties.py +1 -1
  2029. pulumi_azure_native/storage/v20230101/encryption_scope.py +1 -1
  2030. pulumi_azure_native/storage/v20230101/file_service_properties.py +1 -1
  2031. pulumi_azure_native/storage/v20230101/file_share.py +1 -1
  2032. pulumi_azure_native/storage/v20230101/local_user.py +1 -1
  2033. pulumi_azure_native/storage/v20230101/management_policy.py +1 -1
  2034. pulumi_azure_native/storage/v20230101/object_replication_policy.py +1 -1
  2035. pulumi_azure_native/storage/v20230101/private_endpoint_connection.py +1 -1
  2036. pulumi_azure_native/storage/v20230101/queue.py +1 -1
  2037. pulumi_azure_native/storage/v20230101/queue_service_properties.py +1 -1
  2038. pulumi_azure_native/storage/v20230101/storage_account.py +1 -1
  2039. pulumi_azure_native/storage/v20230101/table.py +1 -1
  2040. pulumi_azure_native/storage/v20230101/table_service_properties.py +1 -1
  2041. pulumi_azure_native/storage/v20230401/blob_container.py +1 -1
  2042. pulumi_azure_native/storage/v20230401/blob_container_immutability_policy.py +1 -1
  2043. pulumi_azure_native/storage/v20230401/blob_inventory_policy.py +1 -1
  2044. pulumi_azure_native/storage/v20230401/blob_service_properties.py +1 -1
  2045. pulumi_azure_native/storage/v20230401/encryption_scope.py +1 -1
  2046. pulumi_azure_native/storage/v20230401/file_service_properties.py +1 -1
  2047. pulumi_azure_native/storage/v20230401/file_share.py +1 -1
  2048. pulumi_azure_native/storage/v20230401/local_user.py +1 -1
  2049. pulumi_azure_native/storage/v20230401/management_policy.py +1 -1
  2050. pulumi_azure_native/storage/v20230401/object_replication_policy.py +1 -1
  2051. pulumi_azure_native/storage/v20230401/private_endpoint_connection.py +1 -1
  2052. pulumi_azure_native/storage/v20230401/queue.py +1 -1
  2053. pulumi_azure_native/storage/v20230401/queue_service_properties.py +1 -1
  2054. pulumi_azure_native/storage/v20230401/storage_account.py +1 -1
  2055. pulumi_azure_native/storage/v20230401/table.py +1 -1
  2056. pulumi_azure_native/storage/v20230401/table_service_properties.py +1 -1
  2057. pulumi_azure_native/storage/v20230501/blob_container.py +1 -1
  2058. pulumi_azure_native/storage/v20230501/blob_container_immutability_policy.py +1 -1
  2059. pulumi_azure_native/storage/v20230501/blob_inventory_policy.py +1 -1
  2060. pulumi_azure_native/storage/v20230501/blob_service_properties.py +1 -1
  2061. pulumi_azure_native/storage/v20230501/encryption_scope.py +1 -1
  2062. pulumi_azure_native/storage/v20230501/file_service_properties.py +1 -1
  2063. pulumi_azure_native/storage/v20230501/file_share.py +1 -1
  2064. pulumi_azure_native/storage/v20230501/local_user.py +1 -1
  2065. pulumi_azure_native/storage/v20230501/management_policy.py +1 -1
  2066. pulumi_azure_native/storage/v20230501/object_replication_policy.py +1 -1
  2067. pulumi_azure_native/storage/v20230501/private_endpoint_connection.py +1 -1
  2068. pulumi_azure_native/storage/v20230501/queue.py +1 -1
  2069. pulumi_azure_native/storage/v20230501/queue_service_properties.py +1 -1
  2070. pulumi_azure_native/storage/v20230501/storage_account.py +1 -1
  2071. pulumi_azure_native/storage/v20230501/storage_task_assignment.py +1 -1
  2072. pulumi_azure_native/storage/v20230501/table.py +1 -1
  2073. pulumi_azure_native/storage/v20230501/table_service_properties.py +1 -1
  2074. pulumi_azure_native/storage/v20240101/__init__.py +48 -0
  2075. pulumi_azure_native/storage/v20240101/_enums.py +442 -0
  2076. pulumi_azure_native/storage/v20240101/_inputs.py +4834 -0
  2077. pulumi_azure_native/storage/v20240101/blob_container.py +515 -0
  2078. pulumi_azure_native/storage/v20240101/blob_container_immutability_policy.py +307 -0
  2079. pulumi_azure_native/storage/v20240101/blob_inventory_policy.py +232 -0
  2080. pulumi_azure_native/storage/v20240101/blob_service_properties.py +453 -0
  2081. pulumi_azure_native/storage/v20240101/encryption_scope.py +318 -0
  2082. pulumi_azure_native/storage/v20240101/file_service_properties.py +279 -0
  2083. pulumi_azure_native/storage/v20240101/file_share.py +643 -0
  2084. pulumi_azure_native/storage/v20240101/get_blob_container.py +401 -0
  2085. pulumi_azure_native/storage/v20240101/get_blob_container_immutability_policy.py +196 -0
  2086. pulumi_azure_native/storage/v20240101/get_blob_inventory_policy.py +163 -0
  2087. pulumi_azure_native/storage/v20240101/get_blob_service_properties.py +261 -0
  2088. pulumi_azure_native/storage/v20240101/get_encryption_scope.py +205 -0
  2089. pulumi_azure_native/storage/v20240101/get_file_service_properties.py +177 -0
  2090. pulumi_azure_native/storage/v20240101/get_file_share.py +505 -0
  2091. pulumi_azure_native/storage/v20240101/get_local_user.py +303 -0
  2092. pulumi_azure_native/storage/v20240101/get_management_policy.py +149 -0
  2093. pulumi_azure_native/storage/v20240101/get_object_replication_policy.py +205 -0
  2094. pulumi_azure_native/storage/v20240101/get_private_endpoint_connection.py +163 -0
  2095. pulumi_azure_native/storage/v20240101/get_queue.py +145 -0
  2096. pulumi_azure_native/storage/v20240101/get_queue_service_properties.py +135 -0
  2097. pulumi_azure_native/storage/v20240101/get_storage_account.py +779 -0
  2098. pulumi_azure_native/storage/v20240101/get_storage_task_assignment.py +135 -0
  2099. pulumi_azure_native/storage/v20240101/get_table.py +149 -0
  2100. pulumi_azure_native/storage/v20240101/get_table_service_properties.py +135 -0
  2101. pulumi_azure_native/storage/v20240101/list_local_user_keys.py +107 -0
  2102. pulumi_azure_native/storage/v20240101/list_storage_account_keys.py +93 -0
  2103. pulumi_azure_native/storage/v20240101/list_storage_account_sas.py +135 -0
  2104. pulumi_azure_native/storage/v20240101/list_storage_account_service_sas.py +195 -0
  2105. pulumi_azure_native/storage/v20240101/local_user.py +501 -0
  2106. pulumi_azure_native/storage/v20240101/management_policy.py +222 -0
  2107. pulumi_azure_native/storage/v20240101/object_replication_policy.py +319 -0
  2108. pulumi_azure_native/storage/v20240101/outputs.py +5740 -0
  2109. pulumi_azure_native/storage/v20240101/private_endpoint_connection.py +232 -0
  2110. pulumi_azure_native/storage/v20240101/queue.py +216 -0
  2111. pulumi_azure_native/storage/v20240101/queue_service_properties.py +211 -0
  2112. pulumi_azure_native/storage/v20240101/storage_account.py +1203 -0
  2113. pulumi_azure_native/storage/v20240101/storage_task_assignment.py +212 -0
  2114. pulumi_azure_native/storage/v20240101/table.py +219 -0
  2115. pulumi_azure_native/storage/v20240101/table_service_properties.py +211 -0
  2116. pulumi_azure_native/storagecache/__init__.py +3 -0
  2117. pulumi_azure_native/storagecache/aml_filesystem.py +1 -1
  2118. pulumi_azure_native/storagecache/cache.py +3 -3
  2119. pulumi_azure_native/storagecache/get_cache.py +2 -2
  2120. pulumi_azure_native/storagecache/get_required_aml_fs_subnets_size.py +2 -2
  2121. pulumi_azure_native/storagecache/get_storage_target.py +2 -2
  2122. pulumi_azure_native/storagecache/import_job.py +1 -1
  2123. pulumi_azure_native/storagecache/storage_target.py +3 -3
  2124. pulumi_azure_native/storagecache/v20210301/cache.py +1 -1
  2125. pulumi_azure_native/storagecache/v20210301/storage_target.py +1 -1
  2126. pulumi_azure_native/storagecache/v20230301preview/aml_filesystem.py +1 -1
  2127. pulumi_azure_native/storagecache/v20230301preview/cache.py +1 -1
  2128. pulumi_azure_native/storagecache/v20230501/aml_filesystem.py +1 -1
  2129. pulumi_azure_native/storagecache/v20230501/cache.py +1 -1
  2130. pulumi_azure_native/storagecache/v20230501/storage_target.py +1 -1
  2131. pulumi_azure_native/storagecache/v20231101preview/aml_filesystem.py +1 -1
  2132. pulumi_azure_native/storagecache/v20231101preview/cache.py +1 -1
  2133. pulumi_azure_native/storagecache/v20231101preview/storage_target.py +1 -1
  2134. pulumi_azure_native/storagecache/v20240301/aml_filesystem.py +1 -1
  2135. pulumi_azure_native/storagecache/v20240301/cache.py +1 -1
  2136. pulumi_azure_native/storagecache/v20240301/import_job.py +1 -1
  2137. pulumi_azure_native/storagecache/v20240301/storage_target.py +1 -1
  2138. pulumi_azure_native/storagecache/v20240701/__init__.py +21 -0
  2139. pulumi_azure_native/storagecache/v20240701/_enums.py +146 -0
  2140. pulumi_azure_native/storagecache/v20240701/_inputs.py +2089 -0
  2141. pulumi_azure_native/storagecache/v20240701/aml_filesystem.py +533 -0
  2142. pulumi_azure_native/storagecache/v20240701/auto_export_job.py +490 -0
  2143. pulumi_azure_native/storagecache/v20240701/cache.py +579 -0
  2144. pulumi_azure_native/storagecache/v20240701/get_aml_filesystem.py +339 -0
  2145. pulumi_azure_native/storagecache/v20240701/get_auto_export_job.py +415 -0
  2146. pulumi_azure_native/storagecache/v20240701/get_cache.py +381 -0
  2147. pulumi_azure_native/storagecache/v20240701/get_import_job.py +457 -0
  2148. pulumi_azure_native/storagecache/v20240701/get_required_aml_fs_subnets_size.py +87 -0
  2149. pulumi_azure_native/storagecache/v20240701/get_storage_target.py +275 -0
  2150. pulumi_azure_native/storagecache/v20240701/import_job.py +547 -0
  2151. pulumi_azure_native/storagecache/v20240701/outputs.py +2735 -0
  2152. pulumi_azure_native/storagecache/v20240701/storage_target.py +426 -0
  2153. {pulumi_azure_native-2.86.0a1738343576.dist-info → pulumi_azure_native-2.87.0.dist-info}/METADATA +1 -1
  2154. {pulumi_azure_native-2.86.0a1738343576.dist-info → pulumi_azure_native-2.87.0.dist-info}/RECORD +2156 -1743
  2155. pulumi_azure_native/networkanalytics/__init__.py +0 -23
  2156. pulumi_azure_native/networkanalytics/_enums.py +0 -64
  2157. pulumi_azure_native/networkanalytics/_inputs.py +0 -438
  2158. pulumi_azure_native/networkanalytics/data_product.py +0 -720
  2159. pulumi_azure_native/networkanalytics/data_type.py +0 -339
  2160. pulumi_azure_native/networkanalytics/get_data_product.py +0 -439
  2161. pulumi_azure_native/networkanalytics/get_data_type.py +0 -235
  2162. pulumi_azure_native/networkanalytics/list_data_product_roles_assignments.py +0 -103
  2163. pulumi_azure_native/networkanalytics/outputs.py +0 -684
  2164. pulumi_azure_native/networkanalytics/v20231115/_enums.py +0 -64
  2165. pulumi_azure_native/networkanalytics/v20231115/_inputs.py +0 -438
  2166. pulumi_azure_native/networkanalytics/v20231115/data_product.py +0 -718
  2167. pulumi_azure_native/networkanalytics/v20231115/data_type.py +0 -337
  2168. pulumi_azure_native/networkanalytics/v20231115/get_data_product.py +0 -437
  2169. pulumi_azure_native/networkanalytics/v20231115/get_data_type.py +0 -233
  2170. pulumi_azure_native/networkanalytics/v20231115/list_data_product_roles_assignments.py +0 -101
  2171. pulumi_azure_native/networkanalytics/v20231115/outputs.py +0 -684
  2172. {pulumi_azure_native-2.86.0a1738343576.dist-info → pulumi_azure_native-2.87.0.dist-info}/WHEEL +0 -0
  2173. {pulumi_azure_native-2.86.0a1738343576.dist-info → pulumi_azure_native-2.87.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3913 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+
19
+ __all__ = [
20
+ 'AbsoluteDeleteOptionResponse',
21
+ 'AdhocBasedTaggingCriteriaResponse',
22
+ 'AdhocBasedTriggerContextResponse',
23
+ 'AzureBackupParamsResponse',
24
+ 'AzureBackupRuleResponse',
25
+ 'AzureMonitorAlertSettingsResponse',
26
+ 'AzureOperationalStoreParametersResponse',
27
+ 'AzureRetentionRuleResponse',
28
+ 'BackupInstanceResponse',
29
+ 'BackupPolicyResponse',
30
+ 'BackupScheduleResponse',
31
+ 'BackupVaultResponse',
32
+ 'BlobBackupDatasourceParametersResponse',
33
+ 'CmkKekIdentityResponse',
34
+ 'CmkKeyVaultPropertiesResponse',
35
+ 'CopyOnExpiryOptionResponse',
36
+ 'CrossRegionRestoreSettingsResponse',
37
+ 'CrossSubscriptionRestoreSettingsResponse',
38
+ 'CustomCopyOptionResponse',
39
+ 'DataStoreInfoBaseResponse',
40
+ 'DatasourceResponse',
41
+ 'DatasourceSetResponse',
42
+ 'DayResponse',
43
+ 'DefaultResourcePropertiesResponse',
44
+ 'DppIdentityDetailsResponse',
45
+ 'EncryptionSettingsResponse',
46
+ 'FeatureSettingsResponse',
47
+ 'IdentityDetailsResponse',
48
+ 'ImmediateCopyOptionResponse',
49
+ 'ImmutabilitySettingsResponse',
50
+ 'InnerErrorResponse',
51
+ 'KubernetesClusterBackupDatasourceParametersResponse',
52
+ 'MonitoringSettingsResponse',
53
+ 'NamespacedNameResourceResponse',
54
+ 'PolicyInfoResponse',
55
+ 'PolicyParametersResponse',
56
+ 'ProtectionStatusDetailsResponse',
57
+ 'ResourceGuardOperationDetailResponse',
58
+ 'ResourceGuardOperationResponse',
59
+ 'ResourceGuardProxyBaseResponse',
60
+ 'ResourceGuardResponse',
61
+ 'ResourceMoveDetailsResponse',
62
+ 'RetentionTagResponse',
63
+ 'ScheduleBasedBackupCriteriaResponse',
64
+ 'ScheduleBasedTriggerContextResponse',
65
+ 'SecretStoreBasedAuthCredentialsResponse',
66
+ 'SecretStoreResourceResponse',
67
+ 'SecuritySettingsResponse',
68
+ 'SoftDeleteSettingsResponse',
69
+ 'SourceLifeCycleResponse',
70
+ 'StorageSettingResponse',
71
+ 'SystemDataResponse',
72
+ 'TaggingCriteriaResponse',
73
+ 'TargetCopySettingResponse',
74
+ 'UserAssignedIdentityResponse',
75
+ 'UserFacingErrorResponse',
76
+ ]
77
+
78
+ @pulumi.output_type
79
+ class AbsoluteDeleteOptionResponse(dict):
80
+ """
81
+ Delete option with duration
82
+ """
83
+ @staticmethod
84
+ def __key_warning(key: str):
85
+ suggest = None
86
+ if key == "objectType":
87
+ suggest = "object_type"
88
+
89
+ if suggest:
90
+ pulumi.log.warn(f"Key '{key}' not found in AbsoluteDeleteOptionResponse. Access the value via the '{suggest}' property getter instead.")
91
+
92
+ def __getitem__(self, key: str) -> Any:
93
+ AbsoluteDeleteOptionResponse.__key_warning(key)
94
+ return super().__getitem__(key)
95
+
96
+ def get(self, key: str, default = None) -> Any:
97
+ AbsoluteDeleteOptionResponse.__key_warning(key)
98
+ return super().get(key, default)
99
+
100
+ def __init__(__self__, *,
101
+ duration: str,
102
+ object_type: str):
103
+ """
104
+ Delete option with duration
105
+ :param str duration: Duration of deletion after given timespan
106
+ :param str object_type: Type of the specific object - used for deserializing
107
+ Expected value is 'AbsoluteDeleteOption'.
108
+ """
109
+ pulumi.set(__self__, "duration", duration)
110
+ pulumi.set(__self__, "object_type", 'AbsoluteDeleteOption')
111
+
112
+ @property
113
+ @pulumi.getter
114
+ def duration(self) -> str:
115
+ """
116
+ Duration of deletion after given timespan
117
+ """
118
+ return pulumi.get(self, "duration")
119
+
120
+ @property
121
+ @pulumi.getter(name="objectType")
122
+ def object_type(self) -> str:
123
+ """
124
+ Type of the specific object - used for deserializing
125
+ Expected value is 'AbsoluteDeleteOption'.
126
+ """
127
+ return pulumi.get(self, "object_type")
128
+
129
+
130
+ @pulumi.output_type
131
+ class AdhocBasedTaggingCriteriaResponse(dict):
132
+ """
133
+ Adhoc backup tagging criteria
134
+ """
135
+ @staticmethod
136
+ def __key_warning(key: str):
137
+ suggest = None
138
+ if key == "tagInfo":
139
+ suggest = "tag_info"
140
+
141
+ if suggest:
142
+ pulumi.log.warn(f"Key '{key}' not found in AdhocBasedTaggingCriteriaResponse. Access the value via the '{suggest}' property getter instead.")
143
+
144
+ def __getitem__(self, key: str) -> Any:
145
+ AdhocBasedTaggingCriteriaResponse.__key_warning(key)
146
+ return super().__getitem__(key)
147
+
148
+ def get(self, key: str, default = None) -> Any:
149
+ AdhocBasedTaggingCriteriaResponse.__key_warning(key)
150
+ return super().get(key, default)
151
+
152
+ def __init__(__self__, *,
153
+ tag_info: Optional['outputs.RetentionTagResponse'] = None):
154
+ """
155
+ Adhoc backup tagging criteria
156
+ :param 'RetentionTagResponse' tag_info: Retention tag information
157
+ """
158
+ if tag_info is not None:
159
+ pulumi.set(__self__, "tag_info", tag_info)
160
+
161
+ @property
162
+ @pulumi.getter(name="tagInfo")
163
+ def tag_info(self) -> Optional['outputs.RetentionTagResponse']:
164
+ """
165
+ Retention tag information
166
+ """
167
+ return pulumi.get(self, "tag_info")
168
+
169
+
170
+ @pulumi.output_type
171
+ class AdhocBasedTriggerContextResponse(dict):
172
+ """
173
+ Adhoc trigger context
174
+ """
175
+ @staticmethod
176
+ def __key_warning(key: str):
177
+ suggest = None
178
+ if key == "objectType":
179
+ suggest = "object_type"
180
+ elif key == "taggingCriteria":
181
+ suggest = "tagging_criteria"
182
+
183
+ if suggest:
184
+ pulumi.log.warn(f"Key '{key}' not found in AdhocBasedTriggerContextResponse. Access the value via the '{suggest}' property getter instead.")
185
+
186
+ def __getitem__(self, key: str) -> Any:
187
+ AdhocBasedTriggerContextResponse.__key_warning(key)
188
+ return super().__getitem__(key)
189
+
190
+ def get(self, key: str, default = None) -> Any:
191
+ AdhocBasedTriggerContextResponse.__key_warning(key)
192
+ return super().get(key, default)
193
+
194
+ def __init__(__self__, *,
195
+ object_type: str,
196
+ tagging_criteria: 'outputs.AdhocBasedTaggingCriteriaResponse'):
197
+ """
198
+ Adhoc trigger context
199
+ :param str object_type: Type of the specific object - used for deserializing
200
+ Expected value is 'AdhocBasedTriggerContext'.
201
+ :param 'AdhocBasedTaggingCriteriaResponse' tagging_criteria: Tagging Criteria containing retention tag for adhoc backup.
202
+ """
203
+ pulumi.set(__self__, "object_type", 'AdhocBasedTriggerContext')
204
+ pulumi.set(__self__, "tagging_criteria", tagging_criteria)
205
+
206
+ @property
207
+ @pulumi.getter(name="objectType")
208
+ def object_type(self) -> str:
209
+ """
210
+ Type of the specific object - used for deserializing
211
+ Expected value is 'AdhocBasedTriggerContext'.
212
+ """
213
+ return pulumi.get(self, "object_type")
214
+
215
+ @property
216
+ @pulumi.getter(name="taggingCriteria")
217
+ def tagging_criteria(self) -> 'outputs.AdhocBasedTaggingCriteriaResponse':
218
+ """
219
+ Tagging Criteria containing retention tag for adhoc backup.
220
+ """
221
+ return pulumi.get(self, "tagging_criteria")
222
+
223
+
224
+ @pulumi.output_type
225
+ class AzureBackupParamsResponse(dict):
226
+ """
227
+ Azure backup parameters
228
+ """
229
+ @staticmethod
230
+ def __key_warning(key: str):
231
+ suggest = None
232
+ if key == "backupType":
233
+ suggest = "backup_type"
234
+ elif key == "objectType":
235
+ suggest = "object_type"
236
+
237
+ if suggest:
238
+ pulumi.log.warn(f"Key '{key}' not found in AzureBackupParamsResponse. Access the value via the '{suggest}' property getter instead.")
239
+
240
+ def __getitem__(self, key: str) -> Any:
241
+ AzureBackupParamsResponse.__key_warning(key)
242
+ return super().__getitem__(key)
243
+
244
+ def get(self, key: str, default = None) -> Any:
245
+ AzureBackupParamsResponse.__key_warning(key)
246
+ return super().get(key, default)
247
+
248
+ def __init__(__self__, *,
249
+ backup_type: str,
250
+ object_type: str):
251
+ """
252
+ Azure backup parameters
253
+ :param str backup_type: BackupType ; Full/Incremental etc
254
+ :param str object_type: Type of the specific object - used for deserializing
255
+ Expected value is 'AzureBackupParams'.
256
+ """
257
+ pulumi.set(__self__, "backup_type", backup_type)
258
+ pulumi.set(__self__, "object_type", 'AzureBackupParams')
259
+
260
+ @property
261
+ @pulumi.getter(name="backupType")
262
+ def backup_type(self) -> str:
263
+ """
264
+ BackupType ; Full/Incremental etc
265
+ """
266
+ return pulumi.get(self, "backup_type")
267
+
268
+ @property
269
+ @pulumi.getter(name="objectType")
270
+ def object_type(self) -> str:
271
+ """
272
+ Type of the specific object - used for deserializing
273
+ Expected value is 'AzureBackupParams'.
274
+ """
275
+ return pulumi.get(self, "object_type")
276
+
277
+
278
+ @pulumi.output_type
279
+ class AzureBackupRuleResponse(dict):
280
+ """
281
+ Azure backup rule
282
+ """
283
+ @staticmethod
284
+ def __key_warning(key: str):
285
+ suggest = None
286
+ if key == "dataStore":
287
+ suggest = "data_store"
288
+ elif key == "objectType":
289
+ suggest = "object_type"
290
+ elif key == "backupParameters":
291
+ suggest = "backup_parameters"
292
+
293
+ if suggest:
294
+ pulumi.log.warn(f"Key '{key}' not found in AzureBackupRuleResponse. Access the value via the '{suggest}' property getter instead.")
295
+
296
+ def __getitem__(self, key: str) -> Any:
297
+ AzureBackupRuleResponse.__key_warning(key)
298
+ return super().__getitem__(key)
299
+
300
+ def get(self, key: str, default = None) -> Any:
301
+ AzureBackupRuleResponse.__key_warning(key)
302
+ return super().get(key, default)
303
+
304
+ def __init__(__self__, *,
305
+ data_store: 'outputs.DataStoreInfoBaseResponse',
306
+ name: str,
307
+ object_type: str,
308
+ trigger: Any,
309
+ backup_parameters: Optional['outputs.AzureBackupParamsResponse'] = None):
310
+ """
311
+ Azure backup rule
312
+ :param 'DataStoreInfoBaseResponse' data_store: DataStoreInfo base
313
+ :param str object_type:
314
+ Expected value is 'AzureBackupRule'.
315
+ :param Union['AdhocBasedTriggerContextResponse', 'ScheduleBasedTriggerContextResponse'] trigger: Trigger context
316
+ :param 'AzureBackupParamsResponse' backup_parameters: BackupParameters base
317
+ """
318
+ pulumi.set(__self__, "data_store", data_store)
319
+ pulumi.set(__self__, "name", name)
320
+ pulumi.set(__self__, "object_type", 'AzureBackupRule')
321
+ pulumi.set(__self__, "trigger", trigger)
322
+ if backup_parameters is not None:
323
+ pulumi.set(__self__, "backup_parameters", backup_parameters)
324
+
325
+ @property
326
+ @pulumi.getter(name="dataStore")
327
+ def data_store(self) -> 'outputs.DataStoreInfoBaseResponse':
328
+ """
329
+ DataStoreInfo base
330
+ """
331
+ return pulumi.get(self, "data_store")
332
+
333
+ @property
334
+ @pulumi.getter
335
+ def name(self) -> str:
336
+ return pulumi.get(self, "name")
337
+
338
+ @property
339
+ @pulumi.getter(name="objectType")
340
+ def object_type(self) -> str:
341
+ """
342
+
343
+ Expected value is 'AzureBackupRule'.
344
+ """
345
+ return pulumi.get(self, "object_type")
346
+
347
+ @property
348
+ @pulumi.getter
349
+ def trigger(self) -> Any:
350
+ """
351
+ Trigger context
352
+ """
353
+ return pulumi.get(self, "trigger")
354
+
355
+ @property
356
+ @pulumi.getter(name="backupParameters")
357
+ def backup_parameters(self) -> Optional['outputs.AzureBackupParamsResponse']:
358
+ """
359
+ BackupParameters base
360
+ """
361
+ return pulumi.get(self, "backup_parameters")
362
+
363
+
364
+ @pulumi.output_type
365
+ class AzureMonitorAlertSettingsResponse(dict):
366
+ """
367
+ Settings for Azure Monitor based alerts
368
+ """
369
+ @staticmethod
370
+ def __key_warning(key: str):
371
+ suggest = None
372
+ if key == "alertsForAllJobFailures":
373
+ suggest = "alerts_for_all_job_failures"
374
+
375
+ if suggest:
376
+ pulumi.log.warn(f"Key '{key}' not found in AzureMonitorAlertSettingsResponse. Access the value via the '{suggest}' property getter instead.")
377
+
378
+ def __getitem__(self, key: str) -> Any:
379
+ AzureMonitorAlertSettingsResponse.__key_warning(key)
380
+ return super().__getitem__(key)
381
+
382
+ def get(self, key: str, default = None) -> Any:
383
+ AzureMonitorAlertSettingsResponse.__key_warning(key)
384
+ return super().get(key, default)
385
+
386
+ def __init__(__self__, *,
387
+ alerts_for_all_job_failures: Optional[str] = None):
388
+ """
389
+ Settings for Azure Monitor based alerts
390
+ """
391
+ if alerts_for_all_job_failures is not None:
392
+ pulumi.set(__self__, "alerts_for_all_job_failures", alerts_for_all_job_failures)
393
+
394
+ @property
395
+ @pulumi.getter(name="alertsForAllJobFailures")
396
+ def alerts_for_all_job_failures(self) -> Optional[str]:
397
+ return pulumi.get(self, "alerts_for_all_job_failures")
398
+
399
+
400
+ @pulumi.output_type
401
+ class AzureOperationalStoreParametersResponse(dict):
402
+ """
403
+ Parameters for Operational-Tier DataStore
404
+ """
405
+ @staticmethod
406
+ def __key_warning(key: str):
407
+ suggest = None
408
+ if key == "dataStoreType":
409
+ suggest = "data_store_type"
410
+ elif key == "objectType":
411
+ suggest = "object_type"
412
+ elif key == "resourceGroupId":
413
+ suggest = "resource_group_id"
414
+
415
+ if suggest:
416
+ pulumi.log.warn(f"Key '{key}' not found in AzureOperationalStoreParametersResponse. Access the value via the '{suggest}' property getter instead.")
417
+
418
+ def __getitem__(self, key: str) -> Any:
419
+ AzureOperationalStoreParametersResponse.__key_warning(key)
420
+ return super().__getitem__(key)
421
+
422
+ def get(self, key: str, default = None) -> Any:
423
+ AzureOperationalStoreParametersResponse.__key_warning(key)
424
+ return super().get(key, default)
425
+
426
+ def __init__(__self__, *,
427
+ data_store_type: str,
428
+ object_type: str,
429
+ resource_group_id: Optional[str] = None):
430
+ """
431
+ Parameters for Operational-Tier DataStore
432
+ :param str data_store_type: type of datastore; Operational/Vault/Archive
433
+ :param str object_type: Type of the specific object - used for deserializing
434
+ Expected value is 'AzureOperationalStoreParameters'.
435
+ :param str resource_group_id: Gets or sets the Snapshot Resource Group Uri.
436
+ """
437
+ pulumi.set(__self__, "data_store_type", data_store_type)
438
+ pulumi.set(__self__, "object_type", 'AzureOperationalStoreParameters')
439
+ if resource_group_id is not None:
440
+ pulumi.set(__self__, "resource_group_id", resource_group_id)
441
+
442
+ @property
443
+ @pulumi.getter(name="dataStoreType")
444
+ def data_store_type(self) -> str:
445
+ """
446
+ type of datastore; Operational/Vault/Archive
447
+ """
448
+ return pulumi.get(self, "data_store_type")
449
+
450
+ @property
451
+ @pulumi.getter(name="objectType")
452
+ def object_type(self) -> str:
453
+ """
454
+ Type of the specific object - used for deserializing
455
+ Expected value is 'AzureOperationalStoreParameters'.
456
+ """
457
+ return pulumi.get(self, "object_type")
458
+
459
+ @property
460
+ @pulumi.getter(name="resourceGroupId")
461
+ def resource_group_id(self) -> Optional[str]:
462
+ """
463
+ Gets or sets the Snapshot Resource Group Uri.
464
+ """
465
+ return pulumi.get(self, "resource_group_id")
466
+
467
+
468
+ @pulumi.output_type
469
+ class AzureRetentionRuleResponse(dict):
470
+ """
471
+ Azure retention rule
472
+ """
473
+ @staticmethod
474
+ def __key_warning(key: str):
475
+ suggest = None
476
+ if key == "objectType":
477
+ suggest = "object_type"
478
+ elif key == "isDefault":
479
+ suggest = "is_default"
480
+
481
+ if suggest:
482
+ pulumi.log.warn(f"Key '{key}' not found in AzureRetentionRuleResponse. Access the value via the '{suggest}' property getter instead.")
483
+
484
+ def __getitem__(self, key: str) -> Any:
485
+ AzureRetentionRuleResponse.__key_warning(key)
486
+ return super().__getitem__(key)
487
+
488
+ def get(self, key: str, default = None) -> Any:
489
+ AzureRetentionRuleResponse.__key_warning(key)
490
+ return super().get(key, default)
491
+
492
+ def __init__(__self__, *,
493
+ lifecycles: Sequence['outputs.SourceLifeCycleResponse'],
494
+ name: str,
495
+ object_type: str,
496
+ is_default: Optional[bool] = None):
497
+ """
498
+ Azure retention rule
499
+ :param str object_type:
500
+ Expected value is 'AzureRetentionRule'.
501
+ """
502
+ pulumi.set(__self__, "lifecycles", lifecycles)
503
+ pulumi.set(__self__, "name", name)
504
+ pulumi.set(__self__, "object_type", 'AzureRetentionRule')
505
+ if is_default is not None:
506
+ pulumi.set(__self__, "is_default", is_default)
507
+
508
+ @property
509
+ @pulumi.getter
510
+ def lifecycles(self) -> Sequence['outputs.SourceLifeCycleResponse']:
511
+ return pulumi.get(self, "lifecycles")
512
+
513
+ @property
514
+ @pulumi.getter
515
+ def name(self) -> str:
516
+ return pulumi.get(self, "name")
517
+
518
+ @property
519
+ @pulumi.getter(name="objectType")
520
+ def object_type(self) -> str:
521
+ """
522
+
523
+ Expected value is 'AzureRetentionRule'.
524
+ """
525
+ return pulumi.get(self, "object_type")
526
+
527
+ @property
528
+ @pulumi.getter(name="isDefault")
529
+ def is_default(self) -> Optional[bool]:
530
+ return pulumi.get(self, "is_default")
531
+
532
+
533
+ @pulumi.output_type
534
+ class BackupInstanceResponse(dict):
535
+ """
536
+ Backup Instance
537
+ """
538
+ @staticmethod
539
+ def __key_warning(key: str):
540
+ suggest = None
541
+ if key == "currentProtectionState":
542
+ suggest = "current_protection_state"
543
+ elif key == "dataSourceInfo":
544
+ suggest = "data_source_info"
545
+ elif key == "objectType":
546
+ suggest = "object_type"
547
+ elif key == "policyInfo":
548
+ suggest = "policy_info"
549
+ elif key == "protectionErrorDetails":
550
+ suggest = "protection_error_details"
551
+ elif key == "protectionStatus":
552
+ suggest = "protection_status"
553
+ elif key == "provisioningState":
554
+ suggest = "provisioning_state"
555
+ elif key == "dataSourceSetInfo":
556
+ suggest = "data_source_set_info"
557
+ elif key == "datasourceAuthCredentials":
558
+ suggest = "datasource_auth_credentials"
559
+ elif key == "friendlyName":
560
+ suggest = "friendly_name"
561
+ elif key == "identityDetails":
562
+ suggest = "identity_details"
563
+ elif key == "resourceGuardOperationRequests":
564
+ suggest = "resource_guard_operation_requests"
565
+ elif key == "validationType":
566
+ suggest = "validation_type"
567
+
568
+ if suggest:
569
+ pulumi.log.warn(f"Key '{key}' not found in BackupInstanceResponse. Access the value via the '{suggest}' property getter instead.")
570
+
571
+ def __getitem__(self, key: str) -> Any:
572
+ BackupInstanceResponse.__key_warning(key)
573
+ return super().__getitem__(key)
574
+
575
+ def get(self, key: str, default = None) -> Any:
576
+ BackupInstanceResponse.__key_warning(key)
577
+ return super().get(key, default)
578
+
579
+ def __init__(__self__, *,
580
+ current_protection_state: str,
581
+ data_source_info: 'outputs.DatasourceResponse',
582
+ object_type: str,
583
+ policy_info: 'outputs.PolicyInfoResponse',
584
+ protection_error_details: 'outputs.UserFacingErrorResponse',
585
+ protection_status: 'outputs.ProtectionStatusDetailsResponse',
586
+ provisioning_state: str,
587
+ data_source_set_info: Optional['outputs.DatasourceSetResponse'] = None,
588
+ datasource_auth_credentials: Optional['outputs.SecretStoreBasedAuthCredentialsResponse'] = None,
589
+ friendly_name: Optional[str] = None,
590
+ identity_details: Optional['outputs.IdentityDetailsResponse'] = None,
591
+ resource_guard_operation_requests: Optional[Sequence[str]] = None,
592
+ validation_type: Optional[str] = None):
593
+ """
594
+ Backup Instance
595
+ :param str current_protection_state: Specifies the current protection state of the resource
596
+ :param 'DatasourceResponse' data_source_info: Gets or sets the data source information.
597
+ :param 'PolicyInfoResponse' policy_info: Gets or sets the policy information.
598
+ :param 'UserFacingErrorResponse' protection_error_details: Specifies the protection error of the resource
599
+ :param 'ProtectionStatusDetailsResponse' protection_status: Specifies the protection status of the resource
600
+ :param str provisioning_state: Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
601
+ :param 'DatasourceSetResponse' data_source_set_info: Gets or sets the data source set information.
602
+ :param 'SecretStoreBasedAuthCredentialsResponse' datasource_auth_credentials: Credentials to use to authenticate with data source provider.
603
+ :param str friendly_name: Gets or sets the Backup Instance friendly name.
604
+ :param 'IdentityDetailsResponse' identity_details: Contains information of the Identity Details for the BI.
605
+ If it is null, default will be considered as System Assigned.
606
+ :param Sequence[str] resource_guard_operation_requests: ResourceGuardOperationRequests on which LAC check will be performed
607
+ :param str validation_type: Specifies the type of validation. In case of DeepValidation, all validations from /validateForBackup API will run again.
608
+ """
609
+ pulumi.set(__self__, "current_protection_state", current_protection_state)
610
+ pulumi.set(__self__, "data_source_info", data_source_info)
611
+ pulumi.set(__self__, "object_type", object_type)
612
+ pulumi.set(__self__, "policy_info", policy_info)
613
+ pulumi.set(__self__, "protection_error_details", protection_error_details)
614
+ pulumi.set(__self__, "protection_status", protection_status)
615
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
616
+ if data_source_set_info is not None:
617
+ pulumi.set(__self__, "data_source_set_info", data_source_set_info)
618
+ if datasource_auth_credentials is not None:
619
+ pulumi.set(__self__, "datasource_auth_credentials", datasource_auth_credentials)
620
+ if friendly_name is not None:
621
+ pulumi.set(__self__, "friendly_name", friendly_name)
622
+ if identity_details is not None:
623
+ pulumi.set(__self__, "identity_details", identity_details)
624
+ if resource_guard_operation_requests is not None:
625
+ pulumi.set(__self__, "resource_guard_operation_requests", resource_guard_operation_requests)
626
+ if validation_type is not None:
627
+ pulumi.set(__self__, "validation_type", validation_type)
628
+
629
+ @property
630
+ @pulumi.getter(name="currentProtectionState")
631
+ def current_protection_state(self) -> str:
632
+ """
633
+ Specifies the current protection state of the resource
634
+ """
635
+ return pulumi.get(self, "current_protection_state")
636
+
637
+ @property
638
+ @pulumi.getter(name="dataSourceInfo")
639
+ def data_source_info(self) -> 'outputs.DatasourceResponse':
640
+ """
641
+ Gets or sets the data source information.
642
+ """
643
+ return pulumi.get(self, "data_source_info")
644
+
645
+ @property
646
+ @pulumi.getter(name="objectType")
647
+ def object_type(self) -> str:
648
+ return pulumi.get(self, "object_type")
649
+
650
+ @property
651
+ @pulumi.getter(name="policyInfo")
652
+ def policy_info(self) -> 'outputs.PolicyInfoResponse':
653
+ """
654
+ Gets or sets the policy information.
655
+ """
656
+ return pulumi.get(self, "policy_info")
657
+
658
+ @property
659
+ @pulumi.getter(name="protectionErrorDetails")
660
+ def protection_error_details(self) -> 'outputs.UserFacingErrorResponse':
661
+ """
662
+ Specifies the protection error of the resource
663
+ """
664
+ return pulumi.get(self, "protection_error_details")
665
+
666
+ @property
667
+ @pulumi.getter(name="protectionStatus")
668
+ def protection_status(self) -> 'outputs.ProtectionStatusDetailsResponse':
669
+ """
670
+ Specifies the protection status of the resource
671
+ """
672
+ return pulumi.get(self, "protection_status")
673
+
674
+ @property
675
+ @pulumi.getter(name="provisioningState")
676
+ def provisioning_state(self) -> str:
677
+ """
678
+ Specifies the provisioning state of the resource i.e. provisioning/updating/Succeeded/Failed
679
+ """
680
+ return pulumi.get(self, "provisioning_state")
681
+
682
+ @property
683
+ @pulumi.getter(name="dataSourceSetInfo")
684
+ def data_source_set_info(self) -> Optional['outputs.DatasourceSetResponse']:
685
+ """
686
+ Gets or sets the data source set information.
687
+ """
688
+ return pulumi.get(self, "data_source_set_info")
689
+
690
+ @property
691
+ @pulumi.getter(name="datasourceAuthCredentials")
692
+ def datasource_auth_credentials(self) -> Optional['outputs.SecretStoreBasedAuthCredentialsResponse']:
693
+ """
694
+ Credentials to use to authenticate with data source provider.
695
+ """
696
+ return pulumi.get(self, "datasource_auth_credentials")
697
+
698
+ @property
699
+ @pulumi.getter(name="friendlyName")
700
+ def friendly_name(self) -> Optional[str]:
701
+ """
702
+ Gets or sets the Backup Instance friendly name.
703
+ """
704
+ return pulumi.get(self, "friendly_name")
705
+
706
+ @property
707
+ @pulumi.getter(name="identityDetails")
708
+ def identity_details(self) -> Optional['outputs.IdentityDetailsResponse']:
709
+ """
710
+ Contains information of the Identity Details for the BI.
711
+ If it is null, default will be considered as System Assigned.
712
+ """
713
+ return pulumi.get(self, "identity_details")
714
+
715
+ @property
716
+ @pulumi.getter(name="resourceGuardOperationRequests")
717
+ def resource_guard_operation_requests(self) -> Optional[Sequence[str]]:
718
+ """
719
+ ResourceGuardOperationRequests on which LAC check will be performed
720
+ """
721
+ return pulumi.get(self, "resource_guard_operation_requests")
722
+
723
+ @property
724
+ @pulumi.getter(name="validationType")
725
+ def validation_type(self) -> Optional[str]:
726
+ """
727
+ Specifies the type of validation. In case of DeepValidation, all validations from /validateForBackup API will run again.
728
+ """
729
+ return pulumi.get(self, "validation_type")
730
+
731
+
732
+ @pulumi.output_type
733
+ class BackupPolicyResponse(dict):
734
+ """
735
+ Rule based backup policy
736
+ """
737
+ @staticmethod
738
+ def __key_warning(key: str):
739
+ suggest = None
740
+ if key == "datasourceTypes":
741
+ suggest = "datasource_types"
742
+ elif key == "objectType":
743
+ suggest = "object_type"
744
+ elif key == "policyRules":
745
+ suggest = "policy_rules"
746
+
747
+ if suggest:
748
+ pulumi.log.warn(f"Key '{key}' not found in BackupPolicyResponse. Access the value via the '{suggest}' property getter instead.")
749
+
750
+ def __getitem__(self, key: str) -> Any:
751
+ BackupPolicyResponse.__key_warning(key)
752
+ return super().__getitem__(key)
753
+
754
+ def get(self, key: str, default = None) -> Any:
755
+ BackupPolicyResponse.__key_warning(key)
756
+ return super().get(key, default)
757
+
758
+ def __init__(__self__, *,
759
+ datasource_types: Sequence[str],
760
+ object_type: str,
761
+ policy_rules: Sequence[Any]):
762
+ """
763
+ Rule based backup policy
764
+ :param Sequence[str] datasource_types: Type of datasource for the backup management
765
+ :param str object_type:
766
+ Expected value is 'BackupPolicy'.
767
+ :param Sequence[Union['AzureBackupRuleResponse', 'AzureRetentionRuleResponse']] policy_rules: Policy rule dictionary that contains rules for each backuptype i.e Full/Incremental/Logs etc
768
+ """
769
+ pulumi.set(__self__, "datasource_types", datasource_types)
770
+ pulumi.set(__self__, "object_type", 'BackupPolicy')
771
+ pulumi.set(__self__, "policy_rules", policy_rules)
772
+
773
+ @property
774
+ @pulumi.getter(name="datasourceTypes")
775
+ def datasource_types(self) -> Sequence[str]:
776
+ """
777
+ Type of datasource for the backup management
778
+ """
779
+ return pulumi.get(self, "datasource_types")
780
+
781
+ @property
782
+ @pulumi.getter(name="objectType")
783
+ def object_type(self) -> str:
784
+ """
785
+
786
+ Expected value is 'BackupPolicy'.
787
+ """
788
+ return pulumi.get(self, "object_type")
789
+
790
+ @property
791
+ @pulumi.getter(name="policyRules")
792
+ def policy_rules(self) -> Sequence[Any]:
793
+ """
794
+ Policy rule dictionary that contains rules for each backuptype i.e Full/Incremental/Logs etc
795
+ """
796
+ return pulumi.get(self, "policy_rules")
797
+
798
+
799
+ @pulumi.output_type
800
+ class BackupScheduleResponse(dict):
801
+ """
802
+ Schedule for backup
803
+ """
804
+ @staticmethod
805
+ def __key_warning(key: str):
806
+ suggest = None
807
+ if key == "repeatingTimeIntervals":
808
+ suggest = "repeating_time_intervals"
809
+ elif key == "timeZone":
810
+ suggest = "time_zone"
811
+
812
+ if suggest:
813
+ pulumi.log.warn(f"Key '{key}' not found in BackupScheduleResponse. Access the value via the '{suggest}' property getter instead.")
814
+
815
+ def __getitem__(self, key: str) -> Any:
816
+ BackupScheduleResponse.__key_warning(key)
817
+ return super().__getitem__(key)
818
+
819
+ def get(self, key: str, default = None) -> Any:
820
+ BackupScheduleResponse.__key_warning(key)
821
+ return super().get(key, default)
822
+
823
+ def __init__(__self__, *,
824
+ repeating_time_intervals: Sequence[str],
825
+ time_zone: Optional[str] = None):
826
+ """
827
+ Schedule for backup
828
+ :param Sequence[str] repeating_time_intervals: ISO 8601 repeating time interval format
829
+ :param str time_zone: Time zone for a schedule. Example: Pacific Standard Time
830
+ """
831
+ pulumi.set(__self__, "repeating_time_intervals", repeating_time_intervals)
832
+ if time_zone is not None:
833
+ pulumi.set(__self__, "time_zone", time_zone)
834
+
835
+ @property
836
+ @pulumi.getter(name="repeatingTimeIntervals")
837
+ def repeating_time_intervals(self) -> Sequence[str]:
838
+ """
839
+ ISO 8601 repeating time interval format
840
+ """
841
+ return pulumi.get(self, "repeating_time_intervals")
842
+
843
+ @property
844
+ @pulumi.getter(name="timeZone")
845
+ def time_zone(self) -> Optional[str]:
846
+ """
847
+ Time zone for a schedule. Example: Pacific Standard Time
848
+ """
849
+ return pulumi.get(self, "time_zone")
850
+
851
+
852
+ @pulumi.output_type
853
+ class BackupVaultResponse(dict):
854
+ """
855
+ Backup Vault
856
+ """
857
+ @staticmethod
858
+ def __key_warning(key: str):
859
+ suggest = None
860
+ if key == "bcdrSecurityLevel":
861
+ suggest = "bcdr_security_level"
862
+ elif key == "isVaultProtectedByResourceGuard":
863
+ suggest = "is_vault_protected_by_resource_guard"
864
+ elif key == "provisioningState":
865
+ suggest = "provisioning_state"
866
+ elif key == "resourceMoveDetails":
867
+ suggest = "resource_move_details"
868
+ elif key == "resourceMoveState":
869
+ suggest = "resource_move_state"
870
+ elif key == "secureScore":
871
+ suggest = "secure_score"
872
+ elif key == "storageSettings":
873
+ suggest = "storage_settings"
874
+ elif key == "featureSettings":
875
+ suggest = "feature_settings"
876
+ elif key == "monitoringSettings":
877
+ suggest = "monitoring_settings"
878
+ elif key == "replicatedRegions":
879
+ suggest = "replicated_regions"
880
+ elif key == "resourceGuardOperationRequests":
881
+ suggest = "resource_guard_operation_requests"
882
+ elif key == "securitySettings":
883
+ suggest = "security_settings"
884
+
885
+ if suggest:
886
+ pulumi.log.warn(f"Key '{key}' not found in BackupVaultResponse. Access the value via the '{suggest}' property getter instead.")
887
+
888
+ def __getitem__(self, key: str) -> Any:
889
+ BackupVaultResponse.__key_warning(key)
890
+ return super().__getitem__(key)
891
+
892
+ def get(self, key: str, default = None) -> Any:
893
+ BackupVaultResponse.__key_warning(key)
894
+ return super().get(key, default)
895
+
896
+ def __init__(__self__, *,
897
+ bcdr_security_level: str,
898
+ is_vault_protected_by_resource_guard: bool,
899
+ provisioning_state: str,
900
+ resource_move_details: 'outputs.ResourceMoveDetailsResponse',
901
+ resource_move_state: str,
902
+ secure_score: str,
903
+ storage_settings: Sequence['outputs.StorageSettingResponse'],
904
+ feature_settings: Optional['outputs.FeatureSettingsResponse'] = None,
905
+ monitoring_settings: Optional['outputs.MonitoringSettingsResponse'] = None,
906
+ replicated_regions: Optional[Sequence[str]] = None,
907
+ resource_guard_operation_requests: Optional[Sequence[str]] = None,
908
+ security_settings: Optional['outputs.SecuritySettingsResponse'] = None):
909
+ """
910
+ Backup Vault
911
+ :param str bcdr_security_level: Security Level of Backup Vault
912
+ :param bool is_vault_protected_by_resource_guard: Is vault protected by resource guard
913
+ :param str provisioning_state: Provisioning state of the BackupVault resource
914
+ :param 'ResourceMoveDetailsResponse' resource_move_details: Resource move details for backup vault
915
+ :param str resource_move_state: Resource move state for backup vault
916
+ :param str secure_score: Secure Score of Backup Vault
917
+ :param Sequence['StorageSettingResponse'] storage_settings: Storage Settings
918
+ :param 'FeatureSettingsResponse' feature_settings: Feature Settings
919
+ :param 'MonitoringSettingsResponse' monitoring_settings: Monitoring Settings
920
+ :param Sequence[str] replicated_regions: List of replicated regions for Backup Vault
921
+ :param Sequence[str] resource_guard_operation_requests: ResourceGuardOperationRequests on which LAC check will be performed
922
+ :param 'SecuritySettingsResponse' security_settings: Security Settings
923
+ """
924
+ pulumi.set(__self__, "bcdr_security_level", bcdr_security_level)
925
+ pulumi.set(__self__, "is_vault_protected_by_resource_guard", is_vault_protected_by_resource_guard)
926
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
927
+ pulumi.set(__self__, "resource_move_details", resource_move_details)
928
+ pulumi.set(__self__, "resource_move_state", resource_move_state)
929
+ pulumi.set(__self__, "secure_score", secure_score)
930
+ pulumi.set(__self__, "storage_settings", storage_settings)
931
+ if feature_settings is not None:
932
+ pulumi.set(__self__, "feature_settings", feature_settings)
933
+ if monitoring_settings is not None:
934
+ pulumi.set(__self__, "monitoring_settings", monitoring_settings)
935
+ if replicated_regions is not None:
936
+ pulumi.set(__self__, "replicated_regions", replicated_regions)
937
+ if resource_guard_operation_requests is not None:
938
+ pulumi.set(__self__, "resource_guard_operation_requests", resource_guard_operation_requests)
939
+ if security_settings is not None:
940
+ pulumi.set(__self__, "security_settings", security_settings)
941
+
942
+ @property
943
+ @pulumi.getter(name="bcdrSecurityLevel")
944
+ def bcdr_security_level(self) -> str:
945
+ """
946
+ Security Level of Backup Vault
947
+ """
948
+ return pulumi.get(self, "bcdr_security_level")
949
+
950
+ @property
951
+ @pulumi.getter(name="isVaultProtectedByResourceGuard")
952
+ def is_vault_protected_by_resource_guard(self) -> bool:
953
+ """
954
+ Is vault protected by resource guard
955
+ """
956
+ return pulumi.get(self, "is_vault_protected_by_resource_guard")
957
+
958
+ @property
959
+ @pulumi.getter(name="provisioningState")
960
+ def provisioning_state(self) -> str:
961
+ """
962
+ Provisioning state of the BackupVault resource
963
+ """
964
+ return pulumi.get(self, "provisioning_state")
965
+
966
+ @property
967
+ @pulumi.getter(name="resourceMoveDetails")
968
+ def resource_move_details(self) -> 'outputs.ResourceMoveDetailsResponse':
969
+ """
970
+ Resource move details for backup vault
971
+ """
972
+ return pulumi.get(self, "resource_move_details")
973
+
974
+ @property
975
+ @pulumi.getter(name="resourceMoveState")
976
+ def resource_move_state(self) -> str:
977
+ """
978
+ Resource move state for backup vault
979
+ """
980
+ return pulumi.get(self, "resource_move_state")
981
+
982
+ @property
983
+ @pulumi.getter(name="secureScore")
984
+ def secure_score(self) -> str:
985
+ """
986
+ Secure Score of Backup Vault
987
+ """
988
+ return pulumi.get(self, "secure_score")
989
+
990
+ @property
991
+ @pulumi.getter(name="storageSettings")
992
+ def storage_settings(self) -> Sequence['outputs.StorageSettingResponse']:
993
+ """
994
+ Storage Settings
995
+ """
996
+ return pulumi.get(self, "storage_settings")
997
+
998
+ @property
999
+ @pulumi.getter(name="featureSettings")
1000
+ def feature_settings(self) -> Optional['outputs.FeatureSettingsResponse']:
1001
+ """
1002
+ Feature Settings
1003
+ """
1004
+ return pulumi.get(self, "feature_settings")
1005
+
1006
+ @property
1007
+ @pulumi.getter(name="monitoringSettings")
1008
+ def monitoring_settings(self) -> Optional['outputs.MonitoringSettingsResponse']:
1009
+ """
1010
+ Monitoring Settings
1011
+ """
1012
+ return pulumi.get(self, "monitoring_settings")
1013
+
1014
+ @property
1015
+ @pulumi.getter(name="replicatedRegions")
1016
+ def replicated_regions(self) -> Optional[Sequence[str]]:
1017
+ """
1018
+ List of replicated regions for Backup Vault
1019
+ """
1020
+ return pulumi.get(self, "replicated_regions")
1021
+
1022
+ @property
1023
+ @pulumi.getter(name="resourceGuardOperationRequests")
1024
+ def resource_guard_operation_requests(self) -> Optional[Sequence[str]]:
1025
+ """
1026
+ ResourceGuardOperationRequests on which LAC check will be performed
1027
+ """
1028
+ return pulumi.get(self, "resource_guard_operation_requests")
1029
+
1030
+ @property
1031
+ @pulumi.getter(name="securitySettings")
1032
+ def security_settings(self) -> Optional['outputs.SecuritySettingsResponse']:
1033
+ """
1034
+ Security Settings
1035
+ """
1036
+ return pulumi.get(self, "security_settings")
1037
+
1038
+
1039
+ @pulumi.output_type
1040
+ class BlobBackupDatasourceParametersResponse(dict):
1041
+ """
1042
+ Parameters to be used during configuration of backup of blobs
1043
+ """
1044
+ @staticmethod
1045
+ def __key_warning(key: str):
1046
+ suggest = None
1047
+ if key == "containersList":
1048
+ suggest = "containers_list"
1049
+ elif key == "objectType":
1050
+ suggest = "object_type"
1051
+
1052
+ if suggest:
1053
+ pulumi.log.warn(f"Key '{key}' not found in BlobBackupDatasourceParametersResponse. Access the value via the '{suggest}' property getter instead.")
1054
+
1055
+ def __getitem__(self, key: str) -> Any:
1056
+ BlobBackupDatasourceParametersResponse.__key_warning(key)
1057
+ return super().__getitem__(key)
1058
+
1059
+ def get(self, key: str, default = None) -> Any:
1060
+ BlobBackupDatasourceParametersResponse.__key_warning(key)
1061
+ return super().get(key, default)
1062
+
1063
+ def __init__(__self__, *,
1064
+ containers_list: Sequence[str],
1065
+ object_type: str):
1066
+ """
1067
+ Parameters to be used during configuration of backup of blobs
1068
+ :param Sequence[str] containers_list: List of containers to be backed up during configuration of backup of blobs
1069
+ :param str object_type: Type of the specific object - used for deserializing
1070
+ Expected value is 'BlobBackupDatasourceParameters'.
1071
+ """
1072
+ pulumi.set(__self__, "containers_list", containers_list)
1073
+ pulumi.set(__self__, "object_type", 'BlobBackupDatasourceParameters')
1074
+
1075
+ @property
1076
+ @pulumi.getter(name="containersList")
1077
+ def containers_list(self) -> Sequence[str]:
1078
+ """
1079
+ List of containers to be backed up during configuration of backup of blobs
1080
+ """
1081
+ return pulumi.get(self, "containers_list")
1082
+
1083
+ @property
1084
+ @pulumi.getter(name="objectType")
1085
+ def object_type(self) -> str:
1086
+ """
1087
+ Type of the specific object - used for deserializing
1088
+ Expected value is 'BlobBackupDatasourceParameters'.
1089
+ """
1090
+ return pulumi.get(self, "object_type")
1091
+
1092
+
1093
+ @pulumi.output_type
1094
+ class CmkKekIdentityResponse(dict):
1095
+ """
1096
+ The details of the managed identity used for CMK
1097
+ """
1098
+ @staticmethod
1099
+ def __key_warning(key: str):
1100
+ suggest = None
1101
+ if key == "identityId":
1102
+ suggest = "identity_id"
1103
+ elif key == "identityType":
1104
+ suggest = "identity_type"
1105
+
1106
+ if suggest:
1107
+ pulumi.log.warn(f"Key '{key}' not found in CmkKekIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1108
+
1109
+ def __getitem__(self, key: str) -> Any:
1110
+ CmkKekIdentityResponse.__key_warning(key)
1111
+ return super().__getitem__(key)
1112
+
1113
+ def get(self, key: str, default = None) -> Any:
1114
+ CmkKekIdentityResponse.__key_warning(key)
1115
+ return super().get(key, default)
1116
+
1117
+ def __init__(__self__, *,
1118
+ identity_id: Optional[str] = None,
1119
+ identity_type: Optional[str] = None):
1120
+ """
1121
+ The details of the managed identity used for CMK
1122
+ :param str identity_id: The managed identity to be used which has access permissions to the Key Vault. Provide a value here in case identity types: 'UserAssigned' only.
1123
+ :param str identity_type: The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
1124
+ """
1125
+ if identity_id is not None:
1126
+ pulumi.set(__self__, "identity_id", identity_id)
1127
+ if identity_type is not None:
1128
+ pulumi.set(__self__, "identity_type", identity_type)
1129
+
1130
+ @property
1131
+ @pulumi.getter(name="identityId")
1132
+ def identity_id(self) -> Optional[str]:
1133
+ """
1134
+ The managed identity to be used which has access permissions to the Key Vault. Provide a value here in case identity types: 'UserAssigned' only.
1135
+ """
1136
+ return pulumi.get(self, "identity_id")
1137
+
1138
+ @property
1139
+ @pulumi.getter(name="identityType")
1140
+ def identity_type(self) -> Optional[str]:
1141
+ """
1142
+ The identity type. 'SystemAssigned' and 'UserAssigned' are mutually exclusive. 'SystemAssigned' will use implicitly created managed identity.
1143
+ """
1144
+ return pulumi.get(self, "identity_type")
1145
+
1146
+
1147
+ @pulumi.output_type
1148
+ class CmkKeyVaultPropertiesResponse(dict):
1149
+ """
1150
+ The properties of the Key Vault which hosts CMK
1151
+ """
1152
+ @staticmethod
1153
+ def __key_warning(key: str):
1154
+ suggest = None
1155
+ if key == "keyUri":
1156
+ suggest = "key_uri"
1157
+
1158
+ if suggest:
1159
+ pulumi.log.warn(f"Key '{key}' not found in CmkKeyVaultPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1160
+
1161
+ def __getitem__(self, key: str) -> Any:
1162
+ CmkKeyVaultPropertiesResponse.__key_warning(key)
1163
+ return super().__getitem__(key)
1164
+
1165
+ def get(self, key: str, default = None) -> Any:
1166
+ CmkKeyVaultPropertiesResponse.__key_warning(key)
1167
+ return super().get(key, default)
1168
+
1169
+ def __init__(__self__, *,
1170
+ key_uri: Optional[str] = None):
1171
+ """
1172
+ The properties of the Key Vault which hosts CMK
1173
+ :param str key_uri: The key uri of the Customer Managed Key
1174
+ """
1175
+ if key_uri is not None:
1176
+ pulumi.set(__self__, "key_uri", key_uri)
1177
+
1178
+ @property
1179
+ @pulumi.getter(name="keyUri")
1180
+ def key_uri(self) -> Optional[str]:
1181
+ """
1182
+ The key uri of the Customer Managed Key
1183
+ """
1184
+ return pulumi.get(self, "key_uri")
1185
+
1186
+
1187
+ @pulumi.output_type
1188
+ class CopyOnExpiryOptionResponse(dict):
1189
+ """
1190
+ Copy on Expiry Option
1191
+ """
1192
+ @staticmethod
1193
+ def __key_warning(key: str):
1194
+ suggest = None
1195
+ if key == "objectType":
1196
+ suggest = "object_type"
1197
+
1198
+ if suggest:
1199
+ pulumi.log.warn(f"Key '{key}' not found in CopyOnExpiryOptionResponse. Access the value via the '{suggest}' property getter instead.")
1200
+
1201
+ def __getitem__(self, key: str) -> Any:
1202
+ CopyOnExpiryOptionResponse.__key_warning(key)
1203
+ return super().__getitem__(key)
1204
+
1205
+ def get(self, key: str, default = None) -> Any:
1206
+ CopyOnExpiryOptionResponse.__key_warning(key)
1207
+ return super().get(key, default)
1208
+
1209
+ def __init__(__self__, *,
1210
+ object_type: str):
1211
+ """
1212
+ Copy on Expiry Option
1213
+ :param str object_type: Type of the specific object - used for deserializing
1214
+ Expected value is 'CopyOnExpiryOption'.
1215
+ """
1216
+ pulumi.set(__self__, "object_type", 'CopyOnExpiryOption')
1217
+
1218
+ @property
1219
+ @pulumi.getter(name="objectType")
1220
+ def object_type(self) -> str:
1221
+ """
1222
+ Type of the specific object - used for deserializing
1223
+ Expected value is 'CopyOnExpiryOption'.
1224
+ """
1225
+ return pulumi.get(self, "object_type")
1226
+
1227
+
1228
+ @pulumi.output_type
1229
+ class CrossRegionRestoreSettingsResponse(dict):
1230
+ def __init__(__self__, *,
1231
+ state: Optional[str] = None):
1232
+ """
1233
+ :param str state: CrossRegionRestore state
1234
+ """
1235
+ if state is not None:
1236
+ pulumi.set(__self__, "state", state)
1237
+
1238
+ @property
1239
+ @pulumi.getter
1240
+ def state(self) -> Optional[str]:
1241
+ """
1242
+ CrossRegionRestore state
1243
+ """
1244
+ return pulumi.get(self, "state")
1245
+
1246
+
1247
+ @pulumi.output_type
1248
+ class CrossSubscriptionRestoreSettingsResponse(dict):
1249
+ """
1250
+ CrossSubscriptionRestore Settings
1251
+ """
1252
+ def __init__(__self__, *,
1253
+ state: Optional[str] = None):
1254
+ """
1255
+ CrossSubscriptionRestore Settings
1256
+ :param str state: CrossSubscriptionRestore state
1257
+ """
1258
+ if state is not None:
1259
+ pulumi.set(__self__, "state", state)
1260
+
1261
+ @property
1262
+ @pulumi.getter
1263
+ def state(self) -> Optional[str]:
1264
+ """
1265
+ CrossSubscriptionRestore state
1266
+ """
1267
+ return pulumi.get(self, "state")
1268
+
1269
+
1270
+ @pulumi.output_type
1271
+ class CustomCopyOptionResponse(dict):
1272
+ """
1273
+ Duration based custom options to copy
1274
+ """
1275
+ @staticmethod
1276
+ def __key_warning(key: str):
1277
+ suggest = None
1278
+ if key == "objectType":
1279
+ suggest = "object_type"
1280
+
1281
+ if suggest:
1282
+ pulumi.log.warn(f"Key '{key}' not found in CustomCopyOptionResponse. Access the value via the '{suggest}' property getter instead.")
1283
+
1284
+ def __getitem__(self, key: str) -> Any:
1285
+ CustomCopyOptionResponse.__key_warning(key)
1286
+ return super().__getitem__(key)
1287
+
1288
+ def get(self, key: str, default = None) -> Any:
1289
+ CustomCopyOptionResponse.__key_warning(key)
1290
+ return super().get(key, default)
1291
+
1292
+ def __init__(__self__, *,
1293
+ object_type: str,
1294
+ duration: Optional[str] = None):
1295
+ """
1296
+ Duration based custom options to copy
1297
+ :param str object_type: Type of the specific object - used for deserializing
1298
+ Expected value is 'CustomCopyOption'.
1299
+ :param str duration: Data copied after given timespan
1300
+ """
1301
+ pulumi.set(__self__, "object_type", 'CustomCopyOption')
1302
+ if duration is not None:
1303
+ pulumi.set(__self__, "duration", duration)
1304
+
1305
+ @property
1306
+ @pulumi.getter(name="objectType")
1307
+ def object_type(self) -> str:
1308
+ """
1309
+ Type of the specific object - used for deserializing
1310
+ Expected value is 'CustomCopyOption'.
1311
+ """
1312
+ return pulumi.get(self, "object_type")
1313
+
1314
+ @property
1315
+ @pulumi.getter
1316
+ def duration(self) -> Optional[str]:
1317
+ """
1318
+ Data copied after given timespan
1319
+ """
1320
+ return pulumi.get(self, "duration")
1321
+
1322
+
1323
+ @pulumi.output_type
1324
+ class DataStoreInfoBaseResponse(dict):
1325
+ """
1326
+ DataStoreInfo base
1327
+ """
1328
+ @staticmethod
1329
+ def __key_warning(key: str):
1330
+ suggest = None
1331
+ if key == "dataStoreType":
1332
+ suggest = "data_store_type"
1333
+ elif key == "objectType":
1334
+ suggest = "object_type"
1335
+
1336
+ if suggest:
1337
+ pulumi.log.warn(f"Key '{key}' not found in DataStoreInfoBaseResponse. Access the value via the '{suggest}' property getter instead.")
1338
+
1339
+ def __getitem__(self, key: str) -> Any:
1340
+ DataStoreInfoBaseResponse.__key_warning(key)
1341
+ return super().__getitem__(key)
1342
+
1343
+ def get(self, key: str, default = None) -> Any:
1344
+ DataStoreInfoBaseResponse.__key_warning(key)
1345
+ return super().get(key, default)
1346
+
1347
+ def __init__(__self__, *,
1348
+ data_store_type: str,
1349
+ object_type: str):
1350
+ """
1351
+ DataStoreInfo base
1352
+ :param str data_store_type: type of datastore; Operational/Vault/Archive
1353
+ :param str object_type: Type of Datasource object, used to initialize the right inherited type
1354
+ """
1355
+ pulumi.set(__self__, "data_store_type", data_store_type)
1356
+ pulumi.set(__self__, "object_type", object_type)
1357
+
1358
+ @property
1359
+ @pulumi.getter(name="dataStoreType")
1360
+ def data_store_type(self) -> str:
1361
+ """
1362
+ type of datastore; Operational/Vault/Archive
1363
+ """
1364
+ return pulumi.get(self, "data_store_type")
1365
+
1366
+ @property
1367
+ @pulumi.getter(name="objectType")
1368
+ def object_type(self) -> str:
1369
+ """
1370
+ Type of Datasource object, used to initialize the right inherited type
1371
+ """
1372
+ return pulumi.get(self, "object_type")
1373
+
1374
+
1375
+ @pulumi.output_type
1376
+ class DatasourceResponse(dict):
1377
+ """
1378
+ Datasource to be backed up
1379
+ """
1380
+ @staticmethod
1381
+ def __key_warning(key: str):
1382
+ suggest = None
1383
+ if key == "resourceID":
1384
+ suggest = "resource_id"
1385
+ elif key == "datasourceType":
1386
+ suggest = "datasource_type"
1387
+ elif key == "objectType":
1388
+ suggest = "object_type"
1389
+ elif key == "resourceLocation":
1390
+ suggest = "resource_location"
1391
+ elif key == "resourceName":
1392
+ suggest = "resource_name"
1393
+ elif key == "resourceProperties":
1394
+ suggest = "resource_properties"
1395
+ elif key == "resourceType":
1396
+ suggest = "resource_type"
1397
+ elif key == "resourceUri":
1398
+ suggest = "resource_uri"
1399
+
1400
+ if suggest:
1401
+ pulumi.log.warn(f"Key '{key}' not found in DatasourceResponse. Access the value via the '{suggest}' property getter instead.")
1402
+
1403
+ def __getitem__(self, key: str) -> Any:
1404
+ DatasourceResponse.__key_warning(key)
1405
+ return super().__getitem__(key)
1406
+
1407
+ def get(self, key: str, default = None) -> Any:
1408
+ DatasourceResponse.__key_warning(key)
1409
+ return super().get(key, default)
1410
+
1411
+ def __init__(__self__, *,
1412
+ resource_id: str,
1413
+ datasource_type: Optional[str] = None,
1414
+ object_type: Optional[str] = None,
1415
+ resource_location: Optional[str] = None,
1416
+ resource_name: Optional[str] = None,
1417
+ resource_properties: Optional['outputs.DefaultResourcePropertiesResponse'] = None,
1418
+ resource_type: Optional[str] = None,
1419
+ resource_uri: Optional[str] = None):
1420
+ """
1421
+ Datasource to be backed up
1422
+ :param str resource_id: Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
1423
+ :param str datasource_type: DatasourceType of the resource.
1424
+ :param str object_type: Type of Datasource object, used to initialize the right inherited type
1425
+ :param str resource_location: Location of datasource.
1426
+ :param str resource_name: Unique identifier of the resource in the context of parent.
1427
+ :param 'DefaultResourcePropertiesResponse' resource_properties: Properties specific to data source
1428
+ :param str resource_type: Resource Type of Datasource.
1429
+ :param str resource_uri: Uri of the resource.
1430
+ """
1431
+ pulumi.set(__self__, "resource_id", resource_id)
1432
+ if datasource_type is not None:
1433
+ pulumi.set(__self__, "datasource_type", datasource_type)
1434
+ if object_type is not None:
1435
+ pulumi.set(__self__, "object_type", object_type)
1436
+ if resource_location is not None:
1437
+ pulumi.set(__self__, "resource_location", resource_location)
1438
+ if resource_name is not None:
1439
+ pulumi.set(__self__, "resource_name", resource_name)
1440
+ if resource_properties is not None:
1441
+ pulumi.set(__self__, "resource_properties", resource_properties)
1442
+ if resource_type is not None:
1443
+ pulumi.set(__self__, "resource_type", resource_type)
1444
+ if resource_uri is not None:
1445
+ pulumi.set(__self__, "resource_uri", resource_uri)
1446
+
1447
+ @property
1448
+ @pulumi.getter(name="resourceID")
1449
+ def resource_id(self) -> str:
1450
+ """
1451
+ Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
1452
+ """
1453
+ return pulumi.get(self, "resource_id")
1454
+
1455
+ @property
1456
+ @pulumi.getter(name="datasourceType")
1457
+ def datasource_type(self) -> Optional[str]:
1458
+ """
1459
+ DatasourceType of the resource.
1460
+ """
1461
+ return pulumi.get(self, "datasource_type")
1462
+
1463
+ @property
1464
+ @pulumi.getter(name="objectType")
1465
+ def object_type(self) -> Optional[str]:
1466
+ """
1467
+ Type of Datasource object, used to initialize the right inherited type
1468
+ """
1469
+ return pulumi.get(self, "object_type")
1470
+
1471
+ @property
1472
+ @pulumi.getter(name="resourceLocation")
1473
+ def resource_location(self) -> Optional[str]:
1474
+ """
1475
+ Location of datasource.
1476
+ """
1477
+ return pulumi.get(self, "resource_location")
1478
+
1479
+ @property
1480
+ @pulumi.getter(name="resourceName")
1481
+ def resource_name(self) -> Optional[str]:
1482
+ """
1483
+ Unique identifier of the resource in the context of parent.
1484
+ """
1485
+ return pulumi.get(self, "resource_name")
1486
+
1487
+ @property
1488
+ @pulumi.getter(name="resourceProperties")
1489
+ def resource_properties(self) -> Optional['outputs.DefaultResourcePropertiesResponse']:
1490
+ """
1491
+ Properties specific to data source
1492
+ """
1493
+ return pulumi.get(self, "resource_properties")
1494
+
1495
+ @property
1496
+ @pulumi.getter(name="resourceType")
1497
+ def resource_type(self) -> Optional[str]:
1498
+ """
1499
+ Resource Type of Datasource.
1500
+ """
1501
+ return pulumi.get(self, "resource_type")
1502
+
1503
+ @property
1504
+ @pulumi.getter(name="resourceUri")
1505
+ def resource_uri(self) -> Optional[str]:
1506
+ """
1507
+ Uri of the resource.
1508
+ """
1509
+ return pulumi.get(self, "resource_uri")
1510
+
1511
+
1512
+ @pulumi.output_type
1513
+ class DatasourceSetResponse(dict):
1514
+ """
1515
+ DatasourceSet details of datasource to be backed up
1516
+ """
1517
+ @staticmethod
1518
+ def __key_warning(key: str):
1519
+ suggest = None
1520
+ if key == "resourceID":
1521
+ suggest = "resource_id"
1522
+ elif key == "datasourceType":
1523
+ suggest = "datasource_type"
1524
+ elif key == "objectType":
1525
+ suggest = "object_type"
1526
+ elif key == "resourceLocation":
1527
+ suggest = "resource_location"
1528
+ elif key == "resourceName":
1529
+ suggest = "resource_name"
1530
+ elif key == "resourceProperties":
1531
+ suggest = "resource_properties"
1532
+ elif key == "resourceType":
1533
+ suggest = "resource_type"
1534
+ elif key == "resourceUri":
1535
+ suggest = "resource_uri"
1536
+
1537
+ if suggest:
1538
+ pulumi.log.warn(f"Key '{key}' not found in DatasourceSetResponse. Access the value via the '{suggest}' property getter instead.")
1539
+
1540
+ def __getitem__(self, key: str) -> Any:
1541
+ DatasourceSetResponse.__key_warning(key)
1542
+ return super().__getitem__(key)
1543
+
1544
+ def get(self, key: str, default = None) -> Any:
1545
+ DatasourceSetResponse.__key_warning(key)
1546
+ return super().get(key, default)
1547
+
1548
+ def __init__(__self__, *,
1549
+ resource_id: str,
1550
+ datasource_type: Optional[str] = None,
1551
+ object_type: Optional[str] = None,
1552
+ resource_location: Optional[str] = None,
1553
+ resource_name: Optional[str] = None,
1554
+ resource_properties: Optional['outputs.DefaultResourcePropertiesResponse'] = None,
1555
+ resource_type: Optional[str] = None,
1556
+ resource_uri: Optional[str] = None):
1557
+ """
1558
+ DatasourceSet details of datasource to be backed up
1559
+ :param str resource_id: Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
1560
+ :param str datasource_type: DatasourceType of the resource.
1561
+ :param str object_type: Type of Datasource object, used to initialize the right inherited type
1562
+ :param str resource_location: Location of datasource.
1563
+ :param str resource_name: Unique identifier of the resource in the context of parent.
1564
+ :param 'DefaultResourcePropertiesResponse' resource_properties: Properties specific to data source set
1565
+ :param str resource_type: Resource Type of Datasource.
1566
+ :param str resource_uri: Uri of the resource.
1567
+ """
1568
+ pulumi.set(__self__, "resource_id", resource_id)
1569
+ if datasource_type is not None:
1570
+ pulumi.set(__self__, "datasource_type", datasource_type)
1571
+ if object_type is not None:
1572
+ pulumi.set(__self__, "object_type", object_type)
1573
+ if resource_location is not None:
1574
+ pulumi.set(__self__, "resource_location", resource_location)
1575
+ if resource_name is not None:
1576
+ pulumi.set(__self__, "resource_name", resource_name)
1577
+ if resource_properties is not None:
1578
+ pulumi.set(__self__, "resource_properties", resource_properties)
1579
+ if resource_type is not None:
1580
+ pulumi.set(__self__, "resource_type", resource_type)
1581
+ if resource_uri is not None:
1582
+ pulumi.set(__self__, "resource_uri", resource_uri)
1583
+
1584
+ @property
1585
+ @pulumi.getter(name="resourceID")
1586
+ def resource_id(self) -> str:
1587
+ """
1588
+ Full ARM ID of the resource. For azure resources, this is ARM ID. For non azure resources, this will be the ID created by backup service via Fabric/Vault.
1589
+ """
1590
+ return pulumi.get(self, "resource_id")
1591
+
1592
+ @property
1593
+ @pulumi.getter(name="datasourceType")
1594
+ def datasource_type(self) -> Optional[str]:
1595
+ """
1596
+ DatasourceType of the resource.
1597
+ """
1598
+ return pulumi.get(self, "datasource_type")
1599
+
1600
+ @property
1601
+ @pulumi.getter(name="objectType")
1602
+ def object_type(self) -> Optional[str]:
1603
+ """
1604
+ Type of Datasource object, used to initialize the right inherited type
1605
+ """
1606
+ return pulumi.get(self, "object_type")
1607
+
1608
+ @property
1609
+ @pulumi.getter(name="resourceLocation")
1610
+ def resource_location(self) -> Optional[str]:
1611
+ """
1612
+ Location of datasource.
1613
+ """
1614
+ return pulumi.get(self, "resource_location")
1615
+
1616
+ @property
1617
+ @pulumi.getter(name="resourceName")
1618
+ def resource_name(self) -> Optional[str]:
1619
+ """
1620
+ Unique identifier of the resource in the context of parent.
1621
+ """
1622
+ return pulumi.get(self, "resource_name")
1623
+
1624
+ @property
1625
+ @pulumi.getter(name="resourceProperties")
1626
+ def resource_properties(self) -> Optional['outputs.DefaultResourcePropertiesResponse']:
1627
+ """
1628
+ Properties specific to data source set
1629
+ """
1630
+ return pulumi.get(self, "resource_properties")
1631
+
1632
+ @property
1633
+ @pulumi.getter(name="resourceType")
1634
+ def resource_type(self) -> Optional[str]:
1635
+ """
1636
+ Resource Type of Datasource.
1637
+ """
1638
+ return pulumi.get(self, "resource_type")
1639
+
1640
+ @property
1641
+ @pulumi.getter(name="resourceUri")
1642
+ def resource_uri(self) -> Optional[str]:
1643
+ """
1644
+ Uri of the resource.
1645
+ """
1646
+ return pulumi.get(self, "resource_uri")
1647
+
1648
+
1649
+ @pulumi.output_type
1650
+ class DayResponse(dict):
1651
+ """
1652
+ Day of the week
1653
+ """
1654
+ @staticmethod
1655
+ def __key_warning(key: str):
1656
+ suggest = None
1657
+ if key == "isLast":
1658
+ suggest = "is_last"
1659
+
1660
+ if suggest:
1661
+ pulumi.log.warn(f"Key '{key}' not found in DayResponse. Access the value via the '{suggest}' property getter instead.")
1662
+
1663
+ def __getitem__(self, key: str) -> Any:
1664
+ DayResponse.__key_warning(key)
1665
+ return super().__getitem__(key)
1666
+
1667
+ def get(self, key: str, default = None) -> Any:
1668
+ DayResponse.__key_warning(key)
1669
+ return super().get(key, default)
1670
+
1671
+ def __init__(__self__, *,
1672
+ date: Optional[int] = None,
1673
+ is_last: Optional[bool] = None):
1674
+ """
1675
+ Day of the week
1676
+ :param int date: Date of the month
1677
+ :param bool is_last: Whether Date is last date of month
1678
+ """
1679
+ if date is not None:
1680
+ pulumi.set(__self__, "date", date)
1681
+ if is_last is not None:
1682
+ pulumi.set(__self__, "is_last", is_last)
1683
+
1684
+ @property
1685
+ @pulumi.getter
1686
+ def date(self) -> Optional[int]:
1687
+ """
1688
+ Date of the month
1689
+ """
1690
+ return pulumi.get(self, "date")
1691
+
1692
+ @property
1693
+ @pulumi.getter(name="isLast")
1694
+ def is_last(self) -> Optional[bool]:
1695
+ """
1696
+ Whether Date is last date of month
1697
+ """
1698
+ return pulumi.get(self, "is_last")
1699
+
1700
+
1701
+ @pulumi.output_type
1702
+ class DefaultResourcePropertiesResponse(dict):
1703
+ """
1704
+ Default source properties
1705
+ """
1706
+ @staticmethod
1707
+ def __key_warning(key: str):
1708
+ suggest = None
1709
+ if key == "objectType":
1710
+ suggest = "object_type"
1711
+
1712
+ if suggest:
1713
+ pulumi.log.warn(f"Key '{key}' not found in DefaultResourcePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1714
+
1715
+ def __getitem__(self, key: str) -> Any:
1716
+ DefaultResourcePropertiesResponse.__key_warning(key)
1717
+ return super().__getitem__(key)
1718
+
1719
+ def get(self, key: str, default = None) -> Any:
1720
+ DefaultResourcePropertiesResponse.__key_warning(key)
1721
+ return super().get(key, default)
1722
+
1723
+ def __init__(__self__, *,
1724
+ object_type: str):
1725
+ """
1726
+ Default source properties
1727
+ :param str object_type: Type of the specific object - used for deserializing
1728
+ Expected value is 'DefaultResourceProperties'.
1729
+ """
1730
+ pulumi.set(__self__, "object_type", 'DefaultResourceProperties')
1731
+
1732
+ @property
1733
+ @pulumi.getter(name="objectType")
1734
+ def object_type(self) -> str:
1735
+ """
1736
+ Type of the specific object - used for deserializing
1737
+ Expected value is 'DefaultResourceProperties'.
1738
+ """
1739
+ return pulumi.get(self, "object_type")
1740
+
1741
+
1742
+ @pulumi.output_type
1743
+ class DppIdentityDetailsResponse(dict):
1744
+ """
1745
+ Identity details
1746
+ """
1747
+ @staticmethod
1748
+ def __key_warning(key: str):
1749
+ suggest = None
1750
+ if key == "principalId":
1751
+ suggest = "principal_id"
1752
+ elif key == "tenantId":
1753
+ suggest = "tenant_id"
1754
+ elif key == "userAssignedIdentities":
1755
+ suggest = "user_assigned_identities"
1756
+
1757
+ if suggest:
1758
+ pulumi.log.warn(f"Key '{key}' not found in DppIdentityDetailsResponse. Access the value via the '{suggest}' property getter instead.")
1759
+
1760
+ def __getitem__(self, key: str) -> Any:
1761
+ DppIdentityDetailsResponse.__key_warning(key)
1762
+ return super().__getitem__(key)
1763
+
1764
+ def get(self, key: str, default = None) -> Any:
1765
+ DppIdentityDetailsResponse.__key_warning(key)
1766
+ return super().get(key, default)
1767
+
1768
+ def __init__(__self__, *,
1769
+ principal_id: str,
1770
+ tenant_id: str,
1771
+ type: Optional[str] = None,
1772
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
1773
+ """
1774
+ Identity details
1775
+ :param str principal_id: The object ID of the service principal object for the managed identity that is used to grant role-based access to an Azure resource.
1776
+ :param str tenant_id: A Globally Unique Identifier (GUID) that represents the Azure AD tenant where the resource is now a member.
1777
+ :param str type: The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
1778
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: Gets or sets the user assigned identities.
1779
+ """
1780
+ pulumi.set(__self__, "principal_id", principal_id)
1781
+ pulumi.set(__self__, "tenant_id", tenant_id)
1782
+ if type is not None:
1783
+ pulumi.set(__self__, "type", type)
1784
+ if user_assigned_identities is not None:
1785
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1786
+
1787
+ @property
1788
+ @pulumi.getter(name="principalId")
1789
+ def principal_id(self) -> str:
1790
+ """
1791
+ The object ID of the service principal object for the managed identity that is used to grant role-based access to an Azure resource.
1792
+ """
1793
+ return pulumi.get(self, "principal_id")
1794
+
1795
+ @property
1796
+ @pulumi.getter(name="tenantId")
1797
+ def tenant_id(self) -> str:
1798
+ """
1799
+ A Globally Unique Identifier (GUID) that represents the Azure AD tenant where the resource is now a member.
1800
+ """
1801
+ return pulumi.get(self, "tenant_id")
1802
+
1803
+ @property
1804
+ @pulumi.getter
1805
+ def type(self) -> Optional[str]:
1806
+ """
1807
+ The identityType which can be either SystemAssigned, UserAssigned, 'SystemAssigned,UserAssigned' or None
1808
+ """
1809
+ return pulumi.get(self, "type")
1810
+
1811
+ @property
1812
+ @pulumi.getter(name="userAssignedIdentities")
1813
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
1814
+ """
1815
+ Gets or sets the user assigned identities.
1816
+ """
1817
+ return pulumi.get(self, "user_assigned_identities")
1818
+
1819
+
1820
+ @pulumi.output_type
1821
+ class EncryptionSettingsResponse(dict):
1822
+ """
1823
+ Customer Managed Key details of the resource.
1824
+ """
1825
+ @staticmethod
1826
+ def __key_warning(key: str):
1827
+ suggest = None
1828
+ if key == "infrastructureEncryption":
1829
+ suggest = "infrastructure_encryption"
1830
+ elif key == "kekIdentity":
1831
+ suggest = "kek_identity"
1832
+ elif key == "keyVaultProperties":
1833
+ suggest = "key_vault_properties"
1834
+
1835
+ if suggest:
1836
+ pulumi.log.warn(f"Key '{key}' not found in EncryptionSettingsResponse. Access the value via the '{suggest}' property getter instead.")
1837
+
1838
+ def __getitem__(self, key: str) -> Any:
1839
+ EncryptionSettingsResponse.__key_warning(key)
1840
+ return super().__getitem__(key)
1841
+
1842
+ def get(self, key: str, default = None) -> Any:
1843
+ EncryptionSettingsResponse.__key_warning(key)
1844
+ return super().get(key, default)
1845
+
1846
+ def __init__(__self__, *,
1847
+ infrastructure_encryption: Optional[str] = None,
1848
+ kek_identity: Optional['outputs.CmkKekIdentityResponse'] = None,
1849
+ key_vault_properties: Optional['outputs.CmkKeyVaultPropertiesResponse'] = None,
1850
+ state: Optional[str] = None):
1851
+ """
1852
+ Customer Managed Key details of the resource.
1853
+ :param str infrastructure_encryption: Enabling/Disabling the Double Encryption state
1854
+ :param 'CmkKekIdentityResponse' kek_identity: The details of the managed identity used for CMK
1855
+ :param 'CmkKeyVaultPropertiesResponse' key_vault_properties: The properties of the Key Vault which hosts CMK
1856
+ :param str state: Encryption state of the Backup Vault.
1857
+ """
1858
+ if infrastructure_encryption is not None:
1859
+ pulumi.set(__self__, "infrastructure_encryption", infrastructure_encryption)
1860
+ if kek_identity is not None:
1861
+ pulumi.set(__self__, "kek_identity", kek_identity)
1862
+ if key_vault_properties is not None:
1863
+ pulumi.set(__self__, "key_vault_properties", key_vault_properties)
1864
+ if state is not None:
1865
+ pulumi.set(__self__, "state", state)
1866
+
1867
+ @property
1868
+ @pulumi.getter(name="infrastructureEncryption")
1869
+ def infrastructure_encryption(self) -> Optional[str]:
1870
+ """
1871
+ Enabling/Disabling the Double Encryption state
1872
+ """
1873
+ return pulumi.get(self, "infrastructure_encryption")
1874
+
1875
+ @property
1876
+ @pulumi.getter(name="kekIdentity")
1877
+ def kek_identity(self) -> Optional['outputs.CmkKekIdentityResponse']:
1878
+ """
1879
+ The details of the managed identity used for CMK
1880
+ """
1881
+ return pulumi.get(self, "kek_identity")
1882
+
1883
+ @property
1884
+ @pulumi.getter(name="keyVaultProperties")
1885
+ def key_vault_properties(self) -> Optional['outputs.CmkKeyVaultPropertiesResponse']:
1886
+ """
1887
+ The properties of the Key Vault which hosts CMK
1888
+ """
1889
+ return pulumi.get(self, "key_vault_properties")
1890
+
1891
+ @property
1892
+ @pulumi.getter
1893
+ def state(self) -> Optional[str]:
1894
+ """
1895
+ Encryption state of the Backup Vault.
1896
+ """
1897
+ return pulumi.get(self, "state")
1898
+
1899
+
1900
+ @pulumi.output_type
1901
+ class FeatureSettingsResponse(dict):
1902
+ """
1903
+ Class containing feature settings of vault
1904
+ """
1905
+ @staticmethod
1906
+ def __key_warning(key: str):
1907
+ suggest = None
1908
+ if key == "crossRegionRestoreSettings":
1909
+ suggest = "cross_region_restore_settings"
1910
+ elif key == "crossSubscriptionRestoreSettings":
1911
+ suggest = "cross_subscription_restore_settings"
1912
+
1913
+ if suggest:
1914
+ pulumi.log.warn(f"Key '{key}' not found in FeatureSettingsResponse. Access the value via the '{suggest}' property getter instead.")
1915
+
1916
+ def __getitem__(self, key: str) -> Any:
1917
+ FeatureSettingsResponse.__key_warning(key)
1918
+ return super().__getitem__(key)
1919
+
1920
+ def get(self, key: str, default = None) -> Any:
1921
+ FeatureSettingsResponse.__key_warning(key)
1922
+ return super().get(key, default)
1923
+
1924
+ def __init__(__self__, *,
1925
+ cross_region_restore_settings: Optional['outputs.CrossRegionRestoreSettingsResponse'] = None,
1926
+ cross_subscription_restore_settings: Optional['outputs.CrossSubscriptionRestoreSettingsResponse'] = None):
1927
+ """
1928
+ Class containing feature settings of vault
1929
+ :param 'CrossSubscriptionRestoreSettingsResponse' cross_subscription_restore_settings: CrossSubscriptionRestore Settings
1930
+ """
1931
+ if cross_region_restore_settings is not None:
1932
+ pulumi.set(__self__, "cross_region_restore_settings", cross_region_restore_settings)
1933
+ if cross_subscription_restore_settings is not None:
1934
+ pulumi.set(__self__, "cross_subscription_restore_settings", cross_subscription_restore_settings)
1935
+
1936
+ @property
1937
+ @pulumi.getter(name="crossRegionRestoreSettings")
1938
+ def cross_region_restore_settings(self) -> Optional['outputs.CrossRegionRestoreSettingsResponse']:
1939
+ return pulumi.get(self, "cross_region_restore_settings")
1940
+
1941
+ @property
1942
+ @pulumi.getter(name="crossSubscriptionRestoreSettings")
1943
+ def cross_subscription_restore_settings(self) -> Optional['outputs.CrossSubscriptionRestoreSettingsResponse']:
1944
+ """
1945
+ CrossSubscriptionRestore Settings
1946
+ """
1947
+ return pulumi.get(self, "cross_subscription_restore_settings")
1948
+
1949
+
1950
+ @pulumi.output_type
1951
+ class IdentityDetailsResponse(dict):
1952
+ @staticmethod
1953
+ def __key_warning(key: str):
1954
+ suggest = None
1955
+ if key == "useSystemAssignedIdentity":
1956
+ suggest = "use_system_assigned_identity"
1957
+ elif key == "userAssignedIdentityArmUrl":
1958
+ suggest = "user_assigned_identity_arm_url"
1959
+
1960
+ if suggest:
1961
+ pulumi.log.warn(f"Key '{key}' not found in IdentityDetailsResponse. Access the value via the '{suggest}' property getter instead.")
1962
+
1963
+ def __getitem__(self, key: str) -> Any:
1964
+ IdentityDetailsResponse.__key_warning(key)
1965
+ return super().__getitem__(key)
1966
+
1967
+ def get(self, key: str, default = None) -> Any:
1968
+ IdentityDetailsResponse.__key_warning(key)
1969
+ return super().get(key, default)
1970
+
1971
+ def __init__(__self__, *,
1972
+ use_system_assigned_identity: Optional[bool] = None,
1973
+ user_assigned_identity_arm_url: Optional[str] = None):
1974
+ """
1975
+ :param bool use_system_assigned_identity: Specifies if the BI is protected by System Identity.
1976
+ :param str user_assigned_identity_arm_url: ARM URL for User Assigned Identity.
1977
+ """
1978
+ if use_system_assigned_identity is not None:
1979
+ pulumi.set(__self__, "use_system_assigned_identity", use_system_assigned_identity)
1980
+ if user_assigned_identity_arm_url is not None:
1981
+ pulumi.set(__self__, "user_assigned_identity_arm_url", user_assigned_identity_arm_url)
1982
+
1983
+ @property
1984
+ @pulumi.getter(name="useSystemAssignedIdentity")
1985
+ def use_system_assigned_identity(self) -> Optional[bool]:
1986
+ """
1987
+ Specifies if the BI is protected by System Identity.
1988
+ """
1989
+ return pulumi.get(self, "use_system_assigned_identity")
1990
+
1991
+ @property
1992
+ @pulumi.getter(name="userAssignedIdentityArmUrl")
1993
+ def user_assigned_identity_arm_url(self) -> Optional[str]:
1994
+ """
1995
+ ARM URL for User Assigned Identity.
1996
+ """
1997
+ return pulumi.get(self, "user_assigned_identity_arm_url")
1998
+
1999
+
2000
+ @pulumi.output_type
2001
+ class ImmediateCopyOptionResponse(dict):
2002
+ """
2003
+ Immediate copy Option
2004
+ """
2005
+ @staticmethod
2006
+ def __key_warning(key: str):
2007
+ suggest = None
2008
+ if key == "objectType":
2009
+ suggest = "object_type"
2010
+
2011
+ if suggest:
2012
+ pulumi.log.warn(f"Key '{key}' not found in ImmediateCopyOptionResponse. Access the value via the '{suggest}' property getter instead.")
2013
+
2014
+ def __getitem__(self, key: str) -> Any:
2015
+ ImmediateCopyOptionResponse.__key_warning(key)
2016
+ return super().__getitem__(key)
2017
+
2018
+ def get(self, key: str, default = None) -> Any:
2019
+ ImmediateCopyOptionResponse.__key_warning(key)
2020
+ return super().get(key, default)
2021
+
2022
+ def __init__(__self__, *,
2023
+ object_type: str):
2024
+ """
2025
+ Immediate copy Option
2026
+ :param str object_type: Type of the specific object - used for deserializing
2027
+ Expected value is 'ImmediateCopyOption'.
2028
+ """
2029
+ pulumi.set(__self__, "object_type", 'ImmediateCopyOption')
2030
+
2031
+ @property
2032
+ @pulumi.getter(name="objectType")
2033
+ def object_type(self) -> str:
2034
+ """
2035
+ Type of the specific object - used for deserializing
2036
+ Expected value is 'ImmediateCopyOption'.
2037
+ """
2038
+ return pulumi.get(self, "object_type")
2039
+
2040
+
2041
+ @pulumi.output_type
2042
+ class ImmutabilitySettingsResponse(dict):
2043
+ """
2044
+ Immutability Settings at vault level
2045
+ """
2046
+ def __init__(__self__, *,
2047
+ state: Optional[str] = None):
2048
+ """
2049
+ Immutability Settings at vault level
2050
+ :param str state: Immutability state
2051
+ """
2052
+ if state is not None:
2053
+ pulumi.set(__self__, "state", state)
2054
+
2055
+ @property
2056
+ @pulumi.getter
2057
+ def state(self) -> Optional[str]:
2058
+ """
2059
+ Immutability state
2060
+ """
2061
+ return pulumi.get(self, "state")
2062
+
2063
+
2064
+ @pulumi.output_type
2065
+ class InnerErrorResponse(dict):
2066
+ """
2067
+ Inner Error
2068
+ """
2069
+ @staticmethod
2070
+ def __key_warning(key: str):
2071
+ suggest = None
2072
+ if key == "additionalInfo":
2073
+ suggest = "additional_info"
2074
+ elif key == "embeddedInnerError":
2075
+ suggest = "embedded_inner_error"
2076
+
2077
+ if suggest:
2078
+ pulumi.log.warn(f"Key '{key}' not found in InnerErrorResponse. Access the value via the '{suggest}' property getter instead.")
2079
+
2080
+ def __getitem__(self, key: str) -> Any:
2081
+ InnerErrorResponse.__key_warning(key)
2082
+ return super().__getitem__(key)
2083
+
2084
+ def get(self, key: str, default = None) -> Any:
2085
+ InnerErrorResponse.__key_warning(key)
2086
+ return super().get(key, default)
2087
+
2088
+ def __init__(__self__, *,
2089
+ additional_info: Optional[Mapping[str, str]] = None,
2090
+ code: Optional[str] = None,
2091
+ embedded_inner_error: Optional['outputs.InnerErrorResponse'] = None):
2092
+ """
2093
+ Inner Error
2094
+ :param Mapping[str, str] additional_info: Any Key value pairs that can be provided to the client for additional verbose information.
2095
+ :param str code: Unique code for this error
2096
+ :param 'InnerErrorResponse' embedded_inner_error: Child Inner Error, to allow Nesting.
2097
+ """
2098
+ if additional_info is not None:
2099
+ pulumi.set(__self__, "additional_info", additional_info)
2100
+ if code is not None:
2101
+ pulumi.set(__self__, "code", code)
2102
+ if embedded_inner_error is not None:
2103
+ pulumi.set(__self__, "embedded_inner_error", embedded_inner_error)
2104
+
2105
+ @property
2106
+ @pulumi.getter(name="additionalInfo")
2107
+ def additional_info(self) -> Optional[Mapping[str, str]]:
2108
+ """
2109
+ Any Key value pairs that can be provided to the client for additional verbose information.
2110
+ """
2111
+ return pulumi.get(self, "additional_info")
2112
+
2113
+ @property
2114
+ @pulumi.getter
2115
+ def code(self) -> Optional[str]:
2116
+ """
2117
+ Unique code for this error
2118
+ """
2119
+ return pulumi.get(self, "code")
2120
+
2121
+ @property
2122
+ @pulumi.getter(name="embeddedInnerError")
2123
+ def embedded_inner_error(self) -> Optional['outputs.InnerErrorResponse']:
2124
+ """
2125
+ Child Inner Error, to allow Nesting.
2126
+ """
2127
+ return pulumi.get(self, "embedded_inner_error")
2128
+
2129
+
2130
+ @pulumi.output_type
2131
+ class KubernetesClusterBackupDatasourceParametersResponse(dict):
2132
+ """
2133
+ Parameters for Kubernetes Cluster Backup Datasource
2134
+ """
2135
+ @staticmethod
2136
+ def __key_warning(key: str):
2137
+ suggest = None
2138
+ if key == "includeClusterScopeResources":
2139
+ suggest = "include_cluster_scope_resources"
2140
+ elif key == "objectType":
2141
+ suggest = "object_type"
2142
+ elif key == "snapshotVolumes":
2143
+ suggest = "snapshot_volumes"
2144
+ elif key == "backupHookReferences":
2145
+ suggest = "backup_hook_references"
2146
+ elif key == "excludedNamespaces":
2147
+ suggest = "excluded_namespaces"
2148
+ elif key == "excludedResourceTypes":
2149
+ suggest = "excluded_resource_types"
2150
+ elif key == "includedNamespaces":
2151
+ suggest = "included_namespaces"
2152
+ elif key == "includedResourceTypes":
2153
+ suggest = "included_resource_types"
2154
+ elif key == "includedVolumeTypes":
2155
+ suggest = "included_volume_types"
2156
+ elif key == "labelSelectors":
2157
+ suggest = "label_selectors"
2158
+
2159
+ if suggest:
2160
+ pulumi.log.warn(f"Key '{key}' not found in KubernetesClusterBackupDatasourceParametersResponse. Access the value via the '{suggest}' property getter instead.")
2161
+
2162
+ def __getitem__(self, key: str) -> Any:
2163
+ KubernetesClusterBackupDatasourceParametersResponse.__key_warning(key)
2164
+ return super().__getitem__(key)
2165
+
2166
+ def get(self, key: str, default = None) -> Any:
2167
+ KubernetesClusterBackupDatasourceParametersResponse.__key_warning(key)
2168
+ return super().get(key, default)
2169
+
2170
+ def __init__(__self__, *,
2171
+ include_cluster_scope_resources: bool,
2172
+ object_type: str,
2173
+ snapshot_volumes: bool,
2174
+ backup_hook_references: Optional[Sequence['outputs.NamespacedNameResourceResponse']] = None,
2175
+ excluded_namespaces: Optional[Sequence[str]] = None,
2176
+ excluded_resource_types: Optional[Sequence[str]] = None,
2177
+ included_namespaces: Optional[Sequence[str]] = None,
2178
+ included_resource_types: Optional[Sequence[str]] = None,
2179
+ included_volume_types: Optional[Sequence[str]] = None,
2180
+ label_selectors: Optional[Sequence[str]] = None):
2181
+ """
2182
+ Parameters for Kubernetes Cluster Backup Datasource
2183
+ :param bool include_cluster_scope_resources: Gets or sets the include cluster resources property. This property if enabled will include cluster scope resources during backup.
2184
+ :param str object_type: Type of the specific object - used for deserializing
2185
+ Expected value is 'KubernetesClusterBackupDatasourceParameters'.
2186
+ :param bool snapshot_volumes: Gets or sets the volume snapshot property. This property if enabled will take volume snapshots during backup.
2187
+ :param Sequence['NamespacedNameResourceResponse'] backup_hook_references: Gets or sets the backup hook references. This property sets the hook reference to be executed during backup.
2188
+ :param Sequence[str] excluded_namespaces: Gets or sets the exclude namespaces property. This property sets the namespaces to be excluded during backup.
2189
+ :param Sequence[str] excluded_resource_types: Gets or sets the exclude resource types property. This property sets the resource types to be excluded during backup.
2190
+ :param Sequence[str] included_namespaces: Gets or sets the include namespaces property. This property sets the namespaces to be included during backup.
2191
+ :param Sequence[str] included_resource_types: Gets or sets the include resource types property. This property sets the resource types to be included during backup.
2192
+ :param Sequence[str] included_volume_types: Gets or sets the include volume types property. This property sets the volume types to be included during backup.
2193
+ :param Sequence[str] label_selectors: Gets or sets the LabelSelectors property. This property sets the resource with such label selectors to be included during backup.
2194
+ """
2195
+ pulumi.set(__self__, "include_cluster_scope_resources", include_cluster_scope_resources)
2196
+ pulumi.set(__self__, "object_type", 'KubernetesClusterBackupDatasourceParameters')
2197
+ pulumi.set(__self__, "snapshot_volumes", snapshot_volumes)
2198
+ if backup_hook_references is not None:
2199
+ pulumi.set(__self__, "backup_hook_references", backup_hook_references)
2200
+ if excluded_namespaces is not None:
2201
+ pulumi.set(__self__, "excluded_namespaces", excluded_namespaces)
2202
+ if excluded_resource_types is not None:
2203
+ pulumi.set(__self__, "excluded_resource_types", excluded_resource_types)
2204
+ if included_namespaces is not None:
2205
+ pulumi.set(__self__, "included_namespaces", included_namespaces)
2206
+ if included_resource_types is not None:
2207
+ pulumi.set(__self__, "included_resource_types", included_resource_types)
2208
+ if included_volume_types is not None:
2209
+ pulumi.set(__self__, "included_volume_types", included_volume_types)
2210
+ if label_selectors is not None:
2211
+ pulumi.set(__self__, "label_selectors", label_selectors)
2212
+
2213
+ @property
2214
+ @pulumi.getter(name="includeClusterScopeResources")
2215
+ def include_cluster_scope_resources(self) -> bool:
2216
+ """
2217
+ Gets or sets the include cluster resources property. This property if enabled will include cluster scope resources during backup.
2218
+ """
2219
+ return pulumi.get(self, "include_cluster_scope_resources")
2220
+
2221
+ @property
2222
+ @pulumi.getter(name="objectType")
2223
+ def object_type(self) -> str:
2224
+ """
2225
+ Type of the specific object - used for deserializing
2226
+ Expected value is 'KubernetesClusterBackupDatasourceParameters'.
2227
+ """
2228
+ return pulumi.get(self, "object_type")
2229
+
2230
+ @property
2231
+ @pulumi.getter(name="snapshotVolumes")
2232
+ def snapshot_volumes(self) -> bool:
2233
+ """
2234
+ Gets or sets the volume snapshot property. This property if enabled will take volume snapshots during backup.
2235
+ """
2236
+ return pulumi.get(self, "snapshot_volumes")
2237
+
2238
+ @property
2239
+ @pulumi.getter(name="backupHookReferences")
2240
+ def backup_hook_references(self) -> Optional[Sequence['outputs.NamespacedNameResourceResponse']]:
2241
+ """
2242
+ Gets or sets the backup hook references. This property sets the hook reference to be executed during backup.
2243
+ """
2244
+ return pulumi.get(self, "backup_hook_references")
2245
+
2246
+ @property
2247
+ @pulumi.getter(name="excludedNamespaces")
2248
+ def excluded_namespaces(self) -> Optional[Sequence[str]]:
2249
+ """
2250
+ Gets or sets the exclude namespaces property. This property sets the namespaces to be excluded during backup.
2251
+ """
2252
+ return pulumi.get(self, "excluded_namespaces")
2253
+
2254
+ @property
2255
+ @pulumi.getter(name="excludedResourceTypes")
2256
+ def excluded_resource_types(self) -> Optional[Sequence[str]]:
2257
+ """
2258
+ Gets or sets the exclude resource types property. This property sets the resource types to be excluded during backup.
2259
+ """
2260
+ return pulumi.get(self, "excluded_resource_types")
2261
+
2262
+ @property
2263
+ @pulumi.getter(name="includedNamespaces")
2264
+ def included_namespaces(self) -> Optional[Sequence[str]]:
2265
+ """
2266
+ Gets or sets the include namespaces property. This property sets the namespaces to be included during backup.
2267
+ """
2268
+ return pulumi.get(self, "included_namespaces")
2269
+
2270
+ @property
2271
+ @pulumi.getter(name="includedResourceTypes")
2272
+ def included_resource_types(self) -> Optional[Sequence[str]]:
2273
+ """
2274
+ Gets or sets the include resource types property. This property sets the resource types to be included during backup.
2275
+ """
2276
+ return pulumi.get(self, "included_resource_types")
2277
+
2278
+ @property
2279
+ @pulumi.getter(name="includedVolumeTypes")
2280
+ def included_volume_types(self) -> Optional[Sequence[str]]:
2281
+ """
2282
+ Gets or sets the include volume types property. This property sets the volume types to be included during backup.
2283
+ """
2284
+ return pulumi.get(self, "included_volume_types")
2285
+
2286
+ @property
2287
+ @pulumi.getter(name="labelSelectors")
2288
+ def label_selectors(self) -> Optional[Sequence[str]]:
2289
+ """
2290
+ Gets or sets the LabelSelectors property. This property sets the resource with such label selectors to be included during backup.
2291
+ """
2292
+ return pulumi.get(self, "label_selectors")
2293
+
2294
+
2295
+ @pulumi.output_type
2296
+ class MonitoringSettingsResponse(dict):
2297
+ """
2298
+ Monitoring Settings
2299
+ """
2300
+ @staticmethod
2301
+ def __key_warning(key: str):
2302
+ suggest = None
2303
+ if key == "azureMonitorAlertSettings":
2304
+ suggest = "azure_monitor_alert_settings"
2305
+
2306
+ if suggest:
2307
+ pulumi.log.warn(f"Key '{key}' not found in MonitoringSettingsResponse. Access the value via the '{suggest}' property getter instead.")
2308
+
2309
+ def __getitem__(self, key: str) -> Any:
2310
+ MonitoringSettingsResponse.__key_warning(key)
2311
+ return super().__getitem__(key)
2312
+
2313
+ def get(self, key: str, default = None) -> Any:
2314
+ MonitoringSettingsResponse.__key_warning(key)
2315
+ return super().get(key, default)
2316
+
2317
+ def __init__(__self__, *,
2318
+ azure_monitor_alert_settings: Optional['outputs.AzureMonitorAlertSettingsResponse'] = None):
2319
+ """
2320
+ Monitoring Settings
2321
+ :param 'AzureMonitorAlertSettingsResponse' azure_monitor_alert_settings: Settings for Azure Monitor based alerts
2322
+ """
2323
+ if azure_monitor_alert_settings is not None:
2324
+ pulumi.set(__self__, "azure_monitor_alert_settings", azure_monitor_alert_settings)
2325
+
2326
+ @property
2327
+ @pulumi.getter(name="azureMonitorAlertSettings")
2328
+ def azure_monitor_alert_settings(self) -> Optional['outputs.AzureMonitorAlertSettingsResponse']:
2329
+ """
2330
+ Settings for Azure Monitor based alerts
2331
+ """
2332
+ return pulumi.get(self, "azure_monitor_alert_settings")
2333
+
2334
+
2335
+ @pulumi.output_type
2336
+ class NamespacedNameResourceResponse(dict):
2337
+ """
2338
+ Class to refer resources which contains namespace and name
2339
+ """
2340
+ def __init__(__self__, *,
2341
+ name: Optional[str] = None,
2342
+ namespace: Optional[str] = None):
2343
+ """
2344
+ Class to refer resources which contains namespace and name
2345
+ :param str name: Name of the resource
2346
+ :param str namespace: Namespace in which the resource exists
2347
+ """
2348
+ if name is not None:
2349
+ pulumi.set(__self__, "name", name)
2350
+ if namespace is not None:
2351
+ pulumi.set(__self__, "namespace", namespace)
2352
+
2353
+ @property
2354
+ @pulumi.getter
2355
+ def name(self) -> Optional[str]:
2356
+ """
2357
+ Name of the resource
2358
+ """
2359
+ return pulumi.get(self, "name")
2360
+
2361
+ @property
2362
+ @pulumi.getter
2363
+ def namespace(self) -> Optional[str]:
2364
+ """
2365
+ Namespace in which the resource exists
2366
+ """
2367
+ return pulumi.get(self, "namespace")
2368
+
2369
+
2370
+ @pulumi.output_type
2371
+ class PolicyInfoResponse(dict):
2372
+ """
2373
+ Policy Info in backupInstance
2374
+ """
2375
+ @staticmethod
2376
+ def __key_warning(key: str):
2377
+ suggest = None
2378
+ if key == "policyId":
2379
+ suggest = "policy_id"
2380
+ elif key == "policyVersion":
2381
+ suggest = "policy_version"
2382
+ elif key == "policyParameters":
2383
+ suggest = "policy_parameters"
2384
+
2385
+ if suggest:
2386
+ pulumi.log.warn(f"Key '{key}' not found in PolicyInfoResponse. Access the value via the '{suggest}' property getter instead.")
2387
+
2388
+ def __getitem__(self, key: str) -> Any:
2389
+ PolicyInfoResponse.__key_warning(key)
2390
+ return super().__getitem__(key)
2391
+
2392
+ def get(self, key: str, default = None) -> Any:
2393
+ PolicyInfoResponse.__key_warning(key)
2394
+ return super().get(key, default)
2395
+
2396
+ def __init__(__self__, *,
2397
+ policy_id: str,
2398
+ policy_version: str,
2399
+ policy_parameters: Optional['outputs.PolicyParametersResponse'] = None):
2400
+ """
2401
+ Policy Info in backupInstance
2402
+ :param 'PolicyParametersResponse' policy_parameters: Policy parameters for the backup instance
2403
+ """
2404
+ pulumi.set(__self__, "policy_id", policy_id)
2405
+ pulumi.set(__self__, "policy_version", policy_version)
2406
+ if policy_parameters is not None:
2407
+ pulumi.set(__self__, "policy_parameters", policy_parameters)
2408
+
2409
+ @property
2410
+ @pulumi.getter(name="policyId")
2411
+ def policy_id(self) -> str:
2412
+ return pulumi.get(self, "policy_id")
2413
+
2414
+ @property
2415
+ @pulumi.getter(name="policyVersion")
2416
+ def policy_version(self) -> str:
2417
+ return pulumi.get(self, "policy_version")
2418
+
2419
+ @property
2420
+ @pulumi.getter(name="policyParameters")
2421
+ def policy_parameters(self) -> Optional['outputs.PolicyParametersResponse']:
2422
+ """
2423
+ Policy parameters for the backup instance
2424
+ """
2425
+ return pulumi.get(self, "policy_parameters")
2426
+
2427
+
2428
+ @pulumi.output_type
2429
+ class PolicyParametersResponse(dict):
2430
+ """
2431
+ Parameters in Policy
2432
+ """
2433
+ @staticmethod
2434
+ def __key_warning(key: str):
2435
+ suggest = None
2436
+ if key == "backupDatasourceParametersList":
2437
+ suggest = "backup_datasource_parameters_list"
2438
+ elif key == "dataStoreParametersList":
2439
+ suggest = "data_store_parameters_list"
2440
+
2441
+ if suggest:
2442
+ pulumi.log.warn(f"Key '{key}' not found in PolicyParametersResponse. Access the value via the '{suggest}' property getter instead.")
2443
+
2444
+ def __getitem__(self, key: str) -> Any:
2445
+ PolicyParametersResponse.__key_warning(key)
2446
+ return super().__getitem__(key)
2447
+
2448
+ def get(self, key: str, default = None) -> Any:
2449
+ PolicyParametersResponse.__key_warning(key)
2450
+ return super().get(key, default)
2451
+
2452
+ def __init__(__self__, *,
2453
+ backup_datasource_parameters_list: Optional[Sequence[Any]] = None,
2454
+ data_store_parameters_list: Optional[Sequence['outputs.AzureOperationalStoreParametersResponse']] = None):
2455
+ """
2456
+ Parameters in Policy
2457
+ :param Sequence[Union['BlobBackupDatasourceParametersResponse', 'KubernetesClusterBackupDatasourceParametersResponse']] backup_datasource_parameters_list: Gets or sets the Backup Data Source Parameters
2458
+ :param Sequence['AzureOperationalStoreParametersResponse'] data_store_parameters_list: Gets or sets the DataStore Parameters
2459
+ """
2460
+ if backup_datasource_parameters_list is not None:
2461
+ pulumi.set(__self__, "backup_datasource_parameters_list", backup_datasource_parameters_list)
2462
+ if data_store_parameters_list is not None:
2463
+ pulumi.set(__self__, "data_store_parameters_list", data_store_parameters_list)
2464
+
2465
+ @property
2466
+ @pulumi.getter(name="backupDatasourceParametersList")
2467
+ def backup_datasource_parameters_list(self) -> Optional[Sequence[Any]]:
2468
+ """
2469
+ Gets or sets the Backup Data Source Parameters
2470
+ """
2471
+ return pulumi.get(self, "backup_datasource_parameters_list")
2472
+
2473
+ @property
2474
+ @pulumi.getter(name="dataStoreParametersList")
2475
+ def data_store_parameters_list(self) -> Optional[Sequence['outputs.AzureOperationalStoreParametersResponse']]:
2476
+ """
2477
+ Gets or sets the DataStore Parameters
2478
+ """
2479
+ return pulumi.get(self, "data_store_parameters_list")
2480
+
2481
+
2482
+ @pulumi.output_type
2483
+ class ProtectionStatusDetailsResponse(dict):
2484
+ """
2485
+ Protection status details
2486
+ """
2487
+ @staticmethod
2488
+ def __key_warning(key: str):
2489
+ suggest = None
2490
+ if key == "errorDetails":
2491
+ suggest = "error_details"
2492
+
2493
+ if suggest:
2494
+ pulumi.log.warn(f"Key '{key}' not found in ProtectionStatusDetailsResponse. Access the value via the '{suggest}' property getter instead.")
2495
+
2496
+ def __getitem__(self, key: str) -> Any:
2497
+ ProtectionStatusDetailsResponse.__key_warning(key)
2498
+ return super().__getitem__(key)
2499
+
2500
+ def get(self, key: str, default = None) -> Any:
2501
+ ProtectionStatusDetailsResponse.__key_warning(key)
2502
+ return super().get(key, default)
2503
+
2504
+ def __init__(__self__, *,
2505
+ error_details: Optional['outputs.UserFacingErrorResponse'] = None,
2506
+ status: Optional[str] = None):
2507
+ """
2508
+ Protection status details
2509
+ :param 'UserFacingErrorResponse' error_details: Specifies the protection status error of the resource
2510
+ :param str status: Specifies the protection status of the resource
2511
+ """
2512
+ if error_details is not None:
2513
+ pulumi.set(__self__, "error_details", error_details)
2514
+ if status is not None:
2515
+ pulumi.set(__self__, "status", status)
2516
+
2517
+ @property
2518
+ @pulumi.getter(name="errorDetails")
2519
+ def error_details(self) -> Optional['outputs.UserFacingErrorResponse']:
2520
+ """
2521
+ Specifies the protection status error of the resource
2522
+ """
2523
+ return pulumi.get(self, "error_details")
2524
+
2525
+ @property
2526
+ @pulumi.getter
2527
+ def status(self) -> Optional[str]:
2528
+ """
2529
+ Specifies the protection status of the resource
2530
+ """
2531
+ return pulumi.get(self, "status")
2532
+
2533
+
2534
+ @pulumi.output_type
2535
+ class ResourceGuardOperationDetailResponse(dict):
2536
+ """
2537
+ VaultCritical Operation protected by a resource guard
2538
+ """
2539
+ @staticmethod
2540
+ def __key_warning(key: str):
2541
+ suggest = None
2542
+ if key == "defaultResourceRequest":
2543
+ suggest = "default_resource_request"
2544
+ elif key == "vaultCriticalOperation":
2545
+ suggest = "vault_critical_operation"
2546
+
2547
+ if suggest:
2548
+ pulumi.log.warn(f"Key '{key}' not found in ResourceGuardOperationDetailResponse. Access the value via the '{suggest}' property getter instead.")
2549
+
2550
+ def __getitem__(self, key: str) -> Any:
2551
+ ResourceGuardOperationDetailResponse.__key_warning(key)
2552
+ return super().__getitem__(key)
2553
+
2554
+ def get(self, key: str, default = None) -> Any:
2555
+ ResourceGuardOperationDetailResponse.__key_warning(key)
2556
+ return super().get(key, default)
2557
+
2558
+ def __init__(__self__, *,
2559
+ default_resource_request: Optional[str] = None,
2560
+ vault_critical_operation: Optional[str] = None):
2561
+ """
2562
+ VaultCritical Operation protected by a resource guard
2563
+ """
2564
+ if default_resource_request is not None:
2565
+ pulumi.set(__self__, "default_resource_request", default_resource_request)
2566
+ if vault_critical_operation is not None:
2567
+ pulumi.set(__self__, "vault_critical_operation", vault_critical_operation)
2568
+
2569
+ @property
2570
+ @pulumi.getter(name="defaultResourceRequest")
2571
+ def default_resource_request(self) -> Optional[str]:
2572
+ return pulumi.get(self, "default_resource_request")
2573
+
2574
+ @property
2575
+ @pulumi.getter(name="vaultCriticalOperation")
2576
+ def vault_critical_operation(self) -> Optional[str]:
2577
+ return pulumi.get(self, "vault_critical_operation")
2578
+
2579
+
2580
+ @pulumi.output_type
2581
+ class ResourceGuardOperationResponse(dict):
2582
+ """
2583
+ This class contains all the details about a critical operation.
2584
+ """
2585
+ @staticmethod
2586
+ def __key_warning(key: str):
2587
+ suggest = None
2588
+ if key == "requestResourceType":
2589
+ suggest = "request_resource_type"
2590
+ elif key == "vaultCriticalOperation":
2591
+ suggest = "vault_critical_operation"
2592
+
2593
+ if suggest:
2594
+ pulumi.log.warn(f"Key '{key}' not found in ResourceGuardOperationResponse. Access the value via the '{suggest}' property getter instead.")
2595
+
2596
+ def __getitem__(self, key: str) -> Any:
2597
+ ResourceGuardOperationResponse.__key_warning(key)
2598
+ return super().__getitem__(key)
2599
+
2600
+ def get(self, key: str, default = None) -> Any:
2601
+ ResourceGuardOperationResponse.__key_warning(key)
2602
+ return super().get(key, default)
2603
+
2604
+ def __init__(__self__, *,
2605
+ request_resource_type: str,
2606
+ vault_critical_operation: str):
2607
+ """
2608
+ This class contains all the details about a critical operation.
2609
+ :param str request_resource_type: Type of resource request.
2610
+ :param str vault_critical_operation: Name of the critical operation.
2611
+ """
2612
+ pulumi.set(__self__, "request_resource_type", request_resource_type)
2613
+ pulumi.set(__self__, "vault_critical_operation", vault_critical_operation)
2614
+
2615
+ @property
2616
+ @pulumi.getter(name="requestResourceType")
2617
+ def request_resource_type(self) -> str:
2618
+ """
2619
+ Type of resource request.
2620
+ """
2621
+ return pulumi.get(self, "request_resource_type")
2622
+
2623
+ @property
2624
+ @pulumi.getter(name="vaultCriticalOperation")
2625
+ def vault_critical_operation(self) -> str:
2626
+ """
2627
+ Name of the critical operation.
2628
+ """
2629
+ return pulumi.get(self, "vault_critical_operation")
2630
+
2631
+
2632
+ @pulumi.output_type
2633
+ class ResourceGuardProxyBaseResponse(dict):
2634
+ """
2635
+ ResourceGuardProxyBase object, used in ResourceGuardProxyBaseResource
2636
+ """
2637
+ @staticmethod
2638
+ def __key_warning(key: str):
2639
+ suggest = None
2640
+ if key == "lastUpdatedTime":
2641
+ suggest = "last_updated_time"
2642
+ elif key == "resourceGuardOperationDetails":
2643
+ suggest = "resource_guard_operation_details"
2644
+ elif key == "resourceGuardResourceId":
2645
+ suggest = "resource_guard_resource_id"
2646
+
2647
+ if suggest:
2648
+ pulumi.log.warn(f"Key '{key}' not found in ResourceGuardProxyBaseResponse. Access the value via the '{suggest}' property getter instead.")
2649
+
2650
+ def __getitem__(self, key: str) -> Any:
2651
+ ResourceGuardProxyBaseResponse.__key_warning(key)
2652
+ return super().__getitem__(key)
2653
+
2654
+ def get(self, key: str, default = None) -> Any:
2655
+ ResourceGuardProxyBaseResponse.__key_warning(key)
2656
+ return super().get(key, default)
2657
+
2658
+ def __init__(__self__, *,
2659
+ description: Optional[str] = None,
2660
+ last_updated_time: Optional[str] = None,
2661
+ resource_guard_operation_details: Optional[Sequence['outputs.ResourceGuardOperationDetailResponse']] = None,
2662
+ resource_guard_resource_id: Optional[str] = None):
2663
+ """
2664
+ ResourceGuardProxyBase object, used in ResourceGuardProxyBaseResource
2665
+ """
2666
+ if description is not None:
2667
+ pulumi.set(__self__, "description", description)
2668
+ if last_updated_time is not None:
2669
+ pulumi.set(__self__, "last_updated_time", last_updated_time)
2670
+ if resource_guard_operation_details is not None:
2671
+ pulumi.set(__self__, "resource_guard_operation_details", resource_guard_operation_details)
2672
+ if resource_guard_resource_id is not None:
2673
+ pulumi.set(__self__, "resource_guard_resource_id", resource_guard_resource_id)
2674
+
2675
+ @property
2676
+ @pulumi.getter
2677
+ def description(self) -> Optional[str]:
2678
+ return pulumi.get(self, "description")
2679
+
2680
+ @property
2681
+ @pulumi.getter(name="lastUpdatedTime")
2682
+ def last_updated_time(self) -> Optional[str]:
2683
+ return pulumi.get(self, "last_updated_time")
2684
+
2685
+ @property
2686
+ @pulumi.getter(name="resourceGuardOperationDetails")
2687
+ def resource_guard_operation_details(self) -> Optional[Sequence['outputs.ResourceGuardOperationDetailResponse']]:
2688
+ return pulumi.get(self, "resource_guard_operation_details")
2689
+
2690
+ @property
2691
+ @pulumi.getter(name="resourceGuardResourceId")
2692
+ def resource_guard_resource_id(self) -> Optional[str]:
2693
+ return pulumi.get(self, "resource_guard_resource_id")
2694
+
2695
+
2696
+ @pulumi.output_type
2697
+ class ResourceGuardResponse(dict):
2698
+ @staticmethod
2699
+ def __key_warning(key: str):
2700
+ suggest = None
2701
+ if key == "allowAutoApprovals":
2702
+ suggest = "allow_auto_approvals"
2703
+ elif key == "provisioningState":
2704
+ suggest = "provisioning_state"
2705
+ elif key == "resourceGuardOperations":
2706
+ suggest = "resource_guard_operations"
2707
+ elif key == "vaultCriticalOperationExclusionList":
2708
+ suggest = "vault_critical_operation_exclusion_list"
2709
+
2710
+ if suggest:
2711
+ pulumi.log.warn(f"Key '{key}' not found in ResourceGuardResponse. Access the value via the '{suggest}' property getter instead.")
2712
+
2713
+ def __getitem__(self, key: str) -> Any:
2714
+ ResourceGuardResponse.__key_warning(key)
2715
+ return super().__getitem__(key)
2716
+
2717
+ def get(self, key: str, default = None) -> Any:
2718
+ ResourceGuardResponse.__key_warning(key)
2719
+ return super().get(key, default)
2720
+
2721
+ def __init__(__self__, *,
2722
+ allow_auto_approvals: bool,
2723
+ description: str,
2724
+ provisioning_state: str,
2725
+ resource_guard_operations: Sequence['outputs.ResourceGuardOperationResponse'],
2726
+ vault_critical_operation_exclusion_list: Optional[Sequence[str]] = None):
2727
+ """
2728
+ :param bool allow_auto_approvals: This flag indicates whether auto approval is allowed or not.
2729
+ :param str description: Description about the pre-req steps to perform all the critical operations.
2730
+ :param str provisioning_state: Provisioning state of the BackupVault resource
2731
+ :param Sequence['ResourceGuardOperationResponse'] resource_guard_operations: {readonly} List of operation details those are protected by the ResourceGuard resource
2732
+ :param Sequence[str] vault_critical_operation_exclusion_list: List of critical operations which are not protected by this resourceGuard
2733
+ """
2734
+ pulumi.set(__self__, "allow_auto_approvals", allow_auto_approvals)
2735
+ pulumi.set(__self__, "description", description)
2736
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
2737
+ pulumi.set(__self__, "resource_guard_operations", resource_guard_operations)
2738
+ if vault_critical_operation_exclusion_list is not None:
2739
+ pulumi.set(__self__, "vault_critical_operation_exclusion_list", vault_critical_operation_exclusion_list)
2740
+
2741
+ @property
2742
+ @pulumi.getter(name="allowAutoApprovals")
2743
+ def allow_auto_approvals(self) -> bool:
2744
+ """
2745
+ This flag indicates whether auto approval is allowed or not.
2746
+ """
2747
+ return pulumi.get(self, "allow_auto_approvals")
2748
+
2749
+ @property
2750
+ @pulumi.getter
2751
+ def description(self) -> str:
2752
+ """
2753
+ Description about the pre-req steps to perform all the critical operations.
2754
+ """
2755
+ return pulumi.get(self, "description")
2756
+
2757
+ @property
2758
+ @pulumi.getter(name="provisioningState")
2759
+ def provisioning_state(self) -> str:
2760
+ """
2761
+ Provisioning state of the BackupVault resource
2762
+ """
2763
+ return pulumi.get(self, "provisioning_state")
2764
+
2765
+ @property
2766
+ @pulumi.getter(name="resourceGuardOperations")
2767
+ def resource_guard_operations(self) -> Sequence['outputs.ResourceGuardOperationResponse']:
2768
+ """
2769
+ {readonly} List of operation details those are protected by the ResourceGuard resource
2770
+ """
2771
+ return pulumi.get(self, "resource_guard_operations")
2772
+
2773
+ @property
2774
+ @pulumi.getter(name="vaultCriticalOperationExclusionList")
2775
+ def vault_critical_operation_exclusion_list(self) -> Optional[Sequence[str]]:
2776
+ """
2777
+ List of critical operations which are not protected by this resourceGuard
2778
+ """
2779
+ return pulumi.get(self, "vault_critical_operation_exclusion_list")
2780
+
2781
+
2782
+ @pulumi.output_type
2783
+ class ResourceMoveDetailsResponse(dict):
2784
+ """
2785
+ ResourceMoveDetails will be returned in response to GetResource call from ARM
2786
+ """
2787
+ @staticmethod
2788
+ def __key_warning(key: str):
2789
+ suggest = None
2790
+ if key == "completionTimeUtc":
2791
+ suggest = "completion_time_utc"
2792
+ elif key == "operationId":
2793
+ suggest = "operation_id"
2794
+ elif key == "sourceResourcePath":
2795
+ suggest = "source_resource_path"
2796
+ elif key == "startTimeUtc":
2797
+ suggest = "start_time_utc"
2798
+ elif key == "targetResourcePath":
2799
+ suggest = "target_resource_path"
2800
+
2801
+ if suggest:
2802
+ pulumi.log.warn(f"Key '{key}' not found in ResourceMoveDetailsResponse. Access the value via the '{suggest}' property getter instead.")
2803
+
2804
+ def __getitem__(self, key: str) -> Any:
2805
+ ResourceMoveDetailsResponse.__key_warning(key)
2806
+ return super().__getitem__(key)
2807
+
2808
+ def get(self, key: str, default = None) -> Any:
2809
+ ResourceMoveDetailsResponse.__key_warning(key)
2810
+ return super().get(key, default)
2811
+
2812
+ def __init__(__self__, *,
2813
+ completion_time_utc: Optional[str] = None,
2814
+ operation_id: Optional[str] = None,
2815
+ source_resource_path: Optional[str] = None,
2816
+ start_time_utc: Optional[str] = None,
2817
+ target_resource_path: Optional[str] = None):
2818
+ """
2819
+ ResourceMoveDetails will be returned in response to GetResource call from ARM
2820
+ :param str completion_time_utc: Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
2821
+ :param str operation_id: CorrelationId of latest ResourceMove operation attempted
2822
+ :param str source_resource_path: ARM resource path of source resource
2823
+ :param str start_time_utc: Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
2824
+ :param str target_resource_path: ARM resource path of target resource used in latest ResourceMove operation
2825
+ """
2826
+ if completion_time_utc is not None:
2827
+ pulumi.set(__self__, "completion_time_utc", completion_time_utc)
2828
+ if operation_id is not None:
2829
+ pulumi.set(__self__, "operation_id", operation_id)
2830
+ if source_resource_path is not None:
2831
+ pulumi.set(__self__, "source_resource_path", source_resource_path)
2832
+ if start_time_utc is not None:
2833
+ pulumi.set(__self__, "start_time_utc", start_time_utc)
2834
+ if target_resource_path is not None:
2835
+ pulumi.set(__self__, "target_resource_path", target_resource_path)
2836
+
2837
+ @property
2838
+ @pulumi.getter(name="completionTimeUtc")
2839
+ def completion_time_utc(self) -> Optional[str]:
2840
+ """
2841
+ Completion time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
2842
+ """
2843
+ return pulumi.get(self, "completion_time_utc")
2844
+
2845
+ @property
2846
+ @pulumi.getter(name="operationId")
2847
+ def operation_id(self) -> Optional[str]:
2848
+ """
2849
+ CorrelationId of latest ResourceMove operation attempted
2850
+ """
2851
+ return pulumi.get(self, "operation_id")
2852
+
2853
+ @property
2854
+ @pulumi.getter(name="sourceResourcePath")
2855
+ def source_resource_path(self) -> Optional[str]:
2856
+ """
2857
+ ARM resource path of source resource
2858
+ """
2859
+ return pulumi.get(self, "source_resource_path")
2860
+
2861
+ @property
2862
+ @pulumi.getter(name="startTimeUtc")
2863
+ def start_time_utc(self) -> Optional[str]:
2864
+ """
2865
+ Start time in UTC of latest ResourceMove operation attempted. ISO 8601 format.
2866
+ """
2867
+ return pulumi.get(self, "start_time_utc")
2868
+
2869
+ @property
2870
+ @pulumi.getter(name="targetResourcePath")
2871
+ def target_resource_path(self) -> Optional[str]:
2872
+ """
2873
+ ARM resource path of target resource used in latest ResourceMove operation
2874
+ """
2875
+ return pulumi.get(self, "target_resource_path")
2876
+
2877
+
2878
+ @pulumi.output_type
2879
+ class RetentionTagResponse(dict):
2880
+ """
2881
+ Retention tag
2882
+ """
2883
+ @staticmethod
2884
+ def __key_warning(key: str):
2885
+ suggest = None
2886
+ if key == "eTag":
2887
+ suggest = "e_tag"
2888
+ elif key == "tagName":
2889
+ suggest = "tag_name"
2890
+
2891
+ if suggest:
2892
+ pulumi.log.warn(f"Key '{key}' not found in RetentionTagResponse. Access the value via the '{suggest}' property getter instead.")
2893
+
2894
+ def __getitem__(self, key: str) -> Any:
2895
+ RetentionTagResponse.__key_warning(key)
2896
+ return super().__getitem__(key)
2897
+
2898
+ def get(self, key: str, default = None) -> Any:
2899
+ RetentionTagResponse.__key_warning(key)
2900
+ return super().get(key, default)
2901
+
2902
+ def __init__(__self__, *,
2903
+ e_tag: str,
2904
+ id: str,
2905
+ tag_name: str):
2906
+ """
2907
+ Retention tag
2908
+ :param str e_tag: Retention Tag version.
2909
+ :param str id: Retention Tag version.
2910
+ :param str tag_name: Retention Tag Name to relate it to retention rule.
2911
+ """
2912
+ pulumi.set(__self__, "e_tag", e_tag)
2913
+ pulumi.set(__self__, "id", id)
2914
+ pulumi.set(__self__, "tag_name", tag_name)
2915
+
2916
+ @property
2917
+ @pulumi.getter(name="eTag")
2918
+ def e_tag(self) -> str:
2919
+ """
2920
+ Retention Tag version.
2921
+ """
2922
+ return pulumi.get(self, "e_tag")
2923
+
2924
+ @property
2925
+ @pulumi.getter
2926
+ def id(self) -> str:
2927
+ """
2928
+ Retention Tag version.
2929
+ """
2930
+ return pulumi.get(self, "id")
2931
+
2932
+ @property
2933
+ @pulumi.getter(name="tagName")
2934
+ def tag_name(self) -> str:
2935
+ """
2936
+ Retention Tag Name to relate it to retention rule.
2937
+ """
2938
+ return pulumi.get(self, "tag_name")
2939
+
2940
+
2941
+ @pulumi.output_type
2942
+ class ScheduleBasedBackupCriteriaResponse(dict):
2943
+ """
2944
+ Schedule based backup criteria
2945
+ """
2946
+ @staticmethod
2947
+ def __key_warning(key: str):
2948
+ suggest = None
2949
+ if key == "objectType":
2950
+ suggest = "object_type"
2951
+ elif key == "absoluteCriteria":
2952
+ suggest = "absolute_criteria"
2953
+ elif key == "daysOfMonth":
2954
+ suggest = "days_of_month"
2955
+ elif key == "daysOfTheWeek":
2956
+ suggest = "days_of_the_week"
2957
+ elif key == "monthsOfYear":
2958
+ suggest = "months_of_year"
2959
+ elif key == "scheduleTimes":
2960
+ suggest = "schedule_times"
2961
+ elif key == "weeksOfTheMonth":
2962
+ suggest = "weeks_of_the_month"
2963
+
2964
+ if suggest:
2965
+ pulumi.log.warn(f"Key '{key}' not found in ScheduleBasedBackupCriteriaResponse. Access the value via the '{suggest}' property getter instead.")
2966
+
2967
+ def __getitem__(self, key: str) -> Any:
2968
+ ScheduleBasedBackupCriteriaResponse.__key_warning(key)
2969
+ return super().__getitem__(key)
2970
+
2971
+ def get(self, key: str, default = None) -> Any:
2972
+ ScheduleBasedBackupCriteriaResponse.__key_warning(key)
2973
+ return super().get(key, default)
2974
+
2975
+ def __init__(__self__, *,
2976
+ object_type: str,
2977
+ absolute_criteria: Optional[Sequence[str]] = None,
2978
+ days_of_month: Optional[Sequence['outputs.DayResponse']] = None,
2979
+ days_of_the_week: Optional[Sequence[str]] = None,
2980
+ months_of_year: Optional[Sequence[str]] = None,
2981
+ schedule_times: Optional[Sequence[str]] = None,
2982
+ weeks_of_the_month: Optional[Sequence[str]] = None):
2983
+ """
2984
+ Schedule based backup criteria
2985
+ :param str object_type: Type of the specific object - used for deserializing
2986
+ Expected value is 'ScheduleBasedBackupCriteria'.
2987
+ :param Sequence[str] absolute_criteria: it contains absolute values like "AllBackup" / "FirstOfDay" / "FirstOfWeek" / "FirstOfMonth"
2988
+ and should be part of AbsoluteMarker enum
2989
+ :param Sequence['DayResponse'] days_of_month: This is day of the month from 1 to 28 other wise last of month
2990
+ :param Sequence[str] days_of_the_week: It should be Sunday/Monday/T..../Saturday
2991
+ :param Sequence[str] months_of_year: It should be January/February/....../December
2992
+ :param Sequence[str] schedule_times: List of schedule times for backup
2993
+ :param Sequence[str] weeks_of_the_month: It should be First/Second/Third/Fourth/Last
2994
+ """
2995
+ pulumi.set(__self__, "object_type", 'ScheduleBasedBackupCriteria')
2996
+ if absolute_criteria is not None:
2997
+ pulumi.set(__self__, "absolute_criteria", absolute_criteria)
2998
+ if days_of_month is not None:
2999
+ pulumi.set(__self__, "days_of_month", days_of_month)
3000
+ if days_of_the_week is not None:
3001
+ pulumi.set(__self__, "days_of_the_week", days_of_the_week)
3002
+ if months_of_year is not None:
3003
+ pulumi.set(__self__, "months_of_year", months_of_year)
3004
+ if schedule_times is not None:
3005
+ pulumi.set(__self__, "schedule_times", schedule_times)
3006
+ if weeks_of_the_month is not None:
3007
+ pulumi.set(__self__, "weeks_of_the_month", weeks_of_the_month)
3008
+
3009
+ @property
3010
+ @pulumi.getter(name="objectType")
3011
+ def object_type(self) -> str:
3012
+ """
3013
+ Type of the specific object - used for deserializing
3014
+ Expected value is 'ScheduleBasedBackupCriteria'.
3015
+ """
3016
+ return pulumi.get(self, "object_type")
3017
+
3018
+ @property
3019
+ @pulumi.getter(name="absoluteCriteria")
3020
+ def absolute_criteria(self) -> Optional[Sequence[str]]:
3021
+ """
3022
+ it contains absolute values like "AllBackup" / "FirstOfDay" / "FirstOfWeek" / "FirstOfMonth"
3023
+ and should be part of AbsoluteMarker enum
3024
+ """
3025
+ return pulumi.get(self, "absolute_criteria")
3026
+
3027
+ @property
3028
+ @pulumi.getter(name="daysOfMonth")
3029
+ def days_of_month(self) -> Optional[Sequence['outputs.DayResponse']]:
3030
+ """
3031
+ This is day of the month from 1 to 28 other wise last of month
3032
+ """
3033
+ return pulumi.get(self, "days_of_month")
3034
+
3035
+ @property
3036
+ @pulumi.getter(name="daysOfTheWeek")
3037
+ def days_of_the_week(self) -> Optional[Sequence[str]]:
3038
+ """
3039
+ It should be Sunday/Monday/T..../Saturday
3040
+ """
3041
+ return pulumi.get(self, "days_of_the_week")
3042
+
3043
+ @property
3044
+ @pulumi.getter(name="monthsOfYear")
3045
+ def months_of_year(self) -> Optional[Sequence[str]]:
3046
+ """
3047
+ It should be January/February/....../December
3048
+ """
3049
+ return pulumi.get(self, "months_of_year")
3050
+
3051
+ @property
3052
+ @pulumi.getter(name="scheduleTimes")
3053
+ def schedule_times(self) -> Optional[Sequence[str]]:
3054
+ """
3055
+ List of schedule times for backup
3056
+ """
3057
+ return pulumi.get(self, "schedule_times")
3058
+
3059
+ @property
3060
+ @pulumi.getter(name="weeksOfTheMonth")
3061
+ def weeks_of_the_month(self) -> Optional[Sequence[str]]:
3062
+ """
3063
+ It should be First/Second/Third/Fourth/Last
3064
+ """
3065
+ return pulumi.get(self, "weeks_of_the_month")
3066
+
3067
+
3068
+ @pulumi.output_type
3069
+ class ScheduleBasedTriggerContextResponse(dict):
3070
+ """
3071
+ Schedule based trigger context
3072
+ """
3073
+ @staticmethod
3074
+ def __key_warning(key: str):
3075
+ suggest = None
3076
+ if key == "objectType":
3077
+ suggest = "object_type"
3078
+ elif key == "taggingCriteria":
3079
+ suggest = "tagging_criteria"
3080
+
3081
+ if suggest:
3082
+ pulumi.log.warn(f"Key '{key}' not found in ScheduleBasedTriggerContextResponse. Access the value via the '{suggest}' property getter instead.")
3083
+
3084
+ def __getitem__(self, key: str) -> Any:
3085
+ ScheduleBasedTriggerContextResponse.__key_warning(key)
3086
+ return super().__getitem__(key)
3087
+
3088
+ def get(self, key: str, default = None) -> Any:
3089
+ ScheduleBasedTriggerContextResponse.__key_warning(key)
3090
+ return super().get(key, default)
3091
+
3092
+ def __init__(__self__, *,
3093
+ object_type: str,
3094
+ schedule: 'outputs.BackupScheduleResponse',
3095
+ tagging_criteria: Sequence['outputs.TaggingCriteriaResponse']):
3096
+ """
3097
+ Schedule based trigger context
3098
+ :param str object_type: Type of the specific object - used for deserializing
3099
+ Expected value is 'ScheduleBasedTriggerContext'.
3100
+ :param 'BackupScheduleResponse' schedule: Schedule for this backup
3101
+ :param Sequence['TaggingCriteriaResponse'] tagging_criteria: List of tags that can be applicable for given schedule.
3102
+ """
3103
+ pulumi.set(__self__, "object_type", 'ScheduleBasedTriggerContext')
3104
+ pulumi.set(__self__, "schedule", schedule)
3105
+ pulumi.set(__self__, "tagging_criteria", tagging_criteria)
3106
+
3107
+ @property
3108
+ @pulumi.getter(name="objectType")
3109
+ def object_type(self) -> str:
3110
+ """
3111
+ Type of the specific object - used for deserializing
3112
+ Expected value is 'ScheduleBasedTriggerContext'.
3113
+ """
3114
+ return pulumi.get(self, "object_type")
3115
+
3116
+ @property
3117
+ @pulumi.getter
3118
+ def schedule(self) -> 'outputs.BackupScheduleResponse':
3119
+ """
3120
+ Schedule for this backup
3121
+ """
3122
+ return pulumi.get(self, "schedule")
3123
+
3124
+ @property
3125
+ @pulumi.getter(name="taggingCriteria")
3126
+ def tagging_criteria(self) -> Sequence['outputs.TaggingCriteriaResponse']:
3127
+ """
3128
+ List of tags that can be applicable for given schedule.
3129
+ """
3130
+ return pulumi.get(self, "tagging_criteria")
3131
+
3132
+
3133
+ @pulumi.output_type
3134
+ class SecretStoreBasedAuthCredentialsResponse(dict):
3135
+ """
3136
+ Secret store based authentication credentials.
3137
+ """
3138
+ @staticmethod
3139
+ def __key_warning(key: str):
3140
+ suggest = None
3141
+ if key == "objectType":
3142
+ suggest = "object_type"
3143
+ elif key == "secretStoreResource":
3144
+ suggest = "secret_store_resource"
3145
+
3146
+ if suggest:
3147
+ pulumi.log.warn(f"Key '{key}' not found in SecretStoreBasedAuthCredentialsResponse. Access the value via the '{suggest}' property getter instead.")
3148
+
3149
+ def __getitem__(self, key: str) -> Any:
3150
+ SecretStoreBasedAuthCredentialsResponse.__key_warning(key)
3151
+ return super().__getitem__(key)
3152
+
3153
+ def get(self, key: str, default = None) -> Any:
3154
+ SecretStoreBasedAuthCredentialsResponse.__key_warning(key)
3155
+ return super().get(key, default)
3156
+
3157
+ def __init__(__self__, *,
3158
+ object_type: str,
3159
+ secret_store_resource: Optional['outputs.SecretStoreResourceResponse'] = None):
3160
+ """
3161
+ Secret store based authentication credentials.
3162
+ :param str object_type: Type of the specific object - used for deserializing
3163
+ Expected value is 'SecretStoreBasedAuthCredentials'.
3164
+ :param 'SecretStoreResourceResponse' secret_store_resource: Secret store resource
3165
+ """
3166
+ pulumi.set(__self__, "object_type", 'SecretStoreBasedAuthCredentials')
3167
+ if secret_store_resource is not None:
3168
+ pulumi.set(__self__, "secret_store_resource", secret_store_resource)
3169
+
3170
+ @property
3171
+ @pulumi.getter(name="objectType")
3172
+ def object_type(self) -> str:
3173
+ """
3174
+ Type of the specific object - used for deserializing
3175
+ Expected value is 'SecretStoreBasedAuthCredentials'.
3176
+ """
3177
+ return pulumi.get(self, "object_type")
3178
+
3179
+ @property
3180
+ @pulumi.getter(name="secretStoreResource")
3181
+ def secret_store_resource(self) -> Optional['outputs.SecretStoreResourceResponse']:
3182
+ """
3183
+ Secret store resource
3184
+ """
3185
+ return pulumi.get(self, "secret_store_resource")
3186
+
3187
+
3188
+ @pulumi.output_type
3189
+ class SecretStoreResourceResponse(dict):
3190
+ """
3191
+ Class representing a secret store resource.
3192
+ """
3193
+ @staticmethod
3194
+ def __key_warning(key: str):
3195
+ suggest = None
3196
+ if key == "secretStoreType":
3197
+ suggest = "secret_store_type"
3198
+
3199
+ if suggest:
3200
+ pulumi.log.warn(f"Key '{key}' not found in SecretStoreResourceResponse. Access the value via the '{suggest}' property getter instead.")
3201
+
3202
+ def __getitem__(self, key: str) -> Any:
3203
+ SecretStoreResourceResponse.__key_warning(key)
3204
+ return super().__getitem__(key)
3205
+
3206
+ def get(self, key: str, default = None) -> Any:
3207
+ SecretStoreResourceResponse.__key_warning(key)
3208
+ return super().get(key, default)
3209
+
3210
+ def __init__(__self__, *,
3211
+ secret_store_type: str,
3212
+ uri: Optional[str] = None,
3213
+ value: Optional[str] = None):
3214
+ """
3215
+ Class representing a secret store resource.
3216
+ :param str secret_store_type: Gets or sets the type of secret store
3217
+ :param str uri: Uri to get to the resource
3218
+ :param str value: Gets or sets value stored in secret store resource
3219
+ """
3220
+ pulumi.set(__self__, "secret_store_type", secret_store_type)
3221
+ if uri is not None:
3222
+ pulumi.set(__self__, "uri", uri)
3223
+ if value is not None:
3224
+ pulumi.set(__self__, "value", value)
3225
+
3226
+ @property
3227
+ @pulumi.getter(name="secretStoreType")
3228
+ def secret_store_type(self) -> str:
3229
+ """
3230
+ Gets or sets the type of secret store
3231
+ """
3232
+ return pulumi.get(self, "secret_store_type")
3233
+
3234
+ @property
3235
+ @pulumi.getter
3236
+ def uri(self) -> Optional[str]:
3237
+ """
3238
+ Uri to get to the resource
3239
+ """
3240
+ return pulumi.get(self, "uri")
3241
+
3242
+ @property
3243
+ @pulumi.getter
3244
+ def value(self) -> Optional[str]:
3245
+ """
3246
+ Gets or sets value stored in secret store resource
3247
+ """
3248
+ return pulumi.get(self, "value")
3249
+
3250
+
3251
+ @pulumi.output_type
3252
+ class SecuritySettingsResponse(dict):
3253
+ """
3254
+ Class containing security settings of vault
3255
+ """
3256
+ @staticmethod
3257
+ def __key_warning(key: str):
3258
+ suggest = None
3259
+ if key == "encryptionSettings":
3260
+ suggest = "encryption_settings"
3261
+ elif key == "immutabilitySettings":
3262
+ suggest = "immutability_settings"
3263
+ elif key == "softDeleteSettings":
3264
+ suggest = "soft_delete_settings"
3265
+
3266
+ if suggest:
3267
+ pulumi.log.warn(f"Key '{key}' not found in SecuritySettingsResponse. Access the value via the '{suggest}' property getter instead.")
3268
+
3269
+ def __getitem__(self, key: str) -> Any:
3270
+ SecuritySettingsResponse.__key_warning(key)
3271
+ return super().__getitem__(key)
3272
+
3273
+ def get(self, key: str, default = None) -> Any:
3274
+ SecuritySettingsResponse.__key_warning(key)
3275
+ return super().get(key, default)
3276
+
3277
+ def __init__(__self__, *,
3278
+ encryption_settings: Optional['outputs.EncryptionSettingsResponse'] = None,
3279
+ immutability_settings: Optional['outputs.ImmutabilitySettingsResponse'] = None,
3280
+ soft_delete_settings: Optional['outputs.SoftDeleteSettingsResponse'] = None):
3281
+ """
3282
+ Class containing security settings of vault
3283
+ :param 'EncryptionSettingsResponse' encryption_settings: Customer Managed Key details of the resource.
3284
+ :param 'ImmutabilitySettingsResponse' immutability_settings: Immutability Settings at vault level
3285
+ :param 'SoftDeleteSettingsResponse' soft_delete_settings: Soft delete related settings
3286
+ """
3287
+ if encryption_settings is not None:
3288
+ pulumi.set(__self__, "encryption_settings", encryption_settings)
3289
+ if immutability_settings is not None:
3290
+ pulumi.set(__self__, "immutability_settings", immutability_settings)
3291
+ if soft_delete_settings is not None:
3292
+ pulumi.set(__self__, "soft_delete_settings", soft_delete_settings)
3293
+
3294
+ @property
3295
+ @pulumi.getter(name="encryptionSettings")
3296
+ def encryption_settings(self) -> Optional['outputs.EncryptionSettingsResponse']:
3297
+ """
3298
+ Customer Managed Key details of the resource.
3299
+ """
3300
+ return pulumi.get(self, "encryption_settings")
3301
+
3302
+ @property
3303
+ @pulumi.getter(name="immutabilitySettings")
3304
+ def immutability_settings(self) -> Optional['outputs.ImmutabilitySettingsResponse']:
3305
+ """
3306
+ Immutability Settings at vault level
3307
+ """
3308
+ return pulumi.get(self, "immutability_settings")
3309
+
3310
+ @property
3311
+ @pulumi.getter(name="softDeleteSettings")
3312
+ def soft_delete_settings(self) -> Optional['outputs.SoftDeleteSettingsResponse']:
3313
+ """
3314
+ Soft delete related settings
3315
+ """
3316
+ return pulumi.get(self, "soft_delete_settings")
3317
+
3318
+
3319
+ @pulumi.output_type
3320
+ class SoftDeleteSettingsResponse(dict):
3321
+ """
3322
+ Soft delete related settings
3323
+ """
3324
+ @staticmethod
3325
+ def __key_warning(key: str):
3326
+ suggest = None
3327
+ if key == "retentionDurationInDays":
3328
+ suggest = "retention_duration_in_days"
3329
+
3330
+ if suggest:
3331
+ pulumi.log.warn(f"Key '{key}' not found in SoftDeleteSettingsResponse. Access the value via the '{suggest}' property getter instead.")
3332
+
3333
+ def __getitem__(self, key: str) -> Any:
3334
+ SoftDeleteSettingsResponse.__key_warning(key)
3335
+ return super().__getitem__(key)
3336
+
3337
+ def get(self, key: str, default = None) -> Any:
3338
+ SoftDeleteSettingsResponse.__key_warning(key)
3339
+ return super().get(key, default)
3340
+
3341
+ def __init__(__self__, *,
3342
+ retention_duration_in_days: Optional[float] = None,
3343
+ state: Optional[str] = None):
3344
+ """
3345
+ Soft delete related settings
3346
+ :param float retention_duration_in_days: Soft delete retention duration
3347
+ :param str state: State of soft delete
3348
+ """
3349
+ if retention_duration_in_days is not None:
3350
+ pulumi.set(__self__, "retention_duration_in_days", retention_duration_in_days)
3351
+ if state is not None:
3352
+ pulumi.set(__self__, "state", state)
3353
+
3354
+ @property
3355
+ @pulumi.getter(name="retentionDurationInDays")
3356
+ def retention_duration_in_days(self) -> Optional[float]:
3357
+ """
3358
+ Soft delete retention duration
3359
+ """
3360
+ return pulumi.get(self, "retention_duration_in_days")
3361
+
3362
+ @property
3363
+ @pulumi.getter
3364
+ def state(self) -> Optional[str]:
3365
+ """
3366
+ State of soft delete
3367
+ """
3368
+ return pulumi.get(self, "state")
3369
+
3370
+
3371
+ @pulumi.output_type
3372
+ class SourceLifeCycleResponse(dict):
3373
+ """
3374
+ Source LifeCycle
3375
+ """
3376
+ @staticmethod
3377
+ def __key_warning(key: str):
3378
+ suggest = None
3379
+ if key == "deleteAfter":
3380
+ suggest = "delete_after"
3381
+ elif key == "sourceDataStore":
3382
+ suggest = "source_data_store"
3383
+ elif key == "targetDataStoreCopySettings":
3384
+ suggest = "target_data_store_copy_settings"
3385
+
3386
+ if suggest:
3387
+ pulumi.log.warn(f"Key '{key}' not found in SourceLifeCycleResponse. Access the value via the '{suggest}' property getter instead.")
3388
+
3389
+ def __getitem__(self, key: str) -> Any:
3390
+ SourceLifeCycleResponse.__key_warning(key)
3391
+ return super().__getitem__(key)
3392
+
3393
+ def get(self, key: str, default = None) -> Any:
3394
+ SourceLifeCycleResponse.__key_warning(key)
3395
+ return super().get(key, default)
3396
+
3397
+ def __init__(__self__, *,
3398
+ delete_after: 'outputs.AbsoluteDeleteOptionResponse',
3399
+ source_data_store: 'outputs.DataStoreInfoBaseResponse',
3400
+ target_data_store_copy_settings: Optional[Sequence['outputs.TargetCopySettingResponse']] = None):
3401
+ """
3402
+ Source LifeCycle
3403
+ :param 'AbsoluteDeleteOptionResponse' delete_after: Delete Option
3404
+ :param 'DataStoreInfoBaseResponse' source_data_store: DataStoreInfo base
3405
+ """
3406
+ pulumi.set(__self__, "delete_after", delete_after)
3407
+ pulumi.set(__self__, "source_data_store", source_data_store)
3408
+ if target_data_store_copy_settings is not None:
3409
+ pulumi.set(__self__, "target_data_store_copy_settings", target_data_store_copy_settings)
3410
+
3411
+ @property
3412
+ @pulumi.getter(name="deleteAfter")
3413
+ def delete_after(self) -> 'outputs.AbsoluteDeleteOptionResponse':
3414
+ """
3415
+ Delete Option
3416
+ """
3417
+ return pulumi.get(self, "delete_after")
3418
+
3419
+ @property
3420
+ @pulumi.getter(name="sourceDataStore")
3421
+ def source_data_store(self) -> 'outputs.DataStoreInfoBaseResponse':
3422
+ """
3423
+ DataStoreInfo base
3424
+ """
3425
+ return pulumi.get(self, "source_data_store")
3426
+
3427
+ @property
3428
+ @pulumi.getter(name="targetDataStoreCopySettings")
3429
+ def target_data_store_copy_settings(self) -> Optional[Sequence['outputs.TargetCopySettingResponse']]:
3430
+ return pulumi.get(self, "target_data_store_copy_settings")
3431
+
3432
+
3433
+ @pulumi.output_type
3434
+ class StorageSettingResponse(dict):
3435
+ """
3436
+ Storage setting
3437
+ """
3438
+ @staticmethod
3439
+ def __key_warning(key: str):
3440
+ suggest = None
3441
+ if key == "datastoreType":
3442
+ suggest = "datastore_type"
3443
+
3444
+ if suggest:
3445
+ pulumi.log.warn(f"Key '{key}' not found in StorageSettingResponse. Access the value via the '{suggest}' property getter instead.")
3446
+
3447
+ def __getitem__(self, key: str) -> Any:
3448
+ StorageSettingResponse.__key_warning(key)
3449
+ return super().__getitem__(key)
3450
+
3451
+ def get(self, key: str, default = None) -> Any:
3452
+ StorageSettingResponse.__key_warning(key)
3453
+ return super().get(key, default)
3454
+
3455
+ def __init__(__self__, *,
3456
+ datastore_type: Optional[str] = None,
3457
+ type: Optional[str] = None):
3458
+ """
3459
+ Storage setting
3460
+ :param str datastore_type: Gets or sets the type of the datastore.
3461
+ :param str type: Gets or sets the type.
3462
+ """
3463
+ if datastore_type is not None:
3464
+ pulumi.set(__self__, "datastore_type", datastore_type)
3465
+ if type is not None:
3466
+ pulumi.set(__self__, "type", type)
3467
+
3468
+ @property
3469
+ @pulumi.getter(name="datastoreType")
3470
+ def datastore_type(self) -> Optional[str]:
3471
+ """
3472
+ Gets or sets the type of the datastore.
3473
+ """
3474
+ return pulumi.get(self, "datastore_type")
3475
+
3476
+ @property
3477
+ @pulumi.getter
3478
+ def type(self) -> Optional[str]:
3479
+ """
3480
+ Gets or sets the type.
3481
+ """
3482
+ return pulumi.get(self, "type")
3483
+
3484
+
3485
+ @pulumi.output_type
3486
+ class SystemDataResponse(dict):
3487
+ """
3488
+ Metadata pertaining to creation and last modification of the resource.
3489
+ """
3490
+ @staticmethod
3491
+ def __key_warning(key: str):
3492
+ suggest = None
3493
+ if key == "createdAt":
3494
+ suggest = "created_at"
3495
+ elif key == "createdBy":
3496
+ suggest = "created_by"
3497
+ elif key == "createdByType":
3498
+ suggest = "created_by_type"
3499
+ elif key == "lastModifiedAt":
3500
+ suggest = "last_modified_at"
3501
+ elif key == "lastModifiedBy":
3502
+ suggest = "last_modified_by"
3503
+ elif key == "lastModifiedByType":
3504
+ suggest = "last_modified_by_type"
3505
+
3506
+ if suggest:
3507
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
3508
+
3509
+ def __getitem__(self, key: str) -> Any:
3510
+ SystemDataResponse.__key_warning(key)
3511
+ return super().__getitem__(key)
3512
+
3513
+ def get(self, key: str, default = None) -> Any:
3514
+ SystemDataResponse.__key_warning(key)
3515
+ return super().get(key, default)
3516
+
3517
+ def __init__(__self__, *,
3518
+ created_at: Optional[str] = None,
3519
+ created_by: Optional[str] = None,
3520
+ created_by_type: Optional[str] = None,
3521
+ last_modified_at: Optional[str] = None,
3522
+ last_modified_by: Optional[str] = None,
3523
+ last_modified_by_type: Optional[str] = None):
3524
+ """
3525
+ Metadata pertaining to creation and last modification of the resource.
3526
+ :param str created_at: The timestamp of resource creation (UTC).
3527
+ :param str created_by: The identity that created the resource.
3528
+ :param str created_by_type: The type of identity that created the resource.
3529
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
3530
+ :param str last_modified_by: The identity that last modified the resource.
3531
+ :param str last_modified_by_type: The type of identity that last modified the resource.
3532
+ """
3533
+ if created_at is not None:
3534
+ pulumi.set(__self__, "created_at", created_at)
3535
+ if created_by is not None:
3536
+ pulumi.set(__self__, "created_by", created_by)
3537
+ if created_by_type is not None:
3538
+ pulumi.set(__self__, "created_by_type", created_by_type)
3539
+ if last_modified_at is not None:
3540
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
3541
+ if last_modified_by is not None:
3542
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
3543
+ if last_modified_by_type is not None:
3544
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
3545
+
3546
+ @property
3547
+ @pulumi.getter(name="createdAt")
3548
+ def created_at(self) -> Optional[str]:
3549
+ """
3550
+ The timestamp of resource creation (UTC).
3551
+ """
3552
+ return pulumi.get(self, "created_at")
3553
+
3554
+ @property
3555
+ @pulumi.getter(name="createdBy")
3556
+ def created_by(self) -> Optional[str]:
3557
+ """
3558
+ The identity that created the resource.
3559
+ """
3560
+ return pulumi.get(self, "created_by")
3561
+
3562
+ @property
3563
+ @pulumi.getter(name="createdByType")
3564
+ def created_by_type(self) -> Optional[str]:
3565
+ """
3566
+ The type of identity that created the resource.
3567
+ """
3568
+ return pulumi.get(self, "created_by_type")
3569
+
3570
+ @property
3571
+ @pulumi.getter(name="lastModifiedAt")
3572
+ def last_modified_at(self) -> Optional[str]:
3573
+ """
3574
+ The timestamp of resource last modification (UTC)
3575
+ """
3576
+ return pulumi.get(self, "last_modified_at")
3577
+
3578
+ @property
3579
+ @pulumi.getter(name="lastModifiedBy")
3580
+ def last_modified_by(self) -> Optional[str]:
3581
+ """
3582
+ The identity that last modified the resource.
3583
+ """
3584
+ return pulumi.get(self, "last_modified_by")
3585
+
3586
+ @property
3587
+ @pulumi.getter(name="lastModifiedByType")
3588
+ def last_modified_by_type(self) -> Optional[str]:
3589
+ """
3590
+ The type of identity that last modified the resource.
3591
+ """
3592
+ return pulumi.get(self, "last_modified_by_type")
3593
+
3594
+
3595
+ @pulumi.output_type
3596
+ class TaggingCriteriaResponse(dict):
3597
+ """
3598
+ Tagging criteria
3599
+ """
3600
+ @staticmethod
3601
+ def __key_warning(key: str):
3602
+ suggest = None
3603
+ if key == "isDefault":
3604
+ suggest = "is_default"
3605
+ elif key == "tagInfo":
3606
+ suggest = "tag_info"
3607
+ elif key == "taggingPriority":
3608
+ suggest = "tagging_priority"
3609
+
3610
+ if suggest:
3611
+ pulumi.log.warn(f"Key '{key}' not found in TaggingCriteriaResponse. Access the value via the '{suggest}' property getter instead.")
3612
+
3613
+ def __getitem__(self, key: str) -> Any:
3614
+ TaggingCriteriaResponse.__key_warning(key)
3615
+ return super().__getitem__(key)
3616
+
3617
+ def get(self, key: str, default = None) -> Any:
3618
+ TaggingCriteriaResponse.__key_warning(key)
3619
+ return super().get(key, default)
3620
+
3621
+ def __init__(__self__, *,
3622
+ is_default: bool,
3623
+ tag_info: 'outputs.RetentionTagResponse',
3624
+ tagging_priority: float,
3625
+ criteria: Optional[Sequence['outputs.ScheduleBasedBackupCriteriaResponse']] = None):
3626
+ """
3627
+ Tagging criteria
3628
+ :param bool is_default: Specifies if tag is default.
3629
+ :param 'RetentionTagResponse' tag_info: Retention tag information
3630
+ :param float tagging_priority: Retention Tag priority.
3631
+ :param Sequence['ScheduleBasedBackupCriteriaResponse'] criteria: Criteria which decides whether the tag can be applied to a triggered backup.
3632
+ """
3633
+ pulumi.set(__self__, "is_default", is_default)
3634
+ pulumi.set(__self__, "tag_info", tag_info)
3635
+ pulumi.set(__self__, "tagging_priority", tagging_priority)
3636
+ if criteria is not None:
3637
+ pulumi.set(__self__, "criteria", criteria)
3638
+
3639
+ @property
3640
+ @pulumi.getter(name="isDefault")
3641
+ def is_default(self) -> bool:
3642
+ """
3643
+ Specifies if tag is default.
3644
+ """
3645
+ return pulumi.get(self, "is_default")
3646
+
3647
+ @property
3648
+ @pulumi.getter(name="tagInfo")
3649
+ def tag_info(self) -> 'outputs.RetentionTagResponse':
3650
+ """
3651
+ Retention tag information
3652
+ """
3653
+ return pulumi.get(self, "tag_info")
3654
+
3655
+ @property
3656
+ @pulumi.getter(name="taggingPriority")
3657
+ def tagging_priority(self) -> float:
3658
+ """
3659
+ Retention Tag priority.
3660
+ """
3661
+ return pulumi.get(self, "tagging_priority")
3662
+
3663
+ @property
3664
+ @pulumi.getter
3665
+ def criteria(self) -> Optional[Sequence['outputs.ScheduleBasedBackupCriteriaResponse']]:
3666
+ """
3667
+ Criteria which decides whether the tag can be applied to a triggered backup.
3668
+ """
3669
+ return pulumi.get(self, "criteria")
3670
+
3671
+
3672
+ @pulumi.output_type
3673
+ class TargetCopySettingResponse(dict):
3674
+ """
3675
+ Target copy settings
3676
+ """
3677
+ @staticmethod
3678
+ def __key_warning(key: str):
3679
+ suggest = None
3680
+ if key == "copyAfter":
3681
+ suggest = "copy_after"
3682
+ elif key == "dataStore":
3683
+ suggest = "data_store"
3684
+
3685
+ if suggest:
3686
+ pulumi.log.warn(f"Key '{key}' not found in TargetCopySettingResponse. Access the value via the '{suggest}' property getter instead.")
3687
+
3688
+ def __getitem__(self, key: str) -> Any:
3689
+ TargetCopySettingResponse.__key_warning(key)
3690
+ return super().__getitem__(key)
3691
+
3692
+ def get(self, key: str, default = None) -> Any:
3693
+ TargetCopySettingResponse.__key_warning(key)
3694
+ return super().get(key, default)
3695
+
3696
+ def __init__(__self__, *,
3697
+ copy_after: Any,
3698
+ data_store: 'outputs.DataStoreInfoBaseResponse'):
3699
+ """
3700
+ Target copy settings
3701
+ :param Union['CopyOnExpiryOptionResponse', 'CustomCopyOptionResponse', 'ImmediateCopyOptionResponse'] copy_after: It can be CustomCopyOption or ImmediateCopyOption.
3702
+ :param 'DataStoreInfoBaseResponse' data_store: Info of target datastore
3703
+ """
3704
+ pulumi.set(__self__, "copy_after", copy_after)
3705
+ pulumi.set(__self__, "data_store", data_store)
3706
+
3707
+ @property
3708
+ @pulumi.getter(name="copyAfter")
3709
+ def copy_after(self) -> Any:
3710
+ """
3711
+ It can be CustomCopyOption or ImmediateCopyOption.
3712
+ """
3713
+ return pulumi.get(self, "copy_after")
3714
+
3715
+ @property
3716
+ @pulumi.getter(name="dataStore")
3717
+ def data_store(self) -> 'outputs.DataStoreInfoBaseResponse':
3718
+ """
3719
+ Info of target datastore
3720
+ """
3721
+ return pulumi.get(self, "data_store")
3722
+
3723
+
3724
+ @pulumi.output_type
3725
+ class UserAssignedIdentityResponse(dict):
3726
+ """
3727
+ User assigned identity properties
3728
+ """
3729
+ @staticmethod
3730
+ def __key_warning(key: str):
3731
+ suggest = None
3732
+ if key == "clientId":
3733
+ suggest = "client_id"
3734
+ elif key == "principalId":
3735
+ suggest = "principal_id"
3736
+
3737
+ if suggest:
3738
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
3739
+
3740
+ def __getitem__(self, key: str) -> Any:
3741
+ UserAssignedIdentityResponse.__key_warning(key)
3742
+ return super().__getitem__(key)
3743
+
3744
+ def get(self, key: str, default = None) -> Any:
3745
+ UserAssignedIdentityResponse.__key_warning(key)
3746
+ return super().get(key, default)
3747
+
3748
+ def __init__(__self__, *,
3749
+ client_id: str,
3750
+ principal_id: str):
3751
+ """
3752
+ User assigned identity properties
3753
+ :param str client_id: The client ID of the assigned identity.
3754
+ :param str principal_id: The principal ID of the assigned identity.
3755
+ """
3756
+ pulumi.set(__self__, "client_id", client_id)
3757
+ pulumi.set(__self__, "principal_id", principal_id)
3758
+
3759
+ @property
3760
+ @pulumi.getter(name="clientId")
3761
+ def client_id(self) -> str:
3762
+ """
3763
+ The client ID of the assigned identity.
3764
+ """
3765
+ return pulumi.get(self, "client_id")
3766
+
3767
+ @property
3768
+ @pulumi.getter(name="principalId")
3769
+ def principal_id(self) -> str:
3770
+ """
3771
+ The principal ID of the assigned identity.
3772
+ """
3773
+ return pulumi.get(self, "principal_id")
3774
+
3775
+
3776
+ @pulumi.output_type
3777
+ class UserFacingErrorResponse(dict):
3778
+ """
3779
+ Error object used by layers that have access to localized content, and propagate that to user
3780
+ """
3781
+ @staticmethod
3782
+ def __key_warning(key: str):
3783
+ suggest = None
3784
+ if key == "innerError":
3785
+ suggest = "inner_error"
3786
+ elif key == "isRetryable":
3787
+ suggest = "is_retryable"
3788
+ elif key == "isUserError":
3789
+ suggest = "is_user_error"
3790
+ elif key == "recommendedAction":
3791
+ suggest = "recommended_action"
3792
+
3793
+ if suggest:
3794
+ pulumi.log.warn(f"Key '{key}' not found in UserFacingErrorResponse. Access the value via the '{suggest}' property getter instead.")
3795
+
3796
+ def __getitem__(self, key: str) -> Any:
3797
+ UserFacingErrorResponse.__key_warning(key)
3798
+ return super().__getitem__(key)
3799
+
3800
+ def get(self, key: str, default = None) -> Any:
3801
+ UserFacingErrorResponse.__key_warning(key)
3802
+ return super().get(key, default)
3803
+
3804
+ def __init__(__self__, *,
3805
+ code: Optional[str] = None,
3806
+ details: Optional[Sequence['outputs.UserFacingErrorResponse']] = None,
3807
+ inner_error: Optional['outputs.InnerErrorResponse'] = None,
3808
+ is_retryable: Optional[bool] = None,
3809
+ is_user_error: Optional[bool] = None,
3810
+ message: Optional[str] = None,
3811
+ properties: Optional[Mapping[str, str]] = None,
3812
+ recommended_action: Optional[Sequence[str]] = None,
3813
+ target: Optional[str] = None):
3814
+ """
3815
+ Error object used by layers that have access to localized content, and propagate that to user
3816
+ :param str code: Unique code for this error
3817
+ :param Sequence['UserFacingErrorResponse'] details: Additional related Errors
3818
+ :param 'InnerErrorResponse' inner_error: Inner Error
3819
+ :param bool is_retryable: Whether the operation will be retryable or not
3820
+ :param bool is_user_error: Whether the operation is due to a user error or service error
3821
+ :param Mapping[str, str] properties: Any key value pairs that can be injected inside error object
3822
+ :param Sequence[str] recommended_action: RecommendedAction � localized.
3823
+ :param str target: Target of the error.
3824
+ """
3825
+ if code is not None:
3826
+ pulumi.set(__self__, "code", code)
3827
+ if details is not None:
3828
+ pulumi.set(__self__, "details", details)
3829
+ if inner_error is not None:
3830
+ pulumi.set(__self__, "inner_error", inner_error)
3831
+ if is_retryable is not None:
3832
+ pulumi.set(__self__, "is_retryable", is_retryable)
3833
+ if is_user_error is not None:
3834
+ pulumi.set(__self__, "is_user_error", is_user_error)
3835
+ if message is not None:
3836
+ pulumi.set(__self__, "message", message)
3837
+ if properties is not None:
3838
+ pulumi.set(__self__, "properties", properties)
3839
+ if recommended_action is not None:
3840
+ pulumi.set(__self__, "recommended_action", recommended_action)
3841
+ if target is not None:
3842
+ pulumi.set(__self__, "target", target)
3843
+
3844
+ @property
3845
+ @pulumi.getter
3846
+ def code(self) -> Optional[str]:
3847
+ """
3848
+ Unique code for this error
3849
+ """
3850
+ return pulumi.get(self, "code")
3851
+
3852
+ @property
3853
+ @pulumi.getter
3854
+ def details(self) -> Optional[Sequence['outputs.UserFacingErrorResponse']]:
3855
+ """
3856
+ Additional related Errors
3857
+ """
3858
+ return pulumi.get(self, "details")
3859
+
3860
+ @property
3861
+ @pulumi.getter(name="innerError")
3862
+ def inner_error(self) -> Optional['outputs.InnerErrorResponse']:
3863
+ """
3864
+ Inner Error
3865
+ """
3866
+ return pulumi.get(self, "inner_error")
3867
+
3868
+ @property
3869
+ @pulumi.getter(name="isRetryable")
3870
+ def is_retryable(self) -> Optional[bool]:
3871
+ """
3872
+ Whether the operation will be retryable or not
3873
+ """
3874
+ return pulumi.get(self, "is_retryable")
3875
+
3876
+ @property
3877
+ @pulumi.getter(name="isUserError")
3878
+ def is_user_error(self) -> Optional[bool]:
3879
+ """
3880
+ Whether the operation is due to a user error or service error
3881
+ """
3882
+ return pulumi.get(self, "is_user_error")
3883
+
3884
+ @property
3885
+ @pulumi.getter
3886
+ def message(self) -> Optional[str]:
3887
+ return pulumi.get(self, "message")
3888
+
3889
+ @property
3890
+ @pulumi.getter
3891
+ def properties(self) -> Optional[Mapping[str, str]]:
3892
+ """
3893
+ Any key value pairs that can be injected inside error object
3894
+ """
3895
+ return pulumi.get(self, "properties")
3896
+
3897
+ @property
3898
+ @pulumi.getter(name="recommendedAction")
3899
+ def recommended_action(self) -> Optional[Sequence[str]]:
3900
+ """
3901
+ RecommendedAction � localized.
3902
+ """
3903
+ return pulumi.get(self, "recommended_action")
3904
+
3905
+ @property
3906
+ @pulumi.getter
3907
+ def target(self) -> Optional[str]:
3908
+ """
3909
+ Target of the error.
3910
+ """
3911
+ return pulumi.get(self, "target")
3912
+
3913
+