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