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
@@ -0,0 +1,381 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetDomainResult',
20
+ 'AwaitableGetDomainResult',
21
+ 'get_domain',
22
+ 'get_domain_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetDomainResult:
27
+ """
28
+ EventGrid Domain.
29
+ """
30
+ def __init__(__self__, auto_create_topic_with_first_subscription=None, auto_delete_topic_with_last_subscription=None, data_residency_boundary=None, disable_local_auth=None, endpoint=None, event_type_info=None, id=None, identity=None, inbound_ip_rules=None, input_schema=None, input_schema_mapping=None, location=None, metric_resource_id=None, minimum_tls_version_allowed=None, name=None, private_endpoint_connections=None, provisioning_state=None, public_network_access=None, system_data=None, tags=None, type=None):
31
+ if auto_create_topic_with_first_subscription and not isinstance(auto_create_topic_with_first_subscription, bool):
32
+ raise TypeError("Expected argument 'auto_create_topic_with_first_subscription' to be a bool")
33
+ pulumi.set(__self__, "auto_create_topic_with_first_subscription", auto_create_topic_with_first_subscription)
34
+ if auto_delete_topic_with_last_subscription and not isinstance(auto_delete_topic_with_last_subscription, bool):
35
+ raise TypeError("Expected argument 'auto_delete_topic_with_last_subscription' to be a bool")
36
+ pulumi.set(__self__, "auto_delete_topic_with_last_subscription", auto_delete_topic_with_last_subscription)
37
+ if data_residency_boundary and not isinstance(data_residency_boundary, str):
38
+ raise TypeError("Expected argument 'data_residency_boundary' to be a str")
39
+ pulumi.set(__self__, "data_residency_boundary", data_residency_boundary)
40
+ if disable_local_auth and not isinstance(disable_local_auth, bool):
41
+ raise TypeError("Expected argument 'disable_local_auth' to be a bool")
42
+ pulumi.set(__self__, "disable_local_auth", disable_local_auth)
43
+ if endpoint and not isinstance(endpoint, str):
44
+ raise TypeError("Expected argument 'endpoint' to be a str")
45
+ pulumi.set(__self__, "endpoint", endpoint)
46
+ if event_type_info and not isinstance(event_type_info, dict):
47
+ raise TypeError("Expected argument 'event_type_info' to be a dict")
48
+ pulumi.set(__self__, "event_type_info", event_type_info)
49
+ if id and not isinstance(id, str):
50
+ raise TypeError("Expected argument 'id' to be a str")
51
+ pulumi.set(__self__, "id", id)
52
+ if identity and not isinstance(identity, dict):
53
+ raise TypeError("Expected argument 'identity' to be a dict")
54
+ pulumi.set(__self__, "identity", identity)
55
+ if inbound_ip_rules and not isinstance(inbound_ip_rules, list):
56
+ raise TypeError("Expected argument 'inbound_ip_rules' to be a list")
57
+ pulumi.set(__self__, "inbound_ip_rules", inbound_ip_rules)
58
+ if input_schema and not isinstance(input_schema, str):
59
+ raise TypeError("Expected argument 'input_schema' to be a str")
60
+ pulumi.set(__self__, "input_schema", input_schema)
61
+ if input_schema_mapping and not isinstance(input_schema_mapping, dict):
62
+ raise TypeError("Expected argument 'input_schema_mapping' to be a dict")
63
+ pulumi.set(__self__, "input_schema_mapping", input_schema_mapping)
64
+ if location and not isinstance(location, str):
65
+ raise TypeError("Expected argument 'location' to be a str")
66
+ pulumi.set(__self__, "location", location)
67
+ if metric_resource_id and not isinstance(metric_resource_id, str):
68
+ raise TypeError("Expected argument 'metric_resource_id' to be a str")
69
+ pulumi.set(__self__, "metric_resource_id", metric_resource_id)
70
+ if minimum_tls_version_allowed and not isinstance(minimum_tls_version_allowed, str):
71
+ raise TypeError("Expected argument 'minimum_tls_version_allowed' to be a str")
72
+ pulumi.set(__self__, "minimum_tls_version_allowed", minimum_tls_version_allowed)
73
+ if name and not isinstance(name, str):
74
+ raise TypeError("Expected argument 'name' to be a str")
75
+ pulumi.set(__self__, "name", name)
76
+ if private_endpoint_connections and not isinstance(private_endpoint_connections, list):
77
+ raise TypeError("Expected argument 'private_endpoint_connections' to be a list")
78
+ pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
79
+ if provisioning_state and not isinstance(provisioning_state, str):
80
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
81
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
82
+ if public_network_access and not isinstance(public_network_access, str):
83
+ raise TypeError("Expected argument 'public_network_access' to be a str")
84
+ pulumi.set(__self__, "public_network_access", public_network_access)
85
+ if system_data and not isinstance(system_data, dict):
86
+ raise TypeError("Expected argument 'system_data' to be a dict")
87
+ pulumi.set(__self__, "system_data", system_data)
88
+ if tags and not isinstance(tags, dict):
89
+ raise TypeError("Expected argument 'tags' to be a dict")
90
+ pulumi.set(__self__, "tags", tags)
91
+ if type and not isinstance(type, str):
92
+ raise TypeError("Expected argument 'type' to be a str")
93
+ pulumi.set(__self__, "type", type)
94
+
95
+ @property
96
+ @pulumi.getter(name="autoCreateTopicWithFirstSubscription")
97
+ def auto_create_topic_with_first_subscription(self) -> Optional[bool]:
98
+ """
99
+ This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
100
+ In this context, creation of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true.
101
+ When this property is null or set to true, Event Grid is responsible of automatically creating the domain topic when the first event subscription is
102
+ created at the scope of the domain topic. If this property is set to false, then creating the first event subscription will require creating a domain topic
103
+ by the user. The self-management mode can be used if the user wants full control of when the domain topic is created, while auto-managed mode provides the
104
+ flexibility to perform less operations and manage fewer resources by the user. Also, note that in auto-managed creation mode, user is allowed to create the
105
+ domain topic on demand if needed.
106
+ """
107
+ return pulumi.get(self, "auto_create_topic_with_first_subscription")
108
+
109
+ @property
110
+ @pulumi.getter(name="autoDeleteTopicWithLastSubscription")
111
+ def auto_delete_topic_with_last_subscription(self) -> Optional[bool]:
112
+ """
113
+ This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
114
+ In this context, deletion of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true.
115
+ When this property is set to true, Event Grid is responsible of automatically deleting the domain topic when the last event subscription at the scope
116
+ of the domain topic is deleted. If this property is set to false, then the user needs to manually delete the domain topic when it is no longer needed
117
+ (e.g., when last event subscription is deleted and the resource needs to be cleaned up). The self-management mode can be used if the user wants full
118
+ control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer
119
+ resources by the user.
120
+ """
121
+ return pulumi.get(self, "auto_delete_topic_with_last_subscription")
122
+
123
+ @property
124
+ @pulumi.getter(name="dataResidencyBoundary")
125
+ def data_residency_boundary(self) -> Optional[str]:
126
+ """
127
+ Data Residency Boundary of the resource.
128
+ """
129
+ return pulumi.get(self, "data_residency_boundary")
130
+
131
+ @property
132
+ @pulumi.getter(name="disableLocalAuth")
133
+ def disable_local_auth(self) -> Optional[bool]:
134
+ """
135
+ This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the domain.
136
+ """
137
+ return pulumi.get(self, "disable_local_auth")
138
+
139
+ @property
140
+ @pulumi.getter
141
+ def endpoint(self) -> str:
142
+ """
143
+ Endpoint for the Event Grid Domain Resource which is used for publishing the events.
144
+ """
145
+ return pulumi.get(self, "endpoint")
146
+
147
+ @property
148
+ @pulumi.getter(name="eventTypeInfo")
149
+ def event_type_info(self) -> Optional['outputs.EventTypeInfoResponse']:
150
+ """
151
+ Event Type Information for the domain. This information is provided by the publisher and can be used by the
152
+ subscriber to view different types of events that are published.
153
+ """
154
+ return pulumi.get(self, "event_type_info")
155
+
156
+ @property
157
+ @pulumi.getter
158
+ def id(self) -> str:
159
+ """
160
+ Fully qualified identifier of the resource.
161
+ """
162
+ return pulumi.get(self, "id")
163
+
164
+ @property
165
+ @pulumi.getter
166
+ def identity(self) -> Optional['outputs.IdentityInfoResponse']:
167
+ """
168
+ Identity information for the Event Grid Domain resource.
169
+ """
170
+ return pulumi.get(self, "identity")
171
+
172
+ @property
173
+ @pulumi.getter(name="inboundIpRules")
174
+ def inbound_ip_rules(self) -> Optional[Sequence['outputs.InboundIpRuleResponse']]:
175
+ """
176
+ This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
177
+ """
178
+ return pulumi.get(self, "inbound_ip_rules")
179
+
180
+ @property
181
+ @pulumi.getter(name="inputSchema")
182
+ def input_schema(self) -> Optional[str]:
183
+ """
184
+ This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
185
+ """
186
+ return pulumi.get(self, "input_schema")
187
+
188
+ @property
189
+ @pulumi.getter(name="inputSchemaMapping")
190
+ def input_schema_mapping(self) -> Optional['outputs.JsonInputSchemaMappingResponse']:
191
+ """
192
+ Information about the InputSchemaMapping which specified the info about mapping event payload.
193
+ """
194
+ return pulumi.get(self, "input_schema_mapping")
195
+
196
+ @property
197
+ @pulumi.getter
198
+ def location(self) -> str:
199
+ """
200
+ Location of the resource.
201
+ """
202
+ return pulumi.get(self, "location")
203
+
204
+ @property
205
+ @pulumi.getter(name="metricResourceId")
206
+ def metric_resource_id(self) -> str:
207
+ """
208
+ Metric resource id for the Event Grid Domain Resource.
209
+ """
210
+ return pulumi.get(self, "metric_resource_id")
211
+
212
+ @property
213
+ @pulumi.getter(name="minimumTlsVersionAllowed")
214
+ def minimum_tls_version_allowed(self) -> Optional[str]:
215
+ """
216
+ Minimum TLS version of the publisher allowed to publish to this domain
217
+ """
218
+ return pulumi.get(self, "minimum_tls_version_allowed")
219
+
220
+ @property
221
+ @pulumi.getter
222
+ def name(self) -> str:
223
+ """
224
+ Name of the resource.
225
+ """
226
+ return pulumi.get(self, "name")
227
+
228
+ @property
229
+ @pulumi.getter(name="privateEndpointConnections")
230
+ def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
231
+ """
232
+ List of private endpoint connections.
233
+ """
234
+ return pulumi.get(self, "private_endpoint_connections")
235
+
236
+ @property
237
+ @pulumi.getter(name="provisioningState")
238
+ def provisioning_state(self) -> str:
239
+ """
240
+ Provisioning state of the Event Grid Domain Resource.
241
+ """
242
+ return pulumi.get(self, "provisioning_state")
243
+
244
+ @property
245
+ @pulumi.getter(name="publicNetworkAccess")
246
+ def public_network_access(self) -> Optional[str]:
247
+ """
248
+ This determines if traffic is allowed over public network. By default it is enabled.
249
+ You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.DomainProperties.InboundIpRules" />
250
+ """
251
+ return pulumi.get(self, "public_network_access")
252
+
253
+ @property
254
+ @pulumi.getter(name="systemData")
255
+ def system_data(self) -> 'outputs.SystemDataResponse':
256
+ """
257
+ The system metadata relating to the Event Grid resource.
258
+ """
259
+ return pulumi.get(self, "system_data")
260
+
261
+ @property
262
+ @pulumi.getter
263
+ def tags(self) -> Optional[Mapping[str, str]]:
264
+ """
265
+ Tags of the resource.
266
+ """
267
+ return pulumi.get(self, "tags")
268
+
269
+ @property
270
+ @pulumi.getter
271
+ def type(self) -> str:
272
+ """
273
+ Type of the resource.
274
+ """
275
+ return pulumi.get(self, "type")
276
+
277
+
278
+ class AwaitableGetDomainResult(GetDomainResult):
279
+ # pylint: disable=using-constant-test
280
+ def __await__(self):
281
+ if False:
282
+ yield self
283
+ return GetDomainResult(
284
+ auto_create_topic_with_first_subscription=self.auto_create_topic_with_first_subscription,
285
+ auto_delete_topic_with_last_subscription=self.auto_delete_topic_with_last_subscription,
286
+ data_residency_boundary=self.data_residency_boundary,
287
+ disable_local_auth=self.disable_local_auth,
288
+ endpoint=self.endpoint,
289
+ event_type_info=self.event_type_info,
290
+ id=self.id,
291
+ identity=self.identity,
292
+ inbound_ip_rules=self.inbound_ip_rules,
293
+ input_schema=self.input_schema,
294
+ input_schema_mapping=self.input_schema_mapping,
295
+ location=self.location,
296
+ metric_resource_id=self.metric_resource_id,
297
+ minimum_tls_version_allowed=self.minimum_tls_version_allowed,
298
+ name=self.name,
299
+ private_endpoint_connections=self.private_endpoint_connections,
300
+ provisioning_state=self.provisioning_state,
301
+ public_network_access=self.public_network_access,
302
+ system_data=self.system_data,
303
+ tags=self.tags,
304
+ type=self.type)
305
+
306
+
307
+ def get_domain(domain_name: Optional[str] = None,
308
+ resource_group_name: Optional[str] = None,
309
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainResult:
310
+ """
311
+ Get properties of a domain.
312
+
313
+
314
+ :param str domain_name: Name of the domain.
315
+ :param str resource_group_name: The name of the resource group within the user's subscription.
316
+ """
317
+ __args__ = dict()
318
+ __args__['domainName'] = domain_name
319
+ __args__['resourceGroupName'] = resource_group_name
320
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
321
+ __ret__ = pulumi.runtime.invoke('azure-native:eventgrid/v20250215:getDomain', __args__, opts=opts, typ=GetDomainResult).value
322
+
323
+ return AwaitableGetDomainResult(
324
+ auto_create_topic_with_first_subscription=pulumi.get(__ret__, 'auto_create_topic_with_first_subscription'),
325
+ auto_delete_topic_with_last_subscription=pulumi.get(__ret__, 'auto_delete_topic_with_last_subscription'),
326
+ data_residency_boundary=pulumi.get(__ret__, 'data_residency_boundary'),
327
+ disable_local_auth=pulumi.get(__ret__, 'disable_local_auth'),
328
+ endpoint=pulumi.get(__ret__, 'endpoint'),
329
+ event_type_info=pulumi.get(__ret__, 'event_type_info'),
330
+ id=pulumi.get(__ret__, 'id'),
331
+ identity=pulumi.get(__ret__, 'identity'),
332
+ inbound_ip_rules=pulumi.get(__ret__, 'inbound_ip_rules'),
333
+ input_schema=pulumi.get(__ret__, 'input_schema'),
334
+ input_schema_mapping=pulumi.get(__ret__, 'input_schema_mapping'),
335
+ location=pulumi.get(__ret__, 'location'),
336
+ metric_resource_id=pulumi.get(__ret__, 'metric_resource_id'),
337
+ minimum_tls_version_allowed=pulumi.get(__ret__, 'minimum_tls_version_allowed'),
338
+ name=pulumi.get(__ret__, 'name'),
339
+ private_endpoint_connections=pulumi.get(__ret__, 'private_endpoint_connections'),
340
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
341
+ public_network_access=pulumi.get(__ret__, 'public_network_access'),
342
+ system_data=pulumi.get(__ret__, 'system_data'),
343
+ tags=pulumi.get(__ret__, 'tags'),
344
+ type=pulumi.get(__ret__, 'type'))
345
+ def get_domain_output(domain_name: Optional[pulumi.Input[str]] = None,
346
+ resource_group_name: Optional[pulumi.Input[str]] = None,
347
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainResult]:
348
+ """
349
+ Get properties of a domain.
350
+
351
+
352
+ :param str domain_name: Name of the domain.
353
+ :param str resource_group_name: The name of the resource group within the user's subscription.
354
+ """
355
+ __args__ = dict()
356
+ __args__['domainName'] = domain_name
357
+ __args__['resourceGroupName'] = resource_group_name
358
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
359
+ __ret__ = pulumi.runtime.invoke_output('azure-native:eventgrid/v20250215:getDomain', __args__, opts=opts, typ=GetDomainResult)
360
+ return __ret__.apply(lambda __response__: GetDomainResult(
361
+ auto_create_topic_with_first_subscription=pulumi.get(__response__, 'auto_create_topic_with_first_subscription'),
362
+ auto_delete_topic_with_last_subscription=pulumi.get(__response__, 'auto_delete_topic_with_last_subscription'),
363
+ data_residency_boundary=pulumi.get(__response__, 'data_residency_boundary'),
364
+ disable_local_auth=pulumi.get(__response__, 'disable_local_auth'),
365
+ endpoint=pulumi.get(__response__, 'endpoint'),
366
+ event_type_info=pulumi.get(__response__, 'event_type_info'),
367
+ id=pulumi.get(__response__, 'id'),
368
+ identity=pulumi.get(__response__, 'identity'),
369
+ inbound_ip_rules=pulumi.get(__response__, 'inbound_ip_rules'),
370
+ input_schema=pulumi.get(__response__, 'input_schema'),
371
+ input_schema_mapping=pulumi.get(__response__, 'input_schema_mapping'),
372
+ location=pulumi.get(__response__, 'location'),
373
+ metric_resource_id=pulumi.get(__response__, 'metric_resource_id'),
374
+ minimum_tls_version_allowed=pulumi.get(__response__, 'minimum_tls_version_allowed'),
375
+ name=pulumi.get(__response__, 'name'),
376
+ private_endpoint_connections=pulumi.get(__response__, 'private_endpoint_connections'),
377
+ provisioning_state=pulumi.get(__response__, 'provisioning_state'),
378
+ public_network_access=pulumi.get(__response__, 'public_network_access'),
379
+ system_data=pulumi.get(__response__, 'system_data'),
380
+ tags=pulumi.get(__response__, 'tags'),
381
+ type=pulumi.get(__response__, 'type')))
@@ -0,0 +1,293 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetDomainEventSubscriptionResult',
20
+ 'AwaitableGetDomainEventSubscriptionResult',
21
+ 'get_domain_event_subscription',
22
+ 'get_domain_event_subscription_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetDomainEventSubscriptionResult:
27
+ """
28
+ Event Subscription.
29
+ """
30
+ def __init__(__self__, dead_letter_destination=None, dead_letter_with_resource_identity=None, delivery_with_resource_identity=None, destination=None, event_delivery_schema=None, expiration_time_utc=None, filter=None, id=None, labels=None, name=None, provisioning_state=None, retry_policy=None, system_data=None, topic=None, type=None):
31
+ if dead_letter_destination and not isinstance(dead_letter_destination, dict):
32
+ raise TypeError("Expected argument 'dead_letter_destination' to be a dict")
33
+ pulumi.set(__self__, "dead_letter_destination", dead_letter_destination)
34
+ if dead_letter_with_resource_identity and not isinstance(dead_letter_with_resource_identity, dict):
35
+ raise TypeError("Expected argument 'dead_letter_with_resource_identity' to be a dict")
36
+ pulumi.set(__self__, "dead_letter_with_resource_identity", dead_letter_with_resource_identity)
37
+ if delivery_with_resource_identity and not isinstance(delivery_with_resource_identity, dict):
38
+ raise TypeError("Expected argument 'delivery_with_resource_identity' to be a dict")
39
+ pulumi.set(__self__, "delivery_with_resource_identity", delivery_with_resource_identity)
40
+ if destination and not isinstance(destination, dict):
41
+ raise TypeError("Expected argument 'destination' to be a dict")
42
+ pulumi.set(__self__, "destination", destination)
43
+ if event_delivery_schema and not isinstance(event_delivery_schema, str):
44
+ raise TypeError("Expected argument 'event_delivery_schema' to be a str")
45
+ pulumi.set(__self__, "event_delivery_schema", event_delivery_schema)
46
+ if expiration_time_utc and not isinstance(expiration_time_utc, str):
47
+ raise TypeError("Expected argument 'expiration_time_utc' to be a str")
48
+ pulumi.set(__self__, "expiration_time_utc", expiration_time_utc)
49
+ if filter and not isinstance(filter, dict):
50
+ raise TypeError("Expected argument 'filter' to be a dict")
51
+ pulumi.set(__self__, "filter", filter)
52
+ if id and not isinstance(id, str):
53
+ raise TypeError("Expected argument 'id' to be a str")
54
+ pulumi.set(__self__, "id", id)
55
+ if labels and not isinstance(labels, list):
56
+ raise TypeError("Expected argument 'labels' to be a list")
57
+ pulumi.set(__self__, "labels", labels)
58
+ if name and not isinstance(name, str):
59
+ raise TypeError("Expected argument 'name' to be a str")
60
+ pulumi.set(__self__, "name", name)
61
+ if provisioning_state and not isinstance(provisioning_state, str):
62
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
63
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
64
+ if retry_policy and not isinstance(retry_policy, dict):
65
+ raise TypeError("Expected argument 'retry_policy' to be a dict")
66
+ pulumi.set(__self__, "retry_policy", retry_policy)
67
+ if system_data and not isinstance(system_data, dict):
68
+ raise TypeError("Expected argument 'system_data' to be a dict")
69
+ pulumi.set(__self__, "system_data", system_data)
70
+ if topic and not isinstance(topic, str):
71
+ raise TypeError("Expected argument 'topic' to be a str")
72
+ pulumi.set(__self__, "topic", topic)
73
+ if type and not isinstance(type, str):
74
+ raise TypeError("Expected argument 'type' to be a str")
75
+ pulumi.set(__self__, "type", type)
76
+
77
+ @property
78
+ @pulumi.getter(name="deadLetterDestination")
79
+ def dead_letter_destination(self) -> Optional['outputs.StorageBlobDeadLetterDestinationResponse']:
80
+ """
81
+ The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination.
82
+ Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
83
+ """
84
+ return pulumi.get(self, "dead_letter_destination")
85
+
86
+ @property
87
+ @pulumi.getter(name="deadLetterWithResourceIdentity")
88
+ def dead_letter_with_resource_identity(self) -> Optional['outputs.DeadLetterWithResourceIdentityResponse']:
89
+ """
90
+ The dead letter destination of the event subscription. Any event that cannot be delivered to its' destination is sent to the dead letter destination.
91
+ Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.
92
+ """
93
+ return pulumi.get(self, "dead_letter_with_resource_identity")
94
+
95
+ @property
96
+ @pulumi.getter(name="deliveryWithResourceIdentity")
97
+ def delivery_with_resource_identity(self) -> Optional['outputs.DeliveryWithResourceIdentityResponse']:
98
+ """
99
+ Information about the destination where events have to be delivered for the event subscription.
100
+ Uses the managed identity setup on the parent resource (namely, topic or domain) to acquire the authentication tokens being used during delivery / dead-lettering.
101
+ """
102
+ return pulumi.get(self, "delivery_with_resource_identity")
103
+
104
+ @property
105
+ @pulumi.getter
106
+ def destination(self) -> Optional[Any]:
107
+ """
108
+ Information about the destination where events have to be delivered for the event subscription.
109
+ Uses Azure Event Grid's identity to acquire the authentication tokens being used during delivery / dead-lettering.
110
+ """
111
+ return pulumi.get(self, "destination")
112
+
113
+ @property
114
+ @pulumi.getter(name="eventDeliverySchema")
115
+ def event_delivery_schema(self) -> Optional[str]:
116
+ """
117
+ The event delivery schema for the event subscription.
118
+ """
119
+ return pulumi.get(self, "event_delivery_schema")
120
+
121
+ @property
122
+ @pulumi.getter(name="expirationTimeUtc")
123
+ def expiration_time_utc(self) -> Optional[str]:
124
+ """
125
+ Expiration time of the event subscription.
126
+ """
127
+ return pulumi.get(self, "expiration_time_utc")
128
+
129
+ @property
130
+ @pulumi.getter
131
+ def filter(self) -> Optional['outputs.EventSubscriptionFilterResponse']:
132
+ """
133
+ Information about the filter for the event subscription.
134
+ """
135
+ return pulumi.get(self, "filter")
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def id(self) -> str:
140
+ """
141
+ Fully qualified identifier of the resource.
142
+ """
143
+ return pulumi.get(self, "id")
144
+
145
+ @property
146
+ @pulumi.getter
147
+ def labels(self) -> Optional[Sequence[str]]:
148
+ """
149
+ List of user defined labels.
150
+ """
151
+ return pulumi.get(self, "labels")
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def name(self) -> str:
156
+ """
157
+ Name of the resource.
158
+ """
159
+ return pulumi.get(self, "name")
160
+
161
+ @property
162
+ @pulumi.getter(name="provisioningState")
163
+ def provisioning_state(self) -> str:
164
+ """
165
+ Provisioning state of the event subscription.
166
+ """
167
+ return pulumi.get(self, "provisioning_state")
168
+
169
+ @property
170
+ @pulumi.getter(name="retryPolicy")
171
+ def retry_policy(self) -> Optional['outputs.RetryPolicyResponse']:
172
+ """
173
+ The retry policy for events. This can be used to configure maximum number of delivery attempts and time to live for events.
174
+ """
175
+ return pulumi.get(self, "retry_policy")
176
+
177
+ @property
178
+ @pulumi.getter(name="systemData")
179
+ def system_data(self) -> 'outputs.SystemDataResponse':
180
+ """
181
+ The system metadata relating to the Event Grid resource.
182
+ """
183
+ return pulumi.get(self, "system_data")
184
+
185
+ @property
186
+ @pulumi.getter
187
+ def topic(self) -> str:
188
+ """
189
+ Name of the topic of the event subscription.
190
+ """
191
+ return pulumi.get(self, "topic")
192
+
193
+ @property
194
+ @pulumi.getter
195
+ def type(self) -> str:
196
+ """
197
+ Type of the resource.
198
+ """
199
+ return pulumi.get(self, "type")
200
+
201
+
202
+ class AwaitableGetDomainEventSubscriptionResult(GetDomainEventSubscriptionResult):
203
+ # pylint: disable=using-constant-test
204
+ def __await__(self):
205
+ if False:
206
+ yield self
207
+ return GetDomainEventSubscriptionResult(
208
+ dead_letter_destination=self.dead_letter_destination,
209
+ dead_letter_with_resource_identity=self.dead_letter_with_resource_identity,
210
+ delivery_with_resource_identity=self.delivery_with_resource_identity,
211
+ destination=self.destination,
212
+ event_delivery_schema=self.event_delivery_schema,
213
+ expiration_time_utc=self.expiration_time_utc,
214
+ filter=self.filter,
215
+ id=self.id,
216
+ labels=self.labels,
217
+ name=self.name,
218
+ provisioning_state=self.provisioning_state,
219
+ retry_policy=self.retry_policy,
220
+ system_data=self.system_data,
221
+ topic=self.topic,
222
+ type=self.type)
223
+
224
+
225
+ def get_domain_event_subscription(domain_name: Optional[str] = None,
226
+ event_subscription_name: Optional[str] = None,
227
+ resource_group_name: Optional[str] = None,
228
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainEventSubscriptionResult:
229
+ """
230
+ Get properties of an event subscription of a domain.
231
+
232
+
233
+ :param str domain_name: Name of the domain.
234
+ :param str event_subscription_name: Name of the event subscription to be found.
235
+ :param str resource_group_name: The name of the resource group within the user's subscription.
236
+ """
237
+ __args__ = dict()
238
+ __args__['domainName'] = domain_name
239
+ __args__['eventSubscriptionName'] = event_subscription_name
240
+ __args__['resourceGroupName'] = resource_group_name
241
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
242
+ __ret__ = pulumi.runtime.invoke('azure-native:eventgrid/v20250215:getDomainEventSubscription', __args__, opts=opts, typ=GetDomainEventSubscriptionResult).value
243
+
244
+ return AwaitableGetDomainEventSubscriptionResult(
245
+ dead_letter_destination=pulumi.get(__ret__, 'dead_letter_destination'),
246
+ dead_letter_with_resource_identity=pulumi.get(__ret__, 'dead_letter_with_resource_identity'),
247
+ delivery_with_resource_identity=pulumi.get(__ret__, 'delivery_with_resource_identity'),
248
+ destination=pulumi.get(__ret__, 'destination'),
249
+ event_delivery_schema=pulumi.get(__ret__, 'event_delivery_schema'),
250
+ expiration_time_utc=pulumi.get(__ret__, 'expiration_time_utc'),
251
+ filter=pulumi.get(__ret__, 'filter'),
252
+ id=pulumi.get(__ret__, 'id'),
253
+ labels=pulumi.get(__ret__, 'labels'),
254
+ name=pulumi.get(__ret__, 'name'),
255
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
256
+ retry_policy=pulumi.get(__ret__, 'retry_policy'),
257
+ system_data=pulumi.get(__ret__, 'system_data'),
258
+ topic=pulumi.get(__ret__, 'topic'),
259
+ type=pulumi.get(__ret__, 'type'))
260
+ def get_domain_event_subscription_output(domain_name: Optional[pulumi.Input[str]] = None,
261
+ event_subscription_name: Optional[pulumi.Input[str]] = None,
262
+ resource_group_name: Optional[pulumi.Input[str]] = None,
263
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainEventSubscriptionResult]:
264
+ """
265
+ Get properties of an event subscription of a domain.
266
+
267
+
268
+ :param str domain_name: Name of the domain.
269
+ :param str event_subscription_name: Name of the event subscription to be found.
270
+ :param str resource_group_name: The name of the resource group within the user's subscription.
271
+ """
272
+ __args__ = dict()
273
+ __args__['domainName'] = domain_name
274
+ __args__['eventSubscriptionName'] = event_subscription_name
275
+ __args__['resourceGroupName'] = resource_group_name
276
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
277
+ __ret__ = pulumi.runtime.invoke_output('azure-native:eventgrid/v20250215:getDomainEventSubscription', __args__, opts=opts, typ=GetDomainEventSubscriptionResult)
278
+ return __ret__.apply(lambda __response__: GetDomainEventSubscriptionResult(
279
+ dead_letter_destination=pulumi.get(__response__, 'dead_letter_destination'),
280
+ dead_letter_with_resource_identity=pulumi.get(__response__, 'dead_letter_with_resource_identity'),
281
+ delivery_with_resource_identity=pulumi.get(__response__, 'delivery_with_resource_identity'),
282
+ destination=pulumi.get(__response__, 'destination'),
283
+ event_delivery_schema=pulumi.get(__response__, 'event_delivery_schema'),
284
+ expiration_time_utc=pulumi.get(__response__, 'expiration_time_utc'),
285
+ filter=pulumi.get(__response__, 'filter'),
286
+ id=pulumi.get(__response__, 'id'),
287
+ labels=pulumi.get(__response__, 'labels'),
288
+ name=pulumi.get(__response__, 'name'),
289
+ provisioning_state=pulumi.get(__response__, 'provisioning_state'),
290
+ retry_policy=pulumi.get(__response__, 'retry_policy'),
291
+ system_data=pulumi.get(__response__, 'system_data'),
292
+ topic=pulumi.get(__response__, 'topic'),
293
+ type=pulumi.get(__response__, 'type')))