pulumi-azure-native 2.21.2a1702068757__py3-none-any.whl → 2.21.3a1702685082__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

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