pulumi-azure-native 2.65.0a1728039140__py3-none-any.whl → 2.65.0a1728295684__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (273) hide show
  1. pulumi_azure_native/__init__.py +95 -2
  2. pulumi_azure_native/authorization/__init__.py +3 -0
  3. pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
  4. pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
  5. pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
  6. pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
  7. pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +1 -1
  8. pulumi_azure_native/authorization/v20240901preview/__init__.py +10 -0
  9. pulumi_azure_native/authorization/v20240901preview/get_role_management_policy_assignment.py +175 -0
  10. pulumi_azure_native/authorization/v20240901preview/outputs.py +1456 -0
  11. pulumi_azure_native/authorization/v20240901preview/role_management_policy_assignment.py +246 -0
  12. pulumi_azure_native/azurearcdata/__init__.py +8 -0
  13. pulumi_azure_native/azurearcdata/_enums.py +55 -0
  14. pulumi_azure_native/azurearcdata/_inputs.py +226 -0
  15. pulumi_azure_native/azurearcdata/active_directory_connector.py +3 -3
  16. pulumi_azure_native/azurearcdata/data_controller.py +3 -3
  17. pulumi_azure_native/azurearcdata/failover_group.py +3 -3
  18. pulumi_azure_native/azurearcdata/get_active_directory_connector.py +2 -2
  19. pulumi_azure_native/azurearcdata/get_data_controller.py +2 -2
  20. pulumi_azure_native/azurearcdata/get_failover_group.py +2 -2
  21. pulumi_azure_native/azurearcdata/get_postgres_instance.py +2 -2
  22. pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +2 -2
  23. pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +4 -0
  24. pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +4 -0
  25. pulumi_azure_native/azurearcdata/get_sql_server_database.py +2 -2
  26. pulumi_azure_native/azurearcdata/get_sql_server_esu_license.py +164 -0
  27. pulumi_azure_native/azurearcdata/get_sql_server_instance.py +2 -2
  28. pulumi_azure_native/azurearcdata/get_sql_server_instance_jobs_status.py +96 -0
  29. pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +4 -0
  30. pulumi_azure_native/azurearcdata/get_sql_server_license.py +164 -0
  31. pulumi_azure_native/azurearcdata/outputs.py +489 -0
  32. pulumi_azure_native/azurearcdata/postgres_instance.py +3 -3
  33. pulumi_azure_native/azurearcdata/sql_managed_instance.py +3 -3
  34. pulumi_azure_native/azurearcdata/sql_server_availability_group.py +5 -1
  35. pulumi_azure_native/azurearcdata/sql_server_database.py +3 -3
  36. pulumi_azure_native/azurearcdata/sql_server_esu_license.py +261 -0
  37. pulumi_azure_native/azurearcdata/sql_server_instance.py +3 -3
  38. pulumi_azure_native/azurearcdata/sql_server_license.py +261 -0
  39. pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
  40. pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
  41. pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
  42. pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
  43. pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
  44. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
  45. pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
  46. pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +1 -1
  47. pulumi_azure_native/azurearcdata/v20240101/data_controller.py +1 -1
  48. pulumi_azure_native/azurearcdata/v20240101/failover_group.py +1 -1
  49. pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +1 -1
  50. pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +1 -1
  51. pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +1 -1
  52. pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +1 -1
  53. pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +1 -1
  54. pulumi_azure_native/azurearcdata/v20240501preview/__init__.py +33 -0
  55. pulumi_azure_native/azurearcdata/v20240501preview/_enums.py +334 -0
  56. pulumi_azure_native/azurearcdata/v20240501preview/_inputs.py +4953 -0
  57. pulumi_azure_native/azurearcdata/v20240501preview/active_directory_connector.py +222 -0
  58. pulumi_azure_native/azurearcdata/v20240501preview/data_controller.py +288 -0
  59. pulumi_azure_native/azurearcdata/v20240501preview/failover_group.py +222 -0
  60. pulumi_azure_native/azurearcdata/v20240501preview/get_active_directory_connector.py +141 -0
  61. pulumi_azure_native/azurearcdata/v20240501preview/get_data_controller.py +175 -0
  62. pulumi_azure_native/azurearcdata/v20240501preview/get_failover_group.py +141 -0
  63. pulumi_azure_native/azurearcdata/v20240501preview/get_postgres_instance.py +188 -0
  64. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_managed_instance.py +188 -0
  65. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group.py +167 -0
  66. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group_detail_view.py +167 -0
  67. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_database.py +167 -0
  68. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_esu_license.py +162 -0
  69. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance.py +162 -0
  70. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_jobs_status.py +94 -0
  71. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_telemetry.py +141 -0
  72. pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_license.py +162 -0
  73. pulumi_azure_native/azurearcdata/v20240501preview/outputs.py +6407 -0
  74. pulumi_azure_native/azurearcdata/v20240501preview/postgres_instance.py +317 -0
  75. pulumi_azure_native/azurearcdata/v20240501preview/sql_managed_instance.py +317 -0
  76. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_availability_group.py +280 -0
  77. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_database.py +280 -0
  78. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_esu_license.py +259 -0
  79. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_instance.py +258 -0
  80. pulumi_azure_native/azurearcdata/v20240501preview/sql_server_license.py +259 -0
  81. pulumi_azure_native/azurefleet/__init__.py +3 -0
  82. pulumi_azure_native/azurefleet/fleet.py +3 -3
  83. pulumi_azure_native/azurefleet/get_fleet.py +2 -2
  84. pulumi_azure_native/azurefleet/v20231101preview/fleet.py +1 -1
  85. pulumi_azure_native/azurefleet/v20240501preview/fleet.py +1 -1
  86. pulumi_azure_native/azurefleet/v20241101/__init__.py +12 -0
  87. pulumi_azure_native/azurefleet/v20241101/_enums.py +795 -0
  88. pulumi_azure_native/azurefleet/v20241101/_inputs.py +7209 -0
  89. pulumi_azure_native/azurefleet/v20241101/fleet.py +522 -0
  90. pulumi_azure_native/azurefleet/v20241101/get_fleet.py +305 -0
  91. pulumi_azure_native/azurefleet/v20241101/outputs.py +5832 -0
  92. pulumi_azure_native/codesigning/__init__.py +3 -0
  93. pulumi_azure_native/codesigning/certificate_profile.py +5 -1
  94. pulumi_azure_native/codesigning/code_signing_account.py +5 -1
  95. pulumi_azure_native/codesigning/get_certificate_profile.py +4 -0
  96. pulumi_azure_native/codesigning/get_code_signing_account.py +4 -0
  97. pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +1 -1
  98. pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +1 -1
  99. pulumi_azure_native/codesigning/v20240930preview/__init__.py +14 -0
  100. pulumi_azure_native/codesigning/v20240930preview/_enums.py +50 -0
  101. pulumi_azure_native/codesigning/v20240930preview/_inputs.py +59 -0
  102. pulumi_azure_native/codesigning/v20240930preview/certificate_profile.py +436 -0
  103. pulumi_azure_native/codesigning/v20240930preview/code_signing_account.py +278 -0
  104. pulumi_azure_native/codesigning/v20240930preview/get_certificate_profile.py +245 -0
  105. pulumi_azure_native/codesigning/v20240930preview/get_code_signing_account.py +188 -0
  106. pulumi_azure_native/codesigning/v20240930preview/outputs.py +154 -0
  107. pulumi_azure_native/containerinstance/__init__.py +8 -0
  108. pulumi_azure_native/containerinstance/_enums.py +1 -1
  109. pulumi_azure_native/containerinstance/_inputs.py +165 -0
  110. pulumi_azure_native/containerinstance/container_group.py +3 -3
  111. pulumi_azure_native/containerinstance/get_container_group.py +2 -2
  112. pulumi_azure_native/containerinstance/get_n_group.py +216 -0
  113. pulumi_azure_native/containerinstance/n_group.py +357 -0
  114. pulumi_azure_native/containerinstance/outputs.py +328 -0
  115. pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
  116. pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
  117. pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
  118. pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
  119. pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
  120. pulumi_azure_native/containerinstance/v20240901preview/__init__.py +14 -0
  121. pulumi_azure_native/containerinstance/v20240901preview/_enums.py +127 -0
  122. pulumi_azure_native/containerinstance/v20240901preview/_inputs.py +2739 -0
  123. pulumi_azure_native/containerinstance/v20240901preview/container_group.py +746 -0
  124. pulumi_azure_native/containerinstance/v20240901preview/get_container_group.py +386 -0
  125. pulumi_azure_native/containerinstance/v20240901preview/get_n_group.py +214 -0
  126. pulumi_azure_native/containerinstance/v20240901preview/n_group.py +355 -0
  127. pulumi_azure_native/containerinstance/v20240901preview/outputs.py +2792 -0
  128. pulumi_azure_native/containerinstance/v20241001preview/__init__.py +12 -0
  129. pulumi_azure_native/containerinstance/v20241001preview/_enums.py +127 -0
  130. pulumi_azure_native/containerinstance/v20241001preview/_inputs.py +2729 -0
  131. pulumi_azure_native/containerinstance/v20241001preview/container_group.py +775 -0
  132. pulumi_azure_native/containerinstance/v20241001preview/get_container_group.py +399 -0
  133. pulumi_azure_native/containerinstance/v20241001preview/outputs.py +2582 -0
  134. pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
  135. pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
  136. pulumi_azure_native/dbforpostgresql/backup.py +5 -1
  137. pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
  138. pulumi_azure_native/dbforpostgresql/database.py +3 -3
  139. pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
  140. pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
  141. pulumi_azure_native/dbforpostgresql/get_backup.py +4 -0
  142. pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
  143. pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
  144. pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
  145. pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
  146. pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
  147. pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
  148. pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
  149. pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
  150. pulumi_azure_native/dbforpostgresql/migration.py +3 -3
  151. pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
  152. pulumi_azure_native/dbforpostgresql/server.py +3 -3
  153. pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
  154. pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
  155. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
  156. pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
  157. pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
  158. pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
  159. pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
  160. pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
  161. pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
  162. pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
  163. pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
  164. pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
  165. pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
  166. pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
  167. pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
  168. pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
  169. pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
  170. pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
  171. pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
  172. pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
  173. pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
  174. pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
  175. pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
  176. pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
  177. pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
  178. pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
  179. pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
  180. pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
  181. pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
  182. pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
  183. pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
  184. pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
  185. pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
  186. pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +1 -1
  187. pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +1 -1
  188. pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +1 -1
  189. pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +1 -1
  190. pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +1 -1
  191. pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +1 -1
  192. pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +1 -1
  193. pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +1 -1
  194. pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +1 -1
  195. pulumi_azure_native/dbforpostgresql/v20240801/__init__.py +29 -0
  196. pulumi_azure_native/dbforpostgresql/v20240801/_enums.py +318 -0
  197. pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +1168 -0
  198. pulumi_azure_native/dbforpostgresql/v20240801/administrator.py +287 -0
  199. pulumi_azure_native/dbforpostgresql/v20240801/backup.py +220 -0
  200. pulumi_azure_native/dbforpostgresql/v20240801/configuration.py +338 -0
  201. pulumi_azure_native/dbforpostgresql/v20240801/database.py +248 -0
  202. pulumi_azure_native/dbforpostgresql/v20240801/firewall_rule.py +250 -0
  203. pulumi_azure_native/dbforpostgresql/v20240801/get_administrator.py +180 -0
  204. pulumi_azure_native/dbforpostgresql/v20240801/get_backup.py +167 -0
  205. pulumi_azure_native/dbforpostgresql/v20240801/get_configuration.py +271 -0
  206. pulumi_azure_native/dbforpostgresql/v20240801/get_database.py +154 -0
  207. pulumi_azure_native/dbforpostgresql/v20240801/get_firewall_rule.py +154 -0
  208. pulumi_azure_native/dbforpostgresql/v20240801/get_get_private_dns_zone_suffix_execute.py +66 -0
  209. pulumi_azure_native/dbforpostgresql/v20240801/get_migration.py +471 -0
  210. pulumi_azure_native/dbforpostgresql/v20240801/get_private_endpoint_connection.py +180 -0
  211. pulumi_azure_native/dbforpostgresql/v20240801/get_server.py +409 -0
  212. pulumi_azure_native/dbforpostgresql/v20240801/get_virtual_endpoint.py +167 -0
  213. pulumi_azure_native/dbforpostgresql/v20240801/migration.py +891 -0
  214. pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +1907 -0
  215. pulumi_azure_native/dbforpostgresql/v20240801/private_endpoint_connection.py +252 -0
  216. pulumi_azure_native/dbforpostgresql/v20240801/server.py +778 -0
  217. pulumi_azure_native/dbforpostgresql/v20240801/virtual_endpoint.py +259 -0
  218. pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
  219. pulumi_azure_native/iotoperations/__init__.py +3 -0
  220. pulumi_azure_native/iotoperations/broker.py +3 -3
  221. pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
  222. pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
  223. pulumi_azure_native/iotoperations/broker_listener.py +3 -3
  224. pulumi_azure_native/iotoperations/data_flow.py +1 -1
  225. pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
  226. pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
  227. pulumi_azure_native/iotoperations/get_broker.py +2 -2
  228. pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
  229. pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
  230. pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
  231. pulumi_azure_native/iotoperations/get_instance.py +2 -2
  232. pulumi_azure_native/iotoperations/instance.py +3 -3
  233. pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
  234. pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
  235. pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
  236. pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
  237. pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
  238. pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
  239. pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
  240. pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
  241. pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
  242. pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
  243. pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
  244. pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
  245. pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
  246. pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
  247. pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
  248. pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
  249. pulumi_azure_native/iotoperations/v20240915preview/__init__.py +26 -0
  250. pulumi_azure_native/iotoperations/v20240915preview/_enums.py +616 -0
  251. pulumi_azure_native/iotoperations/v20240915preview/_inputs.py +6404 -0
  252. pulumi_azure_native/iotoperations/v20240915preview/broker.py +251 -0
  253. pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +272 -0
  254. pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +272 -0
  255. pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +272 -0
  256. pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +272 -0
  257. pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +251 -0
  258. pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +251 -0
  259. pulumi_azure_native/iotoperations/v20240915preview/get_broker.py +154 -0
  260. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authentication.py +159 -0
  261. pulumi_azure_native/iotoperations/v20240915preview/get_broker_authorization.py +159 -0
  262. pulumi_azure_native/iotoperations/v20240915preview/get_broker_listener.py +159 -0
  263. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow.py +159 -0
  264. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_endpoint.py +154 -0
  265. pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_profile.py +154 -0
  266. pulumi_azure_native/iotoperations/v20240915preview/get_instance.py +188 -0
  267. pulumi_azure_native/iotoperations/v20240915preview/instance.py +317 -0
  268. pulumi_azure_native/iotoperations/v20240915preview/outputs.py +5389 -0
  269. pulumi_azure_native/pulumi-plugin.json +1 -1
  270. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/METADATA +1 -1
  271. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/RECORD +273 -164
  272. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/WHEEL +0 -0
  273. {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1168 @@
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 ._enums import *
17
+
18
+ __all__ = [
19
+ 'AdminCredentialsArgs',
20
+ 'AdminCredentialsArgsDict',
21
+ 'AuthConfigArgs',
22
+ 'AuthConfigArgsDict',
23
+ 'BackupArgs',
24
+ 'BackupArgsDict',
25
+ 'DataEncryptionArgs',
26
+ 'DataEncryptionArgsDict',
27
+ 'HighAvailabilityArgs',
28
+ 'HighAvailabilityArgsDict',
29
+ 'MaintenanceWindowArgs',
30
+ 'MaintenanceWindowArgsDict',
31
+ 'MigrationSecretParametersArgs',
32
+ 'MigrationSecretParametersArgsDict',
33
+ 'NetworkArgs',
34
+ 'NetworkArgsDict',
35
+ 'PrivateLinkServiceConnectionStateArgs',
36
+ 'PrivateLinkServiceConnectionStateArgsDict',
37
+ 'ReplicaArgs',
38
+ 'ReplicaArgsDict',
39
+ 'SkuArgs',
40
+ 'SkuArgsDict',
41
+ 'StorageArgs',
42
+ 'StorageArgsDict',
43
+ 'UserAssignedIdentityArgs',
44
+ 'UserAssignedIdentityArgsDict',
45
+ 'UserIdentityArgs',
46
+ 'UserIdentityArgsDict',
47
+ ]
48
+
49
+ MYPY = False
50
+
51
+ if not MYPY:
52
+ class AdminCredentialsArgsDict(TypedDict):
53
+ """
54
+ Server admin credentials.
55
+ """
56
+ source_server_password: pulumi.Input[str]
57
+ """
58
+ Password for source server.
59
+ """
60
+ target_server_password: pulumi.Input[str]
61
+ """
62
+ Password for target server.
63
+ """
64
+ elif False:
65
+ AdminCredentialsArgsDict: TypeAlias = Mapping[str, Any]
66
+
67
+ @pulumi.input_type
68
+ class AdminCredentialsArgs:
69
+ def __init__(__self__, *,
70
+ source_server_password: pulumi.Input[str],
71
+ target_server_password: pulumi.Input[str]):
72
+ """
73
+ Server admin credentials.
74
+ :param pulumi.Input[str] source_server_password: Password for source server.
75
+ :param pulumi.Input[str] target_server_password: Password for target server.
76
+ """
77
+ pulumi.set(__self__, "source_server_password", source_server_password)
78
+ pulumi.set(__self__, "target_server_password", target_server_password)
79
+
80
+ @property
81
+ @pulumi.getter(name="sourceServerPassword")
82
+ def source_server_password(self) -> pulumi.Input[str]:
83
+ """
84
+ Password for source server.
85
+ """
86
+ return pulumi.get(self, "source_server_password")
87
+
88
+ @source_server_password.setter
89
+ def source_server_password(self, value: pulumi.Input[str]):
90
+ pulumi.set(self, "source_server_password", value)
91
+
92
+ @property
93
+ @pulumi.getter(name="targetServerPassword")
94
+ def target_server_password(self) -> pulumi.Input[str]:
95
+ """
96
+ Password for target server.
97
+ """
98
+ return pulumi.get(self, "target_server_password")
99
+
100
+ @target_server_password.setter
101
+ def target_server_password(self, value: pulumi.Input[str]):
102
+ pulumi.set(self, "target_server_password", value)
103
+
104
+
105
+ if not MYPY:
106
+ class AuthConfigArgsDict(TypedDict):
107
+ """
108
+ Authentication configuration properties of a server
109
+ """
110
+ active_directory_auth: NotRequired[pulumi.Input[Union[str, 'ActiveDirectoryAuthEnum']]]
111
+ """
112
+ If Enabled, Azure Active Directory authentication is enabled.
113
+ """
114
+ password_auth: NotRequired[pulumi.Input[Union[str, 'PasswordAuthEnum']]]
115
+ """
116
+ If Enabled, Password authentication is enabled.
117
+ """
118
+ tenant_id: NotRequired[pulumi.Input[str]]
119
+ """
120
+ Tenant id of the server.
121
+ """
122
+ elif False:
123
+ AuthConfigArgsDict: TypeAlias = Mapping[str, Any]
124
+
125
+ @pulumi.input_type
126
+ class AuthConfigArgs:
127
+ def __init__(__self__, *,
128
+ active_directory_auth: Optional[pulumi.Input[Union[str, 'ActiveDirectoryAuthEnum']]] = None,
129
+ password_auth: Optional[pulumi.Input[Union[str, 'PasswordAuthEnum']]] = None,
130
+ tenant_id: Optional[pulumi.Input[str]] = None):
131
+ """
132
+ Authentication configuration properties of a server
133
+ :param pulumi.Input[Union[str, 'ActiveDirectoryAuthEnum']] active_directory_auth: If Enabled, Azure Active Directory authentication is enabled.
134
+ :param pulumi.Input[Union[str, 'PasswordAuthEnum']] password_auth: If Enabled, Password authentication is enabled.
135
+ :param pulumi.Input[str] tenant_id: Tenant id of the server.
136
+ """
137
+ if active_directory_auth is not None:
138
+ pulumi.set(__self__, "active_directory_auth", active_directory_auth)
139
+ if password_auth is None:
140
+ password_auth = 'Enabled'
141
+ if password_auth is not None:
142
+ pulumi.set(__self__, "password_auth", password_auth)
143
+ if tenant_id is None:
144
+ tenant_id = ''
145
+ if tenant_id is not None:
146
+ pulumi.set(__self__, "tenant_id", tenant_id)
147
+
148
+ @property
149
+ @pulumi.getter(name="activeDirectoryAuth")
150
+ def active_directory_auth(self) -> Optional[pulumi.Input[Union[str, 'ActiveDirectoryAuthEnum']]]:
151
+ """
152
+ If Enabled, Azure Active Directory authentication is enabled.
153
+ """
154
+ return pulumi.get(self, "active_directory_auth")
155
+
156
+ @active_directory_auth.setter
157
+ def active_directory_auth(self, value: Optional[pulumi.Input[Union[str, 'ActiveDirectoryAuthEnum']]]):
158
+ pulumi.set(self, "active_directory_auth", value)
159
+
160
+ @property
161
+ @pulumi.getter(name="passwordAuth")
162
+ def password_auth(self) -> Optional[pulumi.Input[Union[str, 'PasswordAuthEnum']]]:
163
+ """
164
+ If Enabled, Password authentication is enabled.
165
+ """
166
+ return pulumi.get(self, "password_auth")
167
+
168
+ @password_auth.setter
169
+ def password_auth(self, value: Optional[pulumi.Input[Union[str, 'PasswordAuthEnum']]]):
170
+ pulumi.set(self, "password_auth", value)
171
+
172
+ @property
173
+ @pulumi.getter(name="tenantId")
174
+ def tenant_id(self) -> Optional[pulumi.Input[str]]:
175
+ """
176
+ Tenant id of the server.
177
+ """
178
+ return pulumi.get(self, "tenant_id")
179
+
180
+ @tenant_id.setter
181
+ def tenant_id(self, value: Optional[pulumi.Input[str]]):
182
+ pulumi.set(self, "tenant_id", value)
183
+
184
+
185
+ if not MYPY:
186
+ class BackupArgsDict(TypedDict):
187
+ """
188
+ Backup properties of a server
189
+ """
190
+ backup_retention_days: NotRequired[pulumi.Input[int]]
191
+ """
192
+ Backup retention days for the server.
193
+ """
194
+ geo_redundant_backup: NotRequired[pulumi.Input[Union[str, 'GeoRedundantBackupEnum']]]
195
+ """
196
+ A value indicating whether Geo-Redundant backup is enabled on the server.
197
+ """
198
+ elif False:
199
+ BackupArgsDict: TypeAlias = Mapping[str, Any]
200
+
201
+ @pulumi.input_type
202
+ class BackupArgs:
203
+ def __init__(__self__, *,
204
+ backup_retention_days: Optional[pulumi.Input[int]] = None,
205
+ geo_redundant_backup: Optional[pulumi.Input[Union[str, 'GeoRedundantBackupEnum']]] = None):
206
+ """
207
+ Backup properties of a server
208
+ :param pulumi.Input[int] backup_retention_days: Backup retention days for the server.
209
+ :param pulumi.Input[Union[str, 'GeoRedundantBackupEnum']] geo_redundant_backup: A value indicating whether Geo-Redundant backup is enabled on the server.
210
+ """
211
+ if backup_retention_days is None:
212
+ backup_retention_days = 7
213
+ if backup_retention_days is not None:
214
+ pulumi.set(__self__, "backup_retention_days", backup_retention_days)
215
+ if geo_redundant_backup is None:
216
+ geo_redundant_backup = 'Disabled'
217
+ if geo_redundant_backup is not None:
218
+ pulumi.set(__self__, "geo_redundant_backup", geo_redundant_backup)
219
+
220
+ @property
221
+ @pulumi.getter(name="backupRetentionDays")
222
+ def backup_retention_days(self) -> Optional[pulumi.Input[int]]:
223
+ """
224
+ Backup retention days for the server.
225
+ """
226
+ return pulumi.get(self, "backup_retention_days")
227
+
228
+ @backup_retention_days.setter
229
+ def backup_retention_days(self, value: Optional[pulumi.Input[int]]):
230
+ pulumi.set(self, "backup_retention_days", value)
231
+
232
+ @property
233
+ @pulumi.getter(name="geoRedundantBackup")
234
+ def geo_redundant_backup(self) -> Optional[pulumi.Input[Union[str, 'GeoRedundantBackupEnum']]]:
235
+ """
236
+ A value indicating whether Geo-Redundant backup is enabled on the server.
237
+ """
238
+ return pulumi.get(self, "geo_redundant_backup")
239
+
240
+ @geo_redundant_backup.setter
241
+ def geo_redundant_backup(self, value: Optional[pulumi.Input[Union[str, 'GeoRedundantBackupEnum']]]):
242
+ pulumi.set(self, "geo_redundant_backup", value)
243
+
244
+
245
+ if not MYPY:
246
+ class DataEncryptionArgsDict(TypedDict):
247
+ """
248
+ Data encryption properties of a server
249
+ """
250
+ geo_backup_encryption_key_status: NotRequired[pulumi.Input[Union[str, 'KeyStatusEnum']]]
251
+ """
252
+ Geo-backup encryption key status for Data encryption enabled server.
253
+ """
254
+ geo_backup_key_uri: NotRequired[pulumi.Input[str]]
255
+ """
256
+ URI for the key in keyvault for data encryption for geo-backup of server.
257
+ """
258
+ geo_backup_user_assigned_identity_id: NotRequired[pulumi.Input[str]]
259
+ """
260
+ Resource Id for the User assigned identity to be used for data encryption for geo-backup of server.
261
+ """
262
+ primary_encryption_key_status: NotRequired[pulumi.Input[Union[str, 'KeyStatusEnum']]]
263
+ """
264
+ Primary encryption key status for Data encryption enabled server.
265
+ """
266
+ primary_key_uri: NotRequired[pulumi.Input[str]]
267
+ """
268
+ URI for the key in keyvault for data encryption of the primary server.
269
+ """
270
+ primary_user_assigned_identity_id: NotRequired[pulumi.Input[str]]
271
+ """
272
+ Resource Id for the User assigned identity to be used for data encryption of the primary server.
273
+ """
274
+ type: NotRequired[pulumi.Input[Union[str, 'ArmServerKeyType']]]
275
+ """
276
+ Data encryption type to depict if it is System Managed vs Azure Key vault.
277
+ """
278
+ elif False:
279
+ DataEncryptionArgsDict: TypeAlias = Mapping[str, Any]
280
+
281
+ @pulumi.input_type
282
+ class DataEncryptionArgs:
283
+ def __init__(__self__, *,
284
+ geo_backup_encryption_key_status: Optional[pulumi.Input[Union[str, 'KeyStatusEnum']]] = None,
285
+ geo_backup_key_uri: Optional[pulumi.Input[str]] = None,
286
+ geo_backup_user_assigned_identity_id: Optional[pulumi.Input[str]] = None,
287
+ primary_encryption_key_status: Optional[pulumi.Input[Union[str, 'KeyStatusEnum']]] = None,
288
+ primary_key_uri: Optional[pulumi.Input[str]] = None,
289
+ primary_user_assigned_identity_id: Optional[pulumi.Input[str]] = None,
290
+ type: Optional[pulumi.Input[Union[str, 'ArmServerKeyType']]] = None):
291
+ """
292
+ Data encryption properties of a server
293
+ :param pulumi.Input[Union[str, 'KeyStatusEnum']] geo_backup_encryption_key_status: Geo-backup encryption key status for Data encryption enabled server.
294
+ :param pulumi.Input[str] geo_backup_key_uri: URI for the key in keyvault for data encryption for geo-backup of server.
295
+ :param pulumi.Input[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.
296
+ :param pulumi.Input[Union[str, 'KeyStatusEnum']] primary_encryption_key_status: Primary encryption key status for Data encryption enabled server.
297
+ :param pulumi.Input[str] primary_key_uri: URI for the key in keyvault for data encryption of the primary server.
298
+ :param pulumi.Input[str] primary_user_assigned_identity_id: Resource Id for the User assigned identity to be used for data encryption of the primary server.
299
+ :param pulumi.Input[Union[str, 'ArmServerKeyType']] type: Data encryption type to depict if it is System Managed vs Azure Key vault.
300
+ """
301
+ if geo_backup_encryption_key_status is not None:
302
+ pulumi.set(__self__, "geo_backup_encryption_key_status", geo_backup_encryption_key_status)
303
+ if geo_backup_key_uri is not None:
304
+ pulumi.set(__self__, "geo_backup_key_uri", geo_backup_key_uri)
305
+ if geo_backup_user_assigned_identity_id is not None:
306
+ pulumi.set(__self__, "geo_backup_user_assigned_identity_id", geo_backup_user_assigned_identity_id)
307
+ if primary_encryption_key_status is not None:
308
+ pulumi.set(__self__, "primary_encryption_key_status", primary_encryption_key_status)
309
+ if primary_key_uri is not None:
310
+ pulumi.set(__self__, "primary_key_uri", primary_key_uri)
311
+ if primary_user_assigned_identity_id is not None:
312
+ pulumi.set(__self__, "primary_user_assigned_identity_id", primary_user_assigned_identity_id)
313
+ if type is not None:
314
+ pulumi.set(__self__, "type", type)
315
+
316
+ @property
317
+ @pulumi.getter(name="geoBackupEncryptionKeyStatus")
318
+ def geo_backup_encryption_key_status(self) -> Optional[pulumi.Input[Union[str, 'KeyStatusEnum']]]:
319
+ """
320
+ Geo-backup encryption key status for Data encryption enabled server.
321
+ """
322
+ return pulumi.get(self, "geo_backup_encryption_key_status")
323
+
324
+ @geo_backup_encryption_key_status.setter
325
+ def geo_backup_encryption_key_status(self, value: Optional[pulumi.Input[Union[str, 'KeyStatusEnum']]]):
326
+ pulumi.set(self, "geo_backup_encryption_key_status", value)
327
+
328
+ @property
329
+ @pulumi.getter(name="geoBackupKeyURI")
330
+ def geo_backup_key_uri(self) -> Optional[pulumi.Input[str]]:
331
+ """
332
+ URI for the key in keyvault for data encryption for geo-backup of server.
333
+ """
334
+ return pulumi.get(self, "geo_backup_key_uri")
335
+
336
+ @geo_backup_key_uri.setter
337
+ def geo_backup_key_uri(self, value: Optional[pulumi.Input[str]]):
338
+ pulumi.set(self, "geo_backup_key_uri", value)
339
+
340
+ @property
341
+ @pulumi.getter(name="geoBackupUserAssignedIdentityId")
342
+ def geo_backup_user_assigned_identity_id(self) -> Optional[pulumi.Input[str]]:
343
+ """
344
+ Resource Id for the User assigned identity to be used for data encryption for geo-backup of server.
345
+ """
346
+ return pulumi.get(self, "geo_backup_user_assigned_identity_id")
347
+
348
+ @geo_backup_user_assigned_identity_id.setter
349
+ def geo_backup_user_assigned_identity_id(self, value: Optional[pulumi.Input[str]]):
350
+ pulumi.set(self, "geo_backup_user_assigned_identity_id", value)
351
+
352
+ @property
353
+ @pulumi.getter(name="primaryEncryptionKeyStatus")
354
+ def primary_encryption_key_status(self) -> Optional[pulumi.Input[Union[str, 'KeyStatusEnum']]]:
355
+ """
356
+ Primary encryption key status for Data encryption enabled server.
357
+ """
358
+ return pulumi.get(self, "primary_encryption_key_status")
359
+
360
+ @primary_encryption_key_status.setter
361
+ def primary_encryption_key_status(self, value: Optional[pulumi.Input[Union[str, 'KeyStatusEnum']]]):
362
+ pulumi.set(self, "primary_encryption_key_status", value)
363
+
364
+ @property
365
+ @pulumi.getter(name="primaryKeyURI")
366
+ def primary_key_uri(self) -> Optional[pulumi.Input[str]]:
367
+ """
368
+ URI for the key in keyvault for data encryption of the primary server.
369
+ """
370
+ return pulumi.get(self, "primary_key_uri")
371
+
372
+ @primary_key_uri.setter
373
+ def primary_key_uri(self, value: Optional[pulumi.Input[str]]):
374
+ pulumi.set(self, "primary_key_uri", value)
375
+
376
+ @property
377
+ @pulumi.getter(name="primaryUserAssignedIdentityId")
378
+ def primary_user_assigned_identity_id(self) -> Optional[pulumi.Input[str]]:
379
+ """
380
+ Resource Id for the User assigned identity to be used for data encryption of the primary server.
381
+ """
382
+ return pulumi.get(self, "primary_user_assigned_identity_id")
383
+
384
+ @primary_user_assigned_identity_id.setter
385
+ def primary_user_assigned_identity_id(self, value: Optional[pulumi.Input[str]]):
386
+ pulumi.set(self, "primary_user_assigned_identity_id", value)
387
+
388
+ @property
389
+ @pulumi.getter
390
+ def type(self) -> Optional[pulumi.Input[Union[str, 'ArmServerKeyType']]]:
391
+ """
392
+ Data encryption type to depict if it is System Managed vs Azure Key vault.
393
+ """
394
+ return pulumi.get(self, "type")
395
+
396
+ @type.setter
397
+ def type(self, value: Optional[pulumi.Input[Union[str, 'ArmServerKeyType']]]):
398
+ pulumi.set(self, "type", value)
399
+
400
+
401
+ if not MYPY:
402
+ class HighAvailabilityArgsDict(TypedDict):
403
+ """
404
+ High availability properties of a server
405
+ """
406
+ mode: NotRequired[pulumi.Input[Union[str, 'HighAvailabilityMode']]]
407
+ """
408
+ The HA mode for the server.
409
+ """
410
+ standby_availability_zone: NotRequired[pulumi.Input[str]]
411
+ """
412
+ availability zone information of the standby.
413
+ """
414
+ elif False:
415
+ HighAvailabilityArgsDict: TypeAlias = Mapping[str, Any]
416
+
417
+ @pulumi.input_type
418
+ class HighAvailabilityArgs:
419
+ def __init__(__self__, *,
420
+ mode: Optional[pulumi.Input[Union[str, 'HighAvailabilityMode']]] = None,
421
+ standby_availability_zone: Optional[pulumi.Input[str]] = None):
422
+ """
423
+ High availability properties of a server
424
+ :param pulumi.Input[Union[str, 'HighAvailabilityMode']] mode: The HA mode for the server.
425
+ :param pulumi.Input[str] standby_availability_zone: availability zone information of the standby.
426
+ """
427
+ if mode is None:
428
+ mode = 'Disabled'
429
+ if mode is not None:
430
+ pulumi.set(__self__, "mode", mode)
431
+ if standby_availability_zone is None:
432
+ standby_availability_zone = ''
433
+ if standby_availability_zone is not None:
434
+ pulumi.set(__self__, "standby_availability_zone", standby_availability_zone)
435
+
436
+ @property
437
+ @pulumi.getter
438
+ def mode(self) -> Optional[pulumi.Input[Union[str, 'HighAvailabilityMode']]]:
439
+ """
440
+ The HA mode for the server.
441
+ """
442
+ return pulumi.get(self, "mode")
443
+
444
+ @mode.setter
445
+ def mode(self, value: Optional[pulumi.Input[Union[str, 'HighAvailabilityMode']]]):
446
+ pulumi.set(self, "mode", value)
447
+
448
+ @property
449
+ @pulumi.getter(name="standbyAvailabilityZone")
450
+ def standby_availability_zone(self) -> Optional[pulumi.Input[str]]:
451
+ """
452
+ availability zone information of the standby.
453
+ """
454
+ return pulumi.get(self, "standby_availability_zone")
455
+
456
+ @standby_availability_zone.setter
457
+ def standby_availability_zone(self, value: Optional[pulumi.Input[str]]):
458
+ pulumi.set(self, "standby_availability_zone", value)
459
+
460
+
461
+ if not MYPY:
462
+ class MaintenanceWindowArgsDict(TypedDict):
463
+ """
464
+ Maintenance window properties of a server.
465
+ """
466
+ custom_window: NotRequired[pulumi.Input[str]]
467
+ """
468
+ indicates whether custom window is enabled or disabled
469
+ """
470
+ day_of_week: NotRequired[pulumi.Input[int]]
471
+ """
472
+ day of week for maintenance window
473
+ """
474
+ start_hour: NotRequired[pulumi.Input[int]]
475
+ """
476
+ start hour for maintenance window
477
+ """
478
+ start_minute: NotRequired[pulumi.Input[int]]
479
+ """
480
+ start minute for maintenance window
481
+ """
482
+ elif False:
483
+ MaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
484
+
485
+ @pulumi.input_type
486
+ class MaintenanceWindowArgs:
487
+ def __init__(__self__, *,
488
+ custom_window: Optional[pulumi.Input[str]] = None,
489
+ day_of_week: Optional[pulumi.Input[int]] = None,
490
+ start_hour: Optional[pulumi.Input[int]] = None,
491
+ start_minute: Optional[pulumi.Input[int]] = None):
492
+ """
493
+ Maintenance window properties of a server.
494
+ :param pulumi.Input[str] custom_window: indicates whether custom window is enabled or disabled
495
+ :param pulumi.Input[int] day_of_week: day of week for maintenance window
496
+ :param pulumi.Input[int] start_hour: start hour for maintenance window
497
+ :param pulumi.Input[int] start_minute: start minute for maintenance window
498
+ """
499
+ if custom_window is None:
500
+ custom_window = 'Disabled'
501
+ if custom_window is not None:
502
+ pulumi.set(__self__, "custom_window", custom_window)
503
+ if day_of_week is None:
504
+ day_of_week = 0
505
+ if day_of_week is not None:
506
+ pulumi.set(__self__, "day_of_week", day_of_week)
507
+ if start_hour is None:
508
+ start_hour = 0
509
+ if start_hour is not None:
510
+ pulumi.set(__self__, "start_hour", start_hour)
511
+ if start_minute is None:
512
+ start_minute = 0
513
+ if start_minute is not None:
514
+ pulumi.set(__self__, "start_minute", start_minute)
515
+
516
+ @property
517
+ @pulumi.getter(name="customWindow")
518
+ def custom_window(self) -> Optional[pulumi.Input[str]]:
519
+ """
520
+ indicates whether custom window is enabled or disabled
521
+ """
522
+ return pulumi.get(self, "custom_window")
523
+
524
+ @custom_window.setter
525
+ def custom_window(self, value: Optional[pulumi.Input[str]]):
526
+ pulumi.set(self, "custom_window", value)
527
+
528
+ @property
529
+ @pulumi.getter(name="dayOfWeek")
530
+ def day_of_week(self) -> Optional[pulumi.Input[int]]:
531
+ """
532
+ day of week for maintenance window
533
+ """
534
+ return pulumi.get(self, "day_of_week")
535
+
536
+ @day_of_week.setter
537
+ def day_of_week(self, value: Optional[pulumi.Input[int]]):
538
+ pulumi.set(self, "day_of_week", value)
539
+
540
+ @property
541
+ @pulumi.getter(name="startHour")
542
+ def start_hour(self) -> Optional[pulumi.Input[int]]:
543
+ """
544
+ start hour for maintenance window
545
+ """
546
+ return pulumi.get(self, "start_hour")
547
+
548
+ @start_hour.setter
549
+ def start_hour(self, value: Optional[pulumi.Input[int]]):
550
+ pulumi.set(self, "start_hour", value)
551
+
552
+ @property
553
+ @pulumi.getter(name="startMinute")
554
+ def start_minute(self) -> Optional[pulumi.Input[int]]:
555
+ """
556
+ start minute for maintenance window
557
+ """
558
+ return pulumi.get(self, "start_minute")
559
+
560
+ @start_minute.setter
561
+ def start_minute(self, value: Optional[pulumi.Input[int]]):
562
+ pulumi.set(self, "start_minute", value)
563
+
564
+
565
+ if not MYPY:
566
+ class MigrationSecretParametersArgsDict(TypedDict):
567
+ """
568
+ Migration secret parameters.
569
+ """
570
+ admin_credentials: pulumi.Input['AdminCredentialsArgsDict']
571
+ """
572
+ Admin credentials for source and target servers
573
+ """
574
+ source_server_username: NotRequired[pulumi.Input[str]]
575
+ """
576
+ Gets or sets the username for the source server. This user need not be an admin.
577
+ """
578
+ target_server_username: NotRequired[pulumi.Input[str]]
579
+ """
580
+ Gets or sets the username for the target server. This user need not be an admin.
581
+ """
582
+ elif False:
583
+ MigrationSecretParametersArgsDict: TypeAlias = Mapping[str, Any]
584
+
585
+ @pulumi.input_type
586
+ class MigrationSecretParametersArgs:
587
+ def __init__(__self__, *,
588
+ admin_credentials: pulumi.Input['AdminCredentialsArgs'],
589
+ source_server_username: Optional[pulumi.Input[str]] = None,
590
+ target_server_username: Optional[pulumi.Input[str]] = None):
591
+ """
592
+ Migration secret parameters.
593
+ :param pulumi.Input['AdminCredentialsArgs'] admin_credentials: Admin credentials for source and target servers
594
+ :param pulumi.Input[str] source_server_username: Gets or sets the username for the source server. This user need not be an admin.
595
+ :param pulumi.Input[str] target_server_username: Gets or sets the username for the target server. This user need not be an admin.
596
+ """
597
+ pulumi.set(__self__, "admin_credentials", admin_credentials)
598
+ if source_server_username is not None:
599
+ pulumi.set(__self__, "source_server_username", source_server_username)
600
+ if target_server_username is not None:
601
+ pulumi.set(__self__, "target_server_username", target_server_username)
602
+
603
+ @property
604
+ @pulumi.getter(name="adminCredentials")
605
+ def admin_credentials(self) -> pulumi.Input['AdminCredentialsArgs']:
606
+ """
607
+ Admin credentials for source and target servers
608
+ """
609
+ return pulumi.get(self, "admin_credentials")
610
+
611
+ @admin_credentials.setter
612
+ def admin_credentials(self, value: pulumi.Input['AdminCredentialsArgs']):
613
+ pulumi.set(self, "admin_credentials", value)
614
+
615
+ @property
616
+ @pulumi.getter(name="sourceServerUsername")
617
+ def source_server_username(self) -> Optional[pulumi.Input[str]]:
618
+ """
619
+ Gets or sets the username for the source server. This user need not be an admin.
620
+ """
621
+ return pulumi.get(self, "source_server_username")
622
+
623
+ @source_server_username.setter
624
+ def source_server_username(self, value: Optional[pulumi.Input[str]]):
625
+ pulumi.set(self, "source_server_username", value)
626
+
627
+ @property
628
+ @pulumi.getter(name="targetServerUsername")
629
+ def target_server_username(self) -> Optional[pulumi.Input[str]]:
630
+ """
631
+ Gets or sets the username for the target server. This user need not be an admin.
632
+ """
633
+ return pulumi.get(self, "target_server_username")
634
+
635
+ @target_server_username.setter
636
+ def target_server_username(self, value: Optional[pulumi.Input[str]]):
637
+ pulumi.set(self, "target_server_username", value)
638
+
639
+
640
+ if not MYPY:
641
+ class NetworkArgsDict(TypedDict):
642
+ """
643
+ Network properties of a server.
644
+ """
645
+ delegated_subnet_resource_id: NotRequired[pulumi.Input[str]]
646
+ """
647
+ 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.
648
+ """
649
+ private_dns_zone_arm_resource_id: NotRequired[pulumi.Input[str]]
650
+ """
651
+ 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.
652
+ """
653
+ public_network_access: NotRequired[pulumi.Input[Union[str, 'ServerPublicNetworkAccessState']]]
654
+ """
655
+ public network access is enabled or not
656
+ """
657
+ elif False:
658
+ NetworkArgsDict: TypeAlias = Mapping[str, Any]
659
+
660
+ @pulumi.input_type
661
+ class NetworkArgs:
662
+ def __init__(__self__, *,
663
+ delegated_subnet_resource_id: Optional[pulumi.Input[str]] = None,
664
+ private_dns_zone_arm_resource_id: Optional[pulumi.Input[str]] = None,
665
+ public_network_access: Optional[pulumi.Input[Union[str, 'ServerPublicNetworkAccessState']]] = None):
666
+ """
667
+ Network properties of a server.
668
+ :param pulumi.Input[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.
669
+ :param pulumi.Input[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.
670
+ :param pulumi.Input[Union[str, 'ServerPublicNetworkAccessState']] public_network_access: public network access is enabled or not
671
+ """
672
+ if delegated_subnet_resource_id is not None:
673
+ pulumi.set(__self__, "delegated_subnet_resource_id", delegated_subnet_resource_id)
674
+ if private_dns_zone_arm_resource_id is not None:
675
+ pulumi.set(__self__, "private_dns_zone_arm_resource_id", private_dns_zone_arm_resource_id)
676
+ if public_network_access is not None:
677
+ pulumi.set(__self__, "public_network_access", public_network_access)
678
+
679
+ @property
680
+ @pulumi.getter(name="delegatedSubnetResourceId")
681
+ def delegated_subnet_resource_id(self) -> Optional[pulumi.Input[str]]:
682
+ """
683
+ 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.
684
+ """
685
+ return pulumi.get(self, "delegated_subnet_resource_id")
686
+
687
+ @delegated_subnet_resource_id.setter
688
+ def delegated_subnet_resource_id(self, value: Optional[pulumi.Input[str]]):
689
+ pulumi.set(self, "delegated_subnet_resource_id", value)
690
+
691
+ @property
692
+ @pulumi.getter(name="privateDnsZoneArmResourceId")
693
+ def private_dns_zone_arm_resource_id(self) -> Optional[pulumi.Input[str]]:
694
+ """
695
+ 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.
696
+ """
697
+ return pulumi.get(self, "private_dns_zone_arm_resource_id")
698
+
699
+ @private_dns_zone_arm_resource_id.setter
700
+ def private_dns_zone_arm_resource_id(self, value: Optional[pulumi.Input[str]]):
701
+ pulumi.set(self, "private_dns_zone_arm_resource_id", value)
702
+
703
+ @property
704
+ @pulumi.getter(name="publicNetworkAccess")
705
+ def public_network_access(self) -> Optional[pulumi.Input[Union[str, 'ServerPublicNetworkAccessState']]]:
706
+ """
707
+ public network access is enabled or not
708
+ """
709
+ return pulumi.get(self, "public_network_access")
710
+
711
+ @public_network_access.setter
712
+ def public_network_access(self, value: Optional[pulumi.Input[Union[str, 'ServerPublicNetworkAccessState']]]):
713
+ pulumi.set(self, "public_network_access", value)
714
+
715
+
716
+ if not MYPY:
717
+ class PrivateLinkServiceConnectionStateArgsDict(TypedDict):
718
+ """
719
+ A collection of information about the state of the connection between service consumer and provider.
720
+ """
721
+ actions_required: NotRequired[pulumi.Input[str]]
722
+ """
723
+ A message indicating if changes on the service provider require any updates on the consumer.
724
+ """
725
+ description: NotRequired[pulumi.Input[str]]
726
+ """
727
+ The reason for approval/rejection of the connection.
728
+ """
729
+ status: NotRequired[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]
730
+ """
731
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
732
+ """
733
+ elif False:
734
+ PrivateLinkServiceConnectionStateArgsDict: TypeAlias = Mapping[str, Any]
735
+
736
+ @pulumi.input_type
737
+ class PrivateLinkServiceConnectionStateArgs:
738
+ def __init__(__self__, *,
739
+ actions_required: Optional[pulumi.Input[str]] = None,
740
+ description: Optional[pulumi.Input[str]] = None,
741
+ status: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]] = None):
742
+ """
743
+ A collection of information about the state of the connection between service consumer and provider.
744
+ :param pulumi.Input[str] actions_required: A message indicating if changes on the service provider require any updates on the consumer.
745
+ :param pulumi.Input[str] description: The reason for approval/rejection of the connection.
746
+ :param pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']] status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
747
+ """
748
+ if actions_required is not None:
749
+ pulumi.set(__self__, "actions_required", actions_required)
750
+ if description is not None:
751
+ pulumi.set(__self__, "description", description)
752
+ if status is not None:
753
+ pulumi.set(__self__, "status", status)
754
+
755
+ @property
756
+ @pulumi.getter(name="actionsRequired")
757
+ def actions_required(self) -> Optional[pulumi.Input[str]]:
758
+ """
759
+ A message indicating if changes on the service provider require any updates on the consumer.
760
+ """
761
+ return pulumi.get(self, "actions_required")
762
+
763
+ @actions_required.setter
764
+ def actions_required(self, value: Optional[pulumi.Input[str]]):
765
+ pulumi.set(self, "actions_required", value)
766
+
767
+ @property
768
+ @pulumi.getter
769
+ def description(self) -> Optional[pulumi.Input[str]]:
770
+ """
771
+ The reason for approval/rejection of the connection.
772
+ """
773
+ return pulumi.get(self, "description")
774
+
775
+ @description.setter
776
+ def description(self, value: Optional[pulumi.Input[str]]):
777
+ pulumi.set(self, "description", value)
778
+
779
+ @property
780
+ @pulumi.getter
781
+ def status(self) -> Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]:
782
+ """
783
+ Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
784
+ """
785
+ return pulumi.get(self, "status")
786
+
787
+ @status.setter
788
+ def status(self, value: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]):
789
+ pulumi.set(self, "status", value)
790
+
791
+
792
+ if not MYPY:
793
+ class ReplicaArgsDict(TypedDict):
794
+ """
795
+ Replica properties of a server
796
+ """
797
+ promote_mode: NotRequired[pulumi.Input[Union[str, 'ReadReplicaPromoteMode']]]
798
+ """
799
+ Sets the promote mode for a replica server. This is a write only property.
800
+ """
801
+ promote_option: NotRequired[pulumi.Input[Union[str, 'ReplicationPromoteOption']]]
802
+ """
803
+ Sets the promote options for a replica server. This is a write only property.
804
+ """
805
+ role: NotRequired[pulumi.Input[Union[str, 'ReplicationRole']]]
806
+ """
807
+ Used to indicate role of the server in replication set.
808
+ """
809
+ elif False:
810
+ ReplicaArgsDict: TypeAlias = Mapping[str, Any]
811
+
812
+ @pulumi.input_type
813
+ class ReplicaArgs:
814
+ def __init__(__self__, *,
815
+ promote_mode: Optional[pulumi.Input[Union[str, 'ReadReplicaPromoteMode']]] = None,
816
+ promote_option: Optional[pulumi.Input[Union[str, 'ReplicationPromoteOption']]] = None,
817
+ role: Optional[pulumi.Input[Union[str, 'ReplicationRole']]] = None):
818
+ """
819
+ Replica properties of a server
820
+ :param pulumi.Input[Union[str, 'ReadReplicaPromoteMode']] promote_mode: Sets the promote mode for a replica server. This is a write only property.
821
+ :param pulumi.Input[Union[str, 'ReplicationPromoteOption']] promote_option: Sets the promote options for a replica server. This is a write only property.
822
+ :param pulumi.Input[Union[str, 'ReplicationRole']] role: Used to indicate role of the server in replication set.
823
+ """
824
+ if promote_mode is not None:
825
+ pulumi.set(__self__, "promote_mode", promote_mode)
826
+ if promote_option is not None:
827
+ pulumi.set(__self__, "promote_option", promote_option)
828
+ if role is not None:
829
+ pulumi.set(__self__, "role", role)
830
+
831
+ @property
832
+ @pulumi.getter(name="promoteMode")
833
+ def promote_mode(self) -> Optional[pulumi.Input[Union[str, 'ReadReplicaPromoteMode']]]:
834
+ """
835
+ Sets the promote mode for a replica server. This is a write only property.
836
+ """
837
+ return pulumi.get(self, "promote_mode")
838
+
839
+ @promote_mode.setter
840
+ def promote_mode(self, value: Optional[pulumi.Input[Union[str, 'ReadReplicaPromoteMode']]]):
841
+ pulumi.set(self, "promote_mode", value)
842
+
843
+ @property
844
+ @pulumi.getter(name="promoteOption")
845
+ def promote_option(self) -> Optional[pulumi.Input[Union[str, 'ReplicationPromoteOption']]]:
846
+ """
847
+ Sets the promote options for a replica server. This is a write only property.
848
+ """
849
+ return pulumi.get(self, "promote_option")
850
+
851
+ @promote_option.setter
852
+ def promote_option(self, value: Optional[pulumi.Input[Union[str, 'ReplicationPromoteOption']]]):
853
+ pulumi.set(self, "promote_option", value)
854
+
855
+ @property
856
+ @pulumi.getter
857
+ def role(self) -> Optional[pulumi.Input[Union[str, 'ReplicationRole']]]:
858
+ """
859
+ Used to indicate role of the server in replication set.
860
+ """
861
+ return pulumi.get(self, "role")
862
+
863
+ @role.setter
864
+ def role(self, value: Optional[pulumi.Input[Union[str, 'ReplicationRole']]]):
865
+ pulumi.set(self, "role", value)
866
+
867
+
868
+ if not MYPY:
869
+ class SkuArgsDict(TypedDict):
870
+ """
871
+ Sku information related properties of a server.
872
+ """
873
+ name: pulumi.Input[str]
874
+ """
875
+ The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3.
876
+ """
877
+ tier: pulumi.Input[Union[str, 'SkuTier']]
878
+ """
879
+ The tier of the particular SKU, e.g. Burstable.
880
+ """
881
+ elif False:
882
+ SkuArgsDict: TypeAlias = Mapping[str, Any]
883
+
884
+ @pulumi.input_type
885
+ class SkuArgs:
886
+ def __init__(__self__, *,
887
+ name: pulumi.Input[str],
888
+ tier: pulumi.Input[Union[str, 'SkuTier']]):
889
+ """
890
+ Sku information related properties of a server.
891
+ :param pulumi.Input[str] name: The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3.
892
+ :param pulumi.Input[Union[str, 'SkuTier']] tier: The tier of the particular SKU, e.g. Burstable.
893
+ """
894
+ pulumi.set(__self__, "name", name)
895
+ pulumi.set(__self__, "tier", tier)
896
+
897
+ @property
898
+ @pulumi.getter
899
+ def name(self) -> pulumi.Input[str]:
900
+ """
901
+ The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3.
902
+ """
903
+ return pulumi.get(self, "name")
904
+
905
+ @name.setter
906
+ def name(self, value: pulumi.Input[str]):
907
+ pulumi.set(self, "name", value)
908
+
909
+ @property
910
+ @pulumi.getter
911
+ def tier(self) -> pulumi.Input[Union[str, 'SkuTier']]:
912
+ """
913
+ The tier of the particular SKU, e.g. Burstable.
914
+ """
915
+ return pulumi.get(self, "tier")
916
+
917
+ @tier.setter
918
+ def tier(self, value: pulumi.Input[Union[str, 'SkuTier']]):
919
+ pulumi.set(self, "tier", value)
920
+
921
+
922
+ if not MYPY:
923
+ class StorageArgsDict(TypedDict):
924
+ """
925
+ Storage properties of a server
926
+ """
927
+ auto_grow: NotRequired[pulumi.Input[Union[str, 'StorageAutoGrow']]]
928
+ """
929
+ Flag to enable / disable Storage Auto grow for flexible server.
930
+ """
931
+ iops: NotRequired[pulumi.Input[int]]
932
+ """
933
+ Storage tier IOPS quantity. This property is required to be set for storage Type PremiumV2_LRS
934
+ """
935
+ storage_size_gb: NotRequired[pulumi.Input[int]]
936
+ """
937
+ Max storage allowed for a server.
938
+ """
939
+ throughput: NotRequired[pulumi.Input[int]]
940
+ """
941
+ Storage throughput for the server. This is required to be set for storage Type PremiumV2_LRS
942
+ """
943
+ tier: NotRequired[pulumi.Input[Union[str, 'AzureManagedDiskPerformanceTiers']]]
944
+ """
945
+ Name of storage tier for IOPS.
946
+ """
947
+ type: NotRequired[pulumi.Input[Union[str, 'StorageType']]]
948
+ """
949
+ Storage type for the server. Allowed values are Premium_LRS and PremiumV2_LRS, and default is Premium_LRS if not specified
950
+ """
951
+ elif False:
952
+ StorageArgsDict: TypeAlias = Mapping[str, Any]
953
+
954
+ @pulumi.input_type
955
+ class StorageArgs:
956
+ def __init__(__self__, *,
957
+ auto_grow: Optional[pulumi.Input[Union[str, 'StorageAutoGrow']]] = None,
958
+ iops: Optional[pulumi.Input[int]] = None,
959
+ storage_size_gb: Optional[pulumi.Input[int]] = None,
960
+ throughput: Optional[pulumi.Input[int]] = None,
961
+ tier: Optional[pulumi.Input[Union[str, 'AzureManagedDiskPerformanceTiers']]] = None,
962
+ type: Optional[pulumi.Input[Union[str, 'StorageType']]] = None):
963
+ """
964
+ Storage properties of a server
965
+ :param pulumi.Input[Union[str, 'StorageAutoGrow']] auto_grow: Flag to enable / disable Storage Auto grow for flexible server.
966
+ :param pulumi.Input[int] iops: Storage tier IOPS quantity. This property is required to be set for storage Type PremiumV2_LRS
967
+ :param pulumi.Input[int] storage_size_gb: Max storage allowed for a server.
968
+ :param pulumi.Input[int] throughput: Storage throughput for the server. This is required to be set for storage Type PremiumV2_LRS
969
+ :param pulumi.Input[Union[str, 'AzureManagedDiskPerformanceTiers']] tier: Name of storage tier for IOPS.
970
+ :param pulumi.Input[Union[str, 'StorageType']] type: Storage type for the server. Allowed values are Premium_LRS and PremiumV2_LRS, and default is Premium_LRS if not specified
971
+ """
972
+ if auto_grow is not None:
973
+ pulumi.set(__self__, "auto_grow", auto_grow)
974
+ if iops is not None:
975
+ pulumi.set(__self__, "iops", iops)
976
+ if storage_size_gb is not None:
977
+ pulumi.set(__self__, "storage_size_gb", storage_size_gb)
978
+ if throughput is not None:
979
+ pulumi.set(__self__, "throughput", throughput)
980
+ if tier is not None:
981
+ pulumi.set(__self__, "tier", tier)
982
+ if type is not None:
983
+ pulumi.set(__self__, "type", type)
984
+
985
+ @property
986
+ @pulumi.getter(name="autoGrow")
987
+ def auto_grow(self) -> Optional[pulumi.Input[Union[str, 'StorageAutoGrow']]]:
988
+ """
989
+ Flag to enable / disable Storage Auto grow for flexible server.
990
+ """
991
+ return pulumi.get(self, "auto_grow")
992
+
993
+ @auto_grow.setter
994
+ def auto_grow(self, value: Optional[pulumi.Input[Union[str, 'StorageAutoGrow']]]):
995
+ pulumi.set(self, "auto_grow", value)
996
+
997
+ @property
998
+ @pulumi.getter
999
+ def iops(self) -> Optional[pulumi.Input[int]]:
1000
+ """
1001
+ Storage tier IOPS quantity. This property is required to be set for storage Type PremiumV2_LRS
1002
+ """
1003
+ return pulumi.get(self, "iops")
1004
+
1005
+ @iops.setter
1006
+ def iops(self, value: Optional[pulumi.Input[int]]):
1007
+ pulumi.set(self, "iops", value)
1008
+
1009
+ @property
1010
+ @pulumi.getter(name="storageSizeGB")
1011
+ def storage_size_gb(self) -> Optional[pulumi.Input[int]]:
1012
+ """
1013
+ Max storage allowed for a server.
1014
+ """
1015
+ return pulumi.get(self, "storage_size_gb")
1016
+
1017
+ @storage_size_gb.setter
1018
+ def storage_size_gb(self, value: Optional[pulumi.Input[int]]):
1019
+ pulumi.set(self, "storage_size_gb", value)
1020
+
1021
+ @property
1022
+ @pulumi.getter
1023
+ def throughput(self) -> Optional[pulumi.Input[int]]:
1024
+ """
1025
+ Storage throughput for the server. This is required to be set for storage Type PremiumV2_LRS
1026
+ """
1027
+ return pulumi.get(self, "throughput")
1028
+
1029
+ @throughput.setter
1030
+ def throughput(self, value: Optional[pulumi.Input[int]]):
1031
+ pulumi.set(self, "throughput", value)
1032
+
1033
+ @property
1034
+ @pulumi.getter
1035
+ def tier(self) -> Optional[pulumi.Input[Union[str, 'AzureManagedDiskPerformanceTiers']]]:
1036
+ """
1037
+ Name of storage tier for IOPS.
1038
+ """
1039
+ return pulumi.get(self, "tier")
1040
+
1041
+ @tier.setter
1042
+ def tier(self, value: Optional[pulumi.Input[Union[str, 'AzureManagedDiskPerformanceTiers']]]):
1043
+ pulumi.set(self, "tier", value)
1044
+
1045
+ @property
1046
+ @pulumi.getter
1047
+ def type(self) -> Optional[pulumi.Input[Union[str, 'StorageType']]]:
1048
+ """
1049
+ Storage type for the server. Allowed values are Premium_LRS and PremiumV2_LRS, and default is Premium_LRS if not specified
1050
+ """
1051
+ return pulumi.get(self, "type")
1052
+
1053
+ @type.setter
1054
+ def type(self, value: Optional[pulumi.Input[Union[str, 'StorageType']]]):
1055
+ pulumi.set(self, "type", value)
1056
+
1057
+
1058
+ if not MYPY:
1059
+ class UserAssignedIdentityArgsDict(TypedDict):
1060
+ """
1061
+ Information describing the identities associated with this application.
1062
+ """
1063
+ type: pulumi.Input[Union[str, 'IdentityType']]
1064
+ """
1065
+ the types of identities associated with this resource; currently restricted to 'None and UserAssigned'
1066
+ """
1067
+ user_assigned_identities: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['UserIdentityArgsDict']]]]
1068
+ """
1069
+ represents user assigned identities map.
1070
+ """
1071
+ elif False:
1072
+ UserAssignedIdentityArgsDict: TypeAlias = Mapping[str, Any]
1073
+
1074
+ @pulumi.input_type
1075
+ class UserAssignedIdentityArgs:
1076
+ def __init__(__self__, *,
1077
+ type: pulumi.Input[Union[str, 'IdentityType']],
1078
+ user_assigned_identities: Optional[pulumi.Input[Mapping[str, pulumi.Input['UserIdentityArgs']]]] = None):
1079
+ """
1080
+ Information describing the identities associated with this application.
1081
+ :param pulumi.Input[Union[str, 'IdentityType']] type: the types of identities associated with this resource; currently restricted to 'None and UserAssigned'
1082
+ :param pulumi.Input[Mapping[str, pulumi.Input['UserIdentityArgs']]] user_assigned_identities: represents user assigned identities map.
1083
+ """
1084
+ pulumi.set(__self__, "type", type)
1085
+ if user_assigned_identities is not None:
1086
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1087
+
1088
+ @property
1089
+ @pulumi.getter
1090
+ def type(self) -> pulumi.Input[Union[str, 'IdentityType']]:
1091
+ """
1092
+ the types of identities associated with this resource; currently restricted to 'None and UserAssigned'
1093
+ """
1094
+ return pulumi.get(self, "type")
1095
+
1096
+ @type.setter
1097
+ def type(self, value: pulumi.Input[Union[str, 'IdentityType']]):
1098
+ pulumi.set(self, "type", value)
1099
+
1100
+ @property
1101
+ @pulumi.getter(name="userAssignedIdentities")
1102
+ def user_assigned_identities(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['UserIdentityArgs']]]]:
1103
+ """
1104
+ represents user assigned identities map.
1105
+ """
1106
+ return pulumi.get(self, "user_assigned_identities")
1107
+
1108
+ @user_assigned_identities.setter
1109
+ def user_assigned_identities(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['UserIdentityArgs']]]]):
1110
+ pulumi.set(self, "user_assigned_identities", value)
1111
+
1112
+
1113
+ if not MYPY:
1114
+ class UserIdentityArgsDict(TypedDict):
1115
+ """
1116
+ Describes a single user-assigned identity associated with the application.
1117
+ """
1118
+ client_id: NotRequired[pulumi.Input[str]]
1119
+ """
1120
+ the client identifier of the Service Principal which this identity represents.
1121
+ """
1122
+ principal_id: NotRequired[pulumi.Input[str]]
1123
+ """
1124
+ the object identifier of the Service Principal which this identity represents.
1125
+ """
1126
+ elif False:
1127
+ UserIdentityArgsDict: TypeAlias = Mapping[str, Any]
1128
+
1129
+ @pulumi.input_type
1130
+ class UserIdentityArgs:
1131
+ def __init__(__self__, *,
1132
+ client_id: Optional[pulumi.Input[str]] = None,
1133
+ principal_id: Optional[pulumi.Input[str]] = None):
1134
+ """
1135
+ Describes a single user-assigned identity associated with the application.
1136
+ :param pulumi.Input[str] client_id: the client identifier of the Service Principal which this identity represents.
1137
+ :param pulumi.Input[str] principal_id: the object identifier of the Service Principal which this identity represents.
1138
+ """
1139
+ if client_id is not None:
1140
+ pulumi.set(__self__, "client_id", client_id)
1141
+ if principal_id is not None:
1142
+ pulumi.set(__self__, "principal_id", principal_id)
1143
+
1144
+ @property
1145
+ @pulumi.getter(name="clientId")
1146
+ def client_id(self) -> Optional[pulumi.Input[str]]:
1147
+ """
1148
+ the client identifier of the Service Principal which this identity represents.
1149
+ """
1150
+ return pulumi.get(self, "client_id")
1151
+
1152
+ @client_id.setter
1153
+ def client_id(self, value: Optional[pulumi.Input[str]]):
1154
+ pulumi.set(self, "client_id", value)
1155
+
1156
+ @property
1157
+ @pulumi.getter(name="principalId")
1158
+ def principal_id(self) -> Optional[pulumi.Input[str]]:
1159
+ """
1160
+ the object identifier of the Service Principal which this identity represents.
1161
+ """
1162
+ return pulumi.get(self, "principal_id")
1163
+
1164
+ @principal_id.setter
1165
+ def principal_id(self, value: Optional[pulumi.Input[str]]):
1166
+ pulumi.set(self, "principal_id", value)
1167
+
1168
+