pulumi-azure-native 2.64.3__py3-none-any.whl → 2.65.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (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.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/METADATA +1 -1
  271. {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/RECORD +273 -164
  272. {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/WHEEL +0 -0
  273. {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1907 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from ... import _utilities
16
+ from . import outputs
17
+ from ._enums import *
18
+
19
+ __all__ = [
20
+ 'AuthConfigResponse',
21
+ 'BackupResponse',
22
+ 'DataEncryptionResponse',
23
+ 'DbLevelValidationStatusResponse',
24
+ 'DbMigrationStatusResponse',
25
+ 'DbServerMetadataResponse',
26
+ 'HighAvailabilityResponse',
27
+ 'MaintenanceWindowResponse',
28
+ 'MigrationStatusResponse',
29
+ 'MigrationSubStateDetailsResponse',
30
+ 'NetworkResponse',
31
+ 'PrivateEndpointConnectionResponse',
32
+ 'PrivateEndpointResponse',
33
+ 'PrivateLinkServiceConnectionStateResponse',
34
+ 'ReplicaResponse',
35
+ 'ServerSkuResponse',
36
+ 'SkuResponse',
37
+ 'StorageResponse',
38
+ 'SystemDataResponse',
39
+ 'UserAssignedIdentityResponse',
40
+ 'UserIdentityResponse',
41
+ 'ValidationDetailsResponse',
42
+ 'ValidationMessageResponse',
43
+ 'ValidationSummaryItemResponse',
44
+ ]
45
+
46
+ @pulumi.output_type
47
+ class AuthConfigResponse(dict):
48
+ """
49
+ Authentication configuration properties of a server
50
+ """
51
+ @staticmethod
52
+ def __key_warning(key: str):
53
+ suggest = None
54
+ if key == "activeDirectoryAuth":
55
+ suggest = "active_directory_auth"
56
+ elif key == "passwordAuth":
57
+ suggest = "password_auth"
58
+ elif key == "tenantId":
59
+ suggest = "tenant_id"
60
+
61
+ if suggest:
62
+ pulumi.log.warn(f"Key '{key}' not found in AuthConfigResponse. Access the value via the '{suggest}' property getter instead.")
63
+
64
+ def __getitem__(self, key: str) -> Any:
65
+ AuthConfigResponse.__key_warning(key)
66
+ return super().__getitem__(key)
67
+
68
+ def get(self, key: str, default = None) -> Any:
69
+ AuthConfigResponse.__key_warning(key)
70
+ return super().get(key, default)
71
+
72
+ def __init__(__self__, *,
73
+ active_directory_auth: Optional[str] = None,
74
+ password_auth: Optional[str] = None,
75
+ tenant_id: Optional[str] = None):
76
+ """
77
+ Authentication configuration properties of a server
78
+ :param str active_directory_auth: If Enabled, Azure Active Directory authentication is enabled.
79
+ :param str password_auth: If Enabled, Password authentication is enabled.
80
+ :param str tenant_id: Tenant id of the server.
81
+ """
82
+ if active_directory_auth is not None:
83
+ pulumi.set(__self__, "active_directory_auth", active_directory_auth)
84
+ if password_auth is None:
85
+ password_auth = 'Enabled'
86
+ if password_auth is not None:
87
+ pulumi.set(__self__, "password_auth", password_auth)
88
+ if tenant_id is None:
89
+ tenant_id = ''
90
+ if tenant_id is not None:
91
+ pulumi.set(__self__, "tenant_id", tenant_id)
92
+
93
+ @property
94
+ @pulumi.getter(name="activeDirectoryAuth")
95
+ def active_directory_auth(self) -> Optional[str]:
96
+ """
97
+ If Enabled, Azure Active Directory authentication is enabled.
98
+ """
99
+ return pulumi.get(self, "active_directory_auth")
100
+
101
+ @property
102
+ @pulumi.getter(name="passwordAuth")
103
+ def password_auth(self) -> Optional[str]:
104
+ """
105
+ If Enabled, Password authentication is enabled.
106
+ """
107
+ return pulumi.get(self, "password_auth")
108
+
109
+ @property
110
+ @pulumi.getter(name="tenantId")
111
+ def tenant_id(self) -> Optional[str]:
112
+ """
113
+ Tenant id of the server.
114
+ """
115
+ return pulumi.get(self, "tenant_id")
116
+
117
+
118
+ @pulumi.output_type
119
+ class BackupResponse(dict):
120
+ """
121
+ Backup properties of a server
122
+ """
123
+ @staticmethod
124
+ def __key_warning(key: str):
125
+ suggest = None
126
+ if key == "earliestRestoreDate":
127
+ suggest = "earliest_restore_date"
128
+ elif key == "backupRetentionDays":
129
+ suggest = "backup_retention_days"
130
+ elif key == "geoRedundantBackup":
131
+ suggest = "geo_redundant_backup"
132
+
133
+ if suggest:
134
+ pulumi.log.warn(f"Key '{key}' not found in BackupResponse. Access the value via the '{suggest}' property getter instead.")
135
+
136
+ def __getitem__(self, key: str) -> Any:
137
+ BackupResponse.__key_warning(key)
138
+ return super().__getitem__(key)
139
+
140
+ def get(self, key: str, default = None) -> Any:
141
+ BackupResponse.__key_warning(key)
142
+ return super().get(key, default)
143
+
144
+ def __init__(__self__, *,
145
+ earliest_restore_date: str,
146
+ backup_retention_days: Optional[int] = None,
147
+ geo_redundant_backup: Optional[str] = None):
148
+ """
149
+ Backup properties of a server
150
+ :param str earliest_restore_date: The earliest restore point time (ISO8601 format) for server.
151
+ :param int backup_retention_days: Backup retention days for the server.
152
+ :param str geo_redundant_backup: A value indicating whether Geo-Redundant backup is enabled on the server.
153
+ """
154
+ pulumi.set(__self__, "earliest_restore_date", earliest_restore_date)
155
+ if backup_retention_days is None:
156
+ backup_retention_days = 7
157
+ if backup_retention_days is not None:
158
+ pulumi.set(__self__, "backup_retention_days", backup_retention_days)
159
+ if geo_redundant_backup is None:
160
+ geo_redundant_backup = 'Disabled'
161
+ if geo_redundant_backup is not None:
162
+ pulumi.set(__self__, "geo_redundant_backup", geo_redundant_backup)
163
+
164
+ @property
165
+ @pulumi.getter(name="earliestRestoreDate")
166
+ def earliest_restore_date(self) -> str:
167
+ """
168
+ The earliest restore point time (ISO8601 format) for server.
169
+ """
170
+ return pulumi.get(self, "earliest_restore_date")
171
+
172
+ @property
173
+ @pulumi.getter(name="backupRetentionDays")
174
+ def backup_retention_days(self) -> Optional[int]:
175
+ """
176
+ Backup retention days for the server.
177
+ """
178
+ return pulumi.get(self, "backup_retention_days")
179
+
180
+ @property
181
+ @pulumi.getter(name="geoRedundantBackup")
182
+ def geo_redundant_backup(self) -> Optional[str]:
183
+ """
184
+ A value indicating whether Geo-Redundant backup is enabled on the server.
185
+ """
186
+ return pulumi.get(self, "geo_redundant_backup")
187
+
188
+
189
+ @pulumi.output_type
190
+ class DataEncryptionResponse(dict):
191
+ """
192
+ Data encryption properties of a server
193
+ """
194
+ @staticmethod
195
+ def __key_warning(key: str):
196
+ suggest = None
197
+ if key == "geoBackupEncryptionKeyStatus":
198
+ suggest = "geo_backup_encryption_key_status"
199
+ elif key == "geoBackupKeyURI":
200
+ suggest = "geo_backup_key_uri"
201
+ elif key == "geoBackupUserAssignedIdentityId":
202
+ suggest = "geo_backup_user_assigned_identity_id"
203
+ elif key == "primaryEncryptionKeyStatus":
204
+ suggest = "primary_encryption_key_status"
205
+ elif key == "primaryKeyURI":
206
+ suggest = "primary_key_uri"
207
+ elif key == "primaryUserAssignedIdentityId":
208
+ suggest = "primary_user_assigned_identity_id"
209
+
210
+ if suggest:
211
+ pulumi.log.warn(f"Key '{key}' not found in DataEncryptionResponse. Access the value via the '{suggest}' property getter instead.")
212
+
213
+ def __getitem__(self, key: str) -> Any:
214
+ DataEncryptionResponse.__key_warning(key)
215
+ return super().__getitem__(key)
216
+
217
+ def get(self, key: str, default = None) -> Any:
218
+ DataEncryptionResponse.__key_warning(key)
219
+ return super().get(key, default)
220
+
221
+ def __init__(__self__, *,
222
+ geo_backup_encryption_key_status: Optional[str] = None,
223
+ geo_backup_key_uri: Optional[str] = None,
224
+ geo_backup_user_assigned_identity_id: Optional[str] = None,
225
+ primary_encryption_key_status: Optional[str] = None,
226
+ primary_key_uri: Optional[str] = None,
227
+ primary_user_assigned_identity_id: Optional[str] = None,
228
+ type: Optional[str] = None):
229
+ """
230
+ Data encryption properties of a server
231
+ :param str geo_backup_encryption_key_status: Geo-backup encryption key status for Data encryption enabled server.
232
+ :param str geo_backup_key_uri: URI for the key in keyvault for data encryption for geo-backup of server.
233
+ :param str geo_backup_user_assigned_identity_id: Resource Id for the User assigned identity to be used for data encryption for geo-backup of server.
234
+ :param str primary_encryption_key_status: Primary encryption key status for Data encryption enabled server.
235
+ :param str primary_key_uri: URI for the key in keyvault for data encryption of the primary server.
236
+ :param str primary_user_assigned_identity_id: Resource Id for the User assigned identity to be used for data encryption of the primary server.
237
+ :param str type: Data encryption type to depict if it is System Managed vs Azure Key vault.
238
+ """
239
+ if geo_backup_encryption_key_status is not None:
240
+ pulumi.set(__self__, "geo_backup_encryption_key_status", geo_backup_encryption_key_status)
241
+ if geo_backup_key_uri is not None:
242
+ pulumi.set(__self__, "geo_backup_key_uri", geo_backup_key_uri)
243
+ if geo_backup_user_assigned_identity_id is not None:
244
+ pulumi.set(__self__, "geo_backup_user_assigned_identity_id", geo_backup_user_assigned_identity_id)
245
+ if primary_encryption_key_status is not None:
246
+ pulumi.set(__self__, "primary_encryption_key_status", primary_encryption_key_status)
247
+ if primary_key_uri is not None:
248
+ pulumi.set(__self__, "primary_key_uri", primary_key_uri)
249
+ if primary_user_assigned_identity_id is not None:
250
+ pulumi.set(__self__, "primary_user_assigned_identity_id", primary_user_assigned_identity_id)
251
+ if type is not None:
252
+ pulumi.set(__self__, "type", type)
253
+
254
+ @property
255
+ @pulumi.getter(name="geoBackupEncryptionKeyStatus")
256
+ def geo_backup_encryption_key_status(self) -> Optional[str]:
257
+ """
258
+ Geo-backup encryption key status for Data encryption enabled server.
259
+ """
260
+ return pulumi.get(self, "geo_backup_encryption_key_status")
261
+
262
+ @property
263
+ @pulumi.getter(name="geoBackupKeyURI")
264
+ def geo_backup_key_uri(self) -> Optional[str]:
265
+ """
266
+ URI for the key in keyvault for data encryption for geo-backup of server.
267
+ """
268
+ return pulumi.get(self, "geo_backup_key_uri")
269
+
270
+ @property
271
+ @pulumi.getter(name="geoBackupUserAssignedIdentityId")
272
+ def geo_backup_user_assigned_identity_id(self) -> Optional[str]:
273
+ """
274
+ Resource Id for the User assigned identity to be used for data encryption for geo-backup of server.
275
+ """
276
+ return pulumi.get(self, "geo_backup_user_assigned_identity_id")
277
+
278
+ @property
279
+ @pulumi.getter(name="primaryEncryptionKeyStatus")
280
+ def primary_encryption_key_status(self) -> Optional[str]:
281
+ """
282
+ Primary encryption key status for Data encryption enabled server.
283
+ """
284
+ return pulumi.get(self, "primary_encryption_key_status")
285
+
286
+ @property
287
+ @pulumi.getter(name="primaryKeyURI")
288
+ def primary_key_uri(self) -> Optional[str]:
289
+ """
290
+ URI for the key in keyvault for data encryption of the primary server.
291
+ """
292
+ return pulumi.get(self, "primary_key_uri")
293
+
294
+ @property
295
+ @pulumi.getter(name="primaryUserAssignedIdentityId")
296
+ def primary_user_assigned_identity_id(self) -> Optional[str]:
297
+ """
298
+ Resource Id for the User assigned identity to be used for data encryption of the primary server.
299
+ """
300
+ return pulumi.get(self, "primary_user_assigned_identity_id")
301
+
302
+ @property
303
+ @pulumi.getter
304
+ def type(self) -> Optional[str]:
305
+ """
306
+ Data encryption type to depict if it is System Managed vs Azure Key vault.
307
+ """
308
+ return pulumi.get(self, "type")
309
+
310
+
311
+ @pulumi.output_type
312
+ class DbLevelValidationStatusResponse(dict):
313
+ """
314
+ Validation status summary for an individual database
315
+ """
316
+ @staticmethod
317
+ def __key_warning(key: str):
318
+ suggest = None
319
+ if key == "databaseName":
320
+ suggest = "database_name"
321
+ elif key == "endedOn":
322
+ suggest = "ended_on"
323
+ elif key == "startedOn":
324
+ suggest = "started_on"
325
+
326
+ if suggest:
327
+ pulumi.log.warn(f"Key '{key}' not found in DbLevelValidationStatusResponse. Access the value via the '{suggest}' property getter instead.")
328
+
329
+ def __getitem__(self, key: str) -> Any:
330
+ DbLevelValidationStatusResponse.__key_warning(key)
331
+ return super().__getitem__(key)
332
+
333
+ def get(self, key: str, default = None) -> Any:
334
+ DbLevelValidationStatusResponse.__key_warning(key)
335
+ return super().get(key, default)
336
+
337
+ def __init__(__self__, *,
338
+ database_name: Optional[str] = None,
339
+ ended_on: Optional[str] = None,
340
+ started_on: Optional[str] = None,
341
+ summary: Optional[Sequence['outputs.ValidationSummaryItemResponse']] = None):
342
+ """
343
+ Validation status summary for an individual database
344
+ :param str database_name: Name of the database
345
+ :param str ended_on: End date-time of a database level validation
346
+ :param str started_on: Start date-time of a database level validation
347
+ :param Sequence['ValidationSummaryItemResponse'] summary: Summary of database level validations
348
+ """
349
+ if database_name is not None:
350
+ pulumi.set(__self__, "database_name", database_name)
351
+ if ended_on is not None:
352
+ pulumi.set(__self__, "ended_on", ended_on)
353
+ if started_on is not None:
354
+ pulumi.set(__self__, "started_on", started_on)
355
+ if summary is not None:
356
+ pulumi.set(__self__, "summary", summary)
357
+
358
+ @property
359
+ @pulumi.getter(name="databaseName")
360
+ def database_name(self) -> Optional[str]:
361
+ """
362
+ Name of the database
363
+ """
364
+ return pulumi.get(self, "database_name")
365
+
366
+ @property
367
+ @pulumi.getter(name="endedOn")
368
+ def ended_on(self) -> Optional[str]:
369
+ """
370
+ End date-time of a database level validation
371
+ """
372
+ return pulumi.get(self, "ended_on")
373
+
374
+ @property
375
+ @pulumi.getter(name="startedOn")
376
+ def started_on(self) -> Optional[str]:
377
+ """
378
+ Start date-time of a database level validation
379
+ """
380
+ return pulumi.get(self, "started_on")
381
+
382
+ @property
383
+ @pulumi.getter
384
+ def summary(self) -> Optional[Sequence['outputs.ValidationSummaryItemResponse']]:
385
+ """
386
+ Summary of database level validations
387
+ """
388
+ return pulumi.get(self, "summary")
389
+
390
+
391
+ @pulumi.output_type
392
+ class DbMigrationStatusResponse(dict):
393
+ """
394
+ Migration status of an individual database
395
+ """
396
+ @staticmethod
397
+ def __key_warning(key: str):
398
+ suggest = None
399
+ if key == "appliedChanges":
400
+ suggest = "applied_changes"
401
+ elif key == "cdcDeleteCounter":
402
+ suggest = "cdc_delete_counter"
403
+ elif key == "cdcInsertCounter":
404
+ suggest = "cdc_insert_counter"
405
+ elif key == "cdcUpdateCounter":
406
+ suggest = "cdc_update_counter"
407
+ elif key == "databaseName":
408
+ suggest = "database_name"
409
+ elif key == "endedOn":
410
+ suggest = "ended_on"
411
+ elif key == "fullLoadCompletedTables":
412
+ suggest = "full_load_completed_tables"
413
+ elif key == "fullLoadErroredTables":
414
+ suggest = "full_load_errored_tables"
415
+ elif key == "fullLoadLoadingTables":
416
+ suggest = "full_load_loading_tables"
417
+ elif key == "fullLoadQueuedTables":
418
+ suggest = "full_load_queued_tables"
419
+ elif key == "incomingChanges":
420
+ suggest = "incoming_changes"
421
+ elif key == "migrationOperation":
422
+ suggest = "migration_operation"
423
+ elif key == "migrationState":
424
+ suggest = "migration_state"
425
+ elif key == "startedOn":
426
+ suggest = "started_on"
427
+
428
+ if suggest:
429
+ pulumi.log.warn(f"Key '{key}' not found in DbMigrationStatusResponse. Access the value via the '{suggest}' property getter instead.")
430
+
431
+ def __getitem__(self, key: str) -> Any:
432
+ DbMigrationStatusResponse.__key_warning(key)
433
+ return super().__getitem__(key)
434
+
435
+ def get(self, key: str, default = None) -> Any:
436
+ DbMigrationStatusResponse.__key_warning(key)
437
+ return super().get(key, default)
438
+
439
+ def __init__(__self__, *,
440
+ applied_changes: Optional[int] = None,
441
+ cdc_delete_counter: Optional[int] = None,
442
+ cdc_insert_counter: Optional[int] = None,
443
+ cdc_update_counter: Optional[int] = None,
444
+ database_name: Optional[str] = None,
445
+ ended_on: Optional[str] = None,
446
+ full_load_completed_tables: Optional[int] = None,
447
+ full_load_errored_tables: Optional[int] = None,
448
+ full_load_loading_tables: Optional[int] = None,
449
+ full_load_queued_tables: Optional[int] = None,
450
+ incoming_changes: Optional[int] = None,
451
+ latency: Optional[int] = None,
452
+ message: Optional[str] = None,
453
+ migration_operation: Optional[str] = None,
454
+ migration_state: Optional[str] = None,
455
+ started_on: Optional[str] = None):
456
+ """
457
+ Migration status of an individual database
458
+ :param int applied_changes: CDC applied changes counter
459
+ :param int cdc_delete_counter: CDC delete counter
460
+ :param int cdc_insert_counter: CDC insert counter
461
+ :param int cdc_update_counter: CDC update counter
462
+ :param str database_name: Name of the database
463
+ :param str ended_on: End date-time of a migration state
464
+ :param int full_load_completed_tables: Number of tables loaded during the migration of a DB
465
+ :param int full_load_errored_tables: Number of tables errored out during the migration of a DB
466
+ :param int full_load_loading_tables: Number of tables loading during the migration of a DB
467
+ :param int full_load_queued_tables: Number of tables queued for the migration of a DB
468
+ :param int incoming_changes: CDC incoming changes counter
469
+ :param int latency: Lag in seconds between source and target during online phase
470
+ :param str message: Error message, if any, for the migration state
471
+ :param str migration_operation: Migration operation of an individual database
472
+ :param str migration_state: Migration db state of an individual database
473
+ :param str started_on: Start date-time of a migration state
474
+ """
475
+ if applied_changes is not None:
476
+ pulumi.set(__self__, "applied_changes", applied_changes)
477
+ if cdc_delete_counter is not None:
478
+ pulumi.set(__self__, "cdc_delete_counter", cdc_delete_counter)
479
+ if cdc_insert_counter is not None:
480
+ pulumi.set(__self__, "cdc_insert_counter", cdc_insert_counter)
481
+ if cdc_update_counter is not None:
482
+ pulumi.set(__self__, "cdc_update_counter", cdc_update_counter)
483
+ if database_name is not None:
484
+ pulumi.set(__self__, "database_name", database_name)
485
+ if ended_on is not None:
486
+ pulumi.set(__self__, "ended_on", ended_on)
487
+ if full_load_completed_tables is not None:
488
+ pulumi.set(__self__, "full_load_completed_tables", full_load_completed_tables)
489
+ if full_load_errored_tables is not None:
490
+ pulumi.set(__self__, "full_load_errored_tables", full_load_errored_tables)
491
+ if full_load_loading_tables is not None:
492
+ pulumi.set(__self__, "full_load_loading_tables", full_load_loading_tables)
493
+ if full_load_queued_tables is not None:
494
+ pulumi.set(__self__, "full_load_queued_tables", full_load_queued_tables)
495
+ if incoming_changes is not None:
496
+ pulumi.set(__self__, "incoming_changes", incoming_changes)
497
+ if latency is not None:
498
+ pulumi.set(__self__, "latency", latency)
499
+ if message is not None:
500
+ pulumi.set(__self__, "message", message)
501
+ if migration_operation is not None:
502
+ pulumi.set(__self__, "migration_operation", migration_operation)
503
+ if migration_state is not None:
504
+ pulumi.set(__self__, "migration_state", migration_state)
505
+ if started_on is not None:
506
+ pulumi.set(__self__, "started_on", started_on)
507
+
508
+ @property
509
+ @pulumi.getter(name="appliedChanges")
510
+ def applied_changes(self) -> Optional[int]:
511
+ """
512
+ CDC applied changes counter
513
+ """
514
+ return pulumi.get(self, "applied_changes")
515
+
516
+ @property
517
+ @pulumi.getter(name="cdcDeleteCounter")
518
+ def cdc_delete_counter(self) -> Optional[int]:
519
+ """
520
+ CDC delete counter
521
+ """
522
+ return pulumi.get(self, "cdc_delete_counter")
523
+
524
+ @property
525
+ @pulumi.getter(name="cdcInsertCounter")
526
+ def cdc_insert_counter(self) -> Optional[int]:
527
+ """
528
+ CDC insert counter
529
+ """
530
+ return pulumi.get(self, "cdc_insert_counter")
531
+
532
+ @property
533
+ @pulumi.getter(name="cdcUpdateCounter")
534
+ def cdc_update_counter(self) -> Optional[int]:
535
+ """
536
+ CDC update counter
537
+ """
538
+ return pulumi.get(self, "cdc_update_counter")
539
+
540
+ @property
541
+ @pulumi.getter(name="databaseName")
542
+ def database_name(self) -> Optional[str]:
543
+ """
544
+ Name of the database
545
+ """
546
+ return pulumi.get(self, "database_name")
547
+
548
+ @property
549
+ @pulumi.getter(name="endedOn")
550
+ def ended_on(self) -> Optional[str]:
551
+ """
552
+ End date-time of a migration state
553
+ """
554
+ return pulumi.get(self, "ended_on")
555
+
556
+ @property
557
+ @pulumi.getter(name="fullLoadCompletedTables")
558
+ def full_load_completed_tables(self) -> Optional[int]:
559
+ """
560
+ Number of tables loaded during the migration of a DB
561
+ """
562
+ return pulumi.get(self, "full_load_completed_tables")
563
+
564
+ @property
565
+ @pulumi.getter(name="fullLoadErroredTables")
566
+ def full_load_errored_tables(self) -> Optional[int]:
567
+ """
568
+ Number of tables errored out during the migration of a DB
569
+ """
570
+ return pulumi.get(self, "full_load_errored_tables")
571
+
572
+ @property
573
+ @pulumi.getter(name="fullLoadLoadingTables")
574
+ def full_load_loading_tables(self) -> Optional[int]:
575
+ """
576
+ Number of tables loading during the migration of a DB
577
+ """
578
+ return pulumi.get(self, "full_load_loading_tables")
579
+
580
+ @property
581
+ @pulumi.getter(name="fullLoadQueuedTables")
582
+ def full_load_queued_tables(self) -> Optional[int]:
583
+ """
584
+ Number of tables queued for the migration of a DB
585
+ """
586
+ return pulumi.get(self, "full_load_queued_tables")
587
+
588
+ @property
589
+ @pulumi.getter(name="incomingChanges")
590
+ def incoming_changes(self) -> Optional[int]:
591
+ """
592
+ CDC incoming changes counter
593
+ """
594
+ return pulumi.get(self, "incoming_changes")
595
+
596
+ @property
597
+ @pulumi.getter
598
+ def latency(self) -> Optional[int]:
599
+ """
600
+ Lag in seconds between source and target during online phase
601
+ """
602
+ return pulumi.get(self, "latency")
603
+
604
+ @property
605
+ @pulumi.getter
606
+ def message(self) -> Optional[str]:
607
+ """
608
+ Error message, if any, for the migration state
609
+ """
610
+ return pulumi.get(self, "message")
611
+
612
+ @property
613
+ @pulumi.getter(name="migrationOperation")
614
+ def migration_operation(self) -> Optional[str]:
615
+ """
616
+ Migration operation of an individual database
617
+ """
618
+ return pulumi.get(self, "migration_operation")
619
+
620
+ @property
621
+ @pulumi.getter(name="migrationState")
622
+ def migration_state(self) -> Optional[str]:
623
+ """
624
+ Migration db state of an individual database
625
+ """
626
+ return pulumi.get(self, "migration_state")
627
+
628
+ @property
629
+ @pulumi.getter(name="startedOn")
630
+ def started_on(self) -> Optional[str]:
631
+ """
632
+ Start date-time of a migration state
633
+ """
634
+ return pulumi.get(self, "started_on")
635
+
636
+
637
+ @pulumi.output_type
638
+ class DbServerMetadataResponse(dict):
639
+ """
640
+ Database server metadata.
641
+ """
642
+ @staticmethod
643
+ def __key_warning(key: str):
644
+ suggest = None
645
+ if key == "storageMb":
646
+ suggest = "storage_mb"
647
+
648
+ if suggest:
649
+ pulumi.log.warn(f"Key '{key}' not found in DbServerMetadataResponse. Access the value via the '{suggest}' property getter instead.")
650
+
651
+ def __getitem__(self, key: str) -> Any:
652
+ DbServerMetadataResponse.__key_warning(key)
653
+ return super().__getitem__(key)
654
+
655
+ def get(self, key: str, default = None) -> Any:
656
+ DbServerMetadataResponse.__key_warning(key)
657
+ return super().get(key, default)
658
+
659
+ def __init__(__self__, *,
660
+ location: str,
661
+ sku: Optional['outputs.ServerSkuResponse'] = None,
662
+ storage_mb: Optional[int] = None,
663
+ version: Optional[str] = None):
664
+ """
665
+ Database server metadata.
666
+ :param str location: Location of database server
667
+ :param 'ServerSkuResponse' sku: SKU for the database server. This object is empty for PG single server
668
+ :param int storage_mb: Storage size in MB for database server
669
+ :param str version: Version for database engine
670
+ """
671
+ pulumi.set(__self__, "location", location)
672
+ if sku is not None:
673
+ pulumi.set(__self__, "sku", sku)
674
+ if storage_mb is not None:
675
+ pulumi.set(__self__, "storage_mb", storage_mb)
676
+ if version is not None:
677
+ pulumi.set(__self__, "version", version)
678
+
679
+ @property
680
+ @pulumi.getter
681
+ def location(self) -> str:
682
+ """
683
+ Location of database server
684
+ """
685
+ return pulumi.get(self, "location")
686
+
687
+ @property
688
+ @pulumi.getter
689
+ def sku(self) -> Optional['outputs.ServerSkuResponse']:
690
+ """
691
+ SKU for the database server. This object is empty for PG single server
692
+ """
693
+ return pulumi.get(self, "sku")
694
+
695
+ @property
696
+ @pulumi.getter(name="storageMb")
697
+ def storage_mb(self) -> Optional[int]:
698
+ """
699
+ Storage size in MB for database server
700
+ """
701
+ return pulumi.get(self, "storage_mb")
702
+
703
+ @property
704
+ @pulumi.getter
705
+ def version(self) -> Optional[str]:
706
+ """
707
+ Version for database engine
708
+ """
709
+ return pulumi.get(self, "version")
710
+
711
+
712
+ @pulumi.output_type
713
+ class HighAvailabilityResponse(dict):
714
+ """
715
+ High availability properties of a server
716
+ """
717
+ @staticmethod
718
+ def __key_warning(key: str):
719
+ suggest = None
720
+ if key == "standbyAvailabilityZone":
721
+ suggest = "standby_availability_zone"
722
+
723
+ if suggest:
724
+ pulumi.log.warn(f"Key '{key}' not found in HighAvailabilityResponse. Access the value via the '{suggest}' property getter instead.")
725
+
726
+ def __getitem__(self, key: str) -> Any:
727
+ HighAvailabilityResponse.__key_warning(key)
728
+ return super().__getitem__(key)
729
+
730
+ def get(self, key: str, default = None) -> Any:
731
+ HighAvailabilityResponse.__key_warning(key)
732
+ return super().get(key, default)
733
+
734
+ def __init__(__self__, *,
735
+ state: str,
736
+ mode: Optional[str] = None,
737
+ standby_availability_zone: Optional[str] = None):
738
+ """
739
+ High availability properties of a server
740
+ :param str state: A state of a HA server that is visible to user.
741
+ :param str mode: The HA mode for the server.
742
+ :param str standby_availability_zone: availability zone information of the standby.
743
+ """
744
+ pulumi.set(__self__, "state", state)
745
+ if mode is None:
746
+ mode = 'Disabled'
747
+ if mode is not None:
748
+ pulumi.set(__self__, "mode", mode)
749
+ if standby_availability_zone is None:
750
+ standby_availability_zone = ''
751
+ if standby_availability_zone is not None:
752
+ pulumi.set(__self__, "standby_availability_zone", standby_availability_zone)
753
+
754
+ @property
755
+ @pulumi.getter
756
+ def state(self) -> str:
757
+ """
758
+ A state of a HA server that is visible to user.
759
+ """
760
+ return pulumi.get(self, "state")
761
+
762
+ @property
763
+ @pulumi.getter
764
+ def mode(self) -> Optional[str]:
765
+ """
766
+ The HA mode for the server.
767
+ """
768
+ return pulumi.get(self, "mode")
769
+
770
+ @property
771
+ @pulumi.getter(name="standbyAvailabilityZone")
772
+ def standby_availability_zone(self) -> Optional[str]:
773
+ """
774
+ availability zone information of the standby.
775
+ """
776
+ return pulumi.get(self, "standby_availability_zone")
777
+
778
+
779
+ @pulumi.output_type
780
+ class MaintenanceWindowResponse(dict):
781
+ """
782
+ Maintenance window properties of a server.
783
+ """
784
+ @staticmethod
785
+ def __key_warning(key: str):
786
+ suggest = None
787
+ if key == "customWindow":
788
+ suggest = "custom_window"
789
+ elif key == "dayOfWeek":
790
+ suggest = "day_of_week"
791
+ elif key == "startHour":
792
+ suggest = "start_hour"
793
+ elif key == "startMinute":
794
+ suggest = "start_minute"
795
+
796
+ if suggest:
797
+ pulumi.log.warn(f"Key '{key}' not found in MaintenanceWindowResponse. Access the value via the '{suggest}' property getter instead.")
798
+
799
+ def __getitem__(self, key: str) -> Any:
800
+ MaintenanceWindowResponse.__key_warning(key)
801
+ return super().__getitem__(key)
802
+
803
+ def get(self, key: str, default = None) -> Any:
804
+ MaintenanceWindowResponse.__key_warning(key)
805
+ return super().get(key, default)
806
+
807
+ def __init__(__self__, *,
808
+ custom_window: Optional[str] = None,
809
+ day_of_week: Optional[int] = None,
810
+ start_hour: Optional[int] = None,
811
+ start_minute: Optional[int] = None):
812
+ """
813
+ Maintenance window properties of a server.
814
+ :param str custom_window: indicates whether custom window is enabled or disabled
815
+ :param int day_of_week: day of week for maintenance window
816
+ :param int start_hour: start hour for maintenance window
817
+ :param int start_minute: start minute for maintenance window
818
+ """
819
+ if custom_window is None:
820
+ custom_window = 'Disabled'
821
+ if custom_window is not None:
822
+ pulumi.set(__self__, "custom_window", custom_window)
823
+ if day_of_week is None:
824
+ day_of_week = 0
825
+ if day_of_week is not None:
826
+ pulumi.set(__self__, "day_of_week", day_of_week)
827
+ if start_hour is None:
828
+ start_hour = 0
829
+ if start_hour is not None:
830
+ pulumi.set(__self__, "start_hour", start_hour)
831
+ if start_minute is None:
832
+ start_minute = 0
833
+ if start_minute is not None:
834
+ pulumi.set(__self__, "start_minute", start_minute)
835
+
836
+ @property
837
+ @pulumi.getter(name="customWindow")
838
+ def custom_window(self) -> Optional[str]:
839
+ """
840
+ indicates whether custom window is enabled or disabled
841
+ """
842
+ return pulumi.get(self, "custom_window")
843
+
844
+ @property
845
+ @pulumi.getter(name="dayOfWeek")
846
+ def day_of_week(self) -> Optional[int]:
847
+ """
848
+ day of week for maintenance window
849
+ """
850
+ return pulumi.get(self, "day_of_week")
851
+
852
+ @property
853
+ @pulumi.getter(name="startHour")
854
+ def start_hour(self) -> Optional[int]:
855
+ """
856
+ start hour for maintenance window
857
+ """
858
+ return pulumi.get(self, "start_hour")
859
+
860
+ @property
861
+ @pulumi.getter(name="startMinute")
862
+ def start_minute(self) -> Optional[int]:
863
+ """
864
+ start minute for maintenance window
865
+ """
866
+ return pulumi.get(self, "start_minute")
867
+
868
+
869
+ @pulumi.output_type
870
+ class MigrationStatusResponse(dict):
871
+ """
872
+ Migration status.
873
+ """
874
+ @staticmethod
875
+ def __key_warning(key: str):
876
+ suggest = None
877
+ if key == "currentSubStateDetails":
878
+ suggest = "current_sub_state_details"
879
+
880
+ if suggest:
881
+ pulumi.log.warn(f"Key '{key}' not found in MigrationStatusResponse. Access the value via the '{suggest}' property getter instead.")
882
+
883
+ def __getitem__(self, key: str) -> Any:
884
+ MigrationStatusResponse.__key_warning(key)
885
+ return super().__getitem__(key)
886
+
887
+ def get(self, key: str, default = None) -> Any:
888
+ MigrationStatusResponse.__key_warning(key)
889
+ return super().get(key, default)
890
+
891
+ def __init__(__self__, *,
892
+ current_sub_state_details: 'outputs.MigrationSubStateDetailsResponse',
893
+ error: str,
894
+ state: str):
895
+ """
896
+ Migration status.
897
+ :param 'MigrationSubStateDetailsResponse' current_sub_state_details: Current Migration sub state details.
898
+ :param str error: Error message, if any, for the migration state
899
+ :param str state: State of migration
900
+ """
901
+ pulumi.set(__self__, "current_sub_state_details", current_sub_state_details)
902
+ pulumi.set(__self__, "error", error)
903
+ pulumi.set(__self__, "state", state)
904
+
905
+ @property
906
+ @pulumi.getter(name="currentSubStateDetails")
907
+ def current_sub_state_details(self) -> 'outputs.MigrationSubStateDetailsResponse':
908
+ """
909
+ Current Migration sub state details.
910
+ """
911
+ return pulumi.get(self, "current_sub_state_details")
912
+
913
+ @property
914
+ @pulumi.getter
915
+ def error(self) -> str:
916
+ """
917
+ Error message, if any, for the migration state
918
+ """
919
+ return pulumi.get(self, "error")
920
+
921
+ @property
922
+ @pulumi.getter
923
+ def state(self) -> str:
924
+ """
925
+ State of migration
926
+ """
927
+ return pulumi.get(self, "state")
928
+
929
+
930
+ @pulumi.output_type
931
+ class MigrationSubStateDetailsResponse(dict):
932
+ """
933
+ Migration sub state details.
934
+ """
935
+ @staticmethod
936
+ def __key_warning(key: str):
937
+ suggest = None
938
+ if key == "currentSubState":
939
+ suggest = "current_sub_state"
940
+ elif key == "dbDetails":
941
+ suggest = "db_details"
942
+ elif key == "validationDetails":
943
+ suggest = "validation_details"
944
+
945
+ if suggest:
946
+ pulumi.log.warn(f"Key '{key}' not found in MigrationSubStateDetailsResponse. Access the value via the '{suggest}' property getter instead.")
947
+
948
+ def __getitem__(self, key: str) -> Any:
949
+ MigrationSubStateDetailsResponse.__key_warning(key)
950
+ return super().__getitem__(key)
951
+
952
+ def get(self, key: str, default = None) -> Any:
953
+ MigrationSubStateDetailsResponse.__key_warning(key)
954
+ return super().get(key, default)
955
+
956
+ def __init__(__self__, *,
957
+ current_sub_state: str,
958
+ db_details: Optional[Mapping[str, 'outputs.DbMigrationStatusResponse']] = None,
959
+ validation_details: Optional['outputs.ValidationDetailsResponse'] = None):
960
+ """
961
+ Migration sub state details.
962
+ :param str current_sub_state: Migration sub state.
963
+ :param 'ValidationDetailsResponse' validation_details: Details for the validation for migration
964
+ """
965
+ pulumi.set(__self__, "current_sub_state", current_sub_state)
966
+ if db_details is not None:
967
+ pulumi.set(__self__, "db_details", db_details)
968
+ if validation_details is not None:
969
+ pulumi.set(__self__, "validation_details", validation_details)
970
+
971
+ @property
972
+ @pulumi.getter(name="currentSubState")
973
+ def current_sub_state(self) -> str:
974
+ """
975
+ Migration sub state.
976
+ """
977
+ return pulumi.get(self, "current_sub_state")
978
+
979
+ @property
980
+ @pulumi.getter(name="dbDetails")
981
+ def db_details(self) -> Optional[Mapping[str, 'outputs.DbMigrationStatusResponse']]:
982
+ return pulumi.get(self, "db_details")
983
+
984
+ @property
985
+ @pulumi.getter(name="validationDetails")
986
+ def validation_details(self) -> Optional['outputs.ValidationDetailsResponse']:
987
+ """
988
+ Details for the validation for migration
989
+ """
990
+ return pulumi.get(self, "validation_details")
991
+
992
+
993
+ @pulumi.output_type
994
+ class NetworkResponse(dict):
995
+ """
996
+ Network properties of a server.
997
+ """
998
+ @staticmethod
999
+ def __key_warning(key: str):
1000
+ suggest = None
1001
+ if key == "delegatedSubnetResourceId":
1002
+ suggest = "delegated_subnet_resource_id"
1003
+ elif key == "privateDnsZoneArmResourceId":
1004
+ suggest = "private_dns_zone_arm_resource_id"
1005
+ elif key == "publicNetworkAccess":
1006
+ suggest = "public_network_access"
1007
+
1008
+ if suggest:
1009
+ pulumi.log.warn(f"Key '{key}' not found in NetworkResponse. Access the value via the '{suggest}' property getter instead.")
1010
+
1011
+ def __getitem__(self, key: str) -> Any:
1012
+ NetworkResponse.__key_warning(key)
1013
+ return super().__getitem__(key)
1014
+
1015
+ def get(self, key: str, default = None) -> Any:
1016
+ NetworkResponse.__key_warning(key)
1017
+ return super().get(key, default)
1018
+
1019
+ def __init__(__self__, *,
1020
+ delegated_subnet_resource_id: Optional[str] = None,
1021
+ private_dns_zone_arm_resource_id: Optional[str] = None,
1022
+ public_network_access: Optional[str] = None):
1023
+ """
1024
+ Network properties of a server.
1025
+ :param str delegated_subnet_resource_id: Delegated subnet arm resource id. This is required to be passed during create, in case we want the server to be VNET injected, i.e. Private access server. During update, pass this only if we want to update the value for Private DNS zone.
1026
+ :param str private_dns_zone_arm_resource_id: Private dns zone arm resource id. This is required to be passed during create, in case we want the server to be VNET injected, i.e. Private access server. During update, pass this only if we want to update the value for Private DNS zone.
1027
+ :param str public_network_access: public network access is enabled or not
1028
+ """
1029
+ if delegated_subnet_resource_id is not None:
1030
+ pulumi.set(__self__, "delegated_subnet_resource_id", delegated_subnet_resource_id)
1031
+ if private_dns_zone_arm_resource_id is not None:
1032
+ pulumi.set(__self__, "private_dns_zone_arm_resource_id", private_dns_zone_arm_resource_id)
1033
+ if public_network_access is not None:
1034
+ pulumi.set(__self__, "public_network_access", public_network_access)
1035
+
1036
+ @property
1037
+ @pulumi.getter(name="delegatedSubnetResourceId")
1038
+ def delegated_subnet_resource_id(self) -> Optional[str]:
1039
+ """
1040
+ Delegated subnet arm resource id. This is required to be passed during create, in case we want the server to be VNET injected, i.e. Private access server. During update, pass this only if we want to update the value for Private DNS zone.
1041
+ """
1042
+ return pulumi.get(self, "delegated_subnet_resource_id")
1043
+
1044
+ @property
1045
+ @pulumi.getter(name="privateDnsZoneArmResourceId")
1046
+ def private_dns_zone_arm_resource_id(self) -> Optional[str]:
1047
+ """
1048
+ Private dns zone arm resource id. This is required to be passed during create, in case we want the server to be VNET injected, i.e. Private access server. During update, pass this only if we want to update the value for Private DNS zone.
1049
+ """
1050
+ return pulumi.get(self, "private_dns_zone_arm_resource_id")
1051
+
1052
+ @property
1053
+ @pulumi.getter(name="publicNetworkAccess")
1054
+ def public_network_access(self) -> Optional[str]:
1055
+ """
1056
+ public network access is enabled or not
1057
+ """
1058
+ return pulumi.get(self, "public_network_access")
1059
+
1060
+
1061
+ @pulumi.output_type
1062
+ class PrivateEndpointConnectionResponse(dict):
1063
+ """
1064
+ The private endpoint connection resource.
1065
+ """
1066
+ @staticmethod
1067
+ def __key_warning(key: str):
1068
+ suggest = None
1069
+ if key == "groupIds":
1070
+ suggest = "group_ids"
1071
+ elif key == "privateLinkServiceConnectionState":
1072
+ suggest = "private_link_service_connection_state"
1073
+ elif key == "provisioningState":
1074
+ suggest = "provisioning_state"
1075
+ elif key == "systemData":
1076
+ suggest = "system_data"
1077
+ elif key == "privateEndpoint":
1078
+ suggest = "private_endpoint"
1079
+
1080
+ if suggest:
1081
+ pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
1082
+
1083
+ def __getitem__(self, key: str) -> Any:
1084
+ PrivateEndpointConnectionResponse.__key_warning(key)
1085
+ return super().__getitem__(key)
1086
+
1087
+ def get(self, key: str, default = None) -> Any:
1088
+ PrivateEndpointConnectionResponse.__key_warning(key)
1089
+ return super().get(key, default)
1090
+
1091
+ def __init__(__self__, *,
1092
+ group_ids: Sequence[str],
1093
+ id: str,
1094
+ name: str,
1095
+ private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
1096
+ provisioning_state: str,
1097
+ system_data: 'outputs.SystemDataResponse',
1098
+ type: str,
1099
+ private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
1100
+ """
1101
+ The private endpoint connection resource.
1102
+ :param Sequence[str] group_ids: The group ids for the private endpoint resource.
1103
+ :param str id: Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
1104
+ :param str name: The name of the resource
1105
+ :param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
1106
+ :param str provisioning_state: The provisioning state of the private endpoint connection resource.
1107
+ :param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
1108
+ :param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
1109
+ :param 'PrivateEndpointResponse' private_endpoint: The private endpoint resource.
1110
+ """
1111
+ pulumi.set(__self__, "group_ids", group_ids)
1112
+ pulumi.set(__self__, "id", id)
1113
+ pulumi.set(__self__, "name", name)
1114
+ pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
1115
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
1116
+ pulumi.set(__self__, "system_data", system_data)
1117
+ pulumi.set(__self__, "type", type)
1118
+ if private_endpoint is not None:
1119
+ pulumi.set(__self__, "private_endpoint", private_endpoint)
1120
+
1121
+ @property
1122
+ @pulumi.getter(name="groupIds")
1123
+ def group_ids(self) -> Sequence[str]:
1124
+ """
1125
+ The group ids for the private endpoint resource.
1126
+ """
1127
+ return pulumi.get(self, "group_ids")
1128
+
1129
+ @property
1130
+ @pulumi.getter
1131
+ def id(self) -> str:
1132
+ """
1133
+ Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
1134
+ """
1135
+ return pulumi.get(self, "id")
1136
+
1137
+ @property
1138
+ @pulumi.getter
1139
+ def name(self) -> str:
1140
+ """
1141
+ The name of the resource
1142
+ """
1143
+ return pulumi.get(self, "name")
1144
+
1145
+ @property
1146
+ @pulumi.getter(name="privateLinkServiceConnectionState")
1147
+ def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
1148
+ """
1149
+ A collection of information about the state of the connection between service consumer and provider.
1150
+ """
1151
+ return pulumi.get(self, "private_link_service_connection_state")
1152
+
1153
+ @property
1154
+ @pulumi.getter(name="provisioningState")
1155
+ def provisioning_state(self) -> str:
1156
+ """
1157
+ The provisioning state of the private endpoint connection resource.
1158
+ """
1159
+ return pulumi.get(self, "provisioning_state")
1160
+
1161
+ @property
1162
+ @pulumi.getter(name="systemData")
1163
+ def system_data(self) -> 'outputs.SystemDataResponse':
1164
+ """
1165
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
1166
+ """
1167
+ return pulumi.get(self, "system_data")
1168
+
1169
+ @property
1170
+ @pulumi.getter
1171
+ def type(self) -> str:
1172
+ """
1173
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
1174
+ """
1175
+ return pulumi.get(self, "type")
1176
+
1177
+ @property
1178
+ @pulumi.getter(name="privateEndpoint")
1179
+ def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
1180
+ """
1181
+ The private endpoint resource.
1182
+ """
1183
+ return pulumi.get(self, "private_endpoint")
1184
+
1185
+
1186
+ @pulumi.output_type
1187
+ class PrivateEndpointResponse(dict):
1188
+ """
1189
+ The private endpoint resource.
1190
+ """
1191
+ def __init__(__self__, *,
1192
+ id: str):
1193
+ """
1194
+ The private endpoint resource.
1195
+ :param str id: The ARM identifier for private endpoint.
1196
+ """
1197
+ pulumi.set(__self__, "id", id)
1198
+
1199
+ @property
1200
+ @pulumi.getter
1201
+ def id(self) -> str:
1202
+ """
1203
+ The ARM identifier for private endpoint.
1204
+ """
1205
+ return pulumi.get(self, "id")
1206
+
1207
+
1208
+ @pulumi.output_type
1209
+ class PrivateLinkServiceConnectionStateResponse(dict):
1210
+ """
1211
+ A collection of information about the state of the connection between service consumer and provider.
1212
+ """
1213
+ @staticmethod
1214
+ def __key_warning(key: str):
1215
+ suggest = None
1216
+ if key == "actionsRequired":
1217
+ suggest = "actions_required"
1218
+
1219
+ if suggest:
1220
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
1221
+
1222
+ def __getitem__(self, key: str) -> Any:
1223
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
1224
+ return super().__getitem__(key)
1225
+
1226
+ def get(self, key: str, default = None) -> Any:
1227
+ PrivateLinkServiceConnectionStateResponse.__key_warning(key)
1228
+ return super().get(key, default)
1229
+
1230
+ def __init__(__self__, *,
1231
+ actions_required: Optional[str] = None,
1232
+ description: Optional[str] = None,
1233
+ status: Optional[str] = None):
1234
+ """
1235
+ A collection of information about the state of the connection between service consumer and provider.
1236
+ :param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
1237
+ :param str description: The reason for approval/rejection of the connection.
1238
+ :param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
1239
+ """
1240
+ if actions_required is not None:
1241
+ pulumi.set(__self__, "actions_required", actions_required)
1242
+ if description is not None:
1243
+ pulumi.set(__self__, "description", description)
1244
+ if status is not None:
1245
+ pulumi.set(__self__, "status", status)
1246
+
1247
+ @property
1248
+ @pulumi.getter(name="actionsRequired")
1249
+ def actions_required(self) -> Optional[str]:
1250
+ """
1251
+ A message indicating if changes on the service provider require any updates on the consumer.
1252
+ """
1253
+ return pulumi.get(self, "actions_required")
1254
+
1255
+ @property
1256
+ @pulumi.getter
1257
+ def description(self) -> Optional[str]:
1258
+ """
1259
+ The reason for approval/rejection of the connection.
1260
+ """
1261
+ return pulumi.get(self, "description")
1262
+
1263
+ @property
1264
+ @pulumi.getter
1265
+ def status(self) -> Optional[str]:
1266
+ """
1267
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
1268
+ """
1269
+ return pulumi.get(self, "status")
1270
+
1271
+
1272
+ @pulumi.output_type
1273
+ class ReplicaResponse(dict):
1274
+ """
1275
+ Replica properties of a server
1276
+ """
1277
+ @staticmethod
1278
+ def __key_warning(key: str):
1279
+ suggest = None
1280
+ if key == "replicationState":
1281
+ suggest = "replication_state"
1282
+
1283
+ if suggest:
1284
+ pulumi.log.warn(f"Key '{key}' not found in ReplicaResponse. Access the value via the '{suggest}' property getter instead.")
1285
+
1286
+ def __getitem__(self, key: str) -> Any:
1287
+ ReplicaResponse.__key_warning(key)
1288
+ return super().__getitem__(key)
1289
+
1290
+ def get(self, key: str, default = None) -> Any:
1291
+ ReplicaResponse.__key_warning(key)
1292
+ return super().get(key, default)
1293
+
1294
+ def __init__(__self__, *,
1295
+ capacity: int,
1296
+ replication_state: str,
1297
+ role: Optional[str] = None):
1298
+ """
1299
+ Replica properties of a server
1300
+ :param int capacity: Replicas allowed for a server.
1301
+ :param str replication_state: Gets the replication state of a replica server. This property is returned only for replicas api call. Supported values are Active, Catchup, Provisioning, Updating, Broken, Reconfiguring
1302
+ :param str role: Used to indicate role of the server in replication set.
1303
+ """
1304
+ pulumi.set(__self__, "capacity", capacity)
1305
+ pulumi.set(__self__, "replication_state", replication_state)
1306
+ if role is not None:
1307
+ pulumi.set(__self__, "role", role)
1308
+
1309
+ @property
1310
+ @pulumi.getter
1311
+ def capacity(self) -> int:
1312
+ """
1313
+ Replicas allowed for a server.
1314
+ """
1315
+ return pulumi.get(self, "capacity")
1316
+
1317
+ @property
1318
+ @pulumi.getter(name="replicationState")
1319
+ def replication_state(self) -> str:
1320
+ """
1321
+ Gets the replication state of a replica server. This property is returned only for replicas api call. Supported values are Active, Catchup, Provisioning, Updating, Broken, Reconfiguring
1322
+ """
1323
+ return pulumi.get(self, "replication_state")
1324
+
1325
+ @property
1326
+ @pulumi.getter
1327
+ def role(self) -> Optional[str]:
1328
+ """
1329
+ Used to indicate role of the server in replication set.
1330
+ """
1331
+ return pulumi.get(self, "role")
1332
+
1333
+
1334
+ @pulumi.output_type
1335
+ class ServerSkuResponse(dict):
1336
+ """
1337
+ Sku information related properties of a server.
1338
+ """
1339
+ def __init__(__self__, *,
1340
+ name: Optional[str] = None,
1341
+ tier: Optional[str] = None):
1342
+ """
1343
+ Sku information related properties of a server.
1344
+ :param str name: The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3.
1345
+ :param str tier: The tier of the particular SKU, e.g. Burstable.
1346
+ """
1347
+ if name is not None:
1348
+ pulumi.set(__self__, "name", name)
1349
+ if tier is not None:
1350
+ pulumi.set(__self__, "tier", tier)
1351
+
1352
+ @property
1353
+ @pulumi.getter
1354
+ def name(self) -> Optional[str]:
1355
+ """
1356
+ The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3.
1357
+ """
1358
+ return pulumi.get(self, "name")
1359
+
1360
+ @property
1361
+ @pulumi.getter
1362
+ def tier(self) -> Optional[str]:
1363
+ """
1364
+ The tier of the particular SKU, e.g. Burstable.
1365
+ """
1366
+ return pulumi.get(self, "tier")
1367
+
1368
+
1369
+ @pulumi.output_type
1370
+ class SkuResponse(dict):
1371
+ """
1372
+ Sku information related properties of a server.
1373
+ """
1374
+ def __init__(__self__, *,
1375
+ name: str,
1376
+ tier: str):
1377
+ """
1378
+ Sku information related properties of a server.
1379
+ :param str name: The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3.
1380
+ :param str tier: The tier of the particular SKU, e.g. Burstable.
1381
+ """
1382
+ pulumi.set(__self__, "name", name)
1383
+ pulumi.set(__self__, "tier", tier)
1384
+
1385
+ @property
1386
+ @pulumi.getter
1387
+ def name(self) -> str:
1388
+ """
1389
+ The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3.
1390
+ """
1391
+ return pulumi.get(self, "name")
1392
+
1393
+ @property
1394
+ @pulumi.getter
1395
+ def tier(self) -> str:
1396
+ """
1397
+ The tier of the particular SKU, e.g. Burstable.
1398
+ """
1399
+ return pulumi.get(self, "tier")
1400
+
1401
+
1402
+ @pulumi.output_type
1403
+ class StorageResponse(dict):
1404
+ """
1405
+ Storage properties of a server
1406
+ """
1407
+ @staticmethod
1408
+ def __key_warning(key: str):
1409
+ suggest = None
1410
+ if key == "autoGrow":
1411
+ suggest = "auto_grow"
1412
+ elif key == "storageSizeGB":
1413
+ suggest = "storage_size_gb"
1414
+
1415
+ if suggest:
1416
+ pulumi.log.warn(f"Key '{key}' not found in StorageResponse. Access the value via the '{suggest}' property getter instead.")
1417
+
1418
+ def __getitem__(self, key: str) -> Any:
1419
+ StorageResponse.__key_warning(key)
1420
+ return super().__getitem__(key)
1421
+
1422
+ def get(self, key: str, default = None) -> Any:
1423
+ StorageResponse.__key_warning(key)
1424
+ return super().get(key, default)
1425
+
1426
+ def __init__(__self__, *,
1427
+ auto_grow: Optional[str] = None,
1428
+ iops: Optional[int] = None,
1429
+ storage_size_gb: Optional[int] = None,
1430
+ throughput: Optional[int] = None,
1431
+ tier: Optional[str] = None,
1432
+ type: Optional[str] = None):
1433
+ """
1434
+ Storage properties of a server
1435
+ :param str auto_grow: Flag to enable / disable Storage Auto grow for flexible server.
1436
+ :param int iops: Storage tier IOPS quantity. This property is required to be set for storage Type PremiumV2_LRS
1437
+ :param int storage_size_gb: Max storage allowed for a server.
1438
+ :param int throughput: Storage throughput for the server. This is required to be set for storage Type PremiumV2_LRS
1439
+ :param str tier: Name of storage tier for IOPS.
1440
+ :param str type: Storage type for the server. Allowed values are Premium_LRS and PremiumV2_LRS, and default is Premium_LRS if not specified
1441
+ """
1442
+ if auto_grow is not None:
1443
+ pulumi.set(__self__, "auto_grow", auto_grow)
1444
+ if iops is not None:
1445
+ pulumi.set(__self__, "iops", iops)
1446
+ if storage_size_gb is not None:
1447
+ pulumi.set(__self__, "storage_size_gb", storage_size_gb)
1448
+ if throughput is not None:
1449
+ pulumi.set(__self__, "throughput", throughput)
1450
+ if tier is not None:
1451
+ pulumi.set(__self__, "tier", tier)
1452
+ if type is not None:
1453
+ pulumi.set(__self__, "type", type)
1454
+
1455
+ @property
1456
+ @pulumi.getter(name="autoGrow")
1457
+ def auto_grow(self) -> Optional[str]:
1458
+ """
1459
+ Flag to enable / disable Storage Auto grow for flexible server.
1460
+ """
1461
+ return pulumi.get(self, "auto_grow")
1462
+
1463
+ @property
1464
+ @pulumi.getter
1465
+ def iops(self) -> Optional[int]:
1466
+ """
1467
+ Storage tier IOPS quantity. This property is required to be set for storage Type PremiumV2_LRS
1468
+ """
1469
+ return pulumi.get(self, "iops")
1470
+
1471
+ @property
1472
+ @pulumi.getter(name="storageSizeGB")
1473
+ def storage_size_gb(self) -> Optional[int]:
1474
+ """
1475
+ Max storage allowed for a server.
1476
+ """
1477
+ return pulumi.get(self, "storage_size_gb")
1478
+
1479
+ @property
1480
+ @pulumi.getter
1481
+ def throughput(self) -> Optional[int]:
1482
+ """
1483
+ Storage throughput for the server. This is required to be set for storage Type PremiumV2_LRS
1484
+ """
1485
+ return pulumi.get(self, "throughput")
1486
+
1487
+ @property
1488
+ @pulumi.getter
1489
+ def tier(self) -> Optional[str]:
1490
+ """
1491
+ Name of storage tier for IOPS.
1492
+ """
1493
+ return pulumi.get(self, "tier")
1494
+
1495
+ @property
1496
+ @pulumi.getter
1497
+ def type(self) -> Optional[str]:
1498
+ """
1499
+ Storage type for the server. Allowed values are Premium_LRS and PremiumV2_LRS, and default is Premium_LRS if not specified
1500
+ """
1501
+ return pulumi.get(self, "type")
1502
+
1503
+
1504
+ @pulumi.output_type
1505
+ class SystemDataResponse(dict):
1506
+ """
1507
+ Metadata pertaining to creation and last modification of the resource.
1508
+ """
1509
+ @staticmethod
1510
+ def __key_warning(key: str):
1511
+ suggest = None
1512
+ if key == "createdAt":
1513
+ suggest = "created_at"
1514
+ elif key == "createdBy":
1515
+ suggest = "created_by"
1516
+ elif key == "createdByType":
1517
+ suggest = "created_by_type"
1518
+ elif key == "lastModifiedAt":
1519
+ suggest = "last_modified_at"
1520
+ elif key == "lastModifiedBy":
1521
+ suggest = "last_modified_by"
1522
+ elif key == "lastModifiedByType":
1523
+ suggest = "last_modified_by_type"
1524
+
1525
+ if suggest:
1526
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
1527
+
1528
+ def __getitem__(self, key: str) -> Any:
1529
+ SystemDataResponse.__key_warning(key)
1530
+ return super().__getitem__(key)
1531
+
1532
+ def get(self, key: str, default = None) -> Any:
1533
+ SystemDataResponse.__key_warning(key)
1534
+ return super().get(key, default)
1535
+
1536
+ def __init__(__self__, *,
1537
+ created_at: Optional[str] = None,
1538
+ created_by: Optional[str] = None,
1539
+ created_by_type: Optional[str] = None,
1540
+ last_modified_at: Optional[str] = None,
1541
+ last_modified_by: Optional[str] = None,
1542
+ last_modified_by_type: Optional[str] = None):
1543
+ """
1544
+ Metadata pertaining to creation and last modification of the resource.
1545
+ :param str created_at: The timestamp of resource creation (UTC).
1546
+ :param str created_by: The identity that created the resource.
1547
+ :param str created_by_type: The type of identity that created the resource.
1548
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1549
+ :param str last_modified_by: The identity that last modified the resource.
1550
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1551
+ """
1552
+ if created_at is not None:
1553
+ pulumi.set(__self__, "created_at", created_at)
1554
+ if created_by is not None:
1555
+ pulumi.set(__self__, "created_by", created_by)
1556
+ if created_by_type is not None:
1557
+ pulumi.set(__self__, "created_by_type", created_by_type)
1558
+ if last_modified_at is not None:
1559
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1560
+ if last_modified_by is not None:
1561
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1562
+ if last_modified_by_type is not None:
1563
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1564
+
1565
+ @property
1566
+ @pulumi.getter(name="createdAt")
1567
+ def created_at(self) -> Optional[str]:
1568
+ """
1569
+ The timestamp of resource creation (UTC).
1570
+ """
1571
+ return pulumi.get(self, "created_at")
1572
+
1573
+ @property
1574
+ @pulumi.getter(name="createdBy")
1575
+ def created_by(self) -> Optional[str]:
1576
+ """
1577
+ The identity that created the resource.
1578
+ """
1579
+ return pulumi.get(self, "created_by")
1580
+
1581
+ @property
1582
+ @pulumi.getter(name="createdByType")
1583
+ def created_by_type(self) -> Optional[str]:
1584
+ """
1585
+ The type of identity that created the resource.
1586
+ """
1587
+ return pulumi.get(self, "created_by_type")
1588
+
1589
+ @property
1590
+ @pulumi.getter(name="lastModifiedAt")
1591
+ def last_modified_at(self) -> Optional[str]:
1592
+ """
1593
+ The timestamp of resource last modification (UTC)
1594
+ """
1595
+ return pulumi.get(self, "last_modified_at")
1596
+
1597
+ @property
1598
+ @pulumi.getter(name="lastModifiedBy")
1599
+ def last_modified_by(self) -> Optional[str]:
1600
+ """
1601
+ The identity that last modified the resource.
1602
+ """
1603
+ return pulumi.get(self, "last_modified_by")
1604
+
1605
+ @property
1606
+ @pulumi.getter(name="lastModifiedByType")
1607
+ def last_modified_by_type(self) -> Optional[str]:
1608
+ """
1609
+ The type of identity that last modified the resource.
1610
+ """
1611
+ return pulumi.get(self, "last_modified_by_type")
1612
+
1613
+
1614
+ @pulumi.output_type
1615
+ class UserAssignedIdentityResponse(dict):
1616
+ """
1617
+ Information describing the identities associated with this application.
1618
+ """
1619
+ @staticmethod
1620
+ def __key_warning(key: str):
1621
+ suggest = None
1622
+ if key == "tenantId":
1623
+ suggest = "tenant_id"
1624
+ elif key == "userAssignedIdentities":
1625
+ suggest = "user_assigned_identities"
1626
+
1627
+ if suggest:
1628
+ pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1629
+
1630
+ def __getitem__(self, key: str) -> Any:
1631
+ UserAssignedIdentityResponse.__key_warning(key)
1632
+ return super().__getitem__(key)
1633
+
1634
+ def get(self, key: str, default = None) -> Any:
1635
+ UserAssignedIdentityResponse.__key_warning(key)
1636
+ return super().get(key, default)
1637
+
1638
+ def __init__(__self__, *,
1639
+ tenant_id: str,
1640
+ type: str,
1641
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserIdentityResponse']] = None):
1642
+ """
1643
+ Information describing the identities associated with this application.
1644
+ :param str tenant_id: Tenant id of the server.
1645
+ :param str type: the types of identities associated with this resource; currently restricted to 'None and UserAssigned'
1646
+ :param Mapping[str, 'UserIdentityResponse'] user_assigned_identities: represents user assigned identities map.
1647
+ """
1648
+ pulumi.set(__self__, "tenant_id", tenant_id)
1649
+ pulumi.set(__self__, "type", type)
1650
+ if user_assigned_identities is not None:
1651
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1652
+
1653
+ @property
1654
+ @pulumi.getter(name="tenantId")
1655
+ def tenant_id(self) -> str:
1656
+ """
1657
+ Tenant id of the server.
1658
+ """
1659
+ return pulumi.get(self, "tenant_id")
1660
+
1661
+ @property
1662
+ @pulumi.getter
1663
+ def type(self) -> str:
1664
+ """
1665
+ the types of identities associated with this resource; currently restricted to 'None and UserAssigned'
1666
+ """
1667
+ return pulumi.get(self, "type")
1668
+
1669
+ @property
1670
+ @pulumi.getter(name="userAssignedIdentities")
1671
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserIdentityResponse']]:
1672
+ """
1673
+ represents user assigned identities map.
1674
+ """
1675
+ return pulumi.get(self, "user_assigned_identities")
1676
+
1677
+
1678
+ @pulumi.output_type
1679
+ class UserIdentityResponse(dict):
1680
+ """
1681
+ Describes a single user-assigned identity associated with the application.
1682
+ """
1683
+ @staticmethod
1684
+ def __key_warning(key: str):
1685
+ suggest = None
1686
+ if key == "clientId":
1687
+ suggest = "client_id"
1688
+ elif key == "principalId":
1689
+ suggest = "principal_id"
1690
+
1691
+ if suggest:
1692
+ pulumi.log.warn(f"Key '{key}' not found in UserIdentityResponse. Access the value via the '{suggest}' property getter instead.")
1693
+
1694
+ def __getitem__(self, key: str) -> Any:
1695
+ UserIdentityResponse.__key_warning(key)
1696
+ return super().__getitem__(key)
1697
+
1698
+ def get(self, key: str, default = None) -> Any:
1699
+ UserIdentityResponse.__key_warning(key)
1700
+ return super().get(key, default)
1701
+
1702
+ def __init__(__self__, *,
1703
+ client_id: Optional[str] = None,
1704
+ principal_id: Optional[str] = None):
1705
+ """
1706
+ Describes a single user-assigned identity associated with the application.
1707
+ :param str client_id: the client identifier of the Service Principal which this identity represents.
1708
+ :param str principal_id: the object identifier of the Service Principal which this identity represents.
1709
+ """
1710
+ if client_id is not None:
1711
+ pulumi.set(__self__, "client_id", client_id)
1712
+ if principal_id is not None:
1713
+ pulumi.set(__self__, "principal_id", principal_id)
1714
+
1715
+ @property
1716
+ @pulumi.getter(name="clientId")
1717
+ def client_id(self) -> Optional[str]:
1718
+ """
1719
+ the client identifier of the Service Principal which this identity represents.
1720
+ """
1721
+ return pulumi.get(self, "client_id")
1722
+
1723
+ @property
1724
+ @pulumi.getter(name="principalId")
1725
+ def principal_id(self) -> Optional[str]:
1726
+ """
1727
+ the object identifier of the Service Principal which this identity represents.
1728
+ """
1729
+ return pulumi.get(self, "principal_id")
1730
+
1731
+
1732
+ @pulumi.output_type
1733
+ class ValidationDetailsResponse(dict):
1734
+ """
1735
+ Details for the validation for migration
1736
+ """
1737
+ @staticmethod
1738
+ def __key_warning(key: str):
1739
+ suggest = None
1740
+ if key == "dbLevelValidationDetails":
1741
+ suggest = "db_level_validation_details"
1742
+ elif key == "serverLevelValidationDetails":
1743
+ suggest = "server_level_validation_details"
1744
+ elif key == "validationEndTimeInUtc":
1745
+ suggest = "validation_end_time_in_utc"
1746
+ elif key == "validationStartTimeInUtc":
1747
+ suggest = "validation_start_time_in_utc"
1748
+
1749
+ if suggest:
1750
+ pulumi.log.warn(f"Key '{key}' not found in ValidationDetailsResponse. Access the value via the '{suggest}' property getter instead.")
1751
+
1752
+ def __getitem__(self, key: str) -> Any:
1753
+ ValidationDetailsResponse.__key_warning(key)
1754
+ return super().__getitem__(key)
1755
+
1756
+ def get(self, key: str, default = None) -> Any:
1757
+ ValidationDetailsResponse.__key_warning(key)
1758
+ return super().get(key, default)
1759
+
1760
+ def __init__(__self__, *,
1761
+ db_level_validation_details: Optional[Sequence['outputs.DbLevelValidationStatusResponse']] = None,
1762
+ server_level_validation_details: Optional[Sequence['outputs.ValidationSummaryItemResponse']] = None,
1763
+ status: Optional[str] = None,
1764
+ validation_end_time_in_utc: Optional[str] = None,
1765
+ validation_start_time_in_utc: Optional[str] = None):
1766
+ """
1767
+ Details for the validation for migration
1768
+ :param Sequence['DbLevelValidationStatusResponse'] db_level_validation_details: Details of server level validations
1769
+ :param Sequence['ValidationSummaryItemResponse'] server_level_validation_details: Details of server level validations
1770
+ :param str status: Validation status for migration
1771
+ :param str validation_end_time_in_utc: Validation End date-time in UTC
1772
+ :param str validation_start_time_in_utc: Validation Start date-time in UTC
1773
+ """
1774
+ if db_level_validation_details is not None:
1775
+ pulumi.set(__self__, "db_level_validation_details", db_level_validation_details)
1776
+ if server_level_validation_details is not None:
1777
+ pulumi.set(__self__, "server_level_validation_details", server_level_validation_details)
1778
+ if status is not None:
1779
+ pulumi.set(__self__, "status", status)
1780
+ if validation_end_time_in_utc is not None:
1781
+ pulumi.set(__self__, "validation_end_time_in_utc", validation_end_time_in_utc)
1782
+ if validation_start_time_in_utc is not None:
1783
+ pulumi.set(__self__, "validation_start_time_in_utc", validation_start_time_in_utc)
1784
+
1785
+ @property
1786
+ @pulumi.getter(name="dbLevelValidationDetails")
1787
+ def db_level_validation_details(self) -> Optional[Sequence['outputs.DbLevelValidationStatusResponse']]:
1788
+ """
1789
+ Details of server level validations
1790
+ """
1791
+ return pulumi.get(self, "db_level_validation_details")
1792
+
1793
+ @property
1794
+ @pulumi.getter(name="serverLevelValidationDetails")
1795
+ def server_level_validation_details(self) -> Optional[Sequence['outputs.ValidationSummaryItemResponse']]:
1796
+ """
1797
+ Details of server level validations
1798
+ """
1799
+ return pulumi.get(self, "server_level_validation_details")
1800
+
1801
+ @property
1802
+ @pulumi.getter
1803
+ def status(self) -> Optional[str]:
1804
+ """
1805
+ Validation status for migration
1806
+ """
1807
+ return pulumi.get(self, "status")
1808
+
1809
+ @property
1810
+ @pulumi.getter(name="validationEndTimeInUtc")
1811
+ def validation_end_time_in_utc(self) -> Optional[str]:
1812
+ """
1813
+ Validation End date-time in UTC
1814
+ """
1815
+ return pulumi.get(self, "validation_end_time_in_utc")
1816
+
1817
+ @property
1818
+ @pulumi.getter(name="validationStartTimeInUtc")
1819
+ def validation_start_time_in_utc(self) -> Optional[str]:
1820
+ """
1821
+ Validation Start date-time in UTC
1822
+ """
1823
+ return pulumi.get(self, "validation_start_time_in_utc")
1824
+
1825
+
1826
+ @pulumi.output_type
1827
+ class ValidationMessageResponse(dict):
1828
+ """
1829
+ Validation message object
1830
+ """
1831
+ def __init__(__self__, *,
1832
+ message: Optional[str] = None,
1833
+ state: Optional[str] = None):
1834
+ """
1835
+ Validation message object
1836
+ :param str message: Validation message string
1837
+ :param str state: Severity of validation message
1838
+ """
1839
+ if message is not None:
1840
+ pulumi.set(__self__, "message", message)
1841
+ if state is not None:
1842
+ pulumi.set(__self__, "state", state)
1843
+
1844
+ @property
1845
+ @pulumi.getter
1846
+ def message(self) -> Optional[str]:
1847
+ """
1848
+ Validation message string
1849
+ """
1850
+ return pulumi.get(self, "message")
1851
+
1852
+ @property
1853
+ @pulumi.getter
1854
+ def state(self) -> Optional[str]:
1855
+ """
1856
+ Severity of validation message
1857
+ """
1858
+ return pulumi.get(self, "state")
1859
+
1860
+
1861
+ @pulumi.output_type
1862
+ class ValidationSummaryItemResponse(dict):
1863
+ """
1864
+ Validation summary object
1865
+ """
1866
+ def __init__(__self__, *,
1867
+ messages: Optional[Sequence['outputs.ValidationMessageResponse']] = None,
1868
+ state: Optional[str] = None,
1869
+ type: Optional[str] = None):
1870
+ """
1871
+ Validation summary object
1872
+ :param Sequence['ValidationMessageResponse'] messages: Validation messages
1873
+ :param str state: Validation status for migration
1874
+ :param str type: Validation type
1875
+ """
1876
+ if messages is not None:
1877
+ pulumi.set(__self__, "messages", messages)
1878
+ if state is not None:
1879
+ pulumi.set(__self__, "state", state)
1880
+ if type is not None:
1881
+ pulumi.set(__self__, "type", type)
1882
+
1883
+ @property
1884
+ @pulumi.getter
1885
+ def messages(self) -> Optional[Sequence['outputs.ValidationMessageResponse']]:
1886
+ """
1887
+ Validation messages
1888
+ """
1889
+ return pulumi.get(self, "messages")
1890
+
1891
+ @property
1892
+ @pulumi.getter
1893
+ def state(self) -> Optional[str]:
1894
+ """
1895
+ Validation status for migration
1896
+ """
1897
+ return pulumi.get(self, "state")
1898
+
1899
+ @property
1900
+ @pulumi.getter
1901
+ def type(self) -> Optional[str]:
1902
+ """
1903
+ Validation type
1904
+ """
1905
+ return pulumi.get(self, "type")
1906
+
1907
+