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,270 @@
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__ = ['SuppressionListArgs', 'SuppressionList']
19
+
20
+ @pulumi.input_type
21
+ class SuppressionListArgs:
22
+ def __init__(__self__, *,
23
+ domain_name: pulumi.Input[str],
24
+ email_service_name: pulumi.Input[str],
25
+ resource_group_name: pulumi.Input[str],
26
+ list_name: Optional[pulumi.Input[str]] = None,
27
+ suppression_list_name: Optional[pulumi.Input[str]] = None):
28
+ """
29
+ The set of arguments for constructing a SuppressionList resource.
30
+ :param pulumi.Input[str] domain_name: The name of the Domains resource.
31
+ :param pulumi.Input[str] email_service_name: The name of the EmailService resource.
32
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
33
+ :param pulumi.Input[str] list_name: The the name of the suppression list. This value must match one of the valid sender usernames of the sending domain.
34
+ :param pulumi.Input[str] suppression_list_name: The name of the suppression list.
35
+ """
36
+ pulumi.set(__self__, "domain_name", domain_name)
37
+ pulumi.set(__self__, "email_service_name", email_service_name)
38
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
39
+ if list_name is not None:
40
+ pulumi.set(__self__, "list_name", list_name)
41
+ if suppression_list_name is not None:
42
+ pulumi.set(__self__, "suppression_list_name", suppression_list_name)
43
+
44
+ @property
45
+ @pulumi.getter(name="domainName")
46
+ def domain_name(self) -> pulumi.Input[str]:
47
+ """
48
+ The name of the Domains resource.
49
+ """
50
+ return pulumi.get(self, "domain_name")
51
+
52
+ @domain_name.setter
53
+ def domain_name(self, value: pulumi.Input[str]):
54
+ pulumi.set(self, "domain_name", value)
55
+
56
+ @property
57
+ @pulumi.getter(name="emailServiceName")
58
+ def email_service_name(self) -> pulumi.Input[str]:
59
+ """
60
+ The name of the EmailService resource.
61
+ """
62
+ return pulumi.get(self, "email_service_name")
63
+
64
+ @email_service_name.setter
65
+ def email_service_name(self, value: pulumi.Input[str]):
66
+ pulumi.set(self, "email_service_name", value)
67
+
68
+ @property
69
+ @pulumi.getter(name="resourceGroupName")
70
+ def resource_group_name(self) -> pulumi.Input[str]:
71
+ """
72
+ The name of the resource group. The name is case insensitive.
73
+ """
74
+ return pulumi.get(self, "resource_group_name")
75
+
76
+ @resource_group_name.setter
77
+ def resource_group_name(self, value: pulumi.Input[str]):
78
+ pulumi.set(self, "resource_group_name", value)
79
+
80
+ @property
81
+ @pulumi.getter(name="listName")
82
+ def list_name(self) -> Optional[pulumi.Input[str]]:
83
+ """
84
+ The the name of the suppression list. This value must match one of the valid sender usernames of the sending domain.
85
+ """
86
+ return pulumi.get(self, "list_name")
87
+
88
+ @list_name.setter
89
+ def list_name(self, value: Optional[pulumi.Input[str]]):
90
+ pulumi.set(self, "list_name", value)
91
+
92
+ @property
93
+ @pulumi.getter(name="suppressionListName")
94
+ def suppression_list_name(self) -> Optional[pulumi.Input[str]]:
95
+ """
96
+ The name of the suppression list.
97
+ """
98
+ return pulumi.get(self, "suppression_list_name")
99
+
100
+ @suppression_list_name.setter
101
+ def suppression_list_name(self, value: Optional[pulumi.Input[str]]):
102
+ pulumi.set(self, "suppression_list_name", value)
103
+
104
+
105
+ class SuppressionList(pulumi.CustomResource):
106
+ @overload
107
+ def __init__(__self__,
108
+ resource_name: str,
109
+ opts: Optional[pulumi.ResourceOptions] = None,
110
+ domain_name: Optional[pulumi.Input[str]] = None,
111
+ email_service_name: Optional[pulumi.Input[str]] = None,
112
+ list_name: Optional[pulumi.Input[str]] = None,
113
+ resource_group_name: Optional[pulumi.Input[str]] = None,
114
+ suppression_list_name: Optional[pulumi.Input[str]] = None,
115
+ __props__=None):
116
+ """
117
+ A class representing a SuppressionList resource.
118
+
119
+ :param str resource_name: The name of the resource.
120
+ :param pulumi.ResourceOptions opts: Options for the resource.
121
+ :param pulumi.Input[str] domain_name: The name of the Domains resource.
122
+ :param pulumi.Input[str] email_service_name: The name of the EmailService resource.
123
+ :param pulumi.Input[str] list_name: The the name of the suppression list. This value must match one of the valid sender usernames of the sending domain.
124
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
125
+ :param pulumi.Input[str] suppression_list_name: The name of the suppression list.
126
+ """
127
+ ...
128
+ @overload
129
+ def __init__(__self__,
130
+ resource_name: str,
131
+ args: SuppressionListArgs,
132
+ opts: Optional[pulumi.ResourceOptions] = None):
133
+ """
134
+ A class representing a SuppressionList resource.
135
+
136
+ :param str resource_name: The name of the resource.
137
+ :param SuppressionListArgs args: The arguments to use to populate this resource's properties.
138
+ :param pulumi.ResourceOptions opts: Options for the resource.
139
+ """
140
+ ...
141
+ def __init__(__self__, resource_name: str, *args, **kwargs):
142
+ resource_args, opts = _utilities.get_resource_args_opts(SuppressionListArgs, pulumi.ResourceOptions, *args, **kwargs)
143
+ if resource_args is not None:
144
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
145
+ else:
146
+ __self__._internal_init(resource_name, *args, **kwargs)
147
+
148
+ def _internal_init(__self__,
149
+ resource_name: str,
150
+ opts: Optional[pulumi.ResourceOptions] = None,
151
+ domain_name: Optional[pulumi.Input[str]] = None,
152
+ email_service_name: Optional[pulumi.Input[str]] = None,
153
+ list_name: Optional[pulumi.Input[str]] = None,
154
+ resource_group_name: Optional[pulumi.Input[str]] = None,
155
+ suppression_list_name: Optional[pulumi.Input[str]] = None,
156
+ __props__=None):
157
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
158
+ if not isinstance(opts, pulumi.ResourceOptions):
159
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
160
+ if opts.id is None:
161
+ if __props__ is not None:
162
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
163
+ __props__ = SuppressionListArgs.__new__(SuppressionListArgs)
164
+
165
+ if domain_name is None and not opts.urn:
166
+ raise TypeError("Missing required property 'domain_name'")
167
+ __props__.__dict__["domain_name"] = domain_name
168
+ if email_service_name is None and not opts.urn:
169
+ raise TypeError("Missing required property 'email_service_name'")
170
+ __props__.__dict__["email_service_name"] = email_service_name
171
+ __props__.__dict__["list_name"] = list_name
172
+ if resource_group_name is None and not opts.urn:
173
+ raise TypeError("Missing required property 'resource_group_name'")
174
+ __props__.__dict__["resource_group_name"] = resource_group_name
175
+ __props__.__dict__["suppression_list_name"] = suppression_list_name
176
+ __props__.__dict__["created_time_stamp"] = None
177
+ __props__.__dict__["data_location"] = None
178
+ __props__.__dict__["last_updated_time_stamp"] = None
179
+ __props__.__dict__["name"] = None
180
+ __props__.__dict__["system_data"] = None
181
+ __props__.__dict__["type"] = None
182
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:communication/v20230601preview:SuppressionList"), pulumi.Alias(type_="azure-native:communication:SuppressionList")])
183
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
184
+ super(SuppressionList, __self__).__init__(
185
+ 'azure-native:communication/v20240901preview:SuppressionList',
186
+ resource_name,
187
+ __props__,
188
+ opts)
189
+
190
+ @staticmethod
191
+ def get(resource_name: str,
192
+ id: pulumi.Input[str],
193
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'SuppressionList':
194
+ """
195
+ Get an existing SuppressionList resource's state with the given name, id, and optional extra
196
+ properties used to qualify the lookup.
197
+
198
+ :param str resource_name: The unique name of the resulting resource.
199
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
200
+ :param pulumi.ResourceOptions opts: Options for the resource.
201
+ """
202
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
203
+
204
+ __props__ = SuppressionListArgs.__new__(SuppressionListArgs)
205
+
206
+ __props__.__dict__["created_time_stamp"] = None
207
+ __props__.__dict__["data_location"] = None
208
+ __props__.__dict__["last_updated_time_stamp"] = None
209
+ __props__.__dict__["list_name"] = None
210
+ __props__.__dict__["name"] = None
211
+ __props__.__dict__["system_data"] = None
212
+ __props__.__dict__["type"] = None
213
+ return SuppressionList(resource_name, opts=opts, __props__=__props__)
214
+
215
+ @property
216
+ @pulumi.getter(name="createdTimeStamp")
217
+ def created_time_stamp(self) -> pulumi.Output[str]:
218
+ """
219
+ The date the resource was created.
220
+ """
221
+ return pulumi.get(self, "created_time_stamp")
222
+
223
+ @property
224
+ @pulumi.getter(name="dataLocation")
225
+ def data_location(self) -> pulumi.Output[str]:
226
+ """
227
+ The location where the SuppressionListAddress data is stored at rest. This value is inherited from the parent Domains resource.
228
+ """
229
+ return pulumi.get(self, "data_location")
230
+
231
+ @property
232
+ @pulumi.getter(name="lastUpdatedTimeStamp")
233
+ def last_updated_time_stamp(self) -> pulumi.Output[str]:
234
+ """
235
+ The date the resource was last updated.
236
+ """
237
+ return pulumi.get(self, "last_updated_time_stamp")
238
+
239
+ @property
240
+ @pulumi.getter(name="listName")
241
+ def list_name(self) -> pulumi.Output[Optional[str]]:
242
+ """
243
+ The the name of the suppression list. This value must match one of the valid sender usernames of the sending domain.
244
+ """
245
+ return pulumi.get(self, "list_name")
246
+
247
+ @property
248
+ @pulumi.getter
249
+ def name(self) -> pulumi.Output[str]:
250
+ """
251
+ The name of the resource
252
+ """
253
+ return pulumi.get(self, "name")
254
+
255
+ @property
256
+ @pulumi.getter(name="systemData")
257
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
258
+ """
259
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
260
+ """
261
+ return pulumi.get(self, "system_data")
262
+
263
+ @property
264
+ @pulumi.getter
265
+ def type(self) -> pulumi.Output[str]:
266
+ """
267
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
268
+ """
269
+ return pulumi.get(self, "type")
270
+
@@ -0,0 +1,369 @@
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__ = ['SuppressionListAddressArgs', 'SuppressionListAddress']
19
+
20
+ @pulumi.input_type
21
+ class SuppressionListAddressArgs:
22
+ def __init__(__self__, *,
23
+ domain_name: pulumi.Input[str],
24
+ email: pulumi.Input[str],
25
+ email_service_name: pulumi.Input[str],
26
+ resource_group_name: pulumi.Input[str],
27
+ suppression_list_name: pulumi.Input[str],
28
+ address_id: Optional[pulumi.Input[str]] = None,
29
+ first_name: Optional[pulumi.Input[str]] = None,
30
+ last_name: Optional[pulumi.Input[str]] = None,
31
+ notes: Optional[pulumi.Input[str]] = None):
32
+ """
33
+ The set of arguments for constructing a SuppressionListAddress resource.
34
+ :param pulumi.Input[str] domain_name: The name of the Domains resource.
35
+ :param pulumi.Input[str] email: Email address of the recipient.
36
+ :param pulumi.Input[str] email_service_name: The name of the EmailService resource.
37
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
38
+ :param pulumi.Input[str] suppression_list_name: The name of the suppression list.
39
+ :param pulumi.Input[str] address_id: The id of the address in a suppression list.
40
+ :param pulumi.Input[str] first_name: The first name of the email recipient.
41
+ :param pulumi.Input[str] last_name: The last name of the email recipient.
42
+ :param pulumi.Input[str] notes: An optional property to provide contextual notes or a description for an address.
43
+ """
44
+ pulumi.set(__self__, "domain_name", domain_name)
45
+ pulumi.set(__self__, "email", email)
46
+ pulumi.set(__self__, "email_service_name", email_service_name)
47
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
48
+ pulumi.set(__self__, "suppression_list_name", suppression_list_name)
49
+ if address_id is not None:
50
+ pulumi.set(__self__, "address_id", address_id)
51
+ if first_name is not None:
52
+ pulumi.set(__self__, "first_name", first_name)
53
+ if last_name is not None:
54
+ pulumi.set(__self__, "last_name", last_name)
55
+ if notes is not None:
56
+ pulumi.set(__self__, "notes", notes)
57
+
58
+ @property
59
+ @pulumi.getter(name="domainName")
60
+ def domain_name(self) -> pulumi.Input[str]:
61
+ """
62
+ The name of the Domains resource.
63
+ """
64
+ return pulumi.get(self, "domain_name")
65
+
66
+ @domain_name.setter
67
+ def domain_name(self, value: pulumi.Input[str]):
68
+ pulumi.set(self, "domain_name", value)
69
+
70
+ @property
71
+ @pulumi.getter
72
+ def email(self) -> pulumi.Input[str]:
73
+ """
74
+ Email address of the recipient.
75
+ """
76
+ return pulumi.get(self, "email")
77
+
78
+ @email.setter
79
+ def email(self, value: pulumi.Input[str]):
80
+ pulumi.set(self, "email", value)
81
+
82
+ @property
83
+ @pulumi.getter(name="emailServiceName")
84
+ def email_service_name(self) -> pulumi.Input[str]:
85
+ """
86
+ The name of the EmailService resource.
87
+ """
88
+ return pulumi.get(self, "email_service_name")
89
+
90
+ @email_service_name.setter
91
+ def email_service_name(self, value: pulumi.Input[str]):
92
+ pulumi.set(self, "email_service_name", value)
93
+
94
+ @property
95
+ @pulumi.getter(name="resourceGroupName")
96
+ def resource_group_name(self) -> pulumi.Input[str]:
97
+ """
98
+ The name of the resource group. The name is case insensitive.
99
+ """
100
+ return pulumi.get(self, "resource_group_name")
101
+
102
+ @resource_group_name.setter
103
+ def resource_group_name(self, value: pulumi.Input[str]):
104
+ pulumi.set(self, "resource_group_name", value)
105
+
106
+ @property
107
+ @pulumi.getter(name="suppressionListName")
108
+ def suppression_list_name(self) -> pulumi.Input[str]:
109
+ """
110
+ The name of the suppression list.
111
+ """
112
+ return pulumi.get(self, "suppression_list_name")
113
+
114
+ @suppression_list_name.setter
115
+ def suppression_list_name(self, value: pulumi.Input[str]):
116
+ pulumi.set(self, "suppression_list_name", value)
117
+
118
+ @property
119
+ @pulumi.getter(name="addressId")
120
+ def address_id(self) -> Optional[pulumi.Input[str]]:
121
+ """
122
+ The id of the address in a suppression list.
123
+ """
124
+ return pulumi.get(self, "address_id")
125
+
126
+ @address_id.setter
127
+ def address_id(self, value: Optional[pulumi.Input[str]]):
128
+ pulumi.set(self, "address_id", value)
129
+
130
+ @property
131
+ @pulumi.getter(name="firstName")
132
+ def first_name(self) -> Optional[pulumi.Input[str]]:
133
+ """
134
+ The first name of the email recipient.
135
+ """
136
+ return pulumi.get(self, "first_name")
137
+
138
+ @first_name.setter
139
+ def first_name(self, value: Optional[pulumi.Input[str]]):
140
+ pulumi.set(self, "first_name", value)
141
+
142
+ @property
143
+ @pulumi.getter(name="lastName")
144
+ def last_name(self) -> Optional[pulumi.Input[str]]:
145
+ """
146
+ The last name of the email recipient.
147
+ """
148
+ return pulumi.get(self, "last_name")
149
+
150
+ @last_name.setter
151
+ def last_name(self, value: Optional[pulumi.Input[str]]):
152
+ pulumi.set(self, "last_name", value)
153
+
154
+ @property
155
+ @pulumi.getter
156
+ def notes(self) -> Optional[pulumi.Input[str]]:
157
+ """
158
+ An optional property to provide contextual notes or a description for an address.
159
+ """
160
+ return pulumi.get(self, "notes")
161
+
162
+ @notes.setter
163
+ def notes(self, value: Optional[pulumi.Input[str]]):
164
+ pulumi.set(self, "notes", value)
165
+
166
+
167
+ class SuppressionListAddress(pulumi.CustomResource):
168
+ @overload
169
+ def __init__(__self__,
170
+ resource_name: str,
171
+ opts: Optional[pulumi.ResourceOptions] = None,
172
+ address_id: Optional[pulumi.Input[str]] = None,
173
+ domain_name: Optional[pulumi.Input[str]] = None,
174
+ email: Optional[pulumi.Input[str]] = None,
175
+ email_service_name: Optional[pulumi.Input[str]] = None,
176
+ first_name: Optional[pulumi.Input[str]] = None,
177
+ last_name: Optional[pulumi.Input[str]] = None,
178
+ notes: Optional[pulumi.Input[str]] = None,
179
+ resource_group_name: Optional[pulumi.Input[str]] = None,
180
+ suppression_list_name: Optional[pulumi.Input[str]] = None,
181
+ __props__=None):
182
+ """
183
+ A object that represents a SuppressionList record.
184
+
185
+ :param str resource_name: The name of the resource.
186
+ :param pulumi.ResourceOptions opts: Options for the resource.
187
+ :param pulumi.Input[str] address_id: The id of the address in a suppression list.
188
+ :param pulumi.Input[str] domain_name: The name of the Domains resource.
189
+ :param pulumi.Input[str] email: Email address of the recipient.
190
+ :param pulumi.Input[str] email_service_name: The name of the EmailService resource.
191
+ :param pulumi.Input[str] first_name: The first name of the email recipient.
192
+ :param pulumi.Input[str] last_name: The last name of the email recipient.
193
+ :param pulumi.Input[str] notes: An optional property to provide contextual notes or a description for an address.
194
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
195
+ :param pulumi.Input[str] suppression_list_name: The name of the suppression list.
196
+ """
197
+ ...
198
+ @overload
199
+ def __init__(__self__,
200
+ resource_name: str,
201
+ args: SuppressionListAddressArgs,
202
+ opts: Optional[pulumi.ResourceOptions] = None):
203
+ """
204
+ A object that represents a SuppressionList record.
205
+
206
+ :param str resource_name: The name of the resource.
207
+ :param SuppressionListAddressArgs args: The arguments to use to populate this resource's properties.
208
+ :param pulumi.ResourceOptions opts: Options for the resource.
209
+ """
210
+ ...
211
+ def __init__(__self__, resource_name: str, *args, **kwargs):
212
+ resource_args, opts = _utilities.get_resource_args_opts(SuppressionListAddressArgs, pulumi.ResourceOptions, *args, **kwargs)
213
+ if resource_args is not None:
214
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
215
+ else:
216
+ __self__._internal_init(resource_name, *args, **kwargs)
217
+
218
+ def _internal_init(__self__,
219
+ resource_name: str,
220
+ opts: Optional[pulumi.ResourceOptions] = None,
221
+ address_id: Optional[pulumi.Input[str]] = None,
222
+ domain_name: Optional[pulumi.Input[str]] = None,
223
+ email: Optional[pulumi.Input[str]] = None,
224
+ email_service_name: Optional[pulumi.Input[str]] = None,
225
+ first_name: Optional[pulumi.Input[str]] = None,
226
+ last_name: Optional[pulumi.Input[str]] = None,
227
+ notes: Optional[pulumi.Input[str]] = None,
228
+ resource_group_name: Optional[pulumi.Input[str]] = None,
229
+ suppression_list_name: Optional[pulumi.Input[str]] = None,
230
+ __props__=None):
231
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
232
+ if not isinstance(opts, pulumi.ResourceOptions):
233
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
234
+ if opts.id is None:
235
+ if __props__ is not None:
236
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
237
+ __props__ = SuppressionListAddressArgs.__new__(SuppressionListAddressArgs)
238
+
239
+ __props__.__dict__["address_id"] = address_id
240
+ if domain_name is None and not opts.urn:
241
+ raise TypeError("Missing required property 'domain_name'")
242
+ __props__.__dict__["domain_name"] = domain_name
243
+ if email is None and not opts.urn:
244
+ raise TypeError("Missing required property 'email'")
245
+ __props__.__dict__["email"] = email
246
+ if email_service_name is None and not opts.urn:
247
+ raise TypeError("Missing required property 'email_service_name'")
248
+ __props__.__dict__["email_service_name"] = email_service_name
249
+ __props__.__dict__["first_name"] = first_name
250
+ __props__.__dict__["last_name"] = last_name
251
+ __props__.__dict__["notes"] = notes
252
+ if resource_group_name is None and not opts.urn:
253
+ raise TypeError("Missing required property 'resource_group_name'")
254
+ __props__.__dict__["resource_group_name"] = resource_group_name
255
+ if suppression_list_name is None and not opts.urn:
256
+ raise TypeError("Missing required property 'suppression_list_name'")
257
+ __props__.__dict__["suppression_list_name"] = suppression_list_name
258
+ __props__.__dict__["data_location"] = None
259
+ __props__.__dict__["last_modified"] = None
260
+ __props__.__dict__["name"] = None
261
+ __props__.__dict__["system_data"] = None
262
+ __props__.__dict__["type"] = None
263
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:communication/v20230601preview:SuppressionListAddress"), pulumi.Alias(type_="azure-native:communication:SuppressionListAddress")])
264
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
265
+ super(SuppressionListAddress, __self__).__init__(
266
+ 'azure-native:communication/v20240901preview:SuppressionListAddress',
267
+ resource_name,
268
+ __props__,
269
+ opts)
270
+
271
+ @staticmethod
272
+ def get(resource_name: str,
273
+ id: pulumi.Input[str],
274
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'SuppressionListAddress':
275
+ """
276
+ Get an existing SuppressionListAddress resource's state with the given name, id, and optional extra
277
+ properties used to qualify the lookup.
278
+
279
+ :param str resource_name: The unique name of the resulting resource.
280
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
281
+ :param pulumi.ResourceOptions opts: Options for the resource.
282
+ """
283
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
284
+
285
+ __props__ = SuppressionListAddressArgs.__new__(SuppressionListAddressArgs)
286
+
287
+ __props__.__dict__["data_location"] = None
288
+ __props__.__dict__["email"] = None
289
+ __props__.__dict__["first_name"] = None
290
+ __props__.__dict__["last_modified"] = None
291
+ __props__.__dict__["last_name"] = None
292
+ __props__.__dict__["name"] = None
293
+ __props__.__dict__["notes"] = None
294
+ __props__.__dict__["system_data"] = None
295
+ __props__.__dict__["type"] = None
296
+ return SuppressionListAddress(resource_name, opts=opts, __props__=__props__)
297
+
298
+ @property
299
+ @pulumi.getter(name="dataLocation")
300
+ def data_location(self) -> pulumi.Output[str]:
301
+ """
302
+ The location where the SuppressionListAddress data is stored at rest. This value is inherited from the parent Domains resource.
303
+ """
304
+ return pulumi.get(self, "data_location")
305
+
306
+ @property
307
+ @pulumi.getter
308
+ def email(self) -> pulumi.Output[str]:
309
+ """
310
+ Email address of the recipient.
311
+ """
312
+ return pulumi.get(self, "email")
313
+
314
+ @property
315
+ @pulumi.getter(name="firstName")
316
+ def first_name(self) -> pulumi.Output[Optional[str]]:
317
+ """
318
+ The first name of the email recipient.
319
+ """
320
+ return pulumi.get(self, "first_name")
321
+
322
+ @property
323
+ @pulumi.getter(name="lastModified")
324
+ def last_modified(self) -> pulumi.Output[str]:
325
+ """
326
+ The date the address was last updated in a suppression list.
327
+ """
328
+ return pulumi.get(self, "last_modified")
329
+
330
+ @property
331
+ @pulumi.getter(name="lastName")
332
+ def last_name(self) -> pulumi.Output[Optional[str]]:
333
+ """
334
+ The last name of the email recipient.
335
+ """
336
+ return pulumi.get(self, "last_name")
337
+
338
+ @property
339
+ @pulumi.getter
340
+ def name(self) -> pulumi.Output[str]:
341
+ """
342
+ The name of the resource
343
+ """
344
+ return pulumi.get(self, "name")
345
+
346
+ @property
347
+ @pulumi.getter
348
+ def notes(self) -> pulumi.Output[Optional[str]]:
349
+ """
350
+ An optional property to provide contextual notes or a description for an address.
351
+ """
352
+ return pulumi.get(self, "notes")
353
+
354
+ @property
355
+ @pulumi.getter(name="systemData")
356
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
357
+ """
358
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
359
+ """
360
+ return pulumi.get(self, "system_data")
361
+
362
+ @property
363
+ @pulumi.getter
364
+ def type(self) -> pulumi.Output[str]:
365
+ """
366
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
367
+ """
368
+ return pulumi.get(self, "type")
369
+