pulumi-azure-native 2.33.1a1711540390__py3-none-any.whl → 2.34.0__py3-none-any.whl

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

Potentially problematic release.


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

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