pulumi-azure-native 2.87.0a1739200739__py3-none-any.whl → 2.88.0a1739514756__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 (385) hide show
  1. pulumi_azure_native/__init__.py +72 -1
  2. pulumi_azure_native/communication/__init__.py +3 -0
  3. pulumi_azure_native/communication/communication_service.py +3 -3
  4. pulumi_azure_native/communication/domain.py +3 -3
  5. pulumi_azure_native/communication/email_service.py +3 -3
  6. pulumi_azure_native/communication/get_communication_service.py +2 -2
  7. pulumi_azure_native/communication/get_domain.py +2 -2
  8. pulumi_azure_native/communication/get_email_service.py +2 -2
  9. pulumi_azure_native/communication/get_sender_username.py +2 -2
  10. pulumi_azure_native/communication/get_suppression_list.py +4 -0
  11. pulumi_azure_native/communication/get_suppression_list_address.py +4 -0
  12. pulumi_azure_native/communication/list_communication_service_keys.py +2 -2
  13. pulumi_azure_native/communication/sender_username.py +3 -3
  14. pulumi_azure_native/communication/suppression_list.py +5 -1
  15. pulumi_azure_native/communication/suppression_list_address.py +5 -1
  16. pulumi_azure_native/communication/v20220701preview/domain.py +1 -1
  17. pulumi_azure_native/communication/v20230331/communication_service.py +1 -1
  18. pulumi_azure_native/communication/v20230331/domain.py +1 -1
  19. pulumi_azure_native/communication/v20230331/email_service.py +1 -1
  20. pulumi_azure_native/communication/v20230331/sender_username.py +1 -1
  21. pulumi_azure_native/communication/v20230401/communication_service.py +1 -1
  22. pulumi_azure_native/communication/v20230401/domain.py +1 -1
  23. pulumi_azure_native/communication/v20230401/email_service.py +1 -1
  24. pulumi_azure_native/communication/v20230401/sender_username.py +1 -1
  25. pulumi_azure_native/communication/v20230401preview/communication_service.py +1 -1
  26. pulumi_azure_native/communication/v20230401preview/domain.py +1 -1
  27. pulumi_azure_native/communication/v20230401preview/email_service.py +1 -1
  28. pulumi_azure_native/communication/v20230401preview/sender_username.py +1 -1
  29. pulumi_azure_native/communication/v20230601preview/communication_service.py +1 -1
  30. pulumi_azure_native/communication/v20230601preview/domain.py +1 -1
  31. pulumi_azure_native/communication/v20230601preview/email_service.py +1 -1
  32. pulumi_azure_native/communication/v20230601preview/sender_username.py +1 -1
  33. pulumi_azure_native/communication/v20230601preview/suppression_list.py +1 -1
  34. pulumi_azure_native/communication/v20230601preview/suppression_list_address.py +1 -1
  35. pulumi_azure_native/communication/v20240901preview/__init__.py +25 -0
  36. pulumi_azure_native/communication/v20240901preview/_enums.py +38 -0
  37. pulumi_azure_native/communication/v20240901preview/_inputs.py +79 -0
  38. pulumi_azure_native/communication/v20240901preview/communication_service.py +367 -0
  39. pulumi_azure_native/communication/v20240901preview/domain.py +368 -0
  40. pulumi_azure_native/communication/v20240901preview/email_service.py +267 -0
  41. pulumi_azure_native/communication/v20240901preview/get_communication_service.py +269 -0
  42. pulumi_azure_native/communication/v20240901preview/get_domain.py +275 -0
  43. pulumi_azure_native/communication/v20240901preview/get_email_service.py +185 -0
  44. pulumi_azure_native/communication/v20240901preview/get_sender_username.py +197 -0
  45. pulumi_azure_native/communication/v20240901preview/get_smtp_username.py +177 -0
  46. pulumi_azure_native/communication/v20240901preview/get_suppression_list.py +197 -0
  47. pulumi_azure_native/communication/v20240901preview/get_suppression_list_address.py +231 -0
  48. pulumi_azure_native/communication/v20240901preview/list_communication_service_keys.py +128 -0
  49. pulumi_azure_native/communication/v20240901preview/outputs.py +560 -0
  50. pulumi_azure_native/communication/v20240901preview/sender_username.py +290 -0
  51. pulumi_azure_native/communication/v20240901preview/smtp_username.py +278 -0
  52. pulumi_azure_native/communication/v20240901preview/suppression_list.py +270 -0
  53. pulumi_azure_native/communication/v20240901preview/suppression_list_address.py +369 -0
  54. pulumi_azure_native/datafactory/_inputs.py +43 -43
  55. pulumi_azure_native/datafactory/outputs.py +34 -34
  56. pulumi_azure_native/datafactory/v20180601/_inputs.py +43 -43
  57. pulumi_azure_native/datafactory/v20180601/outputs.py +34 -34
  58. pulumi_azure_native/eventgrid/__init__.py +3 -0
  59. pulumi_azure_native/eventgrid/ca_certificate.py +3 -3
  60. pulumi_azure_native/eventgrid/channel.py +3 -3
  61. pulumi_azure_native/eventgrid/client.py +3 -3
  62. pulumi_azure_native/eventgrid/client_group.py +3 -3
  63. pulumi_azure_native/eventgrid/domain.py +3 -3
  64. pulumi_azure_native/eventgrid/domain_event_subscription.py +3 -3
  65. pulumi_azure_native/eventgrid/domain_topic.py +3 -3
  66. pulumi_azure_native/eventgrid/domain_topic_event_subscription.py +3 -3
  67. pulumi_azure_native/eventgrid/event_subscription.py +3 -3
  68. pulumi_azure_native/eventgrid/get_ca_certificate.py +2 -2
  69. pulumi_azure_native/eventgrid/get_channel.py +2 -2
  70. pulumi_azure_native/eventgrid/get_channel_full_url.py +2 -2
  71. pulumi_azure_native/eventgrid/get_client.py +2 -2
  72. pulumi_azure_native/eventgrid/get_client_group.py +2 -2
  73. pulumi_azure_native/eventgrid/get_domain.py +2 -2
  74. pulumi_azure_native/eventgrid/get_domain_event_subscription.py +2 -2
  75. pulumi_azure_native/eventgrid/get_domain_event_subscription_delivery_attributes.py +2 -2
  76. pulumi_azure_native/eventgrid/get_domain_event_subscription_full_url.py +2 -2
  77. pulumi_azure_native/eventgrid/get_domain_topic.py +2 -2
  78. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription.py +2 -2
  79. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_delivery_attributes.py +2 -2
  80. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_full_url.py +2 -2
  81. pulumi_azure_native/eventgrid/get_event_subscription.py +2 -2
  82. pulumi_azure_native/eventgrid/get_event_subscription_delivery_attributes.py +2 -2
  83. pulumi_azure_native/eventgrid/get_event_subscription_full_url.py +2 -2
  84. pulumi_azure_native/eventgrid/get_namespace.py +2 -2
  85. pulumi_azure_native/eventgrid/get_namespace_topic.py +2 -2
  86. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription.py +2 -2
  87. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_delivery_attributes.py +2 -2
  88. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_full_url.py +2 -2
  89. pulumi_azure_native/eventgrid/get_partner_configuration.py +2 -2
  90. pulumi_azure_native/eventgrid/get_partner_namespace.py +2 -2
  91. pulumi_azure_native/eventgrid/get_partner_registration.py +2 -2
  92. pulumi_azure_native/eventgrid/get_partner_topic.py +2 -2
  93. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription.py +2 -2
  94. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_delivery_attributes.py +2 -2
  95. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_full_url.py +2 -2
  96. pulumi_azure_native/eventgrid/get_permission_binding.py +2 -2
  97. pulumi_azure_native/eventgrid/get_private_endpoint_connection.py +2 -2
  98. pulumi_azure_native/eventgrid/get_system_topic.py +2 -2
  99. pulumi_azure_native/eventgrid/get_system_topic_event_subscription.py +2 -2
  100. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_delivery_attributes.py +2 -2
  101. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_full_url.py +2 -2
  102. pulumi_azure_native/eventgrid/get_topic.py +2 -2
  103. pulumi_azure_native/eventgrid/get_topic_event_subscription.py +2 -2
  104. pulumi_azure_native/eventgrid/get_topic_event_subscription_delivery_attributes.py +2 -2
  105. pulumi_azure_native/eventgrid/get_topic_event_subscription_full_url.py +2 -2
  106. pulumi_azure_native/eventgrid/get_topic_space.py +2 -2
  107. pulumi_azure_native/eventgrid/list_domain_shared_access_keys.py +2 -2
  108. pulumi_azure_native/eventgrid/list_namespace_shared_access_keys.py +2 -2
  109. pulumi_azure_native/eventgrid/list_namespace_topic_shared_access_keys.py +2 -2
  110. pulumi_azure_native/eventgrid/list_partner_namespace_shared_access_keys.py +2 -2
  111. pulumi_azure_native/eventgrid/list_topic_shared_access_keys.py +2 -2
  112. pulumi_azure_native/eventgrid/namespace.py +3 -3
  113. pulumi_azure_native/eventgrid/namespace_topic.py +3 -3
  114. pulumi_azure_native/eventgrid/namespace_topic_event_subscription.py +3 -3
  115. pulumi_azure_native/eventgrid/partner_configuration.py +3 -3
  116. pulumi_azure_native/eventgrid/partner_namespace.py +3 -3
  117. pulumi_azure_native/eventgrid/partner_registration.py +3 -3
  118. pulumi_azure_native/eventgrid/partner_topic.py +3 -3
  119. pulumi_azure_native/eventgrid/partner_topic_event_subscription.py +3 -3
  120. pulumi_azure_native/eventgrid/permission_binding.py +3 -3
  121. pulumi_azure_native/eventgrid/private_endpoint_connection.py +3 -3
  122. pulumi_azure_native/eventgrid/system_topic.py +3 -3
  123. pulumi_azure_native/eventgrid/system_topic_event_subscription.py +3 -3
  124. pulumi_azure_native/eventgrid/topic.py +3 -3
  125. pulumi_azure_native/eventgrid/topic_event_subscription.py +3 -3
  126. pulumi_azure_native/eventgrid/topic_space.py +3 -3
  127. pulumi_azure_native/eventgrid/v20200401preview/domain.py +1 -1
  128. pulumi_azure_native/eventgrid/v20200401preview/topic.py +1 -1
  129. pulumi_azure_native/eventgrid/v20211015preview/partner_registration.py +1 -1
  130. pulumi_azure_native/eventgrid/v20220615/channel.py +1 -1
  131. pulumi_azure_native/eventgrid/v20220615/domain.py +1 -1
  132. pulumi_azure_native/eventgrid/v20220615/domain_event_subscription.py +1 -1
  133. pulumi_azure_native/eventgrid/v20220615/domain_topic.py +1 -1
  134. pulumi_azure_native/eventgrid/v20220615/domain_topic_event_subscription.py +1 -1
  135. pulumi_azure_native/eventgrid/v20220615/event_subscription.py +1 -1
  136. pulumi_azure_native/eventgrid/v20220615/partner_configuration.py +1 -1
  137. pulumi_azure_native/eventgrid/v20220615/partner_namespace.py +1 -1
  138. pulumi_azure_native/eventgrid/v20220615/partner_registration.py +1 -1
  139. pulumi_azure_native/eventgrid/v20220615/partner_topic.py +1 -1
  140. pulumi_azure_native/eventgrid/v20220615/partner_topic_event_subscription.py +1 -1
  141. pulumi_azure_native/eventgrid/v20220615/private_endpoint_connection.py +1 -1
  142. pulumi_azure_native/eventgrid/v20220615/system_topic.py +1 -1
  143. pulumi_azure_native/eventgrid/v20220615/system_topic_event_subscription.py +1 -1
  144. pulumi_azure_native/eventgrid/v20220615/topic.py +1 -1
  145. pulumi_azure_native/eventgrid/v20220615/topic_event_subscription.py +1 -1
  146. pulumi_azure_native/eventgrid/v20230601preview/ca_certificate.py +1 -1
  147. pulumi_azure_native/eventgrid/v20230601preview/channel.py +1 -1
  148. pulumi_azure_native/eventgrid/v20230601preview/client.py +1 -1
  149. pulumi_azure_native/eventgrid/v20230601preview/client_group.py +1 -1
  150. pulumi_azure_native/eventgrid/v20230601preview/domain.py +1 -1
  151. pulumi_azure_native/eventgrid/v20230601preview/domain_event_subscription.py +1 -1
  152. pulumi_azure_native/eventgrid/v20230601preview/domain_topic.py +1 -1
  153. pulumi_azure_native/eventgrid/v20230601preview/domain_topic_event_subscription.py +1 -1
  154. pulumi_azure_native/eventgrid/v20230601preview/event_subscription.py +1 -1
  155. pulumi_azure_native/eventgrid/v20230601preview/namespace.py +1 -1
  156. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic.py +1 -1
  157. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic_event_subscription.py +1 -1
  158. pulumi_azure_native/eventgrid/v20230601preview/partner_configuration.py +1 -1
  159. pulumi_azure_native/eventgrid/v20230601preview/partner_namespace.py +1 -1
  160. pulumi_azure_native/eventgrid/v20230601preview/partner_registration.py +1 -1
  161. pulumi_azure_native/eventgrid/v20230601preview/partner_topic.py +1 -1
  162. pulumi_azure_native/eventgrid/v20230601preview/partner_topic_event_subscription.py +1 -1
  163. pulumi_azure_native/eventgrid/v20230601preview/permission_binding.py +1 -1
  164. pulumi_azure_native/eventgrid/v20230601preview/private_endpoint_connection.py +1 -1
  165. pulumi_azure_native/eventgrid/v20230601preview/system_topic.py +1 -1
  166. pulumi_azure_native/eventgrid/v20230601preview/system_topic_event_subscription.py +1 -1
  167. pulumi_azure_native/eventgrid/v20230601preview/topic.py +1 -1
  168. pulumi_azure_native/eventgrid/v20230601preview/topic_event_subscription.py +1 -1
  169. pulumi_azure_native/eventgrid/v20230601preview/topic_space.py +1 -1
  170. pulumi_azure_native/eventgrid/v20231215preview/ca_certificate.py +1 -1
  171. pulumi_azure_native/eventgrid/v20231215preview/channel.py +1 -1
  172. pulumi_azure_native/eventgrid/v20231215preview/client.py +1 -1
  173. pulumi_azure_native/eventgrid/v20231215preview/client_group.py +1 -1
  174. pulumi_azure_native/eventgrid/v20231215preview/domain.py +1 -1
  175. pulumi_azure_native/eventgrid/v20231215preview/domain_event_subscription.py +1 -1
  176. pulumi_azure_native/eventgrid/v20231215preview/domain_topic.py +1 -1
  177. pulumi_azure_native/eventgrid/v20231215preview/domain_topic_event_subscription.py +1 -1
  178. pulumi_azure_native/eventgrid/v20231215preview/event_subscription.py +1 -1
  179. pulumi_azure_native/eventgrid/v20231215preview/namespace.py +1 -1
  180. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic.py +1 -1
  181. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic_event_subscription.py +1 -1
  182. pulumi_azure_native/eventgrid/v20231215preview/partner_configuration.py +1 -1
  183. pulumi_azure_native/eventgrid/v20231215preview/partner_namespace.py +1 -1
  184. pulumi_azure_native/eventgrid/v20231215preview/partner_registration.py +1 -1
  185. pulumi_azure_native/eventgrid/v20231215preview/partner_topic.py +1 -1
  186. pulumi_azure_native/eventgrid/v20231215preview/partner_topic_event_subscription.py +1 -1
  187. pulumi_azure_native/eventgrid/v20231215preview/permission_binding.py +1 -1
  188. pulumi_azure_native/eventgrid/v20231215preview/private_endpoint_connection.py +1 -1
  189. pulumi_azure_native/eventgrid/v20231215preview/system_topic.py +1 -1
  190. pulumi_azure_native/eventgrid/v20231215preview/system_topic_event_subscription.py +1 -1
  191. pulumi_azure_native/eventgrid/v20231215preview/topic.py +1 -1
  192. pulumi_azure_native/eventgrid/v20231215preview/topic_event_subscription.py +1 -1
  193. pulumi_azure_native/eventgrid/v20231215preview/topic_space.py +1 -1
  194. pulumi_azure_native/eventgrid/v20240601preview/ca_certificate.py +1 -1
  195. pulumi_azure_native/eventgrid/v20240601preview/channel.py +1 -1
  196. pulumi_azure_native/eventgrid/v20240601preview/client.py +1 -1
  197. pulumi_azure_native/eventgrid/v20240601preview/client_group.py +1 -1
  198. pulumi_azure_native/eventgrid/v20240601preview/domain.py +1 -1
  199. pulumi_azure_native/eventgrid/v20240601preview/domain_event_subscription.py +1 -1
  200. pulumi_azure_native/eventgrid/v20240601preview/domain_topic.py +1 -1
  201. pulumi_azure_native/eventgrid/v20240601preview/domain_topic_event_subscription.py +1 -1
  202. pulumi_azure_native/eventgrid/v20240601preview/event_subscription.py +1 -1
  203. pulumi_azure_native/eventgrid/v20240601preview/namespace.py +1 -1
  204. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic.py +1 -1
  205. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic_event_subscription.py +1 -1
  206. pulumi_azure_native/eventgrid/v20240601preview/partner_configuration.py +1 -1
  207. pulumi_azure_native/eventgrid/v20240601preview/partner_namespace.py +1 -1
  208. pulumi_azure_native/eventgrid/v20240601preview/partner_registration.py +1 -1
  209. pulumi_azure_native/eventgrid/v20240601preview/partner_topic.py +1 -1
  210. pulumi_azure_native/eventgrid/v20240601preview/partner_topic_event_subscription.py +1 -1
  211. pulumi_azure_native/eventgrid/v20240601preview/permission_binding.py +1 -1
  212. pulumi_azure_native/eventgrid/v20240601preview/private_endpoint_connection.py +1 -1
  213. pulumi_azure_native/eventgrid/v20240601preview/system_topic.py +1 -1
  214. pulumi_azure_native/eventgrid/v20240601preview/system_topic_event_subscription.py +1 -1
  215. pulumi_azure_native/eventgrid/v20240601preview/topic.py +1 -1
  216. pulumi_azure_native/eventgrid/v20240601preview/topic_event_subscription.py +1 -1
  217. pulumi_azure_native/eventgrid/v20240601preview/topic_space.py +1 -1
  218. pulumi_azure_native/eventgrid/v20241215preview/ca_certificate.py +1 -1
  219. pulumi_azure_native/eventgrid/v20241215preview/channel.py +1 -1
  220. pulumi_azure_native/eventgrid/v20241215preview/client.py +1 -1
  221. pulumi_azure_native/eventgrid/v20241215preview/client_group.py +1 -1
  222. pulumi_azure_native/eventgrid/v20241215preview/domain.py +1 -1
  223. pulumi_azure_native/eventgrid/v20241215preview/domain_event_subscription.py +1 -1
  224. pulumi_azure_native/eventgrid/v20241215preview/domain_topic.py +1 -1
  225. pulumi_azure_native/eventgrid/v20241215preview/domain_topic_event_subscription.py +1 -1
  226. pulumi_azure_native/eventgrid/v20241215preview/event_subscription.py +1 -1
  227. pulumi_azure_native/eventgrid/v20241215preview/namespace.py +1 -1
  228. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic.py +1 -1
  229. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic_event_subscription.py +1 -1
  230. pulumi_azure_native/eventgrid/v20241215preview/partner_configuration.py +1 -1
  231. pulumi_azure_native/eventgrid/v20241215preview/partner_namespace.py +1 -1
  232. pulumi_azure_native/eventgrid/v20241215preview/partner_registration.py +1 -1
  233. pulumi_azure_native/eventgrid/v20241215preview/partner_topic.py +1 -1
  234. pulumi_azure_native/eventgrid/v20241215preview/partner_topic_event_subscription.py +1 -1
  235. pulumi_azure_native/eventgrid/v20241215preview/permission_binding.py +1 -1
  236. pulumi_azure_native/eventgrid/v20241215preview/private_endpoint_connection.py +1 -1
  237. pulumi_azure_native/eventgrid/v20241215preview/system_topic.py +1 -1
  238. pulumi_azure_native/eventgrid/v20241215preview/system_topic_event_subscription.py +1 -1
  239. pulumi_azure_native/eventgrid/v20241215preview/topic.py +1 -1
  240. pulumi_azure_native/eventgrid/v20241215preview/topic_event_subscription.py +1 -1
  241. pulumi_azure_native/eventgrid/v20241215preview/topic_space.py +1 -1
  242. pulumi_azure_native/eventgrid/v20250215/__init__.py +78 -0
  243. pulumi_azure_native/eventgrid/v20250215/_enums.py +405 -0
  244. pulumi_azure_native/eventgrid/v20250215/_inputs.py +6881 -0
  245. pulumi_azure_native/eventgrid/v20250215/ca_certificate.py +278 -0
  246. pulumi_azure_native/eventgrid/v20250215/channel.py +370 -0
  247. pulumi_azure_native/eventgrid/v20250215/client.py +359 -0
  248. pulumi_azure_native/eventgrid/v20250215/client_group.py +262 -0
  249. pulumi_azure_native/eventgrid/v20250215/domain.py +664 -0
  250. pulumi_azure_native/eventgrid/v20250215/domain_event_subscription.py +493 -0
  251. pulumi_azure_native/eventgrid/v20250215/domain_topic.py +200 -0
  252. pulumi_azure_native/eventgrid/v20250215/domain_topic_event_subscription.py +514 -0
  253. pulumi_azure_native/eventgrid/v20250215/event_subscription.py +472 -0
  254. pulumi_azure_native/eventgrid/v20250215/get_ca_certificate.py +205 -0
  255. pulumi_azure_native/eventgrid/v20250215/get_channel.py +220 -0
  256. pulumi_azure_native/eventgrid/v20250215/get_channel_full_url.py +92 -0
  257. pulumi_azure_native/eventgrid/v20250215/get_client.py +221 -0
  258. pulumi_azure_native/eventgrid/v20250215/get_client_group.py +178 -0
  259. pulumi_azure_native/eventgrid/v20250215/get_domain.py +381 -0
  260. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription.py +293 -0
  261. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_delivery_attributes.py +93 -0
  262. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_full_url.py +92 -0
  263. pulumi_azure_native/eventgrid/v20250215/get_domain_topic.py +149 -0
  264. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription.py +299 -0
  265. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_delivery_attributes.py +99 -0
  266. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_full_url.py +98 -0
  267. pulumi_azure_native/eventgrid/v20250215/get_event_subscription.py +287 -0
  268. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_delivery_attributes.py +87 -0
  269. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_full_url.py +86 -0
  270. pulumi_azure_native/eventgrid/v20250215/get_namespace.py +302 -0
  271. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic.py +192 -0
  272. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription.py +211 -0
  273. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_delivery_attributes.py +99 -0
  274. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_full_url.py +98 -0
  275. pulumi_azure_native/eventgrid/v20250215/get_partner_configuration.py +179 -0
  276. pulumi_azure_native/eventgrid/v20250215/get_partner_namespace.py +286 -0
  277. pulumi_azure_native/eventgrid/v20250215/get_partner_registration.py +186 -0
  278. pulumi_azure_native/eventgrid/v20250215/get_partner_topic.py +285 -0
  279. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription.py +293 -0
  280. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_delivery_attributes.py +93 -0
  281. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_full_url.py +92 -0
  282. pulumi_azure_native/eventgrid/v20250215/get_permission_binding.py +207 -0
  283. pulumi_azure_native/eventgrid/v20250215/get_private_endpoint_connection.py +180 -0
  284. pulumi_azure_native/eventgrid/v20250215/get_system_topic.py +227 -0
  285. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription.py +293 -0
  286. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_delivery_attributes.py +93 -0
  287. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_full_url.py +92 -0
  288. pulumi_azure_native/eventgrid/v20250215/get_topic.py +341 -0
  289. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription.py +293 -0
  290. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_delivery_attributes.py +93 -0
  291. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_full_url.py +92 -0
  292. pulumi_azure_native/eventgrid/v20250215/get_topic_space.py +181 -0
  293. pulumi_azure_native/eventgrid/v20250215/list_domain_shared_access_keys.py +100 -0
  294. pulumi_azure_native/eventgrid/v20250215/list_namespace_shared_access_keys.py +100 -0
  295. pulumi_azure_native/eventgrid/v20250215/list_namespace_topic_shared_access_keys.py +106 -0
  296. pulumi_azure_native/eventgrid/v20250215/list_partner_namespace_shared_access_keys.py +100 -0
  297. pulumi_azure_native/eventgrid/v20250215/list_topic_shared_access_keys.py +100 -0
  298. pulumi_azure_native/eventgrid/v20250215/namespace.py +520 -0
  299. pulumi_azure_native/eventgrid/v20250215/namespace_topic.py +296 -0
  300. pulumi_azure_native/eventgrid/v20250215/namespace_topic_event_subscription.py +339 -0
  301. pulumi_azure_native/eventgrid/v20250215/outputs.py +5875 -0
  302. pulumi_azure_native/eventgrid/v20250215/partner_configuration.py +267 -0
  303. pulumi_azure_native/eventgrid/v20250215/partner_namespace.py +457 -0
  304. pulumi_azure_native/eventgrid/v20250215/partner_registration.py +270 -0
  305. pulumi_azure_native/eventgrid/v20250215/partner_topic.py +479 -0
  306. pulumi_azure_native/eventgrid/v20250215/partner_topic_event_subscription.py +493 -0
  307. pulumi_azure_native/eventgrid/v20250215/permission_binding.py +325 -0
  308. pulumi_azure_native/eventgrid/v20250215/private_endpoint_connection.py +317 -0
  309. pulumi_azure_native/eventgrid/v20250215/system_topic.py +336 -0
  310. pulumi_azure_native/eventgrid/v20250215/system_topic_event_subscription.py +493 -0
  311. pulumi_azure_native/eventgrid/v20250215/topic.py +550 -0
  312. pulumi_azure_native/eventgrid/v20250215/topic_event_subscription.py +493 -0
  313. pulumi_azure_native/eventgrid/v20250215/topic_space.py +274 -0
  314. pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py +13 -78
  315. pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +10 -69
  316. pulumi_azure_native/netapp/__init__.py +1 -0
  317. pulumi_azure_native/netapp/get_account_key_vault_status.py +131 -0
  318. pulumi_azure_native/netapp/outputs.py +36 -0
  319. pulumi_azure_native/netapp/v20240901/__init__.py +1 -0
  320. pulumi_azure_native/netapp/v20240901/get_account_change_key_vault_information.py +129 -0
  321. pulumi_azure_native/netapp/v20240901/outputs.py +36 -0
  322. pulumi_azure_native/netapp/v20240901preview/__init__.py +1 -0
  323. pulumi_azure_native/netapp/v20240901preview/get_account_key_vault_status.py +129 -0
  324. pulumi_azure_native/netapp/v20240901preview/outputs.py +36 -0
  325. pulumi_azure_native/pulumi-plugin.json +1 -1
  326. pulumi_azure_native/sovereign/_enums.py +15 -15
  327. pulumi_azure_native/sovereign/_inputs.py +129 -129
  328. pulumi_azure_native/sovereign/get_landing_zone_account_operation.py +5 -5
  329. pulumi_azure_native/sovereign/get_landing_zone_configuration_operation.py +4 -4
  330. pulumi_azure_native/sovereign/get_landing_zone_registration_operation.py +7 -7
  331. pulumi_azure_native/sovereign/landing_zone_account_operation.py +5 -5
  332. pulumi_azure_native/sovereign/landing_zone_configuration_operation.py +3 -3
  333. pulumi_azure_native/sovereign/landing_zone_registration_operation.py +8 -8
  334. pulumi_azure_native/sovereign/outputs.py +100 -100
  335. pulumi_azure_native/sovereign/v20250227preview/_enums.py +15 -15
  336. pulumi_azure_native/sovereign/v20250227preview/_inputs.py +129 -129
  337. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_account_operation.py +5 -5
  338. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_configuration_operation.py +4 -4
  339. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_registration_operation.py +7 -7
  340. pulumi_azure_native/sovereign/v20250227preview/landing_zone_account_operation.py +5 -5
  341. pulumi_azure_native/sovereign/v20250227preview/landing_zone_configuration_operation.py +3 -3
  342. pulumi_azure_native/sovereign/v20250227preview/landing_zone_registration_operation.py +8 -8
  343. pulumi_azure_native/sovereign/v20250227preview/outputs.py +100 -100
  344. pulumi_azure_native/videoindexer/__init__.py +3 -0
  345. pulumi_azure_native/videoindexer/account.py +3 -3
  346. pulumi_azure_native/videoindexer/get_account.py +2 -2
  347. pulumi_azure_native/videoindexer/v20220801/account.py +1 -1
  348. pulumi_azure_native/videoindexer/v20240101/account.py +1 -1
  349. pulumi_azure_native/videoindexer/v20240401preview/account.py +1 -1
  350. pulumi_azure_native/videoindexer/v20240601preview/account.py +1 -1
  351. pulumi_azure_native/videoindexer/v20240923preview/account.py +1 -1
  352. pulumi_azure_native/videoindexer/v20250101/__init__.py +12 -0
  353. pulumi_azure_native/videoindexer/v20250101/_enums.py +19 -0
  354. pulumi_azure_native/videoindexer/v20250101/_inputs.py +195 -0
  355. pulumi_azure_native/videoindexer/v20250101/account.py +398 -0
  356. pulumi_azure_native/videoindexer/v20250101/get_account.py +283 -0
  357. pulumi_azure_native/videoindexer/v20250101/outputs.py +373 -0
  358. pulumi_azure_native/web/container_app.py +3 -3
  359. pulumi_azure_native/web/get_container_app.py +2 -2
  360. pulumi_azure_native/web/list_container_app_secrets.py +2 -2
  361. pulumi_azure_native/web/v20230101/container_app.py +1 -1
  362. pulumi_azure_native/web/v20231201/container_app.py +1 -1
  363. pulumi_azure_native/web/v20240401/__init__.py +0 -3
  364. pulumi_azure_native/web/v20240401/_enums.py +0 -20
  365. pulumi_azure_native/web/v20240401/_inputs.py +43 -1574
  366. pulumi_azure_native/web/v20240401/outputs.py +19 -1212
  367. pulumi_azure_native/weightsandbiases/__init__.py +20 -0
  368. pulumi_azure_native/weightsandbiases/_enums.py +84 -0
  369. pulumi_azure_native/weightsandbiases/_inputs.py +658 -0
  370. pulumi_azure_native/weightsandbiases/get_instance.py +187 -0
  371. pulumi_azure_native/weightsandbiases/instance.py +289 -0
  372. pulumi_azure_native/weightsandbiases/outputs.py +747 -0
  373. pulumi_azure_native/weightsandbiases/v20240918preview/__init__.py +12 -0
  374. pulumi_azure_native/weightsandbiases/v20240918preview/_enums.py +84 -0
  375. pulumi_azure_native/weightsandbiases/v20240918preview/_inputs.py +658 -0
  376. pulumi_azure_native/weightsandbiases/v20240918preview/get_instance.py +185 -0
  377. pulumi_azure_native/weightsandbiases/v20240918preview/instance.py +287 -0
  378. pulumi_azure_native/weightsandbiases/v20240918preview/outputs.py +747 -0
  379. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/METADATA +1 -1
  380. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/RECORD +382 -273
  381. pulumi_azure_native/web/v20240401/container_app.py +0 -364
  382. pulumi_azure_native/web/v20240401/get_container_app.py +0 -241
  383. pulumi_azure_native/web/v20240401/list_container_app_secrets.py +0 -81
  384. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/WHEEL +0 -0
  385. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/top_level.txt +0 -0
@@ -65226,12 +65226,12 @@ class JsonWriteSettingsArgs:
65226
65226
  if not MYPY:
65227
65227
  class LakeHouseLinkedServiceArgsDict(TypedDict):
65228
65228
  """
65229
- Microsoft Fabric LakeHouse linked service.
65229
+ Microsoft Fabric Lakehouse linked service.
65230
65230
  """
65231
65231
  type: pulumi.Input[str]
65232
65232
  """
65233
65233
  Type of linked service.
65234
- Expected value is 'LakeHouse'.
65234
+ Expected value is 'Lakehouse'.
65235
65235
  """
65236
65236
  annotations: NotRequired[pulumi.Input[Sequence[Any]]]
65237
65237
  """
@@ -65239,7 +65239,7 @@ if not MYPY:
65239
65239
  """
65240
65240
  artifact_id: NotRequired[Any]
65241
65241
  """
65242
- The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
65242
+ The ID of Microsoft Fabric Lakehouse artifact. Type: string (or Expression with resultType string).
65243
65243
  """
65244
65244
  connect_via: NotRequired[pulumi.Input['IntegrationRuntimeReferenceArgsDict']]
65245
65245
  """
@@ -65267,11 +65267,11 @@ if not MYPY:
65267
65267
  """
65268
65268
  service_principal_id: NotRequired[Any]
65269
65269
  """
65270
- The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
65270
+ The ID of the application used to authenticate against Microsoft Fabric Lakehouse. Type: string (or Expression with resultType string).
65271
65271
  """
65272
65272
  service_principal_key: NotRequired[pulumi.Input[Union['AzureKeyVaultSecretReferenceArgsDict', 'SecureStringArgsDict']]]
65273
65273
  """
65274
- The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
65274
+ The Key of the application used to authenticate against Microsoft Fabric Lakehouse.
65275
65275
  """
65276
65276
  tenant: NotRequired[Any]
65277
65277
  """
@@ -65306,24 +65306,24 @@ class LakeHouseLinkedServiceArgs:
65306
65306
  version: Optional[pulumi.Input[str]] = None,
65307
65307
  workspace_id: Optional[Any] = None):
65308
65308
  """
65309
- Microsoft Fabric LakeHouse linked service.
65309
+ Microsoft Fabric Lakehouse linked service.
65310
65310
  :param pulumi.Input[str] type: Type of linked service.
65311
- Expected value is 'LakeHouse'.
65311
+ Expected value is 'Lakehouse'.
65312
65312
  :param pulumi.Input[Sequence[Any]] annotations: List of tags that can be used for describing the linked service.
65313
- :param Any artifact_id: The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
65313
+ :param Any artifact_id: The ID of Microsoft Fabric Lakehouse artifact. Type: string (or Expression with resultType string).
65314
65314
  :param pulumi.Input['IntegrationRuntimeReferenceArgs'] connect_via: The integration runtime reference.
65315
65315
  :param pulumi.Input[str] description: Linked service description.
65316
65316
  :param pulumi.Input[str] encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
65317
65317
  :param pulumi.Input[Mapping[str, pulumi.Input['ParameterSpecificationArgs']]] parameters: Parameters for linked service.
65318
65318
  :param pulumi.Input[Union['AzureKeyVaultSecretReferenceArgs', 'SecureStringArgs']] service_principal_credential: The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
65319
65319
  :param Any service_principal_credential_type: The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
65320
- :param Any service_principal_id: The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
65321
- :param pulumi.Input[Union['AzureKeyVaultSecretReferenceArgs', 'SecureStringArgs']] service_principal_key: The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
65320
+ :param Any service_principal_id: The ID of the application used to authenticate against Microsoft Fabric Lakehouse. Type: string (or Expression with resultType string).
65321
+ :param pulumi.Input[Union['AzureKeyVaultSecretReferenceArgs', 'SecureStringArgs']] service_principal_key: The Key of the application used to authenticate against Microsoft Fabric Lakehouse.
65322
65322
  :param Any tenant: The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
65323
65323
  :param pulumi.Input[str] version: Version of the linked service.
65324
65324
  :param Any workspace_id: The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
65325
65325
  """
65326
- pulumi.set(__self__, "type", 'LakeHouse')
65326
+ pulumi.set(__self__, "type", 'Lakehouse')
65327
65327
  if annotations is not None:
65328
65328
  pulumi.set(__self__, "annotations", annotations)
65329
65329
  if artifact_id is not None:
@@ -65356,7 +65356,7 @@ class LakeHouseLinkedServiceArgs:
65356
65356
  def type(self) -> pulumi.Input[str]:
65357
65357
  """
65358
65358
  Type of linked service.
65359
- Expected value is 'LakeHouse'.
65359
+ Expected value is 'Lakehouse'.
65360
65360
  """
65361
65361
  return pulumi.get(self, "type")
65362
65362
 
@@ -65380,7 +65380,7 @@ class LakeHouseLinkedServiceArgs:
65380
65380
  @pulumi.getter(name="artifactId")
65381
65381
  def artifact_id(self) -> Optional[Any]:
65382
65382
  """
65383
- The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
65383
+ The ID of Microsoft Fabric Lakehouse artifact. Type: string (or Expression with resultType string).
65384
65384
  """
65385
65385
  return pulumi.get(self, "artifact_id")
65386
65386
 
@@ -65464,7 +65464,7 @@ class LakeHouseLinkedServiceArgs:
65464
65464
  @pulumi.getter(name="servicePrincipalId")
65465
65465
  def service_principal_id(self) -> Optional[Any]:
65466
65466
  """
65467
- The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
65467
+ The ID of the application used to authenticate against Microsoft Fabric Lakehouse. Type: string (or Expression with resultType string).
65468
65468
  """
65469
65469
  return pulumi.get(self, "service_principal_id")
65470
65470
 
@@ -65476,7 +65476,7 @@ class LakeHouseLinkedServiceArgs:
65476
65476
  @pulumi.getter(name="servicePrincipalKey")
65477
65477
  def service_principal_key(self) -> Optional[pulumi.Input[Union['AzureKeyVaultSecretReferenceArgs', 'SecureStringArgs']]]:
65478
65478
  """
65479
- The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
65479
+ The Key of the application used to authenticate against Microsoft Fabric Lakehouse.
65480
65480
  """
65481
65481
  return pulumi.get(self, "service_principal_key")
65482
65482
 
@@ -65524,7 +65524,7 @@ class LakeHouseLinkedServiceArgs:
65524
65524
  if not MYPY:
65525
65525
  class LakeHouseLocationArgsDict(TypedDict):
65526
65526
  """
65527
- The location of Microsoft Fabric LakeHouse Files dataset.
65527
+ The location of Microsoft Fabric Lakehouse Files dataset.
65528
65528
  """
65529
65529
  type: pulumi.Input[str]
65530
65530
  """
@@ -65549,7 +65549,7 @@ class LakeHouseLocationArgs:
65549
65549
  file_name: Optional[Any] = None,
65550
65550
  folder_path: Optional[Any] = None):
65551
65551
  """
65552
- The location of Microsoft Fabric LakeHouse Files dataset.
65552
+ The location of Microsoft Fabric Lakehouse Files dataset.
65553
65553
  :param pulumi.Input[str] type: Type of dataset storage location.
65554
65554
  Expected value is 'LakeHouseLocation'.
65555
65555
  :param Any file_name: Specify the file name of dataset. Type: string (or Expression with resultType string).
@@ -65602,7 +65602,7 @@ class LakeHouseLocationArgs:
65602
65602
  if not MYPY:
65603
65603
  class LakeHouseReadSettingsArgsDict(TypedDict):
65604
65604
  """
65605
- Microsoft Fabric LakeHouse Files read settings.
65605
+ Microsoft Fabric Lakehouse Files read settings.
65606
65606
  """
65607
65607
  type: pulumi.Input[str]
65608
65608
  """
@@ -65647,11 +65647,11 @@ if not MYPY:
65647
65647
  """
65648
65648
  wildcard_file_name: NotRequired[Any]
65649
65649
  """
65650
- Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string).
65650
+ Microsoft Fabric Lakehouse Files wildcardFileName. Type: string (or Expression with resultType string).
65651
65651
  """
65652
65652
  wildcard_folder_path: NotRequired[Any]
65653
65653
  """
65654
- Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
65654
+ Microsoft Fabric Lakehouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
65655
65655
  """
65656
65656
  elif False:
65657
65657
  LakeHouseReadSettingsArgsDict: TypeAlias = Mapping[str, Any]
@@ -65672,7 +65672,7 @@ class LakeHouseReadSettingsArgs:
65672
65672
  wildcard_file_name: Optional[Any] = None,
65673
65673
  wildcard_folder_path: Optional[Any] = None):
65674
65674
  """
65675
- Microsoft Fabric LakeHouse Files read settings.
65675
+ Microsoft Fabric Lakehouse Files read settings.
65676
65676
  :param pulumi.Input[str] type: The read setting type.
65677
65677
  Expected value is 'LakeHouseReadSettings'.
65678
65678
  :param Any delete_files_after_completion: Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
@@ -65684,8 +65684,8 @@ class LakeHouseReadSettingsArgs:
65684
65684
  :param Any modified_datetime_start: The start of file's modified datetime. Type: string (or Expression with resultType string).
65685
65685
  :param Any partition_root_path: Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
65686
65686
  :param Any recursive: If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
65687
- :param Any wildcard_file_name: Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string).
65688
- :param Any wildcard_folder_path: Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
65687
+ :param Any wildcard_file_name: Microsoft Fabric Lakehouse Files wildcardFileName. Type: string (or Expression with resultType string).
65688
+ :param Any wildcard_folder_path: Microsoft Fabric Lakehouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
65689
65689
  """
65690
65690
  pulumi.set(__self__, "type", 'LakeHouseReadSettings')
65691
65691
  if delete_files_after_completion is not None:
@@ -65836,7 +65836,7 @@ class LakeHouseReadSettingsArgs:
65836
65836
  @pulumi.getter(name="wildcardFileName")
65837
65837
  def wildcard_file_name(self) -> Optional[Any]:
65838
65838
  """
65839
- Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string).
65839
+ Microsoft Fabric Lakehouse Files wildcardFileName. Type: string (or Expression with resultType string).
65840
65840
  """
65841
65841
  return pulumi.get(self, "wildcard_file_name")
65842
65842
 
@@ -65848,7 +65848,7 @@ class LakeHouseReadSettingsArgs:
65848
65848
  @pulumi.getter(name="wildcardFolderPath")
65849
65849
  def wildcard_folder_path(self) -> Optional[Any]:
65850
65850
  """
65851
- Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
65851
+ Microsoft Fabric Lakehouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
65852
65852
  """
65853
65853
  return pulumi.get(self, "wildcard_folder_path")
65854
65854
 
@@ -65860,7 +65860,7 @@ class LakeHouseReadSettingsArgs:
65860
65860
  if not MYPY:
65861
65861
  class LakeHouseTableDatasetArgsDict(TypedDict):
65862
65862
  """
65863
- Microsoft Fabric LakeHouse Table.
65863
+ Microsoft Fabric Lakehouse Table.
65864
65864
  """
65865
65865
  linked_service_name: pulumi.Input['LinkedServiceReferenceArgsDict']
65866
65866
  """
@@ -65869,7 +65869,7 @@ if not MYPY:
65869
65869
  type: pulumi.Input[str]
65870
65870
  """
65871
65871
  Type of dataset.
65872
- Expected value is 'LakeHouseTable'.
65872
+ Expected value is 'LakehouseTable'.
65873
65873
  """
65874
65874
  annotations: NotRequired[pulumi.Input[Sequence[Any]]]
65875
65875
  """
@@ -65897,7 +65897,7 @@ if not MYPY:
65897
65897
  """
65898
65898
  table: NotRequired[Any]
65899
65899
  """
65900
- The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string).
65900
+ The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
65901
65901
  """
65902
65902
  elif False:
65903
65903
  LakeHouseTableDatasetArgsDict: TypeAlias = Mapping[str, Any]
@@ -65915,20 +65915,20 @@ class LakeHouseTableDatasetArgs:
65915
65915
  structure: Optional[Any] = None,
65916
65916
  table: Optional[Any] = None):
65917
65917
  """
65918
- Microsoft Fabric LakeHouse Table.
65918
+ Microsoft Fabric Lakehouse Table.
65919
65919
  :param pulumi.Input['LinkedServiceReferenceArgs'] linked_service_name: Linked service reference.
65920
65920
  :param pulumi.Input[str] type: Type of dataset.
65921
- Expected value is 'LakeHouseTable'.
65921
+ Expected value is 'LakehouseTable'.
65922
65922
  :param pulumi.Input[Sequence[Any]] annotations: List of tags that can be used for describing the Dataset.
65923
65923
  :param pulumi.Input[str] description: Dataset description.
65924
65924
  :param pulumi.Input['DatasetFolderArgs'] folder: The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
65925
65925
  :param pulumi.Input[Mapping[str, pulumi.Input['ParameterSpecificationArgs']]] parameters: Parameters for dataset.
65926
65926
  :param Any schema: Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
65927
65927
  :param Any structure: Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
65928
- :param Any table: The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string).
65928
+ :param Any table: The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
65929
65929
  """
65930
65930
  pulumi.set(__self__, "linked_service_name", linked_service_name)
65931
- pulumi.set(__self__, "type", 'LakeHouseTable')
65931
+ pulumi.set(__self__, "type", 'LakehouseTable')
65932
65932
  if annotations is not None:
65933
65933
  pulumi.set(__self__, "annotations", annotations)
65934
65934
  if description is not None:
@@ -65961,7 +65961,7 @@ class LakeHouseTableDatasetArgs:
65961
65961
  def type(self) -> pulumi.Input[str]:
65962
65962
  """
65963
65963
  Type of dataset.
65964
- Expected value is 'LakeHouseTable'.
65964
+ Expected value is 'LakehouseTable'.
65965
65965
  """
65966
65966
  return pulumi.get(self, "type")
65967
65967
 
@@ -66045,7 +66045,7 @@ class LakeHouseTableDatasetArgs:
66045
66045
  @pulumi.getter
66046
66046
  def table(self) -> Optional[Any]:
66047
66047
  """
66048
- The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string).
66048
+ The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
66049
66049
  """
66050
66050
  return pulumi.get(self, "table")
66051
66051
 
@@ -66057,7 +66057,7 @@ class LakeHouseTableDatasetArgs:
66057
66057
  if not MYPY:
66058
66058
  class LakeHouseTableSinkArgsDict(TypedDict):
66059
66059
  """
66060
- A copy activity for Microsoft Fabric LakeHouse Table sink.
66060
+ A copy activity for Microsoft Fabric Lakehouse Table sink.
66061
66061
  """
66062
66062
  type: pulumi.Input[str]
66063
66063
  """
@@ -66090,7 +66090,7 @@ if not MYPY:
66090
66090
  """
66091
66091
  table_action_option: NotRequired[Any]
66092
66092
  """
66093
- The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite".
66093
+ The type of table action for Lakehouse Table sink. Possible values include: "None", "Append", "Overwrite".
66094
66094
  """
66095
66095
  write_batch_size: NotRequired[Any]
66096
66096
  """
@@ -66117,7 +66117,7 @@ class LakeHouseTableSinkArgs:
66117
66117
  write_batch_size: Optional[Any] = None,
66118
66118
  write_batch_timeout: Optional[Any] = None):
66119
66119
  """
66120
- A copy activity for Microsoft Fabric LakeHouse Table sink.
66120
+ A copy activity for Microsoft Fabric Lakehouse Table sink.
66121
66121
  :param pulumi.Input[str] type: Copy sink type.
66122
66122
  Expected value is 'LakeHouseTableSink'.
66123
66123
  :param Any disable_metrics_collection: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
@@ -66126,7 +66126,7 @@ class LakeHouseTableSinkArgs:
66126
66126
  :param Any partition_option: Create partitions in folder structure based on one or multiple columns. Each distinct column value (pair) will be a new partition. Possible values include: "None", "PartitionByKey".
66127
66127
  :param Any sink_retry_count: Sink retry count. Type: integer (or Expression with resultType integer).
66128
66128
  :param Any sink_retry_wait: Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
66129
- :param Any table_action_option: The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite".
66129
+ :param Any table_action_option: The type of table action for Lakehouse Table sink. Possible values include: "None", "Append", "Overwrite".
66130
66130
  :param Any write_batch_size: Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
66131
66131
  :param Any write_batch_timeout: Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
66132
66132
  """
@@ -66239,7 +66239,7 @@ class LakeHouseTableSinkArgs:
66239
66239
  @pulumi.getter(name="tableActionOption")
66240
66240
  def table_action_option(self) -> Optional[Any]:
66241
66241
  """
66242
- The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite".
66242
+ The type of table action for Lakehouse Table sink. Possible values include: "None", "Append", "Overwrite".
66243
66243
  """
66244
66244
  return pulumi.get(self, "table_action_option")
66245
66245
 
@@ -66275,7 +66275,7 @@ class LakeHouseTableSinkArgs:
66275
66275
  if not MYPY:
66276
66276
  class LakeHouseTableSourceArgsDict(TypedDict):
66277
66277
  """
66278
- A copy activity source for Microsoft Fabric LakeHouse Table.
66278
+ A copy activity source for Microsoft Fabric Lakehouse Table.
66279
66279
  """
66280
66280
  type: pulumi.Input[str]
66281
66281
  """
@@ -66325,7 +66325,7 @@ class LakeHouseTableSourceArgs:
66325
66325
  timestamp_as_of: Optional[Any] = None,
66326
66326
  version_as_of: Optional[Any] = None):
66327
66327
  """
66328
- A copy activity source for Microsoft Fabric LakeHouse Table.
66328
+ A copy activity source for Microsoft Fabric Lakehouse Table.
66329
66329
  :param pulumi.Input[str] type: Copy source type.
66330
66330
  Expected value is 'LakeHouseTableSource'.
66331
66331
  :param Any additional_columns: Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
@@ -66453,7 +66453,7 @@ class LakeHouseTableSourceArgs:
66453
66453
  if not MYPY:
66454
66454
  class LakeHouseWriteSettingsArgsDict(TypedDict):
66455
66455
  """
66456
- Microsoft Fabric LakeHouse Files write settings.
66456
+ Microsoft Fabric Lakehouse Files write settings.
66457
66457
  """
66458
66458
  type: pulumi.Input[str]
66459
66459
  """
@@ -66488,7 +66488,7 @@ class LakeHouseWriteSettingsArgs:
66488
66488
  max_concurrent_connections: Optional[Any] = None,
66489
66489
  metadata: Optional[pulumi.Input[Sequence[pulumi.Input['MetadataItemArgs']]]] = None):
66490
66490
  """
66491
- Microsoft Fabric LakeHouse Files write settings.
66491
+ Microsoft Fabric Lakehouse Files write settings.
66492
66492
  :param pulumi.Input[str] type: The write setting type.
66493
66493
  Expected value is 'LakeHouseWriteSettings'.
66494
66494
  :param Any copy_behavior: The type of copy behavior for copy sink.
@@ -47072,7 +47072,7 @@ class JsonWriteSettingsResponse(dict):
47072
47072
  @pulumi.output_type
47073
47073
  class LakeHouseLinkedServiceResponse(dict):
47074
47074
  """
47075
- Microsoft Fabric LakeHouse linked service.
47075
+ Microsoft Fabric Lakehouse linked service.
47076
47076
  """
47077
47077
  @staticmethod
47078
47078
  def __key_warning(key: str):
@@ -47121,24 +47121,24 @@ class LakeHouseLinkedServiceResponse(dict):
47121
47121
  version: Optional[str] = None,
47122
47122
  workspace_id: Optional[Any] = None):
47123
47123
  """
47124
- Microsoft Fabric LakeHouse linked service.
47124
+ Microsoft Fabric Lakehouse linked service.
47125
47125
  :param str type: Type of linked service.
47126
- Expected value is 'LakeHouse'.
47126
+ Expected value is 'Lakehouse'.
47127
47127
  :param Sequence[Any] annotations: List of tags that can be used for describing the linked service.
47128
- :param Any artifact_id: The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
47128
+ :param Any artifact_id: The ID of Microsoft Fabric Lakehouse artifact. Type: string (or Expression with resultType string).
47129
47129
  :param 'IntegrationRuntimeReferenceResponse' connect_via: The integration runtime reference.
47130
47130
  :param str description: Linked service description.
47131
47131
  :param str encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
47132
47132
  :param Mapping[str, 'ParameterSpecificationResponse'] parameters: Parameters for linked service.
47133
47133
  :param Union['AzureKeyVaultSecretReferenceResponse', 'SecureStringResponse'] service_principal_credential: The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
47134
47134
  :param Any service_principal_credential_type: The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
47135
- :param Any service_principal_id: The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
47136
- :param Union['AzureKeyVaultSecretReferenceResponse', 'SecureStringResponse'] service_principal_key: The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
47135
+ :param Any service_principal_id: The ID of the application used to authenticate against Microsoft Fabric Lakehouse. Type: string (or Expression with resultType string).
47136
+ :param Union['AzureKeyVaultSecretReferenceResponse', 'SecureStringResponse'] service_principal_key: The Key of the application used to authenticate against Microsoft Fabric Lakehouse.
47137
47137
  :param Any tenant: The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
47138
47138
  :param str version: Version of the linked service.
47139
47139
  :param Any workspace_id: The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
47140
47140
  """
47141
- pulumi.set(__self__, "type", 'LakeHouse')
47141
+ pulumi.set(__self__, "type", 'Lakehouse')
47142
47142
  if annotations is not None:
47143
47143
  pulumi.set(__self__, "annotations", annotations)
47144
47144
  if artifact_id is not None:
@@ -47171,7 +47171,7 @@ class LakeHouseLinkedServiceResponse(dict):
47171
47171
  def type(self) -> str:
47172
47172
  """
47173
47173
  Type of linked service.
47174
- Expected value is 'LakeHouse'.
47174
+ Expected value is 'Lakehouse'.
47175
47175
  """
47176
47176
  return pulumi.get(self, "type")
47177
47177
 
@@ -47187,7 +47187,7 @@ class LakeHouseLinkedServiceResponse(dict):
47187
47187
  @pulumi.getter(name="artifactId")
47188
47188
  def artifact_id(self) -> Optional[Any]:
47189
47189
  """
47190
- The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string).
47190
+ The ID of Microsoft Fabric Lakehouse artifact. Type: string (or Expression with resultType string).
47191
47191
  """
47192
47192
  return pulumi.get(self, "artifact_id")
47193
47193
 
@@ -47243,7 +47243,7 @@ class LakeHouseLinkedServiceResponse(dict):
47243
47243
  @pulumi.getter(name="servicePrincipalId")
47244
47244
  def service_principal_id(self) -> Optional[Any]:
47245
47245
  """
47246
- The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
47246
+ The ID of the application used to authenticate against Microsoft Fabric Lakehouse. Type: string (or Expression with resultType string).
47247
47247
  """
47248
47248
  return pulumi.get(self, "service_principal_id")
47249
47249
 
@@ -47251,7 +47251,7 @@ class LakeHouseLinkedServiceResponse(dict):
47251
47251
  @pulumi.getter(name="servicePrincipalKey")
47252
47252
  def service_principal_key(self) -> Optional[Any]:
47253
47253
  """
47254
- The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
47254
+ The Key of the application used to authenticate against Microsoft Fabric Lakehouse.
47255
47255
  """
47256
47256
  return pulumi.get(self, "service_principal_key")
47257
47257
 
@@ -47283,7 +47283,7 @@ class LakeHouseLinkedServiceResponse(dict):
47283
47283
  @pulumi.output_type
47284
47284
  class LakeHouseLocationResponse(dict):
47285
47285
  """
47286
- The location of Microsoft Fabric LakeHouse Files dataset.
47286
+ The location of Microsoft Fabric Lakehouse Files dataset.
47287
47287
  """
47288
47288
  @staticmethod
47289
47289
  def __key_warning(key: str):
@@ -47309,7 +47309,7 @@ class LakeHouseLocationResponse(dict):
47309
47309
  file_name: Optional[Any] = None,
47310
47310
  folder_path: Optional[Any] = None):
47311
47311
  """
47312
- The location of Microsoft Fabric LakeHouse Files dataset.
47312
+ The location of Microsoft Fabric Lakehouse Files dataset.
47313
47313
  :param str type: Type of dataset storage location.
47314
47314
  Expected value is 'LakeHouseLocation'.
47315
47315
  :param Any file_name: Specify the file name of dataset. Type: string (or Expression with resultType string).
@@ -47350,7 +47350,7 @@ class LakeHouseLocationResponse(dict):
47350
47350
  @pulumi.output_type
47351
47351
  class LakeHouseReadSettingsResponse(dict):
47352
47352
  """
47353
- Microsoft Fabric LakeHouse Files read settings.
47353
+ Microsoft Fabric Lakehouse Files read settings.
47354
47354
  """
47355
47355
  @staticmethod
47356
47356
  def __key_warning(key: str):
@@ -47401,7 +47401,7 @@ class LakeHouseReadSettingsResponse(dict):
47401
47401
  wildcard_file_name: Optional[Any] = None,
47402
47402
  wildcard_folder_path: Optional[Any] = None):
47403
47403
  """
47404
- Microsoft Fabric LakeHouse Files read settings.
47404
+ Microsoft Fabric Lakehouse Files read settings.
47405
47405
  :param str type: The read setting type.
47406
47406
  Expected value is 'LakeHouseReadSettings'.
47407
47407
  :param Any delete_files_after_completion: Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
@@ -47413,8 +47413,8 @@ class LakeHouseReadSettingsResponse(dict):
47413
47413
  :param Any modified_datetime_start: The start of file's modified datetime. Type: string (or Expression with resultType string).
47414
47414
  :param Any partition_root_path: Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
47415
47415
  :param Any recursive: If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
47416
- :param Any wildcard_file_name: Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string).
47417
- :param Any wildcard_folder_path: Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
47416
+ :param Any wildcard_file_name: Microsoft Fabric Lakehouse Files wildcardFileName. Type: string (or Expression with resultType string).
47417
+ :param Any wildcard_folder_path: Microsoft Fabric Lakehouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
47418
47418
  """
47419
47419
  pulumi.set(__self__, "type", 'LakeHouseReadSettings')
47420
47420
  if delete_files_after_completion is not None:
@@ -47525,7 +47525,7 @@ class LakeHouseReadSettingsResponse(dict):
47525
47525
  @pulumi.getter(name="wildcardFileName")
47526
47526
  def wildcard_file_name(self) -> Optional[Any]:
47527
47527
  """
47528
- Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string).
47528
+ Microsoft Fabric Lakehouse Files wildcardFileName. Type: string (or Expression with resultType string).
47529
47529
  """
47530
47530
  return pulumi.get(self, "wildcard_file_name")
47531
47531
 
@@ -47533,7 +47533,7 @@ class LakeHouseReadSettingsResponse(dict):
47533
47533
  @pulumi.getter(name="wildcardFolderPath")
47534
47534
  def wildcard_folder_path(self) -> Optional[Any]:
47535
47535
  """
47536
- Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
47536
+ Microsoft Fabric Lakehouse Files wildcardFolderPath. Type: string (or Expression with resultType string).
47537
47537
  """
47538
47538
  return pulumi.get(self, "wildcard_folder_path")
47539
47539
 
@@ -47541,7 +47541,7 @@ class LakeHouseReadSettingsResponse(dict):
47541
47541
  @pulumi.output_type
47542
47542
  class LakeHouseTableDatasetResponse(dict):
47543
47543
  """
47544
- Microsoft Fabric LakeHouse Table.
47544
+ Microsoft Fabric Lakehouse Table.
47545
47545
  """
47546
47546
  @staticmethod
47547
47547
  def __key_warning(key: str):
@@ -47571,20 +47571,20 @@ class LakeHouseTableDatasetResponse(dict):
47571
47571
  structure: Optional[Any] = None,
47572
47572
  table: Optional[Any] = None):
47573
47573
  """
47574
- Microsoft Fabric LakeHouse Table.
47574
+ Microsoft Fabric Lakehouse Table.
47575
47575
  :param 'LinkedServiceReferenceResponse' linked_service_name: Linked service reference.
47576
47576
  :param str type: Type of dataset.
47577
- Expected value is 'LakeHouseTable'.
47577
+ Expected value is 'LakehouseTable'.
47578
47578
  :param Sequence[Any] annotations: List of tags that can be used for describing the Dataset.
47579
47579
  :param str description: Dataset description.
47580
47580
  :param 'DatasetResponseFolder' folder: The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
47581
47581
  :param Mapping[str, 'ParameterSpecificationResponse'] parameters: Parameters for dataset.
47582
47582
  :param Any schema: Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
47583
47583
  :param Any structure: Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
47584
- :param Any table: The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string).
47584
+ :param Any table: The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
47585
47585
  """
47586
47586
  pulumi.set(__self__, "linked_service_name", linked_service_name)
47587
- pulumi.set(__self__, "type", 'LakeHouseTable')
47587
+ pulumi.set(__self__, "type", 'LakehouseTable')
47588
47588
  if annotations is not None:
47589
47589
  pulumi.set(__self__, "annotations", annotations)
47590
47590
  if description is not None:
@@ -47613,7 +47613,7 @@ class LakeHouseTableDatasetResponse(dict):
47613
47613
  def type(self) -> str:
47614
47614
  """
47615
47615
  Type of dataset.
47616
- Expected value is 'LakeHouseTable'.
47616
+ Expected value is 'LakehouseTable'.
47617
47617
  """
47618
47618
  return pulumi.get(self, "type")
47619
47619
 
@@ -47669,7 +47669,7 @@ class LakeHouseTableDatasetResponse(dict):
47669
47669
  @pulumi.getter
47670
47670
  def table(self) -> Optional[Any]:
47671
47671
  """
47672
- The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string).
47672
+ The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
47673
47673
  """
47674
47674
  return pulumi.get(self, "table")
47675
47675
 
@@ -47677,7 +47677,7 @@ class LakeHouseTableDatasetResponse(dict):
47677
47677
  @pulumi.output_type
47678
47678
  class LakeHouseTableSinkResponse(dict):
47679
47679
  """
47680
- A copy activity for Microsoft Fabric LakeHouse Table sink.
47680
+ A copy activity for Microsoft Fabric Lakehouse Table sink.
47681
47681
  """
47682
47682
  @staticmethod
47683
47683
  def __key_warning(key: str):
@@ -47724,7 +47724,7 @@ class LakeHouseTableSinkResponse(dict):
47724
47724
  write_batch_size: Optional[Any] = None,
47725
47725
  write_batch_timeout: Optional[Any] = None):
47726
47726
  """
47727
- A copy activity for Microsoft Fabric LakeHouse Table sink.
47727
+ A copy activity for Microsoft Fabric Lakehouse Table sink.
47728
47728
  :param str type: Copy sink type.
47729
47729
  Expected value is 'LakeHouseTableSink'.
47730
47730
  :param Any disable_metrics_collection: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
@@ -47733,7 +47733,7 @@ class LakeHouseTableSinkResponse(dict):
47733
47733
  :param Any partition_option: Create partitions in folder structure based on one or multiple columns. Each distinct column value (pair) will be a new partition. Possible values include: "None", "PartitionByKey".
47734
47734
  :param Any sink_retry_count: Sink retry count. Type: integer (or Expression with resultType integer).
47735
47735
  :param Any sink_retry_wait: Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
47736
- :param Any table_action_option: The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite".
47736
+ :param Any table_action_option: The type of table action for Lakehouse Table sink. Possible values include: "None", "Append", "Overwrite".
47737
47737
  :param Any write_batch_size: Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
47738
47738
  :param Any write_batch_timeout: Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
47739
47739
  """
@@ -47818,7 +47818,7 @@ class LakeHouseTableSinkResponse(dict):
47818
47818
  @pulumi.getter(name="tableActionOption")
47819
47819
  def table_action_option(self) -> Optional[Any]:
47820
47820
  """
47821
- The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite".
47821
+ The type of table action for Lakehouse Table sink. Possible values include: "None", "Append", "Overwrite".
47822
47822
  """
47823
47823
  return pulumi.get(self, "table_action_option")
47824
47824
 
@@ -47842,7 +47842,7 @@ class LakeHouseTableSinkResponse(dict):
47842
47842
  @pulumi.output_type
47843
47843
  class LakeHouseTableSourceResponse(dict):
47844
47844
  """
47845
- A copy activity source for Microsoft Fabric LakeHouse Table.
47845
+ A copy activity source for Microsoft Fabric Lakehouse Table.
47846
47846
  """
47847
47847
  @staticmethod
47848
47848
  def __key_warning(key: str):
@@ -47883,7 +47883,7 @@ class LakeHouseTableSourceResponse(dict):
47883
47883
  timestamp_as_of: Optional[Any] = None,
47884
47884
  version_as_of: Optional[Any] = None):
47885
47885
  """
47886
- A copy activity source for Microsoft Fabric LakeHouse Table.
47886
+ A copy activity source for Microsoft Fabric Lakehouse Table.
47887
47887
  :param str type: Copy source type.
47888
47888
  Expected value is 'LakeHouseTableSource'.
47889
47889
  :param Any additional_columns: Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
@@ -47979,7 +47979,7 @@ class LakeHouseTableSourceResponse(dict):
47979
47979
  @pulumi.output_type
47980
47980
  class LakeHouseWriteSettingsResponse(dict):
47981
47981
  """
47982
- Microsoft Fabric LakeHouse Files write settings.
47982
+ Microsoft Fabric Lakehouse Files write settings.
47983
47983
  """
47984
47984
  @staticmethod
47985
47985
  def __key_warning(key: str):
@@ -48009,7 +48009,7 @@ class LakeHouseWriteSettingsResponse(dict):
48009
48009
  max_concurrent_connections: Optional[Any] = None,
48010
48010
  metadata: Optional[Sequence['outputs.MetadataItemResponse']] = None):
48011
48011
  """
48012
- Microsoft Fabric LakeHouse Files write settings.
48012
+ Microsoft Fabric Lakehouse Files write settings.
48013
48013
  :param str type: The write setting type.
48014
48014
  Expected value is 'LakeHouseWriteSettings'.
48015
48015
  :param Any copy_behavior: The type of copy behavior for copy sink.
@@ -95,6 +95,8 @@ if typing.TYPE_CHECKING:
95
95
  v20240601preview = __v20240601preview
96
96
  import pulumi_azure_native.eventgrid.v20241215preview as __v20241215preview
97
97
  v20241215preview = __v20241215preview
98
+ import pulumi_azure_native.eventgrid.v20250215 as __v20250215
99
+ v20250215 = __v20250215
98
100
  else:
99
101
  v20200401preview = _utilities.lazy_import('pulumi_azure_native.eventgrid.v20200401preview')
100
102
  v20211015preview = _utilities.lazy_import('pulumi_azure_native.eventgrid.v20211015preview')
@@ -103,4 +105,5 @@ else:
103
105
  v20231215preview = _utilities.lazy_import('pulumi_azure_native.eventgrid.v20231215preview')
104
106
  v20240601preview = _utilities.lazy_import('pulumi_azure_native.eventgrid.v20240601preview')
105
107
  v20241215preview = _utilities.lazy_import('pulumi_azure_native.eventgrid.v20241215preview')
108
+ v20250215 = _utilities.lazy_import('pulumi_azure_native.eventgrid.v20250215')
106
109
 
@@ -118,7 +118,7 @@ class CaCertificate(pulumi.CustomResource):
118
118
  The CA Certificate resource.
119
119
  Azure REST API version: 2023-06-01-preview.
120
120
 
121
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
121
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
122
122
 
123
123
  :param str resource_name: The name of the resource.
124
124
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -138,7 +138,7 @@ class CaCertificate(pulumi.CustomResource):
138
138
  The CA Certificate resource.
139
139
  Azure REST API version: 2023-06-01-preview.
140
140
 
141
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
141
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
142
142
 
143
143
  :param str resource_name: The name of the resource.
144
144
  :param CaCertificateArgs args: The arguments to use to populate this resource's properties.
@@ -184,7 +184,7 @@ class CaCertificate(pulumi.CustomResource):
184
184
  __props__.__dict__["provisioning_state"] = None
185
185
  __props__.__dict__["system_data"] = None
186
186
  __props__.__dict__["type"] = None
187
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:CaCertificate"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:CaCertificate"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:CaCertificate"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:CaCertificate")])
187
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:CaCertificate"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:CaCertificate"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:CaCertificate"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:CaCertificate"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:CaCertificate")])
188
188
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
189
189
  super(CaCertificate, __self__).__init__(
190
190
  'azure-native:eventgrid:CaCertificate',