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