pulumi-azure-native 2.87.0a1739193742__py3-none-any.whl → 2.88.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (415) hide show
  1. pulumi_azure_native/__init__.py +77 -1
  2. pulumi_azure_native/authorization/__init__.py +2 -0
  3. pulumi_azure_native/authorization/_enums.py +88 -0
  4. pulumi_azure_native/authorization/_inputs.py +1431 -43
  5. pulumi_azure_native/authorization/get_role_management_policy.py +247 -0
  6. pulumi_azure_native/authorization/outputs.py +312 -0
  7. pulumi_azure_native/authorization/role_management_policy.py +332 -0
  8. pulumi_azure_native/authorization/v20201001/__init__.py +4 -0
  9. pulumi_azure_native/authorization/v20201001/_enums.py +78 -0
  10. pulumi_azure_native/authorization/v20201001/_inputs.py +1134 -0
  11. pulumi_azure_native/authorization/v20201001/get_role_management_policy.py +241 -0
  12. pulumi_azure_native/authorization/v20201001/outputs.py +89 -0
  13. pulumi_azure_native/authorization/v20201001/role_management_policy.py +326 -0
  14. pulumi_azure_native/authorization/v20201001preview/__init__.py +4 -0
  15. pulumi_azure_native/authorization/v20201001preview/_enums.py +78 -0
  16. pulumi_azure_native/authorization/v20201001preview/_inputs.py +1134 -0
  17. pulumi_azure_native/authorization/v20201001preview/get_role_management_policy.py +241 -0
  18. pulumi_azure_native/authorization/v20201001preview/outputs.py +959 -0
  19. pulumi_azure_native/authorization/v20201001preview/role_management_policy.py +326 -0
  20. pulumi_azure_native/authorization/v20240201preview/__init__.py +4 -0
  21. pulumi_azure_native/authorization/v20240201preview/_enums.py +96 -0
  22. pulumi_azure_native/authorization/v20240201preview/_inputs.py +1390 -0
  23. pulumi_azure_native/authorization/v20240201preview/get_role_management_policy.py +241 -0
  24. pulumi_azure_native/authorization/v20240201preview/outputs.py +89 -0
  25. pulumi_azure_native/authorization/v20240201preview/role_management_policy.py +326 -0
  26. pulumi_azure_native/authorization/v20240901preview/__init__.py +4 -0
  27. pulumi_azure_native/authorization/v20240901preview/_enums.py +96 -0
  28. pulumi_azure_native/authorization/v20240901preview/_inputs.py +1410 -0
  29. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy.py +241 -0
  30. pulumi_azure_native/authorization/v20240901preview/outputs.py +89 -0
  31. pulumi_azure_native/authorization/v20240901preview/role_management_policy.py +326 -0
  32. pulumi_azure_native/communication/__init__.py +3 -0
  33. pulumi_azure_native/communication/communication_service.py +3 -3
  34. pulumi_azure_native/communication/domain.py +3 -3
  35. pulumi_azure_native/communication/email_service.py +3 -3
  36. pulumi_azure_native/communication/get_communication_service.py +2 -2
  37. pulumi_azure_native/communication/get_domain.py +2 -2
  38. pulumi_azure_native/communication/get_email_service.py +2 -2
  39. pulumi_azure_native/communication/get_sender_username.py +2 -2
  40. pulumi_azure_native/communication/get_suppression_list.py +4 -0
  41. pulumi_azure_native/communication/get_suppression_list_address.py +4 -0
  42. pulumi_azure_native/communication/list_communication_service_keys.py +2 -2
  43. pulumi_azure_native/communication/sender_username.py +3 -3
  44. pulumi_azure_native/communication/suppression_list.py +5 -1
  45. pulumi_azure_native/communication/suppression_list_address.py +5 -1
  46. pulumi_azure_native/communication/v20220701preview/domain.py +1 -1
  47. pulumi_azure_native/communication/v20230331/communication_service.py +1 -1
  48. pulumi_azure_native/communication/v20230331/domain.py +1 -1
  49. pulumi_azure_native/communication/v20230331/email_service.py +1 -1
  50. pulumi_azure_native/communication/v20230331/sender_username.py +1 -1
  51. pulumi_azure_native/communication/v20230401/communication_service.py +1 -1
  52. pulumi_azure_native/communication/v20230401/domain.py +1 -1
  53. pulumi_azure_native/communication/v20230401/email_service.py +1 -1
  54. pulumi_azure_native/communication/v20230401/sender_username.py +1 -1
  55. pulumi_azure_native/communication/v20230401preview/communication_service.py +1 -1
  56. pulumi_azure_native/communication/v20230401preview/domain.py +1 -1
  57. pulumi_azure_native/communication/v20230401preview/email_service.py +1 -1
  58. pulumi_azure_native/communication/v20230401preview/sender_username.py +1 -1
  59. pulumi_azure_native/communication/v20230601preview/communication_service.py +1 -1
  60. pulumi_azure_native/communication/v20230601preview/domain.py +1 -1
  61. pulumi_azure_native/communication/v20230601preview/email_service.py +1 -1
  62. pulumi_azure_native/communication/v20230601preview/sender_username.py +1 -1
  63. pulumi_azure_native/communication/v20230601preview/suppression_list.py +1 -1
  64. pulumi_azure_native/communication/v20230601preview/suppression_list_address.py +1 -1
  65. pulumi_azure_native/communication/v20240901preview/__init__.py +25 -0
  66. pulumi_azure_native/communication/v20240901preview/_enums.py +38 -0
  67. pulumi_azure_native/communication/v20240901preview/_inputs.py +79 -0
  68. pulumi_azure_native/communication/v20240901preview/communication_service.py +367 -0
  69. pulumi_azure_native/communication/v20240901preview/domain.py +368 -0
  70. pulumi_azure_native/communication/v20240901preview/email_service.py +267 -0
  71. pulumi_azure_native/communication/v20240901preview/get_communication_service.py +269 -0
  72. pulumi_azure_native/communication/v20240901preview/get_domain.py +275 -0
  73. pulumi_azure_native/communication/v20240901preview/get_email_service.py +185 -0
  74. pulumi_azure_native/communication/v20240901preview/get_sender_username.py +197 -0
  75. pulumi_azure_native/communication/v20240901preview/get_smtp_username.py +177 -0
  76. pulumi_azure_native/communication/v20240901preview/get_suppression_list.py +197 -0
  77. pulumi_azure_native/communication/v20240901preview/get_suppression_list_address.py +231 -0
  78. pulumi_azure_native/communication/v20240901preview/list_communication_service_keys.py +128 -0
  79. pulumi_azure_native/communication/v20240901preview/outputs.py +560 -0
  80. pulumi_azure_native/communication/v20240901preview/sender_username.py +290 -0
  81. pulumi_azure_native/communication/v20240901preview/smtp_username.py +278 -0
  82. pulumi_azure_native/communication/v20240901preview/suppression_list.py +270 -0
  83. pulumi_azure_native/communication/v20240901preview/suppression_list_address.py +369 -0
  84. pulumi_azure_native/datafactory/_inputs.py +43 -43
  85. pulumi_azure_native/datafactory/outputs.py +34 -34
  86. pulumi_azure_native/datafactory/v20180601/_inputs.py +43 -43
  87. pulumi_azure_native/datafactory/v20180601/outputs.py +34 -34
  88. pulumi_azure_native/eventgrid/__init__.py +3 -0
  89. pulumi_azure_native/eventgrid/ca_certificate.py +3 -3
  90. pulumi_azure_native/eventgrid/channel.py +3 -3
  91. pulumi_azure_native/eventgrid/client.py +3 -3
  92. pulumi_azure_native/eventgrid/client_group.py +3 -3
  93. pulumi_azure_native/eventgrid/domain.py +3 -3
  94. pulumi_azure_native/eventgrid/domain_event_subscription.py +3 -3
  95. pulumi_azure_native/eventgrid/domain_topic.py +3 -3
  96. pulumi_azure_native/eventgrid/domain_topic_event_subscription.py +3 -3
  97. pulumi_azure_native/eventgrid/event_subscription.py +3 -3
  98. pulumi_azure_native/eventgrid/get_ca_certificate.py +2 -2
  99. pulumi_azure_native/eventgrid/get_channel.py +2 -2
  100. pulumi_azure_native/eventgrid/get_channel_full_url.py +2 -2
  101. pulumi_azure_native/eventgrid/get_client.py +2 -2
  102. pulumi_azure_native/eventgrid/get_client_group.py +2 -2
  103. pulumi_azure_native/eventgrid/get_domain.py +2 -2
  104. pulumi_azure_native/eventgrid/get_domain_event_subscription.py +2 -2
  105. pulumi_azure_native/eventgrid/get_domain_event_subscription_delivery_attributes.py +2 -2
  106. pulumi_azure_native/eventgrid/get_domain_event_subscription_full_url.py +2 -2
  107. pulumi_azure_native/eventgrid/get_domain_topic.py +2 -2
  108. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription.py +2 -2
  109. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_delivery_attributes.py +2 -2
  110. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_full_url.py +2 -2
  111. pulumi_azure_native/eventgrid/get_event_subscription.py +2 -2
  112. pulumi_azure_native/eventgrid/get_event_subscription_delivery_attributes.py +2 -2
  113. pulumi_azure_native/eventgrid/get_event_subscription_full_url.py +2 -2
  114. pulumi_azure_native/eventgrid/get_namespace.py +2 -2
  115. pulumi_azure_native/eventgrid/get_namespace_topic.py +2 -2
  116. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription.py +2 -2
  117. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_delivery_attributes.py +2 -2
  118. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_full_url.py +2 -2
  119. pulumi_azure_native/eventgrid/get_partner_configuration.py +2 -2
  120. pulumi_azure_native/eventgrid/get_partner_namespace.py +2 -2
  121. pulumi_azure_native/eventgrid/get_partner_registration.py +2 -2
  122. pulumi_azure_native/eventgrid/get_partner_topic.py +2 -2
  123. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription.py +2 -2
  124. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_delivery_attributes.py +2 -2
  125. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_full_url.py +2 -2
  126. pulumi_azure_native/eventgrid/get_permission_binding.py +2 -2
  127. pulumi_azure_native/eventgrid/get_private_endpoint_connection.py +2 -2
  128. pulumi_azure_native/eventgrid/get_system_topic.py +2 -2
  129. pulumi_azure_native/eventgrid/get_system_topic_event_subscription.py +2 -2
  130. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_delivery_attributes.py +2 -2
  131. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_full_url.py +2 -2
  132. pulumi_azure_native/eventgrid/get_topic.py +2 -2
  133. pulumi_azure_native/eventgrid/get_topic_event_subscription.py +2 -2
  134. pulumi_azure_native/eventgrid/get_topic_event_subscription_delivery_attributes.py +2 -2
  135. pulumi_azure_native/eventgrid/get_topic_event_subscription_full_url.py +2 -2
  136. pulumi_azure_native/eventgrid/get_topic_space.py +2 -2
  137. pulumi_azure_native/eventgrid/list_domain_shared_access_keys.py +2 -2
  138. pulumi_azure_native/eventgrid/list_namespace_shared_access_keys.py +2 -2
  139. pulumi_azure_native/eventgrid/list_namespace_topic_shared_access_keys.py +2 -2
  140. pulumi_azure_native/eventgrid/list_partner_namespace_shared_access_keys.py +2 -2
  141. pulumi_azure_native/eventgrid/list_topic_shared_access_keys.py +2 -2
  142. pulumi_azure_native/eventgrid/namespace.py +3 -3
  143. pulumi_azure_native/eventgrid/namespace_topic.py +3 -3
  144. pulumi_azure_native/eventgrid/namespace_topic_event_subscription.py +3 -3
  145. pulumi_azure_native/eventgrid/partner_configuration.py +3 -3
  146. pulumi_azure_native/eventgrid/partner_namespace.py +3 -3
  147. pulumi_azure_native/eventgrid/partner_registration.py +3 -3
  148. pulumi_azure_native/eventgrid/partner_topic.py +3 -3
  149. pulumi_azure_native/eventgrid/partner_topic_event_subscription.py +3 -3
  150. pulumi_azure_native/eventgrid/permission_binding.py +3 -3
  151. pulumi_azure_native/eventgrid/private_endpoint_connection.py +3 -3
  152. pulumi_azure_native/eventgrid/system_topic.py +3 -3
  153. pulumi_azure_native/eventgrid/system_topic_event_subscription.py +3 -3
  154. pulumi_azure_native/eventgrid/topic.py +3 -3
  155. pulumi_azure_native/eventgrid/topic_event_subscription.py +3 -3
  156. pulumi_azure_native/eventgrid/topic_space.py +3 -3
  157. pulumi_azure_native/eventgrid/v20200401preview/domain.py +1 -1
  158. pulumi_azure_native/eventgrid/v20200401preview/topic.py +1 -1
  159. pulumi_azure_native/eventgrid/v20211015preview/partner_registration.py +1 -1
  160. pulumi_azure_native/eventgrid/v20220615/channel.py +1 -1
  161. pulumi_azure_native/eventgrid/v20220615/domain.py +1 -1
  162. pulumi_azure_native/eventgrid/v20220615/domain_event_subscription.py +1 -1
  163. pulumi_azure_native/eventgrid/v20220615/domain_topic.py +1 -1
  164. pulumi_azure_native/eventgrid/v20220615/domain_topic_event_subscription.py +1 -1
  165. pulumi_azure_native/eventgrid/v20220615/event_subscription.py +1 -1
  166. pulumi_azure_native/eventgrid/v20220615/partner_configuration.py +1 -1
  167. pulumi_azure_native/eventgrid/v20220615/partner_namespace.py +1 -1
  168. pulumi_azure_native/eventgrid/v20220615/partner_registration.py +1 -1
  169. pulumi_azure_native/eventgrid/v20220615/partner_topic.py +1 -1
  170. pulumi_azure_native/eventgrid/v20220615/partner_topic_event_subscription.py +1 -1
  171. pulumi_azure_native/eventgrid/v20220615/private_endpoint_connection.py +1 -1
  172. pulumi_azure_native/eventgrid/v20220615/system_topic.py +1 -1
  173. pulumi_azure_native/eventgrid/v20220615/system_topic_event_subscription.py +1 -1
  174. pulumi_azure_native/eventgrid/v20220615/topic.py +1 -1
  175. pulumi_azure_native/eventgrid/v20220615/topic_event_subscription.py +1 -1
  176. pulumi_azure_native/eventgrid/v20230601preview/ca_certificate.py +1 -1
  177. pulumi_azure_native/eventgrid/v20230601preview/channel.py +1 -1
  178. pulumi_azure_native/eventgrid/v20230601preview/client.py +1 -1
  179. pulumi_azure_native/eventgrid/v20230601preview/client_group.py +1 -1
  180. pulumi_azure_native/eventgrid/v20230601preview/domain.py +1 -1
  181. pulumi_azure_native/eventgrid/v20230601preview/domain_event_subscription.py +1 -1
  182. pulumi_azure_native/eventgrid/v20230601preview/domain_topic.py +1 -1
  183. pulumi_azure_native/eventgrid/v20230601preview/domain_topic_event_subscription.py +1 -1
  184. pulumi_azure_native/eventgrid/v20230601preview/event_subscription.py +1 -1
  185. pulumi_azure_native/eventgrid/v20230601preview/namespace.py +1 -1
  186. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic.py +1 -1
  187. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic_event_subscription.py +1 -1
  188. pulumi_azure_native/eventgrid/v20230601preview/partner_configuration.py +1 -1
  189. pulumi_azure_native/eventgrid/v20230601preview/partner_namespace.py +1 -1
  190. pulumi_azure_native/eventgrid/v20230601preview/partner_registration.py +1 -1
  191. pulumi_azure_native/eventgrid/v20230601preview/partner_topic.py +1 -1
  192. pulumi_azure_native/eventgrid/v20230601preview/partner_topic_event_subscription.py +1 -1
  193. pulumi_azure_native/eventgrid/v20230601preview/permission_binding.py +1 -1
  194. pulumi_azure_native/eventgrid/v20230601preview/private_endpoint_connection.py +1 -1
  195. pulumi_azure_native/eventgrid/v20230601preview/system_topic.py +1 -1
  196. pulumi_azure_native/eventgrid/v20230601preview/system_topic_event_subscription.py +1 -1
  197. pulumi_azure_native/eventgrid/v20230601preview/topic.py +1 -1
  198. pulumi_azure_native/eventgrid/v20230601preview/topic_event_subscription.py +1 -1
  199. pulumi_azure_native/eventgrid/v20230601preview/topic_space.py +1 -1
  200. pulumi_azure_native/eventgrid/v20231215preview/ca_certificate.py +1 -1
  201. pulumi_azure_native/eventgrid/v20231215preview/channel.py +1 -1
  202. pulumi_azure_native/eventgrid/v20231215preview/client.py +1 -1
  203. pulumi_azure_native/eventgrid/v20231215preview/client_group.py +1 -1
  204. pulumi_azure_native/eventgrid/v20231215preview/domain.py +1 -1
  205. pulumi_azure_native/eventgrid/v20231215preview/domain_event_subscription.py +1 -1
  206. pulumi_azure_native/eventgrid/v20231215preview/domain_topic.py +1 -1
  207. pulumi_azure_native/eventgrid/v20231215preview/domain_topic_event_subscription.py +1 -1
  208. pulumi_azure_native/eventgrid/v20231215preview/event_subscription.py +1 -1
  209. pulumi_azure_native/eventgrid/v20231215preview/namespace.py +1 -1
  210. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic.py +1 -1
  211. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic_event_subscription.py +1 -1
  212. pulumi_azure_native/eventgrid/v20231215preview/partner_configuration.py +1 -1
  213. pulumi_azure_native/eventgrid/v20231215preview/partner_namespace.py +1 -1
  214. pulumi_azure_native/eventgrid/v20231215preview/partner_registration.py +1 -1
  215. pulumi_azure_native/eventgrid/v20231215preview/partner_topic.py +1 -1
  216. pulumi_azure_native/eventgrid/v20231215preview/partner_topic_event_subscription.py +1 -1
  217. pulumi_azure_native/eventgrid/v20231215preview/permission_binding.py +1 -1
  218. pulumi_azure_native/eventgrid/v20231215preview/private_endpoint_connection.py +1 -1
  219. pulumi_azure_native/eventgrid/v20231215preview/system_topic.py +1 -1
  220. pulumi_azure_native/eventgrid/v20231215preview/system_topic_event_subscription.py +1 -1
  221. pulumi_azure_native/eventgrid/v20231215preview/topic.py +1 -1
  222. pulumi_azure_native/eventgrid/v20231215preview/topic_event_subscription.py +1 -1
  223. pulumi_azure_native/eventgrid/v20231215preview/topic_space.py +1 -1
  224. pulumi_azure_native/eventgrid/v20240601preview/ca_certificate.py +1 -1
  225. pulumi_azure_native/eventgrid/v20240601preview/channel.py +1 -1
  226. pulumi_azure_native/eventgrid/v20240601preview/client.py +1 -1
  227. pulumi_azure_native/eventgrid/v20240601preview/client_group.py +1 -1
  228. pulumi_azure_native/eventgrid/v20240601preview/domain.py +1 -1
  229. pulumi_azure_native/eventgrid/v20240601preview/domain_event_subscription.py +1 -1
  230. pulumi_azure_native/eventgrid/v20240601preview/domain_topic.py +1 -1
  231. pulumi_azure_native/eventgrid/v20240601preview/domain_topic_event_subscription.py +1 -1
  232. pulumi_azure_native/eventgrid/v20240601preview/event_subscription.py +1 -1
  233. pulumi_azure_native/eventgrid/v20240601preview/namespace.py +1 -1
  234. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic.py +1 -1
  235. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic_event_subscription.py +1 -1
  236. pulumi_azure_native/eventgrid/v20240601preview/partner_configuration.py +1 -1
  237. pulumi_azure_native/eventgrid/v20240601preview/partner_namespace.py +1 -1
  238. pulumi_azure_native/eventgrid/v20240601preview/partner_registration.py +1 -1
  239. pulumi_azure_native/eventgrid/v20240601preview/partner_topic.py +1 -1
  240. pulumi_azure_native/eventgrid/v20240601preview/partner_topic_event_subscription.py +1 -1
  241. pulumi_azure_native/eventgrid/v20240601preview/permission_binding.py +1 -1
  242. pulumi_azure_native/eventgrid/v20240601preview/private_endpoint_connection.py +1 -1
  243. pulumi_azure_native/eventgrid/v20240601preview/system_topic.py +1 -1
  244. pulumi_azure_native/eventgrid/v20240601preview/system_topic_event_subscription.py +1 -1
  245. pulumi_azure_native/eventgrid/v20240601preview/topic.py +1 -1
  246. pulumi_azure_native/eventgrid/v20240601preview/topic_event_subscription.py +1 -1
  247. pulumi_azure_native/eventgrid/v20240601preview/topic_space.py +1 -1
  248. pulumi_azure_native/eventgrid/v20241215preview/ca_certificate.py +1 -1
  249. pulumi_azure_native/eventgrid/v20241215preview/channel.py +1 -1
  250. pulumi_azure_native/eventgrid/v20241215preview/client.py +1 -1
  251. pulumi_azure_native/eventgrid/v20241215preview/client_group.py +1 -1
  252. pulumi_azure_native/eventgrid/v20241215preview/domain.py +1 -1
  253. pulumi_azure_native/eventgrid/v20241215preview/domain_event_subscription.py +1 -1
  254. pulumi_azure_native/eventgrid/v20241215preview/domain_topic.py +1 -1
  255. pulumi_azure_native/eventgrid/v20241215preview/domain_topic_event_subscription.py +1 -1
  256. pulumi_azure_native/eventgrid/v20241215preview/event_subscription.py +1 -1
  257. pulumi_azure_native/eventgrid/v20241215preview/namespace.py +1 -1
  258. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic.py +1 -1
  259. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic_event_subscription.py +1 -1
  260. pulumi_azure_native/eventgrid/v20241215preview/partner_configuration.py +1 -1
  261. pulumi_azure_native/eventgrid/v20241215preview/partner_namespace.py +1 -1
  262. pulumi_azure_native/eventgrid/v20241215preview/partner_registration.py +1 -1
  263. pulumi_azure_native/eventgrid/v20241215preview/partner_topic.py +1 -1
  264. pulumi_azure_native/eventgrid/v20241215preview/partner_topic_event_subscription.py +1 -1
  265. pulumi_azure_native/eventgrid/v20241215preview/permission_binding.py +1 -1
  266. pulumi_azure_native/eventgrid/v20241215preview/private_endpoint_connection.py +1 -1
  267. pulumi_azure_native/eventgrid/v20241215preview/system_topic.py +1 -1
  268. pulumi_azure_native/eventgrid/v20241215preview/system_topic_event_subscription.py +1 -1
  269. pulumi_azure_native/eventgrid/v20241215preview/topic.py +1 -1
  270. pulumi_azure_native/eventgrid/v20241215preview/topic_event_subscription.py +1 -1
  271. pulumi_azure_native/eventgrid/v20241215preview/topic_space.py +1 -1
  272. pulumi_azure_native/eventgrid/v20250215/__init__.py +78 -0
  273. pulumi_azure_native/eventgrid/v20250215/_enums.py +405 -0
  274. pulumi_azure_native/eventgrid/v20250215/_inputs.py +6881 -0
  275. pulumi_azure_native/eventgrid/v20250215/ca_certificate.py +278 -0
  276. pulumi_azure_native/eventgrid/v20250215/channel.py +370 -0
  277. pulumi_azure_native/eventgrid/v20250215/client.py +359 -0
  278. pulumi_azure_native/eventgrid/v20250215/client_group.py +262 -0
  279. pulumi_azure_native/eventgrid/v20250215/domain.py +664 -0
  280. pulumi_azure_native/eventgrid/v20250215/domain_event_subscription.py +493 -0
  281. pulumi_azure_native/eventgrid/v20250215/domain_topic.py +200 -0
  282. pulumi_azure_native/eventgrid/v20250215/domain_topic_event_subscription.py +514 -0
  283. pulumi_azure_native/eventgrid/v20250215/event_subscription.py +472 -0
  284. pulumi_azure_native/eventgrid/v20250215/get_ca_certificate.py +205 -0
  285. pulumi_azure_native/eventgrid/v20250215/get_channel.py +220 -0
  286. pulumi_azure_native/eventgrid/v20250215/get_channel_full_url.py +92 -0
  287. pulumi_azure_native/eventgrid/v20250215/get_client.py +221 -0
  288. pulumi_azure_native/eventgrid/v20250215/get_client_group.py +178 -0
  289. pulumi_azure_native/eventgrid/v20250215/get_domain.py +381 -0
  290. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription.py +293 -0
  291. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_delivery_attributes.py +93 -0
  292. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_full_url.py +92 -0
  293. pulumi_azure_native/eventgrid/v20250215/get_domain_topic.py +149 -0
  294. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription.py +299 -0
  295. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_delivery_attributes.py +99 -0
  296. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_full_url.py +98 -0
  297. pulumi_azure_native/eventgrid/v20250215/get_event_subscription.py +287 -0
  298. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_delivery_attributes.py +87 -0
  299. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_full_url.py +86 -0
  300. pulumi_azure_native/eventgrid/v20250215/get_namespace.py +302 -0
  301. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic.py +192 -0
  302. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription.py +211 -0
  303. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_delivery_attributes.py +99 -0
  304. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_full_url.py +98 -0
  305. pulumi_azure_native/eventgrid/v20250215/get_partner_configuration.py +179 -0
  306. pulumi_azure_native/eventgrid/v20250215/get_partner_namespace.py +286 -0
  307. pulumi_azure_native/eventgrid/v20250215/get_partner_registration.py +186 -0
  308. pulumi_azure_native/eventgrid/v20250215/get_partner_topic.py +285 -0
  309. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription.py +293 -0
  310. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_delivery_attributes.py +93 -0
  311. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_full_url.py +92 -0
  312. pulumi_azure_native/eventgrid/v20250215/get_permission_binding.py +207 -0
  313. pulumi_azure_native/eventgrid/v20250215/get_private_endpoint_connection.py +180 -0
  314. pulumi_azure_native/eventgrid/v20250215/get_system_topic.py +227 -0
  315. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription.py +293 -0
  316. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_delivery_attributes.py +93 -0
  317. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_full_url.py +92 -0
  318. pulumi_azure_native/eventgrid/v20250215/get_topic.py +341 -0
  319. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription.py +293 -0
  320. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_delivery_attributes.py +93 -0
  321. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_full_url.py +92 -0
  322. pulumi_azure_native/eventgrid/v20250215/get_topic_space.py +181 -0
  323. pulumi_azure_native/eventgrid/v20250215/list_domain_shared_access_keys.py +100 -0
  324. pulumi_azure_native/eventgrid/v20250215/list_namespace_shared_access_keys.py +100 -0
  325. pulumi_azure_native/eventgrid/v20250215/list_namespace_topic_shared_access_keys.py +106 -0
  326. pulumi_azure_native/eventgrid/v20250215/list_partner_namespace_shared_access_keys.py +100 -0
  327. pulumi_azure_native/eventgrid/v20250215/list_topic_shared_access_keys.py +100 -0
  328. pulumi_azure_native/eventgrid/v20250215/namespace.py +520 -0
  329. pulumi_azure_native/eventgrid/v20250215/namespace_topic.py +296 -0
  330. pulumi_azure_native/eventgrid/v20250215/namespace_topic_event_subscription.py +339 -0
  331. pulumi_azure_native/eventgrid/v20250215/outputs.py +5875 -0
  332. pulumi_azure_native/eventgrid/v20250215/partner_configuration.py +267 -0
  333. pulumi_azure_native/eventgrid/v20250215/partner_namespace.py +457 -0
  334. pulumi_azure_native/eventgrid/v20250215/partner_registration.py +270 -0
  335. pulumi_azure_native/eventgrid/v20250215/partner_topic.py +479 -0
  336. pulumi_azure_native/eventgrid/v20250215/partner_topic_event_subscription.py +493 -0
  337. pulumi_azure_native/eventgrid/v20250215/permission_binding.py +325 -0
  338. pulumi_azure_native/eventgrid/v20250215/private_endpoint_connection.py +317 -0
  339. pulumi_azure_native/eventgrid/v20250215/system_topic.py +336 -0
  340. pulumi_azure_native/eventgrid/v20250215/system_topic_event_subscription.py +493 -0
  341. pulumi_azure_native/eventgrid/v20250215/topic.py +550 -0
  342. pulumi_azure_native/eventgrid/v20250215/topic_event_subscription.py +493 -0
  343. pulumi_azure_native/eventgrid/v20250215/topic_space.py +274 -0
  344. pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py +13 -78
  345. pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +10 -69
  346. pulumi_azure_native/netapp/__init__.py +1 -0
  347. pulumi_azure_native/netapp/get_account_key_vault_status.py +131 -0
  348. pulumi_azure_native/netapp/outputs.py +36 -0
  349. pulumi_azure_native/netapp/v20240901/__init__.py +1 -0
  350. pulumi_azure_native/netapp/v20240901/get_account_change_key_vault_information.py +129 -0
  351. pulumi_azure_native/netapp/v20240901/outputs.py +36 -0
  352. pulumi_azure_native/netapp/v20240901preview/__init__.py +1 -0
  353. pulumi_azure_native/netapp/v20240901preview/get_account_key_vault_status.py +129 -0
  354. pulumi_azure_native/netapp/v20240901preview/outputs.py +36 -0
  355. pulumi_azure_native/pulumi-plugin.json +1 -1
  356. pulumi_azure_native/sovereign/_enums.py +15 -15
  357. pulumi_azure_native/sovereign/_inputs.py +129 -129
  358. pulumi_azure_native/sovereign/get_landing_zone_account_operation.py +5 -5
  359. pulumi_azure_native/sovereign/get_landing_zone_configuration_operation.py +4 -4
  360. pulumi_azure_native/sovereign/get_landing_zone_registration_operation.py +7 -7
  361. pulumi_azure_native/sovereign/landing_zone_account_operation.py +5 -5
  362. pulumi_azure_native/sovereign/landing_zone_configuration_operation.py +3 -3
  363. pulumi_azure_native/sovereign/landing_zone_registration_operation.py +8 -8
  364. pulumi_azure_native/sovereign/outputs.py +100 -100
  365. pulumi_azure_native/sovereign/v20250227preview/_enums.py +15 -15
  366. pulumi_azure_native/sovereign/v20250227preview/_inputs.py +129 -129
  367. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_account_operation.py +5 -5
  368. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_configuration_operation.py +4 -4
  369. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_registration_operation.py +7 -7
  370. pulumi_azure_native/sovereign/v20250227preview/landing_zone_account_operation.py +5 -5
  371. pulumi_azure_native/sovereign/v20250227preview/landing_zone_configuration_operation.py +3 -3
  372. pulumi_azure_native/sovereign/v20250227preview/landing_zone_registration_operation.py +8 -8
  373. pulumi_azure_native/sovereign/v20250227preview/outputs.py +100 -100
  374. pulumi_azure_native/videoindexer/__init__.py +3 -0
  375. pulumi_azure_native/videoindexer/account.py +3 -3
  376. pulumi_azure_native/videoindexer/get_account.py +2 -2
  377. pulumi_azure_native/videoindexer/v20220801/account.py +1 -1
  378. pulumi_azure_native/videoindexer/v20240101/account.py +1 -1
  379. pulumi_azure_native/videoindexer/v20240401preview/account.py +1 -1
  380. pulumi_azure_native/videoindexer/v20240601preview/account.py +1 -1
  381. pulumi_azure_native/videoindexer/v20240923preview/account.py +1 -1
  382. pulumi_azure_native/videoindexer/v20250101/__init__.py +12 -0
  383. pulumi_azure_native/videoindexer/v20250101/_enums.py +19 -0
  384. pulumi_azure_native/videoindexer/v20250101/_inputs.py +195 -0
  385. pulumi_azure_native/videoindexer/v20250101/account.py +398 -0
  386. pulumi_azure_native/videoindexer/v20250101/get_account.py +283 -0
  387. pulumi_azure_native/videoindexer/v20250101/outputs.py +373 -0
  388. pulumi_azure_native/web/container_app.py +3 -3
  389. pulumi_azure_native/web/get_container_app.py +2 -2
  390. pulumi_azure_native/web/list_container_app_secrets.py +2 -2
  391. pulumi_azure_native/web/v20230101/container_app.py +1 -1
  392. pulumi_azure_native/web/v20231201/container_app.py +1 -1
  393. pulumi_azure_native/web/v20240401/__init__.py +0 -3
  394. pulumi_azure_native/web/v20240401/_enums.py +0 -20
  395. pulumi_azure_native/web/v20240401/_inputs.py +43 -1574
  396. pulumi_azure_native/web/v20240401/outputs.py +19 -1212
  397. pulumi_azure_native/weightsandbiases/__init__.py +20 -0
  398. pulumi_azure_native/weightsandbiases/_enums.py +84 -0
  399. pulumi_azure_native/weightsandbiases/_inputs.py +658 -0
  400. pulumi_azure_native/weightsandbiases/get_instance.py +187 -0
  401. pulumi_azure_native/weightsandbiases/instance.py +289 -0
  402. pulumi_azure_native/weightsandbiases/outputs.py +747 -0
  403. pulumi_azure_native/weightsandbiases/v20240918preview/__init__.py +12 -0
  404. pulumi_azure_native/weightsandbiases/v20240918preview/_enums.py +84 -0
  405. pulumi_azure_native/weightsandbiases/v20240918preview/_inputs.py +658 -0
  406. pulumi_azure_native/weightsandbiases/v20240918preview/get_instance.py +185 -0
  407. pulumi_azure_native/weightsandbiases/v20240918preview/instance.py +287 -0
  408. pulumi_azure_native/weightsandbiases/v20240918preview/outputs.py +747 -0
  409. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/METADATA +1 -1
  410. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/RECORD +412 -285
  411. pulumi_azure_native/web/v20240401/container_app.py +0 -364
  412. pulumi_azure_native/web/v20240401/get_container_app.py +0 -241
  413. pulumi_azure_native/web/v20240401/list_container_app_secrets.py +0 -81
  414. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/WHEEL +0 -0
  415. {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,664 @@
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
+ from ._enums import *
18
+ from ._inputs import *
19
+
20
+ __all__ = ['DomainArgs', 'Domain']
21
+
22
+ @pulumi.input_type
23
+ class DomainArgs:
24
+ def __init__(__self__, *,
25
+ resource_group_name: pulumi.Input[str],
26
+ auto_create_topic_with_first_subscription: Optional[pulumi.Input[bool]] = None,
27
+ auto_delete_topic_with_last_subscription: Optional[pulumi.Input[bool]] = None,
28
+ data_residency_boundary: Optional[pulumi.Input[Union[str, 'DataResidencyBoundary']]] = None,
29
+ disable_local_auth: Optional[pulumi.Input[bool]] = None,
30
+ domain_name: Optional[pulumi.Input[str]] = None,
31
+ event_type_info: Optional[pulumi.Input['EventTypeInfoArgs']] = None,
32
+ identity: Optional[pulumi.Input['IdentityInfoArgs']] = None,
33
+ inbound_ip_rules: Optional[pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]]] = None,
34
+ input_schema: Optional[pulumi.Input[Union[str, 'InputSchema']]] = None,
35
+ input_schema_mapping: Optional[pulumi.Input['JsonInputSchemaMappingArgs']] = None,
36
+ location: Optional[pulumi.Input[str]] = None,
37
+ minimum_tls_version_allowed: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
38
+ public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
39
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
40
+ """
41
+ The set of arguments for constructing a Domain resource.
42
+ :param pulumi.Input[str] resource_group_name: The name of the resource group within the user's subscription.
43
+ :param pulumi.Input[bool] auto_create_topic_with_first_subscription: This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
44
+ 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.
45
+ 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
46
+ 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
47
+ 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
48
+ 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
49
+ domain topic on demand if needed.
50
+ :param pulumi.Input[bool] auto_delete_topic_with_last_subscription: This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
51
+ 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.
52
+ 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
53
+ 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
54
+ (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
55
+ control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer
56
+ resources by the user.
57
+ :param pulumi.Input[Union[str, 'DataResidencyBoundary']] data_residency_boundary: Data Residency Boundary of the resource.
58
+ :param pulumi.Input[bool] disable_local_auth: 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.
59
+ :param pulumi.Input[str] domain_name: Name of the domain.
60
+ :param pulumi.Input['EventTypeInfoArgs'] event_type_info: Event Type Information for the domain. This information is provided by the publisher and can be used by the
61
+ subscriber to view different types of events that are published.
62
+ :param pulumi.Input['IdentityInfoArgs'] identity: Identity information for the Event Grid Domain resource.
63
+ :param pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]] inbound_ip_rules: This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
64
+ :param pulumi.Input[Union[str, 'InputSchema']] input_schema: This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
65
+ :param pulumi.Input['JsonInputSchemaMappingArgs'] input_schema_mapping: Information about the InputSchemaMapping which specified the info about mapping event payload.
66
+ :param pulumi.Input[str] location: Location of the resource.
67
+ :param pulumi.Input[Union[str, 'TlsVersion']] minimum_tls_version_allowed: Minimum TLS version of the publisher allowed to publish to this domain
68
+ :param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: This determines if traffic is allowed over public network. By default it is enabled.
69
+ You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.DomainProperties.InboundIpRules" />
70
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Tags of the resource.
71
+ """
72
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
73
+ if auto_create_topic_with_first_subscription is None:
74
+ auto_create_topic_with_first_subscription = True
75
+ if auto_create_topic_with_first_subscription is not None:
76
+ pulumi.set(__self__, "auto_create_topic_with_first_subscription", auto_create_topic_with_first_subscription)
77
+ if auto_delete_topic_with_last_subscription is None:
78
+ auto_delete_topic_with_last_subscription = True
79
+ if auto_delete_topic_with_last_subscription is not None:
80
+ pulumi.set(__self__, "auto_delete_topic_with_last_subscription", auto_delete_topic_with_last_subscription)
81
+ if data_residency_boundary is not None:
82
+ pulumi.set(__self__, "data_residency_boundary", data_residency_boundary)
83
+ if disable_local_auth is None:
84
+ disable_local_auth = False
85
+ if disable_local_auth is not None:
86
+ pulumi.set(__self__, "disable_local_auth", disable_local_auth)
87
+ if domain_name is not None:
88
+ pulumi.set(__self__, "domain_name", domain_name)
89
+ if event_type_info is not None:
90
+ pulumi.set(__self__, "event_type_info", event_type_info)
91
+ if identity is not None:
92
+ pulumi.set(__self__, "identity", identity)
93
+ if inbound_ip_rules is not None:
94
+ pulumi.set(__self__, "inbound_ip_rules", inbound_ip_rules)
95
+ if input_schema is None:
96
+ input_schema = 'EventGridSchema'
97
+ if input_schema is not None:
98
+ pulumi.set(__self__, "input_schema", input_schema)
99
+ if input_schema_mapping is not None:
100
+ pulumi.set(__self__, "input_schema_mapping", input_schema_mapping)
101
+ if location is not None:
102
+ pulumi.set(__self__, "location", location)
103
+ if minimum_tls_version_allowed is not None:
104
+ pulumi.set(__self__, "minimum_tls_version_allowed", minimum_tls_version_allowed)
105
+ if public_network_access is None:
106
+ public_network_access = 'Enabled'
107
+ if public_network_access is not None:
108
+ pulumi.set(__self__, "public_network_access", public_network_access)
109
+ if tags is not None:
110
+ pulumi.set(__self__, "tags", tags)
111
+
112
+ @property
113
+ @pulumi.getter(name="resourceGroupName")
114
+ def resource_group_name(self) -> pulumi.Input[str]:
115
+ """
116
+ The name of the resource group within the user's subscription.
117
+ """
118
+ return pulumi.get(self, "resource_group_name")
119
+
120
+ @resource_group_name.setter
121
+ def resource_group_name(self, value: pulumi.Input[str]):
122
+ pulumi.set(self, "resource_group_name", value)
123
+
124
+ @property
125
+ @pulumi.getter(name="autoCreateTopicWithFirstSubscription")
126
+ def auto_create_topic_with_first_subscription(self) -> Optional[pulumi.Input[bool]]:
127
+ """
128
+ This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
129
+ 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.
130
+ 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
131
+ 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
132
+ 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
133
+ 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
134
+ domain topic on demand if needed.
135
+ """
136
+ return pulumi.get(self, "auto_create_topic_with_first_subscription")
137
+
138
+ @auto_create_topic_with_first_subscription.setter
139
+ def auto_create_topic_with_first_subscription(self, value: Optional[pulumi.Input[bool]]):
140
+ pulumi.set(self, "auto_create_topic_with_first_subscription", value)
141
+
142
+ @property
143
+ @pulumi.getter(name="autoDeleteTopicWithLastSubscription")
144
+ def auto_delete_topic_with_last_subscription(self) -> Optional[pulumi.Input[bool]]:
145
+ """
146
+ This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
147
+ 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.
148
+ 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
149
+ 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
150
+ (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
151
+ control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer
152
+ resources by the user.
153
+ """
154
+ return pulumi.get(self, "auto_delete_topic_with_last_subscription")
155
+
156
+ @auto_delete_topic_with_last_subscription.setter
157
+ def auto_delete_topic_with_last_subscription(self, value: Optional[pulumi.Input[bool]]):
158
+ pulumi.set(self, "auto_delete_topic_with_last_subscription", value)
159
+
160
+ @property
161
+ @pulumi.getter(name="dataResidencyBoundary")
162
+ def data_residency_boundary(self) -> Optional[pulumi.Input[Union[str, 'DataResidencyBoundary']]]:
163
+ """
164
+ Data Residency Boundary of the resource.
165
+ """
166
+ return pulumi.get(self, "data_residency_boundary")
167
+
168
+ @data_residency_boundary.setter
169
+ def data_residency_boundary(self, value: Optional[pulumi.Input[Union[str, 'DataResidencyBoundary']]]):
170
+ pulumi.set(self, "data_residency_boundary", value)
171
+
172
+ @property
173
+ @pulumi.getter(name="disableLocalAuth")
174
+ def disable_local_auth(self) -> Optional[pulumi.Input[bool]]:
175
+ """
176
+ 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.
177
+ """
178
+ return pulumi.get(self, "disable_local_auth")
179
+
180
+ @disable_local_auth.setter
181
+ def disable_local_auth(self, value: Optional[pulumi.Input[bool]]):
182
+ pulumi.set(self, "disable_local_auth", value)
183
+
184
+ @property
185
+ @pulumi.getter(name="domainName")
186
+ def domain_name(self) -> Optional[pulumi.Input[str]]:
187
+ """
188
+ Name of the domain.
189
+ """
190
+ return pulumi.get(self, "domain_name")
191
+
192
+ @domain_name.setter
193
+ def domain_name(self, value: Optional[pulumi.Input[str]]):
194
+ pulumi.set(self, "domain_name", value)
195
+
196
+ @property
197
+ @pulumi.getter(name="eventTypeInfo")
198
+ def event_type_info(self) -> Optional[pulumi.Input['EventTypeInfoArgs']]:
199
+ """
200
+ Event Type Information for the domain. This information is provided by the publisher and can be used by the
201
+ subscriber to view different types of events that are published.
202
+ """
203
+ return pulumi.get(self, "event_type_info")
204
+
205
+ @event_type_info.setter
206
+ def event_type_info(self, value: Optional[pulumi.Input['EventTypeInfoArgs']]):
207
+ pulumi.set(self, "event_type_info", value)
208
+
209
+ @property
210
+ @pulumi.getter
211
+ def identity(self) -> Optional[pulumi.Input['IdentityInfoArgs']]:
212
+ """
213
+ Identity information for the Event Grid Domain resource.
214
+ """
215
+ return pulumi.get(self, "identity")
216
+
217
+ @identity.setter
218
+ def identity(self, value: Optional[pulumi.Input['IdentityInfoArgs']]):
219
+ pulumi.set(self, "identity", value)
220
+
221
+ @property
222
+ @pulumi.getter(name="inboundIpRules")
223
+ def inbound_ip_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]]]:
224
+ """
225
+ This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
226
+ """
227
+ return pulumi.get(self, "inbound_ip_rules")
228
+
229
+ @inbound_ip_rules.setter
230
+ def inbound_ip_rules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]]]):
231
+ pulumi.set(self, "inbound_ip_rules", value)
232
+
233
+ @property
234
+ @pulumi.getter(name="inputSchema")
235
+ def input_schema(self) -> Optional[pulumi.Input[Union[str, 'InputSchema']]]:
236
+ """
237
+ This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
238
+ """
239
+ return pulumi.get(self, "input_schema")
240
+
241
+ @input_schema.setter
242
+ def input_schema(self, value: Optional[pulumi.Input[Union[str, 'InputSchema']]]):
243
+ pulumi.set(self, "input_schema", value)
244
+
245
+ @property
246
+ @pulumi.getter(name="inputSchemaMapping")
247
+ def input_schema_mapping(self) -> Optional[pulumi.Input['JsonInputSchemaMappingArgs']]:
248
+ """
249
+ Information about the InputSchemaMapping which specified the info about mapping event payload.
250
+ """
251
+ return pulumi.get(self, "input_schema_mapping")
252
+
253
+ @input_schema_mapping.setter
254
+ def input_schema_mapping(self, value: Optional[pulumi.Input['JsonInputSchemaMappingArgs']]):
255
+ pulumi.set(self, "input_schema_mapping", value)
256
+
257
+ @property
258
+ @pulumi.getter
259
+ def location(self) -> Optional[pulumi.Input[str]]:
260
+ """
261
+ Location of the resource.
262
+ """
263
+ return pulumi.get(self, "location")
264
+
265
+ @location.setter
266
+ def location(self, value: Optional[pulumi.Input[str]]):
267
+ pulumi.set(self, "location", value)
268
+
269
+ @property
270
+ @pulumi.getter(name="minimumTlsVersionAllowed")
271
+ def minimum_tls_version_allowed(self) -> Optional[pulumi.Input[Union[str, 'TlsVersion']]]:
272
+ """
273
+ Minimum TLS version of the publisher allowed to publish to this domain
274
+ """
275
+ return pulumi.get(self, "minimum_tls_version_allowed")
276
+
277
+ @minimum_tls_version_allowed.setter
278
+ def minimum_tls_version_allowed(self, value: Optional[pulumi.Input[Union[str, 'TlsVersion']]]):
279
+ pulumi.set(self, "minimum_tls_version_allowed", value)
280
+
281
+ @property
282
+ @pulumi.getter(name="publicNetworkAccess")
283
+ def public_network_access(self) -> Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]:
284
+ """
285
+ This determines if traffic is allowed over public network. By default it is enabled.
286
+ You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.DomainProperties.InboundIpRules" />
287
+ """
288
+ return pulumi.get(self, "public_network_access")
289
+
290
+ @public_network_access.setter
291
+ def public_network_access(self, value: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]):
292
+ pulumi.set(self, "public_network_access", value)
293
+
294
+ @property
295
+ @pulumi.getter
296
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
297
+ """
298
+ Tags of the resource.
299
+ """
300
+ return pulumi.get(self, "tags")
301
+
302
+ @tags.setter
303
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
304
+ pulumi.set(self, "tags", value)
305
+
306
+
307
+ class Domain(pulumi.CustomResource):
308
+ @overload
309
+ def __init__(__self__,
310
+ resource_name: str,
311
+ opts: Optional[pulumi.ResourceOptions] = None,
312
+ auto_create_topic_with_first_subscription: Optional[pulumi.Input[bool]] = None,
313
+ auto_delete_topic_with_last_subscription: Optional[pulumi.Input[bool]] = None,
314
+ data_residency_boundary: Optional[pulumi.Input[Union[str, 'DataResidencyBoundary']]] = None,
315
+ disable_local_auth: Optional[pulumi.Input[bool]] = None,
316
+ domain_name: Optional[pulumi.Input[str]] = None,
317
+ event_type_info: Optional[pulumi.Input[Union['EventTypeInfoArgs', 'EventTypeInfoArgsDict']]] = None,
318
+ identity: Optional[pulumi.Input[Union['IdentityInfoArgs', 'IdentityInfoArgsDict']]] = None,
319
+ inbound_ip_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InboundIpRuleArgs', 'InboundIpRuleArgsDict']]]]] = None,
320
+ input_schema: Optional[pulumi.Input[Union[str, 'InputSchema']]] = None,
321
+ input_schema_mapping: Optional[pulumi.Input[Union['JsonInputSchemaMappingArgs', 'JsonInputSchemaMappingArgsDict']]] = None,
322
+ location: Optional[pulumi.Input[str]] = None,
323
+ minimum_tls_version_allowed: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
324
+ public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
325
+ resource_group_name: Optional[pulumi.Input[str]] = None,
326
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
327
+ __props__=None):
328
+ """
329
+ EventGrid Domain.
330
+
331
+ :param str resource_name: The name of the resource.
332
+ :param pulumi.ResourceOptions opts: Options for the resource.
333
+ :param pulumi.Input[bool] auto_create_topic_with_first_subscription: This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
334
+ 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.
335
+ 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
336
+ 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
337
+ 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
338
+ 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
339
+ domain topic on demand if needed.
340
+ :param pulumi.Input[bool] auto_delete_topic_with_last_subscription: This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
341
+ 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.
342
+ 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
343
+ 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
344
+ (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
345
+ control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer
346
+ resources by the user.
347
+ :param pulumi.Input[Union[str, 'DataResidencyBoundary']] data_residency_boundary: Data Residency Boundary of the resource.
348
+ :param pulumi.Input[bool] disable_local_auth: 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.
349
+ :param pulumi.Input[str] domain_name: Name of the domain.
350
+ :param pulumi.Input[Union['EventTypeInfoArgs', 'EventTypeInfoArgsDict']] event_type_info: Event Type Information for the domain. This information is provided by the publisher and can be used by the
351
+ subscriber to view different types of events that are published.
352
+ :param pulumi.Input[Union['IdentityInfoArgs', 'IdentityInfoArgsDict']] identity: Identity information for the Event Grid Domain resource.
353
+ :param pulumi.Input[Sequence[pulumi.Input[Union['InboundIpRuleArgs', 'InboundIpRuleArgsDict']]]] inbound_ip_rules: This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
354
+ :param pulumi.Input[Union[str, 'InputSchema']] input_schema: This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
355
+ :param pulumi.Input[Union['JsonInputSchemaMappingArgs', 'JsonInputSchemaMappingArgsDict']] input_schema_mapping: Information about the InputSchemaMapping which specified the info about mapping event payload.
356
+ :param pulumi.Input[str] location: Location of the resource.
357
+ :param pulumi.Input[Union[str, 'TlsVersion']] minimum_tls_version_allowed: Minimum TLS version of the publisher allowed to publish to this domain
358
+ :param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: This determines if traffic is allowed over public network. By default it is enabled.
359
+ You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.DomainProperties.InboundIpRules" />
360
+ :param pulumi.Input[str] resource_group_name: The name of the resource group within the user's subscription.
361
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Tags of the resource.
362
+ """
363
+ ...
364
+ @overload
365
+ def __init__(__self__,
366
+ resource_name: str,
367
+ args: DomainArgs,
368
+ opts: Optional[pulumi.ResourceOptions] = None):
369
+ """
370
+ EventGrid Domain.
371
+
372
+ :param str resource_name: The name of the resource.
373
+ :param DomainArgs args: The arguments to use to populate this resource's properties.
374
+ :param pulumi.ResourceOptions opts: Options for the resource.
375
+ """
376
+ ...
377
+ def __init__(__self__, resource_name: str, *args, **kwargs):
378
+ resource_args, opts = _utilities.get_resource_args_opts(DomainArgs, pulumi.ResourceOptions, *args, **kwargs)
379
+ if resource_args is not None:
380
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
381
+ else:
382
+ __self__._internal_init(resource_name, *args, **kwargs)
383
+
384
+ def _internal_init(__self__,
385
+ resource_name: str,
386
+ opts: Optional[pulumi.ResourceOptions] = None,
387
+ auto_create_topic_with_first_subscription: Optional[pulumi.Input[bool]] = None,
388
+ auto_delete_topic_with_last_subscription: Optional[pulumi.Input[bool]] = None,
389
+ data_residency_boundary: Optional[pulumi.Input[Union[str, 'DataResidencyBoundary']]] = None,
390
+ disable_local_auth: Optional[pulumi.Input[bool]] = None,
391
+ domain_name: Optional[pulumi.Input[str]] = None,
392
+ event_type_info: Optional[pulumi.Input[Union['EventTypeInfoArgs', 'EventTypeInfoArgsDict']]] = None,
393
+ identity: Optional[pulumi.Input[Union['IdentityInfoArgs', 'IdentityInfoArgsDict']]] = None,
394
+ inbound_ip_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InboundIpRuleArgs', 'InboundIpRuleArgsDict']]]]] = None,
395
+ input_schema: Optional[pulumi.Input[Union[str, 'InputSchema']]] = None,
396
+ input_schema_mapping: Optional[pulumi.Input[Union['JsonInputSchemaMappingArgs', 'JsonInputSchemaMappingArgsDict']]] = None,
397
+ location: Optional[pulumi.Input[str]] = None,
398
+ minimum_tls_version_allowed: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
399
+ public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
400
+ resource_group_name: Optional[pulumi.Input[str]] = None,
401
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
402
+ __props__=None):
403
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
404
+ if not isinstance(opts, pulumi.ResourceOptions):
405
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
406
+ if opts.id is None:
407
+ if __props__ is not None:
408
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
409
+ __props__ = DomainArgs.__new__(DomainArgs)
410
+
411
+ if auto_create_topic_with_first_subscription is None:
412
+ auto_create_topic_with_first_subscription = True
413
+ __props__.__dict__["auto_create_topic_with_first_subscription"] = auto_create_topic_with_first_subscription
414
+ if auto_delete_topic_with_last_subscription is None:
415
+ auto_delete_topic_with_last_subscription = True
416
+ __props__.__dict__["auto_delete_topic_with_last_subscription"] = auto_delete_topic_with_last_subscription
417
+ __props__.__dict__["data_residency_boundary"] = data_residency_boundary
418
+ if disable_local_auth is None:
419
+ disable_local_auth = False
420
+ __props__.__dict__["disable_local_auth"] = disable_local_auth
421
+ __props__.__dict__["domain_name"] = domain_name
422
+ __props__.__dict__["event_type_info"] = event_type_info
423
+ __props__.__dict__["identity"] = identity
424
+ __props__.__dict__["inbound_ip_rules"] = inbound_ip_rules
425
+ if input_schema is None:
426
+ input_schema = 'EventGridSchema'
427
+ __props__.__dict__["input_schema"] = input_schema
428
+ __props__.__dict__["input_schema_mapping"] = input_schema_mapping
429
+ __props__.__dict__["location"] = location
430
+ __props__.__dict__["minimum_tls_version_allowed"] = minimum_tls_version_allowed
431
+ if public_network_access is None:
432
+ public_network_access = 'Enabled'
433
+ __props__.__dict__["public_network_access"] = public_network_access
434
+ if resource_group_name is None and not opts.urn:
435
+ raise TypeError("Missing required property 'resource_group_name'")
436
+ __props__.__dict__["resource_group_name"] = resource_group_name
437
+ __props__.__dict__["tags"] = tags
438
+ __props__.__dict__["endpoint"] = None
439
+ __props__.__dict__["metric_resource_id"] = None
440
+ __props__.__dict__["name"] = None
441
+ __props__.__dict__["private_endpoint_connections"] = None
442
+ __props__.__dict__["provisioning_state"] = None
443
+ __props__.__dict__["system_data"] = None
444
+ __props__.__dict__["type"] = None
445
+ 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:Domain")])
446
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
447
+ super(Domain, __self__).__init__(
448
+ 'azure-native:eventgrid/v20250215:Domain',
449
+ resource_name,
450
+ __props__,
451
+ opts)
452
+
453
+ @staticmethod
454
+ def get(resource_name: str,
455
+ id: pulumi.Input[str],
456
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Domain':
457
+ """
458
+ Get an existing Domain resource's state with the given name, id, and optional extra
459
+ properties used to qualify the lookup.
460
+
461
+ :param str resource_name: The unique name of the resulting resource.
462
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
463
+ :param pulumi.ResourceOptions opts: Options for the resource.
464
+ """
465
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
466
+
467
+ __props__ = DomainArgs.__new__(DomainArgs)
468
+
469
+ __props__.__dict__["auto_create_topic_with_first_subscription"] = None
470
+ __props__.__dict__["auto_delete_topic_with_last_subscription"] = None
471
+ __props__.__dict__["data_residency_boundary"] = None
472
+ __props__.__dict__["disable_local_auth"] = None
473
+ __props__.__dict__["endpoint"] = None
474
+ __props__.__dict__["event_type_info"] = None
475
+ __props__.__dict__["identity"] = None
476
+ __props__.__dict__["inbound_ip_rules"] = None
477
+ __props__.__dict__["input_schema"] = None
478
+ __props__.__dict__["input_schema_mapping"] = None
479
+ __props__.__dict__["location"] = None
480
+ __props__.__dict__["metric_resource_id"] = None
481
+ __props__.__dict__["minimum_tls_version_allowed"] = None
482
+ __props__.__dict__["name"] = None
483
+ __props__.__dict__["private_endpoint_connections"] = None
484
+ __props__.__dict__["provisioning_state"] = None
485
+ __props__.__dict__["public_network_access"] = None
486
+ __props__.__dict__["system_data"] = None
487
+ __props__.__dict__["tags"] = None
488
+ __props__.__dict__["type"] = None
489
+ return Domain(resource_name, opts=opts, __props__=__props__)
490
+
491
+ @property
492
+ @pulumi.getter(name="autoCreateTopicWithFirstSubscription")
493
+ def auto_create_topic_with_first_subscription(self) -> pulumi.Output[Optional[bool]]:
494
+ """
495
+ This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
496
+ 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.
497
+ 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
498
+ 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
499
+ 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
500
+ 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
501
+ domain topic on demand if needed.
502
+ """
503
+ return pulumi.get(self, "auto_create_topic_with_first_subscription")
504
+
505
+ @property
506
+ @pulumi.getter(name="autoDeleteTopicWithLastSubscription")
507
+ def auto_delete_topic_with_last_subscription(self) -> pulumi.Output[Optional[bool]]:
508
+ """
509
+ This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource.
510
+ 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.
511
+ 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
512
+ 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
513
+ (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
514
+ control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer
515
+ resources by the user.
516
+ """
517
+ return pulumi.get(self, "auto_delete_topic_with_last_subscription")
518
+
519
+ @property
520
+ @pulumi.getter(name="dataResidencyBoundary")
521
+ def data_residency_boundary(self) -> pulumi.Output[Optional[str]]:
522
+ """
523
+ Data Residency Boundary of the resource.
524
+ """
525
+ return pulumi.get(self, "data_residency_boundary")
526
+
527
+ @property
528
+ @pulumi.getter(name="disableLocalAuth")
529
+ def disable_local_auth(self) -> pulumi.Output[Optional[bool]]:
530
+ """
531
+ 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.
532
+ """
533
+ return pulumi.get(self, "disable_local_auth")
534
+
535
+ @property
536
+ @pulumi.getter
537
+ def endpoint(self) -> pulumi.Output[str]:
538
+ """
539
+ Endpoint for the Event Grid Domain Resource which is used for publishing the events.
540
+ """
541
+ return pulumi.get(self, "endpoint")
542
+
543
+ @property
544
+ @pulumi.getter(name="eventTypeInfo")
545
+ def event_type_info(self) -> pulumi.Output[Optional['outputs.EventTypeInfoResponse']]:
546
+ """
547
+ Event Type Information for the domain. This information is provided by the publisher and can be used by the
548
+ subscriber to view different types of events that are published.
549
+ """
550
+ return pulumi.get(self, "event_type_info")
551
+
552
+ @property
553
+ @pulumi.getter
554
+ def identity(self) -> pulumi.Output[Optional['outputs.IdentityInfoResponse']]:
555
+ """
556
+ Identity information for the Event Grid Domain resource.
557
+ """
558
+ return pulumi.get(self, "identity")
559
+
560
+ @property
561
+ @pulumi.getter(name="inboundIpRules")
562
+ def inbound_ip_rules(self) -> pulumi.Output[Optional[Sequence['outputs.InboundIpRuleResponse']]]:
563
+ """
564
+ This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
565
+ """
566
+ return pulumi.get(self, "inbound_ip_rules")
567
+
568
+ @property
569
+ @pulumi.getter(name="inputSchema")
570
+ def input_schema(self) -> pulumi.Output[Optional[str]]:
571
+ """
572
+ This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
573
+ """
574
+ return pulumi.get(self, "input_schema")
575
+
576
+ @property
577
+ @pulumi.getter(name="inputSchemaMapping")
578
+ def input_schema_mapping(self) -> pulumi.Output[Optional['outputs.JsonInputSchemaMappingResponse']]:
579
+ """
580
+ Information about the InputSchemaMapping which specified the info about mapping event payload.
581
+ """
582
+ return pulumi.get(self, "input_schema_mapping")
583
+
584
+ @property
585
+ @pulumi.getter
586
+ def location(self) -> pulumi.Output[str]:
587
+ """
588
+ Location of the resource.
589
+ """
590
+ return pulumi.get(self, "location")
591
+
592
+ @property
593
+ @pulumi.getter(name="metricResourceId")
594
+ def metric_resource_id(self) -> pulumi.Output[str]:
595
+ """
596
+ Metric resource id for the Event Grid Domain Resource.
597
+ """
598
+ return pulumi.get(self, "metric_resource_id")
599
+
600
+ @property
601
+ @pulumi.getter(name="minimumTlsVersionAllowed")
602
+ def minimum_tls_version_allowed(self) -> pulumi.Output[Optional[str]]:
603
+ """
604
+ Minimum TLS version of the publisher allowed to publish to this domain
605
+ """
606
+ return pulumi.get(self, "minimum_tls_version_allowed")
607
+
608
+ @property
609
+ @pulumi.getter
610
+ def name(self) -> pulumi.Output[str]:
611
+ """
612
+ Name of the resource.
613
+ """
614
+ return pulumi.get(self, "name")
615
+
616
+ @property
617
+ @pulumi.getter(name="privateEndpointConnections")
618
+ def private_endpoint_connections(self) -> pulumi.Output[Sequence['outputs.PrivateEndpointConnectionResponse']]:
619
+ """
620
+ List of private endpoint connections.
621
+ """
622
+ return pulumi.get(self, "private_endpoint_connections")
623
+
624
+ @property
625
+ @pulumi.getter(name="provisioningState")
626
+ def provisioning_state(self) -> pulumi.Output[str]:
627
+ """
628
+ Provisioning state of the Event Grid Domain Resource.
629
+ """
630
+ return pulumi.get(self, "provisioning_state")
631
+
632
+ @property
633
+ @pulumi.getter(name="publicNetworkAccess")
634
+ def public_network_access(self) -> pulumi.Output[Optional[str]]:
635
+ """
636
+ This determines if traffic is allowed over public network. By default it is enabled.
637
+ You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.DomainProperties.InboundIpRules" />
638
+ """
639
+ return pulumi.get(self, "public_network_access")
640
+
641
+ @property
642
+ @pulumi.getter(name="systemData")
643
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
644
+ """
645
+ The system metadata relating to the Event Grid resource.
646
+ """
647
+ return pulumi.get(self, "system_data")
648
+
649
+ @property
650
+ @pulumi.getter
651
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
652
+ """
653
+ Tags of the resource.
654
+ """
655
+ return pulumi.get(self, "tags")
656
+
657
+ @property
658
+ @pulumi.getter
659
+ def type(self) -> pulumi.Output[str]:
660
+ """
661
+ Type of the resource.
662
+ """
663
+ return pulumi.get(self, "type")
664
+