pulumi-azure-native 2.32.1a1710515727__py3-none-any.whl → 2.32.1a1711107957__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 (1248) hide show
  1. pulumi_azure_native/__init__.py +216 -0
  2. pulumi_azure_native/appconfiguration/__init__.py +3 -0
  3. pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
  4. pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
  5. pulumi_azure_native/appconfiguration/get_key_value.py +2 -2
  6. pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +2 -2
  7. pulumi_azure_native/appconfiguration/get_replica.py +2 -2
  8. pulumi_azure_native/appconfiguration/key_value.py +3 -3
  9. pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
  10. pulumi_azure_native/appconfiguration/private_endpoint_connection.py +3 -3
  11. pulumi_azure_native/appconfiguration/replica.py +3 -3
  12. pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
  13. pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
  14. pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
  15. pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
  16. pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +1 -1
  17. pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +1 -1
  18. pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +1 -1
  19. pulumi_azure_native/appconfiguration/v20230801preview/replica.py +1 -1
  20. pulumi_azure_native/appconfiguration/v20230901preview/__init__.py +19 -0
  21. pulumi_azure_native/appconfiguration/v20230901preview/_enums.py +78 -0
  22. pulumi_azure_native/appconfiguration/v20230901preview/_inputs.py +319 -0
  23. pulumi_azure_native/appconfiguration/v20230901preview/configuration_store.py +587 -0
  24. pulumi_azure_native/appconfiguration/v20230901preview/get_configuration_store.py +326 -0
  25. pulumi_azure_native/appconfiguration/v20230901preview/get_key_value.py +217 -0
  26. pulumi_azure_native/appconfiguration/v20230901preview/get_private_endpoint_connection.py +149 -0
  27. pulumi_azure_native/appconfiguration/v20230901preview/get_replica.py +162 -0
  28. pulumi_azure_native/appconfiguration/v20230901preview/key_value.py +318 -0
  29. pulumi_azure_native/appconfiguration/v20230901preview/list_configuration_store_keys.py +97 -0
  30. pulumi_azure_native/appconfiguration/v20230901preview/outputs.py +795 -0
  31. pulumi_azure_native/appconfiguration/v20230901preview/private_endpoint_connection.py +246 -0
  32. pulumi_azure_native/appconfiguration/v20230901preview/replica.py +234 -0
  33. pulumi_azure_native/avs/__init__.py +5 -0
  34. pulumi_azure_native/avs/addon.py +3 -3
  35. pulumi_azure_native/avs/authorization.py +3 -3
  36. pulumi_azure_native/avs/cloud_link.py +3 -3
  37. pulumi_azure_native/avs/cluster.py +3 -3
  38. pulumi_azure_native/avs/datastore.py +3 -3
  39. pulumi_azure_native/avs/get_addon.py +2 -2
  40. pulumi_azure_native/avs/get_authorization.py +2 -2
  41. pulumi_azure_native/avs/get_cloud_link.py +2 -2
  42. pulumi_azure_native/avs/get_cluster.py +2 -2
  43. pulumi_azure_native/avs/get_datastore.py +2 -2
  44. pulumi_azure_native/avs/get_global_reach_connection.py +2 -2
  45. pulumi_azure_native/avs/get_hcx_enterprise_site.py +2 -2
  46. pulumi_azure_native/avs/get_iscsi_path.py +146 -0
  47. pulumi_azure_native/avs/get_placement_policy.py +2 -2
  48. pulumi_azure_native/avs/get_private_cloud.py +2 -2
  49. pulumi_azure_native/avs/get_script_execution.py +2 -2
  50. pulumi_azure_native/avs/get_script_execution_logs.py +2 -2
  51. pulumi_azure_native/avs/get_workload_network_dhcp.py +2 -2
  52. pulumi_azure_native/avs/get_workload_network_dns_service.py +2 -2
  53. pulumi_azure_native/avs/get_workload_network_dns_zone.py +2 -2
  54. pulumi_azure_native/avs/get_workload_network_port_mirroring.py +2 -2
  55. pulumi_azure_native/avs/get_workload_network_public_ip.py +2 -2
  56. pulumi_azure_native/avs/get_workload_network_segment.py +2 -2
  57. pulumi_azure_native/avs/get_workload_network_vm_group.py +2 -2
  58. pulumi_azure_native/avs/global_reach_connection.py +3 -3
  59. pulumi_azure_native/avs/hcx_enterprise_site.py +3 -3
  60. pulumi_azure_native/avs/iscsi_path.py +207 -0
  61. pulumi_azure_native/avs/list_cluster_zones.py +2 -2
  62. pulumi_azure_native/avs/list_private_cloud_admin_credentials.py +2 -2
  63. pulumi_azure_native/avs/outputs.py +111 -0
  64. pulumi_azure_native/avs/placement_policy.py +3 -3
  65. pulumi_azure_native/avs/private_cloud.py +3 -3
  66. pulumi_azure_native/avs/script_execution.py +3 -3
  67. pulumi_azure_native/avs/v20200320/cluster.py +1 -1
  68. pulumi_azure_native/avs/v20210101preview/addon.py +1 -1
  69. pulumi_azure_native/avs/v20210101preview/workload_network_dhcp.py +1 -1
  70. pulumi_azure_native/avs/v20210601/cluster.py +1 -1
  71. pulumi_azure_native/avs/v20220501/addon.py +1 -1
  72. pulumi_azure_native/avs/v20220501/authorization.py +1 -1
  73. pulumi_azure_native/avs/v20220501/cloud_link.py +1 -1
  74. pulumi_azure_native/avs/v20220501/cluster.py +1 -1
  75. pulumi_azure_native/avs/v20220501/datastore.py +1 -1
  76. pulumi_azure_native/avs/v20220501/global_reach_connection.py +1 -1
  77. pulumi_azure_native/avs/v20220501/hcx_enterprise_site.py +1 -1
  78. pulumi_azure_native/avs/v20220501/placement_policy.py +1 -1
  79. pulumi_azure_native/avs/v20220501/private_cloud.py +1 -1
  80. pulumi_azure_native/avs/v20220501/script_execution.py +1 -1
  81. pulumi_azure_native/avs/v20220501/workload_network_dhcp.py +1 -1
  82. pulumi_azure_native/avs/v20220501/workload_network_dns_service.py +1 -1
  83. pulumi_azure_native/avs/v20220501/workload_network_dns_zone.py +1 -1
  84. pulumi_azure_native/avs/v20220501/workload_network_port_mirroring.py +1 -1
  85. pulumi_azure_native/avs/v20220501/workload_network_public_ip.py +1 -1
  86. pulumi_azure_native/avs/v20220501/workload_network_segment.py +1 -1
  87. pulumi_azure_native/avs/v20220501/workload_network_vm_group.py +1 -1
  88. pulumi_azure_native/avs/v20230301/addon.py +1 -1
  89. pulumi_azure_native/avs/v20230301/authorization.py +1 -1
  90. pulumi_azure_native/avs/v20230301/cloud_link.py +1 -1
  91. pulumi_azure_native/avs/v20230301/cluster.py +1 -1
  92. pulumi_azure_native/avs/v20230301/datastore.py +1 -1
  93. pulumi_azure_native/avs/v20230301/global_reach_connection.py +1 -1
  94. pulumi_azure_native/avs/v20230301/hcx_enterprise_site.py +1 -1
  95. pulumi_azure_native/avs/v20230301/placement_policy.py +1 -1
  96. pulumi_azure_native/avs/v20230301/private_cloud.py +1 -1
  97. pulumi_azure_native/avs/v20230301/script_execution.py +1 -1
  98. pulumi_azure_native/avs/v20230301/workload_network_dhcp.py +1 -1
  99. pulumi_azure_native/avs/v20230301/workload_network_dns_service.py +1 -1
  100. pulumi_azure_native/avs/v20230301/workload_network_dns_zone.py +1 -1
  101. pulumi_azure_native/avs/v20230301/workload_network_port_mirroring.py +1 -1
  102. pulumi_azure_native/avs/v20230301/workload_network_public_ip.py +1 -1
  103. pulumi_azure_native/avs/v20230301/workload_network_segment.py +1 -1
  104. pulumi_azure_native/avs/v20230301/workload_network_vm_group.py +1 -1
  105. pulumi_azure_native/avs/v20230901/__init__.py +49 -0
  106. pulumi_azure_native/avs/v20230901/_enums.py +219 -0
  107. pulumi_azure_native/avs/v20230901/_inputs.py +847 -0
  108. pulumi_azure_native/avs/v20230901/addon.py +226 -0
  109. pulumi_azure_native/avs/v20230901/authorization.py +244 -0
  110. pulumi_azure_native/avs/v20230901/cloud_link.py +234 -0
  111. pulumi_azure_native/avs/v20230901/cluster.py +324 -0
  112. pulumi_azure_native/avs/v20230901/datastore.py +315 -0
  113. pulumi_azure_native/avs/v20230901/get_addon.py +149 -0
  114. pulumi_azure_native/avs/v20230901/get_authorization.py +175 -0
  115. pulumi_azure_native/avs/v20230901/get_cloud_link.py +162 -0
  116. pulumi_azure_native/avs/v20230901/get_cluster.py +201 -0
  117. pulumi_azure_native/avs/v20230901/get_datastore.py +193 -0
  118. pulumi_azure_native/avs/v20230901/get_global_reach_connection.py +205 -0
  119. pulumi_azure_native/avs/v20230901/get_hcx_enterprise_site.py +162 -0
  120. pulumi_azure_native/avs/v20230901/get_iscsi_path.py +144 -0
  121. pulumi_azure_native/avs/v20230901/get_placement_policy.py +167 -0
  122. pulumi_azure_native/avs/v20230901/get_private_cloud.py +463 -0
  123. pulumi_azure_native/avs/v20230901/get_script_execution.py +320 -0
  124. pulumi_azure_native/avs/v20230901/get_script_execution_logs.py +320 -0
  125. pulumi_azure_native/avs/v20230901/get_workload_network_dhcp.py +188 -0
  126. pulumi_azure_native/avs/v20230901/get_workload_network_dns_service.py +227 -0
  127. pulumi_azure_native/avs/v20230901/get_workload_network_dns_zone.py +214 -0
  128. pulumi_azure_native/avs/v20230901/get_workload_network_port_mirroring.py +214 -0
  129. pulumi_azure_native/avs/v20230901/get_workload_network_public_ip.py +175 -0
  130. pulumi_azure_native/avs/v20230901/get_workload_network_segment.py +214 -0
  131. pulumi_azure_native/avs/v20230901/get_workload_network_vm_group.py +188 -0
  132. pulumi_azure_native/avs/v20230901/global_reach_connection.py +315 -0
  133. pulumi_azure_native/avs/v20230901/hcx_enterprise_site.py +215 -0
  134. pulumi_azure_native/avs/v20230901/iscsi_path.py +205 -0
  135. pulumi_azure_native/avs/v20230901/list_cluster_zones.py +84 -0
  136. pulumi_azure_native/avs/v20230901/list_private_cloud_admin_credentials.py +117 -0
  137. pulumi_azure_native/avs/v20230901/outputs.py +1370 -0
  138. pulumi_azure_native/avs/v20230901/placement_policy.py +295 -0
  139. pulumi_azure_native/avs/v20230901/private_cloud.py +740 -0
  140. pulumi_azure_native/avs/v20230901/script_execution.py +497 -0
  141. pulumi_azure_native/avs/v20230901/workload_network_dhcp.py +294 -0
  142. pulumi_azure_native/avs/v20230901/workload_network_dns_service.py +380 -0
  143. pulumi_azure_native/avs/v20230901/workload_network_dns_zone.py +369 -0
  144. pulumi_azure_native/avs/v20230901/workload_network_port_mirroring.py +351 -0
  145. pulumi_azure_native/avs/v20230901/workload_network_public_ip.py +263 -0
  146. pulumi_azure_native/avs/v20230901/workload_network_segment.py +332 -0
  147. pulumi_azure_native/avs/v20230901/workload_network_vm_group.py +292 -0
  148. pulumi_azure_native/avs/workload_network_dhcp.py +3 -3
  149. pulumi_azure_native/avs/workload_network_dns_service.py +3 -3
  150. pulumi_azure_native/avs/workload_network_dns_zone.py +3 -3
  151. pulumi_azure_native/avs/workload_network_port_mirroring.py +3 -3
  152. pulumi_azure_native/avs/workload_network_public_ip.py +3 -3
  153. pulumi_azure_native/avs/workload_network_segment.py +3 -3
  154. pulumi_azure_native/avs/workload_network_vm_group.py +3 -3
  155. pulumi_azure_native/cdn/__init__.py +3 -0
  156. pulumi_azure_native/cdn/afd_custom_domain.py +3 -3
  157. pulumi_azure_native/cdn/afd_endpoint.py +3 -3
  158. pulumi_azure_native/cdn/afd_origin.py +3 -3
  159. pulumi_azure_native/cdn/afd_origin_group.py +3 -3
  160. pulumi_azure_native/cdn/custom_domain.py +3 -3
  161. pulumi_azure_native/cdn/endpoint.py +3 -3
  162. pulumi_azure_native/cdn/get_afd_custom_domain.py +2 -2
  163. pulumi_azure_native/cdn/get_afd_endpoint.py +2 -2
  164. pulumi_azure_native/cdn/get_afd_origin.py +2 -2
  165. pulumi_azure_native/cdn/get_afd_origin_group.py +2 -2
  166. pulumi_azure_native/cdn/get_custom_domain.py +2 -2
  167. pulumi_azure_native/cdn/get_endpoint.py +2 -2
  168. pulumi_azure_native/cdn/get_origin.py +2 -2
  169. pulumi_azure_native/cdn/get_origin_group.py +2 -2
  170. pulumi_azure_native/cdn/get_policy.py +2 -2
  171. pulumi_azure_native/cdn/get_profile.py +2 -2
  172. pulumi_azure_native/cdn/get_profile_supported_optimization_types.py +2 -2
  173. pulumi_azure_native/cdn/get_route.py +2 -2
  174. pulumi_azure_native/cdn/get_rule.py +2 -2
  175. pulumi_azure_native/cdn/get_rule_set.py +2 -2
  176. pulumi_azure_native/cdn/get_secret.py +2 -2
  177. pulumi_azure_native/cdn/get_security_policy.py +2 -2
  178. pulumi_azure_native/cdn/origin.py +3 -3
  179. pulumi_azure_native/cdn/origin_group.py +3 -3
  180. pulumi_azure_native/cdn/policy.py +3 -3
  181. pulumi_azure_native/cdn/profile.py +3 -3
  182. pulumi_azure_native/cdn/route.py +3 -3
  183. pulumi_azure_native/cdn/rule.py +3 -3
  184. pulumi_azure_native/cdn/rule_set.py +3 -3
  185. pulumi_azure_native/cdn/secret.py +3 -3
  186. pulumi_azure_native/cdn/security_policy.py +3 -3
  187. pulumi_azure_native/cdn/v20200901/afd_endpoint.py +1 -1
  188. pulumi_azure_native/cdn/v20200901/afd_origin_group.py +1 -1
  189. pulumi_azure_native/cdn/v20200901/profile.py +1 -1
  190. pulumi_azure_native/cdn/v20200901/route.py +1 -1
  191. pulumi_azure_native/cdn/v20230501/afd_custom_domain.py +1 -1
  192. pulumi_azure_native/cdn/v20230501/afd_endpoint.py +1 -1
  193. pulumi_azure_native/cdn/v20230501/afd_origin.py +1 -1
  194. pulumi_azure_native/cdn/v20230501/afd_origin_group.py +1 -1
  195. pulumi_azure_native/cdn/v20230501/custom_domain.py +1 -1
  196. pulumi_azure_native/cdn/v20230501/endpoint.py +1 -1
  197. pulumi_azure_native/cdn/v20230501/origin.py +1 -1
  198. pulumi_azure_native/cdn/v20230501/origin_group.py +1 -1
  199. pulumi_azure_native/cdn/v20230501/policy.py +1 -1
  200. pulumi_azure_native/cdn/v20230501/profile.py +1 -1
  201. pulumi_azure_native/cdn/v20230501/route.py +1 -1
  202. pulumi_azure_native/cdn/v20230501/rule.py +1 -1
  203. pulumi_azure_native/cdn/v20230501/rule_set.py +1 -1
  204. pulumi_azure_native/cdn/v20230501/secret.py +1 -1
  205. pulumi_azure_native/cdn/v20230501/security_policy.py +1 -1
  206. pulumi_azure_native/cdn/v20230701preview/afd_custom_domain.py +1 -1
  207. pulumi_azure_native/cdn/v20230701preview/afd_endpoint.py +1 -1
  208. pulumi_azure_native/cdn/v20230701preview/afd_origin.py +1 -1
  209. pulumi_azure_native/cdn/v20230701preview/afd_origin_group.py +1 -1
  210. pulumi_azure_native/cdn/v20230701preview/custom_domain.py +1 -1
  211. pulumi_azure_native/cdn/v20230701preview/endpoint.py +1 -1
  212. pulumi_azure_native/cdn/v20230701preview/origin.py +1 -1
  213. pulumi_azure_native/cdn/v20230701preview/origin_group.py +1 -1
  214. pulumi_azure_native/cdn/v20230701preview/policy.py +1 -1
  215. pulumi_azure_native/cdn/v20230701preview/profile.py +1 -1
  216. pulumi_azure_native/cdn/v20230701preview/route.py +1 -1
  217. pulumi_azure_native/cdn/v20230701preview/rule.py +1 -1
  218. pulumi_azure_native/cdn/v20230701preview/rule_set.py +1 -1
  219. pulumi_azure_native/cdn/v20230701preview/secret.py +1 -1
  220. pulumi_azure_native/cdn/v20230701preview/security_policy.py +1 -1
  221. pulumi_azure_native/cdn/v20240201/__init__.py +41 -0
  222. pulumi_azure_native/cdn/v20240201/_enums.py +788 -0
  223. pulumi_azure_native/cdn/v20240201/_inputs.py +5780 -0
  224. pulumi_azure_native/cdn/v20240201/afd_custom_domain.py +379 -0
  225. pulumi_azure_native/cdn/v20240201/afd_endpoint.py +338 -0
  226. pulumi_azure_native/cdn/v20240201/afd_origin.py +537 -0
  227. pulumi_azure_native/cdn/v20240201/afd_origin_group.py +329 -0
  228. pulumi_azure_native/cdn/v20240201/custom_domain.py +296 -0
  229. pulumi_azure_native/cdn/v20240201/endpoint.py +762 -0
  230. pulumi_azure_native/cdn/v20240201/get_afd_custom_domain.py +250 -0
  231. pulumi_azure_native/cdn/v20240201/get_afd_endpoint.py +224 -0
  232. pulumi_azure_native/cdn/v20240201/get_afd_origin.py +294 -0
  233. pulumi_azure_native/cdn/v20240201/get_afd_origin_group.py +211 -0
  234. pulumi_azure_native/cdn/v20240201/get_custom_domain.py +219 -0
  235. pulumi_azure_native/cdn/v20240201/get_endpoint.py +409 -0
  236. pulumi_azure_native/cdn/v20240201/get_origin.py +310 -0
  237. pulumi_azure_native/cdn/v20240201/get_origin_group.py +206 -0
  238. pulumi_azure_native/cdn/v20240201/get_policy.py +271 -0
  239. pulumi_azure_native/cdn/v20240201/get_profile.py +261 -0
  240. pulumi_azure_native/cdn/v20240201/get_profile_supported_optimization_types.py +78 -0
  241. pulumi_azure_native/cdn/v20240201/get_route.py +307 -0
  242. pulumi_azure_native/cdn/v20240201/get_rule.py +216 -0
  243. pulumi_azure_native/cdn/v20240201/get_rule_set.py +159 -0
  244. pulumi_azure_native/cdn/v20240201/get_secret.py +172 -0
  245. pulumi_azure_native/cdn/v20240201/get_security_policy.py +172 -0
  246. pulumi_azure_native/cdn/v20240201/origin.py +556 -0
  247. pulumi_azure_native/cdn/v20240201/origin_group.py +345 -0
  248. pulumi_azure_native/cdn/v20240201/outputs.py +6889 -0
  249. pulumi_azure_native/cdn/v20240201/policy.py +436 -0
  250. pulumi_azure_native/cdn/v20240201/profile.py +391 -0
  251. pulumi_azure_native/cdn/v20240201/route.py +566 -0
  252. pulumi_azure_native/cdn/v20240201/rule.py +356 -0
  253. pulumi_azure_native/cdn/v20240201/rule_set.py +211 -0
  254. pulumi_azure_native/cdn/v20240201/secret.py +241 -0
  255. pulumi_azure_native/cdn/v20240201/security_policy.py +241 -0
  256. pulumi_azure_native/codesigning/__init__.py +22 -0
  257. pulumi_azure_native/codesigning/_enums.py +50 -0
  258. pulumi_azure_native/codesigning/_inputs.py +39 -0
  259. pulumi_azure_native/codesigning/certificate_profile.py +522 -0
  260. pulumi_azure_native/codesigning/code_signing_account.py +275 -0
  261. pulumi_azure_native/codesigning/get_certificate_profile.py +359 -0
  262. pulumi_azure_native/codesigning/get_code_signing_account.py +185 -0
  263. pulumi_azure_native/codesigning/outputs.py +149 -0
  264. pulumi_azure_native/codesigning/v20240205preview/__init__.py +14 -0
  265. pulumi_azure_native/codesigning/v20240205preview/_enums.py +50 -0
  266. pulumi_azure_native/codesigning/v20240205preview/_inputs.py +39 -0
  267. pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +520 -0
  268. pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +273 -0
  269. pulumi_azure_native/codesigning/v20240205preview/get_certificate_profile.py +357 -0
  270. pulumi_azure_native/codesigning/v20240205preview/get_code_signing_account.py +183 -0
  271. pulumi_azure_native/codesigning/v20240205preview/outputs.py +149 -0
  272. pulumi_azure_native/containerservice/__init__.py +3 -0
  273. pulumi_azure_native/containerservice/_enums.py +3 -5
  274. pulumi_azure_native/containerservice/_inputs.py +2 -6
  275. pulumi_azure_native/containerservice/fleet.py +3 -3
  276. pulumi_azure_native/containerservice/fleet_member.py +3 -3
  277. pulumi_azure_native/containerservice/fleet_update_strategy.py +3 -3
  278. pulumi_azure_native/containerservice/get_fleet.py +2 -2
  279. pulumi_azure_native/containerservice/get_fleet_member.py +2 -2
  280. pulumi_azure_native/containerservice/get_fleet_update_strategy.py +2 -2
  281. pulumi_azure_native/containerservice/get_update_run.py +2 -2
  282. pulumi_azure_native/containerservice/list_fleet_credentials.py +2 -2
  283. pulumi_azure_native/containerservice/outputs.py +2 -6
  284. pulumi_azure_native/containerservice/update_run.py +3 -3
  285. pulumi_azure_native/containerservice/v20220702preview/fleet.py +1 -1
  286. pulumi_azure_native/containerservice/v20220702preview/fleet_member.py +1 -1
  287. pulumi_azure_native/containerservice/v20230315preview/_enums.py +3 -5
  288. pulumi_azure_native/containerservice/v20230315preview/_inputs.py +2 -6
  289. pulumi_azure_native/containerservice/v20230315preview/fleet.py +1 -1
  290. pulumi_azure_native/containerservice/v20230315preview/fleet_member.py +1 -1
  291. pulumi_azure_native/containerservice/v20230315preview/outputs.py +2 -6
  292. pulumi_azure_native/containerservice/v20230315preview/update_run.py +1 -1
  293. pulumi_azure_native/containerservice/v20230615preview/_enums.py +3 -5
  294. pulumi_azure_native/containerservice/v20230615preview/_inputs.py +2 -6
  295. pulumi_azure_native/containerservice/v20230615preview/fleet.py +1 -1
  296. pulumi_azure_native/containerservice/v20230615preview/fleet_member.py +1 -1
  297. pulumi_azure_native/containerservice/v20230615preview/outputs.py +2 -6
  298. pulumi_azure_native/containerservice/v20230615preview/update_run.py +1 -1
  299. pulumi_azure_native/containerservice/v20230815preview/_enums.py +3 -5
  300. pulumi_azure_native/containerservice/v20230815preview/_inputs.py +2 -6
  301. pulumi_azure_native/containerservice/v20230815preview/fleet.py +1 -1
  302. pulumi_azure_native/containerservice/v20230815preview/fleet_member.py +1 -1
  303. pulumi_azure_native/containerservice/v20230815preview/fleet_update_strategy.py +1 -1
  304. pulumi_azure_native/containerservice/v20230815preview/get_update_run.py +1 -1
  305. pulumi_azure_native/containerservice/v20230815preview/outputs.py +2 -6
  306. pulumi_azure_native/containerservice/v20230815preview/update_run.py +5 -5
  307. pulumi_azure_native/containerservice/v20231015/_enums.py +3 -5
  308. pulumi_azure_native/containerservice/v20231015/_inputs.py +2 -6
  309. pulumi_azure_native/containerservice/v20231015/fleet.py +1 -1
  310. pulumi_azure_native/containerservice/v20231015/fleet_member.py +1 -1
  311. pulumi_azure_native/containerservice/v20231015/fleet_update_strategy.py +1 -1
  312. pulumi_azure_native/containerservice/v20231015/get_update_run.py +1 -1
  313. pulumi_azure_native/containerservice/v20231015/outputs.py +2 -6
  314. pulumi_azure_native/containerservice/v20231015/update_run.py +5 -5
  315. pulumi_azure_native/containerservice/v20240202preview/__init__.py +19 -0
  316. pulumi_azure_native/containerservice/v20240202preview/_enums.py +53 -0
  317. pulumi_azure_native/containerservice/v20240202preview/_inputs.py +426 -0
  318. pulumi_azure_native/containerservice/v20240202preview/fleet.py +302 -0
  319. pulumi_azure_native/containerservice/v20240202preview/fleet_member.py +264 -0
  320. pulumi_azure_native/containerservice/v20240202preview/fleet_update_strategy.py +236 -0
  321. pulumi_azure_native/containerservice/v20240202preview/get_fleet.py +196 -0
  322. pulumi_azure_native/containerservice/v20240202preview/get_fleet_member.py +175 -0
  323. pulumi_azure_native/containerservice/v20240202preview/get_fleet_update_strategy.py +162 -0
  324. pulumi_azure_native/containerservice/v20240202preview/get_update_run.py +214 -0
  325. pulumi_azure_native/containerservice/v20240202preview/list_fleet_credentials.py +79 -0
  326. pulumi_azure_native/containerservice/v20240202preview/outputs.py +1346 -0
  327. pulumi_azure_native/containerservice/v20240202preview/update_run.py +357 -0
  328. pulumi_azure_native/databasewatcher/_enums.py +0 -15
  329. pulumi_azure_native/databasewatcher/get_target.py +1 -14
  330. pulumi_azure_native/databasewatcher/target.py +0 -29
  331. pulumi_azure_native/databasewatcher/v20230901preview/_enums.py +0 -15
  332. pulumi_azure_native/databasewatcher/v20230901preview/get_target.py +1 -14
  333. pulumi_azure_native/databasewatcher/v20230901preview/target.py +0 -29
  334. pulumi_azure_native/datafactory/_inputs.py +235 -29
  335. pulumi_azure_native/datafactory/credential_operation.py +11 -10
  336. pulumi_azure_native/datafactory/get_credential_operation.py +2 -2
  337. pulumi_azure_native/datafactory/outputs.py +212 -39
  338. pulumi_azure_native/datafactory/v20180601/_inputs.py +235 -29
  339. pulumi_azure_native/datafactory/v20180601/credential_operation.py +11 -10
  340. pulumi_azure_native/datafactory/v20180601/get_credential_operation.py +2 -2
  341. pulumi_azure_native/datafactory/v20180601/outputs.py +212 -39
  342. pulumi_azure_native/dbformysql/__init__.py +3 -0
  343. pulumi_azure_native/dbformysql/get_get_private_dns_zone_suffix_execute.py +2 -2
  344. pulumi_azure_native/dbformysql/get_server.py +2 -2
  345. pulumi_azure_native/dbformysql/server.py +3 -3
  346. pulumi_azure_native/dbformysql/v20200701preview/server.py +1 -1
  347. pulumi_azure_native/dbformysql/v20200701privatepreview/server.py +1 -1
  348. pulumi_azure_native/dbformysql/v20220101/server.py +1 -1
  349. pulumi_azure_native/dbformysql/v20220930preview/server.py +1 -1
  350. pulumi_azure_native/dbformysql/v20230601preview/server.py +1 -1
  351. pulumi_azure_native/dbformysql/v20230630/server.py +1 -1
  352. pulumi_azure_native/dbformysql/v20231001preview/server.py +1 -1
  353. pulumi_azure_native/dbformysql/v20231201preview/server.py +1 -1
  354. pulumi_azure_native/dbformysql/v20231230/__init__.py +13 -0
  355. pulumi_azure_native/dbformysql/v20231230/_enums.py +92 -0
  356. pulumi_azure_native/dbformysql/v20231230/_inputs.py +582 -0
  357. pulumi_azure_native/dbformysql/v20231230/get_get_private_dns_zone_suffix_execute.py +64 -0
  358. pulumi_azure_native/dbformysql/v20231230/get_server.py +378 -0
  359. pulumi_azure_native/dbformysql/v20231230/outputs.py +1085 -0
  360. pulumi_azure_native/dbformysql/v20231230/server.py +730 -0
  361. pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
  362. pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
  363. pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
  364. pulumi_azure_native/dbforpostgresql/database.py +3 -3
  365. pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
  366. pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
  367. pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
  368. pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
  369. pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
  370. pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
  371. pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
  372. pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
  373. pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +4 -0
  374. pulumi_azure_native/dbforpostgresql/migration.py +3 -3
  375. pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
  376. pulumi_azure_native/dbforpostgresql/server.py +3 -3
  377. pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
  378. pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
  379. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
  380. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
  381. pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
  382. pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
  383. pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
  384. pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
  385. pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
  386. pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
  387. pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
  388. pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
  389. pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
  390. pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
  391. pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
  392. pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
  393. pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
  394. pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
  395. pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
  396. pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
  397. pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
  398. pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
  399. pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +2 -0
  400. pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
  401. pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
  402. pulumi_azure_native/dbforpostgresql/v20231201preview/__init__.py +26 -0
  403. pulumi_azure_native/dbforpostgresql/v20231201preview/_enums.py +318 -0
  404. pulumi_azure_native/dbforpostgresql/v20231201preview/_inputs.py +859 -0
  405. pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +282 -0
  406. pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +333 -0
  407. pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +243 -0
  408. pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +245 -0
  409. pulumi_azure_native/dbforpostgresql/v20231201preview/get_administrator.py +175 -0
  410. pulumi_azure_native/dbforpostgresql/v20231201preview/get_configuration.py +266 -0
  411. pulumi_azure_native/dbforpostgresql/v20231201preview/get_database.py +149 -0
  412. pulumi_azure_native/dbforpostgresql/v20231201preview/get_firewall_rule.py +149 -0
  413. pulumi_azure_native/dbforpostgresql/v20231201preview/get_migration.py +466 -0
  414. pulumi_azure_native/dbforpostgresql/v20231201preview/get_private_endpoint_connection.py +175 -0
  415. pulumi_azure_native/dbforpostgresql/v20231201preview/get_server.py +404 -0
  416. pulumi_azure_native/dbforpostgresql/v20231201preview/get_virtual_endpoint.py +162 -0
  417. pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +886 -0
  418. pulumi_azure_native/dbforpostgresql/v20231201preview/outputs.py +1902 -0
  419. pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +247 -0
  420. pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +773 -0
  421. pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +254 -0
  422. pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +5 -1
  423. pulumi_azure_native/desktopvirtualization/__init__.py +3 -0
  424. pulumi_azure_native/desktopvirtualization/app_attach_package.py +3 -3
  425. pulumi_azure_native/desktopvirtualization/application.py +3 -3
  426. pulumi_azure_native/desktopvirtualization/application_group.py +3 -3
  427. pulumi_azure_native/desktopvirtualization/get_app_attach_package.py +2 -2
  428. pulumi_azure_native/desktopvirtualization/get_application.py +2 -2
  429. pulumi_azure_native/desktopvirtualization/get_application_group.py +2 -2
  430. pulumi_azure_native/desktopvirtualization/get_host_pool.py +2 -2
  431. pulumi_azure_native/desktopvirtualization/get_msix_package.py +2 -2
  432. pulumi_azure_native/desktopvirtualization/get_private_endpoint_connection_by_host_pool.py +2 -2
  433. pulumi_azure_native/desktopvirtualization/get_private_endpoint_connection_by_workspace.py +2 -2
  434. pulumi_azure_native/desktopvirtualization/get_scaling_plan.py +2 -2
  435. pulumi_azure_native/desktopvirtualization/get_scaling_plan_personal_schedule.py +2 -2
  436. pulumi_azure_native/desktopvirtualization/get_scaling_plan_pooled_schedule.py +2 -2
  437. pulumi_azure_native/desktopvirtualization/get_workspace.py +2 -2
  438. pulumi_azure_native/desktopvirtualization/host_pool.py +3 -3
  439. pulumi_azure_native/desktopvirtualization/msix_package.py +3 -3
  440. pulumi_azure_native/desktopvirtualization/private_endpoint_connection_by_host_pool.py +3 -3
  441. pulumi_azure_native/desktopvirtualization/private_endpoint_connection_by_workspace.py +3 -3
  442. pulumi_azure_native/desktopvirtualization/scaling_plan.py +3 -3
  443. pulumi_azure_native/desktopvirtualization/scaling_plan_personal_schedule.py +3 -3
  444. pulumi_azure_native/desktopvirtualization/scaling_plan_pooled_schedule.py +3 -3
  445. pulumi_azure_native/desktopvirtualization/v20210201preview/scaling_plan.py +1 -1
  446. pulumi_azure_native/desktopvirtualization/v20220210preview/scaling_plan.py +1 -1
  447. pulumi_azure_native/desktopvirtualization/v20220401preview/application_group.py +1 -1
  448. pulumi_azure_native/desktopvirtualization/v20220401preview/host_pool.py +1 -1
  449. pulumi_azure_native/desktopvirtualization/v20220909/application.py +1 -1
  450. pulumi_azure_native/desktopvirtualization/v20220909/application_group.py +1 -1
  451. pulumi_azure_native/desktopvirtualization/v20220909/host_pool.py +1 -1
  452. pulumi_azure_native/desktopvirtualization/v20220909/msix_package.py +1 -1
  453. pulumi_azure_native/desktopvirtualization/v20220909/scaling_plan.py +1 -1
  454. pulumi_azure_native/desktopvirtualization/v20220909/scaling_plan_pooled_schedule.py +1 -1
  455. pulumi_azure_native/desktopvirtualization/v20220909/workspace.py +1 -1
  456. pulumi_azure_native/desktopvirtualization/v20221014preview/application.py +1 -1
  457. pulumi_azure_native/desktopvirtualization/v20221014preview/application_group.py +1 -1
  458. pulumi_azure_native/desktopvirtualization/v20221014preview/host_pool.py +1 -1
  459. pulumi_azure_native/desktopvirtualization/v20221014preview/msix_package.py +1 -1
  460. pulumi_azure_native/desktopvirtualization/v20221014preview/private_endpoint_connection_by_host_pool.py +1 -1
  461. pulumi_azure_native/desktopvirtualization/v20221014preview/private_endpoint_connection_by_workspace.py +1 -1
  462. pulumi_azure_native/desktopvirtualization/v20221014preview/scaling_plan.py +1 -1
  463. pulumi_azure_native/desktopvirtualization/v20221014preview/scaling_plan_pooled_schedule.py +1 -1
  464. pulumi_azure_native/desktopvirtualization/v20221014preview/workspace.py +1 -1
  465. pulumi_azure_native/desktopvirtualization/v20230707preview/application.py +1 -1
  466. pulumi_azure_native/desktopvirtualization/v20230707preview/application_group.py +1 -1
  467. pulumi_azure_native/desktopvirtualization/v20230707preview/host_pool.py +1 -1
  468. pulumi_azure_native/desktopvirtualization/v20230707preview/msix_package.py +1 -1
  469. pulumi_azure_native/desktopvirtualization/v20230707preview/private_endpoint_connection_by_host_pool.py +1 -1
  470. pulumi_azure_native/desktopvirtualization/v20230707preview/private_endpoint_connection_by_workspace.py +1 -1
  471. pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan.py +1 -1
  472. pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan_personal_schedule.py +1 -1
  473. pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan_pooled_schedule.py +1 -1
  474. pulumi_azure_native/desktopvirtualization/v20230707preview/workspace.py +1 -1
  475. pulumi_azure_native/desktopvirtualization/v20230905/application.py +1 -1
  476. pulumi_azure_native/desktopvirtualization/v20230905/application_group.py +1 -1
  477. pulumi_azure_native/desktopvirtualization/v20230905/host_pool.py +1 -1
  478. pulumi_azure_native/desktopvirtualization/v20230905/msix_package.py +1 -1
  479. pulumi_azure_native/desktopvirtualization/v20230905/private_endpoint_connection_by_host_pool.py +1 -1
  480. pulumi_azure_native/desktopvirtualization/v20230905/private_endpoint_connection_by_workspace.py +1 -1
  481. pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan.py +1 -1
  482. pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan_personal_schedule.py +1 -1
  483. pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan_pooled_schedule.py +1 -1
  484. pulumi_azure_native/desktopvirtualization/v20230905/workspace.py +1 -1
  485. pulumi_azure_native/desktopvirtualization/v20231004preview/app_attach_package.py +1 -1
  486. pulumi_azure_native/desktopvirtualization/v20231004preview/application.py +1 -1
  487. pulumi_azure_native/desktopvirtualization/v20231004preview/application_group.py +1 -1
  488. pulumi_azure_native/desktopvirtualization/v20231004preview/host_pool.py +1 -1
  489. pulumi_azure_native/desktopvirtualization/v20231004preview/msix_package.py +1 -1
  490. pulumi_azure_native/desktopvirtualization/v20231004preview/private_endpoint_connection_by_host_pool.py +1 -1
  491. pulumi_azure_native/desktopvirtualization/v20231004preview/private_endpoint_connection_by_workspace.py +1 -1
  492. pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan.py +1 -1
  493. pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan_personal_schedule.py +1 -1
  494. pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan_pooled_schedule.py +1 -1
  495. pulumi_azure_native/desktopvirtualization/v20231004preview/workspace.py +1 -1
  496. pulumi_azure_native/desktopvirtualization/v20231101preview/app_attach_package.py +1 -1
  497. pulumi_azure_native/desktopvirtualization/v20231101preview/application.py +1 -1
  498. pulumi_azure_native/desktopvirtualization/v20231101preview/application_group.py +1 -1
  499. pulumi_azure_native/desktopvirtualization/v20231101preview/host_pool.py +1 -1
  500. pulumi_azure_native/desktopvirtualization/v20231101preview/msix_package.py +1 -1
  501. pulumi_azure_native/desktopvirtualization/v20231101preview/private_endpoint_connection_by_host_pool.py +1 -1
  502. pulumi_azure_native/desktopvirtualization/v20231101preview/private_endpoint_connection_by_workspace.py +1 -1
  503. pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan.py +1 -1
  504. pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan_personal_schedule.py +1 -1
  505. pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan_pooled_schedule.py +1 -1
  506. pulumi_azure_native/desktopvirtualization/v20231101preview/workspace.py +1 -1
  507. pulumi_azure_native/desktopvirtualization/v20240116preview/app_attach_package.py +1 -1
  508. pulumi_azure_native/desktopvirtualization/v20240116preview/application.py +1 -1
  509. pulumi_azure_native/desktopvirtualization/v20240116preview/application_group.py +1 -1
  510. pulumi_azure_native/desktopvirtualization/v20240116preview/host_pool.py +1 -1
  511. pulumi_azure_native/desktopvirtualization/v20240116preview/msix_package.py +1 -1
  512. pulumi_azure_native/desktopvirtualization/v20240116preview/private_endpoint_connection_by_host_pool.py +1 -1
  513. pulumi_azure_native/desktopvirtualization/v20240116preview/private_endpoint_connection_by_workspace.py +1 -1
  514. pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan.py +1 -1
  515. pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan_personal_schedule.py +1 -1
  516. pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan_pooled_schedule.py +1 -1
  517. pulumi_azure_native/desktopvirtualization/v20240116preview/workspace.py +1 -1
  518. pulumi_azure_native/desktopvirtualization/v20240306preview/__init__.py +32 -0
  519. pulumi_azure_native/desktopvirtualization/v20240306preview/_enums.py +315 -0
  520. pulumi_azure_native/desktopvirtualization/v20240306preview/_inputs.py +1380 -0
  521. pulumi_azure_native/desktopvirtualization/v20240306preview/app_attach_package.py +254 -0
  522. pulumi_azure_native/desktopvirtualization/v20240306preview/application.py +536 -0
  523. pulumi_azure_native/desktopvirtualization/v20240306preview/application_group.py +532 -0
  524. pulumi_azure_native/desktopvirtualization/v20240306preview/get_app_attach_package.py +157 -0
  525. pulumi_azure_native/desktopvirtualization/v20240306preview/get_application.py +305 -0
  526. pulumi_azure_native/desktopvirtualization/v20240306preview/get_application_group.py +317 -0
  527. pulumi_azure_native/desktopvirtualization/v20240306preview/get_host_pool.py +590 -0
  528. pulumi_azure_native/desktopvirtualization/v20240306preview/get_msix_package.py +266 -0
  529. pulumi_azure_native/desktopvirtualization/v20240306preview/get_private_endpoint_connection_by_host_pool.py +162 -0
  530. pulumi_azure_native/desktopvirtualization/v20240306preview/get_private_endpoint_connection_by_workspace.py +162 -0
  531. pulumi_azure_native/desktopvirtualization/v20240306preview/get_scaling_plan.py +317 -0
  532. pulumi_azure_native/desktopvirtualization/v20240306preview/get_scaling_plan_personal_schedule.py +461 -0
  533. pulumi_azure_native/desktopvirtualization/v20240306preview/get_scaling_plan_pooled_schedule.py +344 -0
  534. pulumi_azure_native/desktopvirtualization/v20240306preview/get_workspace.py +304 -0
  535. pulumi_azure_native/desktopvirtualization/v20240306preview/host_pool.py +1104 -0
  536. pulumi_azure_native/desktopvirtualization/v20240306preview/msix_package.py +505 -0
  537. pulumi_azure_native/desktopvirtualization/v20240306preview/outputs.py +1667 -0
  538. pulumi_azure_native/desktopvirtualization/v20240306preview/private_endpoint_connection_by_host_pool.py +237 -0
  539. pulumi_azure_native/desktopvirtualization/v20240306preview/private_endpoint_connection_by_workspace.py +237 -0
  540. pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan.py +573 -0
  541. pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan_personal_schedule.py +957 -0
  542. pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan_pooled_schedule.py +680 -0
  543. pulumi_azure_native/desktopvirtualization/v20240306preview/workspace.py +501 -0
  544. pulumi_azure_native/desktopvirtualization/workspace.py +3 -3
  545. pulumi_azure_native/hdinsight/__init__.py +3 -0
  546. pulumi_azure_native/hdinsight/cluster.py +2 -2
  547. pulumi_azure_native/hdinsight/cluster_pool.py +3 -3
  548. pulumi_azure_native/hdinsight/get_cluster.py +2 -2
  549. pulumi_azure_native/hdinsight/get_cluster_pool.py +2 -2
  550. pulumi_azure_native/hdinsight/v20230601preview/cluster.py +1 -1
  551. pulumi_azure_native/hdinsight/v20230601preview/cluster_pool.py +1 -1
  552. pulumi_azure_native/hdinsight/v20231101preview/cluster.py +1 -1
  553. pulumi_azure_native/hdinsight/v20231101preview/cluster_pool.py +1 -1
  554. pulumi_azure_native/hdinsight/v20240501/__init__.py +14 -0
  555. pulumi_azure_native/hdinsight/v20240501/_enums.py +163 -0
  556. pulumi_azure_native/hdinsight/v20240501/_inputs.py +3380 -0
  557. pulumi_azure_native/hdinsight/v20240501/cluster.py +365 -0
  558. pulumi_azure_native/hdinsight/v20240501/cluster_pool.py +420 -0
  559. pulumi_azure_native/hdinsight/v20240501/get_cluster.py +227 -0
  560. pulumi_azure_native/hdinsight/v20240501/get_cluster_pool.py +274 -0
  561. pulumi_azure_native/hdinsight/v20240501/outputs.py +4190 -0
  562. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  563. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  564. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  565. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  566. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  567. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  568. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  569. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  570. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  571. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  572. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  573. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  574. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  575. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  576. pulumi_azure_native/healthcareapis/service.py +3 -3
  577. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  578. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  579. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  580. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  581. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  582. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  583. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  584. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  585. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  586. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  587. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  588. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  589. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  590. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  591. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  592. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  593. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +1 -1
  594. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +1 -1
  595. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +1 -1
  596. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +1 -1
  597. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +1 -1
  598. pulumi_azure_native/healthcareapis/v20231101/service.py +1 -1
  599. pulumi_azure_native/healthcareapis/v20231101/workspace.py +1 -1
  600. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +1 -1
  601. pulumi_azure_native/healthcareapis/v20231201/dicom_service.py +1 -1
  602. pulumi_azure_native/healthcareapis/v20231201/fhir_service.py +1 -1
  603. pulumi_azure_native/healthcareapis/v20231201/iot_connector.py +1 -1
  604. pulumi_azure_native/healthcareapis/v20231201/iot_connector_fhir_destination.py +1 -1
  605. pulumi_azure_native/healthcareapis/v20231201/private_endpoint_connection.py +1 -1
  606. pulumi_azure_native/healthcareapis/v20231201/service.py +1 -1
  607. pulumi_azure_native/healthcareapis/v20231201/workspace.py +1 -1
  608. pulumi_azure_native/healthcareapis/v20231201/workspace_private_endpoint_connection.py +1 -1
  609. pulumi_azure_native/healthcareapis/v20240301/dicom_service.py +1 -1
  610. pulumi_azure_native/healthcareapis/v20240301/fhir_service.py +1 -1
  611. pulumi_azure_native/healthcareapis/v20240301/iot_connector.py +1 -1
  612. pulumi_azure_native/healthcareapis/v20240301/iot_connector_fhir_destination.py +1 -1
  613. pulumi_azure_native/healthcareapis/v20240301/private_endpoint_connection.py +1 -1
  614. pulumi_azure_native/healthcareapis/v20240301/service.py +1 -1
  615. pulumi_azure_native/healthcareapis/v20240301/workspace.py +1 -1
  616. pulumi_azure_native/healthcareapis/v20240301/workspace_private_endpoint_connection.py +1 -1
  617. pulumi_azure_native/healthcareapis/v20240331/__init__.py +26 -0
  618. pulumi_azure_native/healthcareapis/v20240331/_enums.py +93 -0
  619. pulumi_azure_native/healthcareapis/v20240331/_inputs.py +1432 -0
  620. pulumi_azure_native/healthcareapis/v20240331/dicom_service.py +460 -0
  621. pulumi_azure_native/healthcareapis/v20240331/fhir_service.py +585 -0
  622. pulumi_azure_native/healthcareapis/v20240331/get_dicom_service.py +305 -0
  623. pulumi_azure_native/healthcareapis/v20240331/get_fhir_service.py +344 -0
  624. pulumi_azure_native/healthcareapis/v20240331/get_iot_connector.py +214 -0
  625. pulumi_azure_native/healthcareapis/v20240331/get_iot_connector_fhir_destination.py +193 -0
  626. pulumi_azure_native/healthcareapis/v20240331/get_private_endpoint_connection.py +162 -0
  627. pulumi_azure_native/healthcareapis/v20240331/get_service.py +196 -0
  628. pulumi_azure_native/healthcareapis/v20240331/get_workspace.py +170 -0
  629. pulumi_azure_native/healthcareapis/v20240331/get_workspace_private_endpoint_connection.py +162 -0
  630. pulumi_azure_native/healthcareapis/v20240331/iot_connector.py +352 -0
  631. pulumi_azure_native/healthcareapis/v20240331/iot_connector_fhir_destination.py +337 -0
  632. pulumi_azure_native/healthcareapis/v20240331/outputs.py +2123 -0
  633. pulumi_azure_native/healthcareapis/v20240331/private_endpoint_connection.py +237 -0
  634. pulumi_azure_native/healthcareapis/v20240331/service.py +322 -0
  635. pulumi_azure_native/healthcareapis/v20240331/workspace.py +242 -0
  636. pulumi_azure_native/healthcareapis/v20240331/workspace_private_endpoint_connection.py +237 -0
  637. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  638. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  639. pulumi_azure_native/network/__init__.py +3 -0
  640. pulumi_azure_native/network/get_policy.py +2 -2
  641. pulumi_azure_native/network/policy.py +3 -3
  642. pulumi_azure_native/network/v20210601/policy.py +1 -1
  643. pulumi_azure_native/network/v20220501/policy.py +1 -1
  644. pulumi_azure_native/network/v20240201/__init__.py +12 -0
  645. pulumi_azure_native/network/v20240201/_enums.py +218 -0
  646. pulumi_azure_native/network/v20240201/_inputs.py +860 -0
  647. pulumi_azure_native/network/v20240201/get_policy.py +258 -0
  648. pulumi_azure_native/network/v20240201/outputs.py +989 -0
  649. pulumi_azure_native/network/v20240201/policy.py +387 -0
  650. pulumi_azure_native/notificationhubs/v20231001preview/_inputs.py +10 -640
  651. pulumi_azure_native/notificationhubs/v20231001preview/get_namespace.py +247 -11
  652. pulumi_azure_native/notificationhubs/v20231001preview/get_namespace_authorization_rule.py +115 -9
  653. pulumi_azure_native/notificationhubs/v20231001preview/get_namespace_pns_credentials.py +119 -15
  654. pulumi_azure_native/notificationhubs/v20231001preview/get_notification_hub.py +152 -12
  655. pulumi_azure_native/notificationhubs/v20231001preview/get_notification_hub_authorization_rule.py +115 -9
  656. pulumi_azure_native/notificationhubs/v20231001preview/get_notification_hub_pns_credentials.py +119 -15
  657. pulumi_azure_native/notificationhubs/v20231001preview/namespace.py +372 -19
  658. pulumi_azure_native/notificationhubs/v20231001preview/namespace_authorization_rule.py +146 -20
  659. pulumi_azure_native/notificationhubs/v20231001preview/notification_hub.py +319 -22
  660. pulumi_azure_native/notificationhubs/v20231001preview/notification_hub_authorization_rule.py +146 -20
  661. pulumi_azure_native/notificationhubs/v20231001preview/outputs.py +38 -739
  662. pulumi_azure_native/recoveryservices/get_replication_fabric.py +2 -2
  663. pulumi_azure_native/recoveryservices/get_replication_migration_item.py +2 -2
  664. pulumi_azure_native/recoveryservices/get_replication_network_mapping.py +2 -2
  665. pulumi_azure_native/recoveryservices/get_replication_policy.py +2 -2
  666. pulumi_azure_native/recoveryservices/get_replication_protected_item.py +2 -2
  667. pulumi_azure_native/recoveryservices/get_replication_protection_container_mapping.py +2 -2
  668. pulumi_azure_native/recoveryservices/get_replication_recovery_plan.py +2 -2
  669. pulumi_azure_native/recoveryservices/get_replication_recovery_services_provider.py +2 -2
  670. pulumi_azure_native/recoveryservices/get_replication_storage_classification_mapping.py +2 -2
  671. pulumi_azure_native/recoveryservices/get_replicationv_center.py +2 -2
  672. pulumi_azure_native/recoveryservices/replication_fabric.py +3 -3
  673. pulumi_azure_native/recoveryservices/replication_migration_item.py +3 -3
  674. pulumi_azure_native/recoveryservices/replication_network_mapping.py +3 -3
  675. pulumi_azure_native/recoveryservices/replication_policy.py +3 -3
  676. pulumi_azure_native/recoveryservices/replication_protected_item.py +3 -3
  677. pulumi_azure_native/recoveryservices/replication_protection_container_mapping.py +3 -3
  678. pulumi_azure_native/recoveryservices/replication_recovery_plan.py +3 -3
  679. pulumi_azure_native/recoveryservices/replication_recovery_services_provider.py +3 -3
  680. pulumi_azure_native/recoveryservices/replication_storage_classification_mapping.py +3 -3
  681. pulumi_azure_native/recoveryservices/replicationv_center.py +3 -3
  682. pulumi_azure_native/recoveryservices/v20210301/replication_network_mapping.py +1 -1
  683. pulumi_azure_native/recoveryservices/v20210301/replicationv_center.py +1 -1
  684. pulumi_azure_native/recoveryservices/v20230401/replication_fabric.py +1 -1
  685. pulumi_azure_native/recoveryservices/v20230401/replication_migration_item.py +1 -1
  686. pulumi_azure_native/recoveryservices/v20230401/replication_network_mapping.py +1 -1
  687. pulumi_azure_native/recoveryservices/v20230401/replication_policy.py +1 -1
  688. pulumi_azure_native/recoveryservices/v20230401/replication_protected_item.py +1 -1
  689. pulumi_azure_native/recoveryservices/v20230401/replication_protection_container_mapping.py +1 -1
  690. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_plan.py +1 -1
  691. pulumi_azure_native/recoveryservices/v20230401/replication_recovery_services_provider.py +1 -1
  692. pulumi_azure_native/recoveryservices/v20230401/replication_storage_classification_mapping.py +1 -1
  693. pulumi_azure_native/recoveryservices/v20230401/replicationv_center.py +1 -1
  694. pulumi_azure_native/recoveryservices/v20230601/replication_fabric.py +1 -1
  695. pulumi_azure_native/recoveryservices/v20230601/replication_migration_item.py +1 -1
  696. pulumi_azure_native/recoveryservices/v20230601/replication_network_mapping.py +1 -1
  697. pulumi_azure_native/recoveryservices/v20230601/replication_policy.py +1 -1
  698. pulumi_azure_native/recoveryservices/v20230601/replication_protected_item.py +1 -1
  699. pulumi_azure_native/recoveryservices/v20230601/replication_protection_container_mapping.py +1 -1
  700. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_plan.py +1 -1
  701. pulumi_azure_native/recoveryservices/v20230601/replication_recovery_services_provider.py +1 -1
  702. pulumi_azure_native/recoveryservices/v20230601/replication_storage_classification_mapping.py +1 -1
  703. pulumi_azure_native/recoveryservices/v20230601/replicationv_center.py +1 -1
  704. pulumi_azure_native/recoveryservices/v20230801/replication_fabric.py +1 -1
  705. pulumi_azure_native/recoveryservices/v20230801/replication_migration_item.py +1 -1
  706. pulumi_azure_native/recoveryservices/v20230801/replication_network_mapping.py +1 -1
  707. pulumi_azure_native/recoveryservices/v20230801/replication_policy.py +1 -1
  708. pulumi_azure_native/recoveryservices/v20230801/replication_protected_item.py +1 -1
  709. pulumi_azure_native/recoveryservices/v20230801/replication_protection_container_mapping.py +1 -1
  710. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_plan.py +1 -1
  711. pulumi_azure_native/recoveryservices/v20230801/replication_recovery_services_provider.py +1 -1
  712. pulumi_azure_native/recoveryservices/v20230801/replication_storage_classification_mapping.py +1 -1
  713. pulumi_azure_native/recoveryservices/v20230801/replicationv_center.py +1 -1
  714. pulumi_azure_native/recoveryservices/v20240101/__init__.py +20 -0
  715. pulumi_azure_native/recoveryservices/v20240101/_enums.py +161 -0
  716. pulumi_azure_native/recoveryservices/v20240101/_inputs.py +12735 -6644
  717. pulumi_azure_native/recoveryservices/v20240101/get_replication_fabric.py +141 -0
  718. pulumi_azure_native/recoveryservices/v20240101/get_replication_migration_item.py +146 -0
  719. pulumi_azure_native/recoveryservices/v20240101/get_replication_network_mapping.py +146 -0
  720. pulumi_azure_native/recoveryservices/v20240101/get_replication_policy.py +136 -0
  721. pulumi_azure_native/recoveryservices/v20240101/get_replication_protected_item.py +146 -0
  722. pulumi_azure_native/recoveryservices/v20240101/get_replication_protection_container_mapping.py +146 -0
  723. pulumi_azure_native/recoveryservices/v20240101/get_replication_recovery_plan.py +136 -0
  724. pulumi_azure_native/recoveryservices/v20240101/get_replication_recovery_services_provider.py +141 -0
  725. pulumi_azure_native/recoveryservices/v20240101/get_replication_storage_classification_mapping.py +146 -0
  726. pulumi_azure_native/recoveryservices/v20240101/get_replicationv_center.py +141 -0
  727. pulumi_azure_native/recoveryservices/v20240101/outputs.py +29051 -8081
  728. pulumi_azure_native/recoveryservices/v20240101/replication_fabric.py +215 -0
  729. pulumi_azure_native/recoveryservices/v20240101/replication_migration_item.py +259 -0
  730. pulumi_azure_native/recoveryservices/v20240101/replication_network_mapping.py +258 -0
  731. pulumi_azure_native/recoveryservices/v20240101/replication_policy.py +216 -0
  732. pulumi_azure_native/recoveryservices/v20240101/replication_protected_item.py +258 -0
  733. pulumi_azure_native/recoveryservices/v20240101/replication_protection_container_mapping.py +258 -0
  734. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_plan.py +217 -0
  735. pulumi_azure_native/recoveryservices/v20240101/replication_recovery_services_provider.py +237 -0
  736. pulumi_azure_native/recoveryservices/v20240101/replication_storage_classification_mapping.py +257 -0
  737. pulumi_azure_native/recoveryservices/v20240101/replicationv_center.py +236 -0
  738. pulumi_azure_native/resourcehealth/__init__.py +3 -0
  739. pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_subscription_id_and_event_id.py +2 -2
  740. pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_tenant_id_and_event_id.py +2 -2
  741. pulumi_azure_native/resourcehealth/v20240201/__init__.py +10 -0
  742. pulumi_azure_native/resourcehealth/v20240201/list_security_advisory_impacted_resource_by_subscription_id_and_event_id.py +92 -0
  743. pulumi_azure_native/resourcehealth/v20240201/list_security_advisory_impacted_resource_by_tenant_id_and_event_id.py +92 -0
  744. pulumi_azure_native/resourcehealth/v20240201/outputs.py +234 -0
  745. pulumi_azure_native/security/__init__.py +3 -0
  746. pulumi_azure_native/security/automation.py +5 -1
  747. pulumi_azure_native/security/get_automation.py +4 -0
  748. pulumi_azure_native/security/get_security_contact.py +2 -2
  749. pulumi_azure_native/security/security_contact.py +3 -3
  750. pulumi_azure_native/security/v20170801preview/security_contact.py +1 -1
  751. pulumi_azure_native/security/v20190101preview/automation.py +1 -1
  752. pulumi_azure_native/security/v20200101preview/security_contact.py +1 -1
  753. pulumi_azure_native/security/v20231201preview/__init__.py +14 -0
  754. pulumi_azure_native/security/v20231201preview/_enums.py +181 -0
  755. pulumi_azure_native/security/v20231201preview/_inputs.py +490 -0
  756. pulumi_azure_native/security/v20231201preview/automation.py +398 -0
  757. pulumi_azure_native/security/v20231201preview/get_automation.py +222 -0
  758. pulumi_azure_native/security/v20231201preview/get_security_contact.py +165 -0
  759. pulumi_azure_native/security/v20231201preview/outputs.py +594 -0
  760. pulumi_azure_native/security/v20231201preview/security_contact.py +280 -0
  761. pulumi_azure_native/securityinsights/__init__.py +3 -0
  762. pulumi_azure_native/securityinsights/aad_data_connector.py +1 -1
  763. pulumi_azure_native/securityinsights/aatp_data_connector.py +1 -1
  764. pulumi_azure_native/securityinsights/action.py +3 -3
  765. pulumi_azure_native/securityinsights/anomaly_security_ml_analytics_settings.py +1 -1
  766. pulumi_azure_native/securityinsights/asc_data_connector.py +1 -1
  767. pulumi_azure_native/securityinsights/automation_rule.py +3 -3
  768. pulumi_azure_native/securityinsights/aws_cloud_trail_data_connector.py +1 -1
  769. pulumi_azure_native/securityinsights/bookmark.py +3 -3
  770. pulumi_azure_native/securityinsights/content_package.py +3 -3
  771. pulumi_azure_native/securityinsights/content_template.py +3 -3
  772. pulumi_azure_native/securityinsights/fusion_alert_rule.py +1 -1
  773. pulumi_azure_native/securityinsights/get_action.py +2 -2
  774. pulumi_azure_native/securityinsights/get_automation_rule.py +2 -2
  775. pulumi_azure_native/securityinsights/get_bookmark.py +2 -2
  776. pulumi_azure_native/securityinsights/get_content_package.py +2 -2
  777. pulumi_azure_native/securityinsights/get_content_template.py +2 -2
  778. pulumi_azure_native/securityinsights/get_incident.py +2 -2
  779. pulumi_azure_native/securityinsights/get_incident_comment.py +2 -2
  780. pulumi_azure_native/securityinsights/get_incident_relation.py +2 -2
  781. pulumi_azure_native/securityinsights/get_incident_task.py +2 -2
  782. pulumi_azure_native/securityinsights/get_metadata.py +2 -2
  783. pulumi_azure_native/securityinsights/get_sentinel_onboarding_state.py +2 -2
  784. pulumi_azure_native/securityinsights/get_threat_intelligence_indicator.py +2 -2
  785. pulumi_azure_native/securityinsights/get_watchlist.py +2 -2
  786. pulumi_azure_native/securityinsights/get_watchlist_item.py +2 -2
  787. pulumi_azure_native/securityinsights/incident.py +3 -3
  788. pulumi_azure_native/securityinsights/incident_comment.py +3 -3
  789. pulumi_azure_native/securityinsights/incident_relation.py +3 -3
  790. pulumi_azure_native/securityinsights/incident_task.py +3 -3
  791. pulumi_azure_native/securityinsights/list_source_control_repositories.py +2 -2
  792. pulumi_azure_native/securityinsights/mcas_data_connector.py +1 -1
  793. pulumi_azure_native/securityinsights/mdatp_data_connector.py +1 -1
  794. pulumi_azure_native/securityinsights/metadata.py +3 -3
  795. pulumi_azure_native/securityinsights/microsoft_security_incident_creation_alert_rule.py +1 -1
  796. pulumi_azure_native/securityinsights/office_data_connector.py +1 -1
  797. pulumi_azure_native/securityinsights/scheduled_alert_rule.py +1 -1
  798. pulumi_azure_native/securityinsights/sentinel_onboarding_state.py +3 -3
  799. pulumi_azure_native/securityinsights/threat_intelligence_indicator.py +3 -3
  800. pulumi_azure_native/securityinsights/ti_data_connector.py +1 -1
  801. pulumi_azure_native/securityinsights/v20190101preview/automation_rule.py +1 -1
  802. pulumi_azure_native/securityinsights/v20190101preview/bookmark.py +1 -1
  803. pulumi_azure_native/securityinsights/v20190101preview/watchlist.py +1 -1
  804. pulumi_azure_native/securityinsights/v20210301preview/aad_data_connector.py +1 -1
  805. pulumi_azure_native/securityinsights/v20210301preview/aatp_data_connector.py +1 -1
  806. pulumi_azure_native/securityinsights/v20210301preview/action.py +1 -1
  807. pulumi_azure_native/securityinsights/v20210301preview/asc_data_connector.py +1 -1
  808. pulumi_azure_native/securityinsights/v20210301preview/aws_cloud_trail_data_connector.py +1 -1
  809. pulumi_azure_native/securityinsights/v20210301preview/codeless_ui_data_connector.py +1 -1
  810. pulumi_azure_native/securityinsights/v20210301preview/dynamics365_data_connector.py +1 -1
  811. pulumi_azure_native/securityinsights/v20210301preview/fusion_alert_rule.py +1 -1
  812. pulumi_azure_native/securityinsights/v20210301preview/incident.py +1 -1
  813. pulumi_azure_native/securityinsights/v20210301preview/incident_comment.py +1 -1
  814. pulumi_azure_native/securityinsights/v20210301preview/incident_relation.py +1 -1
  815. pulumi_azure_native/securityinsights/v20210301preview/mcas_data_connector.py +1 -1
  816. pulumi_azure_native/securityinsights/v20210301preview/mdatp_data_connector.py +1 -1
  817. pulumi_azure_native/securityinsights/v20210301preview/metadata.py +1 -1
  818. pulumi_azure_native/securityinsights/v20210301preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  819. pulumi_azure_native/securityinsights/v20210301preview/ml_behavior_analytics_alert_rule.py +1 -1
  820. pulumi_azure_native/securityinsights/v20210301preview/msti_data_connector.py +1 -1
  821. pulumi_azure_native/securityinsights/v20210301preview/mtp_data_connector.py +1 -1
  822. pulumi_azure_native/securityinsights/v20210301preview/office_atp_data_connector.py +1 -1
  823. pulumi_azure_native/securityinsights/v20210301preview/office_data_connector.py +1 -1
  824. pulumi_azure_native/securityinsights/v20210301preview/scheduled_alert_rule.py +1 -1
  825. pulumi_azure_native/securityinsights/v20210301preview/sentinel_onboarding_state.py +1 -1
  826. pulumi_azure_native/securityinsights/v20210301preview/threat_intelligence_alert_rule.py +1 -1
  827. pulumi_azure_native/securityinsights/v20210301preview/ti_data_connector.py +1 -1
  828. pulumi_azure_native/securityinsights/v20210301preview/ti_taxii_data_connector.py +1 -1
  829. pulumi_azure_native/securityinsights/v20210301preview/watchlist.py +1 -1
  830. pulumi_azure_native/securityinsights/v20210401/threat_intelligence_indicator.py +1 -1
  831. pulumi_azure_native/securityinsights/v20210401/watchlist.py +1 -1
  832. pulumi_azure_native/securityinsights/v20210401/watchlist_item.py +1 -1
  833. pulumi_azure_native/securityinsights/v20210901preview/threat_intelligence_indicator.py +1 -1
  834. pulumi_azure_native/securityinsights/v20211001preview/fusion_alert_rule.py +1 -1
  835. pulumi_azure_native/securityinsights/v20211001preview/nrt_alert_rule.py +1 -1
  836. pulumi_azure_native/securityinsights/v20211001preview/watchlist.py +1 -1
  837. pulumi_azure_native/securityinsights/v20220101preview/watchlist.py +1 -1
  838. pulumi_azure_native/securityinsights/v20230201/aad_data_connector.py +1 -1
  839. pulumi_azure_native/securityinsights/v20230201/aatp_data_connector.py +1 -1
  840. pulumi_azure_native/securityinsights/v20230201/action.py +1 -1
  841. pulumi_azure_native/securityinsights/v20230201/automation_rule.py +1 -1
  842. pulumi_azure_native/securityinsights/v20230201/aws_cloud_trail_data_connector.py +1 -1
  843. pulumi_azure_native/securityinsights/v20230201/bookmark.py +1 -1
  844. pulumi_azure_native/securityinsights/v20230201/incident.py +1 -1
  845. pulumi_azure_native/securityinsights/v20230201/incident_comment.py +1 -1
  846. pulumi_azure_native/securityinsights/v20230201/incident_relation.py +1 -1
  847. pulumi_azure_native/securityinsights/v20230201/mcas_data_connector.py +1 -1
  848. pulumi_azure_native/securityinsights/v20230201/mdatp_data_connector.py +1 -1
  849. pulumi_azure_native/securityinsights/v20230201/metadata.py +1 -1
  850. pulumi_azure_native/securityinsights/v20230201/office_data_connector.py +1 -1
  851. pulumi_azure_native/securityinsights/v20230201/sentinel_onboarding_state.py +1 -1
  852. pulumi_azure_native/securityinsights/v20230201/threat_intelligence_indicator.py +1 -1
  853. pulumi_azure_native/securityinsights/v20230201/ti_data_connector.py +1 -1
  854. pulumi_azure_native/securityinsights/v20230201/watchlist.py +1 -1
  855. pulumi_azure_native/securityinsights/v20230201/watchlist_item.py +1 -1
  856. pulumi_azure_native/securityinsights/v20230201preview/incident.py +1 -1
  857. pulumi_azure_native/securityinsights/v20230201preview/metadata.py +1 -1
  858. pulumi_azure_native/securityinsights/v20230301preview/incident.py +1 -1
  859. pulumi_azure_native/securityinsights/v20230601preview/aad_data_connector.py +1 -1
  860. pulumi_azure_native/securityinsights/v20230601preview/aatp_data_connector.py +1 -1
  861. pulumi_azure_native/securityinsights/v20230601preview/action.py +1 -1
  862. pulumi_azure_native/securityinsights/v20230601preview/anomaly_security_ml_analytics_settings.py +1 -1
  863. pulumi_azure_native/securityinsights/v20230601preview/asc_data_connector.py +1 -1
  864. pulumi_azure_native/securityinsights/v20230601preview/automation_rule.py +1 -1
  865. pulumi_azure_native/securityinsights/v20230601preview/aws_cloud_trail_data_connector.py +1 -1
  866. pulumi_azure_native/securityinsights/v20230601preview/aws_s3_data_connector.py +1 -1
  867. pulumi_azure_native/securityinsights/v20230601preview/bookmark.py +1 -1
  868. pulumi_azure_native/securityinsights/v20230601preview/codeless_api_polling_data_connector.py +1 -1
  869. pulumi_azure_native/securityinsights/v20230601preview/codeless_ui_data_connector.py +1 -1
  870. pulumi_azure_native/securityinsights/v20230601preview/content_package.py +1 -1
  871. pulumi_azure_native/securityinsights/v20230601preview/content_template.py +1 -1
  872. pulumi_azure_native/securityinsights/v20230601preview/dynamics365_data_connector.py +1 -1
  873. pulumi_azure_native/securityinsights/v20230601preview/fusion_alert_rule.py +1 -1
  874. pulumi_azure_native/securityinsights/v20230601preview/gcp_data_connector.py +1 -1
  875. pulumi_azure_native/securityinsights/v20230601preview/incident.py +1 -1
  876. pulumi_azure_native/securityinsights/v20230601preview/incident_comment.py +1 -1
  877. pulumi_azure_native/securityinsights/v20230601preview/incident_relation.py +1 -1
  878. pulumi_azure_native/securityinsights/v20230601preview/incident_task.py +1 -1
  879. pulumi_azure_native/securityinsights/v20230601preview/io_t_data_connector.py +1 -1
  880. pulumi_azure_native/securityinsights/v20230601preview/mcas_data_connector.py +1 -1
  881. pulumi_azure_native/securityinsights/v20230601preview/mdatp_data_connector.py +1 -1
  882. pulumi_azure_native/securityinsights/v20230601preview/metadata.py +1 -1
  883. pulumi_azure_native/securityinsights/v20230601preview/microsoft_purview_information_protection_data_connector.py +1 -1
  884. pulumi_azure_native/securityinsights/v20230601preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  885. pulumi_azure_native/securityinsights/v20230601preview/ml_behavior_analytics_alert_rule.py +1 -1
  886. pulumi_azure_native/securityinsights/v20230601preview/msti_data_connector.py +1 -1
  887. pulumi_azure_native/securityinsights/v20230601preview/mtp_data_connector.py +1 -1
  888. pulumi_azure_native/securityinsights/v20230601preview/nrt_alert_rule.py +1 -1
  889. pulumi_azure_native/securityinsights/v20230601preview/office365_project_data_connector.py +1 -1
  890. pulumi_azure_native/securityinsights/v20230601preview/office_atp_data_connector.py +1 -1
  891. pulumi_azure_native/securityinsights/v20230601preview/office_data_connector.py +1 -1
  892. pulumi_azure_native/securityinsights/v20230601preview/office_irm_data_connector.py +1 -1
  893. pulumi_azure_native/securityinsights/v20230601preview/office_power_bi_data_connector.py +1 -1
  894. pulumi_azure_native/securityinsights/v20230601preview/scheduled_alert_rule.py +1 -1
  895. pulumi_azure_native/securityinsights/v20230601preview/sentinel_onboarding_state.py +1 -1
  896. pulumi_azure_native/securityinsights/v20230601preview/threat_intelligence_alert_rule.py +1 -1
  897. pulumi_azure_native/securityinsights/v20230601preview/threat_intelligence_indicator.py +1 -1
  898. pulumi_azure_native/securityinsights/v20230601preview/ti_data_connector.py +1 -1
  899. pulumi_azure_native/securityinsights/v20230601preview/ti_taxii_data_connector.py +1 -1
  900. pulumi_azure_native/securityinsights/v20230601preview/watchlist.py +1 -1
  901. pulumi_azure_native/securityinsights/v20230601preview/watchlist_item.py +1 -1
  902. pulumi_azure_native/securityinsights/v20230701preview/aad_data_connector.py +1 -1
  903. pulumi_azure_native/securityinsights/v20230701preview/aatp_data_connector.py +1 -1
  904. pulumi_azure_native/securityinsights/v20230701preview/action.py +1 -1
  905. pulumi_azure_native/securityinsights/v20230701preview/anomaly_security_ml_analytics_settings.py +1 -1
  906. pulumi_azure_native/securityinsights/v20230701preview/asc_data_connector.py +1 -1
  907. pulumi_azure_native/securityinsights/v20230701preview/automation_rule.py +1 -1
  908. pulumi_azure_native/securityinsights/v20230701preview/aws_cloud_trail_data_connector.py +1 -1
  909. pulumi_azure_native/securityinsights/v20230701preview/aws_s3_data_connector.py +1 -1
  910. pulumi_azure_native/securityinsights/v20230701preview/bookmark.py +1 -1
  911. pulumi_azure_native/securityinsights/v20230701preview/codeless_api_polling_data_connector.py +1 -1
  912. pulumi_azure_native/securityinsights/v20230701preview/codeless_ui_data_connector.py +1 -1
  913. pulumi_azure_native/securityinsights/v20230701preview/content_package.py +1 -1
  914. pulumi_azure_native/securityinsights/v20230701preview/content_template.py +1 -1
  915. pulumi_azure_native/securityinsights/v20230701preview/dynamics365_data_connector.py +1 -1
  916. pulumi_azure_native/securityinsights/v20230701preview/fusion_alert_rule.py +1 -1
  917. pulumi_azure_native/securityinsights/v20230701preview/gcp_data_connector.py +1 -1
  918. pulumi_azure_native/securityinsights/v20230701preview/incident.py +1 -1
  919. pulumi_azure_native/securityinsights/v20230701preview/incident_comment.py +1 -1
  920. pulumi_azure_native/securityinsights/v20230701preview/incident_relation.py +1 -1
  921. pulumi_azure_native/securityinsights/v20230701preview/incident_task.py +1 -1
  922. pulumi_azure_native/securityinsights/v20230701preview/io_t_data_connector.py +1 -1
  923. pulumi_azure_native/securityinsights/v20230701preview/mcas_data_connector.py +1 -1
  924. pulumi_azure_native/securityinsights/v20230701preview/mdatp_data_connector.py +1 -1
  925. pulumi_azure_native/securityinsights/v20230701preview/metadata.py +1 -1
  926. pulumi_azure_native/securityinsights/v20230701preview/microsoft_purview_information_protection_data_connector.py +1 -1
  927. pulumi_azure_native/securityinsights/v20230701preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  928. pulumi_azure_native/securityinsights/v20230701preview/ml_behavior_analytics_alert_rule.py +1 -1
  929. pulumi_azure_native/securityinsights/v20230701preview/msti_data_connector.py +1 -1
  930. pulumi_azure_native/securityinsights/v20230701preview/mtp_data_connector.py +1 -1
  931. pulumi_azure_native/securityinsights/v20230701preview/nrt_alert_rule.py +1 -1
  932. pulumi_azure_native/securityinsights/v20230701preview/office365_project_data_connector.py +1 -1
  933. pulumi_azure_native/securityinsights/v20230701preview/office_atp_data_connector.py +1 -1
  934. pulumi_azure_native/securityinsights/v20230701preview/office_data_connector.py +1 -1
  935. pulumi_azure_native/securityinsights/v20230701preview/office_irm_data_connector.py +1 -1
  936. pulumi_azure_native/securityinsights/v20230701preview/office_power_bi_data_connector.py +1 -1
  937. pulumi_azure_native/securityinsights/v20230701preview/scheduled_alert_rule.py +1 -1
  938. pulumi_azure_native/securityinsights/v20230701preview/sentinel_onboarding_state.py +1 -1
  939. pulumi_azure_native/securityinsights/v20230701preview/threat_intelligence_alert_rule.py +1 -1
  940. pulumi_azure_native/securityinsights/v20230701preview/threat_intelligence_indicator.py +1 -1
  941. pulumi_azure_native/securityinsights/v20230701preview/ti_data_connector.py +1 -1
  942. pulumi_azure_native/securityinsights/v20230701preview/ti_taxii_data_connector.py +1 -1
  943. pulumi_azure_native/securityinsights/v20230701preview/watchlist.py +1 -1
  944. pulumi_azure_native/securityinsights/v20230701preview/watchlist_item.py +1 -1
  945. pulumi_azure_native/securityinsights/v20230801preview/aad_data_connector.py +1 -1
  946. pulumi_azure_native/securityinsights/v20230801preview/aatp_data_connector.py +1 -1
  947. pulumi_azure_native/securityinsights/v20230801preview/action.py +1 -1
  948. pulumi_azure_native/securityinsights/v20230801preview/anomaly_security_ml_analytics_settings.py +1 -1
  949. pulumi_azure_native/securityinsights/v20230801preview/asc_data_connector.py +1 -1
  950. pulumi_azure_native/securityinsights/v20230801preview/automation_rule.py +1 -1
  951. pulumi_azure_native/securityinsights/v20230801preview/aws_cloud_trail_data_connector.py +1 -1
  952. pulumi_azure_native/securityinsights/v20230801preview/aws_s3_data_connector.py +1 -1
  953. pulumi_azure_native/securityinsights/v20230801preview/bookmark.py +1 -1
  954. pulumi_azure_native/securityinsights/v20230801preview/codeless_api_polling_data_connector.py +1 -1
  955. pulumi_azure_native/securityinsights/v20230801preview/codeless_ui_data_connector.py +1 -1
  956. pulumi_azure_native/securityinsights/v20230801preview/content_package.py +1 -1
  957. pulumi_azure_native/securityinsights/v20230801preview/content_template.py +1 -1
  958. pulumi_azure_native/securityinsights/v20230801preview/dynamics365_data_connector.py +1 -1
  959. pulumi_azure_native/securityinsights/v20230801preview/fusion_alert_rule.py +1 -1
  960. pulumi_azure_native/securityinsights/v20230801preview/gcp_data_connector.py +1 -1
  961. pulumi_azure_native/securityinsights/v20230801preview/incident.py +1 -1
  962. pulumi_azure_native/securityinsights/v20230801preview/incident_comment.py +1 -1
  963. pulumi_azure_native/securityinsights/v20230801preview/incident_relation.py +1 -1
  964. pulumi_azure_native/securityinsights/v20230801preview/incident_task.py +1 -1
  965. pulumi_azure_native/securityinsights/v20230801preview/io_t_data_connector.py +1 -1
  966. pulumi_azure_native/securityinsights/v20230801preview/mcas_data_connector.py +1 -1
  967. pulumi_azure_native/securityinsights/v20230801preview/mdatp_data_connector.py +1 -1
  968. pulumi_azure_native/securityinsights/v20230801preview/metadata.py +1 -1
  969. pulumi_azure_native/securityinsights/v20230801preview/microsoft_purview_information_protection_data_connector.py +1 -1
  970. pulumi_azure_native/securityinsights/v20230801preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  971. pulumi_azure_native/securityinsights/v20230801preview/ml_behavior_analytics_alert_rule.py +1 -1
  972. pulumi_azure_native/securityinsights/v20230801preview/msti_data_connector.py +1 -1
  973. pulumi_azure_native/securityinsights/v20230801preview/mtp_data_connector.py +1 -1
  974. pulumi_azure_native/securityinsights/v20230801preview/nrt_alert_rule.py +1 -1
  975. pulumi_azure_native/securityinsights/v20230801preview/office365_project_data_connector.py +1 -1
  976. pulumi_azure_native/securityinsights/v20230801preview/office_atp_data_connector.py +1 -1
  977. pulumi_azure_native/securityinsights/v20230801preview/office_data_connector.py +1 -1
  978. pulumi_azure_native/securityinsights/v20230801preview/office_irm_data_connector.py +1 -1
  979. pulumi_azure_native/securityinsights/v20230801preview/office_power_bi_data_connector.py +1 -1
  980. pulumi_azure_native/securityinsights/v20230801preview/scheduled_alert_rule.py +1 -1
  981. pulumi_azure_native/securityinsights/v20230801preview/sentinel_onboarding_state.py +1 -1
  982. pulumi_azure_native/securityinsights/v20230801preview/threat_intelligence_alert_rule.py +1 -1
  983. pulumi_azure_native/securityinsights/v20230801preview/threat_intelligence_indicator.py +1 -1
  984. pulumi_azure_native/securityinsights/v20230801preview/ti_data_connector.py +1 -1
  985. pulumi_azure_native/securityinsights/v20230801preview/ti_taxii_data_connector.py +1 -1
  986. pulumi_azure_native/securityinsights/v20230801preview/watchlist.py +1 -1
  987. pulumi_azure_native/securityinsights/v20230801preview/watchlist_item.py +1 -1
  988. pulumi_azure_native/securityinsights/v20230901preview/aad_data_connector.py +1 -1
  989. pulumi_azure_native/securityinsights/v20230901preview/aatp_data_connector.py +1 -1
  990. pulumi_azure_native/securityinsights/v20230901preview/action.py +1 -1
  991. pulumi_azure_native/securityinsights/v20230901preview/anomaly_security_ml_analytics_settings.py +1 -1
  992. pulumi_azure_native/securityinsights/v20230901preview/asc_data_connector.py +1 -1
  993. pulumi_azure_native/securityinsights/v20230901preview/automation_rule.py +1 -1
  994. pulumi_azure_native/securityinsights/v20230901preview/aws_cloud_trail_data_connector.py +1 -1
  995. pulumi_azure_native/securityinsights/v20230901preview/aws_s3_data_connector.py +1 -1
  996. pulumi_azure_native/securityinsights/v20230901preview/bookmark.py +1 -1
  997. pulumi_azure_native/securityinsights/v20230901preview/codeless_api_polling_data_connector.py +1 -1
  998. pulumi_azure_native/securityinsights/v20230901preview/codeless_ui_data_connector.py +1 -1
  999. pulumi_azure_native/securityinsights/v20230901preview/content_package.py +1 -1
  1000. pulumi_azure_native/securityinsights/v20230901preview/content_template.py +1 -1
  1001. pulumi_azure_native/securityinsights/v20230901preview/dynamics365_data_connector.py +1 -1
  1002. pulumi_azure_native/securityinsights/v20230901preview/fusion_alert_rule.py +1 -1
  1003. pulumi_azure_native/securityinsights/v20230901preview/gcp_data_connector.py +1 -1
  1004. pulumi_azure_native/securityinsights/v20230901preview/incident.py +1 -1
  1005. pulumi_azure_native/securityinsights/v20230901preview/incident_comment.py +1 -1
  1006. pulumi_azure_native/securityinsights/v20230901preview/incident_relation.py +1 -1
  1007. pulumi_azure_native/securityinsights/v20230901preview/incident_task.py +1 -1
  1008. pulumi_azure_native/securityinsights/v20230901preview/io_t_data_connector.py +1 -1
  1009. pulumi_azure_native/securityinsights/v20230901preview/mcas_data_connector.py +1 -1
  1010. pulumi_azure_native/securityinsights/v20230901preview/mdatp_data_connector.py +1 -1
  1011. pulumi_azure_native/securityinsights/v20230901preview/metadata.py +1 -1
  1012. pulumi_azure_native/securityinsights/v20230901preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1013. pulumi_azure_native/securityinsights/v20230901preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1014. pulumi_azure_native/securityinsights/v20230901preview/ml_behavior_analytics_alert_rule.py +1 -1
  1015. pulumi_azure_native/securityinsights/v20230901preview/msti_data_connector.py +1 -1
  1016. pulumi_azure_native/securityinsights/v20230901preview/mtp_data_connector.py +1 -1
  1017. pulumi_azure_native/securityinsights/v20230901preview/nrt_alert_rule.py +1 -1
  1018. pulumi_azure_native/securityinsights/v20230901preview/office365_project_data_connector.py +1 -1
  1019. pulumi_azure_native/securityinsights/v20230901preview/office_atp_data_connector.py +1 -1
  1020. pulumi_azure_native/securityinsights/v20230901preview/office_data_connector.py +1 -1
  1021. pulumi_azure_native/securityinsights/v20230901preview/office_irm_data_connector.py +1 -1
  1022. pulumi_azure_native/securityinsights/v20230901preview/office_power_bi_data_connector.py +1 -1
  1023. pulumi_azure_native/securityinsights/v20230901preview/scheduled_alert_rule.py +1 -1
  1024. pulumi_azure_native/securityinsights/v20230901preview/sentinel_onboarding_state.py +1 -1
  1025. pulumi_azure_native/securityinsights/v20230901preview/threat_intelligence_alert_rule.py +1 -1
  1026. pulumi_azure_native/securityinsights/v20230901preview/threat_intelligence_indicator.py +1 -1
  1027. pulumi_azure_native/securityinsights/v20230901preview/ti_data_connector.py +1 -1
  1028. pulumi_azure_native/securityinsights/v20230901preview/ti_taxii_data_connector.py +1 -1
  1029. pulumi_azure_native/securityinsights/v20230901preview/watchlist.py +1 -1
  1030. pulumi_azure_native/securityinsights/v20230901preview/watchlist_item.py +1 -1
  1031. pulumi_azure_native/securityinsights/v20231001preview/aad_data_connector.py +1 -1
  1032. pulumi_azure_native/securityinsights/v20231001preview/aatp_data_connector.py +1 -1
  1033. pulumi_azure_native/securityinsights/v20231001preview/action.py +1 -1
  1034. pulumi_azure_native/securityinsights/v20231001preview/anomaly_security_ml_analytics_settings.py +1 -1
  1035. pulumi_azure_native/securityinsights/v20231001preview/asc_data_connector.py +1 -1
  1036. pulumi_azure_native/securityinsights/v20231001preview/automation_rule.py +1 -1
  1037. pulumi_azure_native/securityinsights/v20231001preview/aws_cloud_trail_data_connector.py +1 -1
  1038. pulumi_azure_native/securityinsights/v20231001preview/aws_s3_data_connector.py +1 -1
  1039. pulumi_azure_native/securityinsights/v20231001preview/bookmark.py +1 -1
  1040. pulumi_azure_native/securityinsights/v20231001preview/codeless_api_polling_data_connector.py +1 -1
  1041. pulumi_azure_native/securityinsights/v20231001preview/codeless_ui_data_connector.py +1 -1
  1042. pulumi_azure_native/securityinsights/v20231001preview/content_package.py +1 -1
  1043. pulumi_azure_native/securityinsights/v20231001preview/content_template.py +1 -1
  1044. pulumi_azure_native/securityinsights/v20231001preview/dynamics365_data_connector.py +1 -1
  1045. pulumi_azure_native/securityinsights/v20231001preview/fusion_alert_rule.py +1 -1
  1046. pulumi_azure_native/securityinsights/v20231001preview/gcp_data_connector.py +1 -1
  1047. pulumi_azure_native/securityinsights/v20231001preview/incident.py +1 -1
  1048. pulumi_azure_native/securityinsights/v20231001preview/incident_comment.py +1 -1
  1049. pulumi_azure_native/securityinsights/v20231001preview/incident_relation.py +1 -1
  1050. pulumi_azure_native/securityinsights/v20231001preview/incident_task.py +1 -1
  1051. pulumi_azure_native/securityinsights/v20231001preview/io_t_data_connector.py +1 -1
  1052. pulumi_azure_native/securityinsights/v20231001preview/mcas_data_connector.py +1 -1
  1053. pulumi_azure_native/securityinsights/v20231001preview/mdatp_data_connector.py +1 -1
  1054. pulumi_azure_native/securityinsights/v20231001preview/metadata.py +1 -1
  1055. pulumi_azure_native/securityinsights/v20231001preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1056. pulumi_azure_native/securityinsights/v20231001preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1057. pulumi_azure_native/securityinsights/v20231001preview/ml_behavior_analytics_alert_rule.py +1 -1
  1058. pulumi_azure_native/securityinsights/v20231001preview/msti_data_connector.py +1 -1
  1059. pulumi_azure_native/securityinsights/v20231001preview/mtp_data_connector.py +1 -1
  1060. pulumi_azure_native/securityinsights/v20231001preview/nrt_alert_rule.py +1 -1
  1061. pulumi_azure_native/securityinsights/v20231001preview/office365_project_data_connector.py +1 -1
  1062. pulumi_azure_native/securityinsights/v20231001preview/office_atp_data_connector.py +1 -1
  1063. pulumi_azure_native/securityinsights/v20231001preview/office_data_connector.py +1 -1
  1064. pulumi_azure_native/securityinsights/v20231001preview/office_irm_data_connector.py +1 -1
  1065. pulumi_azure_native/securityinsights/v20231001preview/office_power_bi_data_connector.py +1 -1
  1066. pulumi_azure_native/securityinsights/v20231001preview/scheduled_alert_rule.py +1 -1
  1067. pulumi_azure_native/securityinsights/v20231001preview/sentinel_onboarding_state.py +1 -1
  1068. pulumi_azure_native/securityinsights/v20231001preview/threat_intelligence_alert_rule.py +1 -1
  1069. pulumi_azure_native/securityinsights/v20231001preview/threat_intelligence_indicator.py +1 -1
  1070. pulumi_azure_native/securityinsights/v20231001preview/ti_data_connector.py +1 -1
  1071. pulumi_azure_native/securityinsights/v20231001preview/ti_taxii_data_connector.py +1 -1
  1072. pulumi_azure_native/securityinsights/v20231001preview/watchlist.py +1 -1
  1073. pulumi_azure_native/securityinsights/v20231001preview/watchlist_item.py +1 -1
  1074. pulumi_azure_native/securityinsights/v20231101/aad_data_connector.py +1 -1
  1075. pulumi_azure_native/securityinsights/v20231101/aatp_data_connector.py +1 -1
  1076. pulumi_azure_native/securityinsights/v20231101/action.py +1 -1
  1077. pulumi_azure_native/securityinsights/v20231101/anomaly_security_ml_analytics_settings.py +1 -1
  1078. pulumi_azure_native/securityinsights/v20231101/asc_data_connector.py +1 -1
  1079. pulumi_azure_native/securityinsights/v20231101/automation_rule.py +1 -1
  1080. pulumi_azure_native/securityinsights/v20231101/aws_cloud_trail_data_connector.py +1 -1
  1081. pulumi_azure_native/securityinsights/v20231101/bookmark.py +1 -1
  1082. pulumi_azure_native/securityinsights/v20231101/content_package.py +1 -1
  1083. pulumi_azure_native/securityinsights/v20231101/content_template.py +1 -1
  1084. pulumi_azure_native/securityinsights/v20231101/fusion_alert_rule.py +1 -1
  1085. pulumi_azure_native/securityinsights/v20231101/incident.py +1 -1
  1086. pulumi_azure_native/securityinsights/v20231101/incident_comment.py +1 -1
  1087. pulumi_azure_native/securityinsights/v20231101/incident_relation.py +1 -1
  1088. pulumi_azure_native/securityinsights/v20231101/mcas_data_connector.py +1 -1
  1089. pulumi_azure_native/securityinsights/v20231101/mdatp_data_connector.py +1 -1
  1090. pulumi_azure_native/securityinsights/v20231101/metadata.py +1 -1
  1091. pulumi_azure_native/securityinsights/v20231101/microsoft_security_incident_creation_alert_rule.py +1 -1
  1092. pulumi_azure_native/securityinsights/v20231101/office_data_connector.py +1 -1
  1093. pulumi_azure_native/securityinsights/v20231101/scheduled_alert_rule.py +1 -1
  1094. pulumi_azure_native/securityinsights/v20231101/sentinel_onboarding_state.py +1 -1
  1095. pulumi_azure_native/securityinsights/v20231101/threat_intelligence_indicator.py +1 -1
  1096. pulumi_azure_native/securityinsights/v20231101/ti_data_connector.py +1 -1
  1097. pulumi_azure_native/securityinsights/v20231101/watchlist.py +1 -1
  1098. pulumi_azure_native/securityinsights/v20231101/watchlist_item.py +1 -1
  1099. pulumi_azure_native/securityinsights/v20231201preview/aad_data_connector.py +1 -1
  1100. pulumi_azure_native/securityinsights/v20231201preview/aatp_data_connector.py +1 -1
  1101. pulumi_azure_native/securityinsights/v20231201preview/action.py +1 -1
  1102. pulumi_azure_native/securityinsights/v20231201preview/anomaly_security_ml_analytics_settings.py +1 -1
  1103. pulumi_azure_native/securityinsights/v20231201preview/asc_data_connector.py +1 -1
  1104. pulumi_azure_native/securityinsights/v20231201preview/automation_rule.py +1 -1
  1105. pulumi_azure_native/securityinsights/v20231201preview/aws_cloud_trail_data_connector.py +1 -1
  1106. pulumi_azure_native/securityinsights/v20231201preview/aws_s3_data_connector.py +1 -1
  1107. pulumi_azure_native/securityinsights/v20231201preview/bookmark.py +1 -1
  1108. pulumi_azure_native/securityinsights/v20231201preview/codeless_api_polling_data_connector.py +1 -1
  1109. pulumi_azure_native/securityinsights/v20231201preview/codeless_ui_data_connector.py +1 -1
  1110. pulumi_azure_native/securityinsights/v20231201preview/content_package.py +1 -1
  1111. pulumi_azure_native/securityinsights/v20231201preview/content_template.py +1 -1
  1112. pulumi_azure_native/securityinsights/v20231201preview/dynamics365_data_connector.py +1 -1
  1113. pulumi_azure_native/securityinsights/v20231201preview/fusion_alert_rule.py +1 -1
  1114. pulumi_azure_native/securityinsights/v20231201preview/gcp_data_connector.py +1 -1
  1115. pulumi_azure_native/securityinsights/v20231201preview/incident.py +1 -1
  1116. pulumi_azure_native/securityinsights/v20231201preview/incident_comment.py +1 -1
  1117. pulumi_azure_native/securityinsights/v20231201preview/incident_relation.py +1 -1
  1118. pulumi_azure_native/securityinsights/v20231201preview/incident_task.py +1 -1
  1119. pulumi_azure_native/securityinsights/v20231201preview/io_t_data_connector.py +1 -1
  1120. pulumi_azure_native/securityinsights/v20231201preview/mcas_data_connector.py +1 -1
  1121. pulumi_azure_native/securityinsights/v20231201preview/mdatp_data_connector.py +1 -1
  1122. pulumi_azure_native/securityinsights/v20231201preview/metadata.py +1 -1
  1123. pulumi_azure_native/securityinsights/v20231201preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1124. pulumi_azure_native/securityinsights/v20231201preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1125. pulumi_azure_native/securityinsights/v20231201preview/ml_behavior_analytics_alert_rule.py +1 -1
  1126. pulumi_azure_native/securityinsights/v20231201preview/msti_data_connector.py +1 -1
  1127. pulumi_azure_native/securityinsights/v20231201preview/mtp_data_connector.py +1 -1
  1128. pulumi_azure_native/securityinsights/v20231201preview/nrt_alert_rule.py +1 -1
  1129. pulumi_azure_native/securityinsights/v20231201preview/office365_project_data_connector.py +1 -1
  1130. pulumi_azure_native/securityinsights/v20231201preview/office_atp_data_connector.py +1 -1
  1131. pulumi_azure_native/securityinsights/v20231201preview/office_data_connector.py +1 -1
  1132. pulumi_azure_native/securityinsights/v20231201preview/office_irm_data_connector.py +1 -1
  1133. pulumi_azure_native/securityinsights/v20231201preview/office_power_bi_data_connector.py +1 -1
  1134. pulumi_azure_native/securityinsights/v20231201preview/scheduled_alert_rule.py +1 -1
  1135. pulumi_azure_native/securityinsights/v20231201preview/sentinel_onboarding_state.py +1 -1
  1136. pulumi_azure_native/securityinsights/v20231201preview/threat_intelligence_alert_rule.py +1 -1
  1137. pulumi_azure_native/securityinsights/v20231201preview/threat_intelligence_indicator.py +1 -1
  1138. pulumi_azure_native/securityinsights/v20231201preview/ti_data_connector.py +1 -1
  1139. pulumi_azure_native/securityinsights/v20231201preview/ti_taxii_data_connector.py +1 -1
  1140. pulumi_azure_native/securityinsights/v20231201preview/watchlist.py +1 -1
  1141. pulumi_azure_native/securityinsights/v20231201preview/watchlist_item.py +1 -1
  1142. pulumi_azure_native/securityinsights/v20240101preview/aad_data_connector.py +1 -1
  1143. pulumi_azure_native/securityinsights/v20240101preview/aatp_data_connector.py +1 -1
  1144. pulumi_azure_native/securityinsights/v20240101preview/action.py +1 -1
  1145. pulumi_azure_native/securityinsights/v20240101preview/anomaly_security_ml_analytics_settings.py +1 -1
  1146. pulumi_azure_native/securityinsights/v20240101preview/asc_data_connector.py +1 -1
  1147. pulumi_azure_native/securityinsights/v20240101preview/automation_rule.py +1 -1
  1148. pulumi_azure_native/securityinsights/v20240101preview/aws_cloud_trail_data_connector.py +1 -1
  1149. pulumi_azure_native/securityinsights/v20240101preview/aws_s3_data_connector.py +1 -1
  1150. pulumi_azure_native/securityinsights/v20240101preview/bookmark.py +1 -1
  1151. pulumi_azure_native/securityinsights/v20240101preview/codeless_api_polling_data_connector.py +1 -1
  1152. pulumi_azure_native/securityinsights/v20240101preview/codeless_ui_data_connector.py +1 -1
  1153. pulumi_azure_native/securityinsights/v20240101preview/content_package.py +1 -1
  1154. pulumi_azure_native/securityinsights/v20240101preview/content_template.py +1 -1
  1155. pulumi_azure_native/securityinsights/v20240101preview/dynamics365_data_connector.py +1 -1
  1156. pulumi_azure_native/securityinsights/v20240101preview/fusion_alert_rule.py +1 -1
  1157. pulumi_azure_native/securityinsights/v20240101preview/gcp_data_connector.py +1 -1
  1158. pulumi_azure_native/securityinsights/v20240101preview/incident.py +1 -1
  1159. pulumi_azure_native/securityinsights/v20240101preview/incident_comment.py +1 -1
  1160. pulumi_azure_native/securityinsights/v20240101preview/incident_relation.py +1 -1
  1161. pulumi_azure_native/securityinsights/v20240101preview/incident_task.py +1 -1
  1162. pulumi_azure_native/securityinsights/v20240101preview/io_t_data_connector.py +1 -1
  1163. pulumi_azure_native/securityinsights/v20240101preview/mcas_data_connector.py +1 -1
  1164. pulumi_azure_native/securityinsights/v20240101preview/mdatp_data_connector.py +1 -1
  1165. pulumi_azure_native/securityinsights/v20240101preview/metadata.py +1 -1
  1166. pulumi_azure_native/securityinsights/v20240101preview/microsoft_purview_information_protection_data_connector.py +1 -1
  1167. pulumi_azure_native/securityinsights/v20240101preview/microsoft_security_incident_creation_alert_rule.py +1 -1
  1168. pulumi_azure_native/securityinsights/v20240101preview/ml_behavior_analytics_alert_rule.py +1 -1
  1169. pulumi_azure_native/securityinsights/v20240101preview/msti_data_connector.py +1 -1
  1170. pulumi_azure_native/securityinsights/v20240101preview/mtp_data_connector.py +1 -1
  1171. pulumi_azure_native/securityinsights/v20240101preview/nrt_alert_rule.py +1 -1
  1172. pulumi_azure_native/securityinsights/v20240101preview/office365_project_data_connector.py +1 -1
  1173. pulumi_azure_native/securityinsights/v20240101preview/office_atp_data_connector.py +1 -1
  1174. pulumi_azure_native/securityinsights/v20240101preview/office_data_connector.py +1 -1
  1175. pulumi_azure_native/securityinsights/v20240101preview/office_irm_data_connector.py +1 -1
  1176. pulumi_azure_native/securityinsights/v20240101preview/office_power_bi_data_connector.py +1 -1
  1177. pulumi_azure_native/securityinsights/v20240101preview/rest_api_poller_data_connector.py +1 -1
  1178. pulumi_azure_native/securityinsights/v20240101preview/scheduled_alert_rule.py +1 -1
  1179. pulumi_azure_native/securityinsights/v20240101preview/sentinel_onboarding_state.py +1 -1
  1180. pulumi_azure_native/securityinsights/v20240101preview/threat_intelligence_alert_rule.py +1 -1
  1181. pulumi_azure_native/securityinsights/v20240101preview/threat_intelligence_indicator.py +1 -1
  1182. pulumi_azure_native/securityinsights/v20240101preview/ti_data_connector.py +1 -1
  1183. pulumi_azure_native/securityinsights/v20240101preview/ti_taxii_data_connector.py +1 -1
  1184. pulumi_azure_native/securityinsights/v20240101preview/watchlist.py +1 -1
  1185. pulumi_azure_native/securityinsights/v20240101preview/watchlist_item.py +1 -1
  1186. pulumi_azure_native/securityinsights/v20240301/__init__.py +63 -0
  1187. pulumi_azure_native/securityinsights/v20240301/_enums.py +954 -0
  1188. pulumi_azure_native/securityinsights/v20240301/_inputs.py +2530 -0
  1189. pulumi_azure_native/securityinsights/v20240301/aad_data_connector.py +289 -0
  1190. pulumi_azure_native/securityinsights/v20240301/aatp_data_connector.py +289 -0
  1191. pulumi_azure_native/securityinsights/v20240301/action.py +277 -0
  1192. pulumi_azure_native/securityinsights/v20240301/anomaly_security_ml_analytics_settings.py +624 -0
  1193. pulumi_azure_native/securityinsights/v20240301/asc_data_connector.py +289 -0
  1194. pulumi_azure_native/securityinsights/v20240301/automation_rule.py +355 -0
  1195. pulumi_azure_native/securityinsights/v20240301/aws_cloud_trail_data_connector.py +289 -0
  1196. pulumi_azure_native/securityinsights/v20240301/bookmark.py +576 -0
  1197. pulumi_azure_native/securityinsights/v20240301/content_package.py +869 -0
  1198. pulumi_azure_native/securityinsights/v20240301/content_template.py +950 -0
  1199. pulumi_azure_native/securityinsights/v20240301/fusion_alert_rule.py +349 -0
  1200. pulumi_azure_native/securityinsights/v20240301/get_aad_data_connector.py +176 -0
  1201. pulumi_azure_native/securityinsights/v20240301/get_aatp_data_connector.py +176 -0
  1202. pulumi_azure_native/securityinsights/v20240301/get_action.py +167 -0
  1203. pulumi_azure_native/securityinsights/v20240301/get_anomaly_security_ml_analytics_settings.py +332 -0
  1204. pulumi_azure_native/securityinsights/v20240301/get_asc_data_connector.py +176 -0
  1205. pulumi_azure_native/securityinsights/v20240301/get_automation_rule.py +237 -0
  1206. pulumi_azure_native/securityinsights/v20240301/get_aws_cloud_trail_data_connector.py +176 -0
  1207. pulumi_azure_native/securityinsights/v20240301/get_bookmark.py +305 -0
  1208. pulumi_azure_native/securityinsights/v20240301/get_content_package.py +435 -0
  1209. pulumi_azure_native/securityinsights/v20240301/get_content_template.py +493 -0
  1210. pulumi_azure_native/securityinsights/v20240301/get_fusion_alert_rule.py +254 -0
  1211. pulumi_azure_native/securityinsights/v20240301/get_incident.py +383 -0
  1212. pulumi_azure_native/securityinsights/v20240301/get_incident_comment.py +193 -0
  1213. pulumi_azure_native/securityinsights/v20240301/get_incident_relation.py +193 -0
  1214. pulumi_azure_native/securityinsights/v20240301/get_incident_task.py +232 -0
  1215. pulumi_azure_native/securityinsights/v20240301/get_mcas_data_connector.py +176 -0
  1216. pulumi_azure_native/securityinsights/v20240301/get_mdatp_data_connector.py +176 -0
  1217. pulumi_azure_native/securityinsights/v20240301/get_metadata.py +383 -0
  1218. pulumi_azure_native/securityinsights/v20240301/get_microsoft_security_incident_creation_alert_rule.py +267 -0
  1219. pulumi_azure_native/securityinsights/v20240301/get_office_data_connector.py +176 -0
  1220. pulumi_azure_native/securityinsights/v20240301/get_scheduled_alert_rule.py +423 -0
  1221. pulumi_azure_native/securityinsights/v20240301/get_sentinel_onboarding_state.py +149 -0
  1222. pulumi_azure_native/securityinsights/v20240301/get_threat_intelligence_indicator.py +149 -0
  1223. pulumi_azure_native/securityinsights/v20240301/get_ti_data_connector.py +189 -0
  1224. pulumi_azure_native/securityinsights/v20240301/get_watchlist.py +398 -0
  1225. pulumi_azure_native/securityinsights/v20240301/get_watchlist_item.py +271 -0
  1226. pulumi_azure_native/securityinsights/v20240301/incident.py +599 -0
  1227. pulumi_azure_native/securityinsights/v20240301/incident_comment.py +276 -0
  1228. pulumi_azure_native/securityinsights/v20240301/incident_relation.py +276 -0
  1229. pulumi_azure_native/securityinsights/v20240301/incident_task.py +385 -0
  1230. pulumi_azure_native/securityinsights/v20240301/list_source_control_repositories.py +123 -0
  1231. pulumi_azure_native/securityinsights/v20240301/mcas_data_connector.py +289 -0
  1232. pulumi_azure_native/securityinsights/v20240301/mdatp_data_connector.py +289 -0
  1233. pulumi_azure_native/securityinsights/v20240301/metadata.py +750 -0
  1234. pulumi_azure_native/securityinsights/v20240301/microsoft_security_incident_creation_alert_rule.py +475 -0
  1235. pulumi_azure_native/securityinsights/v20240301/office_data_connector.py +289 -0
  1236. pulumi_azure_native/securityinsights/v20240301/outputs.py +3268 -0
  1237. pulumi_azure_native/securityinsights/v20240301/scheduled_alert_rule.py +831 -0
  1238. pulumi_azure_native/securityinsights/v20240301/sentinel_onboarding_state.py +224 -0
  1239. pulumi_azure_native/securityinsights/v20240301/threat_intelligence_indicator.py +788 -0
  1240. pulumi_azure_native/securityinsights/v20240301/ti_data_connector.py +318 -0
  1241. pulumi_azure_native/securityinsights/v20240301/watchlist.py +767 -0
  1242. pulumi_azure_native/securityinsights/v20240301/watchlist_item.py +488 -0
  1243. pulumi_azure_native/securityinsights/watchlist.py +3 -3
  1244. pulumi_azure_native/securityinsights/watchlist_item.py +3 -3
  1245. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/METADATA +1 -1
  1246. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/RECORD +1248 -950
  1247. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/WHEEL +0 -0
  1248. {pulumi_azure_native-2.32.1a1710515727.dist-info → pulumi_azure_native-2.32.1a1711107957.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1667 @@
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
+ 'AgentUpdatePropertiesResponse',
16
+ 'AppAttachPackageInfoPropertiesResponse',
17
+ 'AppAttachPackagePropertiesResponse',
18
+ 'MaintenanceWindowPropertiesResponse',
19
+ 'MsixPackageApplicationsResponse',
20
+ 'MsixPackageDependenciesResponse',
21
+ 'PrivateEndpointConnectionResponse',
22
+ 'PrivateEndpointResponse',
23
+ 'PrivateLinkServiceConnectionStateResponse',
24
+ 'RegistrationInfoResponse',
25
+ 'ResourceModelWithAllowedPropertySetResponseIdentity',
26
+ 'ResourceModelWithAllowedPropertySetResponsePlan',
27
+ 'ResourceModelWithAllowedPropertySetResponseSku',
28
+ 'ScalingHostPoolReferenceResponse',
29
+ 'ScalingScheduleResponse',
30
+ 'SystemDataResponse',
31
+ 'TimeResponse',
32
+ ]
33
+
34
+ @pulumi.output_type
35
+ class AgentUpdatePropertiesResponse(dict):
36
+ """
37
+ The session host configuration for updating agent, monitoring agent, and stack component.
38
+ """
39
+ @staticmethod
40
+ def __key_warning(key: str):
41
+ suggest = None
42
+ if key == "maintenanceWindowTimeZone":
43
+ suggest = "maintenance_window_time_zone"
44
+ elif key == "maintenanceWindows":
45
+ suggest = "maintenance_windows"
46
+ elif key == "useSessionHostLocalTime":
47
+ suggest = "use_session_host_local_time"
48
+
49
+ if suggest:
50
+ pulumi.log.warn(f"Key '{key}' not found in AgentUpdatePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
51
+
52
+ def __getitem__(self, key: str) -> Any:
53
+ AgentUpdatePropertiesResponse.__key_warning(key)
54
+ return super().__getitem__(key)
55
+
56
+ def get(self, key: str, default = None) -> Any:
57
+ AgentUpdatePropertiesResponse.__key_warning(key)
58
+ return super().get(key, default)
59
+
60
+ def __init__(__self__, *,
61
+ maintenance_window_time_zone: Optional[str] = None,
62
+ maintenance_windows: Optional[Sequence['outputs.MaintenanceWindowPropertiesResponse']] = None,
63
+ type: Optional[str] = None,
64
+ use_session_host_local_time: Optional[bool] = None):
65
+ """
66
+ The session host configuration for updating agent, monitoring agent, and stack component.
67
+ :param str maintenance_window_time_zone: Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
68
+ :param Sequence['MaintenanceWindowPropertiesResponse'] maintenance_windows: List of maintenance windows. Maintenance windows are 2 hours long.
69
+ :param str type: The type of maintenance for session host components.
70
+ :param bool use_session_host_local_time: Whether to use localTime of the virtual machine.
71
+ """
72
+ if maintenance_window_time_zone is not None:
73
+ pulumi.set(__self__, "maintenance_window_time_zone", maintenance_window_time_zone)
74
+ if maintenance_windows is not None:
75
+ pulumi.set(__self__, "maintenance_windows", maintenance_windows)
76
+ if type is not None:
77
+ pulumi.set(__self__, "type", type)
78
+ if use_session_host_local_time is not None:
79
+ pulumi.set(__self__, "use_session_host_local_time", use_session_host_local_time)
80
+
81
+ @property
82
+ @pulumi.getter(name="maintenanceWindowTimeZone")
83
+ def maintenance_window_time_zone(self) -> Optional[str]:
84
+ """
85
+ Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
86
+ """
87
+ return pulumi.get(self, "maintenance_window_time_zone")
88
+
89
+ @property
90
+ @pulumi.getter(name="maintenanceWindows")
91
+ def maintenance_windows(self) -> Optional[Sequence['outputs.MaintenanceWindowPropertiesResponse']]:
92
+ """
93
+ List of maintenance windows. Maintenance windows are 2 hours long.
94
+ """
95
+ return pulumi.get(self, "maintenance_windows")
96
+
97
+ @property
98
+ @pulumi.getter
99
+ def type(self) -> Optional[str]:
100
+ """
101
+ The type of maintenance for session host components.
102
+ """
103
+ return pulumi.get(self, "type")
104
+
105
+ @property
106
+ @pulumi.getter(name="useSessionHostLocalTime")
107
+ def use_session_host_local_time(self) -> Optional[bool]:
108
+ """
109
+ Whether to use localTime of the virtual machine.
110
+ """
111
+ return pulumi.get(self, "use_session_host_local_time")
112
+
113
+
114
+ @pulumi.output_type
115
+ class AppAttachPackageInfoPropertiesResponse(dict):
116
+ """
117
+ Schema for Import Package Information properties.
118
+ """
119
+ @staticmethod
120
+ def __key_warning(key: str):
121
+ suggest = None
122
+ if key == "certificateExpiry":
123
+ suggest = "certificate_expiry"
124
+ elif key == "certificateName":
125
+ suggest = "certificate_name"
126
+ elif key == "displayName":
127
+ suggest = "display_name"
128
+ elif key == "imagePath":
129
+ suggest = "image_path"
130
+ elif key == "isActive":
131
+ suggest = "is_active"
132
+ elif key == "isPackageTimestamped":
133
+ suggest = "is_package_timestamped"
134
+ elif key == "isRegularRegistration":
135
+ suggest = "is_regular_registration"
136
+ elif key == "lastUpdated":
137
+ suggest = "last_updated"
138
+ elif key == "packageAlias":
139
+ suggest = "package_alias"
140
+ elif key == "packageApplications":
141
+ suggest = "package_applications"
142
+ elif key == "packageDependencies":
143
+ suggest = "package_dependencies"
144
+ elif key == "packageFamilyName":
145
+ suggest = "package_family_name"
146
+ elif key == "packageFullName":
147
+ suggest = "package_full_name"
148
+ elif key == "packageName":
149
+ suggest = "package_name"
150
+ elif key == "packageRelativePath":
151
+ suggest = "package_relative_path"
152
+
153
+ if suggest:
154
+ pulumi.log.warn(f"Key '{key}' not found in AppAttachPackageInfoPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
155
+
156
+ def __getitem__(self, key: str) -> Any:
157
+ AppAttachPackageInfoPropertiesResponse.__key_warning(key)
158
+ return super().__getitem__(key)
159
+
160
+ def get(self, key: str, default = None) -> Any:
161
+ AppAttachPackageInfoPropertiesResponse.__key_warning(key)
162
+ return super().get(key, default)
163
+
164
+ def __init__(__self__, *,
165
+ certificate_expiry: Optional[str] = None,
166
+ certificate_name: Optional[str] = None,
167
+ display_name: Optional[str] = None,
168
+ image_path: Optional[str] = None,
169
+ is_active: Optional[bool] = None,
170
+ is_package_timestamped: Optional[str] = None,
171
+ is_regular_registration: Optional[bool] = None,
172
+ last_updated: Optional[str] = None,
173
+ package_alias: Optional[str] = None,
174
+ package_applications: Optional[Sequence['outputs.MsixPackageApplicationsResponse']] = None,
175
+ package_dependencies: Optional[Sequence['outputs.MsixPackageDependenciesResponse']] = None,
176
+ package_family_name: Optional[str] = None,
177
+ package_full_name: Optional[str] = None,
178
+ package_name: Optional[str] = None,
179
+ package_relative_path: Optional[str] = None,
180
+ version: Optional[str] = None):
181
+ """
182
+ Schema for Import Package Information properties.
183
+ :param str certificate_expiry: Date certificate expires, found in the appxmanifest.xml.
184
+ :param str certificate_name: Certificate name found in the appxmanifest.xml.
185
+ :param str display_name: User friendly Name to be displayed in the portal.
186
+ :param str image_path: VHD/CIM/APP-V image path on Network Share.
187
+ :param bool is_active: Make this version of the package the active one across the hostpool.
188
+ :param str is_package_timestamped: Is package timestamped so it can ignore the certificate expiry date
189
+ :param bool is_regular_registration: Specifies how to register Package in feed.
190
+ :param str last_updated: Date the package source was last updated, for Msix packages this is found in the appxmanifest.xml.
191
+ :param str package_alias: Alias of App Attach Package. Assigned at import time
192
+ :param Sequence['MsixPackageApplicationsResponse'] package_applications: List of package applications.
193
+ :param Sequence['MsixPackageDependenciesResponse'] package_dependencies: List of package dependencies.
194
+ :param str package_family_name: Identifier not including the package version, for Msix packages it is the family name from the appxmanifest.xml.
195
+ :param str package_full_name: Identifier including the package version, for Msix packages it is the full name from the appxmanifest.xml.
196
+ :param str package_name: Package Name from appxmanifest.xml.
197
+ :param str package_relative_path: Relative Path to the package inside the image.
198
+ :param str version: Package Version found in the appxmanifest.xml.
199
+ """
200
+ if certificate_expiry is not None:
201
+ pulumi.set(__self__, "certificate_expiry", certificate_expiry)
202
+ if certificate_name is not None:
203
+ pulumi.set(__self__, "certificate_name", certificate_name)
204
+ if display_name is not None:
205
+ pulumi.set(__self__, "display_name", display_name)
206
+ if image_path is not None:
207
+ pulumi.set(__self__, "image_path", image_path)
208
+ if is_active is not None:
209
+ pulumi.set(__self__, "is_active", is_active)
210
+ if is_package_timestamped is not None:
211
+ pulumi.set(__self__, "is_package_timestamped", is_package_timestamped)
212
+ if is_regular_registration is not None:
213
+ pulumi.set(__self__, "is_regular_registration", is_regular_registration)
214
+ if last_updated is not None:
215
+ pulumi.set(__self__, "last_updated", last_updated)
216
+ if package_alias is not None:
217
+ pulumi.set(__self__, "package_alias", package_alias)
218
+ if package_applications is not None:
219
+ pulumi.set(__self__, "package_applications", package_applications)
220
+ if package_dependencies is not None:
221
+ pulumi.set(__self__, "package_dependencies", package_dependencies)
222
+ if package_family_name is not None:
223
+ pulumi.set(__self__, "package_family_name", package_family_name)
224
+ if package_full_name is not None:
225
+ pulumi.set(__self__, "package_full_name", package_full_name)
226
+ if package_name is not None:
227
+ pulumi.set(__self__, "package_name", package_name)
228
+ if package_relative_path is not None:
229
+ pulumi.set(__self__, "package_relative_path", package_relative_path)
230
+ if version is not None:
231
+ pulumi.set(__self__, "version", version)
232
+
233
+ @property
234
+ @pulumi.getter(name="certificateExpiry")
235
+ def certificate_expiry(self) -> Optional[str]:
236
+ """
237
+ Date certificate expires, found in the appxmanifest.xml.
238
+ """
239
+ return pulumi.get(self, "certificate_expiry")
240
+
241
+ @property
242
+ @pulumi.getter(name="certificateName")
243
+ def certificate_name(self) -> Optional[str]:
244
+ """
245
+ Certificate name found in the appxmanifest.xml.
246
+ """
247
+ return pulumi.get(self, "certificate_name")
248
+
249
+ @property
250
+ @pulumi.getter(name="displayName")
251
+ def display_name(self) -> Optional[str]:
252
+ """
253
+ User friendly Name to be displayed in the portal.
254
+ """
255
+ return pulumi.get(self, "display_name")
256
+
257
+ @property
258
+ @pulumi.getter(name="imagePath")
259
+ def image_path(self) -> Optional[str]:
260
+ """
261
+ VHD/CIM/APP-V image path on Network Share.
262
+ """
263
+ return pulumi.get(self, "image_path")
264
+
265
+ @property
266
+ @pulumi.getter(name="isActive")
267
+ def is_active(self) -> Optional[bool]:
268
+ """
269
+ Make this version of the package the active one across the hostpool.
270
+ """
271
+ return pulumi.get(self, "is_active")
272
+
273
+ @property
274
+ @pulumi.getter(name="isPackageTimestamped")
275
+ def is_package_timestamped(self) -> Optional[str]:
276
+ """
277
+ Is package timestamped so it can ignore the certificate expiry date
278
+ """
279
+ return pulumi.get(self, "is_package_timestamped")
280
+
281
+ @property
282
+ @pulumi.getter(name="isRegularRegistration")
283
+ def is_regular_registration(self) -> Optional[bool]:
284
+ """
285
+ Specifies how to register Package in feed.
286
+ """
287
+ return pulumi.get(self, "is_regular_registration")
288
+
289
+ @property
290
+ @pulumi.getter(name="lastUpdated")
291
+ def last_updated(self) -> Optional[str]:
292
+ """
293
+ Date the package source was last updated, for Msix packages this is found in the appxmanifest.xml.
294
+ """
295
+ return pulumi.get(self, "last_updated")
296
+
297
+ @property
298
+ @pulumi.getter(name="packageAlias")
299
+ def package_alias(self) -> Optional[str]:
300
+ """
301
+ Alias of App Attach Package. Assigned at import time
302
+ """
303
+ return pulumi.get(self, "package_alias")
304
+
305
+ @property
306
+ @pulumi.getter(name="packageApplications")
307
+ def package_applications(self) -> Optional[Sequence['outputs.MsixPackageApplicationsResponse']]:
308
+ """
309
+ List of package applications.
310
+ """
311
+ return pulumi.get(self, "package_applications")
312
+
313
+ @property
314
+ @pulumi.getter(name="packageDependencies")
315
+ def package_dependencies(self) -> Optional[Sequence['outputs.MsixPackageDependenciesResponse']]:
316
+ """
317
+ List of package dependencies.
318
+ """
319
+ return pulumi.get(self, "package_dependencies")
320
+
321
+ @property
322
+ @pulumi.getter(name="packageFamilyName")
323
+ def package_family_name(self) -> Optional[str]:
324
+ """
325
+ Identifier not including the package version, for Msix packages it is the family name from the appxmanifest.xml.
326
+ """
327
+ return pulumi.get(self, "package_family_name")
328
+
329
+ @property
330
+ @pulumi.getter(name="packageFullName")
331
+ def package_full_name(self) -> Optional[str]:
332
+ """
333
+ Identifier including the package version, for Msix packages it is the full name from the appxmanifest.xml.
334
+ """
335
+ return pulumi.get(self, "package_full_name")
336
+
337
+ @property
338
+ @pulumi.getter(name="packageName")
339
+ def package_name(self) -> Optional[str]:
340
+ """
341
+ Package Name from appxmanifest.xml.
342
+ """
343
+ return pulumi.get(self, "package_name")
344
+
345
+ @property
346
+ @pulumi.getter(name="packageRelativePath")
347
+ def package_relative_path(self) -> Optional[str]:
348
+ """
349
+ Relative Path to the package inside the image.
350
+ """
351
+ return pulumi.get(self, "package_relative_path")
352
+
353
+ @property
354
+ @pulumi.getter
355
+ def version(self) -> Optional[str]:
356
+ """
357
+ Package Version found in the appxmanifest.xml.
358
+ """
359
+ return pulumi.get(self, "version")
360
+
361
+
362
+ @pulumi.output_type
363
+ class AppAttachPackagePropertiesResponse(dict):
364
+ """
365
+ Schema for App Attach Package properties.
366
+ """
367
+ @staticmethod
368
+ def __key_warning(key: str):
369
+ suggest = None
370
+ if key == "provisioningState":
371
+ suggest = "provisioning_state"
372
+ elif key == "customData":
373
+ suggest = "custom_data"
374
+ elif key == "failHealthCheckOnStagingFailure":
375
+ suggest = "fail_health_check_on_staging_failure"
376
+ elif key == "hostPoolReferences":
377
+ suggest = "host_pool_references"
378
+ elif key == "keyVaultURL":
379
+ suggest = "key_vault_url"
380
+ elif key == "packageLookbackUrl":
381
+ suggest = "package_lookback_url"
382
+ elif key == "packageOwnerName":
383
+ suggest = "package_owner_name"
384
+
385
+ if suggest:
386
+ pulumi.log.warn(f"Key '{key}' not found in AppAttachPackagePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
387
+
388
+ def __getitem__(self, key: str) -> Any:
389
+ AppAttachPackagePropertiesResponse.__key_warning(key)
390
+ return super().__getitem__(key)
391
+
392
+ def get(self, key: str, default = None) -> Any:
393
+ AppAttachPackagePropertiesResponse.__key_warning(key)
394
+ return super().get(key, default)
395
+
396
+ def __init__(__self__, *,
397
+ provisioning_state: str,
398
+ custom_data: Optional[str] = None,
399
+ fail_health_check_on_staging_failure: Optional[str] = None,
400
+ host_pool_references: Optional[Sequence[str]] = None,
401
+ image: Optional['outputs.AppAttachPackageInfoPropertiesResponse'] = None,
402
+ key_vault_url: Optional[str] = None,
403
+ package_lookback_url: Optional[str] = None,
404
+ package_owner_name: Optional[str] = None):
405
+ """
406
+ Schema for App Attach Package properties.
407
+ :param str provisioning_state: The provisioning state of the App Attach Package.
408
+ :param str custom_data: Field that can be populated with custom data and filtered on in list GET calls
409
+ :param str fail_health_check_on_staging_failure: Parameter indicating how the health check should behave if this package fails staging
410
+ :param Sequence[str] host_pool_references: List of Hostpool resource Ids.
411
+ :param 'AppAttachPackageInfoPropertiesResponse' image: Detailed properties for App Attach Package
412
+ :param str key_vault_url: URL of keyvault location to store certificate
413
+ :param str package_lookback_url: Lookback url to third party control plane, is null for native app attach packages
414
+ :param str package_owner_name: Specific name of package owner, is "AppAttach" for native app attach packages
415
+ """
416
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
417
+ if custom_data is not None:
418
+ pulumi.set(__self__, "custom_data", custom_data)
419
+ if fail_health_check_on_staging_failure is not None:
420
+ pulumi.set(__self__, "fail_health_check_on_staging_failure", fail_health_check_on_staging_failure)
421
+ if host_pool_references is not None:
422
+ pulumi.set(__self__, "host_pool_references", host_pool_references)
423
+ if image is not None:
424
+ pulumi.set(__self__, "image", image)
425
+ if key_vault_url is not None:
426
+ pulumi.set(__self__, "key_vault_url", key_vault_url)
427
+ if package_lookback_url is not None:
428
+ pulumi.set(__self__, "package_lookback_url", package_lookback_url)
429
+ if package_owner_name is not None:
430
+ pulumi.set(__self__, "package_owner_name", package_owner_name)
431
+
432
+ @property
433
+ @pulumi.getter(name="provisioningState")
434
+ def provisioning_state(self) -> str:
435
+ """
436
+ The provisioning state of the App Attach Package.
437
+ """
438
+ return pulumi.get(self, "provisioning_state")
439
+
440
+ @property
441
+ @pulumi.getter(name="customData")
442
+ def custom_data(self) -> Optional[str]:
443
+ """
444
+ Field that can be populated with custom data and filtered on in list GET calls
445
+ """
446
+ return pulumi.get(self, "custom_data")
447
+
448
+ @property
449
+ @pulumi.getter(name="failHealthCheckOnStagingFailure")
450
+ def fail_health_check_on_staging_failure(self) -> Optional[str]:
451
+ """
452
+ Parameter indicating how the health check should behave if this package fails staging
453
+ """
454
+ return pulumi.get(self, "fail_health_check_on_staging_failure")
455
+
456
+ @property
457
+ @pulumi.getter(name="hostPoolReferences")
458
+ def host_pool_references(self) -> Optional[Sequence[str]]:
459
+ """
460
+ List of Hostpool resource Ids.
461
+ """
462
+ return pulumi.get(self, "host_pool_references")
463
+
464
+ @property
465
+ @pulumi.getter
466
+ def image(self) -> Optional['outputs.AppAttachPackageInfoPropertiesResponse']:
467
+ """
468
+ Detailed properties for App Attach Package
469
+ """
470
+ return pulumi.get(self, "image")
471
+
472
+ @property
473
+ @pulumi.getter(name="keyVaultURL")
474
+ def key_vault_url(self) -> Optional[str]:
475
+ """
476
+ URL of keyvault location to store certificate
477
+ """
478
+ return pulumi.get(self, "key_vault_url")
479
+
480
+ @property
481
+ @pulumi.getter(name="packageLookbackUrl")
482
+ def package_lookback_url(self) -> Optional[str]:
483
+ """
484
+ Lookback url to third party control plane, is null for native app attach packages
485
+ """
486
+ return pulumi.get(self, "package_lookback_url")
487
+
488
+ @property
489
+ @pulumi.getter(name="packageOwnerName")
490
+ def package_owner_name(self) -> Optional[str]:
491
+ """
492
+ Specific name of package owner, is "AppAttach" for native app attach packages
493
+ """
494
+ return pulumi.get(self, "package_owner_name")
495
+
496
+
497
+ @pulumi.output_type
498
+ class MaintenanceWindowPropertiesResponse(dict):
499
+ """
500
+ Maintenance window starting hour and day of week.
501
+ """
502
+ @staticmethod
503
+ def __key_warning(key: str):
504
+ suggest = None
505
+ if key == "dayOfWeek":
506
+ suggest = "day_of_week"
507
+
508
+ if suggest:
509
+ pulumi.log.warn(f"Key '{key}' not found in MaintenanceWindowPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
510
+
511
+ def __getitem__(self, key: str) -> Any:
512
+ MaintenanceWindowPropertiesResponse.__key_warning(key)
513
+ return super().__getitem__(key)
514
+
515
+ def get(self, key: str, default = None) -> Any:
516
+ MaintenanceWindowPropertiesResponse.__key_warning(key)
517
+ return super().get(key, default)
518
+
519
+ def __init__(__self__, *,
520
+ day_of_week: Optional[str] = None,
521
+ hour: Optional[int] = None):
522
+ """
523
+ Maintenance window starting hour and day of week.
524
+ :param str day_of_week: Day of the week.
525
+ :param int hour: The update start hour of the day. (0 - 23)
526
+ """
527
+ if day_of_week is not None:
528
+ pulumi.set(__self__, "day_of_week", day_of_week)
529
+ if hour is not None:
530
+ pulumi.set(__self__, "hour", hour)
531
+
532
+ @property
533
+ @pulumi.getter(name="dayOfWeek")
534
+ def day_of_week(self) -> Optional[str]:
535
+ """
536
+ Day of the week.
537
+ """
538
+ return pulumi.get(self, "day_of_week")
539
+
540
+ @property
541
+ @pulumi.getter
542
+ def hour(self) -> Optional[int]:
543
+ """
544
+ The update start hour of the day. (0 - 23)
545
+ """
546
+ return pulumi.get(self, "hour")
547
+
548
+
549
+ @pulumi.output_type
550
+ class MsixPackageApplicationsResponse(dict):
551
+ """
552
+ Schema for MSIX Package Application properties.
553
+ """
554
+ @staticmethod
555
+ def __key_warning(key: str):
556
+ suggest = None
557
+ if key == "appId":
558
+ suggest = "app_id"
559
+ elif key == "appUserModelID":
560
+ suggest = "app_user_model_id"
561
+ elif key == "friendlyName":
562
+ suggest = "friendly_name"
563
+ elif key == "iconImageName":
564
+ suggest = "icon_image_name"
565
+ elif key == "rawIcon":
566
+ suggest = "raw_icon"
567
+ elif key == "rawPng":
568
+ suggest = "raw_png"
569
+
570
+ if suggest:
571
+ pulumi.log.warn(f"Key '{key}' not found in MsixPackageApplicationsResponse. Access the value via the '{suggest}' property getter instead.")
572
+
573
+ def __getitem__(self, key: str) -> Any:
574
+ MsixPackageApplicationsResponse.__key_warning(key)
575
+ return super().__getitem__(key)
576
+
577
+ def get(self, key: str, default = None) -> Any:
578
+ MsixPackageApplicationsResponse.__key_warning(key)
579
+ return super().get(key, default)
580
+
581
+ def __init__(__self__, *,
582
+ app_id: Optional[str] = None,
583
+ app_user_model_id: Optional[str] = None,
584
+ description: Optional[str] = None,
585
+ friendly_name: Optional[str] = None,
586
+ icon_image_name: Optional[str] = None,
587
+ raw_icon: Optional[str] = None,
588
+ raw_png: Optional[str] = None):
589
+ """
590
+ Schema for MSIX Package Application properties.
591
+ :param str app_id: Package Application Id, found in appxmanifest.xml.
592
+ :param str app_user_model_id: Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
593
+ :param str description: Description of Package Application.
594
+ :param str friendly_name: User friendly name.
595
+ :param str icon_image_name: User friendly name.
596
+ :param str raw_icon: the icon a 64 bit string as a byte array.
597
+ :param str raw_png: the icon a 64 bit string as a byte array.
598
+ """
599
+ if app_id is not None:
600
+ pulumi.set(__self__, "app_id", app_id)
601
+ if app_user_model_id is not None:
602
+ pulumi.set(__self__, "app_user_model_id", app_user_model_id)
603
+ if description is not None:
604
+ pulumi.set(__self__, "description", description)
605
+ if friendly_name is not None:
606
+ pulumi.set(__self__, "friendly_name", friendly_name)
607
+ if icon_image_name is not None:
608
+ pulumi.set(__self__, "icon_image_name", icon_image_name)
609
+ if raw_icon is not None:
610
+ pulumi.set(__self__, "raw_icon", raw_icon)
611
+ if raw_png is not None:
612
+ pulumi.set(__self__, "raw_png", raw_png)
613
+
614
+ @property
615
+ @pulumi.getter(name="appId")
616
+ def app_id(self) -> Optional[str]:
617
+ """
618
+ Package Application Id, found in appxmanifest.xml.
619
+ """
620
+ return pulumi.get(self, "app_id")
621
+
622
+ @property
623
+ @pulumi.getter(name="appUserModelID")
624
+ def app_user_model_id(self) -> Optional[str]:
625
+ """
626
+ Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
627
+ """
628
+ return pulumi.get(self, "app_user_model_id")
629
+
630
+ @property
631
+ @pulumi.getter
632
+ def description(self) -> Optional[str]:
633
+ """
634
+ Description of Package Application.
635
+ """
636
+ return pulumi.get(self, "description")
637
+
638
+ @property
639
+ @pulumi.getter(name="friendlyName")
640
+ def friendly_name(self) -> Optional[str]:
641
+ """
642
+ User friendly name.
643
+ """
644
+ return pulumi.get(self, "friendly_name")
645
+
646
+ @property
647
+ @pulumi.getter(name="iconImageName")
648
+ def icon_image_name(self) -> Optional[str]:
649
+ """
650
+ User friendly name.
651
+ """
652
+ return pulumi.get(self, "icon_image_name")
653
+
654
+ @property
655
+ @pulumi.getter(name="rawIcon")
656
+ def raw_icon(self) -> Optional[str]:
657
+ """
658
+ the icon a 64 bit string as a byte array.
659
+ """
660
+ return pulumi.get(self, "raw_icon")
661
+
662
+ @property
663
+ @pulumi.getter(name="rawPng")
664
+ def raw_png(self) -> Optional[str]:
665
+ """
666
+ the icon a 64 bit string as a byte array.
667
+ """
668
+ return pulumi.get(self, "raw_png")
669
+
670
+
671
+ @pulumi.output_type
672
+ class MsixPackageDependenciesResponse(dict):
673
+ """
674
+ Schema for MSIX Package Dependencies properties.
675
+ """
676
+ @staticmethod
677
+ def __key_warning(key: str):
678
+ suggest = None
679
+ if key == "dependencyName":
680
+ suggest = "dependency_name"
681
+ elif key == "minVersion":
682
+ suggest = "min_version"
683
+
684
+ if suggest:
685
+ pulumi.log.warn(f"Key '{key}' not found in MsixPackageDependenciesResponse. Access the value via the '{suggest}' property getter instead.")
686
+
687
+ def __getitem__(self, key: str) -> Any:
688
+ MsixPackageDependenciesResponse.__key_warning(key)
689
+ return super().__getitem__(key)
690
+
691
+ def get(self, key: str, default = None) -> Any:
692
+ MsixPackageDependenciesResponse.__key_warning(key)
693
+ return super().get(key, default)
694
+
695
+ def __init__(__self__, *,
696
+ dependency_name: Optional[str] = None,
697
+ min_version: Optional[str] = None,
698
+ publisher: Optional[str] = None):
699
+ """
700
+ Schema for MSIX Package Dependencies properties.
701
+ :param str dependency_name: Name of the package dependency. For Msix packages, this is the other packages this package depends upon, for APP-V packages this is the locations of the user and deployment config files
702
+ :param str min_version: Dependency version required.
703
+ :param str publisher: Name of dependency publisher.
704
+ """
705
+ if dependency_name is not None:
706
+ pulumi.set(__self__, "dependency_name", dependency_name)
707
+ if min_version is not None:
708
+ pulumi.set(__self__, "min_version", min_version)
709
+ if publisher is not None:
710
+ pulumi.set(__self__, "publisher", publisher)
711
+
712
+ @property
713
+ @pulumi.getter(name="dependencyName")
714
+ def dependency_name(self) -> Optional[str]:
715
+ """
716
+ Name of the package dependency. For Msix packages, this is the other packages this package depends upon, for APP-V packages this is the locations of the user and deployment config files
717
+ """
718
+ return pulumi.get(self, "dependency_name")
719
+
720
+ @property
721
+ @pulumi.getter(name="minVersion")
722
+ def min_version(self) -> Optional[str]:
723
+ """
724
+ Dependency version required.
725
+ """
726
+ return pulumi.get(self, "min_version")
727
+
728
+ @property
729
+ @pulumi.getter
730
+ def publisher(self) -> Optional[str]:
731
+ """
732
+ Name of dependency publisher.
733
+ """
734
+ return pulumi.get(self, "publisher")
735
+
736
+
737
+ @pulumi.output_type
738
+ class PrivateEndpointConnectionResponse(dict):
739
+ """
740
+ The Private Endpoint Connection resource.
741
+ """
742
+ @staticmethod
743
+ def __key_warning(key: str):
744
+ suggest = None
745
+ if key == "privateLinkServiceConnectionState":
746
+ suggest = "private_link_service_connection_state"
747
+ elif key == "provisioningState":
748
+ suggest = "provisioning_state"
749
+ elif key == "privateEndpoint":
750
+ suggest = "private_endpoint"
751
+
752
+ if suggest:
753
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
754
+
755
+ def __getitem__(self, key: str) -> Any:
756
+ PrivateEndpointConnectionResponse.__key_warning(key)
757
+ return super().__getitem__(key)
758
+
759
+ def get(self, key: str, default = None) -> Any:
760
+ PrivateEndpointConnectionResponse.__key_warning(key)
761
+ return super().get(key, default)
762
+
763
+ def __init__(__self__, *,
764
+ id: str,
765
+ name: str,
766
+ private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
767
+ provisioning_state: str,
768
+ type: str,
769
+ private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
770
+ """
771
+ The Private Endpoint Connection resource.
772
+ :param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
773
+ :param str name: The name of the resource
774
+ :param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
775
+ :param str provisioning_state: The provisioning state of the private endpoint connection resource.
776
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
777
+ :param 'PrivateEndpointResponse' private_endpoint: The resource of private end point.
778
+ """
779
+ pulumi.set(__self__, "id", id)
780
+ pulumi.set(__self__, "name", name)
781
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
782
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
783
+ pulumi.set(__self__, "type", type)
784
+ if private_endpoint is not None:
785
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
786
+
787
+ @property
788
+ @pulumi.getter
789
+ def id(self) -> str:
790
+ """
791
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
792
+ """
793
+ return pulumi.get(self, "id")
794
+
795
+ @property
796
+ @pulumi.getter
797
+ def name(self) -> str:
798
+ """
799
+ The name of the resource
800
+ """
801
+ return pulumi.get(self, "name")
802
+
803
+ @property
804
+ @pulumi.getter(name="privateLinkServiceConnectionState")
805
+ def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
806
+ """
807
+ A collection of information about the state of the connection between service consumer and provider.
808
+ """
809
+ return pulumi.get(self, "private_link_service_connection_state")
810
+
811
+ @property
812
+ @pulumi.getter(name="provisioningState")
813
+ def provisioning_state(self) -> str:
814
+ """
815
+ The provisioning state of the private endpoint connection resource.
816
+ """
817
+ return pulumi.get(self, "provisioning_state")
818
+
819
+ @property
820
+ @pulumi.getter
821
+ def type(self) -> str:
822
+ """
823
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
824
+ """
825
+ return pulumi.get(self, "type")
826
+
827
+ @property
828
+ @pulumi.getter(name="privateEndpoint")
829
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
830
+ """
831
+ The resource of private end point.
832
+ """
833
+ return pulumi.get(self, "private_endpoint")
834
+
835
+
836
+ @pulumi.output_type
837
+ class PrivateEndpointResponse(dict):
838
+ """
839
+ The Private Endpoint resource.
840
+ """
841
+ def __init__(__self__, *,
842
+ id: str):
843
+ """
844
+ The Private Endpoint resource.
845
+ :param str id: The ARM identifier for Private Endpoint
846
+ """
847
+ pulumi.set(__self__, "id", id)
848
+
849
+ @property
850
+ @pulumi.getter
851
+ def id(self) -> str:
852
+ """
853
+ The ARM identifier for Private Endpoint
854
+ """
855
+ return pulumi.get(self, "id")
856
+
857
+
858
+ @pulumi.output_type
859
+ class PrivateLinkServiceConnectionStateResponse(dict):
860
+ """
861
+ A collection of information about the state of the connection between service consumer and provider.
862
+ """
863
+ @staticmethod
864
+ def __key_warning(key: str):
865
+ suggest = None
866
+ if key == "actionsRequired":
867
+ suggest = "actions_required"
868
+
869
+ if suggest:
870
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
871
+
872
+ def __getitem__(self, key: str) -> Any:
873
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
874
+ return super().__getitem__(key)
875
+
876
+ def get(self, key: str, default = None) -> Any:
877
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
878
+ return super().get(key, default)
879
+
880
+ def __init__(__self__, *,
881
+ actions_required: Optional[str] = None,
882
+ description: Optional[str] = None,
883
+ status: Optional[str] = None):
884
+ """
885
+ A collection of information about the state of the connection between service consumer and provider.
886
+ :param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
887
+ :param str description: The reason for approval/rejection of the connection.
888
+ :param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
889
+ """
890
+ if actions_required is not None:
891
+ pulumi.set(__self__, "actions_required", actions_required)
892
+ if description is not None:
893
+ pulumi.set(__self__, "description", description)
894
+ if status is not None:
895
+ pulumi.set(__self__, "status", status)
896
+
897
+ @property
898
+ @pulumi.getter(name="actionsRequired")
899
+ def actions_required(self) -> Optional[str]:
900
+ """
901
+ A message indicating if changes on the service provider require any updates on the consumer.
902
+ """
903
+ return pulumi.get(self, "actions_required")
904
+
905
+ @property
906
+ @pulumi.getter
907
+ def description(self) -> Optional[str]:
908
+ """
909
+ The reason for approval/rejection of the connection.
910
+ """
911
+ return pulumi.get(self, "description")
912
+
913
+ @property
914
+ @pulumi.getter
915
+ def status(self) -> Optional[str]:
916
+ """
917
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
918
+ """
919
+ return pulumi.get(self, "status")
920
+
921
+
922
+ @pulumi.output_type
923
+ class RegistrationInfoResponse(dict):
924
+ """
925
+ Represents a RegistrationInfo definition.
926
+ """
927
+ @staticmethod
928
+ def __key_warning(key: str):
929
+ suggest = None
930
+ if key == "expirationTime":
931
+ suggest = "expiration_time"
932
+ elif key == "registrationTokenOperation":
933
+ suggest = "registration_token_operation"
934
+
935
+ if suggest:
936
+ pulumi.log.warn(f"Key '{key}' not found in RegistrationInfoResponse. Access the value via the '{suggest}' property getter instead.")
937
+
938
+ def __getitem__(self, key: str) -> Any:
939
+ RegistrationInfoResponse.__key_warning(key)
940
+ return super().__getitem__(key)
941
+
942
+ def get(self, key: str, default = None) -> Any:
943
+ RegistrationInfoResponse.__key_warning(key)
944
+ return super().get(key, default)
945
+
946
+ def __init__(__self__, *,
947
+ expiration_time: Optional[str] = None,
948
+ registration_token_operation: Optional[str] = None,
949
+ token: Optional[str] = None):
950
+ """
951
+ Represents a RegistrationInfo definition.
952
+ :param str expiration_time: Expiration time of registration token.
953
+ :param str registration_token_operation: The type of resetting the token.
954
+ :param str token: The registration token base64 encoded string.
955
+ """
956
+ if expiration_time is not None:
957
+ pulumi.set(__self__, "expiration_time", expiration_time)
958
+ if registration_token_operation is not None:
959
+ pulumi.set(__self__, "registration_token_operation", registration_token_operation)
960
+ if token is not None:
961
+ pulumi.set(__self__, "token", token)
962
+
963
+ @property
964
+ @pulumi.getter(name="expirationTime")
965
+ def expiration_time(self) -> Optional[str]:
966
+ """
967
+ Expiration time of registration token.
968
+ """
969
+ return pulumi.get(self, "expiration_time")
970
+
971
+ @property
972
+ @pulumi.getter(name="registrationTokenOperation")
973
+ def registration_token_operation(self) -> Optional[str]:
974
+ """
975
+ The type of resetting the token.
976
+ """
977
+ return pulumi.get(self, "registration_token_operation")
978
+
979
+ @property
980
+ @pulumi.getter
981
+ def token(self) -> Optional[str]:
982
+ """
983
+ The registration token base64 encoded string.
984
+ """
985
+ return pulumi.get(self, "token")
986
+
987
+
988
+ @pulumi.output_type
989
+ class ResourceModelWithAllowedPropertySetResponseIdentity(dict):
990
+ @staticmethod
991
+ def __key_warning(key: str):
992
+ suggest = None
993
+ if key == "principalId":
994
+ suggest = "principal_id"
995
+ elif key == "tenantId":
996
+ suggest = "tenant_id"
997
+
998
+ if suggest:
999
+ pulumi.log.warn(f"Key '{key}' not found in ResourceModelWithAllowedPropertySetResponseIdentity. Access the value via the '{suggest}' property getter instead.")
1000
+
1001
+ def __getitem__(self, key: str) -> Any:
1002
+ ResourceModelWithAllowedPropertySetResponseIdentity.__key_warning(key)
1003
+ return super().__getitem__(key)
1004
+
1005
+ def get(self, key: str, default = None) -> Any:
1006
+ ResourceModelWithAllowedPropertySetResponseIdentity.__key_warning(key)
1007
+ return super().get(key, default)
1008
+
1009
+ def __init__(__self__, *,
1010
+ principal_id: str,
1011
+ tenant_id: str,
1012
+ type: Optional[str] = None):
1013
+ """
1014
+ :param str principal_id: The principal ID of resource identity.
1015
+ :param str tenant_id: The tenant ID of resource.
1016
+ :param str type: The identity type.
1017
+ """
1018
+ pulumi.set(__self__, "principal_id", principal_id)
1019
+ pulumi.set(__self__, "tenant_id", tenant_id)
1020
+ if type is not None:
1021
+ pulumi.set(__self__, "type", type)
1022
+
1023
+ @property
1024
+ @pulumi.getter(name="principalId")
1025
+ def principal_id(self) -> str:
1026
+ """
1027
+ The principal ID of resource identity.
1028
+ """
1029
+ return pulumi.get(self, "principal_id")
1030
+
1031
+ @property
1032
+ @pulumi.getter(name="tenantId")
1033
+ def tenant_id(self) -> str:
1034
+ """
1035
+ The tenant ID of resource.
1036
+ """
1037
+ return pulumi.get(self, "tenant_id")
1038
+
1039
+ @property
1040
+ @pulumi.getter
1041
+ def type(self) -> Optional[str]:
1042
+ """
1043
+ The identity type.
1044
+ """
1045
+ return pulumi.get(self, "type")
1046
+
1047
+
1048
+ @pulumi.output_type
1049
+ class ResourceModelWithAllowedPropertySetResponsePlan(dict):
1050
+ @staticmethod
1051
+ def __key_warning(key: str):
1052
+ suggest = None
1053
+ if key == "promotionCode":
1054
+ suggest = "promotion_code"
1055
+
1056
+ if suggest:
1057
+ pulumi.log.warn(f"Key '{key}' not found in ResourceModelWithAllowedPropertySetResponsePlan. Access the value via the '{suggest}' property getter instead.")
1058
+
1059
+ def __getitem__(self, key: str) -> Any:
1060
+ ResourceModelWithAllowedPropertySetResponsePlan.__key_warning(key)
1061
+ return super().__getitem__(key)
1062
+
1063
+ def get(self, key: str, default = None) -> Any:
1064
+ ResourceModelWithAllowedPropertySetResponsePlan.__key_warning(key)
1065
+ return super().get(key, default)
1066
+
1067
+ def __init__(__self__, *,
1068
+ name: str,
1069
+ product: str,
1070
+ publisher: str,
1071
+ promotion_code: Optional[str] = None,
1072
+ version: Optional[str] = None):
1073
+ """
1074
+ :param str name: A user defined name of the 3rd Party Artifact that is being procured.
1075
+ :param str product: The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
1076
+ :param str publisher: The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
1077
+ :param str promotion_code: A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
1078
+ :param str version: The version of the desired product/artifact.
1079
+ """
1080
+ pulumi.set(__self__, "name", name)
1081
+ pulumi.set(__self__, "product", product)
1082
+ pulumi.set(__self__, "publisher", publisher)
1083
+ if promotion_code is not None:
1084
+ pulumi.set(__self__, "promotion_code", promotion_code)
1085
+ if version is not None:
1086
+ pulumi.set(__self__, "version", version)
1087
+
1088
+ @property
1089
+ @pulumi.getter
1090
+ def name(self) -> str:
1091
+ """
1092
+ A user defined name of the 3rd Party Artifact that is being procured.
1093
+ """
1094
+ return pulumi.get(self, "name")
1095
+
1096
+ @property
1097
+ @pulumi.getter
1098
+ def product(self) -> str:
1099
+ """
1100
+ The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
1101
+ """
1102
+ return pulumi.get(self, "product")
1103
+
1104
+ @property
1105
+ @pulumi.getter
1106
+ def publisher(self) -> str:
1107
+ """
1108
+ The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
1109
+ """
1110
+ return pulumi.get(self, "publisher")
1111
+
1112
+ @property
1113
+ @pulumi.getter(name="promotionCode")
1114
+ def promotion_code(self) -> Optional[str]:
1115
+ """
1116
+ A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
1117
+ """
1118
+ return pulumi.get(self, "promotion_code")
1119
+
1120
+ @property
1121
+ @pulumi.getter
1122
+ def version(self) -> Optional[str]:
1123
+ """
1124
+ The version of the desired product/artifact.
1125
+ """
1126
+ return pulumi.get(self, "version")
1127
+
1128
+
1129
+ @pulumi.output_type
1130
+ class ResourceModelWithAllowedPropertySetResponseSku(dict):
1131
+ def __init__(__self__, *,
1132
+ name: str,
1133
+ capacity: Optional[int] = None,
1134
+ family: Optional[str] = None,
1135
+ size: Optional[str] = None,
1136
+ tier: Optional[str] = None):
1137
+ """
1138
+ :param str name: The name of the SKU. Ex - P3. It is typically a letter+number code
1139
+ :param int capacity: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
1140
+ :param str family: If the service has different generations of hardware, for the same SKU, then that can be captured here.
1141
+ :param str size: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
1142
+ :param str tier: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
1143
+ """
1144
+ pulumi.set(__self__, "name", name)
1145
+ if capacity is not None:
1146
+ pulumi.set(__self__, "capacity", capacity)
1147
+ if family is not None:
1148
+ pulumi.set(__self__, "family", family)
1149
+ if size is not None:
1150
+ pulumi.set(__self__, "size", size)
1151
+ if tier is not None:
1152
+ pulumi.set(__self__, "tier", tier)
1153
+
1154
+ @property
1155
+ @pulumi.getter
1156
+ def name(self) -> str:
1157
+ """
1158
+ The name of the SKU. Ex - P3. It is typically a letter+number code
1159
+ """
1160
+ return pulumi.get(self, "name")
1161
+
1162
+ @property
1163
+ @pulumi.getter
1164
+ def capacity(self) -> Optional[int]:
1165
+ """
1166
+ If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
1167
+ """
1168
+ return pulumi.get(self, "capacity")
1169
+
1170
+ @property
1171
+ @pulumi.getter
1172
+ def family(self) -> Optional[str]:
1173
+ """
1174
+ If the service has different generations of hardware, for the same SKU, then that can be captured here.
1175
+ """
1176
+ return pulumi.get(self, "family")
1177
+
1178
+ @property
1179
+ @pulumi.getter
1180
+ def size(self) -> Optional[str]:
1181
+ """
1182
+ The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
1183
+ """
1184
+ return pulumi.get(self, "size")
1185
+
1186
+ @property
1187
+ @pulumi.getter
1188
+ def tier(self) -> Optional[str]:
1189
+ """
1190
+ This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
1191
+ """
1192
+ return pulumi.get(self, "tier")
1193
+
1194
+
1195
+ @pulumi.output_type
1196
+ class ScalingHostPoolReferenceResponse(dict):
1197
+ """
1198
+ Scaling plan reference to hostpool.
1199
+ """
1200
+ @staticmethod
1201
+ def __key_warning(key: str):
1202
+ suggest = None
1203
+ if key == "hostPoolArmPath":
1204
+ suggest = "host_pool_arm_path"
1205
+ elif key == "scalingPlanEnabled":
1206
+ suggest = "scaling_plan_enabled"
1207
+
1208
+ if suggest:
1209
+ pulumi.log.warn(f"Key '{key}' not found in ScalingHostPoolReferenceResponse. Access the value via the '{suggest}' property getter instead.")
1210
+
1211
+ def __getitem__(self, key: str) -> Any:
1212
+ ScalingHostPoolReferenceResponse.__key_warning(key)
1213
+ return super().__getitem__(key)
1214
+
1215
+ def get(self, key: str, default = None) -> Any:
1216
+ ScalingHostPoolReferenceResponse.__key_warning(key)
1217
+ return super().get(key, default)
1218
+
1219
+ def __init__(__self__, *,
1220
+ host_pool_arm_path: Optional[str] = None,
1221
+ scaling_plan_enabled: Optional[bool] = None):
1222
+ """
1223
+ Scaling plan reference to hostpool.
1224
+ :param str host_pool_arm_path: Arm path of referenced hostpool.
1225
+ :param bool scaling_plan_enabled: Is the scaling plan enabled for this hostpool.
1226
+ """
1227
+ if host_pool_arm_path is not None:
1228
+ pulumi.set(__self__, "host_pool_arm_path", host_pool_arm_path)
1229
+ if scaling_plan_enabled is not None:
1230
+ pulumi.set(__self__, "scaling_plan_enabled", scaling_plan_enabled)
1231
+
1232
+ @property
1233
+ @pulumi.getter(name="hostPoolArmPath")
1234
+ def host_pool_arm_path(self) -> Optional[str]:
1235
+ """
1236
+ Arm path of referenced hostpool.
1237
+ """
1238
+ return pulumi.get(self, "host_pool_arm_path")
1239
+
1240
+ @property
1241
+ @pulumi.getter(name="scalingPlanEnabled")
1242
+ def scaling_plan_enabled(self) -> Optional[bool]:
1243
+ """
1244
+ Is the scaling plan enabled for this hostpool.
1245
+ """
1246
+ return pulumi.get(self, "scaling_plan_enabled")
1247
+
1248
+
1249
+ @pulumi.output_type
1250
+ class ScalingScheduleResponse(dict):
1251
+ """
1252
+ A ScalingPlanPooledSchedule.
1253
+ """
1254
+ @staticmethod
1255
+ def __key_warning(key: str):
1256
+ suggest = None
1257
+ if key == "daysOfWeek":
1258
+ suggest = "days_of_week"
1259
+ elif key == "offPeakLoadBalancingAlgorithm":
1260
+ suggest = "off_peak_load_balancing_algorithm"
1261
+ elif key == "offPeakStartTime":
1262
+ suggest = "off_peak_start_time"
1263
+ elif key == "peakLoadBalancingAlgorithm":
1264
+ suggest = "peak_load_balancing_algorithm"
1265
+ elif key == "peakStartTime":
1266
+ suggest = "peak_start_time"
1267
+ elif key == "rampDownCapacityThresholdPct":
1268
+ suggest = "ramp_down_capacity_threshold_pct"
1269
+ elif key == "rampDownForceLogoffUsers":
1270
+ suggest = "ramp_down_force_logoff_users"
1271
+ elif key == "rampDownLoadBalancingAlgorithm":
1272
+ suggest = "ramp_down_load_balancing_algorithm"
1273
+ elif key == "rampDownMinimumHostsPct":
1274
+ suggest = "ramp_down_minimum_hosts_pct"
1275
+ elif key == "rampDownNotificationMessage":
1276
+ suggest = "ramp_down_notification_message"
1277
+ elif key == "rampDownStartTime":
1278
+ suggest = "ramp_down_start_time"
1279
+ elif key == "rampDownStopHostsWhen":
1280
+ suggest = "ramp_down_stop_hosts_when"
1281
+ elif key == "rampDownWaitTimeMinutes":
1282
+ suggest = "ramp_down_wait_time_minutes"
1283
+ elif key == "rampUpCapacityThresholdPct":
1284
+ suggest = "ramp_up_capacity_threshold_pct"
1285
+ elif key == "rampUpLoadBalancingAlgorithm":
1286
+ suggest = "ramp_up_load_balancing_algorithm"
1287
+ elif key == "rampUpMinimumHostsPct":
1288
+ suggest = "ramp_up_minimum_hosts_pct"
1289
+ elif key == "rampUpStartTime":
1290
+ suggest = "ramp_up_start_time"
1291
+
1292
+ if suggest:
1293
+ pulumi.log.warn(f"Key '{key}' not found in ScalingScheduleResponse. Access the value via the '{suggest}' property getter instead.")
1294
+
1295
+ def __getitem__(self, key: str) -> Any:
1296
+ ScalingScheduleResponse.__key_warning(key)
1297
+ return super().__getitem__(key)
1298
+
1299
+ def get(self, key: str, default = None) -> Any:
1300
+ ScalingScheduleResponse.__key_warning(key)
1301
+ return super().get(key, default)
1302
+
1303
+ def __init__(__self__, *,
1304
+ days_of_week: Optional[Sequence[str]] = None,
1305
+ name: Optional[str] = None,
1306
+ off_peak_load_balancing_algorithm: Optional[str] = None,
1307
+ off_peak_start_time: Optional['outputs.TimeResponse'] = None,
1308
+ peak_load_balancing_algorithm: Optional[str] = None,
1309
+ peak_start_time: Optional['outputs.TimeResponse'] = None,
1310
+ ramp_down_capacity_threshold_pct: Optional[int] = None,
1311
+ ramp_down_force_logoff_users: Optional[bool] = None,
1312
+ ramp_down_load_balancing_algorithm: Optional[str] = None,
1313
+ ramp_down_minimum_hosts_pct: Optional[int] = None,
1314
+ ramp_down_notification_message: Optional[str] = None,
1315
+ ramp_down_start_time: Optional['outputs.TimeResponse'] = None,
1316
+ ramp_down_stop_hosts_when: Optional[str] = None,
1317
+ ramp_down_wait_time_minutes: Optional[int] = None,
1318
+ ramp_up_capacity_threshold_pct: Optional[int] = None,
1319
+ ramp_up_load_balancing_algorithm: Optional[str] = None,
1320
+ ramp_up_minimum_hosts_pct: Optional[int] = None,
1321
+ ramp_up_start_time: Optional['outputs.TimeResponse'] = None):
1322
+ """
1323
+ A ScalingPlanPooledSchedule.
1324
+ :param Sequence[str] days_of_week: Set of days of the week on which this schedule is active.
1325
+ :param str name: Name of the ScalingPlanPooledSchedule.
1326
+ :param str off_peak_load_balancing_algorithm: Load balancing algorithm for off-peak period.
1327
+ :param 'TimeResponse' off_peak_start_time: Starting time for off-peak period.
1328
+ :param str peak_load_balancing_algorithm: Load balancing algorithm for peak period.
1329
+ :param 'TimeResponse' peak_start_time: Starting time for peak period.
1330
+ :param int ramp_down_capacity_threshold_pct: Capacity threshold for ramp down period.
1331
+ :param bool ramp_down_force_logoff_users: Should users be logged off forcefully from hosts.
1332
+ :param str ramp_down_load_balancing_algorithm: Load balancing algorithm for ramp down period.
1333
+ :param int ramp_down_minimum_hosts_pct: Minimum host percentage for ramp down period.
1334
+ :param str ramp_down_notification_message: Notification message for users during ramp down period.
1335
+ :param 'TimeResponse' ramp_down_start_time: Starting time for ramp down period.
1336
+ :param str ramp_down_stop_hosts_when: Specifies when to stop hosts during ramp down period.
1337
+ :param int ramp_down_wait_time_minutes: Number of minutes to wait to stop hosts during ramp down period.
1338
+ :param int ramp_up_capacity_threshold_pct: Capacity threshold for ramp up period.
1339
+ :param str ramp_up_load_balancing_algorithm: Load balancing algorithm for ramp up period.
1340
+ :param int ramp_up_minimum_hosts_pct: Minimum host percentage for ramp up period.
1341
+ :param 'TimeResponse' ramp_up_start_time: Starting time for ramp up period.
1342
+ """
1343
+ if days_of_week is not None:
1344
+ pulumi.set(__self__, "days_of_week", days_of_week)
1345
+ if name is not None:
1346
+ pulumi.set(__self__, "name", name)
1347
+ if off_peak_load_balancing_algorithm is not None:
1348
+ pulumi.set(__self__, "off_peak_load_balancing_algorithm", off_peak_load_balancing_algorithm)
1349
+ if off_peak_start_time is not None:
1350
+ pulumi.set(__self__, "off_peak_start_time", off_peak_start_time)
1351
+ if peak_load_balancing_algorithm is not None:
1352
+ pulumi.set(__self__, "peak_load_balancing_algorithm", peak_load_balancing_algorithm)
1353
+ if peak_start_time is not None:
1354
+ pulumi.set(__self__, "peak_start_time", peak_start_time)
1355
+ if ramp_down_capacity_threshold_pct is not None:
1356
+ pulumi.set(__self__, "ramp_down_capacity_threshold_pct", ramp_down_capacity_threshold_pct)
1357
+ if ramp_down_force_logoff_users is not None:
1358
+ pulumi.set(__self__, "ramp_down_force_logoff_users", ramp_down_force_logoff_users)
1359
+ if ramp_down_load_balancing_algorithm is not None:
1360
+ pulumi.set(__self__, "ramp_down_load_balancing_algorithm", ramp_down_load_balancing_algorithm)
1361
+ if ramp_down_minimum_hosts_pct is not None:
1362
+ pulumi.set(__self__, "ramp_down_minimum_hosts_pct", ramp_down_minimum_hosts_pct)
1363
+ if ramp_down_notification_message is not None:
1364
+ pulumi.set(__self__, "ramp_down_notification_message", ramp_down_notification_message)
1365
+ if ramp_down_start_time is not None:
1366
+ pulumi.set(__self__, "ramp_down_start_time", ramp_down_start_time)
1367
+ if ramp_down_stop_hosts_when is not None:
1368
+ pulumi.set(__self__, "ramp_down_stop_hosts_when", ramp_down_stop_hosts_when)
1369
+ if ramp_down_wait_time_minutes is not None:
1370
+ pulumi.set(__self__, "ramp_down_wait_time_minutes", ramp_down_wait_time_minutes)
1371
+ if ramp_up_capacity_threshold_pct is not None:
1372
+ pulumi.set(__self__, "ramp_up_capacity_threshold_pct", ramp_up_capacity_threshold_pct)
1373
+ if ramp_up_load_balancing_algorithm is not None:
1374
+ pulumi.set(__self__, "ramp_up_load_balancing_algorithm", ramp_up_load_balancing_algorithm)
1375
+ if ramp_up_minimum_hosts_pct is not None:
1376
+ pulumi.set(__self__, "ramp_up_minimum_hosts_pct", ramp_up_minimum_hosts_pct)
1377
+ if ramp_up_start_time is not None:
1378
+ pulumi.set(__self__, "ramp_up_start_time", ramp_up_start_time)
1379
+
1380
+ @property
1381
+ @pulumi.getter(name="daysOfWeek")
1382
+ def days_of_week(self) -> Optional[Sequence[str]]:
1383
+ """
1384
+ Set of days of the week on which this schedule is active.
1385
+ """
1386
+ return pulumi.get(self, "days_of_week")
1387
+
1388
+ @property
1389
+ @pulumi.getter
1390
+ def name(self) -> Optional[str]:
1391
+ """
1392
+ Name of the ScalingPlanPooledSchedule.
1393
+ """
1394
+ return pulumi.get(self, "name")
1395
+
1396
+ @property
1397
+ @pulumi.getter(name="offPeakLoadBalancingAlgorithm")
1398
+ def off_peak_load_balancing_algorithm(self) -> Optional[str]:
1399
+ """
1400
+ Load balancing algorithm for off-peak period.
1401
+ """
1402
+ return pulumi.get(self, "off_peak_load_balancing_algorithm")
1403
+
1404
+ @property
1405
+ @pulumi.getter(name="offPeakStartTime")
1406
+ def off_peak_start_time(self) -> Optional['outputs.TimeResponse']:
1407
+ """
1408
+ Starting time for off-peak period.
1409
+ """
1410
+ return pulumi.get(self, "off_peak_start_time")
1411
+
1412
+ @property
1413
+ @pulumi.getter(name="peakLoadBalancingAlgorithm")
1414
+ def peak_load_balancing_algorithm(self) -> Optional[str]:
1415
+ """
1416
+ Load balancing algorithm for peak period.
1417
+ """
1418
+ return pulumi.get(self, "peak_load_balancing_algorithm")
1419
+
1420
+ @property
1421
+ @pulumi.getter(name="peakStartTime")
1422
+ def peak_start_time(self) -> Optional['outputs.TimeResponse']:
1423
+ """
1424
+ Starting time for peak period.
1425
+ """
1426
+ return pulumi.get(self, "peak_start_time")
1427
+
1428
+ @property
1429
+ @pulumi.getter(name="rampDownCapacityThresholdPct")
1430
+ def ramp_down_capacity_threshold_pct(self) -> Optional[int]:
1431
+ """
1432
+ Capacity threshold for ramp down period.
1433
+ """
1434
+ return pulumi.get(self, "ramp_down_capacity_threshold_pct")
1435
+
1436
+ @property
1437
+ @pulumi.getter(name="rampDownForceLogoffUsers")
1438
+ def ramp_down_force_logoff_users(self) -> Optional[bool]:
1439
+ """
1440
+ Should users be logged off forcefully from hosts.
1441
+ """
1442
+ return pulumi.get(self, "ramp_down_force_logoff_users")
1443
+
1444
+ @property
1445
+ @pulumi.getter(name="rampDownLoadBalancingAlgorithm")
1446
+ def ramp_down_load_balancing_algorithm(self) -> Optional[str]:
1447
+ """
1448
+ Load balancing algorithm for ramp down period.
1449
+ """
1450
+ return pulumi.get(self, "ramp_down_load_balancing_algorithm")
1451
+
1452
+ @property
1453
+ @pulumi.getter(name="rampDownMinimumHostsPct")
1454
+ def ramp_down_minimum_hosts_pct(self) -> Optional[int]:
1455
+ """
1456
+ Minimum host percentage for ramp down period.
1457
+ """
1458
+ return pulumi.get(self, "ramp_down_minimum_hosts_pct")
1459
+
1460
+ @property
1461
+ @pulumi.getter(name="rampDownNotificationMessage")
1462
+ def ramp_down_notification_message(self) -> Optional[str]:
1463
+ """
1464
+ Notification message for users during ramp down period.
1465
+ """
1466
+ return pulumi.get(self, "ramp_down_notification_message")
1467
+
1468
+ @property
1469
+ @pulumi.getter(name="rampDownStartTime")
1470
+ def ramp_down_start_time(self) -> Optional['outputs.TimeResponse']:
1471
+ """
1472
+ Starting time for ramp down period.
1473
+ """
1474
+ return pulumi.get(self, "ramp_down_start_time")
1475
+
1476
+ @property
1477
+ @pulumi.getter(name="rampDownStopHostsWhen")
1478
+ def ramp_down_stop_hosts_when(self) -> Optional[str]:
1479
+ """
1480
+ Specifies when to stop hosts during ramp down period.
1481
+ """
1482
+ return pulumi.get(self, "ramp_down_stop_hosts_when")
1483
+
1484
+ @property
1485
+ @pulumi.getter(name="rampDownWaitTimeMinutes")
1486
+ def ramp_down_wait_time_minutes(self) -> Optional[int]:
1487
+ """
1488
+ Number of minutes to wait to stop hosts during ramp down period.
1489
+ """
1490
+ return pulumi.get(self, "ramp_down_wait_time_minutes")
1491
+
1492
+ @property
1493
+ @pulumi.getter(name="rampUpCapacityThresholdPct")
1494
+ def ramp_up_capacity_threshold_pct(self) -> Optional[int]:
1495
+ """
1496
+ Capacity threshold for ramp up period.
1497
+ """
1498
+ return pulumi.get(self, "ramp_up_capacity_threshold_pct")
1499
+
1500
+ @property
1501
+ @pulumi.getter(name="rampUpLoadBalancingAlgorithm")
1502
+ def ramp_up_load_balancing_algorithm(self) -> Optional[str]:
1503
+ """
1504
+ Load balancing algorithm for ramp up period.
1505
+ """
1506
+ return pulumi.get(self, "ramp_up_load_balancing_algorithm")
1507
+
1508
+ @property
1509
+ @pulumi.getter(name="rampUpMinimumHostsPct")
1510
+ def ramp_up_minimum_hosts_pct(self) -> Optional[int]:
1511
+ """
1512
+ Minimum host percentage for ramp up period.
1513
+ """
1514
+ return pulumi.get(self, "ramp_up_minimum_hosts_pct")
1515
+
1516
+ @property
1517
+ @pulumi.getter(name="rampUpStartTime")
1518
+ def ramp_up_start_time(self) -> Optional['outputs.TimeResponse']:
1519
+ """
1520
+ Starting time for ramp up period.
1521
+ """
1522
+ return pulumi.get(self, "ramp_up_start_time")
1523
+
1524
+
1525
+ @pulumi.output_type
1526
+ class SystemDataResponse(dict):
1527
+ """
1528
+ Metadata pertaining to creation and last modification of the resource.
1529
+ """
1530
+ @staticmethod
1531
+ def __key_warning(key: str):
1532
+ suggest = None
1533
+ if key == "createdAt":
1534
+ suggest = "created_at"
1535
+ elif key == "createdBy":
1536
+ suggest = "created_by"
1537
+ elif key == "createdByType":
1538
+ suggest = "created_by_type"
1539
+ elif key == "lastModifiedAt":
1540
+ suggest = "last_modified_at"
1541
+ elif key == "lastModifiedBy":
1542
+ suggest = "last_modified_by"
1543
+ elif key == "lastModifiedByType":
1544
+ suggest = "last_modified_by_type"
1545
+
1546
+ if suggest:
1547
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1548
+
1549
+ def __getitem__(self, key: str) -> Any:
1550
+ SystemDataResponse.__key_warning(key)
1551
+ return super().__getitem__(key)
1552
+
1553
+ def get(self, key: str, default = None) -> Any:
1554
+ SystemDataResponse.__key_warning(key)
1555
+ return super().get(key, default)
1556
+
1557
+ def __init__(__self__, *,
1558
+ created_at: Optional[str] = None,
1559
+ created_by: Optional[str] = None,
1560
+ created_by_type: Optional[str] = None,
1561
+ last_modified_at: Optional[str] = None,
1562
+ last_modified_by: Optional[str] = None,
1563
+ last_modified_by_type: Optional[str] = None):
1564
+ """
1565
+ Metadata pertaining to creation and last modification of the resource.
1566
+ :param str created_at: The timestamp of resource creation (UTC).
1567
+ :param str created_by: The identity that created the resource.
1568
+ :param str created_by_type: The type of identity that created the resource.
1569
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1570
+ :param str last_modified_by: The identity that last modified the resource.
1571
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1572
+ """
1573
+ if created_at is not None:
1574
+ pulumi.set(__self__, "created_at", created_at)
1575
+ if created_by is not None:
1576
+ pulumi.set(__self__, "created_by", created_by)
1577
+ if created_by_type is not None:
1578
+ pulumi.set(__self__, "created_by_type", created_by_type)
1579
+ if last_modified_at is not None:
1580
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1581
+ if last_modified_by is not None:
1582
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1583
+ if last_modified_by_type is not None:
1584
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1585
+
1586
+ @property
1587
+ @pulumi.getter(name="createdAt")
1588
+ def created_at(self) -> Optional[str]:
1589
+ """
1590
+ The timestamp of resource creation (UTC).
1591
+ """
1592
+ return pulumi.get(self, "created_at")
1593
+
1594
+ @property
1595
+ @pulumi.getter(name="createdBy")
1596
+ def created_by(self) -> Optional[str]:
1597
+ """
1598
+ The identity that created the resource.
1599
+ """
1600
+ return pulumi.get(self, "created_by")
1601
+
1602
+ @property
1603
+ @pulumi.getter(name="createdByType")
1604
+ def created_by_type(self) -> Optional[str]:
1605
+ """
1606
+ The type of identity that created the resource.
1607
+ """
1608
+ return pulumi.get(self, "created_by_type")
1609
+
1610
+ @property
1611
+ @pulumi.getter(name="lastModifiedAt")
1612
+ def last_modified_at(self) -> Optional[str]:
1613
+ """
1614
+ The timestamp of resource last modification (UTC)
1615
+ """
1616
+ return pulumi.get(self, "last_modified_at")
1617
+
1618
+ @property
1619
+ @pulumi.getter(name="lastModifiedBy")
1620
+ def last_modified_by(self) -> Optional[str]:
1621
+ """
1622
+ The identity that last modified the resource.
1623
+ """
1624
+ return pulumi.get(self, "last_modified_by")
1625
+
1626
+ @property
1627
+ @pulumi.getter(name="lastModifiedByType")
1628
+ def last_modified_by_type(self) -> Optional[str]:
1629
+ """
1630
+ The type of identity that last modified the resource.
1631
+ """
1632
+ return pulumi.get(self, "last_modified_by_type")
1633
+
1634
+
1635
+ @pulumi.output_type
1636
+ class TimeResponse(dict):
1637
+ """
1638
+ The time for a scaling action to occur.
1639
+ """
1640
+ def __init__(__self__, *,
1641
+ hour: int,
1642
+ minute: int):
1643
+ """
1644
+ The time for a scaling action to occur.
1645
+ :param int hour: The hour.
1646
+ :param int minute: The minute.
1647
+ """
1648
+ pulumi.set(__self__, "hour", hour)
1649
+ pulumi.set(__self__, "minute", minute)
1650
+
1651
+ @property
1652
+ @pulumi.getter
1653
+ def hour(self) -> int:
1654
+ """
1655
+ The hour.
1656
+ """
1657
+ return pulumi.get(self, "hour")
1658
+
1659
+ @property
1660
+ @pulumi.getter
1661
+ def minute(self) -> int:
1662
+ """
1663
+ The minute.
1664
+ """
1665
+ return pulumi.get(self, "minute")
1666
+
1667
+