pulumi-azure-native 2.87.0a1739200739__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 (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.0.dist-info}/METADATA +1 -1
  380. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0.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.0.dist-info}/WHEEL +0 -0
  385. {pulumi_azure_native-2.87.0a1739200739.dist-info → pulumi_azure_native-2.88.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,398 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+ from ._inputs import *
19
+
20
+ __all__ = ['AccountArgs', 'Account']
21
+
22
+ @pulumi.input_type
23
+ class AccountArgs:
24
+ def __init__(__self__, *,
25
+ resource_group_name: pulumi.Input[str],
26
+ account_id: Optional[pulumi.Input[str]] = None,
27
+ account_name: Optional[pulumi.Input[str]] = None,
28
+ identity: Optional[pulumi.Input['ManagedServiceIdentityArgs']] = None,
29
+ location: Optional[pulumi.Input[str]] = None,
30
+ open_ai_services: Optional[pulumi.Input['OpenAiServicesForPutRequestArgs']] = None,
31
+ storage_services: Optional[pulumi.Input['StorageServicesForPutRequestArgs']] = None,
32
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
33
+ """
34
+ The set of arguments for constructing a Account resource.
35
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
36
+ :param pulumi.Input[str] account_id: The account's data-plane ID. This can be set only when connecting an existing classic account
37
+ :param pulumi.Input[str] account_name: The name of the Azure Video Indexer account.
38
+ :param pulumi.Input['ManagedServiceIdentityArgs'] identity: Managed service identity (system assigned and/or user assigned identities)
39
+ :param pulumi.Input[str] location: The geo-location where the resource lives
40
+ :param pulumi.Input['OpenAiServicesForPutRequestArgs'] open_ai_services: The openAi services details
41
+ :param pulumi.Input['StorageServicesForPutRequestArgs'] storage_services: The storage services details
42
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
43
+ """
44
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
45
+ if account_id is None:
46
+ account_id = '00000000-0000-0000-0000-000000000000'
47
+ if account_id is not None:
48
+ pulumi.set(__self__, "account_id", account_id)
49
+ if account_name is not None:
50
+ pulumi.set(__self__, "account_name", account_name)
51
+ if identity is not None:
52
+ pulumi.set(__self__, "identity", identity)
53
+ if location is not None:
54
+ pulumi.set(__self__, "location", location)
55
+ if open_ai_services is not None:
56
+ pulumi.set(__self__, "open_ai_services", open_ai_services)
57
+ if storage_services is not None:
58
+ pulumi.set(__self__, "storage_services", storage_services)
59
+ if tags is not None:
60
+ pulumi.set(__self__, "tags", tags)
61
+
62
+ @property
63
+ @pulumi.getter(name="resourceGroupName")
64
+ def resource_group_name(self) -> pulumi.Input[str]:
65
+ """
66
+ The name of the resource group. The name is case insensitive.
67
+ """
68
+ return pulumi.get(self, "resource_group_name")
69
+
70
+ @resource_group_name.setter
71
+ def resource_group_name(self, value: pulumi.Input[str]):
72
+ pulumi.set(self, "resource_group_name", value)
73
+
74
+ @property
75
+ @pulumi.getter(name="accountId")
76
+ def account_id(self) -> Optional[pulumi.Input[str]]:
77
+ """
78
+ The account's data-plane ID. This can be set only when connecting an existing classic account
79
+ """
80
+ return pulumi.get(self, "account_id")
81
+
82
+ @account_id.setter
83
+ def account_id(self, value: Optional[pulumi.Input[str]]):
84
+ pulumi.set(self, "account_id", value)
85
+
86
+ @property
87
+ @pulumi.getter(name="accountName")
88
+ def account_name(self) -> Optional[pulumi.Input[str]]:
89
+ """
90
+ The name of the Azure Video Indexer account.
91
+ """
92
+ return pulumi.get(self, "account_name")
93
+
94
+ @account_name.setter
95
+ def account_name(self, value: Optional[pulumi.Input[str]]):
96
+ pulumi.set(self, "account_name", value)
97
+
98
+ @property
99
+ @pulumi.getter
100
+ def identity(self) -> Optional[pulumi.Input['ManagedServiceIdentityArgs']]:
101
+ """
102
+ Managed service identity (system assigned and/or user assigned identities)
103
+ """
104
+ return pulumi.get(self, "identity")
105
+
106
+ @identity.setter
107
+ def identity(self, value: Optional[pulumi.Input['ManagedServiceIdentityArgs']]):
108
+ pulumi.set(self, "identity", value)
109
+
110
+ @property
111
+ @pulumi.getter
112
+ def location(self) -> Optional[pulumi.Input[str]]:
113
+ """
114
+ The geo-location where the resource lives
115
+ """
116
+ return pulumi.get(self, "location")
117
+
118
+ @location.setter
119
+ def location(self, value: Optional[pulumi.Input[str]]):
120
+ pulumi.set(self, "location", value)
121
+
122
+ @property
123
+ @pulumi.getter(name="openAiServices")
124
+ def open_ai_services(self) -> Optional[pulumi.Input['OpenAiServicesForPutRequestArgs']]:
125
+ """
126
+ The openAi services details
127
+ """
128
+ return pulumi.get(self, "open_ai_services")
129
+
130
+ @open_ai_services.setter
131
+ def open_ai_services(self, value: Optional[pulumi.Input['OpenAiServicesForPutRequestArgs']]):
132
+ pulumi.set(self, "open_ai_services", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="storageServices")
136
+ def storage_services(self) -> Optional[pulumi.Input['StorageServicesForPutRequestArgs']]:
137
+ """
138
+ The storage services details
139
+ """
140
+ return pulumi.get(self, "storage_services")
141
+
142
+ @storage_services.setter
143
+ def storage_services(self, value: Optional[pulumi.Input['StorageServicesForPutRequestArgs']]):
144
+ pulumi.set(self, "storage_services", value)
145
+
146
+ @property
147
+ @pulumi.getter
148
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
149
+ """
150
+ Resource tags.
151
+ """
152
+ return pulumi.get(self, "tags")
153
+
154
+ @tags.setter
155
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
156
+ pulumi.set(self, "tags", value)
157
+
158
+
159
+ class Account(pulumi.CustomResource):
160
+ @overload
161
+ def __init__(__self__,
162
+ resource_name: str,
163
+ opts: Optional[pulumi.ResourceOptions] = None,
164
+ account_id: Optional[pulumi.Input[str]] = None,
165
+ account_name: Optional[pulumi.Input[str]] = None,
166
+ identity: Optional[pulumi.Input[Union['ManagedServiceIdentityArgs', 'ManagedServiceIdentityArgsDict']]] = None,
167
+ location: Optional[pulumi.Input[str]] = None,
168
+ open_ai_services: Optional[pulumi.Input[Union['OpenAiServicesForPutRequestArgs', 'OpenAiServicesForPutRequestArgsDict']]] = None,
169
+ resource_group_name: Optional[pulumi.Input[str]] = None,
170
+ storage_services: Optional[pulumi.Input[Union['StorageServicesForPutRequestArgs', 'StorageServicesForPutRequestArgsDict']]] = None,
171
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
172
+ __props__=None):
173
+ """
174
+ An Azure Video Indexer account.
175
+
176
+ :param str resource_name: The name of the resource.
177
+ :param pulumi.ResourceOptions opts: Options for the resource.
178
+ :param pulumi.Input[str] account_id: The account's data-plane ID. This can be set only when connecting an existing classic account
179
+ :param pulumi.Input[str] account_name: The name of the Azure Video Indexer account.
180
+ :param pulumi.Input[Union['ManagedServiceIdentityArgs', 'ManagedServiceIdentityArgsDict']] identity: Managed service identity (system assigned and/or user assigned identities)
181
+ :param pulumi.Input[str] location: The geo-location where the resource lives
182
+ :param pulumi.Input[Union['OpenAiServicesForPutRequestArgs', 'OpenAiServicesForPutRequestArgsDict']] open_ai_services: The openAi services details
183
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
184
+ :param pulumi.Input[Union['StorageServicesForPutRequestArgs', 'StorageServicesForPutRequestArgsDict']] storage_services: The storage services details
185
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
186
+ """
187
+ ...
188
+ @overload
189
+ def __init__(__self__,
190
+ resource_name: str,
191
+ args: AccountArgs,
192
+ opts: Optional[pulumi.ResourceOptions] = None):
193
+ """
194
+ An Azure Video Indexer account.
195
+
196
+ :param str resource_name: The name of the resource.
197
+ :param AccountArgs args: The arguments to use to populate this resource's properties.
198
+ :param pulumi.ResourceOptions opts: Options for the resource.
199
+ """
200
+ ...
201
+ def __init__(__self__, resource_name: str, *args, **kwargs):
202
+ resource_args, opts = _utilities.get_resource_args_opts(AccountArgs, pulumi.ResourceOptions, *args, **kwargs)
203
+ if resource_args is not None:
204
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
205
+ else:
206
+ __self__._internal_init(resource_name, *args, **kwargs)
207
+
208
+ def _internal_init(__self__,
209
+ resource_name: str,
210
+ opts: Optional[pulumi.ResourceOptions] = None,
211
+ account_id: Optional[pulumi.Input[str]] = None,
212
+ account_name: Optional[pulumi.Input[str]] = None,
213
+ identity: Optional[pulumi.Input[Union['ManagedServiceIdentityArgs', 'ManagedServiceIdentityArgsDict']]] = None,
214
+ location: Optional[pulumi.Input[str]] = None,
215
+ open_ai_services: Optional[pulumi.Input[Union['OpenAiServicesForPutRequestArgs', 'OpenAiServicesForPutRequestArgsDict']]] = None,
216
+ resource_group_name: Optional[pulumi.Input[str]] = None,
217
+ storage_services: Optional[pulumi.Input[Union['StorageServicesForPutRequestArgs', 'StorageServicesForPutRequestArgsDict']]] = None,
218
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
219
+ __props__=None):
220
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
221
+ if not isinstance(opts, pulumi.ResourceOptions):
222
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
223
+ if opts.id is None:
224
+ if __props__ is not None:
225
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
226
+ __props__ = AccountArgs.__new__(AccountArgs)
227
+
228
+ if account_id is None:
229
+ account_id = '00000000-0000-0000-0000-000000000000'
230
+ __props__.__dict__["account_id"] = account_id
231
+ __props__.__dict__["account_name"] = account_name
232
+ __props__.__dict__["identity"] = identity
233
+ __props__.__dict__["location"] = location
234
+ __props__.__dict__["open_ai_services"] = open_ai_services
235
+ if resource_group_name is None and not opts.urn:
236
+ raise TypeError("Missing required property 'resource_group_name'")
237
+ __props__.__dict__["resource_group_name"] = resource_group_name
238
+ __props__.__dict__["storage_services"] = storage_services
239
+ __props__.__dict__["tags"] = tags
240
+ __props__.__dict__["name"] = None
241
+ __props__.__dict__["provisioning_state"] = None
242
+ __props__.__dict__["system_data"] = None
243
+ __props__.__dict__["tenant_id"] = None
244
+ __props__.__dict__["total_minutes_indexed"] = None
245
+ __props__.__dict__["total_seconds_indexed"] = None
246
+ __props__.__dict__["type"] = None
247
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:videoindexer/v20211018preview:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20211027preview:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20211110preview:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20220413preview:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20220720preview:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20220801:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20240101:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20240401preview:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20240601preview:Account"), pulumi.Alias(type_="azure-native:videoindexer/v20240923preview:Account"), pulumi.Alias(type_="azure-native:videoindexer:Account")])
248
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
249
+ super(Account, __self__).__init__(
250
+ 'azure-native:videoindexer/v20250101:Account',
251
+ resource_name,
252
+ __props__,
253
+ opts)
254
+
255
+ @staticmethod
256
+ def get(resource_name: str,
257
+ id: pulumi.Input[str],
258
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Account':
259
+ """
260
+ Get an existing Account resource's state with the given name, id, and optional extra
261
+ properties used to qualify the lookup.
262
+
263
+ :param str resource_name: The unique name of the resulting resource.
264
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
265
+ :param pulumi.ResourceOptions opts: Options for the resource.
266
+ """
267
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
268
+
269
+ __props__ = AccountArgs.__new__(AccountArgs)
270
+
271
+ __props__.__dict__["account_id"] = None
272
+ __props__.__dict__["account_name"] = None
273
+ __props__.__dict__["identity"] = None
274
+ __props__.__dict__["location"] = None
275
+ __props__.__dict__["name"] = None
276
+ __props__.__dict__["open_ai_services"] = None
277
+ __props__.__dict__["provisioning_state"] = None
278
+ __props__.__dict__["storage_services"] = None
279
+ __props__.__dict__["system_data"] = None
280
+ __props__.__dict__["tags"] = None
281
+ __props__.__dict__["tenant_id"] = None
282
+ __props__.__dict__["total_minutes_indexed"] = None
283
+ __props__.__dict__["total_seconds_indexed"] = None
284
+ __props__.__dict__["type"] = None
285
+ return Account(resource_name, opts=opts, __props__=__props__)
286
+
287
+ @property
288
+ @pulumi.getter(name="accountId")
289
+ def account_id(self) -> pulumi.Output[Optional[str]]:
290
+ """
291
+ The account's data-plane ID. This can be set only when connecting an existing classic account
292
+ """
293
+ return pulumi.get(self, "account_id")
294
+
295
+ @property
296
+ @pulumi.getter(name="accountName")
297
+ def account_name(self) -> pulumi.Output[str]:
298
+ """
299
+ The account's name
300
+ """
301
+ return pulumi.get(self, "account_name")
302
+
303
+ @property
304
+ @pulumi.getter
305
+ def identity(self) -> pulumi.Output[Optional['outputs.ManagedServiceIdentityResponse']]:
306
+ """
307
+ Managed service identity (system assigned and/or user assigned identities)
308
+ """
309
+ return pulumi.get(self, "identity")
310
+
311
+ @property
312
+ @pulumi.getter
313
+ def location(self) -> pulumi.Output[str]:
314
+ """
315
+ The geo-location where the resource lives
316
+ """
317
+ return pulumi.get(self, "location")
318
+
319
+ @property
320
+ @pulumi.getter
321
+ def name(self) -> pulumi.Output[str]:
322
+ """
323
+ The name of the resource
324
+ """
325
+ return pulumi.get(self, "name")
326
+
327
+ @property
328
+ @pulumi.getter(name="openAiServices")
329
+ def open_ai_services(self) -> pulumi.Output[Optional['outputs.OpenAiServicesForPutRequestResponse']]:
330
+ """
331
+ The openAi services details
332
+ """
333
+ return pulumi.get(self, "open_ai_services")
334
+
335
+ @property
336
+ @pulumi.getter(name="provisioningState")
337
+ def provisioning_state(self) -> pulumi.Output[str]:
338
+ """
339
+ Gets the status of the account at the time the operation was called.
340
+ """
341
+ return pulumi.get(self, "provisioning_state")
342
+
343
+ @property
344
+ @pulumi.getter(name="storageServices")
345
+ def storage_services(self) -> pulumi.Output[Optional['outputs.StorageServicesForPutRequestResponse']]:
346
+ """
347
+ The storage services details
348
+ """
349
+ return pulumi.get(self, "storage_services")
350
+
351
+ @property
352
+ @pulumi.getter(name="systemData")
353
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
354
+ """
355
+ The system meta data relating to this resource.
356
+ """
357
+ return pulumi.get(self, "system_data")
358
+
359
+ @property
360
+ @pulumi.getter
361
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
362
+ """
363
+ Resource tags.
364
+ """
365
+ return pulumi.get(self, "tags")
366
+
367
+ @property
368
+ @pulumi.getter(name="tenantId")
369
+ def tenant_id(self) -> pulumi.Output[str]:
370
+ """
371
+ The account's tenant id
372
+ """
373
+ return pulumi.get(self, "tenant_id")
374
+
375
+ @property
376
+ @pulumi.getter(name="totalMinutesIndexed")
377
+ def total_minutes_indexed(self) -> pulumi.Output[float]:
378
+ """
379
+ An integer representing the total minutes that have been indexed on the account
380
+ """
381
+ return pulumi.get(self, "total_minutes_indexed")
382
+
383
+ @property
384
+ @pulumi.getter(name="totalSecondsIndexed")
385
+ def total_seconds_indexed(self) -> pulumi.Output[int]:
386
+ """
387
+ An integer representing the total seconds that have been indexed on the account
388
+ """
389
+ return pulumi.get(self, "total_seconds_indexed")
390
+
391
+ @property
392
+ @pulumi.getter
393
+ def type(self) -> pulumi.Output[str]:
394
+ """
395
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
396
+ """
397
+ return pulumi.get(self, "type")
398
+
@@ -0,0 +1,283 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetAccountResult',
20
+ 'AwaitableGetAccountResult',
21
+ 'get_account',
22
+ 'get_account_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetAccountResult:
27
+ """
28
+ An Azure Video Indexer account.
29
+ """
30
+ def __init__(__self__, account_id=None, account_name=None, id=None, identity=None, location=None, name=None, open_ai_services=None, provisioning_state=None, storage_services=None, system_data=None, tags=None, tenant_id=None, total_minutes_indexed=None, total_seconds_indexed=None, type=None):
31
+ if account_id and not isinstance(account_id, str):
32
+ raise TypeError("Expected argument 'account_id' to be a str")
33
+ pulumi.set(__self__, "account_id", account_id)
34
+ if account_name and not isinstance(account_name, str):
35
+ raise TypeError("Expected argument 'account_name' to be a str")
36
+ pulumi.set(__self__, "account_name", account_name)
37
+ if id and not isinstance(id, str):
38
+ raise TypeError("Expected argument 'id' to be a str")
39
+ pulumi.set(__self__, "id", id)
40
+ if identity and not isinstance(identity, dict):
41
+ raise TypeError("Expected argument 'identity' to be a dict")
42
+ pulumi.set(__self__, "identity", identity)
43
+ if location and not isinstance(location, str):
44
+ raise TypeError("Expected argument 'location' to be a str")
45
+ pulumi.set(__self__, "location", location)
46
+ if name and not isinstance(name, str):
47
+ raise TypeError("Expected argument 'name' to be a str")
48
+ pulumi.set(__self__, "name", name)
49
+ if open_ai_services and not isinstance(open_ai_services, dict):
50
+ raise TypeError("Expected argument 'open_ai_services' to be a dict")
51
+ pulumi.set(__self__, "open_ai_services", open_ai_services)
52
+ if provisioning_state and not isinstance(provisioning_state, str):
53
+ raise TypeError("Expected argument 'provisioning_state' to be a str")
54
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
55
+ if storage_services and not isinstance(storage_services, dict):
56
+ raise TypeError("Expected argument 'storage_services' to be a dict")
57
+ pulumi.set(__self__, "storage_services", storage_services)
58
+ if system_data and not isinstance(system_data, dict):
59
+ raise TypeError("Expected argument 'system_data' to be a dict")
60
+ pulumi.set(__self__, "system_data", system_data)
61
+ if tags and not isinstance(tags, dict):
62
+ raise TypeError("Expected argument 'tags' to be a dict")
63
+ pulumi.set(__self__, "tags", tags)
64
+ if tenant_id and not isinstance(tenant_id, str):
65
+ raise TypeError("Expected argument 'tenant_id' to be a str")
66
+ pulumi.set(__self__, "tenant_id", tenant_id)
67
+ if total_minutes_indexed and not isinstance(total_minutes_indexed, float):
68
+ raise TypeError("Expected argument 'total_minutes_indexed' to be a float")
69
+ pulumi.set(__self__, "total_minutes_indexed", total_minutes_indexed)
70
+ if total_seconds_indexed and not isinstance(total_seconds_indexed, int):
71
+ raise TypeError("Expected argument 'total_seconds_indexed' to be a int")
72
+ pulumi.set(__self__, "total_seconds_indexed", total_seconds_indexed)
73
+ if type and not isinstance(type, str):
74
+ raise TypeError("Expected argument 'type' to be a str")
75
+ pulumi.set(__self__, "type", type)
76
+
77
+ @property
78
+ @pulumi.getter(name="accountId")
79
+ def account_id(self) -> Optional[str]:
80
+ """
81
+ The account's data-plane ID. This can be set only when connecting an existing classic account
82
+ """
83
+ return pulumi.get(self, "account_id")
84
+
85
+ @property
86
+ @pulumi.getter(name="accountName")
87
+ def account_name(self) -> str:
88
+ """
89
+ The account's name
90
+ """
91
+ return pulumi.get(self, "account_name")
92
+
93
+ @property
94
+ @pulumi.getter
95
+ def id(self) -> str:
96
+ """
97
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
98
+ """
99
+ return pulumi.get(self, "id")
100
+
101
+ @property
102
+ @pulumi.getter
103
+ def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
104
+ """
105
+ Managed service identity (system assigned and/or user assigned identities)
106
+ """
107
+ return pulumi.get(self, "identity")
108
+
109
+ @property
110
+ @pulumi.getter
111
+ def location(self) -> str:
112
+ """
113
+ The geo-location where the resource lives
114
+ """
115
+ return pulumi.get(self, "location")
116
+
117
+ @property
118
+ @pulumi.getter
119
+ def name(self) -> str:
120
+ """
121
+ The name of the resource
122
+ """
123
+ return pulumi.get(self, "name")
124
+
125
+ @property
126
+ @pulumi.getter(name="openAiServices")
127
+ def open_ai_services(self) -> Optional['outputs.OpenAiServicesForPutRequestResponse']:
128
+ """
129
+ The openAi services details
130
+ """
131
+ return pulumi.get(self, "open_ai_services")
132
+
133
+ @property
134
+ @pulumi.getter(name="provisioningState")
135
+ def provisioning_state(self) -> str:
136
+ """
137
+ Gets the status of the account at the time the operation was called.
138
+ """
139
+ return pulumi.get(self, "provisioning_state")
140
+
141
+ @property
142
+ @pulumi.getter(name="storageServices")
143
+ def storage_services(self) -> Optional['outputs.StorageServicesForPutRequestResponse']:
144
+ """
145
+ The storage services details
146
+ """
147
+ return pulumi.get(self, "storage_services")
148
+
149
+ @property
150
+ @pulumi.getter(name="systemData")
151
+ def system_data(self) -> 'outputs.SystemDataResponse':
152
+ """
153
+ The system meta data relating to this resource.
154
+ """
155
+ return pulumi.get(self, "system_data")
156
+
157
+ @property
158
+ @pulumi.getter
159
+ def tags(self) -> Optional[Mapping[str, str]]:
160
+ """
161
+ Resource tags.
162
+ """
163
+ return pulumi.get(self, "tags")
164
+
165
+ @property
166
+ @pulumi.getter(name="tenantId")
167
+ def tenant_id(self) -> str:
168
+ """
169
+ The account's tenant id
170
+ """
171
+ return pulumi.get(self, "tenant_id")
172
+
173
+ @property
174
+ @pulumi.getter(name="totalMinutesIndexed")
175
+ def total_minutes_indexed(self) -> float:
176
+ """
177
+ An integer representing the total minutes that have been indexed on the account
178
+ """
179
+ return pulumi.get(self, "total_minutes_indexed")
180
+
181
+ @property
182
+ @pulumi.getter(name="totalSecondsIndexed")
183
+ def total_seconds_indexed(self) -> int:
184
+ """
185
+ An integer representing the total seconds that have been indexed on the account
186
+ """
187
+ return pulumi.get(self, "total_seconds_indexed")
188
+
189
+ @property
190
+ @pulumi.getter
191
+ def type(self) -> str:
192
+ """
193
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
194
+ """
195
+ return pulumi.get(self, "type")
196
+
197
+
198
+ class AwaitableGetAccountResult(GetAccountResult):
199
+ # pylint: disable=using-constant-test
200
+ def __await__(self):
201
+ if False:
202
+ yield self
203
+ return GetAccountResult(
204
+ account_id=self.account_id,
205
+ account_name=self.account_name,
206
+ id=self.id,
207
+ identity=self.identity,
208
+ location=self.location,
209
+ name=self.name,
210
+ open_ai_services=self.open_ai_services,
211
+ provisioning_state=self.provisioning_state,
212
+ storage_services=self.storage_services,
213
+ system_data=self.system_data,
214
+ tags=self.tags,
215
+ tenant_id=self.tenant_id,
216
+ total_minutes_indexed=self.total_minutes_indexed,
217
+ total_seconds_indexed=self.total_seconds_indexed,
218
+ type=self.type)
219
+
220
+
221
+ def get_account(account_name: Optional[str] = None,
222
+ resource_group_name: Optional[str] = None,
223
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountResult:
224
+ """
225
+ Gets the properties of an Azure Video Indexer account.
226
+
227
+
228
+ :param str account_name: The name of the Azure Video Indexer account.
229
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
230
+ """
231
+ __args__ = dict()
232
+ __args__['accountName'] = account_name
233
+ __args__['resourceGroupName'] = resource_group_name
234
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
235
+ __ret__ = pulumi.runtime.invoke('azure-native:videoindexer/v20250101:getAccount', __args__, opts=opts, typ=GetAccountResult).value
236
+
237
+ return AwaitableGetAccountResult(
238
+ account_id=pulumi.get(__ret__, 'account_id'),
239
+ account_name=pulumi.get(__ret__, 'account_name'),
240
+ id=pulumi.get(__ret__, 'id'),
241
+ identity=pulumi.get(__ret__, 'identity'),
242
+ location=pulumi.get(__ret__, 'location'),
243
+ name=pulumi.get(__ret__, 'name'),
244
+ open_ai_services=pulumi.get(__ret__, 'open_ai_services'),
245
+ provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
246
+ storage_services=pulumi.get(__ret__, 'storage_services'),
247
+ system_data=pulumi.get(__ret__, 'system_data'),
248
+ tags=pulumi.get(__ret__, 'tags'),
249
+ tenant_id=pulumi.get(__ret__, 'tenant_id'),
250
+ total_minutes_indexed=pulumi.get(__ret__, 'total_minutes_indexed'),
251
+ total_seconds_indexed=pulumi.get(__ret__, 'total_seconds_indexed'),
252
+ type=pulumi.get(__ret__, 'type'))
253
+ def get_account_output(account_name: Optional[pulumi.Input[str]] = None,
254
+ resource_group_name: Optional[pulumi.Input[str]] = None,
255
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAccountResult]:
256
+ """
257
+ Gets the properties of an Azure Video Indexer account.
258
+
259
+
260
+ :param str account_name: The name of the Azure Video Indexer account.
261
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
262
+ """
263
+ __args__ = dict()
264
+ __args__['accountName'] = account_name
265
+ __args__['resourceGroupName'] = resource_group_name
266
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
267
+ __ret__ = pulumi.runtime.invoke_output('azure-native:videoindexer/v20250101:getAccount', __args__, opts=opts, typ=GetAccountResult)
268
+ return __ret__.apply(lambda __response__: GetAccountResult(
269
+ account_id=pulumi.get(__response__, 'account_id'),
270
+ account_name=pulumi.get(__response__, 'account_name'),
271
+ id=pulumi.get(__response__, 'id'),
272
+ identity=pulumi.get(__response__, 'identity'),
273
+ location=pulumi.get(__response__, 'location'),
274
+ name=pulumi.get(__response__, 'name'),
275
+ open_ai_services=pulumi.get(__response__, 'open_ai_services'),
276
+ provisioning_state=pulumi.get(__response__, 'provisioning_state'),
277
+ storage_services=pulumi.get(__response__, 'storage_services'),
278
+ system_data=pulumi.get(__response__, 'system_data'),
279
+ tags=pulumi.get(__response__, 'tags'),
280
+ tenant_id=pulumi.get(__response__, 'tenant_id'),
281
+ total_minutes_indexed=pulumi.get(__response__, 'total_minutes_indexed'),
282
+ total_seconds_indexed=pulumi.get(__response__, 'total_seconds_indexed'),
283
+ type=pulumi.get(__response__, 'type')))