pulumi-azure-native 2.65.0a1728039140__py3-none-any.whl → 2.65.0a1728295684__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 (273) hide show
  1. pulumi_azure_native/__init__.py +95 -2
  2. pulumi_azure_native/authorization/__init__.py +3 -0
  3. pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
  4. pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
  5. pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
  6. pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
  7. pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +1 -1
  8. pulumi_azure_native/authorization/v20240901preview/__init__.py +10 -0
  9. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy_assignment.py +175 -0
  10. pulumi_azure_native/authorization/v20240901preview/outputs.py +1456 -0
  11. pulumi_azure_native/authorization/v20240901preview/role_management_policy_assignment.py +246 -0
  12. pulumi_azure_native/azurearcdata/__init__.py +8 -0
  13. pulumi_azure_native/azurearcdata/_enums.py +55 -0
  14. pulumi_azure_native/azurearcdata/_inputs.py +226 -0
  15. pulumi_azure_native/azurearcdata/active_directory_connector.py +3 -3
  16. pulumi_azure_native/azurearcdata/data_controller.py +3 -3
  17. pulumi_azure_native/azurearcdata/failover_group.py +3 -3
  18. pulumi_azure_native/azurearcdata/get_active_directory_connector.py +2 -2
  19. pulumi_azure_native/azurearcdata/get_data_controller.py +2 -2
  20. pulumi_azure_native/azurearcdata/get_failover_group.py +2 -2
  21. pulumi_azure_native/azurearcdata/get_postgres_instance.py +2 -2
  22. pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +2 -2
  23. pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +4 -0
  24. pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +4 -0
  25. pulumi_azure_native/azurearcdata/get_sql_server_database.py +2 -2
  26. pulumi_azure_native/azurearcdata/get_sql_server_esu_license.py +164 -0
  27. pulumi_azure_native/azurearcdata/get_sql_server_instance.py +2 -2
  28. pulumi_azure_native/azurearcdata/get_sql_server_instance_jobs_status.py +96 -0
  29. pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +4 -0
  30. pulumi_azure_native/azurearcdata/get_sql_server_license.py +164 -0
  31. pulumi_azure_native/azurearcdata/outputs.py +489 -0
  32. pulumi_azure_native/azurearcdata/postgres_instance.py +3 -3
  33. pulumi_azure_native/azurearcdata/sql_managed_instance.py +3 -3
  34. pulumi_azure_native/azurearcdata/sql_server_availability_group.py +5 -1
  35. pulumi_azure_native/azurearcdata/sql_server_database.py +3 -3
  36. pulumi_azure_native/azurearcdata/sql_server_esu_license.py +261 -0
  37. pulumi_azure_native/azurearcdata/sql_server_instance.py +3 -3
  38. pulumi_azure_native/azurearcdata/sql_server_license.py +261 -0
  39. pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
  40. pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
  41. pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
  42. pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
  43. pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
  44. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
  45. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
  46. pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +1 -1
  47. pulumi_azure_native/azurearcdata/v20240101/data_controller.py +1 -1
  48. pulumi_azure_native/azurearcdata/v20240101/failover_group.py +1 -1
  49. pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +1 -1
  50. pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +1 -1
  51. pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +1 -1
  52. pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +1 -1
  53. pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +1 -1
  54. pulumi_azure_native/azurearcdata/v20240501preview/__init__.py +33 -0
  55. pulumi_azure_native/azurearcdata/v20240501preview/_enums.py +334 -0
  56. pulumi_azure_native/azurearcdata/v20240501preview/_inputs.py +4953 -0
  57. pulumi_azure_native/azurearcdata/v20240501preview/active_directory_connector.py +222 -0
  58. pulumi_azure_native/azurearcdata/v20240501preview/data_controller.py +288 -0
  59. pulumi_azure_native/azurearcdata/v20240501preview/failover_group.py +222 -0
  60. pulumi_azure_native/azurearcdata/v20240501preview/get_active_directory_connector.py +141 -0
  61. pulumi_azure_native/azurearcdata/v20240501preview/get_data_controller.py +175 -0
  62. pulumi_azure_native/azurearcdata/v20240501preview/get_failover_group.py +141 -0
  63. pulumi_azure_native/azurearcdata/v20240501preview/get_postgres_instance.py +188 -0
  64. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_managed_instance.py +188 -0
  65. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group.py +167 -0
  66. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group_detail_view.py +167 -0
  67. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_database.py +167 -0
  68. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_esu_license.py +162 -0
  69. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance.py +162 -0
  70. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_jobs_status.py +94 -0
  71. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_telemetry.py +141 -0
  72. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_license.py +162 -0
  73. pulumi_azure_native/azurearcdata/v20240501preview/outputs.py +6407 -0
  74. pulumi_azure_native/azurearcdata/v20240501preview/postgres_instance.py +317 -0
  75. pulumi_azure_native/azurearcdata/v20240501preview/sql_managed_instance.py +317 -0
  76. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_availability_group.py +280 -0
  77. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_database.py +280 -0
  78. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_esu_license.py +259 -0
  79. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_instance.py +258 -0
  80. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_license.py +259 -0
  81. pulumi_azure_native/azurefleet/__init__.py +3 -0
  82. pulumi_azure_native/azurefleet/fleet.py +3 -3
  83. pulumi_azure_native/azurefleet/get_fleet.py +2 -2
  84. pulumi_azure_native/azurefleet/v20231101preview/fleet.py +1 -1
  85. pulumi_azure_native/azurefleet/v20240501preview/fleet.py +1 -1
  86. pulumi_azure_native/azurefleet/v20241101/__init__.py +12 -0
  87. pulumi_azure_native/azurefleet/v20241101/_enums.py +795 -0
  88. pulumi_azure_native/azurefleet/v20241101/_inputs.py +7209 -0
  89. pulumi_azure_native/azurefleet/v20241101/fleet.py +522 -0
  90. pulumi_azure_native/azurefleet/v20241101/get_fleet.py +305 -0
  91. pulumi_azure_native/azurefleet/v20241101/outputs.py +5832 -0
  92. pulumi_azure_native/codesigning/__init__.py +3 -0
  93. pulumi_azure_native/codesigning/certificate_profile.py +5 -1
  94. pulumi_azure_native/codesigning/code_signing_account.py +5 -1
  95. pulumi_azure_native/codesigning/get_certificate_profile.py +4 -0
  96. pulumi_azure_native/codesigning/get_code_signing_account.py +4 -0
  97. pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +1 -1
  98. pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +1 -1
  99. pulumi_azure_native/codesigning/v20240930preview/__init__.py +14 -0
  100. pulumi_azure_native/codesigning/v20240930preview/_enums.py +50 -0
  101. pulumi_azure_native/codesigning/v20240930preview/_inputs.py +59 -0
  102. pulumi_azure_native/codesigning/v20240930preview/certificate_profile.py +436 -0
  103. pulumi_azure_native/codesigning/v20240930preview/code_signing_account.py +278 -0
  104. pulumi_azure_native/codesigning/v20240930preview/get_certificate_profile.py +245 -0
  105. pulumi_azure_native/codesigning/v20240930preview/get_code_signing_account.py +188 -0
  106. pulumi_azure_native/codesigning/v20240930preview/outputs.py +154 -0
  107. pulumi_azure_native/containerinstance/__init__.py +8 -0
  108. pulumi_azure_native/containerinstance/_enums.py +1 -1
  109. pulumi_azure_native/containerinstance/_inputs.py +165 -0
  110. pulumi_azure_native/containerinstance/container_group.py +3 -3
  111. pulumi_azure_native/containerinstance/get_container_group.py +2 -2
  112. pulumi_azure_native/containerinstance/get_n_group.py +216 -0
  113. pulumi_azure_native/containerinstance/n_group.py +357 -0
  114. pulumi_azure_native/containerinstance/outputs.py +328 -0
  115. pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
  116. pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
  117. pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
  118. pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
  119. pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
  120. pulumi_azure_native/containerinstance/v20240901preview/__init__.py +14 -0
  121. pulumi_azure_native/containerinstance/v20240901preview/_enums.py +127 -0
  122. pulumi_azure_native/containerinstance/v20240901preview/_inputs.py +2739 -0
  123. pulumi_azure_native/containerinstance/v20240901preview/container_group.py +746 -0
  124. pulumi_azure_native/containerinstance/v20240901preview/get_container_group.py +386 -0
  125. pulumi_azure_native/containerinstance/v20240901preview/get_n_group.py +214 -0
  126. pulumi_azure_native/containerinstance/v20240901preview/n_group.py +355 -0
  127. pulumi_azure_native/containerinstance/v20240901preview/outputs.py +2792 -0
  128. pulumi_azure_native/containerinstance/v20241001preview/__init__.py +12 -0
  129. pulumi_azure_native/containerinstance/v20241001preview/_enums.py +127 -0
  130. pulumi_azure_native/containerinstance/v20241001preview/_inputs.py +2729 -0
  131. pulumi_azure_native/containerinstance/v20241001preview/container_group.py +775 -0
  132. pulumi_azure_native/containerinstance/v20241001preview/get_container_group.py +399 -0
  133. pulumi_azure_native/containerinstance/v20241001preview/outputs.py +2582 -0
  134. pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
  135. pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
  136. pulumi_azure_native/dbforpostgresql/backup.py +5 -1
  137. pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
  138. pulumi_azure_native/dbforpostgresql/database.py +3 -3
  139. pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
  140. pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
  141. pulumi_azure_native/dbforpostgresql/get_backup.py +4 -0
  142. pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
  143. pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
  144. pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
  145. pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
  146. pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
  147. pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
  148. pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
  149. pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
  150. pulumi_azure_native/dbforpostgresql/migration.py +3 -3
  151. pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
  152. pulumi_azure_native/dbforpostgresql/server.py +3 -3
  153. pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
  154. pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
  155. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
  156. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
  157. pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
  158. pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
  159. pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
  160. pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
  161. pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
  162. pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
  163. pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
  164. pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
  165. pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
  166. pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
  167. pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
  168. pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
  169. pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
  170. pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
  171. pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
  172. pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
  173. pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
  174. pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
  175. pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
  176. pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
  177. pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
  178. pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
  179. pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
  180. pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
  181. pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
  182. pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
  183. pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
  184. pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
  185. pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
  186. pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +1 -1
  187. pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +1 -1
  188. pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +1 -1
  189. pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +1 -1
  190. pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +1 -1
  191. pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +1 -1
  192. pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +1 -1
  193. pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +1 -1
  194. pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +1 -1
  195. pulumi_azure_native/dbforpostgresql/v20240801/__init__.py +29 -0
  196. pulumi_azure_native/dbforpostgresql/v20240801/_enums.py +318 -0
  197. pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +1168 -0
  198. pulumi_azure_native/dbforpostgresql/v20240801/administrator.py +287 -0
  199. pulumi_azure_native/dbforpostgresql/v20240801/backup.py +220 -0
  200. pulumi_azure_native/dbforpostgresql/v20240801/configuration.py +338 -0
  201. pulumi_azure_native/dbforpostgresql/v20240801/database.py +248 -0
  202. pulumi_azure_native/dbforpostgresql/v20240801/firewall_rule.py +250 -0
  203. pulumi_azure_native/dbforpostgresql/v20240801/get_administrator.py +180 -0
  204. pulumi_azure_native/dbforpostgresql/v20240801/get_backup.py +167 -0
  205. pulumi_azure_native/dbforpostgresql/v20240801/get_configuration.py +271 -0
  206. pulumi_azure_native/dbforpostgresql/v20240801/get_database.py +154 -0
  207. pulumi_azure_native/dbforpostgresql/v20240801/get_firewall_rule.py +154 -0
  208. pulumi_azure_native/dbforpostgresql/v20240801/get_get_private_dns_zone_suffix_execute.py +66 -0
  209. pulumi_azure_native/dbforpostgresql/v20240801/get_migration.py +471 -0
  210. pulumi_azure_native/dbforpostgresql/v20240801/get_private_endpoint_connection.py +180 -0
  211. pulumi_azure_native/dbforpostgresql/v20240801/get_server.py +409 -0
  212. pulumi_azure_native/dbforpostgresql/v20240801/get_virtual_endpoint.py +167 -0
  213. pulumi_azure_native/dbforpostgresql/v20240801/migration.py +891 -0
  214. pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +1907 -0
  215. pulumi_azure_native/dbforpostgresql/v20240801/private_endpoint_connection.py +252 -0
  216. pulumi_azure_native/dbforpostgresql/v20240801/server.py +778 -0
  217. pulumi_azure_native/dbforpostgresql/v20240801/virtual_endpoint.py +259 -0
  218. pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
  219. pulumi_azure_native/iotoperations/__init__.py +3 -0
  220. pulumi_azure_native/iotoperations/broker.py +3 -3
  221. pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
  222. pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
  223. pulumi_azure_native/iotoperations/broker_listener.py +3 -3
  224. pulumi_azure_native/iotoperations/data_flow.py +1 -1
  225. pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
  226. pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
  227. pulumi_azure_native/iotoperations/get_broker.py +2 -2
  228. pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
  229. pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
  230. pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
  231. pulumi_azure_native/iotoperations/get_instance.py +2 -2
  232. pulumi_azure_native/iotoperations/instance.py +3 -3
  233. pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
  234. pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
  235. pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
  236. pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
  237. pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
  238. pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
  239. pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
  240. pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
  241. pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
  242. pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
  243. pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
  244. pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
  245. pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
  246. pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
  247. pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
  248. pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
  249. pulumi_azure_native/iotoperations/v20240915preview/__init__.py +26 -0
  250. pulumi_azure_native/iotoperations/v20240915preview/_enums.py +616 -0
  251. pulumi_azure_native/iotoperations/v20240915preview/_inputs.py +6404 -0
  252. pulumi_azure_native/iotoperations/v20240915preview/broker.py +251 -0
  253. pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +272 -0
  254. pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +272 -0
  255. pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +272 -0
  256. pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +272 -0
  257. pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +251 -0
  258. pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +251 -0
  259. pulumi_azure_native/iotoperations/v20240915preview/get_broker.py +154 -0
  260. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authentication.py +159 -0
  261. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authorization.py +159 -0
  262. pulumi_azure_native/iotoperations/v20240915preview/get_broker_listener.py +159 -0
  263. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow.py +159 -0
  264. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_endpoint.py +154 -0
  265. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_profile.py +154 -0
  266. pulumi_azure_native/iotoperations/v20240915preview/get_instance.py +188 -0
  267. pulumi_azure_native/iotoperations/v20240915preview/instance.py +317 -0
  268. pulumi_azure_native/iotoperations/v20240915preview/outputs.py +5389 -0
  269. pulumi_azure_native/pulumi-plugin.json +1 -1
  270. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/METADATA +1 -1
  271. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/RECORD +273 -164
  272. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/WHEEL +0 -0
  273. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,7 @@ __all__ = [
27
27
  'AvailabilityGroupConfigureResponse',
28
28
  'AvailabilityGroupInfoResponse',
29
29
  'AvailabilityGroupStateResponse',
30
+ 'BackgroundJobResponse',
30
31
  'BasicLoginInformationResponse',
31
32
  'DataControllerPropertiesResponse',
32
33
  'ExtendedLocationResponse',
@@ -45,6 +46,7 @@ __all__ = [
45
46
  'OnPremisePropertyResponse',
46
47
  'PostgresInstancePropertiesResponse',
47
48
  'PostgresInstanceSkuResponse',
49
+ 'SequencerActionResponse',
48
50
  'SqlAvailabilityGroupDatabaseReplicaResourcePropertiesResponse',
49
51
  'SqlAvailabilityGroupReplicaResourcePropertiesResponse',
50
52
  'SqlManagedInstanceK8sRawResponse',
@@ -57,8 +59,11 @@ __all__ = [
57
59
  'SqlServerDatabaseResourcePropertiesResponse',
58
60
  'SqlServerDatabaseResourcePropertiesResponseBackupInformation',
59
61
  'SqlServerDatabaseResourcePropertiesResponseDatabaseOptions',
62
+ 'SqlServerEsuLicensePropertiesResponse',
63
+ 'SqlServerInstanceJobStatusResponse',
60
64
  'SqlServerInstancePropertiesResponse',
61
65
  'SqlServerInstanceTelemetryColumnResponse',
66
+ 'SqlServerLicensePropertiesResponse',
62
67
  'SystemDataResponse',
63
68
  'UploadServicePrincipalResponse',
64
69
  'UploadWatermarkResponse',
@@ -1050,6 +1055,89 @@ class AvailabilityGroupStateResponse(dict):
1050
1055
  return pulumi.get(self, "synchronization_health_description")
1051
1056
 
1052
1057
 
1058
+ @pulumi.output_type
1059
+ class BackgroundJobResponse(dict):
1060
+ """
1061
+ The background job details.
1062
+ """
1063
+ def __init__(__self__, *,
1064
+ end_time: Optional[str] = None,
1065
+ execution_state: Optional[str] = None,
1066
+ last_execution_status: Optional[str] = None,
1067
+ last_execution_time: Optional[str] = None,
1068
+ start_time: Optional[str] = None,
1069
+ state: Optional[str] = None):
1070
+ """
1071
+ The background job details.
1072
+ :param str end_time: The end time of the background job.
1073
+ :param str execution_state: The execution state of the background job.
1074
+ :param str last_execution_status: The last execution status of the background job.
1075
+ :param str last_execution_time: The last execution time of the background job.
1076
+ :param str start_time: The start time of the background job.
1077
+ :param str state: The state of the background job.
1078
+ """
1079
+ if end_time is not None:
1080
+ pulumi.set(__self__, "end_time", end_time)
1081
+ if execution_state is not None:
1082
+ pulumi.set(__self__, "execution_state", execution_state)
1083
+ if last_execution_status is not None:
1084
+ pulumi.set(__self__, "last_execution_status", last_execution_status)
1085
+ if last_execution_time is not None:
1086
+ pulumi.set(__self__, "last_execution_time", last_execution_time)
1087
+ if start_time is not None:
1088
+ pulumi.set(__self__, "start_time", start_time)
1089
+ if state is not None:
1090
+ pulumi.set(__self__, "state", state)
1091
+
1092
+ @property
1093
+ @pulumi.getter(name="endTime")
1094
+ def end_time(self) -> Optional[str]:
1095
+ """
1096
+ The end time of the background job.
1097
+ """
1098
+ return pulumi.get(self, "end_time")
1099
+
1100
+ @property
1101
+ @pulumi.getter(name="executionState")
1102
+ def execution_state(self) -> Optional[str]:
1103
+ """
1104
+ The execution state of the background job.
1105
+ """
1106
+ return pulumi.get(self, "execution_state")
1107
+
1108
+ @property
1109
+ @pulumi.getter(name="lastExecutionStatus")
1110
+ def last_execution_status(self) -> Optional[str]:
1111
+ """
1112
+ The last execution status of the background job.
1113
+ """
1114
+ return pulumi.get(self, "last_execution_status")
1115
+
1116
+ @property
1117
+ @pulumi.getter(name="lastExecutionTime")
1118
+ def last_execution_time(self) -> Optional[str]:
1119
+ """
1120
+ The last execution time of the background job.
1121
+ """
1122
+ return pulumi.get(self, "last_execution_time")
1123
+
1124
+ @property
1125
+ @pulumi.getter(name="startTime")
1126
+ def start_time(self) -> Optional[str]:
1127
+ """
1128
+ The start time of the background job.
1129
+ """
1130
+ return pulumi.get(self, "start_time")
1131
+
1132
+ @property
1133
+ @pulumi.getter
1134
+ def state(self) -> Optional[str]:
1135
+ """
1136
+ The state of the background job.
1137
+ """
1138
+ return pulumi.get(self, "state")
1139
+
1140
+
1053
1141
  @pulumi.output_type
1054
1142
  class BasicLoginInformationResponse(dict):
1055
1143
  """
@@ -2204,6 +2292,53 @@ class PostgresInstanceSkuResponse(dict):
2204
2292
  return pulumi.get(self, "tier")
2205
2293
 
2206
2294
 
2295
+ @pulumi.output_type
2296
+ class SequencerActionResponse(dict):
2297
+ """
2298
+ The sequencer action details.
2299
+ """
2300
+ def __init__(__self__, *,
2301
+ action_id: Optional[str] = None,
2302
+ result: Optional[str] = None,
2303
+ state: Optional[str] = None):
2304
+ """
2305
+ The sequencer action details.
2306
+ :param str action_id: The unique identifier of the sequencer action.
2307
+ :param str result: The result of the sequencer action.
2308
+ :param str state: The state of the sequencer action.
2309
+ """
2310
+ if action_id is not None:
2311
+ pulumi.set(__self__, "action_id", action_id)
2312
+ if result is not None:
2313
+ pulumi.set(__self__, "result", result)
2314
+ if state is not None:
2315
+ pulumi.set(__self__, "state", state)
2316
+
2317
+ @property
2318
+ @pulumi.getter(name="actionId")
2319
+ def action_id(self) -> Optional[str]:
2320
+ """
2321
+ The unique identifier of the sequencer action.
2322
+ """
2323
+ return pulumi.get(self, "action_id")
2324
+
2325
+ @property
2326
+ @pulumi.getter
2327
+ def result(self) -> Optional[str]:
2328
+ """
2329
+ The result of the sequencer action.
2330
+ """
2331
+ return pulumi.get(self, "result")
2332
+
2333
+ @property
2334
+ @pulumi.getter
2335
+ def state(self) -> Optional[str]:
2336
+ """
2337
+ The state of the sequencer action.
2338
+ """
2339
+ return pulumi.get(self, "state")
2340
+
2341
+
2207
2342
  @pulumi.output_type
2208
2343
  class SqlAvailabilityGroupDatabaseReplicaResourcePropertiesResponse(dict):
2209
2344
  """
@@ -3343,6 +3478,230 @@ class SqlServerDatabaseResourcePropertiesResponseDatabaseOptions(dict):
3343
3478
  return pulumi.get(self, "is_trustworthy_on")
3344
3479
 
3345
3480
 
3481
+ @pulumi.output_type
3482
+ class SqlServerEsuLicensePropertiesResponse(dict):
3483
+ """
3484
+ Properties of SQL Server ESU license.
3485
+ """
3486
+ @staticmethod
3487
+ def __key_warning(key: str):
3488
+ suggest = None
3489
+ if key == "activatedAt":
3490
+ suggest = "activated_at"
3491
+ elif key == "activationState":
3492
+ suggest = "activation_state"
3493
+ elif key == "billingPlan":
3494
+ suggest = "billing_plan"
3495
+ elif key == "physicalCores":
3496
+ suggest = "physical_cores"
3497
+ elif key == "scopeType":
3498
+ suggest = "scope_type"
3499
+ elif key == "tenantId":
3500
+ suggest = "tenant_id"
3501
+ elif key == "terminatedAt":
3502
+ suggest = "terminated_at"
3503
+ elif key == "uniqueId":
3504
+ suggest = "unique_id"
3505
+
3506
+ if suggest:
3507
+ pulumi.log.warn(f"Key '{key}' not found in SqlServerEsuLicensePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
3508
+
3509
+ def __getitem__(self, key: str) -> Any:
3510
+ SqlServerEsuLicensePropertiesResponse.__key_warning(key)
3511
+ return super().__getitem__(key)
3512
+
3513
+ def get(self, key: str, default = None) -> Any:
3514
+ SqlServerEsuLicensePropertiesResponse.__key_warning(key)
3515
+ return super().get(key, default)
3516
+
3517
+ def __init__(__self__, *,
3518
+ activated_at: str,
3519
+ activation_state: str,
3520
+ billing_plan: str,
3521
+ physical_cores: int,
3522
+ scope_type: str,
3523
+ tenant_id: str,
3524
+ terminated_at: str,
3525
+ unique_id: str,
3526
+ version: str):
3527
+ """
3528
+ Properties of SQL Server ESU license.
3529
+ :param str activated_at: The timestamp of the activation of the SqlServerEsuLicense in ISO 8601 date-time format.
3530
+ :param str activation_state: The activation state of the license.
3531
+ :param str billing_plan: SQL Server ESU license type.
3532
+ :param int physical_cores: The number of total cores of the license covers.
3533
+ :param str scope_type: The Azure scope to which the license will apply.
3534
+ :param str tenant_id: The tenantId the SQL Server ESU license resource subscription resides in.
3535
+ :param str terminated_at: The timestamp of the termination of the SqlServerEsuLicense in ISO 8601 date-time format.
3536
+ :param str unique_id: The unique ID of this license. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).
3537
+ :param str version: The SQL Server version the license covers.
3538
+ """
3539
+ pulumi.set(__self__, "activated_at", activated_at)
3540
+ pulumi.set(__self__, "activation_state", activation_state)
3541
+ pulumi.set(__self__, "billing_plan", billing_plan)
3542
+ pulumi.set(__self__, "physical_cores", physical_cores)
3543
+ pulumi.set(__self__, "scope_type", scope_type)
3544
+ pulumi.set(__self__, "tenant_id", tenant_id)
3545
+ pulumi.set(__self__, "terminated_at", terminated_at)
3546
+ pulumi.set(__self__, "unique_id", unique_id)
3547
+ pulumi.set(__self__, "version", version)
3548
+
3549
+ @property
3550
+ @pulumi.getter(name="activatedAt")
3551
+ def activated_at(self) -> str:
3552
+ """
3553
+ The timestamp of the activation of the SqlServerEsuLicense in ISO 8601 date-time format.
3554
+ """
3555
+ return pulumi.get(self, "activated_at")
3556
+
3557
+ @property
3558
+ @pulumi.getter(name="activationState")
3559
+ def activation_state(self) -> str:
3560
+ """
3561
+ The activation state of the license.
3562
+ """
3563
+ return pulumi.get(self, "activation_state")
3564
+
3565
+ @property
3566
+ @pulumi.getter(name="billingPlan")
3567
+ def billing_plan(self) -> str:
3568
+ """
3569
+ SQL Server ESU license type.
3570
+ """
3571
+ return pulumi.get(self, "billing_plan")
3572
+
3573
+ @property
3574
+ @pulumi.getter(name="physicalCores")
3575
+ def physical_cores(self) -> int:
3576
+ """
3577
+ The number of total cores of the license covers.
3578
+ """
3579
+ return pulumi.get(self, "physical_cores")
3580
+
3581
+ @property
3582
+ @pulumi.getter(name="scopeType")
3583
+ def scope_type(self) -> str:
3584
+ """
3585
+ The Azure scope to which the license will apply.
3586
+ """
3587
+ return pulumi.get(self, "scope_type")
3588
+
3589
+ @property
3590
+ @pulumi.getter(name="tenantId")
3591
+ def tenant_id(self) -> str:
3592
+ """
3593
+ The tenantId the SQL Server ESU license resource subscription resides in.
3594
+ """
3595
+ return pulumi.get(self, "tenant_id")
3596
+
3597
+ @property
3598
+ @pulumi.getter(name="terminatedAt")
3599
+ def terminated_at(self) -> str:
3600
+ """
3601
+ The timestamp of the termination of the SqlServerEsuLicense in ISO 8601 date-time format.
3602
+ """
3603
+ return pulumi.get(self, "terminated_at")
3604
+
3605
+ @property
3606
+ @pulumi.getter(name="uniqueId")
3607
+ def unique_id(self) -> str:
3608
+ """
3609
+ The unique ID of this license. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).
3610
+ """
3611
+ return pulumi.get(self, "unique_id")
3612
+
3613
+ @property
3614
+ @pulumi.getter
3615
+ def version(self) -> str:
3616
+ """
3617
+ The SQL Server version the license covers.
3618
+ """
3619
+ return pulumi.get(self, "version")
3620
+
3621
+
3622
+ @pulumi.output_type
3623
+ class SqlServerInstanceJobStatusResponse(dict):
3624
+ """
3625
+ The status of the job running on the SQL Server instance.
3626
+ """
3627
+ def __init__(__self__, *,
3628
+ background_job: Optional['outputs.BackgroundJobResponse'] = None,
3629
+ id: Optional[str] = None,
3630
+ instance_name: Optional[str] = None,
3631
+ job_exception: Optional[str] = None,
3632
+ job_status: Optional[str] = None,
3633
+ sequencer_actions: Optional[Sequence['outputs.SequencerActionResponse']] = None):
3634
+ """
3635
+ The status of the job running on the SQL Server instance.
3636
+ :param 'BackgroundJobResponse' background_job: The background job details.
3637
+ :param str id: The unique identifier of the job.
3638
+ :param str instance_name: The name of the SQL Server instance.
3639
+ :param str job_exception: The exception message if the job failed.
3640
+ :param str job_status: The status of the job.
3641
+ :param Sequence['SequencerActionResponse'] sequencer_actions: The list of sequencer actions.
3642
+ """
3643
+ if background_job is not None:
3644
+ pulumi.set(__self__, "background_job", background_job)
3645
+ if id is not None:
3646
+ pulumi.set(__self__, "id", id)
3647
+ if instance_name is not None:
3648
+ pulumi.set(__self__, "instance_name", instance_name)
3649
+ if job_exception is not None:
3650
+ pulumi.set(__self__, "job_exception", job_exception)
3651
+ if job_status is not None:
3652
+ pulumi.set(__self__, "job_status", job_status)
3653
+ if sequencer_actions is not None:
3654
+ pulumi.set(__self__, "sequencer_actions", sequencer_actions)
3655
+
3656
+ @property
3657
+ @pulumi.getter(name="backgroundJob")
3658
+ def background_job(self) -> Optional['outputs.BackgroundJobResponse']:
3659
+ """
3660
+ The background job details.
3661
+ """
3662
+ return pulumi.get(self, "background_job")
3663
+
3664
+ @property
3665
+ @pulumi.getter
3666
+ def id(self) -> Optional[str]:
3667
+ """
3668
+ The unique identifier of the job.
3669
+ """
3670
+ return pulumi.get(self, "id")
3671
+
3672
+ @property
3673
+ @pulumi.getter(name="instanceName")
3674
+ def instance_name(self) -> Optional[str]:
3675
+ """
3676
+ The name of the SQL Server instance.
3677
+ """
3678
+ return pulumi.get(self, "instance_name")
3679
+
3680
+ @property
3681
+ @pulumi.getter(name="jobException")
3682
+ def job_exception(self) -> Optional[str]:
3683
+ """
3684
+ The exception message if the job failed.
3685
+ """
3686
+ return pulumi.get(self, "job_exception")
3687
+
3688
+ @property
3689
+ @pulumi.getter(name="jobStatus")
3690
+ def job_status(self) -> Optional[str]:
3691
+ """
3692
+ The status of the job.
3693
+ """
3694
+ return pulumi.get(self, "job_status")
3695
+
3696
+ @property
3697
+ @pulumi.getter(name="sequencerActions")
3698
+ def sequencer_actions(self) -> Optional[Sequence['outputs.SequencerActionResponse']]:
3699
+ """
3700
+ The list of sequencer actions.
3701
+ """
3702
+ return pulumi.get(self, "sequencer_actions")
3703
+
3704
+
3346
3705
  @pulumi.output_type
3347
3706
  class SqlServerInstancePropertiesResponse(dict):
3348
3707
  """
@@ -3656,6 +4015,136 @@ class SqlServerInstanceTelemetryColumnResponse(dict):
3656
4015
  return pulumi.get(self, "type")
3657
4016
 
3658
4017
 
4018
+ @pulumi.output_type
4019
+ class SqlServerLicensePropertiesResponse(dict):
4020
+ """
4021
+ Properties of SQL Server License.
4022
+ """
4023
+ @staticmethod
4024
+ def __key_warning(key: str):
4025
+ suggest = None
4026
+ if key == "activationState":
4027
+ suggest = "activation_state"
4028
+ elif key == "billingPlan":
4029
+ suggest = "billing_plan"
4030
+ elif key == "lastActivatedAt":
4031
+ suggest = "last_activated_at"
4032
+ elif key == "lastDeactivatedAt":
4033
+ suggest = "last_deactivated_at"
4034
+ elif key == "licenseCategory":
4035
+ suggest = "license_category"
4036
+ elif key == "physicalCores":
4037
+ suggest = "physical_cores"
4038
+ elif key == "scopeType":
4039
+ suggest = "scope_type"
4040
+ elif key == "tenantId":
4041
+ suggest = "tenant_id"
4042
+
4043
+ if suggest:
4044
+ pulumi.log.warn(f"Key '{key}' not found in SqlServerLicensePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
4045
+
4046
+ def __getitem__(self, key: str) -> Any:
4047
+ SqlServerLicensePropertiesResponse.__key_warning(key)
4048
+ return super().__getitem__(key)
4049
+
4050
+ def get(self, key: str, default = None) -> Any:
4051
+ SqlServerLicensePropertiesResponse.__key_warning(key)
4052
+ return super().get(key, default)
4053
+
4054
+ def __init__(__self__, *,
4055
+ activation_state: str,
4056
+ billing_plan: str,
4057
+ last_activated_at: str,
4058
+ last_deactivated_at: str,
4059
+ license_category: str,
4060
+ physical_cores: int,
4061
+ scope_type: str,
4062
+ tenant_id: str):
4063
+ """
4064
+ Properties of SQL Server License.
4065
+ :param str activation_state: The activation state of the license.
4066
+ :param str billing_plan: SQL Server license type.
4067
+ :param str last_activated_at: The timestamp of the most recent activation of the SqlServerLicense.
4068
+ :param str last_deactivated_at: The timestamp of the most recent deactivation of the SqlServerLicense.
4069
+ :param str license_category: This property represents the choice between SQL Server Core and ESU licenses.
4070
+ :param int physical_cores: The number of total cores of the license covers.
4071
+ :param str scope_type: The Azure scope to which the license will apply.
4072
+ :param str tenant_id: The tenantId the SQL Server license resource subscription resides in.
4073
+ """
4074
+ pulumi.set(__self__, "activation_state", activation_state)
4075
+ pulumi.set(__self__, "billing_plan", billing_plan)
4076
+ pulumi.set(__self__, "last_activated_at", last_activated_at)
4077
+ pulumi.set(__self__, "last_deactivated_at", last_deactivated_at)
4078
+ pulumi.set(__self__, "license_category", license_category)
4079
+ pulumi.set(__self__, "physical_cores", physical_cores)
4080
+ pulumi.set(__self__, "scope_type", scope_type)
4081
+ pulumi.set(__self__, "tenant_id", tenant_id)
4082
+
4083
+ @property
4084
+ @pulumi.getter(name="activationState")
4085
+ def activation_state(self) -> str:
4086
+ """
4087
+ The activation state of the license.
4088
+ """
4089
+ return pulumi.get(self, "activation_state")
4090
+
4091
+ @property
4092
+ @pulumi.getter(name="billingPlan")
4093
+ def billing_plan(self) -> str:
4094
+ """
4095
+ SQL Server license type.
4096
+ """
4097
+ return pulumi.get(self, "billing_plan")
4098
+
4099
+ @property
4100
+ @pulumi.getter(name="lastActivatedAt")
4101
+ def last_activated_at(self) -> str:
4102
+ """
4103
+ The timestamp of the most recent activation of the SqlServerLicense.
4104
+ """
4105
+ return pulumi.get(self, "last_activated_at")
4106
+
4107
+ @property
4108
+ @pulumi.getter(name="lastDeactivatedAt")
4109
+ def last_deactivated_at(self) -> str:
4110
+ """
4111
+ The timestamp of the most recent deactivation of the SqlServerLicense.
4112
+ """
4113
+ return pulumi.get(self, "last_deactivated_at")
4114
+
4115
+ @property
4116
+ @pulumi.getter(name="licenseCategory")
4117
+ def license_category(self) -> str:
4118
+ """
4119
+ This property represents the choice between SQL Server Core and ESU licenses.
4120
+ """
4121
+ return pulumi.get(self, "license_category")
4122
+
4123
+ @property
4124
+ @pulumi.getter(name="physicalCores")
4125
+ def physical_cores(self) -> int:
4126
+ """
4127
+ The number of total cores of the license covers.
4128
+ """
4129
+ return pulumi.get(self, "physical_cores")
4130
+
4131
+ @property
4132
+ @pulumi.getter(name="scopeType")
4133
+ def scope_type(self) -> str:
4134
+ """
4135
+ The Azure scope to which the license will apply.
4136
+ """
4137
+ return pulumi.get(self, "scope_type")
4138
+
4139
+ @property
4140
+ @pulumi.getter(name="tenantId")
4141
+ def tenant_id(self) -> str:
4142
+ """
4143
+ The tenantId the SQL Server license resource subscription resides in.
4144
+ """
4145
+ return pulumi.get(self, "tenant_id")
4146
+
4147
+
3659
4148
  @pulumi.output_type
3660
4149
  class SystemDataResponse(dict):
3661
4150
  """
@@ -154,7 +154,7 @@ class PostgresInstance(pulumi.CustomResource):
154
154
  A Postgres Instance.
155
155
  Azure REST API version: 2023-01-15-preview. Prior API version in Azure Native 1.x: 2021-06-01-preview.
156
156
 
157
- Other available API versions: 2024-01-01.
157
+ Other available API versions: 2024-01-01, 2024-05-01-preview.
158
158
 
159
159
  :param str resource_name: The name of the resource.
160
160
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -176,7 +176,7 @@ class PostgresInstance(pulumi.CustomResource):
176
176
  A Postgres Instance.
177
177
  Azure REST API version: 2023-01-15-preview. Prior API version in Azure Native 1.x: 2021-06-01-preview.
178
178
 
179
- Other available API versions: 2024-01-01.
179
+ Other available API versions: 2024-01-01, 2024-05-01-preview.
180
180
 
181
181
  :param str resource_name: The name of the resource.
182
182
  :param PostgresInstanceArgs args: The arguments to use to populate this resource's properties.
@@ -223,7 +223,7 @@ class PostgresInstance(pulumi.CustomResource):
223
223
  __props__.__dict__["name"] = None
224
224
  __props__.__dict__["system_data"] = None
225
225
  __props__.__dict__["type"] = None
226
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20210601preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210701preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:PostgresInstance")])
226
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20210601preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210701preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240501preview:PostgresInstance")])
227
227
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
228
228
  super(PostgresInstance, __self__).__init__(
229
229
  'azure-native:azurearcdata:PostgresInstance',
@@ -154,7 +154,7 @@ class SqlManagedInstance(pulumi.CustomResource):
154
154
  A SqlManagedInstance.
155
155
  Azure REST API version: 2023-01-15-preview. Prior API version in Azure Native 1.x: 2021-06-01-preview.
156
156
 
157
- Other available API versions: 2024-01-01.
157
+ Other available API versions: 2024-01-01, 2024-05-01-preview.
158
158
 
159
159
  :param str resource_name: The name of the resource.
160
160
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -176,7 +176,7 @@ class SqlManagedInstance(pulumi.CustomResource):
176
176
  A SqlManagedInstance.
177
177
  Azure REST API version: 2023-01-15-preview. Prior API version in Azure Native 1.x: 2021-06-01-preview.
178
178
 
179
- Other available API versions: 2024-01-01.
179
+ Other available API versions: 2024-01-01, 2024-05-01-preview.
180
180
 
181
181
  :param str resource_name: The name of the resource.
182
182
  :param SqlManagedInstanceArgs args: The arguments to use to populate this resource's properties.
@@ -223,7 +223,7 @@ class SqlManagedInstance(pulumi.CustomResource):
223
223
  __props__.__dict__["name"] = None
224
224
  __props__.__dict__["system_data"] = None
225
225
  __props__.__dict__["type"] = None
226
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20210601preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210701preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210801:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20211101:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:SqlManagedInstance")])
226
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20210601preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210701preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210801:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20211101:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240501preview:SqlManagedInstance")])
227
227
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
228
228
  super(SqlManagedInstance, __self__).__init__(
229
229
  'azure-native:azurearcdata:SqlManagedInstance',
@@ -135,6 +135,8 @@ class SqlServerAvailabilityGroup(pulumi.CustomResource):
135
135
  Arc Sql Server Availability Group
136
136
  Azure REST API version: 2024-01-01.
137
137
 
138
+ Other available API versions: 2024-05-01-preview.
139
+
138
140
  :param str resource_name: The name of the resource.
139
141
  :param pulumi.ResourceOptions opts: Options for the resource.
140
142
  :param pulumi.Input[str] availability_group_name: Name of SQL Availability Group
@@ -154,6 +156,8 @@ class SqlServerAvailabilityGroup(pulumi.CustomResource):
154
156
  Arc Sql Server Availability Group
155
157
  Azure REST API version: 2024-01-01.
156
158
 
159
+ Other available API versions: 2024-05-01-preview.
160
+
157
161
  :param str resource_name: The name of the resource.
158
162
  :param SqlServerAvailabilityGroupArgs args: The arguments to use to populate this resource's properties.
159
163
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -199,7 +203,7 @@ class SqlServerAvailabilityGroup(pulumi.CustomResource):
199
203
  __props__.__dict__["name"] = None
200
204
  __props__.__dict__["system_data"] = None
201
205
  __props__.__dict__["type"] = None
202
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20240101:SqlServerAvailabilityGroup")])
206
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20240101:SqlServerAvailabilityGroup"), pulumi.Alias(type_="azure-native:azurearcdata/v20240501preview:SqlServerAvailabilityGroup")])
203
207
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
204
208
  super(SqlServerAvailabilityGroup, __self__).__init__(
205
209
  'azure-native:azurearcdata:SqlServerAvailabilityGroup',
@@ -136,7 +136,7 @@ class SqlServerDatabase(pulumi.CustomResource):
136
136
  Arc Sql Server database
137
137
  Azure REST API version: 2023-01-15-preview.
138
138
 
139
- Other available API versions: 2024-01-01.
139
+ Other available API versions: 2024-01-01, 2024-05-01-preview.
140
140
 
141
141
  :param str resource_name: The name of the resource.
142
142
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -157,7 +157,7 @@ class SqlServerDatabase(pulumi.CustomResource):
157
157
  Arc Sql Server database
158
158
  Azure REST API version: 2023-01-15-preview.
159
159
 
160
- Other available API versions: 2024-01-01.
160
+ Other available API versions: 2024-01-01, 2024-05-01-preview.
161
161
 
162
162
  :param str resource_name: The name of the resource.
163
163
  :param SqlServerDatabaseArgs args: The arguments to use to populate this resource's properties.
@@ -204,7 +204,7 @@ class SqlServerDatabase(pulumi.CustomResource):
204
204
  __props__.__dict__["name"] = None
205
205
  __props__.__dict__["system_data"] = None
206
206
  __props__.__dict__["type"] = None
207
- alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:SqlServerDatabase"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:SqlServerDatabase"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:SqlServerDatabase")])
207
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:SqlServerDatabase"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:SqlServerDatabase"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:SqlServerDatabase"), pulumi.Alias(type_="azure-native:azurearcdata/v20240501preview:SqlServerDatabase")])
208
208
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
209
209
  super(SqlServerDatabase, __self__).__init__(
210
210
  'azure-native:azurearcdata:SqlServerDatabase',