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
@@ -0,0 +1,287 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+
19
+ __all__ = ['AdministratorArgs', 'Administrator']
20
+
21
+ @pulumi.input_type
22
+ class AdministratorArgs:
23
+ def __init__(__self__, *,
24
+ resource_group_name: pulumi.Input[str],
25
+ server_name: pulumi.Input[str],
26
+ object_id: Optional[pulumi.Input[str]] = None,
27
+ principal_name: Optional[pulumi.Input[str]] = None,
28
+ principal_type: Optional[pulumi.Input[Union[str, 'PrincipalType']]] = None,
29
+ tenant_id: Optional[pulumi.Input[str]] = None):
30
+ """
31
+ The set of arguments for constructing a Administrator resource.
32
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
33
+ :param pulumi.Input[str] server_name: The name of the server.
34
+ :param pulumi.Input[str] object_id: Guid of the objectId for the administrator.
35
+ :param pulumi.Input[str] principal_name: Active Directory administrator principal name.
36
+ :param pulumi.Input[Union[str, 'PrincipalType']] principal_type: The principal type used to represent the type of Active Directory Administrator.
37
+ :param pulumi.Input[str] tenant_id: The tenantId of the Active Directory administrator.
38
+ """
39
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
40
+ pulumi.set(__self__, "server_name", server_name)
41
+ if object_id is not None:
42
+ pulumi.set(__self__, "object_id", object_id)
43
+ if principal_name is not None:
44
+ pulumi.set(__self__, "principal_name", principal_name)
45
+ if principal_type is not None:
46
+ pulumi.set(__self__, "principal_type", principal_type)
47
+ if tenant_id is not None:
48
+ pulumi.set(__self__, "tenant_id", tenant_id)
49
+
50
+ @property
51
+ @pulumi.getter(name="resourceGroupName")
52
+ def resource_group_name(self) -> pulumi.Input[str]:
53
+ """
54
+ The name of the resource group. The name is case insensitive.
55
+ """
56
+ return pulumi.get(self, "resource_group_name")
57
+
58
+ @resource_group_name.setter
59
+ def resource_group_name(self, value: pulumi.Input[str]):
60
+ pulumi.set(self, "resource_group_name", value)
61
+
62
+ @property
63
+ @pulumi.getter(name="serverName")
64
+ def server_name(self) -> pulumi.Input[str]:
65
+ """
66
+ The name of the server.
67
+ """
68
+ return pulumi.get(self, "server_name")
69
+
70
+ @server_name.setter
71
+ def server_name(self, value: pulumi.Input[str]):
72
+ pulumi.set(self, "server_name", value)
73
+
74
+ @property
75
+ @pulumi.getter(name="objectId")
76
+ def object_id(self) -> Optional[pulumi.Input[str]]:
77
+ """
78
+ Guid of the objectId for the administrator.
79
+ """
80
+ return pulumi.get(self, "object_id")
81
+
82
+ @object_id.setter
83
+ def object_id(self, value: Optional[pulumi.Input[str]]):
84
+ pulumi.set(self, "object_id", value)
85
+
86
+ @property
87
+ @pulumi.getter(name="principalName")
88
+ def principal_name(self) -> Optional[pulumi.Input[str]]:
89
+ """
90
+ Active Directory administrator principal name.
91
+ """
92
+ return pulumi.get(self, "principal_name")
93
+
94
+ @principal_name.setter
95
+ def principal_name(self, value: Optional[pulumi.Input[str]]):
96
+ pulumi.set(self, "principal_name", value)
97
+
98
+ @property
99
+ @pulumi.getter(name="principalType")
100
+ def principal_type(self) -> Optional[pulumi.Input[Union[str, 'PrincipalType']]]:
101
+ """
102
+ The principal type used to represent the type of Active Directory Administrator.
103
+ """
104
+ return pulumi.get(self, "principal_type")
105
+
106
+ @principal_type.setter
107
+ def principal_type(self, value: Optional[pulumi.Input[Union[str, 'PrincipalType']]]):
108
+ pulumi.set(self, "principal_type", value)
109
+
110
+ @property
111
+ @pulumi.getter(name="tenantId")
112
+ def tenant_id(self) -> Optional[pulumi.Input[str]]:
113
+ """
114
+ The tenantId of the Active Directory administrator.
115
+ """
116
+ return pulumi.get(self, "tenant_id")
117
+
118
+ @tenant_id.setter
119
+ def tenant_id(self, value: Optional[pulumi.Input[str]]):
120
+ pulumi.set(self, "tenant_id", value)
121
+
122
+
123
+ class Administrator(pulumi.CustomResource):
124
+ @overload
125
+ def __init__(__self__,
126
+ resource_name: str,
127
+ opts: Optional[pulumi.ResourceOptions] = None,
128
+ object_id: Optional[pulumi.Input[str]] = None,
129
+ principal_name: Optional[pulumi.Input[str]] = None,
130
+ principal_type: Optional[pulumi.Input[Union[str, 'PrincipalType']]] = None,
131
+ resource_group_name: Optional[pulumi.Input[str]] = None,
132
+ server_name: Optional[pulumi.Input[str]] = None,
133
+ tenant_id: Optional[pulumi.Input[str]] = None,
134
+ __props__=None):
135
+ """
136
+ Represents an Active Directory administrator.
137
+
138
+ :param str resource_name: The name of the resource.
139
+ :param pulumi.ResourceOptions opts: Options for the resource.
140
+ :param pulumi.Input[str] object_id: Guid of the objectId for the administrator.
141
+ :param pulumi.Input[str] principal_name: Active Directory administrator principal name.
142
+ :param pulumi.Input[Union[str, 'PrincipalType']] principal_type: The principal type used to represent the type of Active Directory Administrator.
143
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
144
+ :param pulumi.Input[str] server_name: The name of the server.
145
+ :param pulumi.Input[str] tenant_id: The tenantId of the Active Directory administrator.
146
+ """
147
+ ...
148
+ @overload
149
+ def __init__(__self__,
150
+ resource_name: str,
151
+ args: AdministratorArgs,
152
+ opts: Optional[pulumi.ResourceOptions] = None):
153
+ """
154
+ Represents an Active Directory administrator.
155
+
156
+ :param str resource_name: The name of the resource.
157
+ :param AdministratorArgs args: The arguments to use to populate this resource's properties.
158
+ :param pulumi.ResourceOptions opts: Options for the resource.
159
+ """
160
+ ...
161
+ def __init__(__self__, resource_name: str, *args, **kwargs):
162
+ resource_args, opts = _utilities.get_resource_args_opts(AdministratorArgs, pulumi.ResourceOptions, *args, **kwargs)
163
+ if resource_args is not None:
164
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
165
+ else:
166
+ __self__._internal_init(resource_name, *args, **kwargs)
167
+
168
+ def _internal_init(__self__,
169
+ resource_name: str,
170
+ opts: Optional[pulumi.ResourceOptions] = None,
171
+ object_id: Optional[pulumi.Input[str]] = None,
172
+ principal_name: Optional[pulumi.Input[str]] = None,
173
+ principal_type: Optional[pulumi.Input[Union[str, 'PrincipalType']]] = None,
174
+ resource_group_name: Optional[pulumi.Input[str]] = None,
175
+ server_name: Optional[pulumi.Input[str]] = None,
176
+ tenant_id: Optional[pulumi.Input[str]] = None,
177
+ __props__=None):
178
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
179
+ if not isinstance(opts, pulumi.ResourceOptions):
180
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
181
+ if opts.id is None:
182
+ if __props__ is not None:
183
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
184
+ __props__ = AdministratorArgs.__new__(AdministratorArgs)
185
+
186
+ __props__.__dict__["object_id"] = object_id
187
+ __props__.__dict__["principal_name"] = principal_name
188
+ __props__.__dict__["principal_type"] = principal_type
189
+ if resource_group_name is None and not opts.urn:
190
+ raise TypeError("Missing required property 'resource_group_name'")
191
+ __props__.__dict__["resource_group_name"] = resource_group_name
192
+ if server_name is None and not opts.urn:
193
+ raise TypeError("Missing required property 'server_name'")
194
+ __props__.__dict__["server_name"] = server_name
195
+ __props__.__dict__["tenant_id"] = tenant_id
196
+ __props__.__dict__["name"] = None
197
+ __props__.__dict__["system_data"] = None
198
+ __props__.__dict__["type"] = None
199
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbforpostgresql:Administrator"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20220308preview:Administrator"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20221201:Administrator"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20230301preview:Administrator"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20230601preview:Administrator"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20231201preview:Administrator"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20240301preview:Administrator")])
200
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
201
+ super(Administrator, __self__).__init__(
202
+ 'azure-native:dbforpostgresql/v20240801:Administrator',
203
+ resource_name,
204
+ __props__,
205
+ opts)
206
+
207
+ @staticmethod
208
+ def get(resource_name: str,
209
+ id: pulumi.Input[str],
210
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Administrator':
211
+ """
212
+ Get an existing Administrator resource's state with the given name, id, and optional extra
213
+ properties used to qualify the lookup.
214
+
215
+ :param str resource_name: The unique name of the resulting resource.
216
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
217
+ :param pulumi.ResourceOptions opts: Options for the resource.
218
+ """
219
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
220
+
221
+ __props__ = AdministratorArgs.__new__(AdministratorArgs)
222
+
223
+ __props__.__dict__["name"] = None
224
+ __props__.__dict__["object_id"] = None
225
+ __props__.__dict__["principal_name"] = None
226
+ __props__.__dict__["principal_type"] = None
227
+ __props__.__dict__["system_data"] = None
228
+ __props__.__dict__["tenant_id"] = None
229
+ __props__.__dict__["type"] = None
230
+ return Administrator(resource_name, opts=opts, __props__=__props__)
231
+
232
+ @property
233
+ @pulumi.getter
234
+ def name(self) -> pulumi.Output[str]:
235
+ """
236
+ The name of the resource
237
+ """
238
+ return pulumi.get(self, "name")
239
+
240
+ @property
241
+ @pulumi.getter(name="objectId")
242
+ def object_id(self) -> pulumi.Output[Optional[str]]:
243
+ """
244
+ The objectId of the Active Directory administrator.
245
+ """
246
+ return pulumi.get(self, "object_id")
247
+
248
+ @property
249
+ @pulumi.getter(name="principalName")
250
+ def principal_name(self) -> pulumi.Output[Optional[str]]:
251
+ """
252
+ Active Directory administrator principal name.
253
+ """
254
+ return pulumi.get(self, "principal_name")
255
+
256
+ @property
257
+ @pulumi.getter(name="principalType")
258
+ def principal_type(self) -> pulumi.Output[Optional[str]]:
259
+ """
260
+ The principal type used to represent the type of Active Directory Administrator.
261
+ """
262
+ return pulumi.get(self, "principal_type")
263
+
264
+ @property
265
+ @pulumi.getter(name="systemData")
266
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
267
+ """
268
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
269
+ """
270
+ return pulumi.get(self, "system_data")
271
+
272
+ @property
273
+ @pulumi.getter(name="tenantId")
274
+ def tenant_id(self) -> pulumi.Output[Optional[str]]:
275
+ """
276
+ The tenantId of the Active Directory administrator.
277
+ """
278
+ return pulumi.get(self, "tenant_id")
279
+
280
+ @property
281
+ @pulumi.getter
282
+ def type(self) -> pulumi.Output[str]:
283
+ """
284
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
285
+ """
286
+ return pulumi.get(self, "type")
287
+
@@ -0,0 +1,220 @@
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__ = ['BackupInitArgs', 'Backup']
19
+
20
+ @pulumi.input_type
21
+ class BackupInitArgs:
22
+ def __init__(__self__, *,
23
+ resource_group_name: pulumi.Input[str],
24
+ server_name: pulumi.Input[str],
25
+ backup_name: Optional[pulumi.Input[str]] = None):
26
+ """
27
+ The set of arguments for constructing a Backup resource.
28
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
29
+ :param pulumi.Input[str] server_name: The name of the server.
30
+ :param pulumi.Input[str] backup_name: The name of the backup.
31
+ """
32
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
33
+ pulumi.set(__self__, "server_name", server_name)
34
+ if backup_name is not None:
35
+ pulumi.set(__self__, "backup_name", backup_name)
36
+
37
+ @property
38
+ @pulumi.getter(name="resourceGroupName")
39
+ def resource_group_name(self) -> pulumi.Input[str]:
40
+ """
41
+ The name of the resource group. The name is case insensitive.
42
+ """
43
+ return pulumi.get(self, "resource_group_name")
44
+
45
+ @resource_group_name.setter
46
+ def resource_group_name(self, value: pulumi.Input[str]):
47
+ pulumi.set(self, "resource_group_name", value)
48
+
49
+ @property
50
+ @pulumi.getter(name="serverName")
51
+ def server_name(self) -> pulumi.Input[str]:
52
+ """
53
+ The name of the server.
54
+ """
55
+ return pulumi.get(self, "server_name")
56
+
57
+ @server_name.setter
58
+ def server_name(self, value: pulumi.Input[str]):
59
+ pulumi.set(self, "server_name", value)
60
+
61
+ @property
62
+ @pulumi.getter(name="backupName")
63
+ def backup_name(self) -> Optional[pulumi.Input[str]]:
64
+ """
65
+ The name of the backup.
66
+ """
67
+ return pulumi.get(self, "backup_name")
68
+
69
+ @backup_name.setter
70
+ def backup_name(self, value: Optional[pulumi.Input[str]]):
71
+ pulumi.set(self, "backup_name", value)
72
+
73
+
74
+ class Backup(pulumi.CustomResource):
75
+ @overload
76
+ def __init__(__self__,
77
+ resource_name: str,
78
+ opts: Optional[pulumi.ResourceOptions] = None,
79
+ backup_name: Optional[pulumi.Input[str]] = None,
80
+ resource_group_name: Optional[pulumi.Input[str]] = None,
81
+ server_name: Optional[pulumi.Input[str]] = None,
82
+ __props__=None):
83
+ """
84
+ Server backup properties
85
+
86
+ :param str resource_name: The name of the resource.
87
+ :param pulumi.ResourceOptions opts: Options for the resource.
88
+ :param pulumi.Input[str] backup_name: The name of the backup.
89
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
90
+ :param pulumi.Input[str] server_name: The name of the server.
91
+ """
92
+ ...
93
+ @overload
94
+ def __init__(__self__,
95
+ resource_name: str,
96
+ args: BackupInitArgs,
97
+ opts: Optional[pulumi.ResourceOptions] = None):
98
+ """
99
+ Server backup properties
100
+
101
+ :param str resource_name: The name of the resource.
102
+ :param BackupInitArgs args: The arguments to use to populate this resource's properties.
103
+ :param pulumi.ResourceOptions opts: Options for the resource.
104
+ """
105
+ ...
106
+ def __init__(__self__, resource_name: str, *args, **kwargs):
107
+ resource_args, opts = _utilities.get_resource_args_opts(BackupInitArgs, pulumi.ResourceOptions, *args, **kwargs)
108
+ if resource_args is not None:
109
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
110
+ else:
111
+ __self__._internal_init(resource_name, *args, **kwargs)
112
+
113
+ def _internal_init(__self__,
114
+ resource_name: str,
115
+ opts: Optional[pulumi.ResourceOptions] = None,
116
+ backup_name: Optional[pulumi.Input[str]] = None,
117
+ resource_group_name: Optional[pulumi.Input[str]] = None,
118
+ server_name: Optional[pulumi.Input[str]] = None,
119
+ __props__=None):
120
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
121
+ if not isinstance(opts, pulumi.ResourceOptions):
122
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
123
+ if opts.id is None:
124
+ if __props__ is not None:
125
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
126
+ __props__ = BackupInitArgs.__new__(BackupInitArgs)
127
+
128
+ __props__.__dict__["backup_name"] = backup_name
129
+ if resource_group_name is None and not opts.urn:
130
+ raise TypeError("Missing required property 'resource_group_name'")
131
+ __props__.__dict__["resource_group_name"] = resource_group_name
132
+ if server_name is None and not opts.urn:
133
+ raise TypeError("Missing required property 'server_name'")
134
+ __props__.__dict__["server_name"] = server_name
135
+ __props__.__dict__["backup_type"] = None
136
+ __props__.__dict__["completed_time"] = None
137
+ __props__.__dict__["name"] = None
138
+ __props__.__dict__["source"] = None
139
+ __props__.__dict__["system_data"] = None
140
+ __props__.__dict__["type"] = None
141
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbforpostgresql:Backup"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20240301preview:Backup")])
142
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
143
+ super(Backup, __self__).__init__(
144
+ 'azure-native:dbforpostgresql/v20240801:Backup',
145
+ resource_name,
146
+ __props__,
147
+ opts)
148
+
149
+ @staticmethod
150
+ def get(resource_name: str,
151
+ id: pulumi.Input[str],
152
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Backup':
153
+ """
154
+ Get an existing Backup resource's state with the given name, id, and optional extra
155
+ properties used to qualify the lookup.
156
+
157
+ :param str resource_name: The unique name of the resulting resource.
158
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
159
+ :param pulumi.ResourceOptions opts: Options for the resource.
160
+ """
161
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
162
+
163
+ __props__ = BackupInitArgs.__new__(BackupInitArgs)
164
+
165
+ __props__.__dict__["backup_type"] = None
166
+ __props__.__dict__["completed_time"] = None
167
+ __props__.__dict__["name"] = None
168
+ __props__.__dict__["source"] = None
169
+ __props__.__dict__["system_data"] = None
170
+ __props__.__dict__["type"] = None
171
+ return Backup(resource_name, opts=opts, __props__=__props__)
172
+
173
+ @property
174
+ @pulumi.getter(name="backupType")
175
+ def backup_type(self) -> pulumi.Output[Optional[str]]:
176
+ """
177
+ Backup type.
178
+ """
179
+ return pulumi.get(self, "backup_type")
180
+
181
+ @property
182
+ @pulumi.getter(name="completedTime")
183
+ def completed_time(self) -> pulumi.Output[Optional[str]]:
184
+ """
185
+ Backup completed time (ISO8601 format).
186
+ """
187
+ return pulumi.get(self, "completed_time")
188
+
189
+ @property
190
+ @pulumi.getter
191
+ def name(self) -> pulumi.Output[str]:
192
+ """
193
+ The name of the resource
194
+ """
195
+ return pulumi.get(self, "name")
196
+
197
+ @property
198
+ @pulumi.getter
199
+ def source(self) -> pulumi.Output[Optional[str]]:
200
+ """
201
+ Backup source
202
+ """
203
+ return pulumi.get(self, "source")
204
+
205
+ @property
206
+ @pulumi.getter(name="systemData")
207
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
208
+ """
209
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
210
+ """
211
+ return pulumi.get(self, "system_data")
212
+
213
+ @property
214
+ @pulumi.getter
215
+ def type(self) -> pulumi.Output[str]:
216
+ """
217
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
218
+ """
219
+ return pulumi.get(self, "type")
220
+