pulumi-azure-native 2.87.0a1739200739__py3-none-any.whl → 2.88.0a1739514756__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (385) hide show
  1. pulumi_azure_native/__init__.py +72 -1
  2. pulumi_azure_native/communication/__init__.py +3 -0
  3. pulumi_azure_native/communication/communication_service.py +3 -3
  4. pulumi_azure_native/communication/domain.py +3 -3
  5. pulumi_azure_native/communication/email_service.py +3 -3
  6. pulumi_azure_native/communication/get_communication_service.py +2 -2
  7. pulumi_azure_native/communication/get_domain.py +2 -2
  8. pulumi_azure_native/communication/get_email_service.py +2 -2
  9. pulumi_azure_native/communication/get_sender_username.py +2 -2
  10. pulumi_azure_native/communication/get_suppression_list.py +4 -0
  11. pulumi_azure_native/communication/get_suppression_list_address.py +4 -0
  12. pulumi_azure_native/communication/list_communication_service_keys.py +2 -2
  13. pulumi_azure_native/communication/sender_username.py +3 -3
  14. pulumi_azure_native/communication/suppression_list.py +5 -1
  15. pulumi_azure_native/communication/suppression_list_address.py +5 -1
  16. pulumi_azure_native/communication/v20220701preview/domain.py +1 -1
  17. pulumi_azure_native/communication/v20230331/communication_service.py +1 -1
  18. pulumi_azure_native/communication/v20230331/domain.py +1 -1
  19. pulumi_azure_native/communication/v20230331/email_service.py +1 -1
  20. pulumi_azure_native/communication/v20230331/sender_username.py +1 -1
  21. pulumi_azure_native/communication/v20230401/communication_service.py +1 -1
  22. pulumi_azure_native/communication/v20230401/domain.py +1 -1
  23. pulumi_azure_native/communication/v20230401/email_service.py +1 -1
  24. pulumi_azure_native/communication/v20230401/sender_username.py +1 -1
  25. pulumi_azure_native/communication/v20230401preview/communication_service.py +1 -1
  26. pulumi_azure_native/communication/v20230401preview/domain.py +1 -1
  27. pulumi_azure_native/communication/v20230401preview/email_service.py +1 -1
  28. pulumi_azure_native/communication/v20230401preview/sender_username.py +1 -1
  29. pulumi_azure_native/communication/v20230601preview/communication_service.py +1 -1
  30. pulumi_azure_native/communication/v20230601preview/domain.py +1 -1
  31. pulumi_azure_native/communication/v20230601preview/email_service.py +1 -1
  32. pulumi_azure_native/communication/v20230601preview/sender_username.py +1 -1
  33. pulumi_azure_native/communication/v20230601preview/suppression_list.py +1 -1
  34. pulumi_azure_native/communication/v20230601preview/suppression_list_address.py +1 -1
  35. pulumi_azure_native/communication/v20240901preview/__init__.py +25 -0
  36. pulumi_azure_native/communication/v20240901preview/_enums.py +38 -0
  37. pulumi_azure_native/communication/v20240901preview/_inputs.py +79 -0
  38. pulumi_azure_native/communication/v20240901preview/communication_service.py +367 -0
  39. pulumi_azure_native/communication/v20240901preview/domain.py +368 -0
  40. pulumi_azure_native/communication/v20240901preview/email_service.py +267 -0
  41. pulumi_azure_native/communication/v20240901preview/get_communication_service.py +269 -0
  42. pulumi_azure_native/communication/v20240901preview/get_domain.py +275 -0
  43. pulumi_azure_native/communication/v20240901preview/get_email_service.py +185 -0
  44. pulumi_azure_native/communication/v20240901preview/get_sender_username.py +197 -0
  45. pulumi_azure_native/communication/v20240901preview/get_smtp_username.py +177 -0
  46. pulumi_azure_native/communication/v20240901preview/get_suppression_list.py +197 -0
  47. pulumi_azure_native/communication/v20240901preview/get_suppression_list_address.py +231 -0
  48. pulumi_azure_native/communication/v20240901preview/list_communication_service_keys.py +128 -0
  49. pulumi_azure_native/communication/v20240901preview/outputs.py +560 -0
  50. pulumi_azure_native/communication/v20240901preview/sender_username.py +290 -0
  51. pulumi_azure_native/communication/v20240901preview/smtp_username.py +278 -0
  52. pulumi_azure_native/communication/v20240901preview/suppression_list.py +270 -0
  53. pulumi_azure_native/communication/v20240901preview/suppression_list_address.py +369 -0
  54. pulumi_azure_native/datafactory/_inputs.py +43 -43
  55. pulumi_azure_native/datafactory/outputs.py +34 -34
  56. pulumi_azure_native/datafactory/v20180601/_inputs.py +43 -43
  57. pulumi_azure_native/datafactory/v20180601/outputs.py +34 -34
  58. pulumi_azure_native/eventgrid/__init__.py +3 -0
  59. pulumi_azure_native/eventgrid/ca_certificate.py +3 -3
  60. pulumi_azure_native/eventgrid/channel.py +3 -3
  61. pulumi_azure_native/eventgrid/client.py +3 -3
  62. pulumi_azure_native/eventgrid/client_group.py +3 -3
  63. pulumi_azure_native/eventgrid/domain.py +3 -3
  64. pulumi_azure_native/eventgrid/domain_event_subscription.py +3 -3
  65. pulumi_azure_native/eventgrid/domain_topic.py +3 -3
  66. pulumi_azure_native/eventgrid/domain_topic_event_subscription.py +3 -3
  67. pulumi_azure_native/eventgrid/event_subscription.py +3 -3
  68. pulumi_azure_native/eventgrid/get_ca_certificate.py +2 -2
  69. pulumi_azure_native/eventgrid/get_channel.py +2 -2
  70. pulumi_azure_native/eventgrid/get_channel_full_url.py +2 -2
  71. pulumi_azure_native/eventgrid/get_client.py +2 -2
  72. pulumi_azure_native/eventgrid/get_client_group.py +2 -2
  73. pulumi_azure_native/eventgrid/get_domain.py +2 -2
  74. pulumi_azure_native/eventgrid/get_domain_event_subscription.py +2 -2
  75. pulumi_azure_native/eventgrid/get_domain_event_subscription_delivery_attributes.py +2 -2
  76. pulumi_azure_native/eventgrid/get_domain_event_subscription_full_url.py +2 -2
  77. pulumi_azure_native/eventgrid/get_domain_topic.py +2 -2
  78. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription.py +2 -2
  79. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_delivery_attributes.py +2 -2
  80. pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_full_url.py +2 -2
  81. pulumi_azure_native/eventgrid/get_event_subscription.py +2 -2
  82. pulumi_azure_native/eventgrid/get_event_subscription_delivery_attributes.py +2 -2
  83. pulumi_azure_native/eventgrid/get_event_subscription_full_url.py +2 -2
  84. pulumi_azure_native/eventgrid/get_namespace.py +2 -2
  85. pulumi_azure_native/eventgrid/get_namespace_topic.py +2 -2
  86. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription.py +2 -2
  87. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_delivery_attributes.py +2 -2
  88. pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_full_url.py +2 -2
  89. pulumi_azure_native/eventgrid/get_partner_configuration.py +2 -2
  90. pulumi_azure_native/eventgrid/get_partner_namespace.py +2 -2
  91. pulumi_azure_native/eventgrid/get_partner_registration.py +2 -2
  92. pulumi_azure_native/eventgrid/get_partner_topic.py +2 -2
  93. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription.py +2 -2
  94. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_delivery_attributes.py +2 -2
  95. pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_full_url.py +2 -2
  96. pulumi_azure_native/eventgrid/get_permission_binding.py +2 -2
  97. pulumi_azure_native/eventgrid/get_private_endpoint_connection.py +2 -2
  98. pulumi_azure_native/eventgrid/get_system_topic.py +2 -2
  99. pulumi_azure_native/eventgrid/get_system_topic_event_subscription.py +2 -2
  100. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_delivery_attributes.py +2 -2
  101. pulumi_azure_native/eventgrid/get_system_topic_event_subscription_full_url.py +2 -2
  102. pulumi_azure_native/eventgrid/get_topic.py +2 -2
  103. pulumi_azure_native/eventgrid/get_topic_event_subscription.py +2 -2
  104. pulumi_azure_native/eventgrid/get_topic_event_subscription_delivery_attributes.py +2 -2
  105. pulumi_azure_native/eventgrid/get_topic_event_subscription_full_url.py +2 -2
  106. pulumi_azure_native/eventgrid/get_topic_space.py +2 -2
  107. pulumi_azure_native/eventgrid/list_domain_shared_access_keys.py +2 -2
  108. pulumi_azure_native/eventgrid/list_namespace_shared_access_keys.py +2 -2
  109. pulumi_azure_native/eventgrid/list_namespace_topic_shared_access_keys.py +2 -2
  110. pulumi_azure_native/eventgrid/list_partner_namespace_shared_access_keys.py +2 -2
  111. pulumi_azure_native/eventgrid/list_topic_shared_access_keys.py +2 -2
  112. pulumi_azure_native/eventgrid/namespace.py +3 -3
  113. pulumi_azure_native/eventgrid/namespace_topic.py +3 -3
  114. pulumi_azure_native/eventgrid/namespace_topic_event_subscription.py +3 -3
  115. pulumi_azure_native/eventgrid/partner_configuration.py +3 -3
  116. pulumi_azure_native/eventgrid/partner_namespace.py +3 -3
  117. pulumi_azure_native/eventgrid/partner_registration.py +3 -3
  118. pulumi_azure_native/eventgrid/partner_topic.py +3 -3
  119. pulumi_azure_native/eventgrid/partner_topic_event_subscription.py +3 -3
  120. pulumi_azure_native/eventgrid/permission_binding.py +3 -3
  121. pulumi_azure_native/eventgrid/private_endpoint_connection.py +3 -3
  122. pulumi_azure_native/eventgrid/system_topic.py +3 -3
  123. pulumi_azure_native/eventgrid/system_topic_event_subscription.py +3 -3
  124. pulumi_azure_native/eventgrid/topic.py +3 -3
  125. pulumi_azure_native/eventgrid/topic_event_subscription.py +3 -3
  126. pulumi_azure_native/eventgrid/topic_space.py +3 -3
  127. pulumi_azure_native/eventgrid/v20200401preview/domain.py +1 -1
  128. pulumi_azure_native/eventgrid/v20200401preview/topic.py +1 -1
  129. pulumi_azure_native/eventgrid/v20211015preview/partner_registration.py +1 -1
  130. pulumi_azure_native/eventgrid/v20220615/channel.py +1 -1
  131. pulumi_azure_native/eventgrid/v20220615/domain.py +1 -1
  132. pulumi_azure_native/eventgrid/v20220615/domain_event_subscription.py +1 -1
  133. pulumi_azure_native/eventgrid/v20220615/domain_topic.py +1 -1
  134. pulumi_azure_native/eventgrid/v20220615/domain_topic_event_subscription.py +1 -1
  135. pulumi_azure_native/eventgrid/v20220615/event_subscription.py +1 -1
  136. pulumi_azure_native/eventgrid/v20220615/partner_configuration.py +1 -1
  137. pulumi_azure_native/eventgrid/v20220615/partner_namespace.py +1 -1
  138. pulumi_azure_native/eventgrid/v20220615/partner_registration.py +1 -1
  139. pulumi_azure_native/eventgrid/v20220615/partner_topic.py +1 -1
  140. pulumi_azure_native/eventgrid/v20220615/partner_topic_event_subscription.py +1 -1
  141. pulumi_azure_native/eventgrid/v20220615/private_endpoint_connection.py +1 -1
  142. pulumi_azure_native/eventgrid/v20220615/system_topic.py +1 -1
  143. pulumi_azure_native/eventgrid/v20220615/system_topic_event_subscription.py +1 -1
  144. pulumi_azure_native/eventgrid/v20220615/topic.py +1 -1
  145. pulumi_azure_native/eventgrid/v20220615/topic_event_subscription.py +1 -1
  146. pulumi_azure_native/eventgrid/v20230601preview/ca_certificate.py +1 -1
  147. pulumi_azure_native/eventgrid/v20230601preview/channel.py +1 -1
  148. pulumi_azure_native/eventgrid/v20230601preview/client.py +1 -1
  149. pulumi_azure_native/eventgrid/v20230601preview/client_group.py +1 -1
  150. pulumi_azure_native/eventgrid/v20230601preview/domain.py +1 -1
  151. pulumi_azure_native/eventgrid/v20230601preview/domain_event_subscription.py +1 -1
  152. pulumi_azure_native/eventgrid/v20230601preview/domain_topic.py +1 -1
  153. pulumi_azure_native/eventgrid/v20230601preview/domain_topic_event_subscription.py +1 -1
  154. pulumi_azure_native/eventgrid/v20230601preview/event_subscription.py +1 -1
  155. pulumi_azure_native/eventgrid/v20230601preview/namespace.py +1 -1
  156. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic.py +1 -1
  157. pulumi_azure_native/eventgrid/v20230601preview/namespace_topic_event_subscription.py +1 -1
  158. pulumi_azure_native/eventgrid/v20230601preview/partner_configuration.py +1 -1
  159. pulumi_azure_native/eventgrid/v20230601preview/partner_namespace.py +1 -1
  160. pulumi_azure_native/eventgrid/v20230601preview/partner_registration.py +1 -1
  161. pulumi_azure_native/eventgrid/v20230601preview/partner_topic.py +1 -1
  162. pulumi_azure_native/eventgrid/v20230601preview/partner_topic_event_subscription.py +1 -1
  163. pulumi_azure_native/eventgrid/v20230601preview/permission_binding.py +1 -1
  164. pulumi_azure_native/eventgrid/v20230601preview/private_endpoint_connection.py +1 -1
  165. pulumi_azure_native/eventgrid/v20230601preview/system_topic.py +1 -1
  166. pulumi_azure_native/eventgrid/v20230601preview/system_topic_event_subscription.py +1 -1
  167. pulumi_azure_native/eventgrid/v20230601preview/topic.py +1 -1
  168. pulumi_azure_native/eventgrid/v20230601preview/topic_event_subscription.py +1 -1
  169. pulumi_azure_native/eventgrid/v20230601preview/topic_space.py +1 -1
  170. pulumi_azure_native/eventgrid/v20231215preview/ca_certificate.py +1 -1
  171. pulumi_azure_native/eventgrid/v20231215preview/channel.py +1 -1
  172. pulumi_azure_native/eventgrid/v20231215preview/client.py +1 -1
  173. pulumi_azure_native/eventgrid/v20231215preview/client_group.py +1 -1
  174. pulumi_azure_native/eventgrid/v20231215preview/domain.py +1 -1
  175. pulumi_azure_native/eventgrid/v20231215preview/domain_event_subscription.py +1 -1
  176. pulumi_azure_native/eventgrid/v20231215preview/domain_topic.py +1 -1
  177. pulumi_azure_native/eventgrid/v20231215preview/domain_topic_event_subscription.py +1 -1
  178. pulumi_azure_native/eventgrid/v20231215preview/event_subscription.py +1 -1
  179. pulumi_azure_native/eventgrid/v20231215preview/namespace.py +1 -1
  180. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic.py +1 -1
  181. pulumi_azure_native/eventgrid/v20231215preview/namespace_topic_event_subscription.py +1 -1
  182. pulumi_azure_native/eventgrid/v20231215preview/partner_configuration.py +1 -1
  183. pulumi_azure_native/eventgrid/v20231215preview/partner_namespace.py +1 -1
  184. pulumi_azure_native/eventgrid/v20231215preview/partner_registration.py +1 -1
  185. pulumi_azure_native/eventgrid/v20231215preview/partner_topic.py +1 -1
  186. pulumi_azure_native/eventgrid/v20231215preview/partner_topic_event_subscription.py +1 -1
  187. pulumi_azure_native/eventgrid/v20231215preview/permission_binding.py +1 -1
  188. pulumi_azure_native/eventgrid/v20231215preview/private_endpoint_connection.py +1 -1
  189. pulumi_azure_native/eventgrid/v20231215preview/system_topic.py +1 -1
  190. pulumi_azure_native/eventgrid/v20231215preview/system_topic_event_subscription.py +1 -1
  191. pulumi_azure_native/eventgrid/v20231215preview/topic.py +1 -1
  192. pulumi_azure_native/eventgrid/v20231215preview/topic_event_subscription.py +1 -1
  193. pulumi_azure_native/eventgrid/v20231215preview/topic_space.py +1 -1
  194. pulumi_azure_native/eventgrid/v20240601preview/ca_certificate.py +1 -1
  195. pulumi_azure_native/eventgrid/v20240601preview/channel.py +1 -1
  196. pulumi_azure_native/eventgrid/v20240601preview/client.py +1 -1
  197. pulumi_azure_native/eventgrid/v20240601preview/client_group.py +1 -1
  198. pulumi_azure_native/eventgrid/v20240601preview/domain.py +1 -1
  199. pulumi_azure_native/eventgrid/v20240601preview/domain_event_subscription.py +1 -1
  200. pulumi_azure_native/eventgrid/v20240601preview/domain_topic.py +1 -1
  201. pulumi_azure_native/eventgrid/v20240601preview/domain_topic_event_subscription.py +1 -1
  202. pulumi_azure_native/eventgrid/v20240601preview/event_subscription.py +1 -1
  203. pulumi_azure_native/eventgrid/v20240601preview/namespace.py +1 -1
  204. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic.py +1 -1
  205. pulumi_azure_native/eventgrid/v20240601preview/namespace_topic_event_subscription.py +1 -1
  206. pulumi_azure_native/eventgrid/v20240601preview/partner_configuration.py +1 -1
  207. pulumi_azure_native/eventgrid/v20240601preview/partner_namespace.py +1 -1
  208. pulumi_azure_native/eventgrid/v20240601preview/partner_registration.py +1 -1
  209. pulumi_azure_native/eventgrid/v20240601preview/partner_topic.py +1 -1
  210. pulumi_azure_native/eventgrid/v20240601preview/partner_topic_event_subscription.py +1 -1
  211. pulumi_azure_native/eventgrid/v20240601preview/permission_binding.py +1 -1
  212. pulumi_azure_native/eventgrid/v20240601preview/private_endpoint_connection.py +1 -1
  213. pulumi_azure_native/eventgrid/v20240601preview/system_topic.py +1 -1
  214. pulumi_azure_native/eventgrid/v20240601preview/system_topic_event_subscription.py +1 -1
  215. pulumi_azure_native/eventgrid/v20240601preview/topic.py +1 -1
  216. pulumi_azure_native/eventgrid/v20240601preview/topic_event_subscription.py +1 -1
  217. pulumi_azure_native/eventgrid/v20240601preview/topic_space.py +1 -1
  218. pulumi_azure_native/eventgrid/v20241215preview/ca_certificate.py +1 -1
  219. pulumi_azure_native/eventgrid/v20241215preview/channel.py +1 -1
  220. pulumi_azure_native/eventgrid/v20241215preview/client.py +1 -1
  221. pulumi_azure_native/eventgrid/v20241215preview/client_group.py +1 -1
  222. pulumi_azure_native/eventgrid/v20241215preview/domain.py +1 -1
  223. pulumi_azure_native/eventgrid/v20241215preview/domain_event_subscription.py +1 -1
  224. pulumi_azure_native/eventgrid/v20241215preview/domain_topic.py +1 -1
  225. pulumi_azure_native/eventgrid/v20241215preview/domain_topic_event_subscription.py +1 -1
  226. pulumi_azure_native/eventgrid/v20241215preview/event_subscription.py +1 -1
  227. pulumi_azure_native/eventgrid/v20241215preview/namespace.py +1 -1
  228. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic.py +1 -1
  229. pulumi_azure_native/eventgrid/v20241215preview/namespace_topic_event_subscription.py +1 -1
  230. pulumi_azure_native/eventgrid/v20241215preview/partner_configuration.py +1 -1
  231. pulumi_azure_native/eventgrid/v20241215preview/partner_namespace.py +1 -1
  232. pulumi_azure_native/eventgrid/v20241215preview/partner_registration.py +1 -1
  233. pulumi_azure_native/eventgrid/v20241215preview/partner_topic.py +1 -1
  234. pulumi_azure_native/eventgrid/v20241215preview/partner_topic_event_subscription.py +1 -1
  235. pulumi_azure_native/eventgrid/v20241215preview/permission_binding.py +1 -1
  236. pulumi_azure_native/eventgrid/v20241215preview/private_endpoint_connection.py +1 -1
  237. pulumi_azure_native/eventgrid/v20241215preview/system_topic.py +1 -1
  238. pulumi_azure_native/eventgrid/v20241215preview/system_topic_event_subscription.py +1 -1
  239. pulumi_azure_native/eventgrid/v20241215preview/topic.py +1 -1
  240. pulumi_azure_native/eventgrid/v20241215preview/topic_event_subscription.py +1 -1
  241. pulumi_azure_native/eventgrid/v20241215preview/topic_space.py +1 -1
  242. pulumi_azure_native/eventgrid/v20250215/__init__.py +78 -0
  243. pulumi_azure_native/eventgrid/v20250215/_enums.py +405 -0
  244. pulumi_azure_native/eventgrid/v20250215/_inputs.py +6881 -0
  245. pulumi_azure_native/eventgrid/v20250215/ca_certificate.py +278 -0
  246. pulumi_azure_native/eventgrid/v20250215/channel.py +370 -0
  247. pulumi_azure_native/eventgrid/v20250215/client.py +359 -0
  248. pulumi_azure_native/eventgrid/v20250215/client_group.py +262 -0
  249. pulumi_azure_native/eventgrid/v20250215/domain.py +664 -0
  250. pulumi_azure_native/eventgrid/v20250215/domain_event_subscription.py +493 -0
  251. pulumi_azure_native/eventgrid/v20250215/domain_topic.py +200 -0
  252. pulumi_azure_native/eventgrid/v20250215/domain_topic_event_subscription.py +514 -0
  253. pulumi_azure_native/eventgrid/v20250215/event_subscription.py +472 -0
  254. pulumi_azure_native/eventgrid/v20250215/get_ca_certificate.py +205 -0
  255. pulumi_azure_native/eventgrid/v20250215/get_channel.py +220 -0
  256. pulumi_azure_native/eventgrid/v20250215/get_channel_full_url.py +92 -0
  257. pulumi_azure_native/eventgrid/v20250215/get_client.py +221 -0
  258. pulumi_azure_native/eventgrid/v20250215/get_client_group.py +178 -0
  259. pulumi_azure_native/eventgrid/v20250215/get_domain.py +381 -0
  260. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription.py +293 -0
  261. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_delivery_attributes.py +93 -0
  262. pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_full_url.py +92 -0
  263. pulumi_azure_native/eventgrid/v20250215/get_domain_topic.py +149 -0
  264. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription.py +299 -0
  265. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_delivery_attributes.py +99 -0
  266. pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_full_url.py +98 -0
  267. pulumi_azure_native/eventgrid/v20250215/get_event_subscription.py +287 -0
  268. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_delivery_attributes.py +87 -0
  269. pulumi_azure_native/eventgrid/v20250215/get_event_subscription_full_url.py +86 -0
  270. pulumi_azure_native/eventgrid/v20250215/get_namespace.py +302 -0
  271. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic.py +192 -0
  272. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription.py +211 -0
  273. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_delivery_attributes.py +99 -0
  274. pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_full_url.py +98 -0
  275. pulumi_azure_native/eventgrid/v20250215/get_partner_configuration.py +179 -0
  276. pulumi_azure_native/eventgrid/v20250215/get_partner_namespace.py +286 -0
  277. pulumi_azure_native/eventgrid/v20250215/get_partner_registration.py +186 -0
  278. pulumi_azure_native/eventgrid/v20250215/get_partner_topic.py +285 -0
  279. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription.py +293 -0
  280. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_delivery_attributes.py +93 -0
  281. pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_full_url.py +92 -0
  282. pulumi_azure_native/eventgrid/v20250215/get_permission_binding.py +207 -0
  283. pulumi_azure_native/eventgrid/v20250215/get_private_endpoint_connection.py +180 -0
  284. pulumi_azure_native/eventgrid/v20250215/get_system_topic.py +227 -0
  285. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription.py +293 -0
  286. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_delivery_attributes.py +93 -0
  287. pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_full_url.py +92 -0
  288. pulumi_azure_native/eventgrid/v20250215/get_topic.py +341 -0
  289. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription.py +293 -0
  290. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_delivery_attributes.py +93 -0
  291. pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_full_url.py +92 -0
  292. pulumi_azure_native/eventgrid/v20250215/get_topic_space.py +181 -0
  293. pulumi_azure_native/eventgrid/v20250215/list_domain_shared_access_keys.py +100 -0
  294. pulumi_azure_native/eventgrid/v20250215/list_namespace_shared_access_keys.py +100 -0
  295. pulumi_azure_native/eventgrid/v20250215/list_namespace_topic_shared_access_keys.py +106 -0
  296. pulumi_azure_native/eventgrid/v20250215/list_partner_namespace_shared_access_keys.py +100 -0
  297. pulumi_azure_native/eventgrid/v20250215/list_topic_shared_access_keys.py +100 -0
  298. pulumi_azure_native/eventgrid/v20250215/namespace.py +520 -0
  299. pulumi_azure_native/eventgrid/v20250215/namespace_topic.py +296 -0
  300. pulumi_azure_native/eventgrid/v20250215/namespace_topic_event_subscription.py +339 -0
  301. pulumi_azure_native/eventgrid/v20250215/outputs.py +5875 -0
  302. pulumi_azure_native/eventgrid/v20250215/partner_configuration.py +267 -0
  303. pulumi_azure_native/eventgrid/v20250215/partner_namespace.py +457 -0
  304. pulumi_azure_native/eventgrid/v20250215/partner_registration.py +270 -0
  305. pulumi_azure_native/eventgrid/v20250215/partner_topic.py +479 -0
  306. pulumi_azure_native/eventgrid/v20250215/partner_topic_event_subscription.py +493 -0
  307. pulumi_azure_native/eventgrid/v20250215/permission_binding.py +325 -0
  308. pulumi_azure_native/eventgrid/v20250215/private_endpoint_connection.py +317 -0
  309. pulumi_azure_native/eventgrid/v20250215/system_topic.py +336 -0
  310. pulumi_azure_native/eventgrid/v20250215/system_topic_event_subscription.py +493 -0
  311. pulumi_azure_native/eventgrid/v20250215/topic.py +550 -0
  312. pulumi_azure_native/eventgrid/v20250215/topic_event_subscription.py +493 -0
  313. pulumi_azure_native/eventgrid/v20250215/topic_space.py +274 -0
  314. pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py +13 -78
  315. pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +10 -69
  316. pulumi_azure_native/netapp/__init__.py +1 -0
  317. pulumi_azure_native/netapp/get_account_key_vault_status.py +131 -0
  318. pulumi_azure_native/netapp/outputs.py +36 -0
  319. pulumi_azure_native/netapp/v20240901/__init__.py +1 -0
  320. pulumi_azure_native/netapp/v20240901/get_account_change_key_vault_information.py +129 -0
  321. pulumi_azure_native/netapp/v20240901/outputs.py +36 -0
  322. pulumi_azure_native/netapp/v20240901preview/__init__.py +1 -0
  323. pulumi_azure_native/netapp/v20240901preview/get_account_key_vault_status.py +129 -0
  324. pulumi_azure_native/netapp/v20240901preview/outputs.py +36 -0
  325. pulumi_azure_native/pulumi-plugin.json +1 -1
  326. pulumi_azure_native/sovereign/_enums.py +15 -15
  327. pulumi_azure_native/sovereign/_inputs.py +129 -129
  328. pulumi_azure_native/sovereign/get_landing_zone_account_operation.py +5 -5
  329. pulumi_azure_native/sovereign/get_landing_zone_configuration_operation.py +4 -4
  330. pulumi_azure_native/sovereign/get_landing_zone_registration_operation.py +7 -7
  331. pulumi_azure_native/sovereign/landing_zone_account_operation.py +5 -5
  332. pulumi_azure_native/sovereign/landing_zone_configuration_operation.py +3 -3
  333. pulumi_azure_native/sovereign/landing_zone_registration_operation.py +8 -8
  334. pulumi_azure_native/sovereign/outputs.py +100 -100
  335. pulumi_azure_native/sovereign/v20250227preview/_enums.py +15 -15
  336. pulumi_azure_native/sovereign/v20250227preview/_inputs.py +129 -129
  337. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_account_operation.py +5 -5
  338. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_configuration_operation.py +4 -4
  339. pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_registration_operation.py +7 -7
  340. pulumi_azure_native/sovereign/v20250227preview/landing_zone_account_operation.py +5 -5
  341. pulumi_azure_native/sovereign/v20250227preview/landing_zone_configuration_operation.py +3 -3
  342. pulumi_azure_native/sovereign/v20250227preview/landing_zone_registration_operation.py +8 -8
  343. pulumi_azure_native/sovereign/v20250227preview/outputs.py +100 -100
  344. pulumi_azure_native/videoindexer/__init__.py +3 -0
  345. pulumi_azure_native/videoindexer/account.py +3 -3
  346. pulumi_azure_native/videoindexer/get_account.py +2 -2
  347. pulumi_azure_native/videoindexer/v20220801/account.py +1 -1
  348. pulumi_azure_native/videoindexer/v20240101/account.py +1 -1
  349. pulumi_azure_native/videoindexer/v20240401preview/account.py +1 -1
  350. pulumi_azure_native/videoindexer/v20240601preview/account.py +1 -1
  351. pulumi_azure_native/videoindexer/v20240923preview/account.py +1 -1
  352. pulumi_azure_native/videoindexer/v20250101/__init__.py +12 -0
  353. pulumi_azure_native/videoindexer/v20250101/_enums.py +19 -0
  354. pulumi_azure_native/videoindexer/v20250101/_inputs.py +195 -0
  355. pulumi_azure_native/videoindexer/v20250101/account.py +398 -0
  356. pulumi_azure_native/videoindexer/v20250101/get_account.py +283 -0
  357. pulumi_azure_native/videoindexer/v20250101/outputs.py +373 -0
  358. pulumi_azure_native/web/container_app.py +3 -3
  359. pulumi_azure_native/web/get_container_app.py +2 -2
  360. pulumi_azure_native/web/list_container_app_secrets.py +2 -2
  361. pulumi_azure_native/web/v20230101/container_app.py +1 -1
  362. pulumi_azure_native/web/v20231201/container_app.py +1 -1
  363. pulumi_azure_native/web/v20240401/__init__.py +0 -3
  364. pulumi_azure_native/web/v20240401/_enums.py +0 -20
  365. pulumi_azure_native/web/v20240401/_inputs.py +43 -1574
  366. pulumi_azure_native/web/v20240401/outputs.py +19 -1212
  367. pulumi_azure_native/weightsandbiases/__init__.py +20 -0
  368. pulumi_azure_native/weightsandbiases/_enums.py +84 -0
  369. pulumi_azure_native/weightsandbiases/_inputs.py +658 -0
  370. pulumi_azure_native/weightsandbiases/get_instance.py +187 -0
  371. pulumi_azure_native/weightsandbiases/instance.py +289 -0
  372. pulumi_azure_native/weightsandbiases/outputs.py +747 -0
  373. pulumi_azure_native/weightsandbiases/v20240918preview/__init__.py +12 -0
  374. pulumi_azure_native/weightsandbiases/v20240918preview/_enums.py +84 -0
  375. pulumi_azure_native/weightsandbiases/v20240918preview/_inputs.py +658 -0
  376. pulumi_azure_native/weightsandbiases/v20240918preview/get_instance.py +185 -0
  377. pulumi_azure_native/weightsandbiases/v20240918preview/instance.py +287 -0
  378. pulumi_azure_native/weightsandbiases/v20240918preview/outputs.py +747 -0
  379. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/METADATA +1 -1
  380. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/RECORD +382 -273
  381. pulumi_azure_native/web/v20240401/container_app.py +0 -364
  382. pulumi_azure_native/web/v20240401/get_container_app.py +0 -241
  383. pulumi_azure_native/web/v20240401/list_container_app_secrets.py +0 -81
  384. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/WHEEL +0 -0
  385. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0a1739514756.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,747 @@
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
+
19
+ __all__ = [
20
+ 'InstancePropertiesResponse',
21
+ 'LiftrBaseMarketplaceDetailsResponse',
22
+ 'LiftrBaseOfferDetailsResponse',
23
+ 'LiftrBaseSingleSignOnPropertiesV2Response',
24
+ 'LiftrBaseUserDetailsResponse',
25
+ 'ManagedServiceIdentityResponse',
26
+ 'PartnerPropertiesResponse',
27
+ 'SystemDataResponse',
28
+ 'UserAssignedIdentityResponse',
29
+ ]
30
+
31
+ @pulumi.output_type
32
+ class InstancePropertiesResponse(dict):
33
+ """
34
+ Properties specific to Instance
35
+ """
36
+ @staticmethod
37
+ def __key_warning(key: str):
38
+ suggest = None
39
+ if key == "provisioningState":
40
+ suggest = "provisioning_state"
41
+ elif key == "partnerProperties":
42
+ suggest = "partner_properties"
43
+ elif key == "singleSignOnProperties":
44
+ suggest = "single_sign_on_properties"
45
+
46
+ if suggest:
47
+ pulumi.log.warn(f"Key '{key}' not found in InstancePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
48
+
49
+ def __getitem__(self, key: str) -> Any:
50
+ InstancePropertiesResponse.__key_warning(key)
51
+ return super().__getitem__(key)
52
+
53
+ def get(self, key: str, default = None) -> Any:
54
+ InstancePropertiesResponse.__key_warning(key)
55
+ return super().get(key, default)
56
+
57
+ def __init__(__self__, *,
58
+ marketplace: 'outputs.LiftrBaseMarketplaceDetailsResponse',
59
+ provisioning_state: str,
60
+ user: 'outputs.LiftrBaseUserDetailsResponse',
61
+ partner_properties: Optional['outputs.PartnerPropertiesResponse'] = None,
62
+ single_sign_on_properties: Optional['outputs.LiftrBaseSingleSignOnPropertiesV2Response'] = None):
63
+ """
64
+ Properties specific to Instance
65
+ :param 'LiftrBaseMarketplaceDetailsResponse' marketplace: Marketplace details of the resource.
66
+ :param str provisioning_state: Provisioning state of the resource.
67
+ :param 'LiftrBaseUserDetailsResponse' user: Details of the user.
68
+ :param 'PartnerPropertiesResponse' partner_properties: partner properties
69
+ :param 'LiftrBaseSingleSignOnPropertiesV2Response' single_sign_on_properties: Single sign-on properties
70
+ """
71
+ pulumi.set(__self__, "marketplace", marketplace)
72
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
73
+ pulumi.set(__self__, "user", user)
74
+ if partner_properties is not None:
75
+ pulumi.set(__self__, "partner_properties", partner_properties)
76
+ if single_sign_on_properties is not None:
77
+ pulumi.set(__self__, "single_sign_on_properties", single_sign_on_properties)
78
+
79
+ @property
80
+ @pulumi.getter
81
+ def marketplace(self) -> 'outputs.LiftrBaseMarketplaceDetailsResponse':
82
+ """
83
+ Marketplace details of the resource.
84
+ """
85
+ return pulumi.get(self, "marketplace")
86
+
87
+ @property
88
+ @pulumi.getter(name="provisioningState")
89
+ def provisioning_state(self) -> str:
90
+ """
91
+ Provisioning state of the resource.
92
+ """
93
+ return pulumi.get(self, "provisioning_state")
94
+
95
+ @property
96
+ @pulumi.getter
97
+ def user(self) -> 'outputs.LiftrBaseUserDetailsResponse':
98
+ """
99
+ Details of the user.
100
+ """
101
+ return pulumi.get(self, "user")
102
+
103
+ @property
104
+ @pulumi.getter(name="partnerProperties")
105
+ def partner_properties(self) -> Optional['outputs.PartnerPropertiesResponse']:
106
+ """
107
+ partner properties
108
+ """
109
+ return pulumi.get(self, "partner_properties")
110
+
111
+ @property
112
+ @pulumi.getter(name="singleSignOnProperties")
113
+ def single_sign_on_properties(self) -> Optional['outputs.LiftrBaseSingleSignOnPropertiesV2Response']:
114
+ """
115
+ Single sign-on properties
116
+ """
117
+ return pulumi.get(self, "single_sign_on_properties")
118
+
119
+
120
+ @pulumi.output_type
121
+ class LiftrBaseMarketplaceDetailsResponse(dict):
122
+ """
123
+ Marketplace details for an organization
124
+ """
125
+ @staticmethod
126
+ def __key_warning(key: str):
127
+ suggest = None
128
+ if key == "offerDetails":
129
+ suggest = "offer_details"
130
+ elif key == "subscriptionStatus":
131
+ suggest = "subscription_status"
132
+ elif key == "subscriptionId":
133
+ suggest = "subscription_id"
134
+
135
+ if suggest:
136
+ pulumi.log.warn(f"Key '{key}' not found in LiftrBaseMarketplaceDetailsResponse. Access the value via the '{suggest}' property getter instead.")
137
+
138
+ def __getitem__(self, key: str) -> Any:
139
+ LiftrBaseMarketplaceDetailsResponse.__key_warning(key)
140
+ return super().__getitem__(key)
141
+
142
+ def get(self, key: str, default = None) -> Any:
143
+ LiftrBaseMarketplaceDetailsResponse.__key_warning(key)
144
+ return super().get(key, default)
145
+
146
+ def __init__(__self__, *,
147
+ offer_details: 'outputs.LiftrBaseOfferDetailsResponse',
148
+ subscription_status: str,
149
+ subscription_id: Optional[str] = None):
150
+ """
151
+ Marketplace details for an organization
152
+ :param 'LiftrBaseOfferDetailsResponse' offer_details: Offer details for the marketplace that is selected by the user
153
+ :param str subscription_status: Marketplace subscription status
154
+ :param str subscription_id: Azure subscription id for the the marketplace offer is purchased from
155
+ """
156
+ pulumi.set(__self__, "offer_details", offer_details)
157
+ pulumi.set(__self__, "subscription_status", subscription_status)
158
+ if subscription_id is not None:
159
+ pulumi.set(__self__, "subscription_id", subscription_id)
160
+
161
+ @property
162
+ @pulumi.getter(name="offerDetails")
163
+ def offer_details(self) -> 'outputs.LiftrBaseOfferDetailsResponse':
164
+ """
165
+ Offer details for the marketplace that is selected by the user
166
+ """
167
+ return pulumi.get(self, "offer_details")
168
+
169
+ @property
170
+ @pulumi.getter(name="subscriptionStatus")
171
+ def subscription_status(self) -> str:
172
+ """
173
+ Marketplace subscription status
174
+ """
175
+ return pulumi.get(self, "subscription_status")
176
+
177
+ @property
178
+ @pulumi.getter(name="subscriptionId")
179
+ def subscription_id(self) -> Optional[str]:
180
+ """
181
+ Azure subscription id for the the marketplace offer is purchased from
182
+ """
183
+ return pulumi.get(self, "subscription_id")
184
+
185
+
186
+ @pulumi.output_type
187
+ class LiftrBaseOfferDetailsResponse(dict):
188
+ """
189
+ Offer details for the marketplace that is selected by the user
190
+ """
191
+ @staticmethod
192
+ def __key_warning(key: str):
193
+ suggest = None
194
+ if key == "offerId":
195
+ suggest = "offer_id"
196
+ elif key == "planId":
197
+ suggest = "plan_id"
198
+ elif key == "publisherId":
199
+ suggest = "publisher_id"
200
+ elif key == "planName":
201
+ suggest = "plan_name"
202
+ elif key == "termId":
203
+ suggest = "term_id"
204
+ elif key == "termUnit":
205
+ suggest = "term_unit"
206
+
207
+ if suggest:
208
+ pulumi.log.warn(f"Key '{key}' not found in LiftrBaseOfferDetailsResponse. Access the value via the '{suggest}' property getter instead.")
209
+
210
+ def __getitem__(self, key: str) -> Any:
211
+ LiftrBaseOfferDetailsResponse.__key_warning(key)
212
+ return super().__getitem__(key)
213
+
214
+ def get(self, key: str, default = None) -> Any:
215
+ LiftrBaseOfferDetailsResponse.__key_warning(key)
216
+ return super().get(key, default)
217
+
218
+ def __init__(__self__, *,
219
+ offer_id: str,
220
+ plan_id: str,
221
+ publisher_id: str,
222
+ plan_name: Optional[str] = None,
223
+ term_id: Optional[str] = None,
224
+ term_unit: Optional[str] = None):
225
+ """
226
+ Offer details for the marketplace that is selected by the user
227
+ :param str offer_id: Offer Id for the marketplace offer
228
+ :param str plan_id: Plan Id for the marketplace offer
229
+ :param str publisher_id: Publisher Id for the marketplace offer
230
+ :param str plan_name: Plan Name for the marketplace offer
231
+ :param str term_id: Plan Display Name for the marketplace offer
232
+ :param str term_unit: Plan Display Name for the marketplace offer
233
+ """
234
+ pulumi.set(__self__, "offer_id", offer_id)
235
+ pulumi.set(__self__, "plan_id", plan_id)
236
+ pulumi.set(__self__, "publisher_id", publisher_id)
237
+ if plan_name is not None:
238
+ pulumi.set(__self__, "plan_name", plan_name)
239
+ if term_id is not None:
240
+ pulumi.set(__self__, "term_id", term_id)
241
+ if term_unit is not None:
242
+ pulumi.set(__self__, "term_unit", term_unit)
243
+
244
+ @property
245
+ @pulumi.getter(name="offerId")
246
+ def offer_id(self) -> str:
247
+ """
248
+ Offer Id for the marketplace offer
249
+ """
250
+ return pulumi.get(self, "offer_id")
251
+
252
+ @property
253
+ @pulumi.getter(name="planId")
254
+ def plan_id(self) -> str:
255
+ """
256
+ Plan Id for the marketplace offer
257
+ """
258
+ return pulumi.get(self, "plan_id")
259
+
260
+ @property
261
+ @pulumi.getter(name="publisherId")
262
+ def publisher_id(self) -> str:
263
+ """
264
+ Publisher Id for the marketplace offer
265
+ """
266
+ return pulumi.get(self, "publisher_id")
267
+
268
+ @property
269
+ @pulumi.getter(name="planName")
270
+ def plan_name(self) -> Optional[str]:
271
+ """
272
+ Plan Name for the marketplace offer
273
+ """
274
+ return pulumi.get(self, "plan_name")
275
+
276
+ @property
277
+ @pulumi.getter(name="termId")
278
+ def term_id(self) -> Optional[str]:
279
+ """
280
+ Plan Display Name for the marketplace offer
281
+ """
282
+ return pulumi.get(self, "term_id")
283
+
284
+ @property
285
+ @pulumi.getter(name="termUnit")
286
+ def term_unit(self) -> Optional[str]:
287
+ """
288
+ Plan Display Name for the marketplace offer
289
+ """
290
+ return pulumi.get(self, "term_unit")
291
+
292
+
293
+ @pulumi.output_type
294
+ class LiftrBaseSingleSignOnPropertiesV2Response(dict):
295
+ """
296
+ Properties specific to Single Sign On Resource
297
+ """
298
+ @staticmethod
299
+ def __key_warning(key: str):
300
+ suggest = None
301
+ if key == "aadDomains":
302
+ suggest = "aad_domains"
303
+ elif key == "enterpriseAppId":
304
+ suggest = "enterprise_app_id"
305
+
306
+ if suggest:
307
+ pulumi.log.warn(f"Key '{key}' not found in LiftrBaseSingleSignOnPropertiesV2Response. Access the value via the '{suggest}' property getter instead.")
308
+
309
+ def __getitem__(self, key: str) -> Any:
310
+ LiftrBaseSingleSignOnPropertiesV2Response.__key_warning(key)
311
+ return super().__getitem__(key)
312
+
313
+ def get(self, key: str, default = None) -> Any:
314
+ LiftrBaseSingleSignOnPropertiesV2Response.__key_warning(key)
315
+ return super().get(key, default)
316
+
317
+ def __init__(__self__, *,
318
+ type: str,
319
+ aad_domains: Optional[Sequence[str]] = None,
320
+ enterprise_app_id: Optional[str] = None,
321
+ state: Optional[str] = None,
322
+ url: Optional[str] = None):
323
+ """
324
+ Properties specific to Single Sign On Resource
325
+ :param str type: Type of Single Sign-On mechanism being used
326
+ :param Sequence[str] aad_domains: List of AAD domains fetched from Microsoft Graph for user.
327
+ :param str enterprise_app_id: AAD enterprise application Id used to setup SSO
328
+ :param str state: State of the Single Sign On for the resource
329
+ :param str url: URL for SSO to be used by the partner to redirect the user to their system
330
+ """
331
+ pulumi.set(__self__, "type", type)
332
+ if aad_domains is not None:
333
+ pulumi.set(__self__, "aad_domains", aad_domains)
334
+ if enterprise_app_id is not None:
335
+ pulumi.set(__self__, "enterprise_app_id", enterprise_app_id)
336
+ if state is not None:
337
+ pulumi.set(__self__, "state", state)
338
+ if url is not None:
339
+ pulumi.set(__self__, "url", url)
340
+
341
+ @property
342
+ @pulumi.getter
343
+ def type(self) -> str:
344
+ """
345
+ Type of Single Sign-On mechanism being used
346
+ """
347
+ return pulumi.get(self, "type")
348
+
349
+ @property
350
+ @pulumi.getter(name="aadDomains")
351
+ def aad_domains(self) -> Optional[Sequence[str]]:
352
+ """
353
+ List of AAD domains fetched from Microsoft Graph for user.
354
+ """
355
+ return pulumi.get(self, "aad_domains")
356
+
357
+ @property
358
+ @pulumi.getter(name="enterpriseAppId")
359
+ def enterprise_app_id(self) -> Optional[str]:
360
+ """
361
+ AAD enterprise application Id used to setup SSO
362
+ """
363
+ return pulumi.get(self, "enterprise_app_id")
364
+
365
+ @property
366
+ @pulumi.getter
367
+ def state(self) -> Optional[str]:
368
+ """
369
+ State of the Single Sign On for the resource
370
+ """
371
+ return pulumi.get(self, "state")
372
+
373
+ @property
374
+ @pulumi.getter
375
+ def url(self) -> Optional[str]:
376
+ """
377
+ URL for SSO to be used by the partner to redirect the user to their system
378
+ """
379
+ return pulumi.get(self, "url")
380
+
381
+
382
+ @pulumi.output_type
383
+ class LiftrBaseUserDetailsResponse(dict):
384
+ """
385
+ User details for an organization
386
+ """
387
+ @staticmethod
388
+ def __key_warning(key: str):
389
+ suggest = None
390
+ if key == "emailAddress":
391
+ suggest = "email_address"
392
+ elif key == "firstName":
393
+ suggest = "first_name"
394
+ elif key == "lastName":
395
+ suggest = "last_name"
396
+ elif key == "phoneNumber":
397
+ suggest = "phone_number"
398
+
399
+ if suggest:
400
+ pulumi.log.warn(f"Key '{key}' not found in LiftrBaseUserDetailsResponse. Access the value via the '{suggest}' property getter instead.")
401
+
402
+ def __getitem__(self, key: str) -> Any:
403
+ LiftrBaseUserDetailsResponse.__key_warning(key)
404
+ return super().__getitem__(key)
405
+
406
+ def get(self, key: str, default = None) -> Any:
407
+ LiftrBaseUserDetailsResponse.__key_warning(key)
408
+ return super().get(key, default)
409
+
410
+ def __init__(__self__, *,
411
+ email_address: Optional[str] = None,
412
+ first_name: Optional[str] = None,
413
+ last_name: Optional[str] = None,
414
+ phone_number: Optional[str] = None,
415
+ upn: Optional[str] = None):
416
+ """
417
+ User details for an organization
418
+ :param str email_address: Email address of the user
419
+ :param str first_name: First name of the user
420
+ :param str last_name: Last name of the user
421
+ :param str phone_number: User's phone number
422
+ :param str upn: User's principal name
423
+ """
424
+ if email_address is not None:
425
+ pulumi.set(__self__, "email_address", email_address)
426
+ if first_name is not None:
427
+ pulumi.set(__self__, "first_name", first_name)
428
+ if last_name is not None:
429
+ pulumi.set(__self__, "last_name", last_name)
430
+ if phone_number is not None:
431
+ pulumi.set(__self__, "phone_number", phone_number)
432
+ if upn is not None:
433
+ pulumi.set(__self__, "upn", upn)
434
+
435
+ @property
436
+ @pulumi.getter(name="emailAddress")
437
+ def email_address(self) -> Optional[str]:
438
+ """
439
+ Email address of the user
440
+ """
441
+ return pulumi.get(self, "email_address")
442
+
443
+ @property
444
+ @pulumi.getter(name="firstName")
445
+ def first_name(self) -> Optional[str]:
446
+ """
447
+ First name of the user
448
+ """
449
+ return pulumi.get(self, "first_name")
450
+
451
+ @property
452
+ @pulumi.getter(name="lastName")
453
+ def last_name(self) -> Optional[str]:
454
+ """
455
+ Last name of the user
456
+ """
457
+ return pulumi.get(self, "last_name")
458
+
459
+ @property
460
+ @pulumi.getter(name="phoneNumber")
461
+ def phone_number(self) -> Optional[str]:
462
+ """
463
+ User's phone number
464
+ """
465
+ return pulumi.get(self, "phone_number")
466
+
467
+ @property
468
+ @pulumi.getter
469
+ def upn(self) -> Optional[str]:
470
+ """
471
+ User's principal name
472
+ """
473
+ return pulumi.get(self, "upn")
474
+
475
+
476
+ @pulumi.output_type
477
+ class ManagedServiceIdentityResponse(dict):
478
+ """
479
+ Managed service identity (system assigned and/or user assigned identities)
480
+ """
481
+ @staticmethod
482
+ def __key_warning(key: str):
483
+ suggest = None
484
+ if key == "principalId":
485
+ suggest = "principal_id"
486
+ elif key == "tenantId":
487
+ suggest = "tenant_id"
488
+ elif key == "userAssignedIdentities":
489
+ suggest = "user_assigned_identities"
490
+
491
+ if suggest:
492
+ pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
493
+
494
+ def __getitem__(self, key: str) -> Any:
495
+ ManagedServiceIdentityResponse.__key_warning(key)
496
+ return super().__getitem__(key)
497
+
498
+ def get(self, key: str, default = None) -> Any:
499
+ ManagedServiceIdentityResponse.__key_warning(key)
500
+ return super().get(key, default)
501
+
502
+ def __init__(__self__, *,
503
+ principal_id: str,
504
+ tenant_id: str,
505
+ type: str,
506
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
507
+ """
508
+ Managed service identity (system assigned and/or user assigned identities)
509
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
510
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
511
+ :param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
512
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
513
+ """
514
+ pulumi.set(__self__, "principal_id", principal_id)
515
+ pulumi.set(__self__, "tenant_id", tenant_id)
516
+ pulumi.set(__self__, "type", type)
517
+ if user_assigned_identities is not None:
518
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
519
+
520
+ @property
521
+ @pulumi.getter(name="principalId")
522
+ def principal_id(self) -> str:
523
+ """
524
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
525
+ """
526
+ return pulumi.get(self, "principal_id")
527
+
528
+ @property
529
+ @pulumi.getter(name="tenantId")
530
+ def tenant_id(self) -> str:
531
+ """
532
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
533
+ """
534
+ return pulumi.get(self, "tenant_id")
535
+
536
+ @property
537
+ @pulumi.getter
538
+ def type(self) -> str:
539
+ """
540
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
541
+ """
542
+ return pulumi.get(self, "type")
543
+
544
+ @property
545
+ @pulumi.getter(name="userAssignedIdentities")
546
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
547
+ """
548
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
549
+ """
550
+ return pulumi.get(self, "user_assigned_identities")
551
+
552
+
553
+ @pulumi.output_type
554
+ class PartnerPropertiesResponse(dict):
555
+ """
556
+ Partner's specific Properties
557
+ """
558
+ def __init__(__self__, *,
559
+ region: str,
560
+ subdomain: str):
561
+ """
562
+ Partner's specific Properties
563
+ :param str region: The region of the instance
564
+ :param str subdomain: The subdomain of the instance
565
+ """
566
+ pulumi.set(__self__, "region", region)
567
+ pulumi.set(__self__, "subdomain", subdomain)
568
+
569
+ @property
570
+ @pulumi.getter
571
+ def region(self) -> str:
572
+ """
573
+ The region of the instance
574
+ """
575
+ return pulumi.get(self, "region")
576
+
577
+ @property
578
+ @pulumi.getter
579
+ def subdomain(self) -> str:
580
+ """
581
+ The subdomain of the instance
582
+ """
583
+ return pulumi.get(self, "subdomain")
584
+
585
+
586
+ @pulumi.output_type
587
+ class SystemDataResponse(dict):
588
+ """
589
+ Metadata pertaining to creation and last modification of the resource.
590
+ """
591
+ @staticmethod
592
+ def __key_warning(key: str):
593
+ suggest = None
594
+ if key == "createdAt":
595
+ suggest = "created_at"
596
+ elif key == "createdBy":
597
+ suggest = "created_by"
598
+ elif key == "createdByType":
599
+ suggest = "created_by_type"
600
+ elif key == "lastModifiedAt":
601
+ suggest = "last_modified_at"
602
+ elif key == "lastModifiedBy":
603
+ suggest = "last_modified_by"
604
+ elif key == "lastModifiedByType":
605
+ suggest = "last_modified_by_type"
606
+
607
+ if suggest:
608
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
609
+
610
+ def __getitem__(self, key: str) -> Any:
611
+ SystemDataResponse.__key_warning(key)
612
+ return super().__getitem__(key)
613
+
614
+ def get(self, key: str, default = None) -> Any:
615
+ SystemDataResponse.__key_warning(key)
616
+ return super().get(key, default)
617
+
618
+ def __init__(__self__, *,
619
+ created_at: Optional[str] = None,
620
+ created_by: Optional[str] = None,
621
+ created_by_type: Optional[str] = None,
622
+ last_modified_at: Optional[str] = None,
623
+ last_modified_by: Optional[str] = None,
624
+ last_modified_by_type: Optional[str] = None):
625
+ """
626
+ Metadata pertaining to creation and last modification of the resource.
627
+ :param str created_at: The timestamp of resource creation (UTC).
628
+ :param str created_by: The identity that created the resource.
629
+ :param str created_by_type: The type of identity that created the resource.
630
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
631
+ :param str last_modified_by: The identity that last modified the resource.
632
+ :param str last_modified_by_type: The type of identity that last modified the resource.
633
+ """
634
+ if created_at is not None:
635
+ pulumi.set(__self__, "created_at", created_at)
636
+ if created_by is not None:
637
+ pulumi.set(__self__, "created_by", created_by)
638
+ if created_by_type is not None:
639
+ pulumi.set(__self__, "created_by_type", created_by_type)
640
+ if last_modified_at is not None:
641
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
642
+ if last_modified_by is not None:
643
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
644
+ if last_modified_by_type is not None:
645
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
646
+
647
+ @property
648
+ @pulumi.getter(name="createdAt")
649
+ def created_at(self) -> Optional[str]:
650
+ """
651
+ The timestamp of resource creation (UTC).
652
+ """
653
+ return pulumi.get(self, "created_at")
654
+
655
+ @property
656
+ @pulumi.getter(name="createdBy")
657
+ def created_by(self) -> Optional[str]:
658
+ """
659
+ The identity that created the resource.
660
+ """
661
+ return pulumi.get(self, "created_by")
662
+
663
+ @property
664
+ @pulumi.getter(name="createdByType")
665
+ def created_by_type(self) -> Optional[str]:
666
+ """
667
+ The type of identity that created the resource.
668
+ """
669
+ return pulumi.get(self, "created_by_type")
670
+
671
+ @property
672
+ @pulumi.getter(name="lastModifiedAt")
673
+ def last_modified_at(self) -> Optional[str]:
674
+ """
675
+ The timestamp of resource last modification (UTC)
676
+ """
677
+ return pulumi.get(self, "last_modified_at")
678
+
679
+ @property
680
+ @pulumi.getter(name="lastModifiedBy")
681
+ def last_modified_by(self) -> Optional[str]:
682
+ """
683
+ The identity that last modified the resource.
684
+ """
685
+ return pulumi.get(self, "last_modified_by")
686
+
687
+ @property
688
+ @pulumi.getter(name="lastModifiedByType")
689
+ def last_modified_by_type(self) -> Optional[str]:
690
+ """
691
+ The type of identity that last modified the resource.
692
+ """
693
+ return pulumi.get(self, "last_modified_by_type")
694
+
695
+
696
+ @pulumi.output_type
697
+ class UserAssignedIdentityResponse(dict):
698
+ """
699
+ User assigned identity properties
700
+ """
701
+ @staticmethod
702
+ def __key_warning(key: str):
703
+ suggest = None
704
+ if key == "clientId":
705
+ suggest = "client_id"
706
+ elif key == "principalId":
707
+ suggest = "principal_id"
708
+
709
+ if suggest:
710
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
711
+
712
+ def __getitem__(self, key: str) -> Any:
713
+ UserAssignedIdentityResponse.__key_warning(key)
714
+ return super().__getitem__(key)
715
+
716
+ def get(self, key: str, default = None) -> Any:
717
+ UserAssignedIdentityResponse.__key_warning(key)
718
+ return super().get(key, default)
719
+
720
+ def __init__(__self__, *,
721
+ client_id: str,
722
+ principal_id: str):
723
+ """
724
+ User assigned identity properties
725
+ :param str client_id: The client ID of the assigned identity.
726
+ :param str principal_id: The principal ID of the assigned identity.
727
+ """
728
+ pulumi.set(__self__, "client_id", client_id)
729
+ pulumi.set(__self__, "principal_id", principal_id)
730
+
731
+ @property
732
+ @pulumi.getter(name="clientId")
733
+ def client_id(self) -> str:
734
+ """
735
+ The client ID of the assigned identity.
736
+ """
737
+ return pulumi.get(self, "client_id")
738
+
739
+ @property
740
+ @pulumi.getter(name="principalId")
741
+ def principal_id(self) -> str:
742
+ """
743
+ The principal ID of the assigned identity.
744
+ """
745
+ return pulumi.get(self, "principal_id")
746
+
747
+