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,3372 @@
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
+ 'AccountEncryptionResponse',
21
+ 'ActiveDirectoryResponse',
22
+ 'DailyScheduleResponse',
23
+ 'DestinationReplicationResponse',
24
+ 'EncryptionIdentityResponse',
25
+ 'ExportPolicyRuleResponse',
26
+ 'HourlyScheduleResponse',
27
+ 'KeyVaultPropertiesResponse',
28
+ 'LdapSearchScopeOptResponse',
29
+ 'ManagedServiceIdentityResponse',
30
+ 'MonthlyScheduleResponse',
31
+ 'MountTargetPropertiesResponse',
32
+ 'PlacementKeyValuePairsResponse',
33
+ 'QuotaReportResponse',
34
+ 'RemotePathResponse',
35
+ 'ReplicationObjectResponse',
36
+ 'ReplicationResponse',
37
+ 'SystemDataResponse',
38
+ 'UserAssignedIdentityResponse',
39
+ 'VolumeBackupPropertiesResponse',
40
+ 'VolumeBackupsResponse',
41
+ 'VolumeGroupMetaDataResponse',
42
+ 'VolumeGroupVolumePropertiesResponse',
43
+ 'VolumePropertiesResponseDataProtection',
44
+ 'VolumePropertiesResponseExportPolicy',
45
+ 'VolumeRelocationPropertiesResponse',
46
+ 'VolumeSnapshotPropertiesResponse',
47
+ 'WeeklyScheduleResponse',
48
+ ]
49
+
50
+ @pulumi.output_type
51
+ class AccountEncryptionResponse(dict):
52
+ """
53
+ Encryption settings
54
+ """
55
+ @staticmethod
56
+ def __key_warning(key: str):
57
+ suggest = None
58
+ if key == "keySource":
59
+ suggest = "key_source"
60
+ elif key == "keyVaultProperties":
61
+ suggest = "key_vault_properties"
62
+
63
+ if suggest:
64
+ pulumi.log.warn(f"Key '{key}' not found in AccountEncryptionResponse. Access the value via the '{suggest}' property getter instead.")
65
+
66
+ def __getitem__(self, key: str) -> Any:
67
+ AccountEncryptionResponse.__key_warning(key)
68
+ return super().__getitem__(key)
69
+
70
+ def get(self, key: str, default = None) -> Any:
71
+ AccountEncryptionResponse.__key_warning(key)
72
+ return super().get(key, default)
73
+
74
+ def __init__(__self__, *,
75
+ identity: Optional['outputs.EncryptionIdentityResponse'] = None,
76
+ key_source: Optional[str] = None,
77
+ key_vault_properties: Optional['outputs.KeyVaultPropertiesResponse'] = None):
78
+ """
79
+ Encryption settings
80
+ :param 'EncryptionIdentityResponse' identity: Identity used to authenticate to KeyVault. Applicable if keySource is 'Microsoft.KeyVault'.
81
+ :param str key_source: The encryption keySource (provider). Possible values (case-insensitive): Microsoft.NetApp, Microsoft.KeyVault
82
+ :param 'KeyVaultPropertiesResponse' key_vault_properties: Properties provided by KeVault. Applicable if keySource is 'Microsoft.KeyVault'.
83
+ """
84
+ if identity is not None:
85
+ pulumi.set(__self__, "identity", identity)
86
+ if key_source is None:
87
+ key_source = 'Microsoft.NetApp'
88
+ if key_source is not None:
89
+ pulumi.set(__self__, "key_source", key_source)
90
+ if key_vault_properties is not None:
91
+ pulumi.set(__self__, "key_vault_properties", key_vault_properties)
92
+
93
+ @property
94
+ @pulumi.getter
95
+ def identity(self) -> Optional['outputs.EncryptionIdentityResponse']:
96
+ """
97
+ Identity used to authenticate to KeyVault. Applicable if keySource is 'Microsoft.KeyVault'.
98
+ """
99
+ return pulumi.get(self, "identity")
100
+
101
+ @property
102
+ @pulumi.getter(name="keySource")
103
+ def key_source(self) -> Optional[str]:
104
+ """
105
+ The encryption keySource (provider). Possible values (case-insensitive): Microsoft.NetApp, Microsoft.KeyVault
106
+ """
107
+ return pulumi.get(self, "key_source")
108
+
109
+ @property
110
+ @pulumi.getter(name="keyVaultProperties")
111
+ def key_vault_properties(self) -> Optional['outputs.KeyVaultPropertiesResponse']:
112
+ """
113
+ Properties provided by KeVault. Applicable if keySource is 'Microsoft.KeyVault'.
114
+ """
115
+ return pulumi.get(self, "key_vault_properties")
116
+
117
+
118
+ @pulumi.output_type
119
+ class ActiveDirectoryResponse(dict):
120
+ """
121
+ Active Directory
122
+ """
123
+ @staticmethod
124
+ def __key_warning(key: str):
125
+ suggest = None
126
+ if key == "statusDetails":
127
+ suggest = "status_details"
128
+ elif key == "activeDirectoryId":
129
+ suggest = "active_directory_id"
130
+ elif key == "adName":
131
+ suggest = "ad_name"
132
+ elif key == "aesEncryption":
133
+ suggest = "aes_encryption"
134
+ elif key == "allowLocalNfsUsersWithLdap":
135
+ suggest = "allow_local_nfs_users_with_ldap"
136
+ elif key == "backupOperators":
137
+ suggest = "backup_operators"
138
+ elif key == "encryptDCConnections":
139
+ suggest = "encrypt_dc_connections"
140
+ elif key == "kdcIP":
141
+ suggest = "kdc_ip"
142
+ elif key == "ldapOverTLS":
143
+ suggest = "ldap_over_tls"
144
+ elif key == "ldapSearchScope":
145
+ suggest = "ldap_search_scope"
146
+ elif key == "ldapSigning":
147
+ suggest = "ldap_signing"
148
+ elif key == "organizationalUnit":
149
+ suggest = "organizational_unit"
150
+ elif key == "preferredServersForLdapClient":
151
+ suggest = "preferred_servers_for_ldap_client"
152
+ elif key == "securityOperators":
153
+ suggest = "security_operators"
154
+ elif key == "serverRootCACertificate":
155
+ suggest = "server_root_ca_certificate"
156
+ elif key == "smbServerName":
157
+ suggest = "smb_server_name"
158
+
159
+ if suggest:
160
+ pulumi.log.warn(f"Key '{key}' not found in ActiveDirectoryResponse. Access the value via the '{suggest}' property getter instead.")
161
+
162
+ def __getitem__(self, key: str) -> Any:
163
+ ActiveDirectoryResponse.__key_warning(key)
164
+ return super().__getitem__(key)
165
+
166
+ def get(self, key: str, default = None) -> Any:
167
+ ActiveDirectoryResponse.__key_warning(key)
168
+ return super().get(key, default)
169
+
170
+ def __init__(__self__, *,
171
+ status: str,
172
+ status_details: str,
173
+ active_directory_id: Optional[str] = None,
174
+ ad_name: Optional[str] = None,
175
+ administrators: Optional[Sequence[str]] = None,
176
+ aes_encryption: Optional[bool] = None,
177
+ allow_local_nfs_users_with_ldap: Optional[bool] = None,
178
+ backup_operators: Optional[Sequence[str]] = None,
179
+ dns: Optional[str] = None,
180
+ domain: Optional[str] = None,
181
+ encrypt_dc_connections: Optional[bool] = None,
182
+ kdc_ip: Optional[str] = None,
183
+ ldap_over_tls: Optional[bool] = None,
184
+ ldap_search_scope: Optional['outputs.LdapSearchScopeOptResponse'] = None,
185
+ ldap_signing: Optional[bool] = None,
186
+ organizational_unit: Optional[str] = None,
187
+ password: Optional[str] = None,
188
+ preferred_servers_for_ldap_client: Optional[str] = None,
189
+ security_operators: Optional[Sequence[str]] = None,
190
+ server_root_ca_certificate: Optional[str] = None,
191
+ site: Optional[str] = None,
192
+ smb_server_name: Optional[str] = None,
193
+ username: Optional[str] = None):
194
+ """
195
+ Active Directory
196
+ :param str status: Status of the Active Directory
197
+ :param str status_details: Any details in regards to the Status of the Active Directory
198
+ :param str active_directory_id: Id of the Active Directory
199
+ :param str ad_name: Name of the active directory machine. This optional parameter is used only while creating kerberos volume
200
+ :param Sequence[str] administrators: Users to be added to the Built-in Administrators active directory group. A list of unique usernames without domain specifier
201
+ :param bool aes_encryption: If enabled, AES encryption will be enabled for SMB communication.
202
+ :param bool allow_local_nfs_users_with_ldap: If enabled, NFS client local users can also (in addition to LDAP users) access the NFS volumes.
203
+ :param Sequence[str] backup_operators: Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier
204
+ :param str dns: Comma separated list of DNS server IP addresses (IPv4 only) for the Active Directory domain
205
+ :param str domain: Name of the Active Directory domain
206
+ :param bool encrypt_dc_connections: If enabled, Traffic between the SMB server to Domain Controller (DC) will be encrypted.
207
+ :param str kdc_ip: kdc server IP address for the active directory machine. This optional parameter is used only while creating kerberos volume.
208
+ :param bool ldap_over_tls: Specifies whether or not the LDAP traffic needs to be secured via TLS.
209
+ :param 'LdapSearchScopeOptResponse' ldap_search_scope: LDAP Search scope options
210
+ :param bool ldap_signing: Specifies whether or not the LDAP traffic needs to be signed.
211
+ :param str organizational_unit: The Organizational Unit (OU) within the Windows Active Directory
212
+ :param str password: Plain text password of Active Directory domain administrator, value is masked in the response
213
+ :param str preferred_servers_for_ldap_client: Comma separated list of IPv4 addresses of preferred servers for LDAP client. At most two comma separated IPv4 addresses can be passed.
214
+ :param Sequence[str] security_operators: Domain Users in the Active directory to be given SeSecurityPrivilege privilege (Needed for SMB Continuously available shares for SQL). A list of unique usernames without domain specifier
215
+ :param str server_root_ca_certificate: When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes.
216
+ :param str site: The Active Directory site the service will limit Domain Controller discovery to
217
+ :param str smb_server_name: NetBIOS name of the SMB server. This name will be registered as a computer account in the AD and used to mount volumes
218
+ :param str username: A domain user account with permission to create machine accounts
219
+ """
220
+ pulumi.set(__self__, "status", status)
221
+ pulumi.set(__self__, "status_details", status_details)
222
+ if active_directory_id is not None:
223
+ pulumi.set(__self__, "active_directory_id", active_directory_id)
224
+ if ad_name is not None:
225
+ pulumi.set(__self__, "ad_name", ad_name)
226
+ if administrators is not None:
227
+ pulumi.set(__self__, "administrators", administrators)
228
+ if aes_encryption is not None:
229
+ pulumi.set(__self__, "aes_encryption", aes_encryption)
230
+ if allow_local_nfs_users_with_ldap is not None:
231
+ pulumi.set(__self__, "allow_local_nfs_users_with_ldap", allow_local_nfs_users_with_ldap)
232
+ if backup_operators is not None:
233
+ pulumi.set(__self__, "backup_operators", backup_operators)
234
+ if dns is not None:
235
+ pulumi.set(__self__, "dns", dns)
236
+ if domain is not None:
237
+ pulumi.set(__self__, "domain", domain)
238
+ if encrypt_dc_connections is not None:
239
+ pulumi.set(__self__, "encrypt_dc_connections", encrypt_dc_connections)
240
+ if kdc_ip is not None:
241
+ pulumi.set(__self__, "kdc_ip", kdc_ip)
242
+ if ldap_over_tls is not None:
243
+ pulumi.set(__self__, "ldap_over_tls", ldap_over_tls)
244
+ if ldap_search_scope is not None:
245
+ pulumi.set(__self__, "ldap_search_scope", ldap_search_scope)
246
+ if ldap_signing is not None:
247
+ pulumi.set(__self__, "ldap_signing", ldap_signing)
248
+ if organizational_unit is None:
249
+ organizational_unit = 'CN=Computers'
250
+ if organizational_unit is not None:
251
+ pulumi.set(__self__, "organizational_unit", organizational_unit)
252
+ if password is not None:
253
+ pulumi.set(__self__, "password", password)
254
+ if preferred_servers_for_ldap_client is not None:
255
+ pulumi.set(__self__, "preferred_servers_for_ldap_client", preferred_servers_for_ldap_client)
256
+ if security_operators is not None:
257
+ pulumi.set(__self__, "security_operators", security_operators)
258
+ if server_root_ca_certificate is not None:
259
+ pulumi.set(__self__, "server_root_ca_certificate", server_root_ca_certificate)
260
+ if site is not None:
261
+ pulumi.set(__self__, "site", site)
262
+ if smb_server_name is not None:
263
+ pulumi.set(__self__, "smb_server_name", smb_server_name)
264
+ if username is not None:
265
+ pulumi.set(__self__, "username", username)
266
+
267
+ @property
268
+ @pulumi.getter
269
+ def status(self) -> str:
270
+ """
271
+ Status of the Active Directory
272
+ """
273
+ return pulumi.get(self, "status")
274
+
275
+ @property
276
+ @pulumi.getter(name="statusDetails")
277
+ def status_details(self) -> str:
278
+ """
279
+ Any details in regards to the Status of the Active Directory
280
+ """
281
+ return pulumi.get(self, "status_details")
282
+
283
+ @property
284
+ @pulumi.getter(name="activeDirectoryId")
285
+ def active_directory_id(self) -> Optional[str]:
286
+ """
287
+ Id of the Active Directory
288
+ """
289
+ return pulumi.get(self, "active_directory_id")
290
+
291
+ @property
292
+ @pulumi.getter(name="adName")
293
+ def ad_name(self) -> Optional[str]:
294
+ """
295
+ Name of the active directory machine. This optional parameter is used only while creating kerberos volume
296
+ """
297
+ return pulumi.get(self, "ad_name")
298
+
299
+ @property
300
+ @pulumi.getter
301
+ def administrators(self) -> Optional[Sequence[str]]:
302
+ """
303
+ Users to be added to the Built-in Administrators active directory group. A list of unique usernames without domain specifier
304
+ """
305
+ return pulumi.get(self, "administrators")
306
+
307
+ @property
308
+ @pulumi.getter(name="aesEncryption")
309
+ def aes_encryption(self) -> Optional[bool]:
310
+ """
311
+ If enabled, AES encryption will be enabled for SMB communication.
312
+ """
313
+ return pulumi.get(self, "aes_encryption")
314
+
315
+ @property
316
+ @pulumi.getter(name="allowLocalNfsUsersWithLdap")
317
+ def allow_local_nfs_users_with_ldap(self) -> Optional[bool]:
318
+ """
319
+ If enabled, NFS client local users can also (in addition to LDAP users) access the NFS volumes.
320
+ """
321
+ return pulumi.get(self, "allow_local_nfs_users_with_ldap")
322
+
323
+ @property
324
+ @pulumi.getter(name="backupOperators")
325
+ def backup_operators(self) -> Optional[Sequence[str]]:
326
+ """
327
+ Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier
328
+ """
329
+ return pulumi.get(self, "backup_operators")
330
+
331
+ @property
332
+ @pulumi.getter
333
+ def dns(self) -> Optional[str]:
334
+ """
335
+ Comma separated list of DNS server IP addresses (IPv4 only) for the Active Directory domain
336
+ """
337
+ return pulumi.get(self, "dns")
338
+
339
+ @property
340
+ @pulumi.getter
341
+ def domain(self) -> Optional[str]:
342
+ """
343
+ Name of the Active Directory domain
344
+ """
345
+ return pulumi.get(self, "domain")
346
+
347
+ @property
348
+ @pulumi.getter(name="encryptDCConnections")
349
+ def encrypt_dc_connections(self) -> Optional[bool]:
350
+ """
351
+ If enabled, Traffic between the SMB server to Domain Controller (DC) will be encrypted.
352
+ """
353
+ return pulumi.get(self, "encrypt_dc_connections")
354
+
355
+ @property
356
+ @pulumi.getter(name="kdcIP")
357
+ def kdc_ip(self) -> Optional[str]:
358
+ """
359
+ kdc server IP address for the active directory machine. This optional parameter is used only while creating kerberos volume.
360
+ """
361
+ return pulumi.get(self, "kdc_ip")
362
+
363
+ @property
364
+ @pulumi.getter(name="ldapOverTLS")
365
+ def ldap_over_tls(self) -> Optional[bool]:
366
+ """
367
+ Specifies whether or not the LDAP traffic needs to be secured via TLS.
368
+ """
369
+ return pulumi.get(self, "ldap_over_tls")
370
+
371
+ @property
372
+ @pulumi.getter(name="ldapSearchScope")
373
+ def ldap_search_scope(self) -> Optional['outputs.LdapSearchScopeOptResponse']:
374
+ """
375
+ LDAP Search scope options
376
+ """
377
+ return pulumi.get(self, "ldap_search_scope")
378
+
379
+ @property
380
+ @pulumi.getter(name="ldapSigning")
381
+ def ldap_signing(self) -> Optional[bool]:
382
+ """
383
+ Specifies whether or not the LDAP traffic needs to be signed.
384
+ """
385
+ return pulumi.get(self, "ldap_signing")
386
+
387
+ @property
388
+ @pulumi.getter(name="organizationalUnit")
389
+ def organizational_unit(self) -> Optional[str]:
390
+ """
391
+ The Organizational Unit (OU) within the Windows Active Directory
392
+ """
393
+ return pulumi.get(self, "organizational_unit")
394
+
395
+ @property
396
+ @pulumi.getter
397
+ def password(self) -> Optional[str]:
398
+ """
399
+ Plain text password of Active Directory domain administrator, value is masked in the response
400
+ """
401
+ return pulumi.get(self, "password")
402
+
403
+ @property
404
+ @pulumi.getter(name="preferredServersForLdapClient")
405
+ def preferred_servers_for_ldap_client(self) -> Optional[str]:
406
+ """
407
+ Comma separated list of IPv4 addresses of preferred servers for LDAP client. At most two comma separated IPv4 addresses can be passed.
408
+ """
409
+ return pulumi.get(self, "preferred_servers_for_ldap_client")
410
+
411
+ @property
412
+ @pulumi.getter(name="securityOperators")
413
+ def security_operators(self) -> Optional[Sequence[str]]:
414
+ """
415
+ Domain Users in the Active directory to be given SeSecurityPrivilege privilege (Needed for SMB Continuously available shares for SQL). A list of unique usernames without domain specifier
416
+ """
417
+ return pulumi.get(self, "security_operators")
418
+
419
+ @property
420
+ @pulumi.getter(name="serverRootCACertificate")
421
+ def server_root_ca_certificate(self) -> Optional[str]:
422
+ """
423
+ When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes.
424
+ """
425
+ return pulumi.get(self, "server_root_ca_certificate")
426
+
427
+ @property
428
+ @pulumi.getter
429
+ def site(self) -> Optional[str]:
430
+ """
431
+ The Active Directory site the service will limit Domain Controller discovery to
432
+ """
433
+ return pulumi.get(self, "site")
434
+
435
+ @property
436
+ @pulumi.getter(name="smbServerName")
437
+ def smb_server_name(self) -> Optional[str]:
438
+ """
439
+ NetBIOS name of the SMB server. This name will be registered as a computer account in the AD and used to mount volumes
440
+ """
441
+ return pulumi.get(self, "smb_server_name")
442
+
443
+ @property
444
+ @pulumi.getter
445
+ def username(self) -> Optional[str]:
446
+ """
447
+ A domain user account with permission to create machine accounts
448
+ """
449
+ return pulumi.get(self, "username")
450
+
451
+
452
+ @pulumi.output_type
453
+ class DailyScheduleResponse(dict):
454
+ """
455
+ Daily Schedule properties
456
+ """
457
+ @staticmethod
458
+ def __key_warning(key: str):
459
+ suggest = None
460
+ if key == "snapshotsToKeep":
461
+ suggest = "snapshots_to_keep"
462
+ elif key == "usedBytes":
463
+ suggest = "used_bytes"
464
+
465
+ if suggest:
466
+ pulumi.log.warn(f"Key '{key}' not found in DailyScheduleResponse. Access the value via the '{suggest}' property getter instead.")
467
+
468
+ def __getitem__(self, key: str) -> Any:
469
+ DailyScheduleResponse.__key_warning(key)
470
+ return super().__getitem__(key)
471
+
472
+ def get(self, key: str, default = None) -> Any:
473
+ DailyScheduleResponse.__key_warning(key)
474
+ return super().get(key, default)
475
+
476
+ def __init__(__self__, *,
477
+ hour: Optional[int] = None,
478
+ minute: Optional[int] = None,
479
+ snapshots_to_keep: Optional[int] = None,
480
+ used_bytes: Optional[float] = None):
481
+ """
482
+ Daily Schedule properties
483
+ :param int hour: Indicates which hour in UTC timezone a snapshot should be taken
484
+ :param int minute: Indicates which minute snapshot should be taken
485
+ :param int snapshots_to_keep: Daily snapshot count to keep
486
+ :param float used_bytes: Resource size in bytes, current storage usage for the volume in bytes
487
+ """
488
+ if hour is not None:
489
+ pulumi.set(__self__, "hour", hour)
490
+ if minute is not None:
491
+ pulumi.set(__self__, "minute", minute)
492
+ if snapshots_to_keep is not None:
493
+ pulumi.set(__self__, "snapshots_to_keep", snapshots_to_keep)
494
+ if used_bytes is not None:
495
+ pulumi.set(__self__, "used_bytes", used_bytes)
496
+
497
+ @property
498
+ @pulumi.getter
499
+ def hour(self) -> Optional[int]:
500
+ """
501
+ Indicates which hour in UTC timezone a snapshot should be taken
502
+ """
503
+ return pulumi.get(self, "hour")
504
+
505
+ @property
506
+ @pulumi.getter
507
+ def minute(self) -> Optional[int]:
508
+ """
509
+ Indicates which minute snapshot should be taken
510
+ """
511
+ return pulumi.get(self, "minute")
512
+
513
+ @property
514
+ @pulumi.getter(name="snapshotsToKeep")
515
+ def snapshots_to_keep(self) -> Optional[int]:
516
+ """
517
+ Daily snapshot count to keep
518
+ """
519
+ return pulumi.get(self, "snapshots_to_keep")
520
+
521
+ @property
522
+ @pulumi.getter(name="usedBytes")
523
+ def used_bytes(self) -> Optional[float]:
524
+ """
525
+ Resource size in bytes, current storage usage for the volume in bytes
526
+ """
527
+ return pulumi.get(self, "used_bytes")
528
+
529
+
530
+ @pulumi.output_type
531
+ class DestinationReplicationResponse(dict):
532
+ """
533
+ Destination replication properties
534
+ """
535
+ @staticmethod
536
+ def __key_warning(key: str):
537
+ suggest = None
538
+ if key == "replicationType":
539
+ suggest = "replication_type"
540
+ elif key == "resourceId":
541
+ suggest = "resource_id"
542
+
543
+ if suggest:
544
+ pulumi.log.warn(f"Key '{key}' not found in DestinationReplicationResponse. Access the value via the '{suggest}' property getter instead.")
545
+
546
+ def __getitem__(self, key: str) -> Any:
547
+ DestinationReplicationResponse.__key_warning(key)
548
+ return super().__getitem__(key)
549
+
550
+ def get(self, key: str, default = None) -> Any:
551
+ DestinationReplicationResponse.__key_warning(key)
552
+ return super().get(key, default)
553
+
554
+ def __init__(__self__, *,
555
+ region: Optional[str] = None,
556
+ replication_type: Optional[str] = None,
557
+ resource_id: Optional[str] = None,
558
+ zone: Optional[str] = None):
559
+ """
560
+ Destination replication properties
561
+ :param str region: The remote region for the destination volume.
562
+ :param str replication_type: Indicates whether the replication is cross zone or cross region.
563
+ :param str resource_id: The resource ID of the remote volume
564
+ :param str zone: The remote zone for the destination volume.
565
+ """
566
+ if region is not None:
567
+ pulumi.set(__self__, "region", region)
568
+ if replication_type is not None:
569
+ pulumi.set(__self__, "replication_type", replication_type)
570
+ if resource_id is not None:
571
+ pulumi.set(__self__, "resource_id", resource_id)
572
+ if zone is not None:
573
+ pulumi.set(__self__, "zone", zone)
574
+
575
+ @property
576
+ @pulumi.getter
577
+ def region(self) -> Optional[str]:
578
+ """
579
+ The remote region for the destination volume.
580
+ """
581
+ return pulumi.get(self, "region")
582
+
583
+ @property
584
+ @pulumi.getter(name="replicationType")
585
+ def replication_type(self) -> Optional[str]:
586
+ """
587
+ Indicates whether the replication is cross zone or cross region.
588
+ """
589
+ return pulumi.get(self, "replication_type")
590
+
591
+ @property
592
+ @pulumi.getter(name="resourceId")
593
+ def resource_id(self) -> Optional[str]:
594
+ """
595
+ The resource ID of the remote volume
596
+ """
597
+ return pulumi.get(self, "resource_id")
598
+
599
+ @property
600
+ @pulumi.getter
601
+ def zone(self) -> Optional[str]:
602
+ """
603
+ The remote zone for the destination volume.
604
+ """
605
+ return pulumi.get(self, "zone")
606
+
607
+
608
+ @pulumi.output_type
609
+ class EncryptionIdentityResponse(dict):
610
+ """
611
+ Identity used to authenticate with key vault.
612
+ """
613
+ @staticmethod
614
+ def __key_warning(key: str):
615
+ suggest = None
616
+ if key == "principalId":
617
+ suggest = "principal_id"
618
+ elif key == "federatedClientId":
619
+ suggest = "federated_client_id"
620
+ elif key == "userAssignedIdentity":
621
+ suggest = "user_assigned_identity"
622
+
623
+ if suggest:
624
+ pulumi.log.warn(f"Key '{key}' not found in EncryptionIdentityResponse. Access the value via the '{suggest}' property getter instead.")
625
+
626
+ def __getitem__(self, key: str) -> Any:
627
+ EncryptionIdentityResponse.__key_warning(key)
628
+ return super().__getitem__(key)
629
+
630
+ def get(self, key: str, default = None) -> Any:
631
+ EncryptionIdentityResponse.__key_warning(key)
632
+ return super().get(key, default)
633
+
634
+ def __init__(__self__, *,
635
+ principal_id: str,
636
+ federated_client_id: Optional[str] = None,
637
+ user_assigned_identity: Optional[str] = None):
638
+ """
639
+ Identity used to authenticate with key vault.
640
+ :param str principal_id: The principal ID (object ID) of the identity used to authenticate with key vault. Read-only.
641
+ :param str federated_client_id: ClientId of the multi-tenant AAD Application. Used to access cross-tenant KeyVaults.
642
+ :param str user_assigned_identity: The ARM resource identifier of the user assigned identity used to authenticate with key vault. Applicable if identity.type has 'UserAssigned'. It should match key of identity.userAssignedIdentities.
643
+ """
644
+ pulumi.set(__self__, "principal_id", principal_id)
645
+ if federated_client_id is not None:
646
+ pulumi.set(__self__, "federated_client_id", federated_client_id)
647
+ if user_assigned_identity is not None:
648
+ pulumi.set(__self__, "user_assigned_identity", user_assigned_identity)
649
+
650
+ @property
651
+ @pulumi.getter(name="principalId")
652
+ def principal_id(self) -> str:
653
+ """
654
+ The principal ID (object ID) of the identity used to authenticate with key vault. Read-only.
655
+ """
656
+ return pulumi.get(self, "principal_id")
657
+
658
+ @property
659
+ @pulumi.getter(name="federatedClientId")
660
+ def federated_client_id(self) -> Optional[str]:
661
+ """
662
+ ClientId of the multi-tenant AAD Application. Used to access cross-tenant KeyVaults.
663
+ """
664
+ return pulumi.get(self, "federated_client_id")
665
+
666
+ @property
667
+ @pulumi.getter(name="userAssignedIdentity")
668
+ def user_assigned_identity(self) -> Optional[str]:
669
+ """
670
+ The ARM resource identifier of the user assigned identity used to authenticate with key vault. Applicable if identity.type has 'UserAssigned'. It should match key of identity.userAssignedIdentities.
671
+ """
672
+ return pulumi.get(self, "user_assigned_identity")
673
+
674
+
675
+ @pulumi.output_type
676
+ class ExportPolicyRuleResponse(dict):
677
+ """
678
+ Volume Export Policy Rule
679
+ """
680
+ @staticmethod
681
+ def __key_warning(key: str):
682
+ suggest = None
683
+ if key == "allowedClients":
684
+ suggest = "allowed_clients"
685
+ elif key == "chownMode":
686
+ suggest = "chown_mode"
687
+ elif key == "hasRootAccess":
688
+ suggest = "has_root_access"
689
+ elif key == "kerberos5ReadOnly":
690
+ suggest = "kerberos5_read_only"
691
+ elif key == "kerberos5ReadWrite":
692
+ suggest = "kerberos5_read_write"
693
+ elif key == "kerberos5iReadOnly":
694
+ suggest = "kerberos5i_read_only"
695
+ elif key == "kerberos5iReadWrite":
696
+ suggest = "kerberos5i_read_write"
697
+ elif key == "kerberos5pReadOnly":
698
+ suggest = "kerberos5p_read_only"
699
+ elif key == "kerberos5pReadWrite":
700
+ suggest = "kerberos5p_read_write"
701
+ elif key == "ruleIndex":
702
+ suggest = "rule_index"
703
+ elif key == "unixReadOnly":
704
+ suggest = "unix_read_only"
705
+ elif key == "unixReadWrite":
706
+ suggest = "unix_read_write"
707
+
708
+ if suggest:
709
+ pulumi.log.warn(f"Key '{key}' not found in ExportPolicyRuleResponse. Access the value via the '{suggest}' property getter instead.")
710
+
711
+ def __getitem__(self, key: str) -> Any:
712
+ ExportPolicyRuleResponse.__key_warning(key)
713
+ return super().__getitem__(key)
714
+
715
+ def get(self, key: str, default = None) -> Any:
716
+ ExportPolicyRuleResponse.__key_warning(key)
717
+ return super().get(key, default)
718
+
719
+ def __init__(__self__, *,
720
+ allowed_clients: Optional[str] = None,
721
+ chown_mode: Optional[str] = None,
722
+ cifs: Optional[bool] = None,
723
+ has_root_access: Optional[bool] = None,
724
+ kerberos5_read_only: Optional[bool] = None,
725
+ kerberos5_read_write: Optional[bool] = None,
726
+ kerberos5i_read_only: Optional[bool] = None,
727
+ kerberos5i_read_write: Optional[bool] = None,
728
+ kerberos5p_read_only: Optional[bool] = None,
729
+ kerberos5p_read_write: Optional[bool] = None,
730
+ nfsv3: Optional[bool] = None,
731
+ nfsv41: Optional[bool] = None,
732
+ rule_index: Optional[int] = None,
733
+ unix_read_only: Optional[bool] = None,
734
+ unix_read_write: Optional[bool] = None):
735
+ """
736
+ Volume Export Policy Rule
737
+ :param str allowed_clients: Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
738
+ :param str chown_mode: This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
739
+ :param bool cifs: Allows CIFS protocol
740
+ :param bool has_root_access: Has root access to volume
741
+ :param bool kerberos5_read_only: Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
742
+ :param bool kerberos5_read_write: Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
743
+ :param bool kerberos5i_read_only: Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
744
+ :param bool kerberos5i_read_write: Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
745
+ :param bool kerberos5p_read_only: Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
746
+ :param bool kerberos5p_read_write: Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
747
+ :param bool nfsv3: Allows NFSv3 protocol. Enable only for NFSv3 type volumes
748
+ :param bool nfsv41: Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
749
+ :param int rule_index: Order index
750
+ :param bool unix_read_only: Read only access
751
+ :param bool unix_read_write: Read and write access
752
+ """
753
+ if allowed_clients is not None:
754
+ pulumi.set(__self__, "allowed_clients", allowed_clients)
755
+ if chown_mode is None:
756
+ chown_mode = 'Restricted'
757
+ if chown_mode is not None:
758
+ pulumi.set(__self__, "chown_mode", chown_mode)
759
+ if cifs is not None:
760
+ pulumi.set(__self__, "cifs", cifs)
761
+ if has_root_access is None:
762
+ has_root_access = True
763
+ if has_root_access is not None:
764
+ pulumi.set(__self__, "has_root_access", has_root_access)
765
+ if kerberos5_read_only is None:
766
+ kerberos5_read_only = False
767
+ if kerberos5_read_only is not None:
768
+ pulumi.set(__self__, "kerberos5_read_only", kerberos5_read_only)
769
+ if kerberos5_read_write is None:
770
+ kerberos5_read_write = False
771
+ if kerberos5_read_write is not None:
772
+ pulumi.set(__self__, "kerberos5_read_write", kerberos5_read_write)
773
+ if kerberos5i_read_only is None:
774
+ kerberos5i_read_only = False
775
+ if kerberos5i_read_only is not None:
776
+ pulumi.set(__self__, "kerberos5i_read_only", kerberos5i_read_only)
777
+ if kerberos5i_read_write is None:
778
+ kerberos5i_read_write = False
779
+ if kerberos5i_read_write is not None:
780
+ pulumi.set(__self__, "kerberos5i_read_write", kerberos5i_read_write)
781
+ if kerberos5p_read_only is None:
782
+ kerberos5p_read_only = False
783
+ if kerberos5p_read_only is not None:
784
+ pulumi.set(__self__, "kerberos5p_read_only", kerberos5p_read_only)
785
+ if kerberos5p_read_write is None:
786
+ kerberos5p_read_write = False
787
+ if kerberos5p_read_write is not None:
788
+ pulumi.set(__self__, "kerberos5p_read_write", kerberos5p_read_write)
789
+ if nfsv3 is not None:
790
+ pulumi.set(__self__, "nfsv3", nfsv3)
791
+ if nfsv41 is not None:
792
+ pulumi.set(__self__, "nfsv41", nfsv41)
793
+ if rule_index is not None:
794
+ pulumi.set(__self__, "rule_index", rule_index)
795
+ if unix_read_only is not None:
796
+ pulumi.set(__self__, "unix_read_only", unix_read_only)
797
+ if unix_read_write is not None:
798
+ pulumi.set(__self__, "unix_read_write", unix_read_write)
799
+
800
+ @property
801
+ @pulumi.getter(name="allowedClients")
802
+ def allowed_clients(self) -> Optional[str]:
803
+ """
804
+ Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
805
+ """
806
+ return pulumi.get(self, "allowed_clients")
807
+
808
+ @property
809
+ @pulumi.getter(name="chownMode")
810
+ def chown_mode(self) -> Optional[str]:
811
+ """
812
+ This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
813
+ """
814
+ return pulumi.get(self, "chown_mode")
815
+
816
+ @property
817
+ @pulumi.getter
818
+ def cifs(self) -> Optional[bool]:
819
+ """
820
+ Allows CIFS protocol
821
+ """
822
+ return pulumi.get(self, "cifs")
823
+
824
+ @property
825
+ @pulumi.getter(name="hasRootAccess")
826
+ def has_root_access(self) -> Optional[bool]:
827
+ """
828
+ Has root access to volume
829
+ """
830
+ return pulumi.get(self, "has_root_access")
831
+
832
+ @property
833
+ @pulumi.getter(name="kerberos5ReadOnly")
834
+ def kerberos5_read_only(self) -> Optional[bool]:
835
+ """
836
+ Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
837
+ """
838
+ return pulumi.get(self, "kerberos5_read_only")
839
+
840
+ @property
841
+ @pulumi.getter(name="kerberos5ReadWrite")
842
+ def kerberos5_read_write(self) -> Optional[bool]:
843
+ """
844
+ Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
845
+ """
846
+ return pulumi.get(self, "kerberos5_read_write")
847
+
848
+ @property
849
+ @pulumi.getter(name="kerberos5iReadOnly")
850
+ def kerberos5i_read_only(self) -> Optional[bool]:
851
+ """
852
+ Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
853
+ """
854
+ return pulumi.get(self, "kerberos5i_read_only")
855
+
856
+ @property
857
+ @pulumi.getter(name="kerberos5iReadWrite")
858
+ def kerberos5i_read_write(self) -> Optional[bool]:
859
+ """
860
+ Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
861
+ """
862
+ return pulumi.get(self, "kerberos5i_read_write")
863
+
864
+ @property
865
+ @pulumi.getter(name="kerberos5pReadOnly")
866
+ def kerberos5p_read_only(self) -> Optional[bool]:
867
+ """
868
+ Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
869
+ """
870
+ return pulumi.get(self, "kerberos5p_read_only")
871
+
872
+ @property
873
+ @pulumi.getter(name="kerberos5pReadWrite")
874
+ def kerberos5p_read_write(self) -> Optional[bool]:
875
+ """
876
+ Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
877
+ """
878
+ return pulumi.get(self, "kerberos5p_read_write")
879
+
880
+ @property
881
+ @pulumi.getter
882
+ def nfsv3(self) -> Optional[bool]:
883
+ """
884
+ Allows NFSv3 protocol. Enable only for NFSv3 type volumes
885
+ """
886
+ return pulumi.get(self, "nfsv3")
887
+
888
+ @property
889
+ @pulumi.getter
890
+ def nfsv41(self) -> Optional[bool]:
891
+ """
892
+ Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
893
+ """
894
+ return pulumi.get(self, "nfsv41")
895
+
896
+ @property
897
+ @pulumi.getter(name="ruleIndex")
898
+ def rule_index(self) -> Optional[int]:
899
+ """
900
+ Order index
901
+ """
902
+ return pulumi.get(self, "rule_index")
903
+
904
+ @property
905
+ @pulumi.getter(name="unixReadOnly")
906
+ def unix_read_only(self) -> Optional[bool]:
907
+ """
908
+ Read only access
909
+ """
910
+ return pulumi.get(self, "unix_read_only")
911
+
912
+ @property
913
+ @pulumi.getter(name="unixReadWrite")
914
+ def unix_read_write(self) -> Optional[bool]:
915
+ """
916
+ Read and write access
917
+ """
918
+ return pulumi.get(self, "unix_read_write")
919
+
920
+
921
+ @pulumi.output_type
922
+ class HourlyScheduleResponse(dict):
923
+ """
924
+ Hourly Schedule properties
925
+ """
926
+ @staticmethod
927
+ def __key_warning(key: str):
928
+ suggest = None
929
+ if key == "snapshotsToKeep":
930
+ suggest = "snapshots_to_keep"
931
+ elif key == "usedBytes":
932
+ suggest = "used_bytes"
933
+
934
+ if suggest:
935
+ pulumi.log.warn(f"Key '{key}' not found in HourlyScheduleResponse. Access the value via the '{suggest}' property getter instead.")
936
+
937
+ def __getitem__(self, key: str) -> Any:
938
+ HourlyScheduleResponse.__key_warning(key)
939
+ return super().__getitem__(key)
940
+
941
+ def get(self, key: str, default = None) -> Any:
942
+ HourlyScheduleResponse.__key_warning(key)
943
+ return super().get(key, default)
944
+
945
+ def __init__(__self__, *,
946
+ minute: Optional[int] = None,
947
+ snapshots_to_keep: Optional[int] = None,
948
+ used_bytes: Optional[float] = None):
949
+ """
950
+ Hourly Schedule properties
951
+ :param int minute: Indicates which minute snapshot should be taken
952
+ :param int snapshots_to_keep: Hourly snapshot count to keep
953
+ :param float used_bytes: Resource size in bytes, current storage usage for the volume in bytes
954
+ """
955
+ if minute is not None:
956
+ pulumi.set(__self__, "minute", minute)
957
+ if snapshots_to_keep is not None:
958
+ pulumi.set(__self__, "snapshots_to_keep", snapshots_to_keep)
959
+ if used_bytes is not None:
960
+ pulumi.set(__self__, "used_bytes", used_bytes)
961
+
962
+ @property
963
+ @pulumi.getter
964
+ def minute(self) -> Optional[int]:
965
+ """
966
+ Indicates which minute snapshot should be taken
967
+ """
968
+ return pulumi.get(self, "minute")
969
+
970
+ @property
971
+ @pulumi.getter(name="snapshotsToKeep")
972
+ def snapshots_to_keep(self) -> Optional[int]:
973
+ """
974
+ Hourly snapshot count to keep
975
+ """
976
+ return pulumi.get(self, "snapshots_to_keep")
977
+
978
+ @property
979
+ @pulumi.getter(name="usedBytes")
980
+ def used_bytes(self) -> Optional[float]:
981
+ """
982
+ Resource size in bytes, current storage usage for the volume in bytes
983
+ """
984
+ return pulumi.get(self, "used_bytes")
985
+
986
+
987
+ @pulumi.output_type
988
+ class KeyVaultPropertiesResponse(dict):
989
+ """
990
+ Properties of key vault.
991
+ """
992
+ @staticmethod
993
+ def __key_warning(key: str):
994
+ suggest = None
995
+ if key == "keyName":
996
+ suggest = "key_name"
997
+ elif key == "keyVaultId":
998
+ suggest = "key_vault_id"
999
+ elif key == "keyVaultUri":
1000
+ suggest = "key_vault_uri"
1001
+ elif key == "keyVaultResourceId":
1002
+ suggest = "key_vault_resource_id"
1003
+
1004
+ if suggest:
1005
+ pulumi.log.warn(f"Key '{key}' not found in KeyVaultPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1006
+
1007
+ def __getitem__(self, key: str) -> Any:
1008
+ KeyVaultPropertiesResponse.__key_warning(key)
1009
+ return super().__getitem__(key)
1010
+
1011
+ def get(self, key: str, default = None) -> Any:
1012
+ KeyVaultPropertiesResponse.__key_warning(key)
1013
+ return super().get(key, default)
1014
+
1015
+ def __init__(__self__, *,
1016
+ key_name: str,
1017
+ key_vault_id: str,
1018
+ key_vault_uri: str,
1019
+ status: str,
1020
+ key_vault_resource_id: Optional[str] = None):
1021
+ """
1022
+ Properties of key vault.
1023
+ :param str key_name: The name of KeyVault key.
1024
+ :param str key_vault_id: UUID v4 used to identify the Azure Key Vault configuration
1025
+ :param str key_vault_uri: The Uri of KeyVault.
1026
+ :param str status: Status of the KeyVault connection.
1027
+ :param str key_vault_resource_id: The resource ID of KeyVault.
1028
+ """
1029
+ pulumi.set(__self__, "key_name", key_name)
1030
+ pulumi.set(__self__, "key_vault_id", key_vault_id)
1031
+ pulumi.set(__self__, "key_vault_uri", key_vault_uri)
1032
+ pulumi.set(__self__, "status", status)
1033
+ if key_vault_resource_id is not None:
1034
+ pulumi.set(__self__, "key_vault_resource_id", key_vault_resource_id)
1035
+
1036
+ @property
1037
+ @pulumi.getter(name="keyName")
1038
+ def key_name(self) -> str:
1039
+ """
1040
+ The name of KeyVault key.
1041
+ """
1042
+ return pulumi.get(self, "key_name")
1043
+
1044
+ @property
1045
+ @pulumi.getter(name="keyVaultId")
1046
+ def key_vault_id(self) -> str:
1047
+ """
1048
+ UUID v4 used to identify the Azure Key Vault configuration
1049
+ """
1050
+ return pulumi.get(self, "key_vault_id")
1051
+
1052
+ @property
1053
+ @pulumi.getter(name="keyVaultUri")
1054
+ def key_vault_uri(self) -> str:
1055
+ """
1056
+ The Uri of KeyVault.
1057
+ """
1058
+ return pulumi.get(self, "key_vault_uri")
1059
+
1060
+ @property
1061
+ @pulumi.getter
1062
+ def status(self) -> str:
1063
+ """
1064
+ Status of the KeyVault connection.
1065
+ """
1066
+ return pulumi.get(self, "status")
1067
+
1068
+ @property
1069
+ @pulumi.getter(name="keyVaultResourceId")
1070
+ def key_vault_resource_id(self) -> Optional[str]:
1071
+ """
1072
+ The resource ID of KeyVault.
1073
+ """
1074
+ return pulumi.get(self, "key_vault_resource_id")
1075
+
1076
+
1077
+ @pulumi.output_type
1078
+ class LdapSearchScopeOptResponse(dict):
1079
+ """
1080
+ LDAP search scope
1081
+ """
1082
+ @staticmethod
1083
+ def __key_warning(key: str):
1084
+ suggest = None
1085
+ if key == "groupDN":
1086
+ suggest = "group_dn"
1087
+ elif key == "groupMembershipFilter":
1088
+ suggest = "group_membership_filter"
1089
+ elif key == "userDN":
1090
+ suggest = "user_dn"
1091
+
1092
+ if suggest:
1093
+ pulumi.log.warn(f"Key '{key}' not found in LdapSearchScopeOptResponse. Access the value via the '{suggest}' property getter instead.")
1094
+
1095
+ def __getitem__(self, key: str) -> Any:
1096
+ LdapSearchScopeOptResponse.__key_warning(key)
1097
+ return super().__getitem__(key)
1098
+
1099
+ def get(self, key: str, default = None) -> Any:
1100
+ LdapSearchScopeOptResponse.__key_warning(key)
1101
+ return super().get(key, default)
1102
+
1103
+ def __init__(__self__, *,
1104
+ group_dn: Optional[str] = None,
1105
+ group_membership_filter: Optional[str] = None,
1106
+ user_dn: Optional[str] = None):
1107
+ """
1108
+ LDAP search scope
1109
+ :param str group_dn: This specifies the group DN, which overrides the base DN for group lookups.
1110
+ :param str group_membership_filter: This specifies the custom LDAP search filter to be used when looking up group membership from LDAP server.
1111
+ :param str user_dn: This specifies the user DN, which overrides the base DN for user lookups.
1112
+ """
1113
+ if group_dn is not None:
1114
+ pulumi.set(__self__, "group_dn", group_dn)
1115
+ if group_membership_filter is not None:
1116
+ pulumi.set(__self__, "group_membership_filter", group_membership_filter)
1117
+ if user_dn is not None:
1118
+ pulumi.set(__self__, "user_dn", user_dn)
1119
+
1120
+ @property
1121
+ @pulumi.getter(name="groupDN")
1122
+ def group_dn(self) -> Optional[str]:
1123
+ """
1124
+ This specifies the group DN, which overrides the base DN for group lookups.
1125
+ """
1126
+ return pulumi.get(self, "group_dn")
1127
+
1128
+ @property
1129
+ @pulumi.getter(name="groupMembershipFilter")
1130
+ def group_membership_filter(self) -> Optional[str]:
1131
+ """
1132
+ This specifies the custom LDAP search filter to be used when looking up group membership from LDAP server.
1133
+ """
1134
+ return pulumi.get(self, "group_membership_filter")
1135
+
1136
+ @property
1137
+ @pulumi.getter(name="userDN")
1138
+ def user_dn(self) -> Optional[str]:
1139
+ """
1140
+ This specifies the user DN, which overrides the base DN for user lookups.
1141
+ """
1142
+ return pulumi.get(self, "user_dn")
1143
+
1144
+
1145
+ @pulumi.output_type
1146
+ class ManagedServiceIdentityResponse(dict):
1147
+ """
1148
+ Managed service identity (system assigned and/or user assigned identities)
1149
+ """
1150
+ @staticmethod
1151
+ def __key_warning(key: str):
1152
+ suggest = None
1153
+ if key == "principalId":
1154
+ suggest = "principal_id"
1155
+ elif key == "tenantId":
1156
+ suggest = "tenant_id"
1157
+ elif key == "userAssignedIdentities":
1158
+ suggest = "user_assigned_identities"
1159
+
1160
+ if suggest:
1161
+ pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1162
+
1163
+ def __getitem__(self, key: str) -> Any:
1164
+ ManagedServiceIdentityResponse.__key_warning(key)
1165
+ return super().__getitem__(key)
1166
+
1167
+ def get(self, key: str, default = None) -> Any:
1168
+ ManagedServiceIdentityResponse.__key_warning(key)
1169
+ return super().get(key, default)
1170
+
1171
+ def __init__(__self__, *,
1172
+ principal_id: str,
1173
+ tenant_id: str,
1174
+ type: str,
1175
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
1176
+ """
1177
+ Managed service identity (system assigned and/or user assigned identities)
1178
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1179
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1180
+ :param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
1181
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1182
+ """
1183
+ pulumi.set(__self__, "principal_id", principal_id)
1184
+ pulumi.set(__self__, "tenant_id", tenant_id)
1185
+ pulumi.set(__self__, "type", type)
1186
+ if user_assigned_identities is not None:
1187
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1188
+
1189
+ @property
1190
+ @pulumi.getter(name="principalId")
1191
+ def principal_id(self) -> str:
1192
+ """
1193
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1194
+ """
1195
+ return pulumi.get(self, "principal_id")
1196
+
1197
+ @property
1198
+ @pulumi.getter(name="tenantId")
1199
+ def tenant_id(self) -> str:
1200
+ """
1201
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1202
+ """
1203
+ return pulumi.get(self, "tenant_id")
1204
+
1205
+ @property
1206
+ @pulumi.getter
1207
+ def type(self) -> str:
1208
+ """
1209
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
1210
+ """
1211
+ return pulumi.get(self, "type")
1212
+
1213
+ @property
1214
+ @pulumi.getter(name="userAssignedIdentities")
1215
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
1216
+ """
1217
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1218
+ """
1219
+ return pulumi.get(self, "user_assigned_identities")
1220
+
1221
+
1222
+ @pulumi.output_type
1223
+ class MonthlyScheduleResponse(dict):
1224
+ """
1225
+ Monthly Schedule properties
1226
+ """
1227
+ @staticmethod
1228
+ def __key_warning(key: str):
1229
+ suggest = None
1230
+ if key == "daysOfMonth":
1231
+ suggest = "days_of_month"
1232
+ elif key == "snapshotsToKeep":
1233
+ suggest = "snapshots_to_keep"
1234
+ elif key == "usedBytes":
1235
+ suggest = "used_bytes"
1236
+
1237
+ if suggest:
1238
+ pulumi.log.warn(f"Key '{key}' not found in MonthlyScheduleResponse. Access the value via the '{suggest}' property getter instead.")
1239
+
1240
+ def __getitem__(self, key: str) -> Any:
1241
+ MonthlyScheduleResponse.__key_warning(key)
1242
+ return super().__getitem__(key)
1243
+
1244
+ def get(self, key: str, default = None) -> Any:
1245
+ MonthlyScheduleResponse.__key_warning(key)
1246
+ return super().get(key, default)
1247
+
1248
+ def __init__(__self__, *,
1249
+ days_of_month: Optional[str] = None,
1250
+ hour: Optional[int] = None,
1251
+ minute: Optional[int] = None,
1252
+ snapshots_to_keep: Optional[int] = None,
1253
+ used_bytes: Optional[float] = None):
1254
+ """
1255
+ Monthly Schedule properties
1256
+ :param str days_of_month: Indicates which days of the month snapshot should be taken. A comma delimited string.
1257
+ :param int hour: Indicates which hour in UTC timezone a snapshot should be taken
1258
+ :param int minute: Indicates which minute snapshot should be taken
1259
+ :param int snapshots_to_keep: Monthly snapshot count to keep
1260
+ :param float used_bytes: Resource size in bytes, current storage usage for the volume in bytes
1261
+ """
1262
+ if days_of_month is not None:
1263
+ pulumi.set(__self__, "days_of_month", days_of_month)
1264
+ if hour is not None:
1265
+ pulumi.set(__self__, "hour", hour)
1266
+ if minute is not None:
1267
+ pulumi.set(__self__, "minute", minute)
1268
+ if snapshots_to_keep is not None:
1269
+ pulumi.set(__self__, "snapshots_to_keep", snapshots_to_keep)
1270
+ if used_bytes is not None:
1271
+ pulumi.set(__self__, "used_bytes", used_bytes)
1272
+
1273
+ @property
1274
+ @pulumi.getter(name="daysOfMonth")
1275
+ def days_of_month(self) -> Optional[str]:
1276
+ """
1277
+ Indicates which days of the month snapshot should be taken. A comma delimited string.
1278
+ """
1279
+ return pulumi.get(self, "days_of_month")
1280
+
1281
+ @property
1282
+ @pulumi.getter
1283
+ def hour(self) -> Optional[int]:
1284
+ """
1285
+ Indicates which hour in UTC timezone a snapshot should be taken
1286
+ """
1287
+ return pulumi.get(self, "hour")
1288
+
1289
+ @property
1290
+ @pulumi.getter
1291
+ def minute(self) -> Optional[int]:
1292
+ """
1293
+ Indicates which minute snapshot should be taken
1294
+ """
1295
+ return pulumi.get(self, "minute")
1296
+
1297
+ @property
1298
+ @pulumi.getter(name="snapshotsToKeep")
1299
+ def snapshots_to_keep(self) -> Optional[int]:
1300
+ """
1301
+ Monthly snapshot count to keep
1302
+ """
1303
+ return pulumi.get(self, "snapshots_to_keep")
1304
+
1305
+ @property
1306
+ @pulumi.getter(name="usedBytes")
1307
+ def used_bytes(self) -> Optional[float]:
1308
+ """
1309
+ Resource size in bytes, current storage usage for the volume in bytes
1310
+ """
1311
+ return pulumi.get(self, "used_bytes")
1312
+
1313
+
1314
+ @pulumi.output_type
1315
+ class MountTargetPropertiesResponse(dict):
1316
+ """
1317
+ Mount target properties
1318
+ """
1319
+ @staticmethod
1320
+ def __key_warning(key: str):
1321
+ suggest = None
1322
+ if key == "fileSystemId":
1323
+ suggest = "file_system_id"
1324
+ elif key == "ipAddress":
1325
+ suggest = "ip_address"
1326
+ elif key == "mountTargetId":
1327
+ suggest = "mount_target_id"
1328
+ elif key == "smbServerFqdn":
1329
+ suggest = "smb_server_fqdn"
1330
+
1331
+ if suggest:
1332
+ pulumi.log.warn(f"Key '{key}' not found in MountTargetPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1333
+
1334
+ def __getitem__(self, key: str) -> Any:
1335
+ MountTargetPropertiesResponse.__key_warning(key)
1336
+ return super().__getitem__(key)
1337
+
1338
+ def get(self, key: str, default = None) -> Any:
1339
+ MountTargetPropertiesResponse.__key_warning(key)
1340
+ return super().get(key, default)
1341
+
1342
+ def __init__(__self__, *,
1343
+ file_system_id: str,
1344
+ ip_address: str,
1345
+ mount_target_id: str,
1346
+ smb_server_fqdn: Optional[str] = None):
1347
+ """
1348
+ Mount target properties
1349
+ :param str file_system_id: UUID v4 used to identify the MountTarget
1350
+ :param str ip_address: The mount target's IPv4 address
1351
+ :param str mount_target_id: UUID v4 used to identify the MountTarget
1352
+ :param str smb_server_fqdn: The SMB server's Fully Qualified Domain Name, FQDN
1353
+ """
1354
+ pulumi.set(__self__, "file_system_id", file_system_id)
1355
+ pulumi.set(__self__, "ip_address", ip_address)
1356
+ pulumi.set(__self__, "mount_target_id", mount_target_id)
1357
+ if smb_server_fqdn is not None:
1358
+ pulumi.set(__self__, "smb_server_fqdn", smb_server_fqdn)
1359
+
1360
+ @property
1361
+ @pulumi.getter(name="fileSystemId")
1362
+ def file_system_id(self) -> str:
1363
+ """
1364
+ UUID v4 used to identify the MountTarget
1365
+ """
1366
+ return pulumi.get(self, "file_system_id")
1367
+
1368
+ @property
1369
+ @pulumi.getter(name="ipAddress")
1370
+ def ip_address(self) -> str:
1371
+ """
1372
+ The mount target's IPv4 address
1373
+ """
1374
+ return pulumi.get(self, "ip_address")
1375
+
1376
+ @property
1377
+ @pulumi.getter(name="mountTargetId")
1378
+ def mount_target_id(self) -> str:
1379
+ """
1380
+ UUID v4 used to identify the MountTarget
1381
+ """
1382
+ return pulumi.get(self, "mount_target_id")
1383
+
1384
+ @property
1385
+ @pulumi.getter(name="smbServerFqdn")
1386
+ def smb_server_fqdn(self) -> Optional[str]:
1387
+ """
1388
+ The SMB server's Fully Qualified Domain Name, FQDN
1389
+ """
1390
+ return pulumi.get(self, "smb_server_fqdn")
1391
+
1392
+
1393
+ @pulumi.output_type
1394
+ class PlacementKeyValuePairsResponse(dict):
1395
+ """
1396
+ Application specific parameters for the placement of volumes in the volume group
1397
+ """
1398
+ def __init__(__self__, *,
1399
+ key: str,
1400
+ value: str):
1401
+ """
1402
+ Application specific parameters for the placement of volumes in the volume group
1403
+ :param str key: Key for an application specific parameter for the placement of volumes in the volume group
1404
+ :param str value: Value for an application specific parameter for the placement of volumes in the volume group
1405
+ """
1406
+ pulumi.set(__self__, "key", key)
1407
+ pulumi.set(__self__, "value", value)
1408
+
1409
+ @property
1410
+ @pulumi.getter
1411
+ def key(self) -> str:
1412
+ """
1413
+ Key for an application specific parameter for the placement of volumes in the volume group
1414
+ """
1415
+ return pulumi.get(self, "key")
1416
+
1417
+ @property
1418
+ @pulumi.getter
1419
+ def value(self) -> str:
1420
+ """
1421
+ Value for an application specific parameter for the placement of volumes in the volume group
1422
+ """
1423
+ return pulumi.get(self, "value")
1424
+
1425
+
1426
+ @pulumi.output_type
1427
+ class QuotaReportResponse(dict):
1428
+ """
1429
+ Quota report record properties
1430
+ """
1431
+ def __init__(__self__, *,
1432
+ is_derived_quota: Optional[bool] = None,
1433
+ percentage_used: Optional[float] = None,
1434
+ quota_limit_total_in_ki_bs: Optional[float] = None,
1435
+ quota_limit_used_in_ki_bs: Optional[float] = None,
1436
+ quota_target: Optional[str] = None,
1437
+ quota_type: Optional[str] = None):
1438
+ """
1439
+ Quota report record properties
1440
+ :param bool is_derived_quota: Flag to indicate whether the quota is derived from default quota.
1441
+ :param float percentage_used: Percentage of used size compared to total size.
1442
+ :param float quota_limit_total_in_ki_bs: Specifies the total size limit in kibibytes for the user/group quota.
1443
+ :param float quota_limit_used_in_ki_bs: Specifies the current usage in kibibytes for the user/group quota.
1444
+ :param str quota_target: UserID/GroupID/SID based on the quota target type. UserID and groupID can be found by running ‘id’ or ‘getent’ command for the user or group and SID can be found by running <wmic useraccount where name='user-name' get sid>
1445
+ :param str quota_type: Type of quota
1446
+ """
1447
+ if is_derived_quota is not None:
1448
+ pulumi.set(__self__, "is_derived_quota", is_derived_quota)
1449
+ if percentage_used is not None:
1450
+ pulumi.set(__self__, "percentage_used", percentage_used)
1451
+ if quota_limit_total_in_ki_bs is not None:
1452
+ pulumi.set(__self__, "quota_limit_total_in_ki_bs", quota_limit_total_in_ki_bs)
1453
+ if quota_limit_used_in_ki_bs is not None:
1454
+ pulumi.set(__self__, "quota_limit_used_in_ki_bs", quota_limit_used_in_ki_bs)
1455
+ if quota_target is not None:
1456
+ pulumi.set(__self__, "quota_target", quota_target)
1457
+ if quota_type is not None:
1458
+ pulumi.set(__self__, "quota_type", quota_type)
1459
+
1460
+ @property
1461
+ @pulumi.getter(name="isDerivedQuota")
1462
+ def is_derived_quota(self) -> Optional[bool]:
1463
+ """
1464
+ Flag to indicate whether the quota is derived from default quota.
1465
+ """
1466
+ return pulumi.get(self, "is_derived_quota")
1467
+
1468
+ @property
1469
+ @pulumi.getter(name="percentageUsed")
1470
+ def percentage_used(self) -> Optional[float]:
1471
+ """
1472
+ Percentage of used size compared to total size.
1473
+ """
1474
+ return pulumi.get(self, "percentage_used")
1475
+
1476
+ @property
1477
+ @pulumi.getter(name="quotaLimitTotalInKiBs")
1478
+ def quota_limit_total_in_ki_bs(self) -> Optional[float]:
1479
+ """
1480
+ Specifies the total size limit in kibibytes for the user/group quota.
1481
+ """
1482
+ return pulumi.get(self, "quota_limit_total_in_ki_bs")
1483
+
1484
+ @property
1485
+ @pulumi.getter(name="quotaLimitUsedInKiBs")
1486
+ def quota_limit_used_in_ki_bs(self) -> Optional[float]:
1487
+ """
1488
+ Specifies the current usage in kibibytes for the user/group quota.
1489
+ """
1490
+ return pulumi.get(self, "quota_limit_used_in_ki_bs")
1491
+
1492
+ @property
1493
+ @pulumi.getter(name="quotaTarget")
1494
+ def quota_target(self) -> Optional[str]:
1495
+ """
1496
+ UserID/GroupID/SID based on the quota target type. UserID and groupID can be found by running ‘id’ or ‘getent’ command for the user or group and SID can be found by running <wmic useraccount where name='user-name' get sid>
1497
+ """
1498
+ return pulumi.get(self, "quota_target")
1499
+
1500
+ @property
1501
+ @pulumi.getter(name="quotaType")
1502
+ def quota_type(self) -> Optional[str]:
1503
+ """
1504
+ Type of quota
1505
+ """
1506
+ return pulumi.get(self, "quota_type")
1507
+
1508
+
1509
+ @pulumi.output_type
1510
+ class RemotePathResponse(dict):
1511
+ """
1512
+ The full path to a volume that is to be migrated into ANF. Required for Migration volumes
1513
+ """
1514
+ @staticmethod
1515
+ def __key_warning(key: str):
1516
+ suggest = None
1517
+ if key == "externalHostName":
1518
+ suggest = "external_host_name"
1519
+ elif key == "serverName":
1520
+ suggest = "server_name"
1521
+ elif key == "volumeName":
1522
+ suggest = "volume_name"
1523
+
1524
+ if suggest:
1525
+ pulumi.log.warn(f"Key '{key}' not found in RemotePathResponse. Access the value via the '{suggest}' property getter instead.")
1526
+
1527
+ def __getitem__(self, key: str) -> Any:
1528
+ RemotePathResponse.__key_warning(key)
1529
+ return super().__getitem__(key)
1530
+
1531
+ def get(self, key: str, default = None) -> Any:
1532
+ RemotePathResponse.__key_warning(key)
1533
+ return super().get(key, default)
1534
+
1535
+ def __init__(__self__, *,
1536
+ external_host_name: str,
1537
+ server_name: str,
1538
+ volume_name: str):
1539
+ """
1540
+ The full path to a volume that is to be migrated into ANF. Required for Migration volumes
1541
+ :param str external_host_name: The Path to a ONTAP Host
1542
+ :param str server_name: The name of a server on the ONTAP Host
1543
+ :param str volume_name: The name of a volume on the server
1544
+ """
1545
+ pulumi.set(__self__, "external_host_name", external_host_name)
1546
+ pulumi.set(__self__, "server_name", server_name)
1547
+ pulumi.set(__self__, "volume_name", volume_name)
1548
+
1549
+ @property
1550
+ @pulumi.getter(name="externalHostName")
1551
+ def external_host_name(self) -> str:
1552
+ """
1553
+ The Path to a ONTAP Host
1554
+ """
1555
+ return pulumi.get(self, "external_host_name")
1556
+
1557
+ @property
1558
+ @pulumi.getter(name="serverName")
1559
+ def server_name(self) -> str:
1560
+ """
1561
+ The name of a server on the ONTAP Host
1562
+ """
1563
+ return pulumi.get(self, "server_name")
1564
+
1565
+ @property
1566
+ @pulumi.getter(name="volumeName")
1567
+ def volume_name(self) -> str:
1568
+ """
1569
+ The name of a volume on the server
1570
+ """
1571
+ return pulumi.get(self, "volume_name")
1572
+
1573
+
1574
+ @pulumi.output_type
1575
+ class ReplicationObjectResponse(dict):
1576
+ """
1577
+ Replication properties
1578
+ """
1579
+ @staticmethod
1580
+ def __key_warning(key: str):
1581
+ suggest = None
1582
+ if key == "destinationReplications":
1583
+ suggest = "destination_replications"
1584
+ elif key == "replicationId":
1585
+ suggest = "replication_id"
1586
+ elif key == "endpointType":
1587
+ suggest = "endpoint_type"
1588
+ elif key == "remotePath":
1589
+ suggest = "remote_path"
1590
+ elif key == "remoteVolumeRegion":
1591
+ suggest = "remote_volume_region"
1592
+ elif key == "remoteVolumeResourceId":
1593
+ suggest = "remote_volume_resource_id"
1594
+ elif key == "replicationSchedule":
1595
+ suggest = "replication_schedule"
1596
+
1597
+ if suggest:
1598
+ pulumi.log.warn(f"Key '{key}' not found in ReplicationObjectResponse. Access the value via the '{suggest}' property getter instead.")
1599
+
1600
+ def __getitem__(self, key: str) -> Any:
1601
+ ReplicationObjectResponse.__key_warning(key)
1602
+ return super().__getitem__(key)
1603
+
1604
+ def get(self, key: str, default = None) -> Any:
1605
+ ReplicationObjectResponse.__key_warning(key)
1606
+ return super().get(key, default)
1607
+
1608
+ def __init__(__self__, *,
1609
+ destination_replications: Sequence['outputs.DestinationReplicationResponse'],
1610
+ replication_id: str,
1611
+ endpoint_type: Optional[str] = None,
1612
+ remote_path: Optional['outputs.RemotePathResponse'] = None,
1613
+ remote_volume_region: Optional[str] = None,
1614
+ remote_volume_resource_id: Optional[str] = None,
1615
+ replication_schedule: Optional[str] = None):
1616
+ """
1617
+ Replication properties
1618
+ :param Sequence['DestinationReplicationResponse'] destination_replications: A list of destination replications
1619
+ :param str replication_id: Id
1620
+ :param str endpoint_type: Indicates whether the local volume is the source or destination for the Volume Replication
1621
+ :param 'RemotePathResponse' remote_path: The full path to a volume that is to be migrated into ANF. Required for Migration volumes
1622
+ :param str remote_volume_region: The remote region for the other end of the Volume Replication.
1623
+ :param str remote_volume_resource_id: The resource ID of the remote volume. Required for cross region and cross zone replication
1624
+ :param str replication_schedule: Schedule
1625
+ """
1626
+ pulumi.set(__self__, "destination_replications", destination_replications)
1627
+ pulumi.set(__self__, "replication_id", replication_id)
1628
+ if endpoint_type is not None:
1629
+ pulumi.set(__self__, "endpoint_type", endpoint_type)
1630
+ if remote_path is not None:
1631
+ pulumi.set(__self__, "remote_path", remote_path)
1632
+ if remote_volume_region is not None:
1633
+ pulumi.set(__self__, "remote_volume_region", remote_volume_region)
1634
+ if remote_volume_resource_id is not None:
1635
+ pulumi.set(__self__, "remote_volume_resource_id", remote_volume_resource_id)
1636
+ if replication_schedule is not None:
1637
+ pulumi.set(__self__, "replication_schedule", replication_schedule)
1638
+
1639
+ @property
1640
+ @pulumi.getter(name="destinationReplications")
1641
+ def destination_replications(self) -> Sequence['outputs.DestinationReplicationResponse']:
1642
+ """
1643
+ A list of destination replications
1644
+ """
1645
+ return pulumi.get(self, "destination_replications")
1646
+
1647
+ @property
1648
+ @pulumi.getter(name="replicationId")
1649
+ def replication_id(self) -> str:
1650
+ """
1651
+ Id
1652
+ """
1653
+ return pulumi.get(self, "replication_id")
1654
+
1655
+ @property
1656
+ @pulumi.getter(name="endpointType")
1657
+ def endpoint_type(self) -> Optional[str]:
1658
+ """
1659
+ Indicates whether the local volume is the source or destination for the Volume Replication
1660
+ """
1661
+ return pulumi.get(self, "endpoint_type")
1662
+
1663
+ @property
1664
+ @pulumi.getter(name="remotePath")
1665
+ def remote_path(self) -> Optional['outputs.RemotePathResponse']:
1666
+ """
1667
+ The full path to a volume that is to be migrated into ANF. Required for Migration volumes
1668
+ """
1669
+ return pulumi.get(self, "remote_path")
1670
+
1671
+ @property
1672
+ @pulumi.getter(name="remoteVolumeRegion")
1673
+ def remote_volume_region(self) -> Optional[str]:
1674
+ """
1675
+ The remote region for the other end of the Volume Replication.
1676
+ """
1677
+ return pulumi.get(self, "remote_volume_region")
1678
+
1679
+ @property
1680
+ @pulumi.getter(name="remoteVolumeResourceId")
1681
+ def remote_volume_resource_id(self) -> Optional[str]:
1682
+ """
1683
+ The resource ID of the remote volume. Required for cross region and cross zone replication
1684
+ """
1685
+ return pulumi.get(self, "remote_volume_resource_id")
1686
+
1687
+ @property
1688
+ @pulumi.getter(name="replicationSchedule")
1689
+ def replication_schedule(self) -> Optional[str]:
1690
+ """
1691
+ Schedule
1692
+ """
1693
+ return pulumi.get(self, "replication_schedule")
1694
+
1695
+
1696
+ @pulumi.output_type
1697
+ class ReplicationResponse(dict):
1698
+ """
1699
+ Replication properties
1700
+ """
1701
+ def __init__(__self__, *,
1702
+ remote_volume_resource_id: str,
1703
+ replication_id: str,
1704
+ endpoint_type: Optional[str] = None,
1705
+ remote_volume_region: Optional[str] = None,
1706
+ replication_schedule: Optional[str] = None):
1707
+ """
1708
+ Replication properties
1709
+ :param str remote_volume_resource_id: The resource ID of the remote volume.
1710
+ :param str replication_id: UUID v4 used to identify the replication.
1711
+ :param str endpoint_type: Indicates whether the local volume is the source or destination for the Volume Replication
1712
+ :param str remote_volume_region: The remote region for the other end of the Volume Replication.
1713
+ :param str replication_schedule: Schedule
1714
+ """
1715
+ pulumi.set(__self__, "remote_volume_resource_id", remote_volume_resource_id)
1716
+ pulumi.set(__self__, "replication_id", replication_id)
1717
+ if endpoint_type is not None:
1718
+ pulumi.set(__self__, "endpoint_type", endpoint_type)
1719
+ if remote_volume_region is not None:
1720
+ pulumi.set(__self__, "remote_volume_region", remote_volume_region)
1721
+ if replication_schedule is not None:
1722
+ pulumi.set(__self__, "replication_schedule", replication_schedule)
1723
+
1724
+ @property
1725
+ @pulumi.getter(name="remoteVolumeResourceId")
1726
+ def remote_volume_resource_id(self) -> str:
1727
+ """
1728
+ The resource ID of the remote volume.
1729
+ """
1730
+ return pulumi.get(self, "remote_volume_resource_id")
1731
+
1732
+ @property
1733
+ @pulumi.getter(name="replicationId")
1734
+ def replication_id(self) -> str:
1735
+ """
1736
+ UUID v4 used to identify the replication.
1737
+ """
1738
+ return pulumi.get(self, "replication_id")
1739
+
1740
+ @property
1741
+ @pulumi.getter(name="endpointType")
1742
+ def endpoint_type(self) -> Optional[str]:
1743
+ """
1744
+ Indicates whether the local volume is the source or destination for the Volume Replication
1745
+ """
1746
+ return pulumi.get(self, "endpoint_type")
1747
+
1748
+ @property
1749
+ @pulumi.getter(name="remoteVolumeRegion")
1750
+ def remote_volume_region(self) -> Optional[str]:
1751
+ """
1752
+ The remote region for the other end of the Volume Replication.
1753
+ """
1754
+ return pulumi.get(self, "remote_volume_region")
1755
+
1756
+ @property
1757
+ @pulumi.getter(name="replicationSchedule")
1758
+ def replication_schedule(self) -> Optional[str]:
1759
+ """
1760
+ Schedule
1761
+ """
1762
+ return pulumi.get(self, "replication_schedule")
1763
+
1764
+
1765
+ @pulumi.output_type
1766
+ class SystemDataResponse(dict):
1767
+ """
1768
+ Metadata pertaining to creation and last modification of the resource.
1769
+ """
1770
+ @staticmethod
1771
+ def __key_warning(key: str):
1772
+ suggest = None
1773
+ if key == "createdAt":
1774
+ suggest = "created_at"
1775
+ elif key == "createdBy":
1776
+ suggest = "created_by"
1777
+ elif key == "createdByType":
1778
+ suggest = "created_by_type"
1779
+ elif key == "lastModifiedAt":
1780
+ suggest = "last_modified_at"
1781
+ elif key == "lastModifiedBy":
1782
+ suggest = "last_modified_by"
1783
+ elif key == "lastModifiedByType":
1784
+ suggest = "last_modified_by_type"
1785
+
1786
+ if suggest:
1787
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1788
+
1789
+ def __getitem__(self, key: str) -> Any:
1790
+ SystemDataResponse.__key_warning(key)
1791
+ return super().__getitem__(key)
1792
+
1793
+ def get(self, key: str, default = None) -> Any:
1794
+ SystemDataResponse.__key_warning(key)
1795
+ return super().get(key, default)
1796
+
1797
+ def __init__(__self__, *,
1798
+ created_at: Optional[str] = None,
1799
+ created_by: Optional[str] = None,
1800
+ created_by_type: Optional[str] = None,
1801
+ last_modified_at: Optional[str] = None,
1802
+ last_modified_by: Optional[str] = None,
1803
+ last_modified_by_type: Optional[str] = None):
1804
+ """
1805
+ Metadata pertaining to creation and last modification of the resource.
1806
+ :param str created_at: The timestamp of resource creation (UTC).
1807
+ :param str created_by: The identity that created the resource.
1808
+ :param str created_by_type: The type of identity that created the resource.
1809
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1810
+ :param str last_modified_by: The identity that last modified the resource.
1811
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1812
+ """
1813
+ if created_at is not None:
1814
+ pulumi.set(__self__, "created_at", created_at)
1815
+ if created_by is not None:
1816
+ pulumi.set(__self__, "created_by", created_by)
1817
+ if created_by_type is not None:
1818
+ pulumi.set(__self__, "created_by_type", created_by_type)
1819
+ if last_modified_at is not None:
1820
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1821
+ if last_modified_by is not None:
1822
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1823
+ if last_modified_by_type is not None:
1824
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1825
+
1826
+ @property
1827
+ @pulumi.getter(name="createdAt")
1828
+ def created_at(self) -> Optional[str]:
1829
+ """
1830
+ The timestamp of resource creation (UTC).
1831
+ """
1832
+ return pulumi.get(self, "created_at")
1833
+
1834
+ @property
1835
+ @pulumi.getter(name="createdBy")
1836
+ def created_by(self) -> Optional[str]:
1837
+ """
1838
+ The identity that created the resource.
1839
+ """
1840
+ return pulumi.get(self, "created_by")
1841
+
1842
+ @property
1843
+ @pulumi.getter(name="createdByType")
1844
+ def created_by_type(self) -> Optional[str]:
1845
+ """
1846
+ The type of identity that created the resource.
1847
+ """
1848
+ return pulumi.get(self, "created_by_type")
1849
+
1850
+ @property
1851
+ @pulumi.getter(name="lastModifiedAt")
1852
+ def last_modified_at(self) -> Optional[str]:
1853
+ """
1854
+ The timestamp of resource last modification (UTC)
1855
+ """
1856
+ return pulumi.get(self, "last_modified_at")
1857
+
1858
+ @property
1859
+ @pulumi.getter(name="lastModifiedBy")
1860
+ def last_modified_by(self) -> Optional[str]:
1861
+ """
1862
+ The identity that last modified the resource.
1863
+ """
1864
+ return pulumi.get(self, "last_modified_by")
1865
+
1866
+ @property
1867
+ @pulumi.getter(name="lastModifiedByType")
1868
+ def last_modified_by_type(self) -> Optional[str]:
1869
+ """
1870
+ The type of identity that last modified the resource.
1871
+ """
1872
+ return pulumi.get(self, "last_modified_by_type")
1873
+
1874
+
1875
+ @pulumi.output_type
1876
+ class UserAssignedIdentityResponse(dict):
1877
+ """
1878
+ User assigned identity properties
1879
+ """
1880
+ @staticmethod
1881
+ def __key_warning(key: str):
1882
+ suggest = None
1883
+ if key == "clientId":
1884
+ suggest = "client_id"
1885
+ elif key == "principalId":
1886
+ suggest = "principal_id"
1887
+
1888
+ if suggest:
1889
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1890
+
1891
+ def __getitem__(self, key: str) -> Any:
1892
+ UserAssignedIdentityResponse.__key_warning(key)
1893
+ return super().__getitem__(key)
1894
+
1895
+ def get(self, key: str, default = None) -> Any:
1896
+ UserAssignedIdentityResponse.__key_warning(key)
1897
+ return super().get(key, default)
1898
+
1899
+ def __init__(__self__, *,
1900
+ client_id: str,
1901
+ principal_id: str):
1902
+ """
1903
+ User assigned identity properties
1904
+ :param str client_id: The client ID of the assigned identity.
1905
+ :param str principal_id: The principal ID of the assigned identity.
1906
+ """
1907
+ pulumi.set(__self__, "client_id", client_id)
1908
+ pulumi.set(__self__, "principal_id", principal_id)
1909
+
1910
+ @property
1911
+ @pulumi.getter(name="clientId")
1912
+ def client_id(self) -> str:
1913
+ """
1914
+ The client ID of the assigned identity.
1915
+ """
1916
+ return pulumi.get(self, "client_id")
1917
+
1918
+ @property
1919
+ @pulumi.getter(name="principalId")
1920
+ def principal_id(self) -> str:
1921
+ """
1922
+ The principal ID of the assigned identity.
1923
+ """
1924
+ return pulumi.get(self, "principal_id")
1925
+
1926
+
1927
+ @pulumi.output_type
1928
+ class VolumeBackupPropertiesResponse(dict):
1929
+ """
1930
+ Volume Backup Properties
1931
+ """
1932
+ @staticmethod
1933
+ def __key_warning(key: str):
1934
+ suggest = None
1935
+ if key == "backupPolicyId":
1936
+ suggest = "backup_policy_id"
1937
+ elif key == "backupVaultId":
1938
+ suggest = "backup_vault_id"
1939
+ elif key == "policyEnforced":
1940
+ suggest = "policy_enforced"
1941
+
1942
+ if suggest:
1943
+ pulumi.log.warn(f"Key '{key}' not found in VolumeBackupPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
1944
+
1945
+ def __getitem__(self, key: str) -> Any:
1946
+ VolumeBackupPropertiesResponse.__key_warning(key)
1947
+ return super().__getitem__(key)
1948
+
1949
+ def get(self, key: str, default = None) -> Any:
1950
+ VolumeBackupPropertiesResponse.__key_warning(key)
1951
+ return super().get(key, default)
1952
+
1953
+ def __init__(__self__, *,
1954
+ backup_policy_id: Optional[str] = None,
1955
+ backup_vault_id: Optional[str] = None,
1956
+ policy_enforced: Optional[bool] = None):
1957
+ """
1958
+ Volume Backup Properties
1959
+ :param str backup_policy_id: Backup Policy Resource ID
1960
+ :param str backup_vault_id: Backup Vault Resource ID
1961
+ :param bool policy_enforced: Policy Enforced
1962
+ """
1963
+ if backup_policy_id is not None:
1964
+ pulumi.set(__self__, "backup_policy_id", backup_policy_id)
1965
+ if backup_vault_id is not None:
1966
+ pulumi.set(__self__, "backup_vault_id", backup_vault_id)
1967
+ if policy_enforced is not None:
1968
+ pulumi.set(__self__, "policy_enforced", policy_enforced)
1969
+
1970
+ @property
1971
+ @pulumi.getter(name="backupPolicyId")
1972
+ def backup_policy_id(self) -> Optional[str]:
1973
+ """
1974
+ Backup Policy Resource ID
1975
+ """
1976
+ return pulumi.get(self, "backup_policy_id")
1977
+
1978
+ @property
1979
+ @pulumi.getter(name="backupVaultId")
1980
+ def backup_vault_id(self) -> Optional[str]:
1981
+ """
1982
+ Backup Vault Resource ID
1983
+ """
1984
+ return pulumi.get(self, "backup_vault_id")
1985
+
1986
+ @property
1987
+ @pulumi.getter(name="policyEnforced")
1988
+ def policy_enforced(self) -> Optional[bool]:
1989
+ """
1990
+ Policy Enforced
1991
+ """
1992
+ return pulumi.get(self, "policy_enforced")
1993
+
1994
+
1995
+ @pulumi.output_type
1996
+ class VolumeBackupsResponse(dict):
1997
+ """
1998
+ Volume details using the backup policy
1999
+ """
2000
+ @staticmethod
2001
+ def __key_warning(key: str):
2002
+ suggest = None
2003
+ if key == "backupsCount":
2004
+ suggest = "backups_count"
2005
+ elif key == "policyEnabled":
2006
+ suggest = "policy_enabled"
2007
+ elif key == "volumeName":
2008
+ suggest = "volume_name"
2009
+ elif key == "volumeResourceId":
2010
+ suggest = "volume_resource_id"
2011
+
2012
+ if suggest:
2013
+ pulumi.log.warn(f"Key '{key}' not found in VolumeBackupsResponse. Access the value via the '{suggest}' property getter instead.")
2014
+
2015
+ def __getitem__(self, key: str) -> Any:
2016
+ VolumeBackupsResponse.__key_warning(key)
2017
+ return super().__getitem__(key)
2018
+
2019
+ def get(self, key: str, default = None) -> Any:
2020
+ VolumeBackupsResponse.__key_warning(key)
2021
+ return super().get(key, default)
2022
+
2023
+ def __init__(__self__, *,
2024
+ backups_count: Optional[int] = None,
2025
+ policy_enabled: Optional[bool] = None,
2026
+ volume_name: Optional[str] = None,
2027
+ volume_resource_id: Optional[str] = None):
2028
+ """
2029
+ Volume details using the backup policy
2030
+ :param int backups_count: Total count of backups for volume
2031
+ :param bool policy_enabled: Policy enabled
2032
+ :param str volume_name: Volume name
2033
+ :param str volume_resource_id: ResourceId used to identify the Volume
2034
+ """
2035
+ if backups_count is not None:
2036
+ pulumi.set(__self__, "backups_count", backups_count)
2037
+ if policy_enabled is not None:
2038
+ pulumi.set(__self__, "policy_enabled", policy_enabled)
2039
+ if volume_name is not None:
2040
+ pulumi.set(__self__, "volume_name", volume_name)
2041
+ if volume_resource_id is not None:
2042
+ pulumi.set(__self__, "volume_resource_id", volume_resource_id)
2043
+
2044
+ @property
2045
+ @pulumi.getter(name="backupsCount")
2046
+ def backups_count(self) -> Optional[int]:
2047
+ """
2048
+ Total count of backups for volume
2049
+ """
2050
+ return pulumi.get(self, "backups_count")
2051
+
2052
+ @property
2053
+ @pulumi.getter(name="policyEnabled")
2054
+ def policy_enabled(self) -> Optional[bool]:
2055
+ """
2056
+ Policy enabled
2057
+ """
2058
+ return pulumi.get(self, "policy_enabled")
2059
+
2060
+ @property
2061
+ @pulumi.getter(name="volumeName")
2062
+ def volume_name(self) -> Optional[str]:
2063
+ """
2064
+ Volume name
2065
+ """
2066
+ return pulumi.get(self, "volume_name")
2067
+
2068
+ @property
2069
+ @pulumi.getter(name="volumeResourceId")
2070
+ def volume_resource_id(self) -> Optional[str]:
2071
+ """
2072
+ ResourceId used to identify the Volume
2073
+ """
2074
+ return pulumi.get(self, "volume_resource_id")
2075
+
2076
+
2077
+ @pulumi.output_type
2078
+ class VolumeGroupMetaDataResponse(dict):
2079
+ """
2080
+ Volume group properties
2081
+ """
2082
+ @staticmethod
2083
+ def __key_warning(key: str):
2084
+ suggest = None
2085
+ if key == "volumesCount":
2086
+ suggest = "volumes_count"
2087
+ elif key == "applicationIdentifier":
2088
+ suggest = "application_identifier"
2089
+ elif key == "applicationType":
2090
+ suggest = "application_type"
2091
+ elif key == "globalPlacementRules":
2092
+ suggest = "global_placement_rules"
2093
+ elif key == "groupDescription":
2094
+ suggest = "group_description"
2095
+
2096
+ if suggest:
2097
+ pulumi.log.warn(f"Key '{key}' not found in VolumeGroupMetaDataResponse. Access the value via the '{suggest}' property getter instead.")
2098
+
2099
+ def __getitem__(self, key: str) -> Any:
2100
+ VolumeGroupMetaDataResponse.__key_warning(key)
2101
+ return super().__getitem__(key)
2102
+
2103
+ def get(self, key: str, default = None) -> Any:
2104
+ VolumeGroupMetaDataResponse.__key_warning(key)
2105
+ return super().get(key, default)
2106
+
2107
+ def __init__(__self__, *,
2108
+ volumes_count: float,
2109
+ application_identifier: Optional[str] = None,
2110
+ application_type: Optional[str] = None,
2111
+ global_placement_rules: Optional[Sequence['outputs.PlacementKeyValuePairsResponse']] = None,
2112
+ group_description: Optional[str] = None):
2113
+ """
2114
+ Volume group properties
2115
+ :param float volumes_count: Number of volumes in volume group
2116
+ :param str application_identifier: Application specific identifier
2117
+ :param str application_type: Application Type
2118
+ :param Sequence['PlacementKeyValuePairsResponse'] global_placement_rules: Application specific placement rules for the volume group
2119
+ :param str group_description: Group Description
2120
+ """
2121
+ pulumi.set(__self__, "volumes_count", volumes_count)
2122
+ if application_identifier is not None:
2123
+ pulumi.set(__self__, "application_identifier", application_identifier)
2124
+ if application_type is not None:
2125
+ pulumi.set(__self__, "application_type", application_type)
2126
+ if global_placement_rules is not None:
2127
+ pulumi.set(__self__, "global_placement_rules", global_placement_rules)
2128
+ if group_description is not None:
2129
+ pulumi.set(__self__, "group_description", group_description)
2130
+
2131
+ @property
2132
+ @pulumi.getter(name="volumesCount")
2133
+ def volumes_count(self) -> float:
2134
+ """
2135
+ Number of volumes in volume group
2136
+ """
2137
+ return pulumi.get(self, "volumes_count")
2138
+
2139
+ @property
2140
+ @pulumi.getter(name="applicationIdentifier")
2141
+ def application_identifier(self) -> Optional[str]:
2142
+ """
2143
+ Application specific identifier
2144
+ """
2145
+ return pulumi.get(self, "application_identifier")
2146
+
2147
+ @property
2148
+ @pulumi.getter(name="applicationType")
2149
+ def application_type(self) -> Optional[str]:
2150
+ """
2151
+ Application Type
2152
+ """
2153
+ return pulumi.get(self, "application_type")
2154
+
2155
+ @property
2156
+ @pulumi.getter(name="globalPlacementRules")
2157
+ def global_placement_rules(self) -> Optional[Sequence['outputs.PlacementKeyValuePairsResponse']]:
2158
+ """
2159
+ Application specific placement rules for the volume group
2160
+ """
2161
+ return pulumi.get(self, "global_placement_rules")
2162
+
2163
+ @property
2164
+ @pulumi.getter(name="groupDescription")
2165
+ def group_description(self) -> Optional[str]:
2166
+ """
2167
+ Group Description
2168
+ """
2169
+ return pulumi.get(self, "group_description")
2170
+
2171
+
2172
+ @pulumi.output_type
2173
+ class VolumeGroupVolumePropertiesResponse(dict):
2174
+ """
2175
+ Volume resource
2176
+ """
2177
+ @staticmethod
2178
+ def __key_warning(key: str):
2179
+ suggest = None
2180
+ if key == "actualThroughputMibps":
2181
+ suggest = "actual_throughput_mibps"
2182
+ elif key == "baremetalTenantId":
2183
+ suggest = "baremetal_tenant_id"
2184
+ elif key == "cloneProgress":
2185
+ suggest = "clone_progress"
2186
+ elif key == "creationToken":
2187
+ suggest = "creation_token"
2188
+ elif key == "dataStoreResourceId":
2189
+ suggest = "data_store_resource_id"
2190
+ elif key == "effectiveNetworkFeatures":
2191
+ suggest = "effective_network_features"
2192
+ elif key == "fileAccessLogs":
2193
+ suggest = "file_access_logs"
2194
+ elif key == "fileSystemId":
2195
+ suggest = "file_system_id"
2196
+ elif key == "inheritedSizeInBytes":
2197
+ suggest = "inherited_size_in_bytes"
2198
+ elif key == "maximumNumberOfFiles":
2199
+ suggest = "maximum_number_of_files"
2200
+ elif key == "mountTargets":
2201
+ suggest = "mount_targets"
2202
+ elif key == "networkSiblingSetId":
2203
+ suggest = "network_sibling_set_id"
2204
+ elif key == "originatingResourceId":
2205
+ suggest = "originating_resource_id"
2206
+ elif key == "provisionedAvailabilityZone":
2207
+ suggest = "provisioned_availability_zone"
2208
+ elif key == "provisioningState":
2209
+ suggest = "provisioning_state"
2210
+ elif key == "storageToNetworkProximity":
2211
+ suggest = "storage_to_network_proximity"
2212
+ elif key == "subnetId":
2213
+ suggest = "subnet_id"
2214
+ elif key == "t2Network":
2215
+ suggest = "t2_network"
2216
+ elif key == "usageThreshold":
2217
+ suggest = "usage_threshold"
2218
+ elif key == "volumeGroupName":
2219
+ suggest = "volume_group_name"
2220
+ elif key == "acceptGrowCapacityPoolForShortTermCloneSplit":
2221
+ suggest = "accept_grow_capacity_pool_for_short_term_clone_split"
2222
+ elif key == "avsDataStore":
2223
+ suggest = "avs_data_store"
2224
+ elif key == "backupId":
2225
+ suggest = "backup_id"
2226
+ elif key == "capacityPoolResourceId":
2227
+ suggest = "capacity_pool_resource_id"
2228
+ elif key == "coolAccess":
2229
+ suggest = "cool_access"
2230
+ elif key == "coolAccessRetrievalPolicy":
2231
+ suggest = "cool_access_retrieval_policy"
2232
+ elif key == "coolAccessTieringPolicy":
2233
+ suggest = "cool_access_tiering_policy"
2234
+ elif key == "coolnessPeriod":
2235
+ suggest = "coolness_period"
2236
+ elif key == "dataProtection":
2237
+ suggest = "data_protection"
2238
+ elif key == "defaultGroupQuotaInKiBs":
2239
+ suggest = "default_group_quota_in_ki_bs"
2240
+ elif key == "defaultUserQuotaInKiBs":
2241
+ suggest = "default_user_quota_in_ki_bs"
2242
+ elif key == "deleteBaseSnapshot":
2243
+ suggest = "delete_base_snapshot"
2244
+ elif key == "enableSubvolumes":
2245
+ suggest = "enable_subvolumes"
2246
+ elif key == "encryptionKeySource":
2247
+ suggest = "encryption_key_source"
2248
+ elif key == "exportPolicy":
2249
+ suggest = "export_policy"
2250
+ elif key == "isDefaultQuotaEnabled":
2251
+ suggest = "is_default_quota_enabled"
2252
+ elif key == "isLargeVolume":
2253
+ suggest = "is_large_volume"
2254
+ elif key == "isRestoring":
2255
+ suggest = "is_restoring"
2256
+ elif key == "kerberosEnabled":
2257
+ suggest = "kerberos_enabled"
2258
+ elif key == "keyVaultPrivateEndpointResourceId":
2259
+ suggest = "key_vault_private_endpoint_resource_id"
2260
+ elif key == "ldapEnabled":
2261
+ suggest = "ldap_enabled"
2262
+ elif key == "networkFeatures":
2263
+ suggest = "network_features"
2264
+ elif key == "placementRules":
2265
+ suggest = "placement_rules"
2266
+ elif key == "protocolTypes":
2267
+ suggest = "protocol_types"
2268
+ elif key == "proximityPlacementGroup":
2269
+ suggest = "proximity_placement_group"
2270
+ elif key == "securityStyle":
2271
+ suggest = "security_style"
2272
+ elif key == "serviceLevel":
2273
+ suggest = "service_level"
2274
+ elif key == "smbAccessBasedEnumeration":
2275
+ suggest = "smb_access_based_enumeration"
2276
+ elif key == "smbContinuouslyAvailable":
2277
+ suggest = "smb_continuously_available"
2278
+ elif key == "smbEncryption":
2279
+ suggest = "smb_encryption"
2280
+ elif key == "smbNonBrowsable":
2281
+ suggest = "smb_non_browsable"
2282
+ elif key == "snapshotDirectoryVisible":
2283
+ suggest = "snapshot_directory_visible"
2284
+ elif key == "snapshotId":
2285
+ suggest = "snapshot_id"
2286
+ elif key == "throughputMibps":
2287
+ suggest = "throughput_mibps"
2288
+ elif key == "unixPermissions":
2289
+ suggest = "unix_permissions"
2290
+ elif key == "volumeSpecName":
2291
+ suggest = "volume_spec_name"
2292
+ elif key == "volumeType":
2293
+ suggest = "volume_type"
2294
+
2295
+ if suggest:
2296
+ pulumi.log.warn(f"Key '{key}' not found in VolumeGroupVolumePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
2297
+
2298
+ def __getitem__(self, key: str) -> Any:
2299
+ VolumeGroupVolumePropertiesResponse.__key_warning(key)
2300
+ return super().__getitem__(key)
2301
+
2302
+ def get(self, key: str, default = None) -> Any:
2303
+ VolumeGroupVolumePropertiesResponse.__key_warning(key)
2304
+ return super().get(key, default)
2305
+
2306
+ def __init__(__self__, *,
2307
+ actual_throughput_mibps: float,
2308
+ baremetal_tenant_id: str,
2309
+ clone_progress: int,
2310
+ creation_token: str,
2311
+ data_store_resource_id: Sequence[str],
2312
+ effective_network_features: str,
2313
+ encrypted: bool,
2314
+ file_access_logs: Optional[str] = None,
2315
+ file_system_id: str,
2316
+ id: str,
2317
+ inherited_size_in_bytes: float,
2318
+ maximum_number_of_files: float,
2319
+ mount_targets: Sequence['outputs.MountTargetPropertiesResponse'],
2320
+ network_sibling_set_id: str,
2321
+ originating_resource_id: str,
2322
+ provisioned_availability_zone: str,
2323
+ provisioning_state: str,
2324
+ storage_to_network_proximity: str,
2325
+ subnet_id: str,
2326
+ t2_network: str,
2327
+ type: str,
2328
+ usage_threshold: Optional[float] = None,
2329
+ volume_group_name: str,
2330
+ accept_grow_capacity_pool_for_short_term_clone_split: Optional[str] = None,
2331
+ avs_data_store: Optional[str] = None,
2332
+ backup_id: Optional[str] = None,
2333
+ capacity_pool_resource_id: Optional[str] = None,
2334
+ cool_access: Optional[bool] = None,
2335
+ cool_access_retrieval_policy: Optional[str] = None,
2336
+ cool_access_tiering_policy: Optional[str] = None,
2337
+ coolness_period: Optional[int] = None,
2338
+ data_protection: Optional['outputs.VolumePropertiesResponseDataProtection'] = None,
2339
+ default_group_quota_in_ki_bs: Optional[float] = None,
2340
+ default_user_quota_in_ki_bs: Optional[float] = None,
2341
+ delete_base_snapshot: Optional[bool] = None,
2342
+ enable_subvolumes: Optional[str] = None,
2343
+ encryption_key_source: Optional[str] = None,
2344
+ export_policy: Optional['outputs.VolumePropertiesResponseExportPolicy'] = None,
2345
+ is_default_quota_enabled: Optional[bool] = None,
2346
+ is_large_volume: Optional[bool] = None,
2347
+ is_restoring: Optional[bool] = None,
2348
+ kerberos_enabled: Optional[bool] = None,
2349
+ key_vault_private_endpoint_resource_id: Optional[str] = None,
2350
+ language: Optional[str] = None,
2351
+ ldap_enabled: Optional[bool] = None,
2352
+ name: Optional[str] = None,
2353
+ network_features: Optional[str] = None,
2354
+ placement_rules: Optional[Sequence['outputs.PlacementKeyValuePairsResponse']] = None,
2355
+ protocol_types: Optional[Sequence[str]] = None,
2356
+ proximity_placement_group: Optional[str] = None,
2357
+ security_style: Optional[str] = None,
2358
+ service_level: Optional[str] = None,
2359
+ smb_access_based_enumeration: Optional[str] = None,
2360
+ smb_continuously_available: Optional[bool] = None,
2361
+ smb_encryption: Optional[bool] = None,
2362
+ smb_non_browsable: Optional[str] = None,
2363
+ snapshot_directory_visible: Optional[bool] = None,
2364
+ snapshot_id: Optional[str] = None,
2365
+ tags: Optional[Mapping[str, str]] = None,
2366
+ throughput_mibps: Optional[float] = None,
2367
+ unix_permissions: Optional[str] = None,
2368
+ volume_spec_name: Optional[str] = None,
2369
+ volume_type: Optional[str] = None,
2370
+ zones: Optional[Sequence[str]] = None):
2371
+ """
2372
+ Volume resource
2373
+ :param float actual_throughput_mibps: Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
2374
+ :param str baremetal_tenant_id: Unique Baremetal Tenant Identifier.
2375
+ :param int clone_progress: When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
2376
+ :param str creation_token: A unique file path for the volume. Used when creating mount targets
2377
+ :param Sequence[str] data_store_resource_id: Data store resource unique identifier
2378
+ :param str effective_network_features: The effective value of the network features type available to the volume, or current effective state of update.
2379
+ :param bool encrypted: Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
2380
+ :param str file_access_logs: Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
2381
+ :param str file_system_id: Unique FileSystem Identifier.
2382
+ :param str id: Resource Id
2383
+ :param float inherited_size_in_bytes: Space shared by short term clone volume with parent volume in bytes.
2384
+ :param float maximum_number_of_files: Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
2385
+ :param Sequence['MountTargetPropertiesResponse'] mount_targets: List of mount targets
2386
+ :param str network_sibling_set_id: Network Sibling Set ID for the the group of volumes sharing networking resources.
2387
+ :param str originating_resource_id: Id of the snapshot or backup that the volume is restored from.
2388
+ :param str provisioned_availability_zone: The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
2389
+ :param str provisioning_state: Azure lifecycle management
2390
+ :param str storage_to_network_proximity: Provides storage to network proximity information for the volume.
2391
+ :param str subnet_id: The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
2392
+ :param str t2_network: T2 network information
2393
+ :param str type: Resource type
2394
+ :param float usage_threshold: Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. For regular volumes, valid values are in the range 50GiB to 100TiB. For large volumes, valid values are in the range 100TiB to 1PiB, and on an exceptional basis, from to 2400GiB to 2400TiB. Values expressed in bytes as multiples of 1 GiB.
2395
+ :param str volume_group_name: Volume Group Name
2396
+ :param str accept_grow_capacity_pool_for_short_term_clone_split: While auto splitting the short term clone volume, if the parent pool does not have enough space to accommodate the volume after split, it will be automatically resized, which will lead to increased billing. To accept capacity pool size auto grow and create a short term clone volume, set the property as accepted.
2397
+ :param str avs_data_store: Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
2398
+ :param str backup_id: Resource identifier used to identify the Backup.
2399
+ :param str capacity_pool_resource_id: Pool Resource Id used in case of creating a volume through volume group
2400
+ :param bool cool_access: Specifies whether Cool Access(tiering) is enabled for the volume.
2401
+ :param str cool_access_retrieval_policy: coolAccessRetrievalPolicy determines the data retrieval behavior from the cool tier to standard storage based on the read pattern for cool access enabled volumes. The possible values for this field are:
2402
+ Default - Data will be pulled from cool tier to standard storage on random reads. This policy is the default.
2403
+ OnRead - All client-driven data read is pulled from cool tier to standard storage on both sequential and random reads.
2404
+ Never - No client-driven data is pulled from cool tier to standard storage.
2405
+ :param str cool_access_tiering_policy: coolAccessTieringPolicy determines which cold data blocks are moved to cool tier. The possible values for this field are: Auto - Moves cold user data blocks in both the Snapshot copies and the active file system to the cool tier tier. This policy is the default. SnapshotOnly - Moves user data blocks of the Volume Snapshot copies that are not associated with the active file system to the cool tier.
2406
+ :param int coolness_period: Specifies the number of days after which data that is not accessed by clients will be tiered.
2407
+ :param 'VolumePropertiesResponseDataProtection' data_protection: DataProtection type volumes include an object containing details of the replication
2408
+ :param float default_group_quota_in_ki_bs: Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
2409
+ :param float default_user_quota_in_ki_bs: Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
2410
+ :param bool delete_base_snapshot: If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
2411
+ :param str enable_subvolumes: Flag indicating whether subvolume operations are enabled on the volume
2412
+ :param str encryption_key_source: Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
2413
+ :param 'VolumePropertiesResponseExportPolicy' export_policy: Set of export policy rules
2414
+ :param bool is_default_quota_enabled: Specifies if default quota is enabled for the volume.
2415
+ :param bool is_large_volume: Specifies whether volume is a Large Volume or Regular Volume.
2416
+ :param bool is_restoring: Restoring
2417
+ :param bool kerberos_enabled: Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
2418
+ :param str key_vault_private_endpoint_resource_id: The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
2419
+ :param str language: Language supported for volume.
2420
+ :param bool ldap_enabled: Specifies whether LDAP is enabled or not for a given NFS volume.
2421
+ :param str name: Resource name
2422
+ :param str network_features: The original value of the network features type available to the volume at the time it was created.
2423
+ :param Sequence['PlacementKeyValuePairsResponse'] placement_rules: Application specific placement rules for the particular volume
2424
+ :param Sequence[str] protocol_types: Set of protocol types, default NFSv3, CIFS for SMB protocol
2425
+ :param str proximity_placement_group: Proximity placement group associated with the volume
2426
+ :param str security_style: The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
2427
+ :param str service_level: The service level of the file system
2428
+ :param str smb_access_based_enumeration: Enables access-based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
2429
+ :param bool smb_continuously_available: Enables continuously available share property for smb volume. Only applicable for SMB volume
2430
+ :param bool smb_encryption: Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
2431
+ :param str smb_non_browsable: Enables non-browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
2432
+ :param bool snapshot_directory_visible: If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
2433
+ :param str snapshot_id: Resource identifier used to identify the Snapshot.
2434
+ :param Mapping[str, str] tags: Resource tags
2435
+ :param str unix_permissions: UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users. Avoid passing null value for unixPermissions in volume update operation, As per the behavior, If Null value is passed then user-visible unixPermissions value will became null, and user will not be able to get unixPermissions value. On safer side, actual unixPermissions value on volume will remain as its last saved value only.
2436
+ :param str volume_spec_name: Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
2437
+ :param str volume_type: What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection. For creating clone volume, set type to ShortTermClone
2438
+ :param Sequence[str] zones: Availability Zone
2439
+ """
2440
+ pulumi.set(__self__, "actual_throughput_mibps", actual_throughput_mibps)
2441
+ pulumi.set(__self__, "baremetal_tenant_id", baremetal_tenant_id)
2442
+ pulumi.set(__self__, "clone_progress", clone_progress)
2443
+ pulumi.set(__self__, "creation_token", creation_token)
2444
+ pulumi.set(__self__, "data_store_resource_id", data_store_resource_id)
2445
+ pulumi.set(__self__, "effective_network_features", effective_network_features)
2446
+ pulumi.set(__self__, "encrypted", encrypted)
2447
+ if file_access_logs is None:
2448
+ file_access_logs = 'Disabled'
2449
+ pulumi.set(__self__, "file_access_logs", file_access_logs)
2450
+ pulumi.set(__self__, "file_system_id", file_system_id)
2451
+ pulumi.set(__self__, "id", id)
2452
+ pulumi.set(__self__, "inherited_size_in_bytes", inherited_size_in_bytes)
2453
+ pulumi.set(__self__, "maximum_number_of_files", maximum_number_of_files)
2454
+ pulumi.set(__self__, "mount_targets", mount_targets)
2455
+ pulumi.set(__self__, "network_sibling_set_id", network_sibling_set_id)
2456
+ pulumi.set(__self__, "originating_resource_id", originating_resource_id)
2457
+ pulumi.set(__self__, "provisioned_availability_zone", provisioned_availability_zone)
2458
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
2459
+ pulumi.set(__self__, "storage_to_network_proximity", storage_to_network_proximity)
2460
+ pulumi.set(__self__, "subnet_id", subnet_id)
2461
+ pulumi.set(__self__, "t2_network", t2_network)
2462
+ pulumi.set(__self__, "type", type)
2463
+ if usage_threshold is None:
2464
+ usage_threshold = 107374182400
2465
+ pulumi.set(__self__, "usage_threshold", usage_threshold)
2466
+ pulumi.set(__self__, "volume_group_name", volume_group_name)
2467
+ if accept_grow_capacity_pool_for_short_term_clone_split is not None:
2468
+ pulumi.set(__self__, "accept_grow_capacity_pool_for_short_term_clone_split", accept_grow_capacity_pool_for_short_term_clone_split)
2469
+ if avs_data_store is None:
2470
+ avs_data_store = 'Disabled'
2471
+ if avs_data_store is not None:
2472
+ pulumi.set(__self__, "avs_data_store", avs_data_store)
2473
+ if backup_id is not None:
2474
+ pulumi.set(__self__, "backup_id", backup_id)
2475
+ if capacity_pool_resource_id is not None:
2476
+ pulumi.set(__self__, "capacity_pool_resource_id", capacity_pool_resource_id)
2477
+ if cool_access is None:
2478
+ cool_access = False
2479
+ if cool_access is not None:
2480
+ pulumi.set(__self__, "cool_access", cool_access)
2481
+ if cool_access_retrieval_policy is not None:
2482
+ pulumi.set(__self__, "cool_access_retrieval_policy", cool_access_retrieval_policy)
2483
+ if cool_access_tiering_policy is not None:
2484
+ pulumi.set(__self__, "cool_access_tiering_policy", cool_access_tiering_policy)
2485
+ if coolness_period is not None:
2486
+ pulumi.set(__self__, "coolness_period", coolness_period)
2487
+ if data_protection is not None:
2488
+ pulumi.set(__self__, "data_protection", data_protection)
2489
+ if default_group_quota_in_ki_bs is None:
2490
+ default_group_quota_in_ki_bs = 0
2491
+ if default_group_quota_in_ki_bs is not None:
2492
+ pulumi.set(__self__, "default_group_quota_in_ki_bs", default_group_quota_in_ki_bs)
2493
+ if default_user_quota_in_ki_bs is None:
2494
+ default_user_quota_in_ki_bs = 0
2495
+ if default_user_quota_in_ki_bs is not None:
2496
+ pulumi.set(__self__, "default_user_quota_in_ki_bs", default_user_quota_in_ki_bs)
2497
+ if delete_base_snapshot is not None:
2498
+ pulumi.set(__self__, "delete_base_snapshot", delete_base_snapshot)
2499
+ if enable_subvolumes is None:
2500
+ enable_subvolumes = 'Disabled'
2501
+ if enable_subvolumes is not None:
2502
+ pulumi.set(__self__, "enable_subvolumes", enable_subvolumes)
2503
+ if encryption_key_source is None:
2504
+ encryption_key_source = 'Microsoft.NetApp'
2505
+ if encryption_key_source is not None:
2506
+ pulumi.set(__self__, "encryption_key_source", encryption_key_source)
2507
+ if export_policy is not None:
2508
+ pulumi.set(__self__, "export_policy", export_policy)
2509
+ if is_default_quota_enabled is None:
2510
+ is_default_quota_enabled = False
2511
+ if is_default_quota_enabled is not None:
2512
+ pulumi.set(__self__, "is_default_quota_enabled", is_default_quota_enabled)
2513
+ if is_large_volume is None:
2514
+ is_large_volume = False
2515
+ if is_large_volume is not None:
2516
+ pulumi.set(__self__, "is_large_volume", is_large_volume)
2517
+ if is_restoring is not None:
2518
+ pulumi.set(__self__, "is_restoring", is_restoring)
2519
+ if kerberos_enabled is None:
2520
+ kerberos_enabled = False
2521
+ if kerberos_enabled is not None:
2522
+ pulumi.set(__self__, "kerberos_enabled", kerberos_enabled)
2523
+ if key_vault_private_endpoint_resource_id is not None:
2524
+ pulumi.set(__self__, "key_vault_private_endpoint_resource_id", key_vault_private_endpoint_resource_id)
2525
+ if language is not None:
2526
+ pulumi.set(__self__, "language", language)
2527
+ if ldap_enabled is None:
2528
+ ldap_enabled = False
2529
+ if ldap_enabled is not None:
2530
+ pulumi.set(__self__, "ldap_enabled", ldap_enabled)
2531
+ if name is not None:
2532
+ pulumi.set(__self__, "name", name)
2533
+ if network_features is not None:
2534
+ pulumi.set(__self__, "network_features", network_features)
2535
+ if placement_rules is not None:
2536
+ pulumi.set(__self__, "placement_rules", placement_rules)
2537
+ if protocol_types is not None:
2538
+ pulumi.set(__self__, "protocol_types", protocol_types)
2539
+ if proximity_placement_group is not None:
2540
+ pulumi.set(__self__, "proximity_placement_group", proximity_placement_group)
2541
+ if security_style is None:
2542
+ security_style = 'unix'
2543
+ if security_style is not None:
2544
+ pulumi.set(__self__, "security_style", security_style)
2545
+ if service_level is not None:
2546
+ pulumi.set(__self__, "service_level", service_level)
2547
+ if smb_access_based_enumeration is not None:
2548
+ pulumi.set(__self__, "smb_access_based_enumeration", smb_access_based_enumeration)
2549
+ if smb_continuously_available is None:
2550
+ smb_continuously_available = False
2551
+ if smb_continuously_available is not None:
2552
+ pulumi.set(__self__, "smb_continuously_available", smb_continuously_available)
2553
+ if smb_encryption is None:
2554
+ smb_encryption = False
2555
+ if smb_encryption is not None:
2556
+ pulumi.set(__self__, "smb_encryption", smb_encryption)
2557
+ if smb_non_browsable is not None:
2558
+ pulumi.set(__self__, "smb_non_browsable", smb_non_browsable)
2559
+ if snapshot_directory_visible is None:
2560
+ snapshot_directory_visible = True
2561
+ if snapshot_directory_visible is not None:
2562
+ pulumi.set(__self__, "snapshot_directory_visible", snapshot_directory_visible)
2563
+ if snapshot_id is not None:
2564
+ pulumi.set(__self__, "snapshot_id", snapshot_id)
2565
+ if tags is not None:
2566
+ pulumi.set(__self__, "tags", tags)
2567
+ if throughput_mibps is not None:
2568
+ pulumi.set(__self__, "throughput_mibps", throughput_mibps)
2569
+ if unix_permissions is not None:
2570
+ pulumi.set(__self__, "unix_permissions", unix_permissions)
2571
+ if volume_spec_name is not None:
2572
+ pulumi.set(__self__, "volume_spec_name", volume_spec_name)
2573
+ if volume_type is not None:
2574
+ pulumi.set(__self__, "volume_type", volume_type)
2575
+ if zones is not None:
2576
+ pulumi.set(__self__, "zones", zones)
2577
+
2578
+ @property
2579
+ @pulumi.getter(name="actualThroughputMibps")
2580
+ def actual_throughput_mibps(self) -> float:
2581
+ """
2582
+ Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
2583
+ """
2584
+ return pulumi.get(self, "actual_throughput_mibps")
2585
+
2586
+ @property
2587
+ @pulumi.getter(name="baremetalTenantId")
2588
+ def baremetal_tenant_id(self) -> str:
2589
+ """
2590
+ Unique Baremetal Tenant Identifier.
2591
+ """
2592
+ return pulumi.get(self, "baremetal_tenant_id")
2593
+
2594
+ @property
2595
+ @pulumi.getter(name="cloneProgress")
2596
+ def clone_progress(self) -> int:
2597
+ """
2598
+ When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
2599
+ """
2600
+ return pulumi.get(self, "clone_progress")
2601
+
2602
+ @property
2603
+ @pulumi.getter(name="creationToken")
2604
+ def creation_token(self) -> str:
2605
+ """
2606
+ A unique file path for the volume. Used when creating mount targets
2607
+ """
2608
+ return pulumi.get(self, "creation_token")
2609
+
2610
+ @property
2611
+ @pulumi.getter(name="dataStoreResourceId")
2612
+ def data_store_resource_id(self) -> Sequence[str]:
2613
+ """
2614
+ Data store resource unique identifier
2615
+ """
2616
+ return pulumi.get(self, "data_store_resource_id")
2617
+
2618
+ @property
2619
+ @pulumi.getter(name="effectiveNetworkFeatures")
2620
+ def effective_network_features(self) -> str:
2621
+ """
2622
+ The effective value of the network features type available to the volume, or current effective state of update.
2623
+ """
2624
+ return pulumi.get(self, "effective_network_features")
2625
+
2626
+ @property
2627
+ @pulumi.getter
2628
+ def encrypted(self) -> bool:
2629
+ """
2630
+ Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
2631
+ """
2632
+ return pulumi.get(self, "encrypted")
2633
+
2634
+ @property
2635
+ @pulumi.getter(name="fileAccessLogs")
2636
+ def file_access_logs(self) -> str:
2637
+ """
2638
+ Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
2639
+ """
2640
+ return pulumi.get(self, "file_access_logs")
2641
+
2642
+ @property
2643
+ @pulumi.getter(name="fileSystemId")
2644
+ def file_system_id(self) -> str:
2645
+ """
2646
+ Unique FileSystem Identifier.
2647
+ """
2648
+ return pulumi.get(self, "file_system_id")
2649
+
2650
+ @property
2651
+ @pulumi.getter
2652
+ def id(self) -> str:
2653
+ """
2654
+ Resource Id
2655
+ """
2656
+ return pulumi.get(self, "id")
2657
+
2658
+ @property
2659
+ @pulumi.getter(name="inheritedSizeInBytes")
2660
+ def inherited_size_in_bytes(self) -> float:
2661
+ """
2662
+ Space shared by short term clone volume with parent volume in bytes.
2663
+ """
2664
+ return pulumi.get(self, "inherited_size_in_bytes")
2665
+
2666
+ @property
2667
+ @pulumi.getter(name="maximumNumberOfFiles")
2668
+ def maximum_number_of_files(self) -> float:
2669
+ """
2670
+ Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
2671
+ """
2672
+ return pulumi.get(self, "maximum_number_of_files")
2673
+
2674
+ @property
2675
+ @pulumi.getter(name="mountTargets")
2676
+ def mount_targets(self) -> Sequence['outputs.MountTargetPropertiesResponse']:
2677
+ """
2678
+ List of mount targets
2679
+ """
2680
+ return pulumi.get(self, "mount_targets")
2681
+
2682
+ @property
2683
+ @pulumi.getter(name="networkSiblingSetId")
2684
+ def network_sibling_set_id(self) -> str:
2685
+ """
2686
+ Network Sibling Set ID for the the group of volumes sharing networking resources.
2687
+ """
2688
+ return pulumi.get(self, "network_sibling_set_id")
2689
+
2690
+ @property
2691
+ @pulumi.getter(name="originatingResourceId")
2692
+ def originating_resource_id(self) -> str:
2693
+ """
2694
+ Id of the snapshot or backup that the volume is restored from.
2695
+ """
2696
+ return pulumi.get(self, "originating_resource_id")
2697
+
2698
+ @property
2699
+ @pulumi.getter(name="provisionedAvailabilityZone")
2700
+ def provisioned_availability_zone(self) -> str:
2701
+ """
2702
+ The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
2703
+ """
2704
+ return pulumi.get(self, "provisioned_availability_zone")
2705
+
2706
+ @property
2707
+ @pulumi.getter(name="provisioningState")
2708
+ def provisioning_state(self) -> str:
2709
+ """
2710
+ Azure lifecycle management
2711
+ """
2712
+ return pulumi.get(self, "provisioning_state")
2713
+
2714
+ @property
2715
+ @pulumi.getter(name="storageToNetworkProximity")
2716
+ def storage_to_network_proximity(self) -> str:
2717
+ """
2718
+ Provides storage to network proximity information for the volume.
2719
+ """
2720
+ return pulumi.get(self, "storage_to_network_proximity")
2721
+
2722
+ @property
2723
+ @pulumi.getter(name="subnetId")
2724
+ def subnet_id(self) -> str:
2725
+ """
2726
+ The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
2727
+ """
2728
+ return pulumi.get(self, "subnet_id")
2729
+
2730
+ @property
2731
+ @pulumi.getter(name="t2Network")
2732
+ def t2_network(self) -> str:
2733
+ """
2734
+ T2 network information
2735
+ """
2736
+ return pulumi.get(self, "t2_network")
2737
+
2738
+ @property
2739
+ @pulumi.getter
2740
+ def type(self) -> str:
2741
+ """
2742
+ Resource type
2743
+ """
2744
+ return pulumi.get(self, "type")
2745
+
2746
+ @property
2747
+ @pulumi.getter(name="usageThreshold")
2748
+ def usage_threshold(self) -> float:
2749
+ """
2750
+ Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. For regular volumes, valid values are in the range 50GiB to 100TiB. For large volumes, valid values are in the range 100TiB to 1PiB, and on an exceptional basis, from to 2400GiB to 2400TiB. Values expressed in bytes as multiples of 1 GiB.
2751
+ """
2752
+ return pulumi.get(self, "usage_threshold")
2753
+
2754
+ @property
2755
+ @pulumi.getter(name="volumeGroupName")
2756
+ def volume_group_name(self) -> str:
2757
+ """
2758
+ Volume Group Name
2759
+ """
2760
+ return pulumi.get(self, "volume_group_name")
2761
+
2762
+ @property
2763
+ @pulumi.getter(name="acceptGrowCapacityPoolForShortTermCloneSplit")
2764
+ def accept_grow_capacity_pool_for_short_term_clone_split(self) -> Optional[str]:
2765
+ """
2766
+ While auto splitting the short term clone volume, if the parent pool does not have enough space to accommodate the volume after split, it will be automatically resized, which will lead to increased billing. To accept capacity pool size auto grow and create a short term clone volume, set the property as accepted.
2767
+ """
2768
+ return pulumi.get(self, "accept_grow_capacity_pool_for_short_term_clone_split")
2769
+
2770
+ @property
2771
+ @pulumi.getter(name="avsDataStore")
2772
+ def avs_data_store(self) -> Optional[str]:
2773
+ """
2774
+ Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
2775
+ """
2776
+ return pulumi.get(self, "avs_data_store")
2777
+
2778
+ @property
2779
+ @pulumi.getter(name="backupId")
2780
+ def backup_id(self) -> Optional[str]:
2781
+ """
2782
+ Resource identifier used to identify the Backup.
2783
+ """
2784
+ return pulumi.get(self, "backup_id")
2785
+
2786
+ @property
2787
+ @pulumi.getter(name="capacityPoolResourceId")
2788
+ def capacity_pool_resource_id(self) -> Optional[str]:
2789
+ """
2790
+ Pool Resource Id used in case of creating a volume through volume group
2791
+ """
2792
+ return pulumi.get(self, "capacity_pool_resource_id")
2793
+
2794
+ @property
2795
+ @pulumi.getter(name="coolAccess")
2796
+ def cool_access(self) -> Optional[bool]:
2797
+ """
2798
+ Specifies whether Cool Access(tiering) is enabled for the volume.
2799
+ """
2800
+ return pulumi.get(self, "cool_access")
2801
+
2802
+ @property
2803
+ @pulumi.getter(name="coolAccessRetrievalPolicy")
2804
+ def cool_access_retrieval_policy(self) -> Optional[str]:
2805
+ """
2806
+ coolAccessRetrievalPolicy determines the data retrieval behavior from the cool tier to standard storage based on the read pattern for cool access enabled volumes. The possible values for this field are:
2807
+ Default - Data will be pulled from cool tier to standard storage on random reads. This policy is the default.
2808
+ OnRead - All client-driven data read is pulled from cool tier to standard storage on both sequential and random reads.
2809
+ Never - No client-driven data is pulled from cool tier to standard storage.
2810
+ """
2811
+ return pulumi.get(self, "cool_access_retrieval_policy")
2812
+
2813
+ @property
2814
+ @pulumi.getter(name="coolAccessTieringPolicy")
2815
+ def cool_access_tiering_policy(self) -> Optional[str]:
2816
+ """
2817
+ coolAccessTieringPolicy determines which cold data blocks are moved to cool tier. The possible values for this field are: Auto - Moves cold user data blocks in both the Snapshot copies and the active file system to the cool tier tier. This policy is the default. SnapshotOnly - Moves user data blocks of the Volume Snapshot copies that are not associated with the active file system to the cool tier.
2818
+ """
2819
+ return pulumi.get(self, "cool_access_tiering_policy")
2820
+
2821
+ @property
2822
+ @pulumi.getter(name="coolnessPeriod")
2823
+ def coolness_period(self) -> Optional[int]:
2824
+ """
2825
+ Specifies the number of days after which data that is not accessed by clients will be tiered.
2826
+ """
2827
+ return pulumi.get(self, "coolness_period")
2828
+
2829
+ @property
2830
+ @pulumi.getter(name="dataProtection")
2831
+ def data_protection(self) -> Optional['outputs.VolumePropertiesResponseDataProtection']:
2832
+ """
2833
+ DataProtection type volumes include an object containing details of the replication
2834
+ """
2835
+ return pulumi.get(self, "data_protection")
2836
+
2837
+ @property
2838
+ @pulumi.getter(name="defaultGroupQuotaInKiBs")
2839
+ def default_group_quota_in_ki_bs(self) -> Optional[float]:
2840
+ """
2841
+ Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
2842
+ """
2843
+ return pulumi.get(self, "default_group_quota_in_ki_bs")
2844
+
2845
+ @property
2846
+ @pulumi.getter(name="defaultUserQuotaInKiBs")
2847
+ def default_user_quota_in_ki_bs(self) -> Optional[float]:
2848
+ """
2849
+ Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
2850
+ """
2851
+ return pulumi.get(self, "default_user_quota_in_ki_bs")
2852
+
2853
+ @property
2854
+ @pulumi.getter(name="deleteBaseSnapshot")
2855
+ def delete_base_snapshot(self) -> Optional[bool]:
2856
+ """
2857
+ If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
2858
+ """
2859
+ return pulumi.get(self, "delete_base_snapshot")
2860
+
2861
+ @property
2862
+ @pulumi.getter(name="enableSubvolumes")
2863
+ def enable_subvolumes(self) -> Optional[str]:
2864
+ """
2865
+ Flag indicating whether subvolume operations are enabled on the volume
2866
+ """
2867
+ return pulumi.get(self, "enable_subvolumes")
2868
+
2869
+ @property
2870
+ @pulumi.getter(name="encryptionKeySource")
2871
+ def encryption_key_source(self) -> Optional[str]:
2872
+ """
2873
+ Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
2874
+ """
2875
+ return pulumi.get(self, "encryption_key_source")
2876
+
2877
+ @property
2878
+ @pulumi.getter(name="exportPolicy")
2879
+ def export_policy(self) -> Optional['outputs.VolumePropertiesResponseExportPolicy']:
2880
+ """
2881
+ Set of export policy rules
2882
+ """
2883
+ return pulumi.get(self, "export_policy")
2884
+
2885
+ @property
2886
+ @pulumi.getter(name="isDefaultQuotaEnabled")
2887
+ def is_default_quota_enabled(self) -> Optional[bool]:
2888
+ """
2889
+ Specifies if default quota is enabled for the volume.
2890
+ """
2891
+ return pulumi.get(self, "is_default_quota_enabled")
2892
+
2893
+ @property
2894
+ @pulumi.getter(name="isLargeVolume")
2895
+ def is_large_volume(self) -> Optional[bool]:
2896
+ """
2897
+ Specifies whether volume is a Large Volume or Regular Volume.
2898
+ """
2899
+ return pulumi.get(self, "is_large_volume")
2900
+
2901
+ @property
2902
+ @pulumi.getter(name="isRestoring")
2903
+ def is_restoring(self) -> Optional[bool]:
2904
+ """
2905
+ Restoring
2906
+ """
2907
+ return pulumi.get(self, "is_restoring")
2908
+
2909
+ @property
2910
+ @pulumi.getter(name="kerberosEnabled")
2911
+ def kerberos_enabled(self) -> Optional[bool]:
2912
+ """
2913
+ Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
2914
+ """
2915
+ return pulumi.get(self, "kerberos_enabled")
2916
+
2917
+ @property
2918
+ @pulumi.getter(name="keyVaultPrivateEndpointResourceId")
2919
+ def key_vault_private_endpoint_resource_id(self) -> Optional[str]:
2920
+ """
2921
+ The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
2922
+ """
2923
+ return pulumi.get(self, "key_vault_private_endpoint_resource_id")
2924
+
2925
+ @property
2926
+ @pulumi.getter
2927
+ def language(self) -> Optional[str]:
2928
+ """
2929
+ Language supported for volume.
2930
+ """
2931
+ return pulumi.get(self, "language")
2932
+
2933
+ @property
2934
+ @pulumi.getter(name="ldapEnabled")
2935
+ def ldap_enabled(self) -> Optional[bool]:
2936
+ """
2937
+ Specifies whether LDAP is enabled or not for a given NFS volume.
2938
+ """
2939
+ return pulumi.get(self, "ldap_enabled")
2940
+
2941
+ @property
2942
+ @pulumi.getter
2943
+ def name(self) -> Optional[str]:
2944
+ """
2945
+ Resource name
2946
+ """
2947
+ return pulumi.get(self, "name")
2948
+
2949
+ @property
2950
+ @pulumi.getter(name="networkFeatures")
2951
+ def network_features(self) -> Optional[str]:
2952
+ """
2953
+ The original value of the network features type available to the volume at the time it was created.
2954
+ """
2955
+ return pulumi.get(self, "network_features")
2956
+
2957
+ @property
2958
+ @pulumi.getter(name="placementRules")
2959
+ def placement_rules(self) -> Optional[Sequence['outputs.PlacementKeyValuePairsResponse']]:
2960
+ """
2961
+ Application specific placement rules for the particular volume
2962
+ """
2963
+ return pulumi.get(self, "placement_rules")
2964
+
2965
+ @property
2966
+ @pulumi.getter(name="protocolTypes")
2967
+ def protocol_types(self) -> Optional[Sequence[str]]:
2968
+ """
2969
+ Set of protocol types, default NFSv3, CIFS for SMB protocol
2970
+ """
2971
+ return pulumi.get(self, "protocol_types")
2972
+
2973
+ @property
2974
+ @pulumi.getter(name="proximityPlacementGroup")
2975
+ def proximity_placement_group(self) -> Optional[str]:
2976
+ """
2977
+ Proximity placement group associated with the volume
2978
+ """
2979
+ return pulumi.get(self, "proximity_placement_group")
2980
+
2981
+ @property
2982
+ @pulumi.getter(name="securityStyle")
2983
+ def security_style(self) -> Optional[str]:
2984
+ """
2985
+ The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
2986
+ """
2987
+ return pulumi.get(self, "security_style")
2988
+
2989
+ @property
2990
+ @pulumi.getter(name="serviceLevel")
2991
+ def service_level(self) -> Optional[str]:
2992
+ """
2993
+ The service level of the file system
2994
+ """
2995
+ return pulumi.get(self, "service_level")
2996
+
2997
+ @property
2998
+ @pulumi.getter(name="smbAccessBasedEnumeration")
2999
+ def smb_access_based_enumeration(self) -> Optional[str]:
3000
+ """
3001
+ Enables access-based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
3002
+ """
3003
+ return pulumi.get(self, "smb_access_based_enumeration")
3004
+
3005
+ @property
3006
+ @pulumi.getter(name="smbContinuouslyAvailable")
3007
+ def smb_continuously_available(self) -> Optional[bool]:
3008
+ """
3009
+ Enables continuously available share property for smb volume. Only applicable for SMB volume
3010
+ """
3011
+ return pulumi.get(self, "smb_continuously_available")
3012
+
3013
+ @property
3014
+ @pulumi.getter(name="smbEncryption")
3015
+ def smb_encryption(self) -> Optional[bool]:
3016
+ """
3017
+ Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
3018
+ """
3019
+ return pulumi.get(self, "smb_encryption")
3020
+
3021
+ @property
3022
+ @pulumi.getter(name="smbNonBrowsable")
3023
+ def smb_non_browsable(self) -> Optional[str]:
3024
+ """
3025
+ Enables non-browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
3026
+ """
3027
+ return pulumi.get(self, "smb_non_browsable")
3028
+
3029
+ @property
3030
+ @pulumi.getter(name="snapshotDirectoryVisible")
3031
+ def snapshot_directory_visible(self) -> Optional[bool]:
3032
+ """
3033
+ If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
3034
+ """
3035
+ return pulumi.get(self, "snapshot_directory_visible")
3036
+
3037
+ @property
3038
+ @pulumi.getter(name="snapshotId")
3039
+ def snapshot_id(self) -> Optional[str]:
3040
+ """
3041
+ Resource identifier used to identify the Snapshot.
3042
+ """
3043
+ return pulumi.get(self, "snapshot_id")
3044
+
3045
+ @property
3046
+ @pulumi.getter
3047
+ def tags(self) -> Optional[Mapping[str, str]]:
3048
+ """
3049
+ Resource tags
3050
+ """
3051
+ return pulumi.get(self, "tags")
3052
+
3053
+ @property
3054
+ @pulumi.getter(name="throughputMibps")
3055
+ def throughput_mibps(self) -> Optional[float]:
3056
+ return pulumi.get(self, "throughput_mibps")
3057
+
3058
+ @property
3059
+ @pulumi.getter(name="unixPermissions")
3060
+ def unix_permissions(self) -> Optional[str]:
3061
+ """
3062
+ UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users. Avoid passing null value for unixPermissions in volume update operation, As per the behavior, If Null value is passed then user-visible unixPermissions value will became null, and user will not be able to get unixPermissions value. On safer side, actual unixPermissions value on volume will remain as its last saved value only.
3063
+ """
3064
+ return pulumi.get(self, "unix_permissions")
3065
+
3066
+ @property
3067
+ @pulumi.getter(name="volumeSpecName")
3068
+ def volume_spec_name(self) -> Optional[str]:
3069
+ """
3070
+ Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
3071
+ """
3072
+ return pulumi.get(self, "volume_spec_name")
3073
+
3074
+ @property
3075
+ @pulumi.getter(name="volumeType")
3076
+ def volume_type(self) -> Optional[str]:
3077
+ """
3078
+ What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection. For creating clone volume, set type to ShortTermClone
3079
+ """
3080
+ return pulumi.get(self, "volume_type")
3081
+
3082
+ @property
3083
+ @pulumi.getter
3084
+ def zones(self) -> Optional[Sequence[str]]:
3085
+ """
3086
+ Availability Zone
3087
+ """
3088
+ return pulumi.get(self, "zones")
3089
+
3090
+
3091
+ @pulumi.output_type
3092
+ class VolumePropertiesResponseDataProtection(dict):
3093
+ """
3094
+ DataProtection type volumes include an object containing details of the replication
3095
+ """
3096
+ @staticmethod
3097
+ def __key_warning(key: str):
3098
+ suggest = None
3099
+ if key == "volumeRelocation":
3100
+ suggest = "volume_relocation"
3101
+
3102
+ if suggest:
3103
+ pulumi.log.warn(f"Key '{key}' not found in VolumePropertiesResponseDataProtection. Access the value via the '{suggest}' property getter instead.")
3104
+
3105
+ def __getitem__(self, key: str) -> Any:
3106
+ VolumePropertiesResponseDataProtection.__key_warning(key)
3107
+ return super().__getitem__(key)
3108
+
3109
+ def get(self, key: str, default = None) -> Any:
3110
+ VolumePropertiesResponseDataProtection.__key_warning(key)
3111
+ return super().get(key, default)
3112
+
3113
+ def __init__(__self__, *,
3114
+ backup: Optional['outputs.VolumeBackupPropertiesResponse'] = None,
3115
+ replication: Optional['outputs.ReplicationObjectResponse'] = None,
3116
+ snapshot: Optional['outputs.VolumeSnapshotPropertiesResponse'] = None,
3117
+ volume_relocation: Optional['outputs.VolumeRelocationPropertiesResponse'] = None):
3118
+ """
3119
+ DataProtection type volumes include an object containing details of the replication
3120
+ :param 'VolumeBackupPropertiesResponse' backup: Backup Properties
3121
+ :param 'ReplicationObjectResponse' replication: Replication properties
3122
+ :param 'VolumeSnapshotPropertiesResponse' snapshot: Snapshot properties.
3123
+ :param 'VolumeRelocationPropertiesResponse' volume_relocation: VolumeRelocation properties
3124
+ """
3125
+ if backup is not None:
3126
+ pulumi.set(__self__, "backup", backup)
3127
+ if replication is not None:
3128
+ pulumi.set(__self__, "replication", replication)
3129
+ if snapshot is not None:
3130
+ pulumi.set(__self__, "snapshot", snapshot)
3131
+ if volume_relocation is not None:
3132
+ pulumi.set(__self__, "volume_relocation", volume_relocation)
3133
+
3134
+ @property
3135
+ @pulumi.getter
3136
+ def backup(self) -> Optional['outputs.VolumeBackupPropertiesResponse']:
3137
+ """
3138
+ Backup Properties
3139
+ """
3140
+ return pulumi.get(self, "backup")
3141
+
3142
+ @property
3143
+ @pulumi.getter
3144
+ def replication(self) -> Optional['outputs.ReplicationObjectResponse']:
3145
+ """
3146
+ Replication properties
3147
+ """
3148
+ return pulumi.get(self, "replication")
3149
+
3150
+ @property
3151
+ @pulumi.getter
3152
+ def snapshot(self) -> Optional['outputs.VolumeSnapshotPropertiesResponse']:
3153
+ """
3154
+ Snapshot properties.
3155
+ """
3156
+ return pulumi.get(self, "snapshot")
3157
+
3158
+ @property
3159
+ @pulumi.getter(name="volumeRelocation")
3160
+ def volume_relocation(self) -> Optional['outputs.VolumeRelocationPropertiesResponse']:
3161
+ """
3162
+ VolumeRelocation properties
3163
+ """
3164
+ return pulumi.get(self, "volume_relocation")
3165
+
3166
+
3167
+ @pulumi.output_type
3168
+ class VolumePropertiesResponseExportPolicy(dict):
3169
+ """
3170
+ Set of export policy rules
3171
+ """
3172
+ def __init__(__self__, *,
3173
+ rules: Optional[Sequence['outputs.ExportPolicyRuleResponse']] = None):
3174
+ """
3175
+ Set of export policy rules
3176
+ :param Sequence['ExportPolicyRuleResponse'] rules: Export policy rule
3177
+ """
3178
+ if rules is not None:
3179
+ pulumi.set(__self__, "rules", rules)
3180
+
3181
+ @property
3182
+ @pulumi.getter
3183
+ def rules(self) -> Optional[Sequence['outputs.ExportPolicyRuleResponse']]:
3184
+ """
3185
+ Export policy rule
3186
+ """
3187
+ return pulumi.get(self, "rules")
3188
+
3189
+
3190
+ @pulumi.output_type
3191
+ class VolumeRelocationPropertiesResponse(dict):
3192
+ """
3193
+ Volume relocation properties
3194
+ """
3195
+ @staticmethod
3196
+ def __key_warning(key: str):
3197
+ suggest = None
3198
+ if key == "readyToBeFinalized":
3199
+ suggest = "ready_to_be_finalized"
3200
+ elif key == "relocationRequested":
3201
+ suggest = "relocation_requested"
3202
+
3203
+ if suggest:
3204
+ pulumi.log.warn(f"Key '{key}' not found in VolumeRelocationPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
3205
+
3206
+ def __getitem__(self, key: str) -> Any:
3207
+ VolumeRelocationPropertiesResponse.__key_warning(key)
3208
+ return super().__getitem__(key)
3209
+
3210
+ def get(self, key: str, default = None) -> Any:
3211
+ VolumeRelocationPropertiesResponse.__key_warning(key)
3212
+ return super().get(key, default)
3213
+
3214
+ def __init__(__self__, *,
3215
+ ready_to_be_finalized: bool,
3216
+ relocation_requested: Optional[bool] = None):
3217
+ """
3218
+ Volume relocation properties
3219
+ :param bool ready_to_be_finalized: Has relocation finished and is ready to be cleaned up
3220
+ :param bool relocation_requested: Has relocation been requested for this volume
3221
+ """
3222
+ pulumi.set(__self__, "ready_to_be_finalized", ready_to_be_finalized)
3223
+ if relocation_requested is not None:
3224
+ pulumi.set(__self__, "relocation_requested", relocation_requested)
3225
+
3226
+ @property
3227
+ @pulumi.getter(name="readyToBeFinalized")
3228
+ def ready_to_be_finalized(self) -> bool:
3229
+ """
3230
+ Has relocation finished and is ready to be cleaned up
3231
+ """
3232
+ return pulumi.get(self, "ready_to_be_finalized")
3233
+
3234
+ @property
3235
+ @pulumi.getter(name="relocationRequested")
3236
+ def relocation_requested(self) -> Optional[bool]:
3237
+ """
3238
+ Has relocation been requested for this volume
3239
+ """
3240
+ return pulumi.get(self, "relocation_requested")
3241
+
3242
+
3243
+ @pulumi.output_type
3244
+ class VolumeSnapshotPropertiesResponse(dict):
3245
+ """
3246
+ Volume Snapshot Properties
3247
+ """
3248
+ @staticmethod
3249
+ def __key_warning(key: str):
3250
+ suggest = None
3251
+ if key == "snapshotPolicyId":
3252
+ suggest = "snapshot_policy_id"
3253
+
3254
+ if suggest:
3255
+ pulumi.log.warn(f"Key '{key}' not found in VolumeSnapshotPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
3256
+
3257
+ def __getitem__(self, key: str) -> Any:
3258
+ VolumeSnapshotPropertiesResponse.__key_warning(key)
3259
+ return super().__getitem__(key)
3260
+
3261
+ def get(self, key: str, default = None) -> Any:
3262
+ VolumeSnapshotPropertiesResponse.__key_warning(key)
3263
+ return super().get(key, default)
3264
+
3265
+ def __init__(__self__, *,
3266
+ snapshot_policy_id: Optional[str] = None):
3267
+ """
3268
+ Volume Snapshot Properties
3269
+ :param str snapshot_policy_id: Snapshot Policy ResourceId
3270
+ """
3271
+ if snapshot_policy_id is not None:
3272
+ pulumi.set(__self__, "snapshot_policy_id", snapshot_policy_id)
3273
+
3274
+ @property
3275
+ @pulumi.getter(name="snapshotPolicyId")
3276
+ def snapshot_policy_id(self) -> Optional[str]:
3277
+ """
3278
+ Snapshot Policy ResourceId
3279
+ """
3280
+ return pulumi.get(self, "snapshot_policy_id")
3281
+
3282
+
3283
+ @pulumi.output_type
3284
+ class WeeklyScheduleResponse(dict):
3285
+ """
3286
+ Weekly Schedule properties, make a snapshot every week at a specific day or days
3287
+ """
3288
+ @staticmethod
3289
+ def __key_warning(key: str):
3290
+ suggest = None
3291
+ if key == "snapshotsToKeep":
3292
+ suggest = "snapshots_to_keep"
3293
+ elif key == "usedBytes":
3294
+ suggest = "used_bytes"
3295
+
3296
+ if suggest:
3297
+ pulumi.log.warn(f"Key '{key}' not found in WeeklyScheduleResponse. Access the value via the '{suggest}' property getter instead.")
3298
+
3299
+ def __getitem__(self, key: str) -> Any:
3300
+ WeeklyScheduleResponse.__key_warning(key)
3301
+ return super().__getitem__(key)
3302
+
3303
+ def get(self, key: str, default = None) -> Any:
3304
+ WeeklyScheduleResponse.__key_warning(key)
3305
+ return super().get(key, default)
3306
+
3307
+ def __init__(__self__, *,
3308
+ day: Optional[str] = None,
3309
+ hour: Optional[int] = None,
3310
+ minute: Optional[int] = None,
3311
+ snapshots_to_keep: Optional[int] = None,
3312
+ used_bytes: Optional[float] = None):
3313
+ """
3314
+ Weekly Schedule properties, make a snapshot every week at a specific day or days
3315
+ :param str day: Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
3316
+ :param int hour: Indicates which hour in UTC timezone a snapshot should be taken
3317
+ :param int minute: Indicates which minute snapshot should be taken
3318
+ :param int snapshots_to_keep: Weekly snapshot count to keep
3319
+ :param float used_bytes: Resource size in bytes, current storage usage for the volume in bytes
3320
+ """
3321
+ if day is not None:
3322
+ pulumi.set(__self__, "day", day)
3323
+ if hour is not None:
3324
+ pulumi.set(__self__, "hour", hour)
3325
+ if minute is not None:
3326
+ pulumi.set(__self__, "minute", minute)
3327
+ if snapshots_to_keep is not None:
3328
+ pulumi.set(__self__, "snapshots_to_keep", snapshots_to_keep)
3329
+ if used_bytes is not None:
3330
+ pulumi.set(__self__, "used_bytes", used_bytes)
3331
+
3332
+ @property
3333
+ @pulumi.getter
3334
+ def day(self) -> Optional[str]:
3335
+ """
3336
+ Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
3337
+ """
3338
+ return pulumi.get(self, "day")
3339
+
3340
+ @property
3341
+ @pulumi.getter
3342
+ def hour(self) -> Optional[int]:
3343
+ """
3344
+ Indicates which hour in UTC timezone a snapshot should be taken
3345
+ """
3346
+ return pulumi.get(self, "hour")
3347
+
3348
+ @property
3349
+ @pulumi.getter
3350
+ def minute(self) -> Optional[int]:
3351
+ """
3352
+ Indicates which minute snapshot should be taken
3353
+ """
3354
+ return pulumi.get(self, "minute")
3355
+
3356
+ @property
3357
+ @pulumi.getter(name="snapshotsToKeep")
3358
+ def snapshots_to_keep(self) -> Optional[int]:
3359
+ """
3360
+ Weekly snapshot count to keep
3361
+ """
3362
+ return pulumi.get(self, "snapshots_to_keep")
3363
+
3364
+ @property
3365
+ @pulumi.getter(name="usedBytes")
3366
+ def used_bytes(self) -> Optional[float]:
3367
+ """
3368
+ Resource size in bytes, current storage usage for the volume in bytes
3369
+ """
3370
+ return pulumi.get(self, "used_bytes")
3371
+
3372
+