pulumi-azure-native 2.35.0__py3-none-any.whl → 2.36.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 (341) hide show
  1. pulumi_azure_native/__init__.py +73 -0
  2. pulumi_azure_native/azurearcdata/__init__.py +7 -0
  3. pulumi_azure_native/azurearcdata/_enums.py +12 -0
  4. pulumi_azure_native/azurearcdata/_inputs.py +399 -0
  5. pulumi_azure_native/azurearcdata/active_directory_connector.py +5 -1
  6. pulumi_azure_native/azurearcdata/data_controller.py +5 -1
  7. pulumi_azure_native/azurearcdata/failover_group.py +5 -1
  8. pulumi_azure_native/azurearcdata/get_active_directory_connector.py +4 -0
  9. pulumi_azure_native/azurearcdata/get_data_controller.py +4 -0
  10. pulumi_azure_native/azurearcdata/get_failover_group.py +4 -0
  11. pulumi_azure_native/azurearcdata/get_postgres_instance.py +4 -0
  12. pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +4 -0
  13. pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +164 -0
  14. pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +164 -0
  15. pulumi_azure_native/azurearcdata/get_sql_server_database.py +4 -0
  16. pulumi_azure_native/azurearcdata/get_sql_server_instance.py +4 -0
  17. pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +138 -0
  18. pulumi_azure_native/azurearcdata/outputs.py +1047 -0
  19. pulumi_azure_native/azurearcdata/postgres_instance.py +5 -1
  20. pulumi_azure_native/azurearcdata/sql_managed_instance.py +5 -1
  21. pulumi_azure_native/azurearcdata/sql_server_availability_group.py +276 -0
  22. pulumi_azure_native/azurearcdata/sql_server_database.py +5 -1
  23. pulumi_azure_native/azurearcdata/sql_server_instance.py +5 -1
  24. pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
  25. pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
  26. pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
  27. pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
  28. pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
  29. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
  30. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
  31. pulumi_azure_native/azurearcdata/v20240101/__init__.py +28 -0
  32. pulumi_azure_native/azurearcdata/v20240101/_enums.py +188 -0
  33. pulumi_azure_native/azurearcdata/v20240101/_inputs.py +3132 -0
  34. pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +217 -0
  35. pulumi_azure_native/azurearcdata/v20240101/data_controller.py +283 -0
  36. pulumi_azure_native/azurearcdata/v20240101/failover_group.py +217 -0
  37. pulumi_azure_native/azurearcdata/v20240101/get_active_directory_connector.py +136 -0
  38. pulumi_azure_native/azurearcdata/v20240101/get_data_controller.py +170 -0
  39. pulumi_azure_native/azurearcdata/v20240101/get_failover_group.py +136 -0
  40. pulumi_azure_native/azurearcdata/v20240101/get_postgres_instance.py +183 -0
  41. pulumi_azure_native/azurearcdata/v20240101/get_sql_managed_instance.py +183 -0
  42. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_availability_group.py +162 -0
  43. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_availability_group_detail_view.py +162 -0
  44. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_database.py +162 -0
  45. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_instance.py +157 -0
  46. pulumi_azure_native/azurearcdata/v20240101/get_sql_server_instance_telemetry.py +136 -0
  47. pulumi_azure_native/azurearcdata/v20240101/outputs.py +4225 -0
  48. pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +312 -0
  49. pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +312 -0
  50. pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +274 -0
  51. pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +275 -0
  52. pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +253 -0
  53. pulumi_azure_native/azuresphere/v20240401/list_catalog_deployments.py +1 -1
  54. pulumi_azure_native/azuresphere/v20240401/list_catalog_device_groups.py +1 -1
  55. pulumi_azure_native/azuresphere/v20240401/list_catalog_device_insights.py +1 -1
  56. pulumi_azure_native/azuresphere/v20240401/list_catalog_devices.py +1 -1
  57. pulumi_azure_native/eventhub/v20230101preview/outputs.py +14 -1
  58. pulumi_azure_native/insights/__init__.py +3 -0
  59. pulumi_azure_native/insights/data_collection_endpoint.py +5 -1
  60. pulumi_azure_native/insights/data_collection_rule.py +5 -1
  61. pulumi_azure_native/insights/data_collection_rule_association.py +5 -1
  62. pulumi_azure_native/insights/get_data_collection_endpoint.py +4 -0
  63. pulumi_azure_native/insights/get_data_collection_rule.py +4 -0
  64. pulumi_azure_native/insights/get_data_collection_rule_association.py +4 -0
  65. pulumi_azure_native/insights/v20220601/data_collection_endpoint.py +1 -1
  66. pulumi_azure_native/insights/v20220601/data_collection_rule.py +1 -1
  67. pulumi_azure_native/insights/v20220601/data_collection_rule_association.py +1 -1
  68. pulumi_azure_native/insights/v20230311/__init__.py +16 -0
  69. pulumi_azure_native/insights/v20230311/_enums.py +196 -0
  70. pulumi_azure_native/insights/v20230311/_inputs.py +2122 -0
  71. pulumi_azure_native/insights/v20230311/data_collection_endpoint.py +449 -0
  72. pulumi_azure_native/insights/v20230311/data_collection_rule.py +568 -0
  73. pulumi_azure_native/insights/v20230311/data_collection_rule_association.py +281 -0
  74. pulumi_azure_native/insights/v20230311/get_data_collection_endpoint.py +313 -0
  75. pulumi_azure_native/insights/v20230311/get_data_collection_rule.py +340 -0
  76. pulumi_azure_native/insights/v20230311/get_data_collection_rule_association.py +196 -0
  77. pulumi_azure_native/insights/v20230311/outputs.py +3280 -0
  78. pulumi_azure_native/loadtestservice/_enums.py +7 -1
  79. pulumi_azure_native/loadtestservice/_inputs.py +5 -5
  80. pulumi_azure_native/loadtestservice/get_load_test.py +7 -7
  81. pulumi_azure_native/loadtestservice/load_test.py +9 -9
  82. pulumi_azure_native/loadtestservice/outputs.py +49 -49
  83. pulumi_azure_native/loadtestservice/v20221201/_enums.py +7 -1
  84. pulumi_azure_native/loadtestservice/v20221201/_inputs.py +5 -5
  85. pulumi_azure_native/loadtestservice/v20221201/get_load_test.py +7 -7
  86. pulumi_azure_native/loadtestservice/v20221201/load_test.py +9 -9
  87. pulumi_azure_native/loadtestservice/v20221201/outputs.py +49 -49
  88. pulumi_azure_native/netapp/__init__.py +3 -0
  89. pulumi_azure_native/netapp/account.py +3 -3
  90. pulumi_azure_native/netapp/backup.py +2 -2
  91. pulumi_azure_native/netapp/backup_policy.py +3 -3
  92. pulumi_azure_native/netapp/backup_vault.py +3 -3
  93. pulumi_azure_native/netapp/get_account.py +2 -2
  94. pulumi_azure_native/netapp/get_backup.py +2 -2
  95. pulumi_azure_native/netapp/get_backup_policy.py +2 -2
  96. pulumi_azure_native/netapp/get_backup_vault.py +2 -2
  97. pulumi_azure_native/netapp/get_pool.py +2 -2
  98. pulumi_azure_native/netapp/get_snapshot.py +2 -2
  99. pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
  100. pulumi_azure_native/netapp/get_subvolume.py +2 -2
  101. pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
  102. pulumi_azure_native/netapp/get_volume.py +2 -2
  103. pulumi_azure_native/netapp/get_volume_group.py +2 -2
  104. pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
  105. pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
  106. pulumi_azure_native/netapp/list_volume_replications.py +2 -2
  107. pulumi_azure_native/netapp/pool.py +3 -3
  108. pulumi_azure_native/netapp/snapshot.py +3 -3
  109. pulumi_azure_native/netapp/snapshot_policy.py +3 -3
  110. pulumi_azure_native/netapp/subvolume.py +3 -3
  111. pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
  112. pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
  113. pulumi_azure_native/netapp/v20211001/volume.py +1 -1
  114. pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
  115. pulumi_azure_native/netapp/v20220501/account.py +1 -1
  116. pulumi_azure_native/netapp/v20221101/account.py +1 -1
  117. pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
  118. pulumi_azure_native/netapp/v20221101/pool.py +1 -1
  119. pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
  120. pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
  121. pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
  122. pulumi_azure_native/netapp/v20221101/volume.py +1 -1
  123. pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
  124. pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
  125. pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
  126. pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
  127. pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
  128. pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
  129. pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
  130. pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
  131. pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
  132. pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
  133. pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
  134. pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
  135. pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
  136. pulumi_azure_native/netapp/v20230501/account.py +1 -1
  137. pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
  138. pulumi_azure_native/netapp/v20230501/pool.py +1 -1
  139. pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
  140. pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
  141. pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
  142. pulumi_azure_native/netapp/v20230501/volume.py +1 -1
  143. pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
  144. pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
  145. pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
  146. pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
  147. pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
  148. pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
  149. pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
  150. pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
  151. pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
  152. pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
  153. pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
  154. pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
  155. pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
  156. pulumi_azure_native/netapp/v20230701/account.py +1 -1
  157. pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
  158. pulumi_azure_native/netapp/v20230701/pool.py +1 -1
  159. pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
  160. pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
  161. pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
  162. pulumi_azure_native/netapp/v20230701/volume.py +1 -1
  163. pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
  164. pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
  165. pulumi_azure_native/netapp/v20230701preview/__init__.py +35 -0
  166. pulumi_azure_native/netapp/v20230701preview/_enums.py +267 -0
  167. pulumi_azure_native/netapp/v20230701preview/_inputs.py +2339 -0
  168. pulumi_azure_native/netapp/v20230701preview/account.py +380 -0
  169. pulumi_azure_native/netapp/v20230701preview/backup.py +397 -0
  170. pulumi_azure_native/netapp/v20230701preview/backup_policy.py +409 -0
  171. pulumi_azure_native/netapp/v20230701preview/backup_vault.py +253 -0
  172. pulumi_azure_native/netapp/v20230701preview/get_account.py +248 -0
  173. pulumi_azure_native/netapp/v20230701preview/get_backup.py +271 -0
  174. pulumi_azure_native/netapp/v20230701preview/get_backup_policy.py +266 -0
  175. pulumi_azure_native/netapp/v20230701preview/get_backup_vault.py +162 -0
  176. pulumi_azure_native/netapp/v20230701preview/get_pool.py +279 -0
  177. pulumi_azure_native/netapp/v20230701preview/get_snapshot.py +185 -0
  178. pulumi_azure_native/netapp/v20230701preview/get_snapshot_policy.py +240 -0
  179. pulumi_azure_native/netapp/v20230701preview/get_subvolume.py +185 -0
  180. pulumi_azure_native/netapp/v20230701preview/get_subvolume_metadata.py +249 -0
  181. pulumi_azure_native/netapp/v20230701preview/get_volume.py +895 -0
  182. pulumi_azure_native/netapp/v20230701preview/get_volume_group.py +162 -0
  183. pulumi_azure_native/netapp/v20230701preview/get_volume_group_id_for_ldap_user.py +93 -0
  184. pulumi_azure_native/netapp/v20230701preview/get_volume_quota_rule.py +211 -0
  185. pulumi_azure_native/netapp/v20230701preview/list_volume_replications.py +89 -0
  186. pulumi_azure_native/netapp/v20230701preview/outputs.py +3111 -0
  187. pulumi_azure_native/netapp/v20230701preview/pool.py +457 -0
  188. pulumi_azure_native/netapp/v20230701preview/snapshot.py +286 -0
  189. pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +409 -0
  190. pulumi_azure_native/netapp/v20230701preview/subvolume.py +324 -0
  191. pulumi_azure_native/netapp/v20230701preview/volume.py +1644 -0
  192. pulumi_azure_native/netapp/v20230701preview/volume_group.py +274 -0
  193. pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +383 -0
  194. pulumi_azure_native/netapp/volume.py +3 -3
  195. pulumi_azure_native/netapp/volume_group.py +3 -3
  196. pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
  197. pulumi_azure_native/quota/_enums.py +1 -1
  198. pulumi_azure_native/quota/_inputs.py +10 -10
  199. pulumi_azure_native/quota/get_group_quota.py +7 -7
  200. pulumi_azure_native/quota/get_group_quota_subscription.py +8 -8
  201. pulumi_azure_native/quota/group_quota.py +15 -15
  202. pulumi_azure_native/quota/group_quota_subscription.py +17 -17
  203. pulumi_azure_native/quota/outputs.py +12 -12
  204. pulumi_azure_native/quota/v20230601preview/_enums.py +1 -1
  205. pulumi_azure_native/quota/v20230601preview/_inputs.py +10 -10
  206. pulumi_azure_native/quota/v20230601preview/get_group_quota.py +7 -7
  207. pulumi_azure_native/quota/v20230601preview/get_group_quota_subscription.py +8 -8
  208. pulumi_azure_native/quota/v20230601preview/group_quota.py +15 -15
  209. pulumi_azure_native/quota/v20230601preview/group_quota_subscription.py +17 -17
  210. pulumi_azure_native/quota/v20230601preview/outputs.py +12 -12
  211. pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
  212. pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
  213. pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
  214. pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
  215. pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
  216. pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
  217. pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
  218. pulumi_azure_native/recoveryservices/protected_item.py +3 -3
  219. pulumi_azure_native/recoveryservices/protection_container.py +3 -3
  220. pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
  221. pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
  222. pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
  223. pulumi_azure_native/recoveryservices/v20230401/private_endpoint_connection.py +1 -1
  224. pulumi_azure_native/recoveryservices/v20230401/protected_item.py +1 -1
  225. pulumi_azure_native/recoveryservices/v20230401/protection_container.py +1 -1
  226. pulumi_azure_native/recoveryservices/v20230401/protection_intent.py +1 -1
  227. pulumi_azure_native/recoveryservices/v20230401/protection_policy.py +1 -1
  228. pulumi_azure_native/recoveryservices/v20230401/resource_guard_proxy.py +1 -1
  229. pulumi_azure_native/recoveryservices/v20230601/private_endpoint_connection.py +1 -1
  230. pulumi_azure_native/recoveryservices/v20230601/protected_item.py +1 -1
  231. pulumi_azure_native/recoveryservices/v20230601/protection_container.py +1 -1
  232. pulumi_azure_native/recoveryservices/v20230601/protection_intent.py +1 -1
  233. pulumi_azure_native/recoveryservices/v20230601/protection_policy.py +1 -1
  234. pulumi_azure_native/recoveryservices/v20230601/resource_guard_proxy.py +1 -1
  235. pulumi_azure_native/recoveryservices/v20230801/private_endpoint_connection.py +1 -1
  236. pulumi_azure_native/recoveryservices/v20230801/protected_item.py +1 -1
  237. pulumi_azure_native/recoveryservices/v20230801/protection_container.py +1 -1
  238. pulumi_azure_native/recoveryservices/v20230801/protection_intent.py +1 -1
  239. pulumi_azure_native/recoveryservices/v20230801/protection_policy.py +1 -1
  240. pulumi_azure_native/recoveryservices/v20230801/resource_guard_proxy.py +1 -1
  241. pulumi_azure_native/recoveryservices/v20240101/private_endpoint_connection.py +1 -1
  242. pulumi_azure_native/recoveryservices/v20240101/protected_item.py +1 -1
  243. pulumi_azure_native/recoveryservices/v20240101/protection_container.py +1 -1
  244. pulumi_azure_native/recoveryservices/v20240101/protection_intent.py +1 -1
  245. pulumi_azure_native/recoveryservices/v20240101/protection_policy.py +1 -1
  246. pulumi_azure_native/recoveryservices/v20240101/resource_guard_proxy.py +1 -1
  247. pulumi_azure_native/recoveryservices/v20240201/__init__.py +12 -0
  248. pulumi_azure_native/recoveryservices/v20240201/_enums.py +368 -0
  249. pulumi_azure_native/recoveryservices/v20240201/_inputs.py +11655 -197
  250. pulumi_azure_native/recoveryservices/v20240201/get_private_endpoint_connection.py +162 -0
  251. pulumi_azure_native/recoveryservices/v20240201/get_protected_item.py +179 -0
  252. pulumi_azure_native/recoveryservices/v20240201/get_protection_container.py +167 -0
  253. pulumi_azure_native/recoveryservices/v20240201/get_protection_intent.py +169 -0
  254. pulumi_azure_native/recoveryservices/v20240201/get_protection_policy.py +164 -0
  255. pulumi_azure_native/recoveryservices/v20240201/get_resource_guard_proxy.py +157 -0
  256. pulumi_azure_native/recoveryservices/v20240201/outputs.py +13072 -317
  257. pulumi_azure_native/recoveryservices/v20240201/private_endpoint_connection.py +293 -0
  258. pulumi_azure_native/recoveryservices/v20240201/protected_item.py +335 -0
  259. pulumi_azure_native/recoveryservices/v20240201/protection_container.py +314 -0
  260. pulumi_azure_native/recoveryservices/v20240201/protection_intent.py +314 -0
  261. pulumi_azure_native/recoveryservices/v20240201/protection_policy.py +293 -0
  262. pulumi_azure_native/recoveryservices/v20240201/resource_guard_proxy.py +285 -0
  263. pulumi_azure_native/resources/__init__.py +3 -0
  264. pulumi_azure_native/resources/deployment.py +3 -3
  265. pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
  266. pulumi_azure_native/resources/deployment_at_scope.py +3 -3
  267. pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
  268. pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
  269. pulumi_azure_native/resources/get_deployment.py +2 -2
  270. pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
  271. pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
  272. pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
  273. pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
  274. pulumi_azure_native/resources/get_resource.py +2 -2
  275. pulumi_azure_native/resources/get_resource_group.py +2 -2
  276. pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
  277. pulumi_azure_native/resources/resource.py +3 -3
  278. pulumi_azure_native/resources/resource_group.py +3 -3
  279. pulumi_azure_native/resources/tag_at_scope.py +3 -3
  280. pulumi_azure_native/resources/v20220901/deployment.py +1 -1
  281. pulumi_azure_native/resources/v20220901/deployment_at_management_group_scope.py +1 -1
  282. pulumi_azure_native/resources/v20220901/deployment_at_scope.py +1 -1
  283. pulumi_azure_native/resources/v20220901/deployment_at_subscription_scope.py +1 -1
  284. pulumi_azure_native/resources/v20220901/deployment_at_tenant_scope.py +1 -1
  285. pulumi_azure_native/resources/v20220901/resource.py +1 -1
  286. pulumi_azure_native/resources/v20220901/resource_group.py +1 -1
  287. pulumi_azure_native/resources/v20220901/tag_at_scope.py +1 -1
  288. pulumi_azure_native/resources/v20230701/deployment.py +1 -1
  289. pulumi_azure_native/resources/v20230701/deployment_at_management_group_scope.py +1 -1
  290. pulumi_azure_native/resources/v20230701/deployment_at_scope.py +1 -1
  291. pulumi_azure_native/resources/v20230701/deployment_at_subscription_scope.py +1 -1
  292. pulumi_azure_native/resources/v20230701/deployment_at_tenant_scope.py +1 -1
  293. pulumi_azure_native/resources/v20230701/resource.py +1 -1
  294. pulumi_azure_native/resources/v20230701/resource_group.py +1 -1
  295. pulumi_azure_native/resources/v20230701/tag_at_scope.py +1 -1
  296. pulumi_azure_native/resources/v20240301/__init__.py +26 -0
  297. pulumi_azure_native/resources/v20240301/_enums.py +55 -0
  298. pulumi_azure_native/resources/v20240301/_inputs.py +788 -0
  299. pulumi_azure_native/resources/v20240301/deployment.py +244 -0
  300. pulumi_azure_native/resources/v20240301/deployment_at_management_group_scope.py +244 -0
  301. pulumi_azure_native/resources/v20240301/deployment_at_scope.py +244 -0
  302. pulumi_azure_native/resources/v20240301/deployment_at_subscription_scope.py +223 -0
  303. pulumi_azure_native/resources/v20240301/deployment_at_tenant_scope.py +223 -0
  304. pulumi_azure_native/resources/v20240301/get_deployment.py +144 -0
  305. pulumi_azure_native/resources/v20240301/get_deployment_at_management_group_scope.py +144 -0
  306. pulumi_azure_native/resources/v20240301/get_deployment_at_scope.py +144 -0
  307. pulumi_azure_native/resources/v20240301/get_deployment_at_subscription_scope.py +139 -0
  308. pulumi_azure_native/resources/v20240301/get_deployment_at_tenant_scope.py +139 -0
  309. pulumi_azure_native/resources/v20240301/get_resource.py +237 -0
  310. pulumi_azure_native/resources/v20240301/get_resource_group.py +152 -0
  311. pulumi_azure_native/resources/v20240301/get_tag_at_scope.py +113 -0
  312. pulumi_azure_native/resources/v20240301/outputs.py +1842 -0
  313. pulumi_azure_native/resources/v20240301/resource.py +480 -0
  314. pulumi_azure_native/resources/v20240301/resource_group.py +230 -0
  315. pulumi_azure_native/resources/v20240301/tag_at_scope.py +165 -0
  316. pulumi_azure_native/security/__init__.py +3 -0
  317. pulumi_azure_native/security/dev_ops_configuration.py +5 -1
  318. pulumi_azure_native/security/get_dev_ops_configuration.py +4 -0
  319. pulumi_azure_native/security/list_azure_dev_ops_org_available.py +4 -0
  320. pulumi_azure_native/security/list_git_hub_owner_available.py +4 -0
  321. pulumi_azure_native/security/list_git_lab_group_available.py +4 -0
  322. pulumi_azure_native/security/list_git_lab_subgroup.py +4 -0
  323. pulumi_azure_native/security/v20230901preview/dev_ops_configuration.py +1 -1
  324. pulumi_azure_native/security/v20240401/__init__.py +16 -0
  325. pulumi_azure_native/security/v20240401/_enums.py +40 -0
  326. pulumi_azure_native/security/v20240401/_inputs.py +135 -0
  327. pulumi_azure_native/security/v20240401/dev_ops_configuration.py +196 -0
  328. pulumi_azure_native/security/v20240401/get_dev_ops_configuration.py +131 -0
  329. pulumi_azure_native/security/v20240401/list_azure_dev_ops_org_available.py +92 -0
  330. pulumi_azure_native/security/v20240401/list_git_hub_owner_available.py +92 -0
  331. pulumi_azure_native/security/v20240401/list_git_lab_group_available.py +92 -0
  332. pulumi_azure_native/security/v20240401/list_git_lab_subgroup.py +97 -0
  333. pulumi_azure_native/security/v20240401/outputs.py +1018 -0
  334. pulumi_azure_native/standbypool/_inputs.py +2 -2
  335. pulumi_azure_native/standbypool/outputs.py +2 -2
  336. pulumi_azure_native/standbypool/v20231201preview/_inputs.py +2 -2
  337. pulumi_azure_native/standbypool/v20231201preview/outputs.py +2 -2
  338. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/METADATA +1 -1
  339. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/RECORD +341 -234
  340. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/WHEEL +0 -0
  341. {pulumi_azure_native-2.35.0.dist-info → pulumi_azure_native-2.36.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,248 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetAccountResult',
15
+ 'AwaitableGetAccountResult',
16
+ 'get_account',
17
+ 'get_account_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetAccountResult:
22
+ """
23
+ NetApp account resource
24
+ """
25
+ def __init__(__self__, active_directories=None, disable_showmount=None, encryption=None, etag=None, id=None, identity=None, is_multi_ad_enabled=None, location=None, name=None, nfs_v4_id_domain=None, provisioning_state=None, system_data=None, tags=None, type=None):
26
+ if active_directories and not isinstance(active_directories, list):
27
+ raise TypeError("Expected argument 'active_directories' to be a list")
28
+ pulumi.set(__self__, "active_directories", active_directories)
29
+ if disable_showmount and not isinstance(disable_showmount, bool):
30
+ raise TypeError("Expected argument 'disable_showmount' to be a bool")
31
+ pulumi.set(__self__, "disable_showmount", disable_showmount)
32
+ if encryption and not isinstance(encryption, dict):
33
+ raise TypeError("Expected argument 'encryption' to be a dict")
34
+ pulumi.set(__self__, "encryption", encryption)
35
+ if etag and not isinstance(etag, str):
36
+ raise TypeError("Expected argument 'etag' to be a str")
37
+ pulumi.set(__self__, "etag", etag)
38
+ if id and not isinstance(id, str):
39
+ raise TypeError("Expected argument 'id' to be a str")
40
+ pulumi.set(__self__, "id", id)
41
+ if identity and not isinstance(identity, dict):
42
+ raise TypeError("Expected argument 'identity' to be a dict")
43
+ pulumi.set(__self__, "identity", identity)
44
+ if is_multi_ad_enabled and not isinstance(is_multi_ad_enabled, bool):
45
+ raise TypeError("Expected argument 'is_multi_ad_enabled' to be a bool")
46
+ pulumi.set(__self__, "is_multi_ad_enabled", is_multi_ad_enabled)
47
+ if location and not isinstance(location, str):
48
+ raise TypeError("Expected argument 'location' to be a str")
49
+ pulumi.set(__self__, "location", location)
50
+ if name and not isinstance(name, str):
51
+ raise TypeError("Expected argument 'name' to be a str")
52
+ pulumi.set(__self__, "name", name)
53
+ if nfs_v4_id_domain and not isinstance(nfs_v4_id_domain, str):
54
+ raise TypeError("Expected argument 'nfs_v4_id_domain' to be a str")
55
+ pulumi.set(__self__, "nfs_v4_id_domain", nfs_v4_id_domain)
56
+ if provisioning_state and not isinstance(provisioning_state, str):
57
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
58
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
59
+ if system_data and not isinstance(system_data, dict):
60
+ raise TypeError("Expected argument 'system_data' to be a dict")
61
+ pulumi.set(__self__, "system_data", system_data)
62
+ if tags and not isinstance(tags, dict):
63
+ raise TypeError("Expected argument 'tags' to be a dict")
64
+ pulumi.set(__self__, "tags", tags)
65
+ if type and not isinstance(type, str):
66
+ raise TypeError("Expected argument 'type' to be a str")
67
+ pulumi.set(__self__, "type", type)
68
+
69
+ @property
70
+ @pulumi.getter(name="activeDirectories")
71
+ def active_directories(self) -> Optional[Sequence['outputs.ActiveDirectoryResponse']]:
72
+ """
73
+ Active Directories
74
+ """
75
+ return pulumi.get(self, "active_directories")
76
+
77
+ @property
78
+ @pulumi.getter(name="disableShowmount")
79
+ def disable_showmount(self) -> bool:
80
+ """
81
+ Shows the status of disableShowmount for all volumes under the subscription, null equals false
82
+ """
83
+ return pulumi.get(self, "disable_showmount")
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def encryption(self) -> Optional['outputs.AccountEncryptionResponse']:
88
+ """
89
+ Encryption settings
90
+ """
91
+ return pulumi.get(self, "encryption")
92
+
93
+ @property
94
+ @pulumi.getter
95
+ def etag(self) -> str:
96
+ """
97
+ A unique read-only string that changes whenever the resource is updated.
98
+ """
99
+ return pulumi.get(self, "etag")
100
+
101
+ @property
102
+ @pulumi.getter
103
+ def id(self) -> str:
104
+ """
105
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
106
+ """
107
+ return pulumi.get(self, "id")
108
+
109
+ @property
110
+ @pulumi.getter
111
+ def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
112
+ """
113
+ The identity used for the resource.
114
+ """
115
+ return pulumi.get(self, "identity")
116
+
117
+ @property
118
+ @pulumi.getter(name="isMultiAdEnabled")
119
+ def is_multi_ad_enabled(self) -> bool:
120
+ """
121
+ This will have true value only if account is Multiple AD enabled.
122
+ """
123
+ return pulumi.get(self, "is_multi_ad_enabled")
124
+
125
+ @property
126
+ @pulumi.getter
127
+ def location(self) -> str:
128
+ """
129
+ The geo-location where the resource lives
130
+ """
131
+ return pulumi.get(self, "location")
132
+
133
+ @property
134
+ @pulumi.getter
135
+ def name(self) -> str:
136
+ """
137
+ The name of the resource
138
+ """
139
+ return pulumi.get(self, "name")
140
+
141
+ @property
142
+ @pulumi.getter(name="nfsV4IDDomain")
143
+ def nfs_v4_id_domain(self) -> Optional[str]:
144
+ """
145
+ Domain for NFSv4 user ID mapping. This property will be set for all NetApp accounts in the subscription and region and only affect non ldap NFSv4 volumes.
146
+ """
147
+ return pulumi.get(self, "nfs_v4_id_domain")
148
+
149
+ @property
150
+ @pulumi.getter(name="provisioningState")
151
+ def provisioning_state(self) -> str:
152
+ """
153
+ Azure lifecycle management
154
+ """
155
+ return pulumi.get(self, "provisioning_state")
156
+
157
+ @property
158
+ @pulumi.getter(name="systemData")
159
+ def system_data(self) -> 'outputs.SystemDataResponse':
160
+ """
161
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
162
+ """
163
+ return pulumi.get(self, "system_data")
164
+
165
+ @property
166
+ @pulumi.getter
167
+ def tags(self) -> Optional[Mapping[str, str]]:
168
+ """
169
+ Resource tags.
170
+ """
171
+ return pulumi.get(self, "tags")
172
+
173
+ @property
174
+ @pulumi.getter
175
+ def type(self) -> str:
176
+ """
177
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
178
+ """
179
+ return pulumi.get(self, "type")
180
+
181
+
182
+ class AwaitableGetAccountResult(GetAccountResult):
183
+ # pylint: disable=using-constant-test
184
+ def __await__(self):
185
+ if False:
186
+ yield self
187
+ return GetAccountResult(
188
+ active_directories=self.active_directories,
189
+ disable_showmount=self.disable_showmount,
190
+ encryption=self.encryption,
191
+ etag=self.etag,
192
+ id=self.id,
193
+ identity=self.identity,
194
+ is_multi_ad_enabled=self.is_multi_ad_enabled,
195
+ location=self.location,
196
+ name=self.name,
197
+ nfs_v4_id_domain=self.nfs_v4_id_domain,
198
+ provisioning_state=self.provisioning_state,
199
+ system_data=self.system_data,
200
+ tags=self.tags,
201
+ type=self.type)
202
+
203
+
204
+ def get_account(account_name: Optional[str] = None,
205
+ resource_group_name: Optional[str] = None,
206
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountResult:
207
+ """
208
+ Get the NetApp account
209
+
210
+
211
+ :param str account_name: The name of the NetApp account
212
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
213
+ """
214
+ __args__ = dict()
215
+ __args__['accountName'] = account_name
216
+ __args__['resourceGroupName'] = resource_group_name
217
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
218
+ __ret__ = pulumi.runtime.invoke('azure-native:netapp/v20230701preview:getAccount', __args__, opts=opts, typ=GetAccountResult).value
219
+
220
+ return AwaitableGetAccountResult(
221
+ active_directories=pulumi.get(__ret__, 'active_directories'),
222
+ disable_showmount=pulumi.get(__ret__, 'disable_showmount'),
223
+ encryption=pulumi.get(__ret__, 'encryption'),
224
+ etag=pulumi.get(__ret__, 'etag'),
225
+ id=pulumi.get(__ret__, 'id'),
226
+ identity=pulumi.get(__ret__, 'identity'),
227
+ is_multi_ad_enabled=pulumi.get(__ret__, 'is_multi_ad_enabled'),
228
+ location=pulumi.get(__ret__, 'location'),
229
+ name=pulumi.get(__ret__, 'name'),
230
+ nfs_v4_id_domain=pulumi.get(__ret__, 'nfs_v4_id_domain'),
231
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
232
+ system_data=pulumi.get(__ret__, 'system_data'),
233
+ tags=pulumi.get(__ret__, 'tags'),
234
+ type=pulumi.get(__ret__, 'type'))
235
+
236
+
237
+ @_utilities.lift_output_func(get_account)
238
+ def get_account_output(account_name: Optional[pulumi.Input[str]] = None,
239
+ resource_group_name: Optional[pulumi.Input[str]] = None,
240
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAccountResult]:
241
+ """
242
+ Get the NetApp account
243
+
244
+
245
+ :param str account_name: The name of the NetApp account
246
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
247
+ """
248
+ ...
@@ -0,0 +1,271 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetBackupResult',
15
+ 'AwaitableGetBackupResult',
16
+ 'get_backup',
17
+ 'get_backup_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetBackupResult:
22
+ """
23
+ Backup under a Backup Vault
24
+ """
25
+ def __init__(__self__, backup_id=None, backup_policy_resource_id=None, backup_type=None, creation_date=None, failure_reason=None, id=None, label=None, name=None, provisioning_state=None, size=None, snapshot_name=None, system_data=None, type=None, use_existing_snapshot=None, volume_resource_id=None):
26
+ if backup_id and not isinstance(backup_id, str):
27
+ raise TypeError("Expected argument 'backup_id' to be a str")
28
+ pulumi.set(__self__, "backup_id", backup_id)
29
+ if backup_policy_resource_id and not isinstance(backup_policy_resource_id, str):
30
+ raise TypeError("Expected argument 'backup_policy_resource_id' to be a str")
31
+ pulumi.set(__self__, "backup_policy_resource_id", backup_policy_resource_id)
32
+ if backup_type and not isinstance(backup_type, str):
33
+ raise TypeError("Expected argument 'backup_type' to be a str")
34
+ pulumi.set(__self__, "backup_type", backup_type)
35
+ if creation_date and not isinstance(creation_date, str):
36
+ raise TypeError("Expected argument 'creation_date' to be a str")
37
+ pulumi.set(__self__, "creation_date", creation_date)
38
+ if failure_reason and not isinstance(failure_reason, str):
39
+ raise TypeError("Expected argument 'failure_reason' to be a str")
40
+ pulumi.set(__self__, "failure_reason", failure_reason)
41
+ if id and not isinstance(id, str):
42
+ raise TypeError("Expected argument 'id' to be a str")
43
+ pulumi.set(__self__, "id", id)
44
+ if label and not isinstance(label, str):
45
+ raise TypeError("Expected argument 'label' to be a str")
46
+ pulumi.set(__self__, "label", label)
47
+ if name and not isinstance(name, str):
48
+ raise TypeError("Expected argument 'name' to be a str")
49
+ pulumi.set(__self__, "name", name)
50
+ if provisioning_state and not isinstance(provisioning_state, str):
51
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
52
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
53
+ if size and not isinstance(size, float):
54
+ raise TypeError("Expected argument 'size' to be a float")
55
+ pulumi.set(__self__, "size", size)
56
+ if snapshot_name and not isinstance(snapshot_name, str):
57
+ raise TypeError("Expected argument 'snapshot_name' to be a str")
58
+ pulumi.set(__self__, "snapshot_name", snapshot_name)
59
+ if system_data and not isinstance(system_data, dict):
60
+ raise TypeError("Expected argument 'system_data' to be a dict")
61
+ pulumi.set(__self__, "system_data", system_data)
62
+ if type and not isinstance(type, str):
63
+ raise TypeError("Expected argument 'type' to be a str")
64
+ pulumi.set(__self__, "type", type)
65
+ if use_existing_snapshot and not isinstance(use_existing_snapshot, bool):
66
+ raise TypeError("Expected argument 'use_existing_snapshot' to be a bool")
67
+ pulumi.set(__self__, "use_existing_snapshot", use_existing_snapshot)
68
+ if volume_resource_id and not isinstance(volume_resource_id, str):
69
+ raise TypeError("Expected argument 'volume_resource_id' to be a str")
70
+ pulumi.set(__self__, "volume_resource_id", volume_resource_id)
71
+
72
+ @property
73
+ @pulumi.getter(name="backupId")
74
+ def backup_id(self) -> str:
75
+ """
76
+ UUID v4 used to identify the Backup
77
+ """
78
+ return pulumi.get(self, "backup_id")
79
+
80
+ @property
81
+ @pulumi.getter(name="backupPolicyResourceId")
82
+ def backup_policy_resource_id(self) -> str:
83
+ """
84
+ ResourceId used to identify the backup policy
85
+ """
86
+ return pulumi.get(self, "backup_policy_resource_id")
87
+
88
+ @property
89
+ @pulumi.getter(name="backupType")
90
+ def backup_type(self) -> str:
91
+ """
92
+ Type of backup Manual or Scheduled
93
+ """
94
+ return pulumi.get(self, "backup_type")
95
+
96
+ @property
97
+ @pulumi.getter(name="creationDate")
98
+ def creation_date(self) -> str:
99
+ """
100
+ The creation date of the backup
101
+ """
102
+ return pulumi.get(self, "creation_date")
103
+
104
+ @property
105
+ @pulumi.getter(name="failureReason")
106
+ def failure_reason(self) -> str:
107
+ """
108
+ Failure reason
109
+ """
110
+ return pulumi.get(self, "failure_reason")
111
+
112
+ @property
113
+ @pulumi.getter
114
+ def id(self) -> str:
115
+ """
116
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
117
+ """
118
+ return pulumi.get(self, "id")
119
+
120
+ @property
121
+ @pulumi.getter
122
+ def label(self) -> Optional[str]:
123
+ """
124
+ Label for backup
125
+ """
126
+ return pulumi.get(self, "label")
127
+
128
+ @property
129
+ @pulumi.getter
130
+ def name(self) -> str:
131
+ """
132
+ The name of the resource
133
+ """
134
+ return pulumi.get(self, "name")
135
+
136
+ @property
137
+ @pulumi.getter(name="provisioningState")
138
+ def provisioning_state(self) -> str:
139
+ """
140
+ Azure lifecycle management
141
+ """
142
+ return pulumi.get(self, "provisioning_state")
143
+
144
+ @property
145
+ @pulumi.getter
146
+ def size(self) -> float:
147
+ """
148
+ Size of backup in bytes
149
+ """
150
+ return pulumi.get(self, "size")
151
+
152
+ @property
153
+ @pulumi.getter(name="snapshotName")
154
+ def snapshot_name(self) -> Optional[str]:
155
+ """
156
+ The name of the snapshot
157
+ """
158
+ return pulumi.get(self, "snapshot_name")
159
+
160
+ @property
161
+ @pulumi.getter(name="systemData")
162
+ def system_data(self) -> 'outputs.SystemDataResponse':
163
+ """
164
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
165
+ """
166
+ return pulumi.get(self, "system_data")
167
+
168
+ @property
169
+ @pulumi.getter
170
+ def type(self) -> str:
171
+ """
172
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
173
+ """
174
+ return pulumi.get(self, "type")
175
+
176
+ @property
177
+ @pulumi.getter(name="useExistingSnapshot")
178
+ def use_existing_snapshot(self) -> Optional[bool]:
179
+ """
180
+ Manual backup an already existing snapshot. This will always be false for scheduled backups and true/false for manual backups
181
+ """
182
+ return pulumi.get(self, "use_existing_snapshot")
183
+
184
+ @property
185
+ @pulumi.getter(name="volumeResourceId")
186
+ def volume_resource_id(self) -> str:
187
+ """
188
+ ResourceId used to identify the Volume
189
+ """
190
+ return pulumi.get(self, "volume_resource_id")
191
+
192
+
193
+ class AwaitableGetBackupResult(GetBackupResult):
194
+ # pylint: disable=using-constant-test
195
+ def __await__(self):
196
+ if False:
197
+ yield self
198
+ return GetBackupResult(
199
+ backup_id=self.backup_id,
200
+ backup_policy_resource_id=self.backup_policy_resource_id,
201
+ backup_type=self.backup_type,
202
+ creation_date=self.creation_date,
203
+ failure_reason=self.failure_reason,
204
+ id=self.id,
205
+ label=self.label,
206
+ name=self.name,
207
+ provisioning_state=self.provisioning_state,
208
+ size=self.size,
209
+ snapshot_name=self.snapshot_name,
210
+ system_data=self.system_data,
211
+ type=self.type,
212
+ use_existing_snapshot=self.use_existing_snapshot,
213
+ volume_resource_id=self.volume_resource_id)
214
+
215
+
216
+ def get_backup(account_name: Optional[str] = None,
217
+ backup_name: Optional[str] = None,
218
+ backup_vault_name: Optional[str] = None,
219
+ resource_group_name: Optional[str] = None,
220
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupResult:
221
+ """
222
+ Get the specified Backup under Backup Vault.
223
+
224
+
225
+ :param str account_name: The name of the NetApp account
226
+ :param str backup_name: The name of the backup
227
+ :param str backup_vault_name: The name of the Backup Vault
228
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
229
+ """
230
+ __args__ = dict()
231
+ __args__['accountName'] = account_name
232
+ __args__['backupName'] = backup_name
233
+ __args__['backupVaultName'] = backup_vault_name
234
+ __args__['resourceGroupName'] = resource_group_name
235
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
236
+ __ret__ = pulumi.runtime.invoke('azure-native:netapp/v20230701preview:getBackup', __args__, opts=opts, typ=GetBackupResult).value
237
+
238
+ return AwaitableGetBackupResult(
239
+ backup_id=pulumi.get(__ret__, 'backup_id'),
240
+ backup_policy_resource_id=pulumi.get(__ret__, 'backup_policy_resource_id'),
241
+ backup_type=pulumi.get(__ret__, 'backup_type'),
242
+ creation_date=pulumi.get(__ret__, 'creation_date'),
243
+ failure_reason=pulumi.get(__ret__, 'failure_reason'),
244
+ id=pulumi.get(__ret__, 'id'),
245
+ label=pulumi.get(__ret__, 'label'),
246
+ name=pulumi.get(__ret__, 'name'),
247
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
248
+ size=pulumi.get(__ret__, 'size'),
249
+ snapshot_name=pulumi.get(__ret__, 'snapshot_name'),
250
+ system_data=pulumi.get(__ret__, 'system_data'),
251
+ type=pulumi.get(__ret__, 'type'),
252
+ use_existing_snapshot=pulumi.get(__ret__, 'use_existing_snapshot'),
253
+ volume_resource_id=pulumi.get(__ret__, 'volume_resource_id'))
254
+
255
+
256
+ @_utilities.lift_output_func(get_backup)
257
+ def get_backup_output(account_name: Optional[pulumi.Input[str]] = None,
258
+ backup_name: Optional[pulumi.Input[str]] = None,
259
+ backup_vault_name: Optional[pulumi.Input[str]] = None,
260
+ resource_group_name: Optional[pulumi.Input[str]] = None,
261
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBackupResult]:
262
+ """
263
+ Get the specified Backup under Backup Vault.
264
+
265
+
266
+ :param str account_name: The name of the NetApp account
267
+ :param str backup_name: The name of the backup
268
+ :param str backup_vault_name: The name of the Backup Vault
269
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
270
+ """
271
+ ...