pulumi-azure-native 2.88.0a1739348902__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.88.0a1739348902.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/METADATA +1 -1
  380. {pulumi_azure_native-2.88.0a1739348902.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.88.0a1739348902.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/WHEEL +0 -0
  385. {pulumi_azure_native-2.88.0a1739348902.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/top_level.txt +0 -0
@@ -190,7 +190,7 @@ class Channel(pulumi.CustomResource):
190
190
  Channel info.
191
191
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
192
192
 
193
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
193
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
194
194
 
195
195
  :param str resource_name: The name of the resource.
196
196
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -215,7 +215,7 @@ class Channel(pulumi.CustomResource):
215
215
  Channel info.
216
216
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
217
217
 
218
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
218
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
219
219
 
220
220
  :param str resource_name: The name of the resource.
221
221
  :param ChannelArgs args: The arguments to use to populate this resource's properties.
@@ -266,7 +266,7 @@ class Channel(pulumi.CustomResource):
266
266
  __props__.__dict__["name"] = None
267
267
  __props__.__dict__["system_data"] = None
268
268
  __props__.__dict__["type"] = None
269
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Channel")])
269
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Channel"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:Channel")])
270
270
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
271
271
  super(Channel, __self__).__init__(
272
272
  'azure-native:eventgrid:Channel',
@@ -194,7 +194,7 @@ class Client(pulumi.CustomResource):
194
194
  The Client resource.
195
195
  Azure REST API version: 2023-06-01-preview.
196
196
 
197
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
197
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
198
198
 
199
199
  :param str resource_name: The name of the resource.
200
200
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -220,7 +220,7 @@ class Client(pulumi.CustomResource):
220
220
  The Client resource.
221
221
  Azure REST API version: 2023-06-01-preview.
222
222
 
223
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
223
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
224
224
 
225
225
  :param str resource_name: The name of the resource.
226
226
  :param ClientArgs args: The arguments to use to populate this resource's properties.
@@ -274,7 +274,7 @@ class Client(pulumi.CustomResource):
274
274
  __props__.__dict__["provisioning_state"] = None
275
275
  __props__.__dict__["system_data"] = None
276
276
  __props__.__dict__["type"] = None
277
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Client"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Client"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Client"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Client")])
277
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Client"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Client"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Client"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Client"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:Client")])
278
278
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
279
279
  super(Client, __self__).__init__(
280
280
  'azure-native:eventgrid:Client',
@@ -120,7 +120,7 @@ class ClientGroup(pulumi.CustomResource):
120
120
  The Client group resource.
121
121
  Azure REST API version: 2023-06-01-preview.
122
122
 
123
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
123
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
124
124
 
125
125
  :param str resource_name: The name of the resource.
126
126
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -141,7 +141,7 @@ class ClientGroup(pulumi.CustomResource):
141
141
  The Client group resource.
142
142
  Azure REST API version: 2023-06-01-preview.
143
143
 
144
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
144
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
145
145
 
146
146
  :param str resource_name: The name of the resource.
147
147
  :param ClientGroupArgs args: The arguments to use to populate this resource's properties.
@@ -185,7 +185,7 @@ class ClientGroup(pulumi.CustomResource):
185
185
  __props__.__dict__["provisioning_state"] = None
186
186
  __props__.__dict__["system_data"] = None
187
187
  __props__.__dict__["type"] = None
188
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:ClientGroup"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:ClientGroup"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:ClientGroup"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:ClientGroup")])
188
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:ClientGroup"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:ClientGroup"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:ClientGroup"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:ClientGroup"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:ClientGroup")])
189
189
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
190
190
  super(ClientGroup, __self__).__init__(
191
191
  'azure-native:eventgrid:ClientGroup',
@@ -293,7 +293,7 @@ class Domain(pulumi.CustomResource):
293
293
  EventGrid Domain.
294
294
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2020-06-01.
295
295
 
296
- Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
296
+ Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
297
297
 
298
298
  :param str resource_name: The name of the resource.
299
299
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -334,7 +334,7 @@ class Domain(pulumi.CustomResource):
334
334
  EventGrid Domain.
335
335
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2020-06-01.
336
336
 
337
- Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
337
+ Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
338
338
 
339
339
  :param str resource_name: The name of the resource.
340
340
  :param DomainArgs args: The arguments to use to populate this resource's properties.
@@ -405,7 +405,7 @@ class Domain(pulumi.CustomResource):
405
405
  __props__.__dict__["provisioning_state"] = None
406
406
  __props__.__dict__["system_data"] = None
407
407
  __props__.__dict__["type"] = None
408
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20180915preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20190201preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20190601:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20200101preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20200601:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20211201:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Domain")])
408
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20180915preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20190201preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20190601:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20200101preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20200601:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20211201:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Domain"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:Domain")])
409
409
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
410
410
  super(Domain, __self__).__init__(
411
411
  'azure-native:eventgrid:Domain',
@@ -249,7 +249,7 @@ class DomainEventSubscription(pulumi.CustomResource):
249
249
  Event Subscription
250
250
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
251
251
 
252
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
252
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
253
253
 
254
254
  :param str resource_name: The name of the resource.
255
255
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -280,7 +280,7 @@ class DomainEventSubscription(pulumi.CustomResource):
280
280
  Event Subscription
281
281
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
282
282
 
283
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
283
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
284
284
 
285
285
  :param str resource_name: The name of the resource.
286
286
  :param DomainEventSubscriptionArgs args: The arguments to use to populate this resource's properties.
@@ -341,7 +341,7 @@ class DomainEventSubscription(pulumi.CustomResource):
341
341
  __props__.__dict__["system_data"] = None
342
342
  __props__.__dict__["topic"] = None
343
343
  __props__.__dict__["type"] = None
344
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:DomainEventSubscription")])
344
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:DomainEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:DomainEventSubscription")])
345
345
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
346
346
  super(DomainEventSubscription, __self__).__init__(
347
347
  'azure-native:eventgrid:DomainEventSubscription',
@@ -84,7 +84,7 @@ class DomainTopic(pulumi.CustomResource):
84
84
  Domain Topic.
85
85
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2020-06-01.
86
86
 
87
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
87
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
88
88
 
89
89
  :param str resource_name: The name of the resource.
90
90
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -102,7 +102,7 @@ class DomainTopic(pulumi.CustomResource):
102
102
  Domain Topic.
103
103
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2020-06-01.
104
104
 
105
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
105
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
106
106
 
107
107
  :param str resource_name: The name of the resource.
108
108
  :param DomainTopicArgs args: The arguments to use to populate this resource's properties.
@@ -142,7 +142,7 @@ class DomainTopic(pulumi.CustomResource):
142
142
  __props__.__dict__["provisioning_state"] = None
143
143
  __props__.__dict__["system_data"] = None
144
144
  __props__.__dict__["type"] = None
145
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20190201preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20190601:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20200101preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20200601:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20211201:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:DomainTopic")])
145
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20190201preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20190601:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20200101preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20200601:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20211201:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:DomainTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:DomainTopic")])
146
146
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
147
147
  super(DomainTopic, __self__).__init__(
148
148
  'azure-native:eventgrid:DomainTopic',
@@ -265,7 +265,7 @@ class DomainTopicEventSubscription(pulumi.CustomResource):
265
265
  Event Subscription
266
266
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
267
267
 
268
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
268
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
269
269
 
270
270
  :param str resource_name: The name of the resource.
271
271
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -297,7 +297,7 @@ class DomainTopicEventSubscription(pulumi.CustomResource):
297
297
  Event Subscription
298
298
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
299
299
 
300
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
300
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
301
301
 
302
302
  :param str resource_name: The name of the resource.
303
303
  :param DomainTopicEventSubscriptionArgs args: The arguments to use to populate this resource's properties.
@@ -362,7 +362,7 @@ class DomainTopicEventSubscription(pulumi.CustomResource):
362
362
  __props__.__dict__["system_data"] = None
363
363
  __props__.__dict__["topic"] = None
364
364
  __props__.__dict__["type"] = None
365
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:DomainTopicEventSubscription")])
365
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:DomainTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:DomainTopicEventSubscription")])
366
366
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
367
367
  super(DomainTopicEventSubscription, __self__).__init__(
368
368
  'azure-native:eventgrid:DomainTopicEventSubscription',
@@ -233,7 +233,7 @@ class EventSubscription(pulumi.CustomResource):
233
233
  Event Subscription
234
234
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2020-06-01.
235
235
 
236
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
236
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
237
237
 
238
238
  :param str resource_name: The name of the resource.
239
239
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -263,7 +263,7 @@ class EventSubscription(pulumi.CustomResource):
263
263
  Event Subscription
264
264
  Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2020-06-01.
265
265
 
266
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
266
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
267
267
 
268
268
  :param str resource_name: The name of the resource.
269
269
  :param EventSubscriptionArgs args: The arguments to use to populate this resource's properties.
@@ -320,7 +320,7 @@ class EventSubscription(pulumi.CustomResource):
320
320
  __props__.__dict__["system_data"] = None
321
321
  __props__.__dict__["topic"] = None
322
322
  __props__.__dict__["type"] = None
323
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20170615preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20170915preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20180101:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20180501preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20180915preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20190101:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20190201preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20190601:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20200101preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20200601:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20211201:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:EventSubscription")])
323
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20170615preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20170915preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20180101:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20180501preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20180915preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20190101:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20190201preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20190601:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20200101preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20200601:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20211201:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:EventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:EventSubscription")])
324
324
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
325
325
  super(EventSubscription, __self__).__init__(
326
326
  'azure-native:eventgrid:EventSubscription',
@@ -154,7 +154,7 @@ def get_ca_certificate(ca_certificate_name: Optional[str] = None,
154
154
  Get properties of a CA certificate.
155
155
  Azure REST API version: 2023-06-01-preview.
156
156
 
157
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
157
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
158
158
 
159
159
 
160
160
  :param str ca_certificate_name: Name of the CA certificate.
@@ -186,7 +186,7 @@ def get_ca_certificate_output(ca_certificate_name: Optional[pulumi.Input[str]] =
186
186
  Get properties of a CA certificate.
187
187
  Azure REST API version: 2023-06-01-preview.
188
188
 
189
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
189
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
190
190
 
191
191
 
192
192
  :param str ca_certificate_name: Name of the CA certificate.
@@ -167,7 +167,7 @@ def get_channel(channel_name: Optional[str] = None,
167
167
  Get properties of a channel.
168
168
  Azure REST API version: 2022-06-15.
169
169
 
170
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
170
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
171
171
 
172
172
 
173
173
  :param str channel_name: Name of the channel.
@@ -200,7 +200,7 @@ def get_channel_output(channel_name: Optional[pulumi.Input[str]] = None,
200
200
  Get properties of a channel.
201
201
  Azure REST API version: 2022-06-15.
202
202
 
203
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
203
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
204
204
 
205
205
 
206
206
  :param str channel_name: Name of the channel.
@@ -57,7 +57,7 @@ def get_channel_full_url(channel_name: Optional[str] = None,
57
57
  Get the full endpoint URL of a partner destination channel.
58
58
  Azure REST API version: 2022-06-15.
59
59
 
60
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
60
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
61
61
 
62
62
 
63
63
  :param str channel_name: Name of the Channel.
@@ -81,7 +81,7 @@ def get_channel_full_url_output(channel_name: Optional[pulumi.Input[str]] = None
81
81
  Get the full endpoint URL of a partner destination channel.
82
82
  Azure REST API version: 2022-06-15.
83
83
 
84
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
84
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
85
85
 
86
86
 
87
87
  :param str channel_name: Name of the Channel.
@@ -180,7 +180,7 @@ def get_client(client_name: Optional[str] = None,
180
180
  Get properties of a client.
181
181
  Azure REST API version: 2023-06-01-preview.
182
182
 
183
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
183
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
184
184
 
185
185
 
186
186
  :param str client_name: Name of the client.
@@ -214,7 +214,7 @@ def get_client_output(client_name: Optional[pulumi.Input[str]] = None,
214
214
  Get properties of a client.
215
215
  Azure REST API version: 2023-06-01-preview.
216
216
 
217
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
217
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
218
218
 
219
219
 
220
220
  :param str client_name: Name of the client.
@@ -131,7 +131,7 @@ def get_client_group(client_group_name: Optional[str] = None,
131
131
  Get properties of a client group.
132
132
  Azure REST API version: 2023-06-01-preview.
133
133
 
134
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
134
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
135
135
 
136
136
 
137
137
  :param str client_group_name: Name of the client group.
@@ -161,7 +161,7 @@ def get_client_group_output(client_group_name: Optional[pulumi.Input[str]] = Non
161
161
  Get properties of a client group.
162
162
  Azure REST API version: 2023-06-01-preview.
163
163
 
164
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
164
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
165
165
 
166
166
 
167
167
  :param str client_group_name: Name of the client group.
@@ -286,7 +286,7 @@ def get_domain(domain_name: Optional[str] = None,
286
286
  Get properties of a domain.
287
287
  Azure REST API version: 2022-06-15.
288
288
 
289
- Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
289
+ Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
290
290
 
291
291
 
292
292
  :param str domain_name: Name of the domain.
@@ -325,7 +325,7 @@ def get_domain_output(domain_name: Optional[pulumi.Input[str]] = None,
325
325
  Get properties of a domain.
326
326
  Azure REST API version: 2022-06-15.
327
327
 
328
- Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
328
+ Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
329
329
 
330
330
 
331
331
  :param str domain_name: Name of the domain.
@@ -230,7 +230,7 @@ def get_domain_event_subscription(domain_name: Optional[str] = None,
230
230
  Get properties of an event subscription of a domain.
231
231
  Azure REST API version: 2022-06-15.
232
232
 
233
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
233
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
234
234
 
235
235
 
236
236
  :param str domain_name: Name of the partner topic.
@@ -268,7 +268,7 @@ def get_domain_event_subscription_output(domain_name: Optional[pulumi.Input[str]
268
268
  Get properties of an event subscription of a domain.
269
269
  Azure REST API version: 2022-06-15.
270
270
 
271
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
271
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
272
272
 
273
273
 
274
274
  :param str domain_name: Name of the partner topic.
@@ -58,7 +58,7 @@ def get_domain_event_subscription_delivery_attributes(domain_name: Optional[str]
58
58
  Get all delivery attributes for an event subscription for domain.
59
59
  Azure REST API version: 2022-06-15.
60
60
 
61
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
61
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
62
62
 
63
63
 
64
64
  :param str domain_name: Name of the domain topic.
@@ -82,7 +82,7 @@ def get_domain_event_subscription_delivery_attributes_output(domain_name: Option
82
82
  Get all delivery attributes for an event subscription for domain.
83
83
  Azure REST API version: 2022-06-15.
84
84
 
85
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
85
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
86
86
 
87
87
 
88
88
  :param str domain_name: Name of the domain topic.
@@ -57,7 +57,7 @@ def get_domain_event_subscription_full_url(domain_name: Optional[str] = None,
57
57
  Get the full endpoint URL for an event subscription for domain.
58
58
  Azure REST API version: 2022-06-15.
59
59
 
60
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
60
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
61
61
 
62
62
 
63
63
  :param str domain_name: Name of the domain topic.
@@ -81,7 +81,7 @@ def get_domain_event_subscription_full_url_output(domain_name: Optional[pulumi.I
81
81
  Get the full endpoint URL for an event subscription for domain.
82
82
  Azure REST API version: 2022-06-15.
83
83
 
84
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
84
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
85
85
 
86
86
 
87
87
  :param str domain_name: Name of the domain topic.
@@ -106,7 +106,7 @@ def get_domain_topic(domain_name: Optional[str] = None,
106
106
  Get properties of a domain topic.
107
107
  Azure REST API version: 2022-06-15.
108
108
 
109
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
109
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
110
110
 
111
111
 
112
112
  :param str domain_name: Name of the domain.
@@ -134,7 +134,7 @@ def get_domain_topic_output(domain_name: Optional[pulumi.Input[str]] = None,
134
134
  Get properties of a domain topic.
135
135
  Azure REST API version: 2022-06-15.
136
136
 
137
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
137
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
138
138
 
139
139
 
140
140
  :param str domain_name: Name of the domain.
@@ -231,7 +231,7 @@ def get_domain_topic_event_subscription(domain_name: Optional[str] = None,
231
231
  Get properties of a nested event subscription for a domain topic.
232
232
  Azure REST API version: 2022-06-15.
233
233
 
234
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
234
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
235
235
 
236
236
 
237
237
  :param str domain_name: Name of the top level domain.
@@ -272,7 +272,7 @@ def get_domain_topic_event_subscription_output(domain_name: Optional[pulumi.Inpu
272
272
  Get properties of a nested event subscription for a domain topic.
273
273
  Azure REST API version: 2022-06-15.
274
274
 
275
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
275
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
276
276
 
277
277
 
278
278
  :param str domain_name: Name of the top level domain.
@@ -59,7 +59,7 @@ def get_domain_topic_event_subscription_delivery_attributes(domain_name: Optiona
59
59
  Get all delivery attributes for an event subscription for domain topic.
60
60
  Azure REST API version: 2022-06-15.
61
61
 
62
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
62
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
63
63
 
64
64
 
65
65
  :param str domain_name: Name of the top level domain.
@@ -86,7 +86,7 @@ def get_domain_topic_event_subscription_delivery_attributes_output(domain_name:
86
86
  Get all delivery attributes for an event subscription for domain topic.
87
87
  Azure REST API version: 2022-06-15.
88
88
 
89
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
89
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
90
90
 
91
91
 
92
92
  :param str domain_name: Name of the top level domain.
@@ -58,7 +58,7 @@ def get_domain_topic_event_subscription_full_url(domain_name: Optional[str] = No
58
58
  Get the full endpoint URL for a nested event subscription for domain topic.
59
59
  Azure REST API version: 2022-06-15.
60
60
 
61
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
61
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
62
62
 
63
63
 
64
64
  :param str domain_name: Name of the top level domain.
@@ -85,7 +85,7 @@ def get_domain_topic_event_subscription_full_url_output(domain_name: Optional[pu
85
85
  Get the full endpoint URL for a nested event subscription for domain topic.
86
86
  Azure REST API version: 2022-06-15.
87
87
 
88
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
88
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
89
89
 
90
90
 
91
91
  :param str domain_name: Name of the top level domain.
@@ -229,7 +229,7 @@ def get_event_subscription(event_subscription_name: Optional[str] = None,
229
229
  Get properties of an event subscription.
230
230
  Azure REST API version: 2022-06-15.
231
231
 
232
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
232
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
233
233
 
234
234
 
235
235
  :param str event_subscription_name: Name of the event subscription.
@@ -264,7 +264,7 @@ def get_event_subscription_output(event_subscription_name: Optional[pulumi.Input
264
264
  Get properties of an event subscription.
265
265
  Azure REST API version: 2022-06-15.
266
266
 
267
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
267
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
268
268
 
269
269
 
270
270
  :param str event_subscription_name: Name of the event subscription.
@@ -57,7 +57,7 @@ def get_event_subscription_delivery_attributes(event_subscription_name: Optional
57
57
  Get all delivery attributes for an event subscription.
58
58
  Azure REST API version: 2022-06-15.
59
59
 
60
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
60
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
61
61
 
62
62
 
63
63
  :param str event_subscription_name: Name of the event subscription.
@@ -78,7 +78,7 @@ def get_event_subscription_delivery_attributes_output(event_subscription_name: O
78
78
  Get all delivery attributes for an event subscription.
79
79
  Azure REST API version: 2022-06-15.
80
80
 
81
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
81
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
82
82
 
83
83
 
84
84
  :param str event_subscription_name: Name of the event subscription.
@@ -56,7 +56,7 @@ def get_event_subscription_full_url(event_subscription_name: Optional[str] = Non
56
56
  Get the full endpoint URL for an event subscription.
57
57
  Azure REST API version: 2022-06-15.
58
58
 
59
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
59
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
60
60
 
61
61
 
62
62
  :param str event_subscription_name: Name of the event subscription.
@@ -77,7 +77,7 @@ def get_event_subscription_full_url_output(event_subscription_name: Optional[pul
77
77
  Get the full endpoint URL for an event subscription.
78
78
  Azure REST API version: 2022-06-15.
79
79
 
80
- Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
80
+ Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
81
81
 
82
82
 
83
83
  :param str event_subscription_name: Name of the event subscription.
@@ -236,7 +236,7 @@ def get_namespace(namespace_name: Optional[str] = None,
236
236
  Get properties of a namespace.
237
237
  Azure REST API version: 2023-06-01-preview.
238
238
 
239
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
239
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
240
240
 
241
241
 
242
242
  :param str namespace_name: Name of the namespace.
@@ -272,7 +272,7 @@ def get_namespace_output(namespace_name: Optional[pulumi.Input[str]] = None,
272
272
  Get properties of a namespace.
273
273
  Azure REST API version: 2023-06-01-preview.
274
274
 
275
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
275
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
276
276
 
277
277
 
278
278
  :param str namespace_name: Name of the namespace.
@@ -143,7 +143,7 @@ def get_namespace_topic(namespace_name: Optional[str] = None,
143
143
  Get properties of a namespace topic.
144
144
  Azure REST API version: 2023-06-01-preview.
145
145
 
146
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
146
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
147
147
 
148
148
 
149
149
  :param str namespace_name: Name of the namespace.
@@ -174,7 +174,7 @@ def get_namespace_topic_output(namespace_name: Optional[pulumi.Input[str]] = Non
174
174
  Get properties of a namespace topic.
175
175
  Azure REST API version: 2023-06-01-preview.
176
176
 
177
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
177
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
178
178
 
179
179
 
180
180
  :param str namespace_name: Name of the namespace.
@@ -143,7 +143,7 @@ def get_namespace_topic_event_subscription(event_subscription_name: Optional[str
143
143
  Get properties of an event subscription of a namespace topic.
144
144
  Azure REST API version: 2023-06-01-preview.
145
145
 
146
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
146
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
147
147
 
148
148
 
149
149
  :param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
@@ -177,7 +177,7 @@ def get_namespace_topic_event_subscription_output(event_subscription_name: Optio
177
177
  Get properties of an event subscription of a namespace topic.
178
178
  Azure REST API version: 2023-06-01-preview.
179
179
 
180
- Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
180
+ Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
181
181
 
182
182
 
183
183
  :param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
@@ -59,7 +59,7 @@ def get_namespace_topic_event_subscription_delivery_attributes(event_subscriptio
59
59
  Get all delivery attributes for an event subscription of a namespace topic.
60
60
  Azure REST API version: 2023-12-15-preview.
61
61
 
62
- Other available API versions: 2024-06-01-preview, 2024-12-15-preview.
62
+ Other available API versions: 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
63
63
 
64
64
 
65
65
  :param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
@@ -86,7 +86,7 @@ def get_namespace_topic_event_subscription_delivery_attributes_output(event_subs
86
86
  Get all delivery attributes for an event subscription of a namespace topic.
87
87
  Azure REST API version: 2023-12-15-preview.
88
88
 
89
- Other available API versions: 2024-06-01-preview, 2024-12-15-preview.
89
+ Other available API versions: 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
90
90
 
91
91
 
92
92
  :param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.